Soenneker.Utils.SingletonDictionary 4.0.1119

Prefix Reserved
dotnet add package Soenneker.Utils.SingletonDictionary --version 4.0.1119
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 4.0.1119
                    
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.1119" />
                    
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.1119" />
                    
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.1119
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 4.0.1119"
                    
#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.1119
                    
#: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.1119
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=4.0.1119
                    
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.1119 9,157 11/21/2025
4.0.1118 4,417 11/20/2025
4.0.1117 1,092 11/20/2025
4.0.1116 377 11/20/2025
4.0.1115 24,246 11/11/2025
4.0.1114 24,542 11/3/2025
4.0.1113 19,995 10/30/2025
4.0.1112 1,349 10/30/2025
4.0.1111 275 10/30/2025
4.0.1110 3,549 10/29/2025
3.0.1109 33,163 10/16/2025
3.0.1108 35,438 9/30/2025
3.0.1107 45,543 9/9/2025
3.0.1106 29,793 9/3/2025
3.0.1105 440 9/3/2025
3.0.1104 2,998 9/3/2025
3.0.1103 39,076 8/14/2025
3.0.1102 10,081 8/11/2025
3.0.1101 4,055 8/11/2025
3.0.1100 1,034 8/11/2025
3.0.1099 177 8/11/2025
3.0.1098 29,855 8/6/2025
3.0.1097 6,510 8/5/2025
3.0.1096 35,474 7/9/2025
3.0.1095 35,358 6/28/2025
3.0.1094 2,066 6/28/2025
3.0.1093 2,907 6/27/2025
3.0.1092 3,738 6/27/2025
3.0.1091 38,934 6/10/2025
3.0.1090 26,868 5/27/2025
3.0.1089 1,485 5/27/2025
3.0.1088 1,560 5/27/2025
3.0.1087 3,740 5/27/2025
3.0.1086 22,550 5/23/2025
3.0.1085 2,017 5/23/2025
3.0.1084 2,000 5/23/2025
3.0.1083 1,912 5/23/2025
3.0.1082 386 5/22/2025
3.0.1081 15,562 5/18/2025
3.0.1079 2,384 5/18/2025
3.0.1078 2,339 5/18/2025
3.0.1077 6,639 5/14/2025
3.0.1076 14,429 5/8/2025
3.0.1075 448 5/8/2025
3.0.1074 934 5/8/2025
3.0.1073 1,741 5/7/2025
3.0.1072 20,029 5/5/2025
3.0.1071 1,369 5/5/2025
3.0.1070 2,517 5/5/2025
3.0.1069 1,153 5/5/2025
3.0.1068 339 5/5/2025
3.0.1067 227 5/5/2025
3.0.1066 28,363 4/9/2025
3.0.1065 412 4/9/2025
3.0.1064 1,687 4/8/2025
3.0.1063 3,570 4/8/2025
3.0.1062 4,792 4/8/2025
3.0.1061 298 4/8/2025
3.0.1060 251 4/8/2025
3.0.1059 273 4/8/2025
3.0.1058 235 4/8/2025
3.0.1057 1,417 4/8/2025
3.0.1056 431 4/8/2025
3.0.1055 10,786 4/8/2025
3.0.1054 1,065 4/8/2025
3.0.1053 5,346 4/7/2025
3.0.1052 1,146 4/7/2025
3.0.1051 242 4/7/2025
3.0.1050 927 4/7/2025
3.0.1049 236 4/7/2025
3.0.1048 11,353 4/7/2025
3.0.1047 238 4/7/2025
3.0.1046 16,062 4/7/2025
3.0.1045 244 4/7/2025
3.0.1044 2,174 4/7/2025
3.0.1043 241 4/7/2025
3.0.1042 2,656 4/7/2025
3.0.1041 1,543 4/6/2025
3.0.1040 425 4/6/2025
3.0.1039 243 4/6/2025
3.0.1038 1,832 4/6/2025
3.0.1037 248 4/6/2025
3.0.1036 613 4/6/2025
3.0.1035 1,906 4/6/2025
3.0.1034 208 4/6/2025
3.0.1033 3,428 4/6/2025
3.0.1032 184 4/6/2025
3.0.1031 232 4/6/2025
3.0.1030 190 4/6/2025
3.0.1029 2,633 4/5/2025
3.0.1028 281 4/5/2025
3.0.1027 1,970 4/5/2025
3.0.1026 1,654 4/5/2025
3.0.1025 1,755 4/5/2025
3.0.1024 1,001 4/5/2025
3.0.1023 882 4/5/2025
3.0.1022 187 4/5/2025
3.0.1021 2,136 4/4/2025
3.0.1020 11,202 4/4/2025
3.0.1019 38,267 4/4/2025
3.0.1018 11,492 4/1/2025
3.0.1017 4,460 4/1/2025
3.0.1016 247 4/1/2025
3.0.1015 9,330 4/1/2025
3.0.1014 4,015 3/31/2025
3.0.1013 553 3/31/2025
3.0.1012 6,528 3/31/2025
3.0.1011 11,767 3/29/2025
3.0.1010 1,816 3/29/2025
3.0.1009 2,449 3/29/2025
3.0.1008 186 3/29/2025
3.0.1007 7,528 3/27/2025
3.0.1006 6,354 3/25/2025
3.0.1005 757 3/25/2025
3.0.1004 5,143 3/25/2025
3.0.1003 10,474 3/21/2025
3.0.1002 4,421 3/21/2025
3.0.1001 11,270 3/18/2025
3.0.1000 5,823 3/18/2025
3.0.999 11,025 3/15/2025
3.0.998 3,141 3/15/2025
3.0.997 155 3/15/2025
3.0.996 10,437 3/12/2025
3.0.995 3,687 3/12/2025
3.0.994 248 3/12/2025
3.0.993 594 3/12/2025
3.0.992 233 3/12/2025
3.0.991 4,628 3/11/2025
3.0.990 241 3/11/2025
3.0.989 2,129 3/11/2025
3.0.988 249 3/11/2025
3.0.987 4,161 3/11/2025
3.0.986 261 3/11/2025
3.0.985 4,310 3/11/2025
3.0.984 237 3/11/2025
3.0.983 2,753 3/11/2025
3.0.982 221 3/11/2025
3.0.981 15,058 3/7/2025
3.0.980 4,386 3/7/2025
3.0.979 10,020 3/2/2025
3.0.978 1,742 3/2/2025
3.0.977 1,103 3/2/2025
3.0.976 163 3/2/2025
3.0.975 7,265 3/2/2025
3.0.974 181 3/2/2025
3.0.973 5,571 3/1/2025
3.0.972 160 3/1/2025
3.0.971 7,490 3/1/2025
3.0.970 208 3/1/2025
3.0.969 155 3/1/2025
3.0.968 695 3/1/2025
3.0.967 176 3/1/2025
3.0.966 10,139 3/1/2025
3.0.965 7,885 2/26/2025
3.0.964 1,371 2/26/2025
3.0.963 3,977 2/25/2025
3.0.962 169 2/25/2025
3.0.961 1,404 2/25/2025
3.0.960 141 2/25/2025
3.0.959 222 2/25/2025
3.0.958 3,165 2/25/2025
3.0.957 8,238 2/24/2025
3.0.956 7,713 2/23/2025
3.0.955 1,814 2/22/2025
3.0.954 153 2/22/2025
3.0.953 12,974 2/22/2025
3.0.952 3,776 2/22/2025
3.0.951 1,850 2/22/2025
3.0.950 1,287 2/22/2025
3.0.949 213 2/22/2025
3.0.948 172 2/22/2025
3.0.947 184 2/22/2025
3.0.946 7,922 2/21/2025
3.0.945 174 2/21/2025
3.0.944 9,569 2/21/2025
3.0.943 7,672 2/19/2025
3.0.942 2,661 2/19/2025
3.0.941 1,087 2/19/2025
3.0.940 182 2/19/2025
3.0.939 635 2/18/2025
3.0.938 184 2/18/2025
3.0.937 9,127 2/18/2025
3.0.936 188 2/18/2025
3.0.935 4,686 2/18/2025
3.0.934 11,000 2/16/2025
3.0.933 2,528 2/14/2025
3.0.932 1,318 2/14/2025
3.0.931 1,191 2/13/2025
3.0.930 4,063 2/13/2025
3.0.929 453 2/13/2025
3.0.928 6,223 2/13/2025
3.0.927 6,154 2/12/2025
3.0.926 2,415 2/12/2025
3.0.925 202 2/12/2025
3.0.924 178 2/12/2025
3.0.923 3,440 2/12/2025
3.0.922 533 2/12/2025
3.0.921 194 2/12/2025
3.0.920 269 2/12/2025
3.0.919 282 2/12/2025
3.0.918 182 2/12/2025
3.0.917 260 2/11/2025
3.0.916 5,756 2/11/2025
3.0.915 6,283 2/11/2025
3.0.914 3,835 2/11/2025
3.0.913 195 2/11/2025
3.0.912 621 2/11/2025
3.0.911 2,949 2/10/2025
3.0.910 199 2/10/2025
3.0.909 1,257 2/10/2025
3.0.908 193 2/10/2025
3.0.907 10,590 2/10/2025
3.0.906 188 2/10/2025
3.0.905 1,962 2/9/2025
3.0.904 9,486 2/9/2025
3.0.903 173 2/9/2025
3.0.902 12,398 2/8/2025
3.0.901 193 2/8/2025
3.0.900 2,870 2/7/2025
3.0.899 185 2/7/2025
3.0.898 2,729 2/7/2025
3.0.897 185 2/7/2025
3.0.896 1,038 2/7/2025
3.0.895 691 2/7/2025
3.0.894 194 2/7/2025
3.0.893 570 2/7/2025
3.0.892 181 2/7/2025
3.0.891 1,749 2/7/2025
3.0.890 173 2/7/2025
3.0.889 189 2/7/2025
3.0.888 17,820 2/7/2025
3.0.887 10,626 2/5/2025
3.0.886 1,015 2/5/2025
3.0.885 1,563 2/5/2025
3.0.884 474 2/5/2025
3.0.883 1,709 2/5/2025
3.0.882 1,104 2/5/2025
3.0.881 5,302 2/5/2025
3.0.880 162 2/5/2025
3.0.879 17,378 1/28/2025
3.0.878 1,137 1/28/2025
3.0.877 3,222 1/28/2025
3.0.876 378 1/28/2025
3.0.875 6,928 1/28/2025
3.0.874 1,130 1/27/2025
3.0.873 142 1/27/2025
3.0.872 294 1/27/2025
3.0.871 454 1/27/2025
3.0.870 166 1/27/2025
3.0.869 8,784 1/27/2025
3.0.868 7,883 1/26/2025
3.0.867 1,612 1/26/2025
3.0.866 296 1/26/2025
3.0.865 1,758 1/26/2025
3.0.864 2,279 1/25/2025
3.0.863 173 1/25/2025
3.0.862 9,917 1/25/2025
3.0.861 1,784 1/25/2025
3.0.860 500 1/25/2025
3.0.859 180 1/25/2025
3.0.858 3,361 1/25/2025
3.0.857 2,248 1/25/2025
3.0.856 11,225 1/24/2025
3.0.855 2,791 1/24/2025
3.0.854 155 1/24/2025
3.0.853 3,608 1/24/2025
3.0.852 548 1/24/2025
3.0.851 373 1/24/2025
3.0.850 5,589 1/24/2025
3.0.849 172 1/24/2025
3.0.848 871 1/23/2025
3.0.847 179 1/23/2025
3.0.846 1,005 1/23/2025
3.0.845 167 1/23/2025
3.0.844 13,616 1/22/2025
3.0.843 1,712 1/21/2025
3.0.842 1,653 1/21/2025
3.0.841 919 1/21/2025
3.0.840 152 1/21/2025
3.0.839 954 1/21/2025
3.0.838 1,190 1/21/2025
3.0.837 9,329 1/21/2025
3.0.836 956 1/21/2025
3.0.835 1,716 1/21/2025
3.0.834 179 1/21/2025
3.0.833 1,411 1/21/2025
3.0.832 167 1/21/2025
3.0.831 3,873 1/21/2025
3.0.830 160 1/21/2025
3.0.829 675 1/20/2025
3.0.828 4,858 1/20/2025
3.0.827 407 1/20/2025
3.0.826 3,518 1/20/2025
3.0.825 170 1/20/2025
3.0.824 1,869 1/20/2025
3.0.823 191 1/20/2025
3.0.822 193 1/20/2025
3.0.821 174 1/20/2025
3.0.820 625 1/20/2025
3.0.819 174 1/20/2025
3.0.818 170 1/20/2025
3.0.817 9,913 1/19/2025
3.0.816 180 1/19/2025
3.0.815 9,056 1/19/2025
3.0.814 2,814 1/19/2025
3.0.813 224 1/19/2025
3.0.812 642 1/19/2025
3.0.811 177 1/19/2025
3.0.810 3,354 1/19/2025
3.0.809 165 1/19/2025
3.0.808 5,666 1/18/2025
3.0.807 180 1/18/2025
3.0.806 11,976 1/17/2025
3.0.805 186 1/17/2025
3.0.804 1,092 1/17/2025
3.0.803 1,608 1/17/2025
3.0.802 7,419 1/16/2025
3.0.801 2,471 1/16/2025
3.0.800 3,741 1/16/2025
3.0.799 940 1/16/2025
3.0.798 2,055 1/16/2025
3.0.797 1,778 1/16/2025
3.0.796 162 1/16/2025
3.0.795 8,072 1/15/2025
3.0.794 162 1/15/2025
3.0.793 4,798 1/15/2025
3.0.792 164 1/15/2025
3.0.791 249 1/15/2025
3.0.790 5,825 1/15/2025
3.0.789 141 1/15/2025
3.0.788 5,104 1/15/2025
3.0.787 146 1/15/2025
3.0.786 884 1/15/2025
3.0.785 148 1/15/2025
3.0.784 2,981 1/15/2025
3.0.783 145 1/15/2025
3.0.782 468 1/14/2025
3.0.781 148 1/14/2025
3.0.780 160 1/14/2025
3.0.779 6,424 1/14/2025
3.0.778 1,054 1/14/2025
3.0.777 166 1/14/2025
3.0.776 1,890 1/14/2025
3.0.775 141 1/14/2025
3.0.774 9,895 1/13/2025
3.0.773 2,862 1/13/2025
3.0.772 2,473 1/13/2025
3.0.771 168 1/13/2025
3.0.770 9,403 1/11/2025
3.0.769 3,820 1/11/2025
3.0.768 185 1/11/2025
3.0.767 3,375 1/11/2025
3.0.766 189 1/11/2025
3.0.765 3,243 1/10/2025
3.0.764 3,625 1/10/2025
3.0.763 172 1/10/2025
3.0.762 1,472 1/10/2025
3.0.761 184 1/10/2025
3.0.760 171 1/10/2025
3.0.759 11,296 1/3/2025
3.0.758 766 1/3/2025
3.0.757 1,689 1/3/2025
3.0.756 211 1/3/2025
3.0.755 2,558 1/3/2025
3.0.754 181 1/3/2025
3.0.753 1,938 1/3/2025
3.0.752 1,877 1/2/2025
3.0.751 173 1/2/2025
3.0.750 3,104 1/2/2025
3.0.749 177 1/2/2025
3.0.748 5,167 1/2/2025
3.0.747 159 1/2/2025
3.0.746 187 1/2/2025
3.0.745 8,509 1/1/2025
3.0.744 1,790 1/1/2025
3.0.743 459 1/1/2025
3.0.742 200 1/1/2025
3.0.741 2,762 1/1/2025
3.0.740 183 1/1/2025
3.0.739 170 1/1/2025
3.0.738 188 1/1/2025
3.0.737 552 12/31/2024
3.0.736 189 12/31/2024
3.0.735 206 12/31/2024
3.0.734 1,100 12/31/2024
3.0.733 200 12/31/2024
3.0.732 8,280 12/31/2024
3.0.731 187 12/31/2024
3.0.730 7,942 12/31/2024
3.0.729 143 12/31/2024
3.0.728 4,403 12/31/2024
3.0.727 578 12/31/2024
3.0.726 178 12/31/2024
3.0.725 2,385 12/31/2024
3.0.724 181 12/31/2024
3.0.723 15,887 12/28/2024
3.0.722 2,045 12/28/2024
3.0.721 2,244 12/27/2024
3.0.720 196 12/27/2024
3.0.719 4,808 12/27/2024
3.0.718 8,898 12/24/2024
3.0.717 2,199 12/24/2024
3.0.716 1,588 12/24/2024
3.0.715 1,376 12/24/2024
3.0.714 2,369 12/24/2024
3.0.713 172 12/24/2024
3.0.712 3,910 12/24/2024
3.0.711 1,067 12/24/2024
3.0.710 165 12/24/2024
3.0.709 733 12/24/2024
3.0.708 1,692 12/24/2024
3.0.707 403 12/24/2024
3.0.706 201 12/24/2024
3.0.705 1,788 12/24/2024
3.0.704 184 12/24/2024
3.0.703 3,118 12/23/2024
3.0.702 5,088 12/23/2024
3.0.701 184 12/23/2024
3.0.700 1,186 12/23/2024
3.0.699 169 12/23/2024
3.0.698 3,432 12/23/2024
3.0.697 165 12/23/2024
3.0.696 2,594 12/23/2024
3.0.695 188 12/23/2024
3.0.694 778 12/22/2024
3.0.693 2,488 12/22/2024
3.0.692 7,191 12/22/2024
3.0.691 191 12/22/2024
3.0.690 2,828 12/22/2024
3.0.689 261 12/22/2024
3.0.688 801 12/22/2024
3.0.687 172 12/22/2024
3.0.686 448 12/22/2024
3.0.685 183 12/22/2024
3.0.684 12,039 12/22/2024
3.0.683 157 12/22/2024
3.0.682 1,941 12/21/2024
3.0.681 486 12/21/2024
3.0.680 171 12/21/2024
3.0.679 893 12/21/2024
3.0.678 1,404 12/21/2024
3.0.677 177 12/21/2024
3.0.676 6,903 12/21/2024
3.0.675 692 12/21/2024
3.0.674 179 12/21/2024
3.0.673 4,625 12/21/2024
3.0.672 1,212 12/21/2024
3.0.671 186 12/21/2024
3.0.670 2,755 12/20/2024
3.0.669 197 12/20/2024
3.0.668 185 12/20/2024
3.0.667 6,723 12/20/2024
3.0.666 1,996 12/20/2024
3.0.665 389 12/20/2024
3.0.664 6,278 12/19/2024
3.0.663 750 12/19/2024
3.0.662 3,683 12/18/2024
3.0.661 174 12/18/2024
3.0.660 11,595 12/17/2024
3.0.659 343 12/17/2024
3.0.658 1,148 12/16/2024
3.0.657 176 12/16/2024
3.0.656 247 12/16/2024
3.0.655 174 12/16/2024
3.0.654 11,283 12/10/2024
3.0.653 1,777 12/10/2024
3.0.652 682 12/9/2024
3.0.651 183 12/9/2024
3.0.650 4,756 12/9/2024
3.0.649 2,475 12/9/2024
3.0.648 162 12/9/2024
3.0.647 6,787 12/9/2024
3.0.646 5,036 12/6/2024
3.0.645 749 12/6/2024
3.0.644 168 12/6/2024
3.0.643 1,193 12/6/2024
3.0.641 6,960 12/6/2024
3.0.640 4,298 12/6/2024
3.0.639 9,554 12/6/2024
3.0.637 602 12/6/2024
3.0.636 4,428 12/5/2024
3.0.635 6,272 12/5/2024
3.0.634 5,086 12/5/2024
3.0.633 176 12/5/2024
3.0.632 3,440 12/5/2024
3.0.631 1,756 12/5/2024
3.0.630 180 12/5/2024
3.0.629 655 12/5/2024
3.0.628 179 12/5/2024
3.0.627 233 12/5/2024
3.0.626 180 12/5/2024
3.0.625 6,007 12/4/2024
3.0.624 171 12/4/2024
3.0.623 193 12/4/2024
3.0.622 194 12/4/2024
3.0.621 2,990 12/4/2024
3.0.620 555 12/4/2024
3.0.619 723 12/4/2024
3.0.618 6,066 12/3/2024
3.0.617 184 12/3/2024
3.0.616 1,976 12/3/2024
3.0.615 782 12/3/2024
3.0.614 185 12/3/2024
3.0.613 198 12/3/2024
3.0.612 7,218 12/3/2024
3.0.611 174 12/3/2024
3.0.610 5,977 12/3/2024
3.0.609 165 12/3/2024
3.0.608 5,542 12/2/2024
3.0.607 4,909 12/2/2024
3.0.606 2,928 12/2/2024
3.0.605 480 12/2/2024
3.0.604 184 12/2/2024
3.0.603 713 12/2/2024
3.0.602 6,161 12/1/2024
3.0.601 190 12/1/2024
3.0.600 3,442 12/1/2024
3.0.599 330 12/1/2024
3.0.598 6,211 12/1/2024
3.0.597 188 12/1/2024
3.0.596 6,418 11/29/2024
3.0.595 1,886 11/29/2024
3.0.594 10,980 11/21/2024
3.0.593 543 11/21/2024
3.0.592 8,056 11/20/2024
3.0.591 562 11/20/2024
3.0.590 199 11/20/2024
3.0.589 170 11/20/2024
3.0.588 711 11/20/2024
3.0.587 270 11/20/2024
3.0.586 173 11/20/2024
3.0.585 3,503 11/20/2024
3.0.584 4,809 11/19/2024
3.0.583 167 11/19/2024
3.0.582 1,084 11/19/2024
3.0.581 158 11/19/2024
3.0.580 4,202 11/19/2024
3.0.579 151 11/19/2024
3.0.578 2,257 11/19/2024
3.0.577 186 11/19/2024
3.0.576 14,954 11/14/2024
3.0.575 246 11/14/2024
3.0.574 927 11/14/2024
3.0.573 4,136 11/14/2024
3.0.572 1,299 11/14/2024
3.0.571 199 11/14/2024
3.0.570 190 11/14/2024
3.0.569 7,168 11/14/2024
3.0.568 183 11/14/2024
3.0.567 182 11/14/2024
3.0.566 6,241 11/14/2024
3.0.565 181 11/14/2024
3.0.564 171 11/14/2024
3.0.563 168 11/14/2024
2.1.562 14,440 11/13/2024
2.1.561 2,478 11/13/2024
2.1.560 5,286 11/13/2024
2.1.559 199 11/13/2024
2.1.558 2,258 11/12/2024
2.1.557 643 11/12/2024
2.1.556 13,795 11/9/2024
2.1.555 615 11/9/2024
2.1.554 203 11/9/2024
2.1.553 2,962 11/9/2024
2.1.552 184 11/9/2024
2.1.551 1,526 11/8/2024
2.1.550 184 11/8/2024
2.1.549 181 11/8/2024
2.1.548 195 11/8/2024
2.1.547 699 11/8/2024
2.1.546 3,268 11/8/2024
2.1.545 168 11/8/2024
2.1.544 9,254 11/8/2024
2.1.543 158 11/8/2024
2.1.542 20,216 11/1/2024
2.1.541 763 11/1/2024
2.1.540 11,848 10/29/2024
2.1.539 1,291 10/29/2024
2.1.538 4,748 10/29/2024
2.1.537 1,014 10/29/2024
2.1.536 9,438 10/28/2024
2.1.535 3,243 10/28/2024
2.1.534 6,588 10/26/2024
2.1.533 1,199 10/26/2024
2.1.532 13,859 10/22/2024
2.1.531 433 10/22/2024
2.1.530 916 10/22/2024
2.1.529 1,596 10/22/2024
2.1.528 188 10/22/2024
2.1.527 780 10/22/2024
2.1.526 11,327 10/18/2024
2.1.525 1,874 10/17/2024
2.1.524 7,232 10/15/2024
2.1.523 2,803 10/15/2024
2.1.522 186 10/14/2024
2.1.521 8,932 10/12/2024
2.1.520 1,138 10/11/2024
2.1.519 178 10/11/2024
2.1.518 805 10/11/2024
2.1.517 5,078 10/11/2024
2.1.516 11,095 10/9/2024
2.1.515 624 10/9/2024
2.1.514 159 10/9/2024
2.1.513 3,402 10/8/2024
2.1.512 245 10/8/2024
2.1.511 3,696 10/8/2024
2.1.510 228 10/8/2024
2.1.509 181 10/8/2024
2.1.508 6,762 10/8/2024
2.1.507 10,616 10/3/2024
2.1.506 186 10/3/2024
2.1.505 1,976 10/3/2024
2.1.504 3,404 10/3/2024
2.1.503 2,440 10/3/2024
2.1.502 10,099 10/2/2024
2.1.501 184 10/2/2024
2.1.500 3,168 10/2/2024
2.1.499 1,752 10/2/2024
2.1.498 7,116 10/1/2024
2.1.497 1,113 10/1/2024
2.1.496 191 10/1/2024
2.1.495 4,511 10/1/2024
2.1.494 190 10/1/2024
2.1.493 238 10/1/2024
2.1.492 9,360 9/29/2024
2.1.491 2,300 9/29/2024
2.1.490 191 9/29/2024
2.1.489 2,075 9/29/2024
2.1.488 186 9/29/2024
2.1.487 4,429 9/29/2024
2.1.486 8,743 9/27/2024
2.1.485 1,324 9/27/2024
2.1.484 5,265 9/27/2024
2.1.483 204 9/27/2024
2.1.482 752 9/27/2024
2.1.481 3,698 9/27/2024
2.1.480 5,434 9/26/2024
2.1.479 5,987 9/26/2024
2.1.478 4,073 9/26/2024
2.1.477 3,672 9/26/2024
2.1.476 6,372 9/26/2024
2.1.475 185 9/26/2024
2.1.474 9,512 9/23/2024
2.1.473 2,161 9/23/2024
2.1.472 1,573 9/23/2024
2.1.471 1,876 9/23/2024
2.1.470 182 9/23/2024
2.1.469 2,596 9/23/2024
2.1.468 157 9/23/2024
2.1.467 8,027 9/23/2024
2.1.466 185 9/23/2024
2.1.465 1,205 9/23/2024
2.1.464 203 9/23/2024
2.1.463 178 9/23/2024
2.1.462 1,532 9/23/2024
2.1.461 15,660 9/18/2024
2.1.460 414 9/17/2024
2.1.459 2,036 9/17/2024
2.1.458 2,743 9/17/2024
2.1.457 185 9/17/2024
2.1.456 2,976 9/17/2024
2.1.455 780 9/17/2024
2.1.454 5,337 9/17/2024
2.1.453 899 9/17/2024
2.1.452 326 9/17/2024
2.1.451 4,342 9/17/2024
2.1.450 12,557 9/16/2024
2.1.449 1,145 9/16/2024
2.1.448 8,100 9/12/2024
2.1.447 4,781 9/12/2024
2.1.446 2,131 9/11/2024
2.1.445 2,575 9/11/2024
2.1.443 5,829 9/11/2024
2.1.442 1,541 9/11/2024
2.1.441 1,461 9/11/2024
2.1.440 3,587 9/11/2024
2.1.439 12,858 9/10/2024
2.1.438 201 9/10/2024
2.1.437 1,862 9/10/2024
2.1.436 201 9/10/2024
2.1.434 4,638 9/10/2024
2.1.433 925 9/9/2024
2.1.432 2,867 9/9/2024
2.1.430 2,434 9/9/2024
2.1.428 201 9/9/2024
2.1.427 704 9/9/2024
2.1.426 21,082 9/7/2024
2.1.425 236 9/7/2024
2.1.424 8,090 9/6/2024
2.1.423 552 9/6/2024
2.1.422 3,583 9/6/2024
2.1.421 188 9/5/2024
2.1.420 206 9/5/2024
2.1.419 3,852 9/5/2024
2.1.418 1,792 9/5/2024
2.1.417 189 9/5/2024
2.1.416 1,801 9/5/2024
2.1.415 705 9/5/2024
2.1.414 184 9/5/2024
2.1.413 8,112 9/5/2024
2.1.412 303 9/5/2024
2.1.411 190 9/5/2024
2.1.410 3,592 9/4/2024
2.1.409 12,980 9/3/2024
2.1.408 189 9/3/2024
2.1.407 188 9/3/2024
2.1.406 6,538 9/3/2024
2.1.405 229 9/3/2024
2.1.404 4,123 9/3/2024
2.1.403 8,604 8/29/2024
2.1.402 4,248 8/29/2024
2.1.401 4,652 8/26/2024
2.1.400 170 8/26/2024
2.1.399 8,213 8/21/2024
2.1.398 998 8/21/2024
2.1.397 229 8/21/2024
2.1.396 4,328 8/21/2024
2.1.395 234 8/20/2024
2.1.394 228 8/20/2024
2.1.393 753 8/20/2024
2.1.392 5,016 8/20/2024
2.1.391 711 8/20/2024
2.1.390 187 8/20/2024
2.1.389 4,347 8/20/2024
2.1.388 208 8/20/2024
2.1.387 1,974 8/20/2024
2.1.386 4,817 8/19/2024
2.1.385 7,905 8/15/2024
2.1.384 3,412 8/15/2024
2.1.383 7,816 8/14/2024
2.1.382 224 8/13/2024
2.1.381 9,180 8/7/2024
2.1.380 505 8/6/2024
2.1.379 4,473 8/6/2024
2.1.378 8,466 8/1/2024
2.1.377 581 8/1/2024
2.1.376 180 8/1/2024
2.1.374 2,050 8/1/2024
2.1.373 10,149 7/25/2024
2.1.372 184 7/25/2024
2.1.371 1,320 7/25/2024
2.1.370 517 7/25/2024
2.1.369 615 7/25/2024
2.1.368 337 7/25/2024
2.1.367 679 7/24/2024
2.1.366 252 7/24/2024
2.1.365 373 7/24/2024
2.1.364 572 7/24/2024
2.1.363 14,395 7/20/2024
2.1.362 2,554 7/20/2024
2.1.361 8,584 7/14/2024
2.1.360 2,611 7/14/2024
2.1.359 189 7/14/2024
2.1.358 2,483 7/14/2024
2.1.357 7,316 7/10/2024
2.1.355 1,179 7/10/2024
2.1.354 1,989 7/10/2024
2.1.353 190 7/10/2024
2.1.352 2,847 7/10/2024
2.1.351 226 7/10/2024
2.1.350 192 7/10/2024
2.1.349 271 7/10/2024
2.1.348 186 7/10/2024
2.1.347 3,403 7/10/2024
2.1.346 205 7/10/2024
2.1.345 1,367 7/10/2024
2.1.344 197 7/10/2024
2.1.343 332 7/9/2024
2.1.342 170 7/9/2024
2.1.339 3,190 7/9/2024
2.1.338 731 7/9/2024
2.1.337 6,733 7/9/2024
2.1.336 1,874 7/9/2024
2.1.335 200 7/9/2024
2.1.334 4,342 7/9/2024
2.1.333 175 7/9/2024
2.1.332 13,344 7/9/2024
2.1.331 199 7/9/2024
2.1.330 4,217 7/9/2024
2.1.329 186 7/9/2024
2.1.328 1,769 7/9/2024
2.1.327 1,112 7/8/2024
2.1.326 1,687 7/8/2024
2.1.325 187 7/8/2024
2.1.324 203 7/8/2024
2.1.323 8,130 7/8/2024
2.1.322 2,776 7/8/2024
2.1.321 186 7/8/2024
2.1.320 3,969 7/7/2024
2.1.319 212 7/7/2024
2.1.318 210 7/7/2024
2.1.317 197 7/7/2024
2.1.316 1,908 7/7/2024
2.1.315 3,678 7/7/2024
2.1.314 3,088 7/7/2024
2.1.313 374 7/7/2024
2.1.312 5,711 7/5/2024
2.1.311 6,759 7/3/2024
2.1.310 5,221 7/3/2024
2.1.309 650 7/3/2024
2.1.308 6,834 7/2/2024
2.1.307 3,106 6/30/2024
2.1.306 3,807 6/28/2024
2.1.305 8,932 6/22/2024
2.1.304 8,085 6/15/2024
2.1.303 6,582 6/14/2024
2.1.302 9,572 6/1/2024
2.1.301 2,649 6/1/2024
2.1.300 975 6/1/2024
2.1.299 9,702 5/31/2024
2.1.298 6,106 5/29/2024
2.1.297 5,011 5/28/2024
2.1.296 4,026 5/27/2024
2.1.295 7,952 5/26/2024
2.1.294 3,339 5/26/2024
2.1.293 769 5/26/2024
2.1.292 4,104 5/25/2024
2.1.291 2,192 5/25/2024
2.1.290 213 5/25/2024
2.1.289 197 5/25/2024
2.1.288 1,126 5/25/2024
2.1.287 209 5/25/2024
2.1.286 628 5/25/2024
2.1.285 199 5/25/2024
2.1.284 213 5/25/2024
2.1.283 12,118 5/23/2024
2.1.282 883 5/23/2024
2.1.281 431 5/22/2024
2.1.280 5,983 5/22/2024
2.1.279 212 5/22/2024
2.1.278 211 5/22/2024
2.1.277 195 5/22/2024
2.1.276 3,573 5/22/2024
2.1.275 5,563 5/18/2024
2.1.274 3,093 5/18/2024
2.1.273 2,917 5/17/2024
2.1.272 195 5/17/2024
2.1.271 4,435 5/16/2024
2.1.270 684 5/15/2024
2.1.269 4,472 5/15/2024
2.1.268 7,414 5/12/2024
2.1.267 4,505 5/3/2024
2.1.266 1,943 4/30/2024
2.1.265 2,881 4/29/2024
2.1.264 3,095 4/29/2024
2.1.263 4,370 4/28/2024
2.1.262 2,447 4/28/2024
2.1.261 1,769 4/28/2024
2.1.260 2,762 4/28/2024
2.1.259 1,512 4/28/2024
2.1.258 195 4/28/2024
2.1.257 6,877 4/27/2024
2.1.256 211 4/27/2024
2.1.255 6,924 4/19/2024
2.1.254 6,661 4/18/2024
2.1.253 5,460 4/12/2024
2.1.252 1,817 4/12/2024
2.1.251 1,134 4/12/2024
2.1.250 1,384 4/12/2024
2.1.249 313 4/12/2024
2.1.248 183 4/12/2024
2.1.247 1,568 4/12/2024
2.1.246 503 4/12/2024
2.1.245 2,553 4/11/2024
2.1.244 6,129 4/10/2024
2.1.243 1,818 4/9/2024
2.1.242 5,049 4/2/2024
2.1.241 1,434 4/1/2024
2.1.240 3,339 3/29/2024
2.1.239 2,895 3/25/2024
2.1.238 466 3/25/2024
2.1.237 5,312 3/20/2024
2.1.236 3,302 3/19/2024
2.1.235 754 3/19/2024
2.1.234 3,826 3/18/2024
2.1.233 2,119 3/18/2024
2.1.232 2,091 3/15/2024
2.1.231 3,671 3/13/2024
2.1.230 1,657 3/13/2024
2.1.229 1,071 3/13/2024
2.1.228 1,152 3/13/2024
2.1.227 210 3/13/2024
2.1.226 800 3/13/2024
2.1.225 208 3/13/2024
2.1.224 209 3/13/2024
2.1.223 2,599 3/12/2024
2.1.222 4,397 3/11/2024
2.1.221 3,801 3/11/2024
2.1.220 2,571 3/10/2024
2.1.219 2,914 3/8/2024
2.1.218 1,653 3/8/2024
2.1.217 2,423 3/8/2024
2.1.216 3,222 3/6/2024
2.1.215 3,042 3/4/2024
2.1.214 2,188 3/4/2024
2.1.213 4,013 3/2/2024
2.1.212 1,838 3/2/2024
2.1.211 634 3/2/2024
2.1.210 538 3/2/2024
2.1.209 780 3/2/2024
2.1.208 5,236 2/29/2024
2.1.207 964 2/29/2024
2.1.206 549 2/29/2024
2.1.205 5,036 2/26/2024
2.1.204 2,243 2/25/2024
2.1.203 3,996 2/23/2024
2.1.202 2,842 2/22/2024
2.1.201 1,406 2/22/2024
2.1.200 680 2/21/2024
2.1.199 1,747 2/21/2024
2.1.198 439 2/21/2024
2.1.197 1,023 2/21/2024
2.1.196 206 2/21/2024
2.1.195 1,992 2/21/2024
2.1.194 621 2/21/2024
2.1.193 201 2/21/2024
2.1.192 231 2/21/2024
2.1.191 850 2/21/2024
2.1.190 196 2/21/2024
2.1.189 4,069 2/20/2024
2.1.188 1,003 2/20/2024
2.1.187 959 2/20/2024
2.1.186 1,239 2/20/2024
2.1.185 3,165 2/19/2024
2.1.184 2,847 2/17/2024
2.1.183 1,386 2/16/2024
2.1.182 1,270 2/16/2024
2.1.181 2,054 2/16/2024
2.1.180 214 2/16/2024
2.1.179 1,034 2/16/2024
2.1.178 216 2/16/2024
2.1.177 209 2/16/2024
2.1.176 823 2/16/2024
2.1.175 203 2/16/2024
2.1.174 4,912 2/13/2024
2.1.173 2,052 2/13/2024
2.1.172 1,658 2/13/2024
2.1.171 706 2/13/2024
2.1.170 939 2/13/2024
2.1.169 2,901 2/12/2024
2.1.168 700 2/11/2024
2.1.167 2,257 2/11/2024
2.1.166 1,241 2/11/2024
2.1.165 4,184 2/10/2024
2.1.164 809 2/9/2024
2.1.163 202 2/9/2024
2.1.162 2,343 2/9/2024
2.1.161 2,436 2/9/2024
2.1.160 624 2/8/2024
2.1.159 1,823 2/8/2024
2.1.158 1,192 2/8/2024
2.1.157 2,181 2/8/2024
2.1.156 187 2/8/2024
2.1.155 2,779 2/7/2024
2.1.154 661 2/7/2024
2.1.153 886 2/7/2024
2.1.152 1,923 2/7/2024
2.1.151 524 2/6/2024
2.1.150 194 2/6/2024
2.1.149 204 2/6/2024
2.1.148 4,116 2/5/2024
2.1.147 2,298 2/4/2024
2.1.146 3,102 2/2/2024
2.1.145 2,812 1/31/2024
2.1.144 3,084 1/29/2024
2.1.143 1,965 1/29/2024
2.1.142 543 1/29/2024
2.1.141 2,076 1/28/2024
2.1.140 700 1/28/2024
2.1.139 470 1/28/2024
2.1.138 786 1/28/2024
2.1.137 2,883 1/28/2024
2.1.136 1,516 1/28/2024
2.1.135 476 1/27/2024
2.1.134 1,339 1/27/2024
2.1.133 1,850 1/27/2024
2.1.132 1,785 1/27/2024
2.1.131 227 1/27/2024
2.1.130 977 1/27/2024
2.1.129 1,607 1/26/2024
2.1.128 376 1/26/2024
2.1.127 1,290 1/26/2024
2.1.126 1,719 1/26/2024
2.1.125 2,386 1/26/2024
2.1.124 1,363 1/25/2024
2.1.123 1,470 1/25/2024
2.1.122 672 1/25/2024
2.1.121 1,350 1/25/2024
2.1.120 744 1/25/2024
2.1.119 3,847 1/19/2024
2.1.118 3,140 1/15/2024
2.1.117 720 1/15/2024
2.1.116 1,887 1/15/2024
2.1.115 206 1/15/2024
2.1.114 823 1/15/2024
2.1.113 1,978 1/15/2024
2.1.112 3,610 1/14/2024
2.1.111 2,343 1/13/2024
2.1.110 2,526 1/12/2024
2.1.109 2,937 1/11/2024
2.1.108 3,752 1/7/2024
2.1.107 2,881 1/5/2024
2.1.106 733 1/5/2024
2.1.105 227 1/5/2024
2.1.104 206 1/5/2024
2.1.103 2,095 1/5/2024
2.1.102 215 1/5/2024
2.1.101 3,954 1/1/2024
2.1.100 3,165 12/28/2023
2.1.99 1,073 12/28/2023
2.1.98 743 12/28/2023
2.1.97 201 12/28/2023
2.1.96 218 12/28/2023
2.1.95 1,050 12/27/2023
2.1.94 221 12/27/2023
2.1.93 766 12/27/2023
2.1.92 217 12/27/2023
2.1.91 223 12/27/2023
2.1.90 3,368 12/25/2023
2.1.89 551 12/25/2023
2.1.88 1,247 12/25/2023
2.1.87 227 12/25/2023
2.1.86 1,021 12/25/2023
2.1.85 215 12/25/2023
2.1.84 871 12/25/2023
2.1.83 215 12/25/2023
2.1.82 2,516 12/24/2023
2.1.81 1,641 12/23/2023
2.1.80 1,362 12/23/2023
2.1.79 451 12/23/2023
2.1.78 898 12/23/2023
2.1.77 221 12/23/2023
2.1.76 204 12/23/2023
2.1.75 1,641 12/23/2023
2.1.74 209 12/23/2023
2.1.73 2,155 12/19/2023
2.1.72 335 12/19/2023
2.1.71 4,549 12/11/2023
2.1.70 1,091 12/10/2023
2.1.69 210 12/10/2023
2.1.68 671 12/10/2023
2.1.67 2,224 12/10/2023
2.1.66 578 12/9/2023
2.1.65 589 12/9/2023
2.1.64 439 12/9/2023
2.1.63 227 12/9/2023
2.1.62 395 12/9/2023
2.1.61 329 12/9/2023
2.1.60 180 12/9/2023
2.1.59 1,632 12/9/2023
2.1.58 219 12/9/2023
2.1.57 2,371 12/6/2023
2.1.56 611 12/6/2023
2.1.55 381 12/6/2023
2.1.54 434 12/6/2023
2.1.53 1,422 12/5/2023
2.1.52 590 12/5/2023
2.1.51 531 12/5/2023
2.1.50 599 12/5/2023
2.1.49 180 12/5/2023
2.1.48 519 12/5/2023
2.1.47 418 12/5/2023
2.1.46 181 12/4/2023
2.1.45 187 12/4/2023
2.1.44 518 12/4/2023
2.1.43 210 12/4/2023
2.1.42 1,624 12/4/2023
2.1.41 156 12/4/2023
2.1.40 1,865 11/27/2023
2.1.39 846 11/26/2023
2.1.38 352 11/26/2023
2.1.37 992 11/23/2023
2.1.36 1,088 11/23/2023
2.1.35 1,050 11/23/2023
2.1.34 201 11/23/2023
2.1.33 644 11/23/2023
2.1.32 207 11/23/2023
2.1.31 1,773 11/20/2023
2.1.30 1,829 11/20/2023
2.1.29 1,330 11/19/2023
2.1.28 417 11/19/2023
2.1.27 758 11/19/2023
2.1.26 770 11/19/2023
2.1.25 794 11/19/2023
2.1.24 178 11/19/2023
2.1.23 353 11/18/2023
2.1.22 1,586 11/18/2023
2.1.21 574 11/18/2023
2.1.20 861 11/18/2023
2.1.19 200 11/18/2023
2.1.18 482 11/18/2023
2.1.17 195 11/18/2023
2.1.16 989 11/17/2023
2.1.15 849 11/17/2023
2.1.14 185 11/17/2023
2.1.13 696 11/17/2023
2.1.12 485 11/17/2023
2.1.11 797 11/17/2023
2.1.10 193 11/17/2023
2.1.9 790 11/17/2023
2.1.8 198 11/17/2023
2.1.7 242 11/17/2023
2.1.6 539 11/17/2023
2.1.5 589 11/16/2023
2.0.101 3,583 11/15/2023
2.0.100 165 11/15/2023
2.0.99 201 11/15/2023
2.0.4 186 11/16/2023
2.0.3 212 11/16/2023
2.0.2 194 11/16/2023
2.0.1 191 11/16/2023
1.0.98 997 11/14/2023
1.0.97 1,158 11/13/2023
1.0.96 168 11/13/2023
1.0.95 809 11/10/2023
1.0.94 189 11/10/2023
1.0.93 1,453 11/9/2023
1.0.92 189 11/9/2023
1.0.91 1,580 11/7/2023
1.0.90 187 11/7/2023
1.0.89 759 11/6/2023
1.0.88 199 11/6/2023
1.0.87 885 11/3/2023
1.0.86 201 11/3/2023
1.0.85 1,332 11/2/2023
1.0.84 180 11/2/2023
1.0.83 883 11/1/2023
1.0.82 2,152 10/26/2023
1.0.81 1,931 10/19/2023
1.0.80 219 10/19/2023
1.0.79 1,180 10/18/2023
1.0.78 233 10/18/2023
1.0.77 1,094 10/17/2023
1.0.76 221 10/17/2023
1.0.75 976 10/16/2023
1.0.74 224 10/16/2023
1.0.73 1,045 10/13/2023
1.0.72 491 10/12/2023
1.0.71 2,525 9/20/2023
1.0.70 1,061 9/19/2023
1.0.69 1,038 9/18/2023
1.0.68 220 9/18/2023
1.0.67 1,368 9/14/2023
1.0.66 2,158 8/31/2023
1.0.65 216 8/31/2023
1.0.64 1,238 8/30/2023
1.0.63 245 8/30/2023
1.0.62 263 8/30/2023
1.0.61 1,268 8/28/2023
1.0.60 1,047 8/25/2023
1.0.59 213 8/25/2023
1.0.58 736 8/24/2023
1.0.57 2,177 8/21/2023
1.0.56 1,255 8/18/2023
1.0.55 1,098 8/17/2023
1.0.54 244 8/17/2023
1.0.53 2,787 8/10/2023
1.0.52 823 8/9/2023
1.0.51 996 8/8/2023
1.0.50 934 8/7/2023
1.0.49 266 8/7/2023
1.0.48 3,547 7/13/2023
1.0.47 1,293 7/11/2023
1.0.46 1,041 7/10/2023
1.0.45 986 7/7/2023
1.0.44 270 7/7/2023
1.0.43 3,009 6/30/2023
1.0.42 1,499 6/29/2023
1.0.41 836 6/28/2023
1.0.40 2,162 6/26/2023
1.0.39 1,158 6/23/2023
1.0.38 1,532 6/21/2023
1.0.37 2,066 6/15/2023
1.0.36 715 6/14/2023
1.0.35 2,506 6/9/2023
1.0.34 1,129 6/8/2023
1.0.33 2,183 6/7/2023
1.0.32 267 6/7/2023
1.0.31 1,609 6/6/2023
1.0.30 1,591 6/5/2023
1.0.29 1,765 6/2/2023
1.0.28 262 6/2/2023
1.0.27 1,617 6/1/2023
1.0.26 848 5/31/2023
1.0.25 681 5/31/2023
1.0.24 269 5/31/2023
1.0.23 1,983 5/30/2023
1.0.22 2,067 5/26/2023
1.0.21 942 5/25/2023
1.0.20 249 5/25/2023
1.0.19 1,125 5/24/2023
1.0.18 251 5/24/2023
1.0.17 680 5/23/2023
1.0.13 1,998 5/22/2023
1.0.12 1,630 5/18/2023
1.0.11 852 5/17/2023
1.0.10 2,010 5/1/2023
1.0.9 1,347 4/25/2023
1.0.8 637 4/24/2023
1.0.7 1,292 4/21/2023
1.0.6 2,554 4/13/2023
1.0.5 798 4/12/2023
1.0.4 1,338 4/8/2023
1.0.3 297 4/8/2023
1.0.2 807 4/8/2023
1.0.1 301 4/8/2023