Soenneker.Utils.SingletonDictionary 4.0.1115

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

Showing the top 5 NuGet packages that depend on Soenneker.Utils.SingletonDictionary:

Package Downloads
Soenneker.Utils.HttpClientCache

Providing thread-safe singleton HttpClients

Soenneker.Cosmos.Client

A utility library for Azure Cosmos client accessibility

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

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.1115 7,852 11/11/2025
4.0.1114 24,456 11/3/2025
4.0.1113 19,986 10/30/2025
4.0.1112 1,341 10/30/2025
4.0.1111 265 10/30/2025
4.0.1110 3,540 10/29/2025
3.0.1109 33,025 10/16/2025
3.0.1108 35,401 9/30/2025
3.0.1107 45,439 9/9/2025
3.0.1106 29,788 9/3/2025
3.0.1105 434 9/3/2025
3.0.1104 2,993 9/3/2025
3.0.1103 39,051 8/14/2025
3.0.1102 10,076 8/11/2025
3.0.1101 4,052 8/11/2025
3.0.1100 1,029 8/11/2025
3.0.1099 172 8/11/2025
3.0.1098 29,844 8/6/2025
3.0.1097 6,507 8/5/2025
3.0.1096 35,425 7/9/2025
3.0.1095 35,350 6/28/2025
3.0.1094 2,062 6/28/2025
3.0.1093 2,903 6/27/2025
3.0.1092 3,732 6/27/2025
3.0.1091 38,912 6/10/2025
3.0.1090 26,860 5/27/2025
3.0.1089 1,482 5/27/2025
3.0.1088 1,554 5/27/2025
3.0.1087 3,737 5/27/2025
3.0.1086 22,521 5/23/2025
3.0.1085 2,013 5/23/2025
3.0.1084 1,996 5/23/2025
3.0.1083 1,908 5/23/2025
3.0.1082 378 5/22/2025
3.0.1081 15,538 5/18/2025
3.0.1079 2,380 5/18/2025
3.0.1078 2,336 5/18/2025
3.0.1077 6,632 5/14/2025
3.0.1076 14,416 5/8/2025
3.0.1075 444 5/8/2025
3.0.1074 930 5/8/2025
3.0.1073 1,738 5/7/2025
3.0.1072 20,024 5/5/2025
3.0.1071 1,365 5/5/2025
3.0.1070 2,513 5/5/2025
3.0.1069 1,149 5/5/2025
3.0.1068 336 5/5/2025
3.0.1067 223 5/5/2025
3.0.1066 28,324 4/9/2025
3.0.1065 407 4/9/2025
3.0.1064 1,682 4/8/2025
3.0.1063 3,566 4/8/2025
3.0.1062 4,788 4/8/2025
3.0.1061 291 4/8/2025
3.0.1060 248 4/8/2025
3.0.1059 270 4/8/2025
3.0.1058 231 4/8/2025
3.0.1057 1,414 4/8/2025
3.0.1056 427 4/8/2025
3.0.1055 10,783 4/8/2025
3.0.1054 1,061 4/8/2025
3.0.1053 5,341 4/7/2025
3.0.1052 1,143 4/7/2025
3.0.1051 236 4/7/2025
3.0.1050 924 4/7/2025
3.0.1049 233 4/7/2025
3.0.1048 11,348 4/7/2025
3.0.1047 236 4/7/2025
3.0.1046 16,051 4/7/2025
3.0.1045 241 4/7/2025
3.0.1044 2,169 4/7/2025
3.0.1043 237 4/7/2025
3.0.1042 2,652 4/7/2025
3.0.1041 1,539 4/6/2025
3.0.1040 423 4/6/2025
3.0.1039 240 4/6/2025
3.0.1038 1,827 4/6/2025
3.0.1037 246 4/6/2025
3.0.1036 609 4/6/2025
3.0.1035 1,902 4/6/2025
3.0.1034 205 4/6/2025
3.0.1033 3,426 4/6/2025
3.0.1032 181 4/6/2025
3.0.1031 230 4/6/2025
3.0.1030 187 4/6/2025
3.0.1029 2,627 4/5/2025
3.0.1028 277 4/5/2025
3.0.1027 1,966 4/5/2025
3.0.1026 1,650 4/5/2025
3.0.1025 1,750 4/5/2025
3.0.1024 995 4/5/2025
3.0.1023 879 4/5/2025
3.0.1022 185 4/5/2025
3.0.1021 2,129 4/4/2025
3.0.1020 11,199 4/4/2025
3.0.1019 38,261 4/4/2025
3.0.1018 11,487 4/1/2025
3.0.1017 4,445 4/1/2025
3.0.1016 243 4/1/2025
3.0.1015 9,324 4/1/2025
3.0.1014 4,011 3/31/2025
3.0.1013 550 3/31/2025
3.0.1012 6,524 3/31/2025
3.0.1011 11,764 3/29/2025
3.0.1010 1,811 3/29/2025
3.0.1009 2,444 3/29/2025
3.0.1008 181 3/29/2025
3.0.1007 7,526 3/27/2025
3.0.1006 6,349 3/25/2025
3.0.1005 754 3/25/2025
3.0.1004 5,141 3/25/2025
3.0.1003 10,460 3/21/2025
3.0.1002 4,413 3/21/2025
3.0.1001 11,263 3/18/2025
3.0.1000 5,819 3/18/2025
3.0.999 11,022 3/15/2025
3.0.998 3,137 3/15/2025
3.0.997 152 3/15/2025
3.0.996 10,428 3/12/2025
3.0.995 3,680 3/12/2025
3.0.994 246 3/12/2025
3.0.993 592 3/12/2025
3.0.992 230 3/12/2025
3.0.991 4,625 3/11/2025
3.0.990 236 3/11/2025
3.0.989 2,118 3/11/2025
3.0.988 244 3/11/2025
3.0.987 4,151 3/11/2025
3.0.986 257 3/11/2025
3.0.985 4,305 3/11/2025
3.0.984 234 3/11/2025
3.0.983 2,749 3/11/2025
3.0.982 216 3/11/2025
3.0.981 15,050 3/7/2025
3.0.980 4,376 3/7/2025
3.0.979 10,017 3/2/2025
3.0.978 1,736 3/2/2025
3.0.977 1,100 3/2/2025
3.0.976 160 3/2/2025
3.0.975 7,260 3/2/2025
3.0.974 178 3/2/2025
3.0.973 5,552 3/1/2025
3.0.972 157 3/1/2025
3.0.971 7,487 3/1/2025
3.0.970 205 3/1/2025
3.0.969 152 3/1/2025
3.0.968 690 3/1/2025
3.0.967 174 3/1/2025
3.0.966 10,133 3/1/2025
3.0.965 7,880 2/26/2025
3.0.964 1,367 2/26/2025
3.0.963 3,970 2/25/2025
3.0.962 166 2/25/2025
3.0.961 1,400 2/25/2025
3.0.960 139 2/25/2025
3.0.959 220 2/25/2025
3.0.958 3,159 2/25/2025
3.0.957 8,234 2/24/2025
3.0.956 7,691 2/23/2025
3.0.955 1,811 2/22/2025
3.0.954 151 2/22/2025
3.0.953 12,970 2/22/2025
3.0.952 3,773 2/22/2025
3.0.951 1,846 2/22/2025
3.0.950 1,280 2/22/2025
3.0.949 209 2/22/2025
3.0.948 170 2/22/2025
3.0.947 181 2/22/2025
3.0.946 7,917 2/21/2025
3.0.945 169 2/21/2025
3.0.944 9,560 2/21/2025
3.0.943 7,669 2/19/2025
3.0.942 2,658 2/19/2025
3.0.941 1,080 2/19/2025
3.0.940 180 2/19/2025
3.0.939 631 2/18/2025
3.0.938 178 2/18/2025
3.0.937 9,124 2/18/2025
3.0.936 186 2/18/2025
3.0.935 4,682 2/18/2025
3.0.934 10,996 2/16/2025
3.0.933 2,522 2/14/2025
3.0.932 1,311 2/14/2025
3.0.931 1,188 2/13/2025
3.0.930 4,061 2/13/2025
3.0.929 451 2/13/2025
3.0.928 6,216 2/13/2025
3.0.927 6,149 2/12/2025
3.0.926 2,411 2/12/2025
3.0.925 200 2/12/2025
3.0.924 175 2/12/2025
3.0.923 3,437 2/12/2025
3.0.922 524 2/12/2025
3.0.921 190 2/12/2025
3.0.920 267 2/12/2025
3.0.919 280 2/12/2025
3.0.918 179 2/12/2025
3.0.917 254 2/11/2025
3.0.916 5,752 2/11/2025
3.0.915 6,278 2/11/2025
3.0.914 3,830 2/11/2025
3.0.913 191 2/11/2025
3.0.912 617 2/11/2025
3.0.911 2,945 2/10/2025
3.0.910 194 2/10/2025
3.0.909 1,255 2/10/2025
3.0.908 189 2/10/2025
3.0.907 10,586 2/10/2025
3.0.906 184 2/10/2025
3.0.905 1,959 2/9/2025
3.0.904 9,483 2/9/2025
3.0.903 169 2/9/2025
3.0.902 12,386 2/8/2025
3.0.901 187 2/8/2025
3.0.900 2,866 2/7/2025
3.0.899 183 2/7/2025
3.0.898 2,725 2/7/2025
3.0.897 181 2/7/2025
3.0.896 1,034 2/7/2025
3.0.895 687 2/7/2025
3.0.894 189 2/7/2025
3.0.893 565 2/7/2025
3.0.892 178 2/7/2025
3.0.891 1,745 2/7/2025
3.0.890 169 2/7/2025
3.0.889 183 2/7/2025
3.0.888 17,818 2/7/2025
3.0.887 10,618 2/5/2025
3.0.886 1,010 2/5/2025
3.0.885 1,558 2/5/2025
3.0.884 471 2/5/2025
3.0.883 1,706 2/5/2025
3.0.882 1,099 2/5/2025
3.0.881 5,299 2/5/2025
3.0.880 159 2/5/2025
3.0.879 17,374 1/28/2025
3.0.878 1,131 1/28/2025
3.0.877 3,218 1/28/2025
3.0.876 376 1/28/2025
3.0.875 6,923 1/28/2025
3.0.874 1,126 1/27/2025
3.0.873 137 1/27/2025
3.0.872 291 1/27/2025
3.0.871 450 1/27/2025
3.0.870 162 1/27/2025
3.0.869 8,776 1/27/2025
3.0.868 7,873 1/26/2025
3.0.867 1,608 1/26/2025
3.0.866 290 1/26/2025
3.0.865 1,755 1/26/2025
3.0.864 2,276 1/25/2025
3.0.863 169 1/25/2025
3.0.862 9,910 1/25/2025
3.0.861 1,782 1/25/2025
3.0.860 497 1/25/2025
3.0.859 176 1/25/2025
3.0.858 3,354 1/25/2025
3.0.857 2,246 1/25/2025
3.0.856 11,218 1/24/2025
3.0.855 2,777 1/24/2025
3.0.854 151 1/24/2025
3.0.853 3,603 1/24/2025
3.0.852 544 1/24/2025
3.0.851 370 1/24/2025
3.0.850 5,586 1/24/2025
3.0.849 168 1/24/2025
3.0.848 868 1/23/2025
3.0.847 175 1/23/2025
3.0.846 1,003 1/23/2025
3.0.845 164 1/23/2025
3.0.844 13,609 1/22/2025
3.0.843 1,707 1/21/2025
3.0.842 1,647 1/21/2025
3.0.841 916 1/21/2025
3.0.840 149 1/21/2025
3.0.839 951 1/21/2025
3.0.838 1,187 1/21/2025
3.0.837 9,323 1/21/2025
3.0.836 953 1/21/2025
3.0.835 1,710 1/21/2025
3.0.834 174 1/21/2025
3.0.833 1,408 1/21/2025
3.0.832 162 1/21/2025
3.0.831 3,864 1/21/2025
3.0.830 156 1/21/2025
3.0.829 672 1/20/2025
3.0.828 4,855 1/20/2025
3.0.827 400 1/20/2025
3.0.826 3,509 1/20/2025
3.0.825 166 1/20/2025
3.0.824 1,865 1/20/2025
3.0.823 188 1/20/2025
3.0.822 189 1/20/2025
3.0.821 168 1/20/2025
3.0.820 621 1/20/2025
3.0.819 171 1/20/2025
3.0.818 167 1/20/2025
3.0.817 9,908 1/19/2025
3.0.816 177 1/19/2025
3.0.815 9,048 1/19/2025
3.0.814 2,809 1/19/2025
3.0.813 218 1/19/2025
3.0.812 638 1/19/2025
3.0.811 173 1/19/2025
3.0.810 3,348 1/19/2025
3.0.809 163 1/19/2025
3.0.808 5,662 1/18/2025
3.0.807 178 1/18/2025
3.0.806 11,968 1/17/2025
3.0.805 183 1/17/2025
3.0.804 1,087 1/17/2025
3.0.803 1,601 1/17/2025
3.0.802 7,414 1/16/2025
3.0.801 2,468 1/16/2025
3.0.800 3,736 1/16/2025
3.0.799 937 1/16/2025
3.0.798 2,051 1/16/2025
3.0.797 1,775 1/16/2025
3.0.796 157 1/16/2025
3.0.795 8,070 1/15/2025
3.0.794 159 1/15/2025
3.0.793 4,793 1/15/2025
3.0.792 160 1/15/2025
3.0.791 243 1/15/2025
3.0.790 5,816 1/15/2025
3.0.789 138 1/15/2025
3.0.788 5,101 1/15/2025
3.0.787 141 1/15/2025
3.0.786 882 1/15/2025
3.0.785 142 1/15/2025
3.0.784 2,979 1/15/2025
3.0.783 142 1/15/2025
3.0.782 463 1/14/2025
3.0.781 144 1/14/2025
3.0.780 156 1/14/2025
3.0.779 6,416 1/14/2025
3.0.778 1,051 1/14/2025
3.0.777 161 1/14/2025
3.0.776 1,887 1/14/2025
3.0.775 137 1/14/2025
3.0.774 9,891 1/13/2025
3.0.773 2,859 1/13/2025
3.0.772 2,470 1/13/2025
3.0.771 163 1/13/2025
3.0.770 9,396 1/11/2025
3.0.769 3,813 1/11/2025
3.0.768 182 1/11/2025
3.0.767 3,372 1/11/2025
3.0.766 187 1/11/2025
3.0.765 3,239 1/10/2025
3.0.764 3,610 1/10/2025
3.0.763 169 1/10/2025
3.0.762 1,468 1/10/2025
3.0.761 180 1/10/2025
3.0.760 169 1/10/2025
3.0.759 11,290 1/3/2025
3.0.758 761 1/3/2025
3.0.757 1,682 1/3/2025
3.0.756 206 1/3/2025
3.0.755 2,553 1/3/2025
3.0.754 177 1/3/2025
3.0.753 1,934 1/3/2025
3.0.752 1,874 1/2/2025
3.0.751 170 1/2/2025
3.0.750 3,102 1/2/2025
3.0.749 169 1/2/2025
3.0.748 5,163 1/2/2025
3.0.747 155 1/2/2025
3.0.746 184 1/2/2025
3.0.745 8,504 1/1/2025
3.0.744 1,787 1/1/2025
3.0.743 454 1/1/2025
3.0.742 196 1/1/2025
3.0.741 2,759 1/1/2025
3.0.740 177 1/1/2025
3.0.739 168 1/1/2025
3.0.738 184 1/1/2025
3.0.737 547 12/31/2024
3.0.736 185 12/31/2024
3.0.735 202 12/31/2024
3.0.734 1,098 12/31/2024
3.0.733 198 12/31/2024
3.0.732 8,278 12/31/2024
3.0.731 184 12/31/2024
3.0.730 7,940 12/31/2024
3.0.729 138 12/31/2024
3.0.728 4,396 12/31/2024
3.0.727 574 12/31/2024
3.0.726 175 12/31/2024
3.0.725 2,383 12/31/2024
3.0.724 176 12/31/2024
3.0.723 15,877 12/28/2024
3.0.722 2,041 12/28/2024
3.0.721 2,240 12/27/2024
3.0.720 194 12/27/2024
3.0.719 4,806 12/27/2024
3.0.718 8,885 12/24/2024
3.0.717 2,192 12/24/2024
3.0.716 1,583 12/24/2024
3.0.715 1,373 12/24/2024
3.0.714 2,366 12/24/2024
3.0.713 169 12/24/2024
3.0.712 3,907 12/24/2024
3.0.711 1,065 12/24/2024
3.0.710 161 12/24/2024
3.0.709 730 12/24/2024
3.0.708 1,690 12/24/2024
3.0.707 400 12/24/2024
3.0.706 199 12/24/2024
3.0.705 1,785 12/24/2024
3.0.704 182 12/24/2024
3.0.703 3,112 12/23/2024
3.0.702 5,081 12/23/2024
3.0.701 181 12/23/2024
3.0.700 1,183 12/23/2024
3.0.699 165 12/23/2024
3.0.698 3,429 12/23/2024
3.0.697 161 12/23/2024
3.0.696 2,589 12/23/2024
3.0.695 181 12/23/2024
3.0.694 774 12/22/2024
3.0.693 2,483 12/22/2024
3.0.692 7,187 12/22/2024
3.0.691 187 12/22/2024
3.0.690 2,823 12/22/2024
3.0.689 258 12/22/2024
3.0.688 797 12/22/2024
3.0.687 168 12/22/2024
3.0.686 445 12/22/2024
3.0.685 179 12/22/2024
3.0.684 12,034 12/22/2024
3.0.683 153 12/22/2024
3.0.682 1,937 12/21/2024
3.0.681 484 12/21/2024
3.0.680 166 12/21/2024
3.0.679 888 12/21/2024
3.0.678 1,401 12/21/2024
3.0.677 172 12/21/2024
3.0.676 6,900 12/21/2024
3.0.675 688 12/21/2024
3.0.674 175 12/21/2024
3.0.673 4,613 12/21/2024
3.0.672 1,209 12/21/2024
3.0.671 182 12/21/2024
3.0.670 2,753 12/20/2024
3.0.669 194 12/20/2024
3.0.668 181 12/20/2024
3.0.667 6,716 12/20/2024
3.0.666 1,994 12/20/2024
3.0.665 387 12/20/2024
3.0.664 6,273 12/19/2024
3.0.663 746 12/19/2024
3.0.662 3,677 12/18/2024
3.0.661 170 12/18/2024
3.0.660 11,579 12/17/2024
3.0.659 341 12/17/2024
3.0.658 1,142 12/16/2024
3.0.657 173 12/16/2024
3.0.656 245 12/16/2024
3.0.655 172 12/16/2024
3.0.654 11,277 12/10/2024
3.0.653 1,770 12/10/2024
3.0.652 679 12/9/2024
3.0.651 178 12/9/2024
3.0.650 4,751 12/9/2024
3.0.649 2,471 12/9/2024
3.0.648 160 12/9/2024
3.0.647 6,782 12/9/2024
3.0.646 5,027 12/6/2024
3.0.645 745 12/6/2024
3.0.644 165 12/6/2024
3.0.643 1,189 12/6/2024
3.0.641 6,954 12/6/2024
3.0.640 4,294 12/6/2024
3.0.639 9,551 12/6/2024
3.0.637 597 12/6/2024
3.0.636 4,423 12/5/2024
3.0.635 6,266 12/5/2024
3.0.634 5,083 12/5/2024
3.0.633 174 12/5/2024
3.0.632 3,436 12/5/2024
3.0.631 1,753 12/5/2024
3.0.630 178 12/5/2024
3.0.629 652 12/5/2024
3.0.628 174 12/5/2024
3.0.627 227 12/5/2024
3.0.626 176 12/5/2024
3.0.625 6,000 12/4/2024
3.0.624 168 12/4/2024
3.0.623 190 12/4/2024
3.0.622 190 12/4/2024
3.0.621 2,984 12/4/2024
3.0.620 552 12/4/2024
3.0.619 713 12/4/2024
3.0.618 6,063 12/3/2024
3.0.617 179 12/3/2024
3.0.616 1,966 12/3/2024
3.0.615 780 12/3/2024
3.0.614 182 12/3/2024
3.0.613 192 12/3/2024
3.0.612 7,205 12/3/2024
3.0.611 171 12/3/2024
3.0.610 5,973 12/3/2024
3.0.609 158 12/3/2024
3.0.608 5,539 12/2/2024
3.0.607 4,907 12/2/2024
3.0.606 2,925 12/2/2024
3.0.605 475 12/2/2024
3.0.604 181 12/2/2024
3.0.603 711 12/2/2024
3.0.602 6,154 12/1/2024
3.0.601 186 12/1/2024
3.0.600 3,438 12/1/2024
3.0.599 325 12/1/2024
3.0.598 6,202 12/1/2024
3.0.597 185 12/1/2024
3.0.596 6,415 11/29/2024
3.0.595 1,881 11/29/2024
3.0.594 10,893 11/21/2024
3.0.593 537 11/21/2024
3.0.592 8,052 11/20/2024
3.0.591 558 11/20/2024
3.0.590 196 11/20/2024
3.0.589 164 11/20/2024
3.0.588 706 11/20/2024
3.0.587 267 11/20/2024
3.0.586 169 11/20/2024
3.0.585 3,498 11/20/2024
3.0.584 4,804 11/19/2024
3.0.583 164 11/19/2024
3.0.582 1,082 11/19/2024
3.0.581 152 11/19/2024
3.0.580 4,199 11/19/2024
3.0.579 148 11/19/2024
3.0.578 2,253 11/19/2024
3.0.577 183 11/19/2024
3.0.576 14,949 11/14/2024
3.0.575 243 11/14/2024
3.0.574 923 11/14/2024
3.0.573 4,132 11/14/2024
3.0.572 1,295 11/14/2024
3.0.571 194 11/14/2024
3.0.570 187 11/14/2024
3.0.569 7,164 11/14/2024
3.0.568 179 11/14/2024
3.0.567 179 11/14/2024
3.0.566 6,234 11/14/2024
3.0.565 177 11/14/2024
3.0.564 169 11/14/2024
3.0.563 164 11/14/2024
2.1.562 14,388 11/13/2024
2.1.561 2,441 11/13/2024
2.1.560 5,281 11/13/2024
2.1.559 195 11/13/2024
2.1.558 2,255 11/12/2024
2.1.557 638 11/12/2024
2.1.556 13,785 11/9/2024
2.1.555 611 11/9/2024
2.1.554 197 11/9/2024
2.1.553 2,957 11/9/2024
2.1.552 182 11/9/2024
2.1.551 1,522 11/8/2024
2.1.550 182 11/8/2024
2.1.549 177 11/8/2024
2.1.548 191 11/8/2024
2.1.547 694 11/8/2024
2.1.546 3,263 11/8/2024
2.1.545 164 11/8/2024
2.1.544 9,248 11/8/2024
2.1.543 155 11/8/2024
2.1.542 20,207 11/1/2024
2.1.541 759 11/1/2024
2.1.540 11,841 10/29/2024
2.1.539 1,286 10/29/2024
2.1.538 4,746 10/29/2024
2.1.537 1,011 10/29/2024
2.1.536 9,421 10/28/2024
2.1.535 3,237 10/28/2024
2.1.534 6,581 10/26/2024
2.1.533 1,196 10/26/2024
2.1.532 13,854 10/22/2024
2.1.531 430 10/22/2024
2.1.530 911 10/22/2024
2.1.529 1,594 10/22/2024
2.1.528 183 10/22/2024
2.1.527 776 10/22/2024
2.1.526 11,324 10/18/2024
2.1.525 1,869 10/17/2024
2.1.524 7,225 10/15/2024
2.1.523 2,795 10/15/2024
2.1.522 183 10/14/2024
2.1.521 8,921 10/12/2024
2.1.520 1,136 10/11/2024
2.1.519 174 10/11/2024
2.1.518 802 10/11/2024
2.1.517 5,062 10/11/2024
2.1.516 11,085 10/9/2024
2.1.515 620 10/9/2024
2.1.514 156 10/9/2024
2.1.513 3,397 10/8/2024
2.1.512 240 10/8/2024
2.1.511 3,694 10/8/2024
2.1.510 226 10/8/2024
2.1.509 177 10/8/2024
2.1.508 6,760 10/8/2024
2.1.507 10,614 10/3/2024
2.1.506 182 10/3/2024
2.1.505 1,972 10/3/2024
2.1.504 3,400 10/3/2024
2.1.503 2,437 10/3/2024
2.1.502 10,089 10/2/2024
2.1.501 178 10/2/2024
2.1.500 3,162 10/2/2024
2.1.499 1,747 10/2/2024
2.1.498 7,112 10/1/2024
2.1.497 1,110 10/1/2024
2.1.496 187 10/1/2024
2.1.495 4,502 10/1/2024
2.1.494 188 10/1/2024
2.1.493 234 10/1/2024
2.1.492 9,348 9/29/2024
2.1.491 2,293 9/29/2024
2.1.490 188 9/29/2024
2.1.489 2,072 9/29/2024
2.1.488 183 9/29/2024
2.1.487 4,424 9/29/2024
2.1.486 8,727 9/27/2024
2.1.485 1,319 9/27/2024
2.1.484 5,258 9/27/2024
2.1.483 202 9/27/2024
2.1.482 746 9/27/2024
2.1.481 3,693 9/27/2024
2.1.480 5,431 9/26/2024
2.1.479 5,980 9/26/2024
2.1.478 4,068 9/26/2024
2.1.477 3,669 9/26/2024
2.1.476 6,365 9/26/2024
2.1.475 183 9/26/2024
2.1.474 9,496 9/23/2024
2.1.473 2,158 9/23/2024
2.1.472 1,569 9/23/2024
2.1.471 1,874 9/23/2024
2.1.470 179 9/23/2024
2.1.469 2,585 9/23/2024
2.1.468 153 9/23/2024
2.1.467 8,021 9/23/2024
2.1.466 182 9/23/2024
2.1.465 1,202 9/23/2024
2.1.464 201 9/23/2024
2.1.463 172 9/23/2024
2.1.462 1,529 9/23/2024
2.1.461 15,644 9/18/2024
2.1.460 411 9/17/2024
2.1.459 2,031 9/17/2024
2.1.458 2,740 9/17/2024
2.1.457 182 9/17/2024
2.1.456 2,971 9/17/2024
2.1.455 774 9/17/2024
2.1.454 5,335 9/17/2024
2.1.453 895 9/17/2024
2.1.452 322 9/17/2024
2.1.451 4,336 9/17/2024
2.1.450 12,555 9/16/2024
2.1.449 1,141 9/16/2024
2.1.448 8,089 9/12/2024
2.1.447 4,778 9/12/2024
2.1.446 2,127 9/11/2024
2.1.445 2,570 9/11/2024
2.1.443 5,821 9/11/2024
2.1.442 1,536 9/11/2024
2.1.441 1,457 9/11/2024
2.1.440 3,578 9/11/2024
2.1.439 12,850 9/10/2024
2.1.438 198 9/10/2024
2.1.437 1,859 9/10/2024
2.1.436 198 9/10/2024
2.1.434 4,635 9/10/2024
2.1.433 919 9/9/2024
2.1.432 2,862 9/9/2024
2.1.430 2,430 9/9/2024
2.1.428 198 9/9/2024
2.1.427 702 9/9/2024
2.1.426 21,075 9/7/2024
2.1.425 233 9/7/2024
2.1.424 8,086 9/6/2024
2.1.423 550 9/6/2024
2.1.422 3,581 9/6/2024
2.1.421 183 9/5/2024
2.1.420 199 9/5/2024
2.1.419 3,849 9/5/2024
2.1.418 1,789 9/5/2024
2.1.417 186 9/5/2024
2.1.416 1,795 9/5/2024
2.1.415 702 9/5/2024
2.1.414 180 9/5/2024
2.1.413 8,107 9/5/2024
2.1.412 299 9/5/2024
2.1.411 187 9/5/2024
2.1.410 3,589 9/4/2024
2.1.409 12,976 9/3/2024
2.1.408 185 9/3/2024
2.1.407 184 9/3/2024
2.1.406 6,536 9/3/2024
2.1.405 224 9/3/2024
2.1.404 4,116 9/3/2024
2.1.403 8,602 8/29/2024
2.1.402 4,238 8/29/2024
2.1.401 4,639 8/26/2024
2.1.400 166 8/26/2024
2.1.399 8,208 8/21/2024
2.1.398 995 8/21/2024
2.1.397 227 8/21/2024
2.1.396 4,326 8/21/2024
2.1.395 230 8/20/2024
2.1.394 224 8/20/2024
2.1.393 749 8/20/2024
2.1.392 5,011 8/20/2024
2.1.391 705 8/20/2024
2.1.390 185 8/20/2024
2.1.389 4,344 8/20/2024
2.1.388 204 8/20/2024
2.1.387 1,968 8/20/2024
2.1.386 4,812 8/19/2024
2.1.385 7,891 8/15/2024
2.1.384 3,404 8/15/2024
2.1.383 7,810 8/14/2024
2.1.382 219 8/13/2024
2.1.381 9,174 8/7/2024
2.1.380 502 8/6/2024
2.1.379 4,469 8/6/2024
2.1.378 8,458 8/1/2024
2.1.377 578 8/1/2024
2.1.376 175 8/1/2024
2.1.374 2,046 8/1/2024
2.1.373 10,142 7/25/2024
2.1.372 178 7/25/2024
2.1.371 1,316 7/25/2024
2.1.370 513 7/25/2024
2.1.369 612 7/25/2024
2.1.368 331 7/25/2024
2.1.367 675 7/24/2024
2.1.366 247 7/24/2024
2.1.365 369 7/24/2024
2.1.364 569 7/24/2024
2.1.363 14,378 7/20/2024
2.1.362 2,550 7/20/2024
2.1.361 8,577 7/14/2024
2.1.360 2,606 7/14/2024
2.1.359 184 7/14/2024
2.1.358 2,474 7/14/2024
2.1.357 7,305 7/10/2024
2.1.355 1,176 7/10/2024
2.1.354 1,985 7/10/2024
2.1.353 188 7/10/2024
2.1.352 2,841 7/10/2024
2.1.351 222 7/10/2024
2.1.350 186 7/10/2024
2.1.349 268 7/10/2024
2.1.348 183 7/10/2024
2.1.347 3,396 7/10/2024
2.1.346 202 7/10/2024
2.1.345 1,365 7/10/2024
2.1.344 191 7/10/2024
2.1.343 327 7/9/2024
2.1.342 165 7/9/2024
2.1.339 3,183 7/9/2024
2.1.338 725 7/9/2024
2.1.337 6,725 7/9/2024
2.1.336 1,868 7/9/2024
2.1.335 198 7/9/2024
2.1.334 4,335 7/9/2024
2.1.333 171 7/9/2024
2.1.332 13,011 7/9/2024
2.1.331 194 7/9/2024
2.1.330 4,209 7/9/2024
2.1.329 183 7/9/2024
2.1.328 1,767 7/9/2024
2.1.327 1,107 7/8/2024
2.1.326 1,683 7/8/2024
2.1.325 184 7/8/2024
2.1.324 200 7/8/2024
2.1.323 8,118 7/8/2024
2.1.322 2,772 7/8/2024
2.1.321 181 7/8/2024
2.1.320 3,961 7/7/2024
2.1.319 208 7/7/2024
2.1.318 207 7/7/2024
2.1.317 195 7/7/2024
2.1.316 1,900 7/7/2024
2.1.315 3,670 7/7/2024
2.1.314 3,085 7/7/2024
2.1.313 370 7/7/2024
2.1.312 5,708 7/5/2024
2.1.311 6,756 7/3/2024
2.1.310 5,218 7/3/2024
2.1.309 647 7/3/2024
2.1.308 6,827 7/2/2024
2.1.307 3,103 6/30/2024
2.1.306 3,798 6/28/2024
2.1.305 8,926 6/22/2024
2.1.304 8,080 6/15/2024
2.1.303 6,579 6/14/2024
2.1.302 9,563 6/1/2024
2.1.301 2,646 6/1/2024
2.1.300 969 6/1/2024
2.1.299 9,694 5/31/2024
2.1.298 6,102 5/29/2024
2.1.297 4,994 5/28/2024
2.1.296 4,020 5/27/2024
2.1.295 7,941 5/26/2024
2.1.294 3,332 5/26/2024
2.1.293 764 5/26/2024
2.1.292 4,100 5/25/2024
2.1.291 2,189 5/25/2024
2.1.290 210 5/25/2024
2.1.289 194 5/25/2024
2.1.288 1,123 5/25/2024
2.1.287 206 5/25/2024
2.1.286 624 5/25/2024
2.1.285 195 5/25/2024
2.1.284 211 5/25/2024
2.1.283 12,111 5/23/2024
2.1.282 881 5/23/2024
2.1.281 428 5/22/2024
2.1.280 5,977 5/22/2024
2.1.279 210 5/22/2024
2.1.278 208 5/22/2024
2.1.277 191 5/22/2024
2.1.276 3,566 5/22/2024
2.1.275 5,556 5/18/2024
2.1.274 3,090 5/18/2024
2.1.273 2,912 5/17/2024
2.1.272 193 5/17/2024
2.1.271 4,429 5/16/2024
2.1.270 681 5/15/2024
2.1.269 4,467 5/15/2024
2.1.268 7,411 5/12/2024
2.1.267 4,501 5/3/2024
2.1.266 1,940 4/30/2024
2.1.265 2,874 4/29/2024
2.1.264 3,084 4/29/2024
2.1.263 4,365 4/28/2024
2.1.262 2,444 4/28/2024
2.1.261 1,767 4/28/2024
2.1.260 2,759 4/28/2024
2.1.259 1,509 4/28/2024
2.1.258 192 4/28/2024
2.1.257 6,870 4/27/2024
2.1.256 209 4/27/2024
2.1.255 6,916 4/19/2024
2.1.254 6,658 4/18/2024
2.1.253 5,456 4/12/2024
2.1.252 1,811 4/12/2024
2.1.251 1,129 4/12/2024
2.1.250 1,376 4/12/2024
2.1.249 310 4/12/2024
2.1.248 180 4/12/2024
2.1.247 1,563 4/12/2024
2.1.246 499 4/12/2024
2.1.245 2,550 4/11/2024
2.1.244 6,126 4/10/2024
2.1.243 1,814 4/9/2024
2.1.242 5,047 4/2/2024
2.1.241 1,431 4/1/2024
2.1.240 3,336 3/29/2024
2.1.239 2,890 3/25/2024
2.1.238 460 3/25/2024
2.1.237 5,303 3/20/2024
2.1.236 3,296 3/19/2024
2.1.235 748 3/19/2024
2.1.234 3,818 3/18/2024
2.1.233 2,114 3/18/2024
2.1.232 2,081 3/15/2024
2.1.231 3,668 3/13/2024
2.1.230 1,653 3/13/2024
2.1.229 1,067 3/13/2024
2.1.228 1,149 3/13/2024
2.1.227 205 3/13/2024
2.1.226 796 3/13/2024
2.1.225 203 3/13/2024
2.1.224 205 3/13/2024
2.1.223 2,596 3/12/2024
2.1.222 4,387 3/11/2024
2.1.221 3,796 3/11/2024
2.1.220 2,567 3/10/2024
2.1.219 2,907 3/8/2024
2.1.218 1,643 3/8/2024
2.1.217 2,417 3/8/2024
2.1.216 3,220 3/6/2024
2.1.215 3,038 3/4/2024
2.1.214 2,186 3/4/2024
2.1.213 4,005 3/2/2024
2.1.212 1,835 3/2/2024
2.1.211 628 3/2/2024
2.1.210 536 3/2/2024
2.1.209 777 3/2/2024
2.1.208 5,228 2/29/2024
2.1.207 962 2/29/2024
2.1.206 544 2/29/2024
2.1.205 5,033 2/26/2024
2.1.204 2,239 2/25/2024
2.1.203 3,988 2/23/2024
2.1.202 2,833 2/22/2024
2.1.201 1,402 2/22/2024
2.1.200 674 2/21/2024
2.1.199 1,745 2/21/2024
2.1.198 435 2/21/2024
2.1.197 1,018 2/21/2024
2.1.196 202 2/21/2024
2.1.195 1,985 2/21/2024
2.1.194 618 2/21/2024
2.1.193 197 2/21/2024
2.1.192 228 2/21/2024
2.1.191 846 2/21/2024
2.1.190 193 2/21/2024
2.1.189 4,064 2/20/2024
2.1.188 999 2/20/2024
2.1.187 950 2/20/2024
2.1.186 1,235 2/20/2024
2.1.185 3,158 2/19/2024
2.1.184 2,837 2/17/2024
2.1.183 1,383 2/16/2024
2.1.182 1,267 2/16/2024
2.1.181 2,043 2/16/2024
2.1.180 210 2/16/2024
2.1.179 1,023 2/16/2024
2.1.178 211 2/16/2024
2.1.177 206 2/16/2024
2.1.176 818 2/16/2024
2.1.175 199 2/16/2024
2.1.174 4,909 2/13/2024
2.1.173 2,045 2/13/2024
2.1.172 1,651 2/13/2024
2.1.171 702 2/13/2024
2.1.170 936 2/13/2024
2.1.169 2,898 2/12/2024
2.1.168 696 2/11/2024
2.1.167 2,255 2/11/2024
2.1.166 1,237 2/11/2024
2.1.165 4,179 2/10/2024
2.1.164 806 2/9/2024
2.1.163 199 2/9/2024
2.1.162 2,340 2/9/2024
2.1.161 2,433 2/9/2024
2.1.160 620 2/8/2024
2.1.159 1,816 2/8/2024
2.1.158 1,189 2/8/2024
2.1.157 2,171 2/8/2024
2.1.156 184 2/8/2024
2.1.155 2,776 2/7/2024
2.1.154 658 2/7/2024
2.1.153 882 2/7/2024
2.1.152 1,917 2/7/2024
2.1.151 520 2/6/2024
2.1.150 191 2/6/2024
2.1.149 200 2/6/2024
2.1.148 4,111 2/5/2024
2.1.147 2,291 2/4/2024
2.1.146 3,096 2/2/2024
2.1.145 2,804 1/31/2024
2.1.144 3,080 1/29/2024
2.1.143 1,961 1/29/2024
2.1.142 538 1/29/2024
2.1.141 2,070 1/28/2024
2.1.140 696 1/28/2024
2.1.139 467 1/28/2024
2.1.138 782 1/28/2024
2.1.137 2,880 1/28/2024
2.1.136 1,513 1/28/2024
2.1.135 468 1/27/2024
2.1.134 1,336 1/27/2024
2.1.133 1,848 1/27/2024
2.1.132 1,781 1/27/2024
2.1.131 223 1/27/2024
2.1.130 972 1/27/2024
2.1.129 1,605 1/26/2024
2.1.128 373 1/26/2024
2.1.127 1,278 1/26/2024
2.1.126 1,701 1/26/2024
2.1.125 2,379 1/26/2024
2.1.124 1,361 1/25/2024
2.1.123 1,467 1/25/2024
2.1.122 666 1/25/2024
2.1.121 1,343 1/25/2024
2.1.120 739 1/25/2024
2.1.119 3,844 1/19/2024
2.1.118 3,134 1/15/2024
2.1.117 717 1/15/2024
2.1.116 1,885 1/15/2024
2.1.115 204 1/15/2024
2.1.114 815 1/15/2024
2.1.113 1,972 1/15/2024
2.1.112 3,607 1/14/2024
2.1.111 2,341 1/13/2024
2.1.110 2,519 1/12/2024
2.1.109 2,923 1/11/2024
2.1.108 3,749 1/7/2024
2.1.107 2,878 1/5/2024
2.1.106 730 1/5/2024
2.1.105 224 1/5/2024
2.1.104 202 1/5/2024
2.1.103 2,090 1/5/2024
2.1.102 211 1/5/2024
2.1.101 3,947 1/1/2024
2.1.100 3,161 12/28/2023
2.1.99 1,069 12/28/2023
2.1.98 739 12/28/2023
2.1.97 197 12/28/2023
2.1.96 214 12/28/2023
2.1.95 1,045 12/27/2023
2.1.94 219 12/27/2023
2.1.93 762 12/27/2023
2.1.92 213 12/27/2023
2.1.91 219 12/27/2023
2.1.90 3,351 12/25/2023
2.1.89 547 12/25/2023
2.1.88 1,243 12/25/2023
2.1.87 221 12/25/2023
2.1.86 1,015 12/25/2023
2.1.85 212 12/25/2023
2.1.84 867 12/25/2023
2.1.83 210 12/25/2023
2.1.82 2,513 12/24/2023
2.1.81 1,637 12/23/2023
2.1.80 1,360 12/23/2023
2.1.79 449 12/23/2023
2.1.78 894 12/23/2023
2.1.77 217 12/23/2023
2.1.76 199 12/23/2023
2.1.75 1,636 12/23/2023
2.1.74 205 12/23/2023
2.1.73 2,149 12/19/2023
2.1.72 332 12/19/2023
2.1.71 4,546 12/11/2023
2.1.70 1,088 12/10/2023
2.1.69 205 12/10/2023
2.1.68 667 12/10/2023
2.1.67 2,218 12/10/2023
2.1.66 574 12/9/2023
2.1.65 585 12/9/2023
2.1.64 436 12/9/2023
2.1.63 223 12/9/2023
2.1.62 390 12/9/2023
2.1.61 326 12/9/2023
2.1.60 178 12/9/2023
2.1.59 1,629 12/9/2023
2.1.58 216 12/9/2023
2.1.57 2,363 12/6/2023
2.1.56 610 12/6/2023
2.1.55 380 12/6/2023
2.1.54 433 12/6/2023
2.1.53 1,421 12/5/2023
2.1.52 586 12/5/2023
2.1.51 529 12/5/2023
2.1.50 592 12/5/2023
2.1.49 176 12/5/2023
2.1.48 515 12/5/2023
2.1.47 418 12/5/2023
2.1.46 175 12/4/2023
2.1.45 185 12/4/2023
2.1.44 515 12/4/2023
2.1.43 209 12/4/2023
2.1.42 1,619 12/4/2023
2.1.41 154 12/4/2023
2.1.40 1,864 11/27/2023
2.1.39 845 11/26/2023
2.1.38 349 11/26/2023
2.1.37 992 11/23/2023
2.1.36 1,081 11/23/2023
2.1.35 1,045 11/23/2023
2.1.34 198 11/23/2023
2.1.33 643 11/23/2023
2.1.32 205 11/23/2023
2.1.31 1,772 11/20/2023
2.1.30 1,821 11/20/2023
2.1.29 1,327 11/19/2023
2.1.28 415 11/19/2023
2.1.27 755 11/19/2023
2.1.26 769 11/19/2023
2.1.25 792 11/19/2023
2.1.24 175 11/19/2023
2.1.23 351 11/18/2023
2.1.22 1,586 11/18/2023
2.1.21 566 11/18/2023
2.1.20 860 11/18/2023
2.1.19 200 11/18/2023
2.1.18 478 11/18/2023
2.1.17 192 11/18/2023
2.1.16 980 11/17/2023
2.1.15 847 11/17/2023
2.1.14 182 11/17/2023
2.1.13 694 11/17/2023
2.1.12 481 11/17/2023
2.1.11 795 11/17/2023
2.1.10 191 11/17/2023
2.1.9 786 11/17/2023
2.1.8 196 11/17/2023
2.1.7 241 11/17/2023
2.1.6 535 11/17/2023
2.1.5 588 11/16/2023
2.0.101 3,581 11/15/2023
2.0.100 164 11/15/2023
2.0.99 201 11/15/2023
2.0.4 186 11/16/2023
2.0.3 210 11/16/2023
2.0.2 193 11/16/2023
2.0.1 190 11/16/2023
1.0.98 994 11/14/2023
1.0.97 1,156 11/13/2023
1.0.96 165 11/13/2023
1.0.95 808 11/10/2023
1.0.94 189 11/10/2023
1.0.93 1,447 11/9/2023
1.0.92 189 11/9/2023
1.0.91 1,573 11/7/2023
1.0.90 186 11/7/2023
1.0.89 756 11/6/2023
1.0.88 198 11/6/2023
1.0.87 883 11/3/2023
1.0.86 199 11/3/2023
1.0.85 1,331 11/2/2023
1.0.84 177 11/2/2023
1.0.83 882 11/1/2023
1.0.82 2,152 10/26/2023
1.0.81 1,928 10/19/2023
1.0.80 215 10/19/2023
1.0.79 1,178 10/18/2023
1.0.78 231 10/18/2023
1.0.77 1,094 10/17/2023
1.0.76 218 10/17/2023
1.0.75 968 10/16/2023
1.0.74 223 10/16/2023
1.0.73 1,042 10/13/2023
1.0.72 491 10/12/2023
1.0.71 2,524 9/20/2023
1.0.70 1,054 9/19/2023
1.0.69 1,037 9/18/2023
1.0.68 220 9/18/2023
1.0.67 1,367 9/14/2023
1.0.66 2,152 8/31/2023
1.0.65 214 8/31/2023
1.0.64 1,234 8/30/2023
1.0.63 243 8/30/2023
1.0.62 262 8/30/2023
1.0.61 1,266 8/28/2023
1.0.60 1,045 8/25/2023
1.0.59 211 8/25/2023
1.0.58 735 8/24/2023
1.0.57 2,170 8/21/2023
1.0.56 1,253 8/18/2023
1.0.55 1,098 8/17/2023
1.0.54 243 8/17/2023
1.0.53 2,785 8/10/2023
1.0.52 821 8/9/2023
1.0.51 994 8/8/2023
1.0.50 932 8/7/2023
1.0.49 265 8/7/2023
1.0.48 3,540 7/13/2023
1.0.47 1,287 7/11/2023
1.0.46 1,040 7/10/2023
1.0.45 981 7/7/2023
1.0.44 267 7/7/2023
1.0.43 3,005 6/30/2023
1.0.42 1,496 6/29/2023
1.0.41 835 6/28/2023
1.0.40 2,159 6/26/2023
1.0.39 1,154 6/23/2023
1.0.38 1,530 6/21/2023
1.0.37 2,062 6/15/2023
1.0.36 713 6/14/2023
1.0.35 2,498 6/9/2023
1.0.34 1,127 6/8/2023
1.0.33 2,177 6/7/2023
1.0.32 264 6/7/2023
1.0.31 1,599 6/6/2023
1.0.30 1,589 6/5/2023
1.0.29 1,762 6/2/2023
1.0.28 258 6/2/2023
1.0.27 1,613 6/1/2023
1.0.26 845 5/31/2023
1.0.25 678 5/31/2023
1.0.24 267 5/31/2023
1.0.23 1,980 5/30/2023
1.0.22 2,060 5/26/2023
1.0.21 939 5/25/2023
1.0.20 246 5/25/2023
1.0.19 1,122 5/24/2023
1.0.18 248 5/24/2023
1.0.17 677 5/23/2023
1.0.13 1,997 5/22/2023
1.0.12 1,626 5/18/2023
1.0.11 850 5/17/2023
1.0.10 2,007 5/1/2023
1.0.9 1,344 4/25/2023
1.0.8 633 4/24/2023
1.0.7 1,290 4/21/2023
1.0.6 2,550 4/13/2023
1.0.5 795 4/12/2023
1.0.4 1,335 4/8/2023
1.0.3 293 4/8/2023
1.0.2 803 4/8/2023
1.0.1 297 4/8/2023