Soenneker.Utils.SingletonDictionary 3.0.1109

Prefix Reserved
dotnet add package Soenneker.Utils.SingletonDictionary --version 3.0.1109
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.1109
                    
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.1109" />
                    
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.1109" />
                    
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.1109
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.1109"
                    
#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.1109
                    
#: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.1109
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1109
                    
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.1109 71 10/16/2025
3.0.1108 24,445 9/30/2025
3.0.1107 44,105 9/9/2025
3.0.1106 26,987 9/3/2025
3.0.1105 416 9/3/2025
3.0.1104 2,648 9/3/2025
3.0.1103 35,480 8/14/2025
3.0.1102 9,093 8/11/2025
3.0.1101 3,656 8/11/2025
3.0.1100 907 8/11/2025
3.0.1099 161 8/11/2025
3.0.1098 27,093 8/6/2025
3.0.1097 5,849 8/5/2025
3.0.1096 34,383 7/9/2025
3.0.1095 35,044 6/28/2025
3.0.1094 2,044 6/28/2025
3.0.1093 2,851 6/27/2025
3.0.1092 3,667 6/27/2025
3.0.1091 38,515 6/10/2025
3.0.1090 26,622 5/27/2025
3.0.1089 1,458 5/27/2025
3.0.1088 1,500 5/27/2025
3.0.1087 3,685 5/27/2025
3.0.1086 22,307 5/23/2025
3.0.1085 1,980 5/23/2025
3.0.1084 1,975 5/23/2025
3.0.1083 1,884 5/23/2025
3.0.1082 362 5/22/2025
3.0.1081 15,364 5/18/2025
3.0.1079 2,351 5/18/2025
3.0.1078 2,294 5/18/2025
3.0.1077 6,565 5/14/2025
3.0.1076 14,253 5/8/2025
3.0.1075 428 5/8/2025
3.0.1074 912 5/8/2025
3.0.1073 1,700 5/7/2025
3.0.1072 19,880 5/5/2025
3.0.1071 1,326 5/5/2025
3.0.1070 2,470 5/5/2025
3.0.1069 1,131 5/5/2025
3.0.1068 314 5/5/2025
3.0.1067 209 5/5/2025
3.0.1066 28,023 4/9/2025
3.0.1065 385 4/9/2025
3.0.1064 1,653 4/8/2025
3.0.1063 3,528 4/8/2025
3.0.1062 4,740 4/8/2025
3.0.1061 270 4/8/2025
3.0.1060 231 4/8/2025
3.0.1059 259 4/8/2025
3.0.1058 217 4/8/2025
3.0.1057 1,392 4/8/2025
3.0.1056 409 4/8/2025
3.0.1055 10,665 4/8/2025
3.0.1054 1,046 4/8/2025
3.0.1053 5,308 4/7/2025
3.0.1052 1,116 4/7/2025
3.0.1051 221 4/7/2025
3.0.1050 911 4/7/2025
3.0.1049 218 4/7/2025
3.0.1048 11,230 4/7/2025
3.0.1047 220 4/7/2025
3.0.1046 15,806 4/7/2025
3.0.1045 223 4/7/2025
3.0.1044 2,144 4/7/2025
3.0.1043 222 4/7/2025
3.0.1042 2,592 4/7/2025
3.0.1041 1,508 4/6/2025
3.0.1040 406 4/6/2025
3.0.1039 228 4/6/2025
3.0.1038 1,809 4/6/2025
3.0.1037 226 4/6/2025
3.0.1036 592 4/6/2025
3.0.1035 1,875 4/6/2025
3.0.1034 191 4/6/2025
3.0.1033 3,386 4/6/2025
3.0.1032 169 4/6/2025
3.0.1031 219 4/6/2025
3.0.1030 179 4/6/2025
3.0.1029 2,609 4/5/2025
3.0.1028 263 4/5/2025
3.0.1027 1,928 4/5/2025
3.0.1026 1,629 4/5/2025
3.0.1025 1,723 4/5/2025
3.0.1024 980 4/5/2025
3.0.1023 869 4/5/2025
3.0.1022 166 4/5/2025
3.0.1021 2,093 4/4/2025
3.0.1020 11,064 4/4/2025
3.0.1019 37,843 4/4/2025
3.0.1018 11,326 4/1/2025
3.0.1017 4,378 4/1/2025
3.0.1016 223 4/1/2025
3.0.1015 9,202 4/1/2025
3.0.1014 3,958 3/31/2025
3.0.1013 526 3/31/2025
3.0.1012 6,404 3/31/2025
3.0.1011 11,630 3/29/2025
3.0.1010 1,781 3/29/2025
3.0.1009 2,394 3/29/2025
3.0.1008 163 3/29/2025
3.0.1007 7,419 3/27/2025
3.0.1006 6,278 3/25/2025
3.0.1005 737 3/25/2025
3.0.1004 5,036 3/25/2025
3.0.1003 10,319 3/21/2025
3.0.1002 4,346 3/21/2025
3.0.1001 11,149 3/18/2025
3.0.1000 5,754 3/18/2025
3.0.999 10,900 3/15/2025
3.0.998 3,094 3/15/2025
3.0.997 136 3/15/2025
3.0.996 10,293 3/12/2025
3.0.995 3,638 3/12/2025
3.0.994 232 3/12/2025
3.0.993 574 3/12/2025
3.0.992 213 3/12/2025
3.0.991 4,563 3/11/2025
3.0.990 226 3/11/2025
3.0.989 2,065 3/11/2025
3.0.988 224 3/11/2025
3.0.987 4,117 3/11/2025
3.0.986 239 3/11/2025
3.0.985 4,264 3/11/2025
3.0.984 218 3/11/2025
3.0.983 2,701 3/11/2025
3.0.982 207 3/11/2025
3.0.981 14,887 3/7/2025
3.0.980 4,323 3/7/2025
3.0.979 9,907 3/2/2025
3.0.978 1,710 3/2/2025
3.0.977 1,071 3/2/2025
3.0.976 153 3/2/2025
3.0.975 7,176 3/2/2025
3.0.974 164 3/2/2025
3.0.973 5,464 3/1/2025
3.0.972 143 3/1/2025
3.0.971 7,407 3/1/2025
3.0.970 191 3/1/2025
3.0.969 140 3/1/2025
3.0.968 670 3/1/2025
3.0.967 159 3/1/2025
3.0.966 10,027 3/1/2025
3.0.965 7,732 2/26/2025
3.0.964 1,344 2/26/2025
3.0.963 3,946 2/25/2025
3.0.962 148 2/25/2025
3.0.961 1,361 2/25/2025
3.0.960 126 2/25/2025
3.0.959 200 2/25/2025
3.0.958 3,097 2/25/2025
3.0.957 8,135 2/24/2025
3.0.956 7,564 2/23/2025
3.0.955 1,779 2/22/2025
3.0.954 143 2/22/2025
3.0.953 12,809 2/22/2025
3.0.952 3,700 2/22/2025
3.0.951 1,798 2/22/2025
3.0.950 1,249 2/22/2025
3.0.949 199 2/22/2025
3.0.948 160 2/22/2025
3.0.947 164 2/22/2025
3.0.946 7,821 2/21/2025
3.0.945 154 2/21/2025
3.0.944 9,395 2/21/2025
3.0.943 7,567 2/19/2025
3.0.942 2,617 2/19/2025
3.0.941 1,051 2/19/2025
3.0.940 161 2/19/2025
3.0.939 621 2/18/2025
3.0.938 165 2/18/2025
3.0.937 9,003 2/18/2025
3.0.936 168 2/18/2025
3.0.935 4,555 2/18/2025
3.0.934 10,896 2/16/2025
3.0.933 2,476 2/14/2025
3.0.932 1,293 2/14/2025
3.0.931 1,149 2/13/2025
3.0.930 4,025 2/13/2025
3.0.929 425 2/13/2025
3.0.928 6,149 2/13/2025
3.0.927 6,052 2/12/2025
3.0.926 2,376 2/12/2025
3.0.925 186 2/12/2025
3.0.924 162 2/12/2025
3.0.923 3,363 2/12/2025
3.0.922 500 2/12/2025
3.0.921 169 2/12/2025
3.0.920 256 2/12/2025
3.0.919 268 2/12/2025
3.0.918 163 2/12/2025
3.0.917 237 2/11/2025
3.0.916 5,697 2/11/2025
3.0.915 6,206 2/11/2025
3.0.914 3,754 2/11/2025
3.0.913 175 2/11/2025
3.0.912 600 2/11/2025
3.0.911 2,844 2/10/2025
3.0.910 178 2/10/2025
3.0.909 1,207 2/10/2025
3.0.908 176 2/10/2025
3.0.907 10,459 2/10/2025
3.0.906 171 2/10/2025
3.0.905 1,922 2/9/2025
3.0.904 9,367 2/9/2025
3.0.903 155 2/9/2025
3.0.902 12,255 2/8/2025
3.0.901 170 2/8/2025
3.0.900 2,827 2/7/2025
3.0.899 164 2/7/2025
3.0.898 2,676 2/7/2025
3.0.897 164 2/7/2025
3.0.896 988 2/7/2025
3.0.895 670 2/7/2025
3.0.894 176 2/7/2025
3.0.893 540 2/7/2025
3.0.892 161 2/7/2025
3.0.891 1,701 2/7/2025
3.0.890 155 2/7/2025
3.0.889 172 2/7/2025
3.0.888 17,654 2/7/2025
3.0.887 10,488 2/5/2025
3.0.886 982 2/5/2025
3.0.885 1,534 2/5/2025
3.0.884 447 2/5/2025
3.0.883 1,684 2/5/2025
3.0.882 1,052 2/5/2025
3.0.881 5,201 2/5/2025
3.0.880 149 2/5/2025
3.0.879 17,177 1/28/2025
3.0.878 1,116 1/28/2025
3.0.877 3,198 1/28/2025
3.0.876 355 1/28/2025
3.0.875 6,825 1/28/2025
3.0.874 1,103 1/27/2025
3.0.873 129 1/27/2025
3.0.872 277 1/27/2025
3.0.871 432 1/27/2025
3.0.870 149 1/27/2025
3.0.869 8,651 1/27/2025
3.0.868 7,736 1/26/2025
3.0.867 1,588 1/26/2025
3.0.866 276 1/26/2025
3.0.865 1,726 1/26/2025
3.0.864 2,246 1/25/2025
3.0.863 151 1/25/2025
3.0.862 9,785 1/25/2025
3.0.861 1,761 1/25/2025
3.0.860 487 1/25/2025
3.0.859 161 1/25/2025
3.0.858 3,285 1/25/2025
3.0.857 2,170 1/25/2025
3.0.856 11,078 1/24/2025
3.0.855 2,730 1/24/2025
3.0.854 137 1/24/2025
3.0.853 3,565 1/24/2025
3.0.852 520 1/24/2025
3.0.851 350 1/24/2025
3.0.850 5,487 1/24/2025
3.0.849 154 1/24/2025
3.0.848 829 1/23/2025
3.0.847 159 1/23/2025
3.0.846 967 1/23/2025
3.0.845 150 1/23/2025
3.0.844 13,392 1/22/2025
3.0.843 1,673 1/21/2025
3.0.842 1,616 1/21/2025
3.0.841 898 1/21/2025
3.0.840 140 1/21/2025
3.0.839 936 1/21/2025
3.0.838 1,162 1/21/2025
3.0.837 9,212 1/21/2025
3.0.836 928 1/21/2025
3.0.835 1,668 1/21/2025
3.0.834 157 1/21/2025
3.0.833 1,377 1/21/2025
3.0.832 151 1/21/2025
3.0.831 3,822 1/21/2025
3.0.830 142 1/21/2025
3.0.829 648 1/20/2025
3.0.828 4,808 1/20/2025
3.0.827 379 1/20/2025
3.0.826 3,470 1/20/2025
3.0.825 154 1/20/2025
3.0.824 1,840 1/20/2025
3.0.823 171 1/20/2025
3.0.822 167 1/20/2025
3.0.821 156 1/20/2025
3.0.820 593 1/20/2025
3.0.819 158 1/20/2025
3.0.818 153 1/20/2025
3.0.817 9,764 1/19/2025
3.0.816 161 1/19/2025
3.0.815 8,940 1/19/2025
3.0.814 2,739 1/19/2025
3.0.813 190 1/19/2025
3.0.812 626 1/19/2025
3.0.811 152 1/19/2025
3.0.810 3,280 1/19/2025
3.0.809 150 1/19/2025
3.0.808 5,570 1/18/2025
3.0.807 158 1/18/2025
3.0.806 11,870 1/17/2025
3.0.805 165 1/17/2025
3.0.804 1,055 1/17/2025
3.0.803 1,578 1/17/2025
3.0.802 7,288 1/16/2025
3.0.801 2,423 1/16/2025
3.0.800 3,693 1/16/2025
3.0.799 895 1/16/2025
3.0.798 2,027 1/16/2025
3.0.797 1,730 1/16/2025
3.0.796 140 1/16/2025
3.0.795 7,967 1/15/2025
3.0.794 148 1/15/2025
3.0.793 4,731 1/15/2025
3.0.792 147 1/15/2025
3.0.791 223 1/15/2025
3.0.790 5,704 1/15/2025
3.0.789 121 1/15/2025
3.0.788 5,010 1/15/2025
3.0.787 129 1/15/2025
3.0.786 865 1/15/2025
3.0.785 126 1/15/2025
3.0.784 2,912 1/15/2025
3.0.783 130 1/15/2025
3.0.782 430 1/14/2025
3.0.781 130 1/14/2025
3.0.780 142 1/14/2025
3.0.779 6,303 1/14/2025
3.0.778 1,019 1/14/2025
3.0.777 146 1/14/2025
3.0.776 1,843 1/14/2025
3.0.775 127 1/14/2025
3.0.774 9,760 1/13/2025
3.0.773 2,822 1/13/2025
3.0.772 2,424 1/13/2025
3.0.771 147 1/13/2025
3.0.770 9,277 1/11/2025
3.0.769 3,757 1/11/2025
3.0.768 172 1/11/2025
3.0.767 3,333 1/11/2025
3.0.766 171 1/11/2025
3.0.765 3,174 1/10/2025
3.0.764 3,554 1/10/2025
3.0.763 156 1/10/2025
3.0.762 1,431 1/10/2025
3.0.761 166 1/10/2025
3.0.760 154 1/10/2025
3.0.759 11,145 1/3/2025
3.0.758 742 1/3/2025
3.0.757 1,643 1/3/2025
3.0.756 193 1/3/2025
3.0.755 2,493 1/3/2025
3.0.754 162 1/3/2025
3.0.753 1,913 1/3/2025
3.0.752 1,820 1/2/2025
3.0.751 157 1/2/2025
3.0.750 3,048 1/2/2025
3.0.749 162 1/2/2025
3.0.748 5,105 1/2/2025
3.0.747 147 1/2/2025
3.0.746 169 1/2/2025
3.0.745 8,396 1/1/2025
3.0.744 1,747 1/1/2025
3.0.743 438 1/1/2025
3.0.742 180 1/1/2025
3.0.741 2,699 1/1/2025
3.0.740 161 1/1/2025
3.0.739 159 1/1/2025
3.0.738 171 1/1/2025
3.0.737 536 12/31/2024
3.0.736 173 12/31/2024
3.0.735 185 12/31/2024
3.0.734 1,058 12/31/2024
3.0.733 184 12/31/2024
3.0.732 8,154 12/31/2024
3.0.731 172 12/31/2024
3.0.730 7,865 12/31/2024
3.0.729 131 12/31/2024
3.0.728 4,349 12/31/2024
3.0.727 555 12/31/2024
3.0.726 162 12/31/2024
3.0.725 2,321 12/31/2024
3.0.724 161 12/31/2024
3.0.723 15,709 12/28/2024
3.0.722 2,009 12/28/2024
3.0.721 2,208 12/27/2024
3.0.720 174 12/27/2024
3.0.719 4,732 12/27/2024
3.0.718 8,774 12/24/2024
3.0.717 2,158 12/24/2024
3.0.716 1,564 12/24/2024
3.0.715 1,339 12/24/2024
3.0.714 2,345 12/24/2024
3.0.713 155 12/24/2024
3.0.712 3,866 12/24/2024
3.0.711 1,048 12/24/2024
3.0.710 147 12/24/2024
3.0.709 706 12/24/2024
3.0.708 1,656 12/24/2024
3.0.707 388 12/24/2024
3.0.706 185 12/24/2024
3.0.705 1,756 12/24/2024
3.0.704 164 12/24/2024
3.0.703 3,076 12/23/2024
3.0.702 5,007 12/23/2024
3.0.701 163 12/23/2024
3.0.700 1,164 12/23/2024
3.0.699 154 12/23/2024
3.0.698 3,383 12/23/2024
3.0.697 148 12/23/2024
3.0.696 2,563 12/23/2024
3.0.695 168 12/23/2024
3.0.694 755 12/22/2024
3.0.693 2,446 12/22/2024
3.0.692 7,074 12/22/2024
3.0.691 173 12/22/2024
3.0.690 2,793 12/22/2024
3.0.689 247 12/22/2024
3.0.688 779 12/22/2024
3.0.687 156 12/22/2024
3.0.686 432 12/22/2024
3.0.685 163 12/22/2024
3.0.684 11,917 12/22/2024
3.0.683 140 12/22/2024
3.0.682 1,905 12/21/2024
3.0.681 470 12/21/2024
3.0.680 147 12/21/2024
3.0.679 858 12/21/2024
3.0.678 1,371 12/21/2024
3.0.677 153 12/21/2024
3.0.676 6,808 12/21/2024
3.0.675 656 12/21/2024
3.0.674 158 12/21/2024
3.0.673 4,564 12/21/2024
3.0.672 1,194 12/21/2024
3.0.671 167 12/21/2024
3.0.670 2,703 12/20/2024
3.0.669 174 12/20/2024
3.0.668 166 12/20/2024
3.0.667 6,598 12/20/2024
3.0.666 1,966 12/20/2024
3.0.665 365 12/20/2024
3.0.664 6,194 12/19/2024
3.0.663 735 12/19/2024
3.0.662 3,627 12/18/2024
3.0.661 158 12/18/2024
3.0.660 11,265 12/17/2024
3.0.659 325 12/17/2024
3.0.658 1,116 12/16/2024
3.0.657 157 12/16/2024
3.0.656 232 12/16/2024
3.0.655 153 12/16/2024
3.0.654 11,161 12/10/2024
3.0.653 1,749 12/10/2024
3.0.652 651 12/9/2024
3.0.651 162 12/9/2024
3.0.650 4,682 12/9/2024
3.0.649 2,432 12/9/2024
3.0.648 147 12/9/2024
3.0.647 6,661 12/9/2024
3.0.646 4,960 12/6/2024
3.0.645 721 12/6/2024
3.0.644 152 12/6/2024
3.0.643 1,165 12/6/2024
3.0.641 6,847 12/6/2024
3.0.640 4,256 12/6/2024
3.0.639 9,477 12/6/2024
3.0.637 585 12/6/2024
3.0.636 4,377 12/5/2024
3.0.635 6,116 12/5/2024
3.0.634 5,026 12/5/2024
3.0.633 158 12/5/2024
3.0.632 3,379 12/5/2024
3.0.631 1,726 12/5/2024
3.0.630 166 12/5/2024
3.0.629 635 12/5/2024
3.0.628 159 12/5/2024
3.0.627 213 12/5/2024
3.0.626 159 12/5/2024
3.0.625 5,911 12/4/2024
3.0.624 150 12/4/2024
3.0.623 176 12/4/2024
3.0.622 176 12/4/2024
3.0.621 2,928 12/4/2024
3.0.620 529 12/4/2024
3.0.619 682 12/4/2024
3.0.618 5,982 12/3/2024
3.0.617 165 12/3/2024
3.0.616 1,946 12/3/2024
3.0.615 756 12/3/2024
3.0.614 166 12/3/2024
3.0.613 177 12/3/2024
3.0.612 6,974 12/3/2024
3.0.611 157 12/3/2024
3.0.610 5,917 12/3/2024
3.0.609 142 12/3/2024
3.0.608 5,443 12/2/2024
3.0.607 4,832 12/2/2024
3.0.606 2,905 12/2/2024
3.0.605 451 12/2/2024
3.0.604 167 12/2/2024
3.0.603 695 12/2/2024
3.0.602 6,085 12/1/2024
3.0.601 172 12/1/2024
3.0.600 3,358 12/1/2024
3.0.599 314 12/1/2024
3.0.598 6,145 12/1/2024
3.0.597 169 12/1/2024
3.0.596 6,303 11/29/2024
3.0.595 1,864 11/29/2024
3.0.594 9,702 11/21/2024
3.0.593 512 11/21/2024
3.0.592 7,958 11/20/2024
3.0.591 538 11/20/2024
3.0.590 175 11/20/2024
3.0.589 155 11/20/2024
3.0.588 688 11/20/2024
3.0.587 257 11/20/2024
3.0.586 158 11/20/2024
3.0.585 3,442 11/20/2024
3.0.584 4,736 11/19/2024
3.0.583 155 11/19/2024
3.0.582 1,061 11/19/2024
3.0.581 145 11/19/2024
3.0.580 4,167 11/19/2024
3.0.579 140 11/19/2024
3.0.578 2,214 11/19/2024
3.0.577 167 11/19/2024
3.0.576 14,748 11/14/2024
3.0.575 227 11/14/2024
3.0.574 897 11/14/2024
3.0.573 4,063 11/14/2024
3.0.572 1,254 11/14/2024
3.0.571 176 11/14/2024
3.0.570 170 11/14/2024
3.0.569 7,066 11/14/2024
3.0.568 168 11/14/2024
3.0.567 166 11/14/2024
3.0.566 6,151 11/14/2024
3.0.565 161 11/14/2024
3.0.564 157 11/14/2024
3.0.563 155 11/14/2024
2.1.562 13,992 11/13/2024
2.1.561 2,300 11/13/2024
2.1.560 5,204 11/13/2024
2.1.559 181 11/13/2024
2.1.558 2,220 11/12/2024
2.1.557 628 11/12/2024
2.1.556 13,677 11/9/2024
2.1.555 586 11/9/2024
2.1.554 184 11/9/2024
2.1.553 2,909 11/9/2024
2.1.552 164 11/9/2024
2.1.551 1,495 11/8/2024
2.1.550 165 11/8/2024
2.1.549 160 11/8/2024
2.1.548 174 11/8/2024
2.1.547 668 11/8/2024
2.1.546 3,178 11/8/2024
2.1.545 151 11/8/2024
2.1.544 9,190 11/8/2024
2.1.543 145 11/8/2024
2.1.542 19,976 11/1/2024
2.1.541 739 11/1/2024
2.1.540 11,729 10/29/2024
2.1.539 1,260 10/29/2024
2.1.538 4,678 10/29/2024
2.1.537 982 10/29/2024
2.1.536 9,319 10/28/2024
2.1.535 3,198 10/28/2024
2.1.534 6,474 10/26/2024
2.1.533 1,147 10/26/2024
2.1.532 13,745 10/22/2024
2.1.531 416 10/22/2024
2.1.530 888 10/22/2024
2.1.529 1,540 10/22/2024
2.1.528 165 10/22/2024
2.1.527 762 10/22/2024
2.1.526 11,212 10/18/2024
2.1.525 1,841 10/17/2024
2.1.524 7,114 10/15/2024
2.1.523 2,744 10/15/2024
2.1.522 164 10/14/2024
2.1.521 8,794 10/12/2024
2.1.520 1,105 10/11/2024
2.1.519 161 10/11/2024
2.1.518 780 10/11/2024
2.1.517 5,012 10/11/2024
2.1.516 10,987 10/9/2024
2.1.515 603 10/9/2024
2.1.514 144 10/9/2024
2.1.513 3,365 10/8/2024
2.1.512 227 10/8/2024
2.1.511 3,657 10/8/2024
2.1.510 217 10/8/2024
2.1.509 163 10/8/2024
2.1.508 6,690 10/8/2024
2.1.507 10,507 10/3/2024
2.1.506 166 10/3/2024
2.1.505 1,941 10/3/2024
2.1.504 3,363 10/3/2024
2.1.503 2,392 10/3/2024
2.1.502 10,017 10/2/2024
2.1.501 163 10/2/2024
2.1.500 3,137 10/2/2024
2.1.499 1,730 10/2/2024
2.1.498 7,049 10/1/2024
2.1.497 1,082 10/1/2024
2.1.496 174 10/1/2024
2.1.495 4,466 10/1/2024
2.1.494 175 10/1/2024
2.1.493 218 10/1/2024
2.1.492 9,244 9/29/2024
2.1.491 2,271 9/29/2024
2.1.490 167 9/29/2024
2.1.489 2,056 9/29/2024
2.1.488 164 9/29/2024
2.1.487 4,396 9/29/2024
2.1.486 8,645 9/27/2024
2.1.485 1,299 9/27/2024
2.1.484 5,217 9/27/2024
2.1.483 187 9/27/2024
2.1.482 711 9/27/2024
2.1.481 3,669 9/27/2024
2.1.480 5,377 9/26/2024
2.1.479 5,905 9/26/2024
2.1.478 4,011 9/26/2024
2.1.477 3,616 9/26/2024
2.1.476 6,305 9/26/2024
2.1.475 164 9/26/2024
2.1.474 9,432 9/23/2024
2.1.473 2,120 9/23/2024
2.1.472 1,544 9/23/2024
2.1.471 1,855 9/23/2024
2.1.470 164 9/23/2024
2.1.469 2,563 9/23/2024
2.1.468 144 9/23/2024
2.1.467 7,980 9/23/2024
2.1.466 170 9/23/2024
2.1.465 1,169 9/23/2024
2.1.464 182 9/23/2024
2.1.463 155 9/23/2024
2.1.462 1,514 9/23/2024
2.1.461 15,458 9/18/2024
2.1.460 393 9/17/2024
2.1.459 2,010 9/17/2024
2.1.458 2,715 9/17/2024
2.1.457 162 9/17/2024
2.1.456 2,951 9/17/2024
2.1.455 758 9/17/2024
2.1.454 5,311 9/17/2024
2.1.453 879 9/17/2024
2.1.452 308 9/17/2024
2.1.451 4,298 9/17/2024
2.1.450 12,458 9/16/2024
2.1.449 1,115 9/16/2024
2.1.448 7,997 9/12/2024
2.1.447 4,732 9/12/2024
2.1.446 2,101 9/11/2024
2.1.445 2,538 9/11/2024
2.1.443 5,774 9/11/2024
2.1.442 1,517 9/11/2024
2.1.441 1,434 9/11/2024
2.1.440 3,532 9/11/2024
2.1.439 12,719 9/10/2024
2.1.438 188 9/10/2024
2.1.437 1,842 9/10/2024
2.1.436 185 9/10/2024
2.1.434 4,552 9/10/2024
2.1.433 908 9/9/2024
2.1.432 2,816 9/9/2024
2.1.430 2,396 9/9/2024
2.1.428 187 9/9/2024
2.1.427 687 9/9/2024
2.1.426 20,958 9/7/2024
2.1.425 214 9/7/2024
2.1.424 8,022 9/6/2024
2.1.423 534 9/6/2024
2.1.422 3,556 9/6/2024
2.1.421 168 9/5/2024
2.1.420 188 9/5/2024
2.1.419 3,814 9/5/2024
2.1.418 1,758 9/5/2024
2.1.417 174 9/5/2024
2.1.416 1,758 9/5/2024
2.1.415 686 9/5/2024
2.1.414 171 9/5/2024
2.1.413 8,024 9/5/2024
2.1.412 283 9/5/2024
2.1.411 174 9/5/2024
2.1.410 3,563 9/4/2024
2.1.409 12,848 9/3/2024
2.1.408 168 9/3/2024
2.1.407 169 9/3/2024
2.1.406 6,475 9/3/2024
2.1.405 213 9/3/2024
2.1.404 4,066 9/3/2024
2.1.403 8,543 8/29/2024
2.1.402 4,212 8/29/2024
2.1.401 4,603 8/26/2024
2.1.400 158 8/26/2024
2.1.399 8,104 8/21/2024
2.1.398 969 8/21/2024
2.1.397 209 8/21/2024
2.1.396 4,255 8/21/2024
2.1.395 215 8/20/2024
2.1.394 207 8/20/2024
2.1.393 730 8/20/2024
2.1.392 4,949 8/20/2024
2.1.391 685 8/20/2024
2.1.390 171 8/20/2024
2.1.389 4,300 8/20/2024
2.1.388 187 8/20/2024
2.1.387 1,941 8/20/2024
2.1.386 4,755 8/19/2024
2.1.385 7,825 8/15/2024
2.1.384 3,366 8/15/2024
2.1.383 7,762 8/14/2024
2.1.382 206 8/13/2024
2.1.381 9,074 8/7/2024
2.1.380 480 8/6/2024
2.1.379 4,422 8/6/2024
2.1.378 8,361 8/1/2024
2.1.377 565 8/1/2024
2.1.376 159 8/1/2024
2.1.374 2,011 8/1/2024
2.1.373 10,002 7/25/2024
2.1.372 161 7/25/2024
2.1.371 1,293 7/25/2024
2.1.370 497 7/25/2024
2.1.369 591 7/25/2024
2.1.368 316 7/25/2024
2.1.367 653 7/24/2024
2.1.366 233 7/24/2024
2.1.365 354 7/24/2024
2.1.364 540 7/24/2024
2.1.363 14,154 7/20/2024
2.1.362 2,515 7/20/2024
2.1.361 8,483 7/14/2024
2.1.360 2,571 7/14/2024
2.1.359 168 7/14/2024
2.1.358 2,437 7/14/2024
2.1.357 7,197 7/10/2024
2.1.355 1,156 7/10/2024
2.1.354 1,952 7/10/2024
2.1.353 175 7/10/2024
2.1.352 2,814 7/10/2024
2.1.351 209 7/10/2024
2.1.350 168 7/10/2024
2.1.349 256 7/10/2024
2.1.348 165 7/10/2024
2.1.347 3,351 7/10/2024
2.1.346 186 7/10/2024
2.1.345 1,344 7/10/2024
2.1.344 172 7/10/2024
2.1.343 312 7/9/2024
2.1.342 149 7/9/2024
2.1.339 3,125 7/9/2024
2.1.338 714 7/9/2024
2.1.337 6,620 7/9/2024
2.1.336 1,854 7/9/2024
2.1.335 180 7/9/2024
2.1.334 4,293 7/9/2024
2.1.333 160 7/9/2024
2.1.332 12,038 7/9/2024
2.1.331 176 7/9/2024
2.1.330 4,160 7/9/2024
2.1.329 164 7/9/2024
2.1.328 1,743 7/9/2024
2.1.327 1,098 7/8/2024
2.1.326 1,643 7/8/2024
2.1.325 174 7/8/2024
2.1.324 188 7/8/2024
2.1.323 8,011 7/8/2024
2.1.322 2,744 7/8/2024
2.1.321 171 7/8/2024
2.1.320 3,898 7/7/2024
2.1.319 186 7/7/2024
2.1.318 196 7/7/2024
2.1.317 182 7/7/2024
2.1.316 1,872 7/7/2024
2.1.315 3,617 7/7/2024
2.1.314 3,046 7/7/2024
2.1.313 346 7/7/2024
2.1.312 5,655 7/5/2024
2.1.311 6,682 7/3/2024
2.1.310 5,165 7/3/2024
2.1.309 633 7/3/2024
2.1.308 6,757 7/2/2024
2.1.307 3,081 6/30/2024
2.1.306 3,752 6/28/2024
2.1.305 8,829 6/22/2024
2.1.304 7,997 6/15/2024
2.1.303 6,528 6/14/2024
2.1.302 9,500 6/1/2024
2.1.301 2,617 6/1/2024
2.1.300 940 6/1/2024
2.1.299 9,614 5/31/2024
2.1.298 6,009 5/29/2024
2.1.297 4,954 5/28/2024
2.1.296 3,971 5/27/2024
2.1.295 7,838 5/26/2024
2.1.294 3,268 5/26/2024
2.1.293 738 5/26/2024
2.1.292 4,052 5/25/2024
2.1.291 2,162 5/25/2024
2.1.290 198 5/25/2024
2.1.289 177 5/25/2024
2.1.288 1,099 5/25/2024
2.1.287 186 5/25/2024
2.1.286 605 5/25/2024
2.1.285 182 5/25/2024
2.1.284 190 5/25/2024
2.1.283 11,959 5/23/2024
2.1.282 861 5/23/2024
2.1.281 400 5/22/2024
2.1.280 5,888 5/22/2024
2.1.279 193 5/22/2024
2.1.278 195 5/22/2024
2.1.277 182 5/22/2024
2.1.276 3,543 5/22/2024
2.1.275 5,469 5/18/2024
2.1.274 3,040 5/18/2024
2.1.273 2,879 5/17/2024
2.1.272 182 5/17/2024
2.1.271 4,372 5/16/2024
2.1.270 666 5/15/2024
2.1.269 4,421 5/15/2024
2.1.268 7,316 5/12/2024
2.1.267 4,434 5/3/2024
2.1.266 1,898 4/30/2024
2.1.265 2,834 4/29/2024
2.1.264 3,038 4/29/2024
2.1.263 4,288 4/28/2024
2.1.262 2,407 4/28/2024
2.1.261 1,748 4/28/2024
2.1.260 2,729 4/28/2024
2.1.259 1,475 4/28/2024
2.1.258 174 4/28/2024
2.1.257 6,742 4/27/2024
2.1.256 193 4/27/2024
2.1.255 6,838 4/19/2024
2.1.254 6,558 4/18/2024
2.1.253 5,412 4/12/2024
2.1.252 1,787 4/12/2024
2.1.251 1,104 4/12/2024
2.1.250 1,359 4/12/2024
2.1.249 294 4/12/2024
2.1.248 170 4/12/2024
2.1.247 1,525 4/12/2024
2.1.246 467 4/12/2024
2.1.245 2,536 4/11/2024
2.1.244 6,022 4/10/2024
2.1.243 1,777 4/9/2024
2.1.242 4,980 4/2/2024
2.1.241 1,399 4/1/2024
2.1.240 3,294 3/29/2024
2.1.239 2,848 3/25/2024
2.1.238 444 3/25/2024
2.1.237 5,253 3/20/2024
2.1.236 3,261 3/19/2024
2.1.235 733 3/19/2024
2.1.234 3,772 3/18/2024
2.1.233 2,073 3/18/2024
2.1.232 2,053 3/15/2024
2.1.231 3,622 3/13/2024
2.1.230 1,627 3/13/2024
2.1.229 1,041 3/13/2024
2.1.228 1,128 3/13/2024
2.1.227 191 3/13/2024
2.1.226 774 3/13/2024
2.1.225 192 3/13/2024
2.1.224 196 3/13/2024
2.1.223 2,553 3/12/2024
2.1.222 4,332 3/11/2024
2.1.221 3,766 3/11/2024
2.1.220 2,526 3/10/2024
2.1.219 2,875 3/8/2024
2.1.218 1,598 3/8/2024
2.1.217 2,375 3/8/2024
2.1.216 3,189 3/6/2024
2.1.215 3,008 3/4/2024
2.1.214 2,157 3/4/2024
2.1.213 3,959 3/2/2024
2.1.212 1,811 3/2/2024
2.1.211 613 3/2/2024
2.1.210 516 3/2/2024
2.1.209 764 3/2/2024
2.1.208 5,157 2/29/2024
2.1.207 933 2/29/2024
2.1.206 525 2/29/2024
2.1.205 4,983 2/26/2024
2.1.204 2,218 2/25/2024
2.1.203 3,942 2/23/2024
2.1.202 2,805 2/22/2024
2.1.201 1,386 2/22/2024
2.1.200 654 2/21/2024
2.1.199 1,723 2/21/2024
2.1.198 419 2/21/2024
2.1.197 988 2/21/2024
2.1.196 187 2/21/2024
2.1.195 1,955 2/21/2024
2.1.194 604 2/21/2024
2.1.193 187 2/21/2024
2.1.192 213 2/21/2024
2.1.191 828 2/21/2024
2.1.190 180 2/21/2024
2.1.189 4,005 2/20/2024
2.1.188 987 2/20/2024
2.1.187 937 2/20/2024
2.1.186 1,211 2/20/2024
2.1.185 3,117 2/19/2024
2.1.184 2,789 2/17/2024
2.1.183 1,347 2/16/2024
2.1.182 1,228 2/16/2024
2.1.181 2,002 2/16/2024
2.1.180 195 2/16/2024
2.1.179 997 2/16/2024
2.1.178 197 2/16/2024
2.1.177 191 2/16/2024
2.1.176 801 2/16/2024
2.1.175 182 2/16/2024
2.1.174 4,861 2/13/2024
2.1.173 2,029 2/13/2024
2.1.172 1,634 2/13/2024
2.1.171 686 2/13/2024
2.1.170 924 2/13/2024
2.1.169 2,858 2/12/2024
2.1.168 672 2/11/2024
2.1.167 2,237 2/11/2024
2.1.166 1,214 2/11/2024
2.1.165 4,143 2/10/2024
2.1.164 783 2/9/2024
2.1.163 190 2/9/2024
2.1.162 2,302 2/9/2024
2.1.161 2,406 2/9/2024
2.1.160 595 2/8/2024
2.1.159 1,778 2/8/2024
2.1.158 1,166 2/8/2024
2.1.157 2,147 2/8/2024
2.1.156 174 2/8/2024
2.1.155 2,732 2/7/2024
2.1.154 643 2/7/2024
2.1.153 854 2/7/2024
2.1.152 1,878 2/7/2024
2.1.151 506 2/6/2024
2.1.150 183 2/6/2024
2.1.149 189 2/6/2024
2.1.148 4,083 2/5/2024
2.1.147 2,275 2/4/2024
2.1.146 3,056 2/2/2024
2.1.145 2,780 1/31/2024
2.1.144 3,058 1/29/2024
2.1.143 1,938 1/29/2024
2.1.142 521 1/29/2024
2.1.141 2,050 1/28/2024
2.1.140 673 1/28/2024
2.1.139 446 1/28/2024
2.1.138 757 1/28/2024
2.1.137 2,841 1/28/2024
2.1.136 1,476 1/28/2024
2.1.135 442 1/27/2024
2.1.134 1,320 1/27/2024
2.1.133 1,830 1/27/2024
2.1.132 1,762 1/27/2024
2.1.131 212 1/27/2024
2.1.130 949 1/27/2024
2.1.129 1,578 1/26/2024
2.1.128 356 1/26/2024
2.1.127 1,259 1/26/2024
2.1.126 1,668 1/26/2024
2.1.125 2,358 1/26/2024
2.1.124 1,338 1/25/2024
2.1.123 1,448 1/25/2024
2.1.122 652 1/25/2024
2.1.121 1,329 1/25/2024
2.1.120 724 1/25/2024
2.1.119 3,818 1/19/2024
2.1.118 3,110 1/15/2024
2.1.117 696 1/15/2024
2.1.116 1,867 1/15/2024
2.1.115 186 1/15/2024
2.1.114 803 1/15/2024
2.1.113 1,953 1/15/2024
2.1.112 3,574 1/14/2024
2.1.111 2,311 1/13/2024
2.1.110 2,488 1/12/2024
2.1.109 2,900 1/11/2024
2.1.108 3,711 1/7/2024
2.1.107 2,849 1/5/2024
2.1.106 712 1/5/2024
2.1.105 210 1/5/2024
2.1.104 191 1/5/2024
2.1.103 2,067 1/5/2024
2.1.102 199 1/5/2024
2.1.101 3,917 1/1/2024
2.1.100 3,125 12/28/2023
2.1.99 1,048 12/28/2023
2.1.98 720 12/28/2023
2.1.97 185 12/28/2023
2.1.96 200 12/28/2023
2.1.95 1,026 12/27/2023
2.1.94 207 12/27/2023
2.1.93 739 12/27/2023
2.1.92 202 12/27/2023
2.1.91 204 12/27/2023
2.1.90 3,310 12/25/2023
2.1.89 527 12/25/2023
2.1.88 1,216 12/25/2023
2.1.87 209 12/25/2023
2.1.86 998 12/25/2023
2.1.85 199 12/25/2023
2.1.84 854 12/25/2023
2.1.83 197 12/25/2023
2.1.82 2,485 12/24/2023
2.1.81 1,622 12/23/2023
2.1.80 1,333 12/23/2023
2.1.79 439 12/23/2023
2.1.78 876 12/23/2023
2.1.77 201 12/23/2023
2.1.76 185 12/23/2023
2.1.75 1,603 12/23/2023
2.1.74 191 12/23/2023
2.1.73 2,114 12/19/2023
2.1.72 319 12/19/2023
2.1.71 4,504 12/11/2023
2.1.70 1,067 12/10/2023
2.1.69 189 12/10/2023
2.1.68 645 12/10/2023
2.1.67 2,164 12/10/2023
2.1.66 553 12/9/2023
2.1.65 572 12/9/2023
2.1.64 420 12/9/2023
2.1.63 205 12/9/2023
2.1.62 369 12/9/2023
2.1.61 311 12/9/2023
2.1.60 170 12/9/2023
2.1.59 1,594 12/9/2023
2.1.58 199 12/9/2023
2.1.57 2,323 12/6/2023
2.1.56 601 12/6/2023
2.1.55 367 12/6/2023
2.1.54 423 12/6/2023
2.1.53 1,381 12/5/2023
2.1.52 571 12/5/2023
2.1.51 514 12/5/2023
2.1.50 580 12/5/2023
2.1.49 165 12/5/2023
2.1.48 495 12/5/2023
2.1.47 404 12/5/2023
2.1.46 168 12/4/2023
2.1.45 176 12/4/2023
2.1.44 491 12/4/2023
2.1.43 200 12/4/2023
2.1.42 1,599 12/4/2023
2.1.41 147 12/4/2023
2.1.40 1,808 11/27/2023
2.1.39 820 11/26/2023
2.1.38 338 11/26/2023
2.1.37 979 11/23/2023
2.1.36 1,069 11/23/2023
2.1.35 1,027 11/23/2023
2.1.34 183 11/23/2023
2.1.33 629 11/23/2023
2.1.32 192 11/23/2023
2.1.31 1,716 11/20/2023
2.1.30 1,793 11/20/2023
2.1.29 1,304 11/19/2023
2.1.28 393 11/19/2023
2.1.27 736 11/19/2023
2.1.26 763 11/19/2023
2.1.25 768 11/19/2023
2.1.24 165 11/19/2023
2.1.23 343 11/18/2023
2.1.22 1,564 11/18/2023
2.1.21 557 11/18/2023
2.1.20 841 11/18/2023
2.1.19 190 11/18/2023
2.1.18 467 11/18/2023
2.1.17 180 11/18/2023
2.1.16 965 11/17/2023
2.1.15 831 11/17/2023
2.1.14 170 11/17/2023
2.1.13 665 11/17/2023
2.1.12 465 11/17/2023
2.1.11 775 11/17/2023
2.1.10 177 11/17/2023
2.1.9 781 11/17/2023
2.1.8 185 11/17/2023
2.1.7 226 11/17/2023
2.1.6 509 11/17/2023
2.1.5 572 11/16/2023
2.0.101 3,528 11/15/2023
2.0.100 154 11/15/2023
2.0.99 187 11/15/2023
2.0.4 177 11/16/2023
2.0.3 193 11/16/2023
2.0.2 181 11/16/2023
2.0.1 179 11/16/2023
1.0.98 972 11/14/2023
1.0.97 1,133 11/13/2023
1.0.96 158 11/13/2023
1.0.95 784 11/10/2023
1.0.94 177 11/10/2023
1.0.93 1,417 11/9/2023
1.0.92 179 11/9/2023
1.0.91 1,555 11/7/2023
1.0.90 174 11/7/2023
1.0.89 739 11/6/2023
1.0.88 188 11/6/2023
1.0.87 856 11/3/2023
1.0.86 190 11/3/2023
1.0.85 1,300 11/2/2023
1.0.84 168 11/2/2023
1.0.83 861 11/1/2023
1.0.82 2,123 10/26/2023
1.0.81 1,908 10/19/2023
1.0.80 201 10/19/2023
1.0.79 1,153 10/18/2023
1.0.78 216 10/18/2023
1.0.77 1,058 10/17/2023
1.0.76 206 10/17/2023
1.0.75 951 10/16/2023
1.0.74 210 10/16/2023
1.0.73 1,026 10/13/2023
1.0.72 469 10/12/2023
1.0.71 2,484 9/20/2023
1.0.70 1,035 9/19/2023
1.0.69 1,017 9/18/2023
1.0.68 207 9/18/2023
1.0.67 1,325 9/14/2023
1.0.66 2,127 8/31/2023
1.0.65 203 8/31/2023
1.0.64 1,217 8/30/2023
1.0.63 231 8/30/2023
1.0.62 250 8/30/2023
1.0.61 1,241 8/28/2023
1.0.60 1,019 8/25/2023
1.0.59 205 8/25/2023
1.0.58 716 8/24/2023
1.0.57 2,128 8/21/2023
1.0.56 1,228 8/18/2023
1.0.55 1,089 8/17/2023
1.0.54 231 8/17/2023
1.0.53 2,761 8/10/2023
1.0.52 801 8/9/2023
1.0.51 973 8/8/2023
1.0.50 921 8/7/2023
1.0.49 251 8/7/2023
1.0.48 3,503 7/13/2023
1.0.47 1,269 7/11/2023
1.0.46 1,020 7/10/2023
1.0.45 970 7/7/2023
1.0.44 254 7/7/2023
1.0.43 2,962 6/30/2023
1.0.42 1,474 6/29/2023
1.0.41 820 6/28/2023
1.0.40 2,132 6/26/2023
1.0.39 1,133 6/23/2023
1.0.38 1,500 6/21/2023
1.0.37 2,032 6/15/2023
1.0.36 700 6/14/2023
1.0.35 2,458 6/9/2023
1.0.34 1,115 6/8/2023
1.0.33 2,132 6/7/2023
1.0.32 252 6/7/2023
1.0.31 1,576 6/6/2023
1.0.30 1,570 6/5/2023
1.0.29 1,743 6/2/2023
1.0.28 243 6/2/2023
1.0.27 1,595 6/1/2023
1.0.26 834 5/31/2023
1.0.25 666 5/31/2023
1.0.24 250 5/31/2023
1.0.23 1,960 5/30/2023
1.0.22 2,037 5/26/2023
1.0.21 929 5/25/2023
1.0.20 232 5/25/2023
1.0.19 1,104 5/24/2023
1.0.18 237 5/24/2023
1.0.17 652 5/23/2023
1.0.13 1,968 5/22/2023
1.0.12 1,602 5/18/2023
1.0.11 837 5/17/2023
1.0.10 1,974 5/1/2023
1.0.9 1,314 4/25/2023
1.0.8 617 4/24/2023
1.0.7 1,267 4/21/2023
1.0.6 2,524 4/13/2023
1.0.5 777 4/12/2023
1.0.4 1,319 4/8/2023
1.0.3 279 4/8/2023
1.0.2 779 4/8/2023
1.0.1 285 4/8/2023