Soenneker.Utils.SingletonDictionary 3.0.1102

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Utils.SingletonDictionary --version 3.0.1102
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.1102
                    
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.1102" />
                    
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.1102" />
                    
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.1102
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.1102"
                    
#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.1102
                    
#: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.1102
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1102
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Utils.SingletonDictionary

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


Features

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

Installation

dotnet add package Soenneker.Utils.SingletonDictionary

✨ Example Usage

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

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

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

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

            return client;
        });
    }

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

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

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

🔍 Internals

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

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

Example constructor overloads include:

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

You can also initialize manually:

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

🛡️ Thread Safety

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

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (9)

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

Package Downloads
Soenneker.Utils.HttpClientCache

Providing thread-safe singleton HttpClients

Soenneker.ServiceBus.Sender

A utility library that holds Azure Service senders

Soenneker.Blazor.Utils.ModuleImport

A Blazor utility library assisting with asynchronous module loading

Soenneker.Google.Credentials

An async thread-safe singleton for Google OAuth credentials

Soenneker.SignalR.Web.Clients

Providing async thread-safe resilient and dependable SignalR web client singletons

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.1106 3,453 9/3/2025
3.0.1105 117 9/3/2025
3.0.1104 1,006 9/3/2025
3.0.1103 18,544 8/14/2025
3.0.1102 4,689 8/11/2025
3.0.1101 1,891 8/11/2025
3.0.1100 496 8/11/2025
3.0.1099 123 8/11/2025
3.0.1098 14,472 8/6/2025
3.0.1097 3,224 8/5/2025
3.0.1096 15,381 7/9/2025
3.0.1095 23,106 6/28/2025
3.0.1094 1,251 6/28/2025
3.0.1093 1,798 6/27/2025
3.0.1092 2,279 6/27/2025
3.0.1091 24,491 6/10/2025
3.0.1090 17,331 5/27/2025
3.0.1089 899 5/27/2025
3.0.1088 969 5/27/2025
3.0.1087 2,294 5/27/2025
3.0.1086 13,914 5/23/2025
3.0.1085 1,264 5/23/2025
3.0.1084 1,221 5/23/2025
3.0.1083 1,245 5/23/2025
3.0.1082 262 5/22/2025
3.0.1081 9,563 5/18/2025
3.0.1079 1,431 5/18/2025
3.0.1078 1,380 5/18/2025
3.0.1077 4,151 5/14/2025
3.0.1076 9,272 5/8/2025
3.0.1075 297 5/8/2025
3.0.1074 604 5/8/2025
3.0.1073 1,101 5/7/2025
3.0.1072 12,988 5/5/2025
3.0.1071 871 5/5/2025
3.0.1070 1,562 5/5/2025
3.0.1069 732 5/5/2025
3.0.1068 246 5/5/2025
3.0.1067 163 5/5/2025
3.0.1066 18,176 4/9/2025
3.0.1065 290 4/9/2025
3.0.1064 1,079 4/8/2025
3.0.1063 2,214 4/8/2025
3.0.1062 3,024 4/8/2025
3.0.1061 210 4/8/2025
3.0.1060 187 4/8/2025
3.0.1059 210 4/8/2025
3.0.1058 179 4/8/2025
3.0.1057 884 4/8/2025
3.0.1056 306 4/8/2025
3.0.1055 6,419 4/8/2025
3.0.1054 674 4/8/2025
3.0.1053 3,303 4/7/2025
3.0.1052 727 4/7/2025
3.0.1051 185 4/7/2025
3.0.1050 614 4/7/2025
3.0.1049 190 4/7/2025
3.0.1048 6,794 4/7/2025
3.0.1047 192 4/7/2025
3.0.1046 9,359 4/7/2025
3.0.1045 182 4/7/2025
3.0.1044 1,398 4/7/2025
3.0.1043 186 4/7/2025
3.0.1042 1,643 4/7/2025
3.0.1041 957 4/6/2025
3.0.1040 312 4/6/2025
3.0.1039 187 4/6/2025
3.0.1038 1,086 4/6/2025
3.0.1037 185 4/6/2025
3.0.1036 424 4/6/2025
3.0.1035 1,206 4/6/2025
3.0.1034 165 4/6/2025
3.0.1033 2,073 4/6/2025
3.0.1032 132 4/6/2025
3.0.1031 170 4/6/2025
3.0.1030 135 4/6/2025
3.0.1029 1,629 4/5/2025
3.0.1028 194 4/5/2025
3.0.1027 1,173 4/5/2025
3.0.1026 1,233 4/5/2025
3.0.1025 1,075 4/5/2025
3.0.1024 656 4/5/2025
3.0.1023 567 4/5/2025
3.0.1022 132 4/5/2025
3.0.1021 1,296 4/4/2025
3.0.1020 6,974 4/4/2025
3.0.1019 23,348 4/4/2025
3.0.1018 6,659 4/1/2025
3.0.1017 2,637 4/1/2025
3.0.1016 186 4/1/2025
3.0.1015 5,428 4/1/2025
3.0.1014 2,357 3/31/2025
3.0.1013 384 3/31/2025
3.0.1012 3,913 3/31/2025
3.0.1011 6,739 3/29/2025
3.0.1010 1,077 3/29/2025
3.0.1009 1,419 3/29/2025
3.0.1008 121 3/29/2025
3.0.1007 4,324 3/27/2025
3.0.1006 3,846 3/25/2025
3.0.1005 614 3/25/2025
3.0.1004 3,107 3/25/2025
3.0.1003 6,083 3/21/2025
3.0.1002 2,560 3/21/2025
3.0.1001 7,298 3/18/2025
3.0.1000 3,394 3/18/2025
3.0.999 6,339 3/15/2025
3.0.998 1,796 3/15/2025
3.0.997 97 3/15/2025
3.0.996 6,051 3/12/2025
3.0.995 2,165 3/12/2025
3.0.994 187 3/12/2025
3.0.993 412 3/12/2025
3.0.992 177 3/12/2025
3.0.991 2,706 3/11/2025
3.0.990 181 3/11/2025
3.0.989 1,286 3/11/2025
3.0.988 190 3/11/2025
3.0.987 2,571 3/11/2025
3.0.986 192 3/11/2025
3.0.985 2,656 3/11/2025
3.0.984 173 3/11/2025
3.0.983 1,633 3/11/2025
3.0.982 179 3/11/2025
3.0.981 8,867 3/7/2025
3.0.980 2,604 3/7/2025
3.0.979 6,160 3/2/2025
3.0.978 1,048 3/2/2025
3.0.977 658 3/2/2025
3.0.976 125 3/2/2025
3.0.975 4,330 3/2/2025
3.0.974 123 3/2/2025
3.0.973 3,184 3/1/2025
3.0.972 113 3/1/2025
3.0.971 4,276 3/1/2025
3.0.970 138 3/1/2025
3.0.969 113 3/1/2025
3.0.968 419 3/1/2025
3.0.967 117 3/1/2025
3.0.966 5,798 3/1/2025
3.0.965 4,771 2/26/2025
3.0.964 833 2/26/2025
3.0.963 2,326 2/25/2025
3.0.962 119 2/25/2025
3.0.961 860 2/25/2025
3.0.960 109 2/25/2025
3.0.959 144 2/25/2025
3.0.958 1,835 2/25/2025
3.0.957 4,834 2/24/2025
3.0.956 4,477 2/23/2025
3.0.955 1,092 2/22/2025
3.0.954 115 2/22/2025
3.0.953 7,550 2/22/2025
3.0.952 2,205 2/22/2025
3.0.951 1,061 2/22/2025
3.0.950 778 2/22/2025
3.0.949 154 2/22/2025
3.0.948 127 2/22/2025
3.0.947 123 2/22/2025
3.0.946 4,629 2/21/2025
3.0.945 119 2/21/2025
3.0.944 5,494 2/21/2025
3.0.943 4,551 2/19/2025
3.0.942 1,625 2/19/2025
3.0.941 734 2/19/2025
3.0.940 128 2/19/2025
3.0.939 413 2/18/2025
3.0.938 127 2/18/2025
3.0.937 5,450 2/18/2025
3.0.936 121 2/18/2025
3.0.935 2,814 2/18/2025
3.0.934 6,798 2/16/2025
3.0.933 1,537 2/14/2025
3.0.932 820 2/14/2025
3.0.931 722 2/13/2025
3.0.930 2,388 2/13/2025
3.0.929 296 2/13/2025
3.0.928 3,687 2/13/2025
3.0.927 3,883 2/12/2025
3.0.926 1,461 2/12/2025
3.0.925 160 2/12/2025
3.0.924 126 2/12/2025
3.0.923 2,009 2/12/2025
3.0.922 364 2/12/2025
3.0.921 137 2/12/2025
3.0.920 197 2/12/2025
3.0.919 204 2/12/2025
3.0.918 125 2/12/2025
3.0.917 178 2/11/2025
3.0.916 3,391 2/11/2025
3.0.915 3,681 2/11/2025
3.0.914 2,200 2/11/2025
3.0.913 137 2/11/2025
3.0.912 409 2/11/2025
3.0.911 1,739 2/10/2025
3.0.910 139 2/10/2025
3.0.909 797 2/10/2025
3.0.908 135 2/10/2025
3.0.907 6,324 2/10/2025
3.0.906 133 2/10/2025
3.0.905 1,177 2/9/2025
3.0.904 5,604 2/9/2025
3.0.903 127 2/9/2025
3.0.902 7,116 2/8/2025
3.0.901 133 2/8/2025
3.0.900 1,697 2/7/2025
3.0.899 121 2/7/2025
3.0.898 1,593 2/7/2025
3.0.897 128 2/7/2025
3.0.896 658 2/7/2025
3.0.895 433 2/7/2025
3.0.894 137 2/7/2025
3.0.893 348 2/7/2025
3.0.892 122 2/7/2025
3.0.891 1,047 2/7/2025
3.0.890 117 2/7/2025
3.0.889 133 2/7/2025
3.0.888 10,577 2/7/2025
3.0.887 6,177 2/5/2025
3.0.886 616 2/5/2025
3.0.885 899 2/5/2025
3.0.884 299 2/5/2025
3.0.883 995 2/5/2025
3.0.882 668 2/5/2025
3.0.881 2,923 2/5/2025
3.0.880 122 2/5/2025
3.0.879 10,749 1/28/2025
3.0.878 653 1/28/2025
3.0.877 1,748 1/28/2025
3.0.876 237 1/28/2025
3.0.875 3,662 1/28/2025
3.0.874 636 1/27/2025
3.0.873 103 1/27/2025
3.0.872 199 1/27/2025
3.0.871 279 1/27/2025
3.0.870 112 1/27/2025
3.0.869 4,712 1/27/2025
3.0.868 4,382 1/26/2025
3.0.867 942 1/26/2025
3.0.866 191 1/26/2025
3.0.865 1,022 1/26/2025
3.0.864 1,326 1/25/2025
3.0.863 118 1/25/2025
3.0.862 5,528 1/25/2025
3.0.861 967 1/25/2025
3.0.860 309 1/25/2025
3.0.859 123 1/25/2025
3.0.858 1,806 1/25/2025
3.0.857 1,269 1/25/2025
3.0.856 6,394 1/24/2025
3.0.855 1,483 1/24/2025
3.0.854 105 1/24/2025
3.0.853 1,932 1/24/2025
3.0.852 332 1/24/2025
3.0.851 225 1/24/2025
3.0.850 3,019 1/24/2025
3.0.849 115 1/24/2025
3.0.848 494 1/23/2025
3.0.847 118 1/23/2025
3.0.846 579 1/23/2025
3.0.845 110 1/23/2025
3.0.844 7,573 1/22/2025
3.0.843 978 1/21/2025
3.0.842 960 1/21/2025
3.0.841 575 1/21/2025
3.0.840 113 1/21/2025
3.0.839 600 1/21/2025
3.0.838 747 1/21/2025
3.0.837 5,231 1/21/2025
3.0.836 543 1/21/2025
3.0.835 1,004 1/21/2025
3.0.834 124 1/21/2025
3.0.833 801 1/21/2025
3.0.832 117 1/21/2025
3.0.831 2,094 1/21/2025
3.0.830 107 1/21/2025
3.0.829 396 1/20/2025
3.0.828 2,700 1/20/2025
3.0.827 250 1/20/2025
3.0.826 1,978 1/20/2025
3.0.825 117 1/20/2025
3.0.824 1,060 1/20/2025
3.0.823 121 1/20/2025
3.0.822 132 1/20/2025
3.0.821 119 1/20/2025
3.0.820 365 1/20/2025
3.0.819 124 1/20/2025
3.0.818 120 1/20/2025
3.0.817 5,404 1/19/2025
3.0.816 124 1/19/2025
3.0.815 4,997 1/19/2025
3.0.814 1,563 1/19/2025
3.0.813 133 1/19/2025
3.0.812 385 1/19/2025
3.0.811 114 1/19/2025
3.0.810 1,824 1/19/2025
3.0.809 111 1/19/2025
3.0.808 3,113 1/18/2025
3.0.807 118 1/18/2025
3.0.806 6,897 1/17/2025
3.0.805 126 1/17/2025
3.0.804 598 1/17/2025
3.0.803 917 1/17/2025
3.0.802 4,008 1/16/2025
3.0.801 1,408 1/16/2025
3.0.800 2,017 1/16/2025
3.0.799 543 1/16/2025
3.0.798 1,176 1/16/2025
3.0.797 1,002 1/16/2025
3.0.796 109 1/16/2025
3.0.795 4,397 1/15/2025
3.0.794 109 1/15/2025
3.0.793 2,712 1/15/2025
3.0.792 112 1/15/2025
3.0.791 156 1/15/2025
3.0.790 3,194 1/15/2025
3.0.789 103 1/15/2025
3.0.788 2,686 1/15/2025
3.0.787 92 1/15/2025
3.0.786 449 1/15/2025
3.0.785 86 1/15/2025
3.0.784 1,560 1/15/2025
3.0.783 88 1/15/2025
3.0.782 233 1/14/2025
3.0.781 101 1/14/2025
3.0.780 105 1/14/2025
3.0.779 2,964 1/14/2025
3.0.778 535 1/14/2025
3.0.777 104 1/14/2025
3.0.776 1,197 1/14/2025
3.0.775 100 1/14/2025
3.0.774 4,983 1/13/2025
3.0.773 1,553 1/13/2025
3.0.772 1,316 1/13/2025
3.0.771 110 1/13/2025
3.0.770 4,852 1/11/2025
3.0.769 1,962 1/11/2025
3.0.768 135 1/11/2025
3.0.767 2,079 1/11/2025
3.0.766 121 1/11/2025
3.0.765 1,677 1/10/2025
3.0.764 1,823 1/10/2025
3.0.763 118 1/10/2025
3.0.762 777 1/10/2025
3.0.761 127 1/10/2025
3.0.760 114 1/10/2025
3.0.759 6,270 1/3/2025
3.0.758 481 1/3/2025
3.0.757 998 1/3/2025
3.0.756 150 1/3/2025
3.0.755 1,437 1/3/2025
3.0.754 124 1/3/2025
3.0.753 1,074 1/3/2025
3.0.752 1,041 1/2/2025
3.0.751 125 1/2/2025
3.0.750 1,718 1/2/2025
3.0.749 131 1/2/2025
3.0.748 2,845 1/2/2025
3.0.747 121 1/2/2025
3.0.746 132 1/2/2025
3.0.745 4,666 1/1/2025
3.0.744 1,019 1/1/2025
3.0.743 292 1/1/2025
3.0.742 139 1/1/2025
3.0.741 1,485 1/1/2025
3.0.740 130 1/1/2025
3.0.739 132 1/1/2025
3.0.738 138 1/1/2025
3.0.737 334 12/31/2024
3.0.736 140 12/31/2024
3.0.735 142 12/31/2024
3.0.734 633 12/31/2024
3.0.733 148 12/31/2024
3.0.732 4,573 12/31/2024
3.0.731 138 12/31/2024
3.0.730 4,379 12/31/2024
3.0.729 115 12/31/2024
3.0.728 2,588 12/31/2024
3.0.727 348 12/31/2024
3.0.726 128 12/31/2024
3.0.725 1,332 12/31/2024
3.0.724 123 12/31/2024
3.0.723 8,881 12/28/2024
3.0.722 1,141 12/28/2024
3.0.721 1,248 12/27/2024
3.0.720 137 12/27/2024
3.0.719 2,703 12/27/2024
3.0.718 4,909 12/24/2024
3.0.717 1,268 12/24/2024
3.0.716 953 12/24/2024
3.0.715 820 12/24/2024
3.0.714 1,392 12/24/2024
3.0.713 119 12/24/2024
3.0.712 2,277 12/24/2024
3.0.711 661 12/24/2024
3.0.710 119 12/24/2024
3.0.709 475 12/24/2024
3.0.708 988 12/24/2024
3.0.707 279 12/24/2024
3.0.706 147 12/24/2024
3.0.705 1,067 12/24/2024
3.0.704 126 12/24/2024
3.0.703 1,810 12/23/2024
3.0.702 2,767 12/23/2024
3.0.701 128 12/23/2024
3.0.700 695 12/23/2024
3.0.699 124 12/23/2024
3.0.698 1,855 12/23/2024
3.0.697 124 12/23/2024
3.0.696 1,464 12/23/2024
3.0.695 133 12/23/2024
3.0.694 462 12/22/2024
3.0.693 1,411 12/22/2024
3.0.692 4,012 12/22/2024
3.0.691 130 12/22/2024
3.0.690 1,570 12/22/2024
3.0.689 175 12/22/2024
3.0.688 489 12/22/2024
3.0.687 119 12/22/2024
3.0.686 282 12/22/2024
3.0.685 127 12/22/2024
3.0.684 6,787 12/22/2024
3.0.683 120 12/22/2024
3.0.682 1,085 12/21/2024
3.0.681 289 12/21/2024
3.0.680 123 12/21/2024
3.0.679 513 12/21/2024
3.0.678 797 12/21/2024
3.0.677 122 12/21/2024
3.0.676 3,803 12/21/2024
3.0.675 409 12/21/2024
3.0.674 123 12/21/2024
3.0.673 2,551 12/21/2024
3.0.672 694 12/21/2024
3.0.671 131 12/21/2024
3.0.670 1,599 12/20/2024
3.0.669 133 12/20/2024
3.0.668 128 12/20/2024
3.0.667 3,710 12/20/2024
3.0.666 1,152 12/20/2024
3.0.665 240 12/20/2024
3.0.664 3,472 12/19/2024
3.0.663 439 12/19/2024
3.0.662 2,043 12/18/2024
3.0.661 124 12/18/2024
3.0.660 6,594 12/17/2024
3.0.659 236 12/17/2024
3.0.658 708 12/16/2024
3.0.657 130 12/16/2024
3.0.656 165 12/16/2024
3.0.655 118 12/16/2024
3.0.654 6,505 12/10/2024
3.0.653 1,015 12/10/2024
3.0.652 401 12/9/2024
3.0.651 125 12/9/2024
3.0.650 2,691 12/9/2024
3.0.649 1,391 12/9/2024
3.0.648 121 12/9/2024
3.0.647 3,647 12/9/2024
3.0.646 2,760 12/6/2024
3.0.645 446 12/6/2024
3.0.644 126 12/6/2024
3.0.643 703 12/6/2024
3.0.641 3,900 12/6/2024
3.0.640 2,467 12/6/2024
3.0.639 5,292 12/6/2024
3.0.637 393 12/6/2024
3.0.636 2,546 12/5/2024
3.0.635 3,583 12/5/2024
3.0.634 3,188 12/5/2024
3.0.633 124 12/5/2024
3.0.632 1,764 12/5/2024
3.0.631 1,050 12/5/2024
3.0.630 131 12/5/2024
3.0.629 401 12/5/2024
3.0.628 124 12/5/2024
3.0.627 167 12/5/2024
3.0.626 124 12/5/2024
3.0.625 3,382 12/4/2024
3.0.624 122 12/4/2024
3.0.623 140 12/4/2024
3.0.622 138 12/4/2024
3.0.621 1,734 12/4/2024
3.0.620 323 12/4/2024
3.0.619 428 12/4/2024
3.0.618 3,395 12/3/2024
3.0.617 132 12/3/2024
3.0.616 1,141 12/3/2024
3.0.615 461 12/3/2024
3.0.614 138 12/3/2024
3.0.613 139 12/3/2024
3.0.612 4,053 12/3/2024
3.0.611 122 12/3/2024
3.0.610 3,312 12/3/2024
3.0.609 118 12/3/2024
3.0.608 3,094 12/2/2024
3.0.607 2,679 12/2/2024
3.0.606 1,641 12/2/2024
3.0.605 300 12/2/2024
3.0.604 130 12/2/2024
3.0.603 419 12/2/2024
3.0.602 3,475 12/1/2024
3.0.601 129 12/1/2024
3.0.600 1,912 12/1/2024
3.0.599 222 12/1/2024
3.0.598 3,476 12/1/2024
3.0.597 133 12/1/2024
3.0.596 3,579 11/29/2024
3.0.595 1,067 11/29/2024
3.0.594 6,044 11/21/2024
3.0.593 321 11/21/2024
3.0.592 4,546 11/20/2024
3.0.591 366 11/20/2024
3.0.590 135 11/20/2024
3.0.589 128 11/20/2024
3.0.588 449 11/20/2024
3.0.587 185 11/20/2024
3.0.586 121 11/20/2024
3.0.585 2,049 11/20/2024
3.0.584 2,780 11/19/2024
3.0.583 128 11/19/2024
3.0.582 659 11/19/2024
3.0.581 118 11/19/2024
3.0.580 2,692 11/19/2024
3.0.579 113 11/19/2024
3.0.578 1,337 11/19/2024
3.0.577 134 11/19/2024
3.0.576 8,546 11/14/2024
3.0.575 166 11/14/2024
3.0.574 534 11/14/2024
3.0.573 2,396 11/14/2024
3.0.572 747 11/14/2024
3.0.571 142 11/14/2024
3.0.570 136 11/14/2024
3.0.569 4,172 11/14/2024
3.0.568 132 11/14/2024
3.0.567 131 11/14/2024
3.0.566 3,501 11/14/2024
3.0.565 130 11/14/2024
3.0.564 132 11/14/2024
3.0.563 129 11/14/2024
2.1.562 8,639 11/13/2024
2.1.561 1,440 11/13/2024
2.1.560 3,082 11/13/2024
2.1.559 142 11/13/2024
2.1.558 1,353 11/12/2024
2.1.557 417 11/12/2024
2.1.556 8,272 11/9/2024
2.1.555 387 11/9/2024
2.1.554 135 11/9/2024
2.1.553 1,757 11/9/2024
2.1.552 127 11/9/2024
2.1.551 989 11/8/2024
2.1.550 131 11/8/2024
2.1.549 134 11/8/2024
2.1.548 132 11/8/2024
2.1.547 448 11/8/2024
2.1.546 1,921 11/8/2024
2.1.545 125 11/8/2024
2.1.544 5,493 11/8/2024
2.1.543 119 11/8/2024
2.1.542 11,696 11/1/2024
2.1.541 488 11/1/2024
2.1.540 6,809 10/29/2024
2.1.539 769 10/29/2024
2.1.538 2,855 10/29/2024
2.1.537 649 10/29/2024
2.1.536 5,581 10/28/2024
2.1.535 1,876 10/28/2024
2.1.534 4,034 10/26/2024
2.1.533 722 10/26/2024
2.1.532 9,370 10/22/2024
2.1.531 277 10/22/2024
2.1.530 571 10/22/2024
2.1.529 905 10/22/2024
2.1.528 127 10/22/2024
2.1.527 518 10/22/2024
2.1.526 6,529 10/18/2024
2.1.525 1,109 10/17/2024
2.1.524 4,172 10/15/2024
2.1.523 1,620 10/15/2024
2.1.522 122 10/14/2024
2.1.521 5,160 10/12/2024
2.1.520 672 10/11/2024
2.1.519 124 10/11/2024
2.1.518 499 10/11/2024
2.1.517 2,964 10/11/2024
2.1.516 6,489 10/9/2024
2.1.515 403 10/9/2024
2.1.514 117 10/9/2024
2.1.513 1,999 10/8/2024
2.1.512 171 10/8/2024
2.1.511 2,248 10/8/2024
2.1.510 164 10/8/2024
2.1.509 118 10/8/2024
2.1.508 3,963 10/8/2024
2.1.507 6,255 10/3/2024
2.1.506 129 10/3/2024
2.1.505 1,124 10/3/2024
2.1.504 1,953 10/3/2024
2.1.503 1,445 10/3/2024
2.1.502 5,753 10/2/2024
2.1.501 125 10/2/2024
2.1.500 1,840 10/2/2024
2.1.499 1,031 10/2/2024
2.1.498 4,202 10/1/2024
2.1.497 726 10/1/2024
2.1.496 138 10/1/2024
2.1.495 2,649 10/1/2024
2.1.494 130 10/1/2024
2.1.493 169 10/1/2024
2.1.492 5,475 9/29/2024
2.1.491 1,405 9/29/2024
2.1.490 128 9/29/2024
2.1.489 1,247 9/29/2024
2.1.488 135 9/29/2024
2.1.487 2,536 9/29/2024
2.1.486 5,257 9/27/2024
2.1.485 796 9/27/2024
2.1.484 3,152 9/27/2024
2.1.483 141 9/27/2024
2.1.482 474 9/27/2024
2.1.481 2,177 9/27/2024
2.1.480 3,189 9/26/2024
2.1.479 3,499 9/26/2024
2.1.478 2,375 9/26/2024
2.1.477 2,189 9/26/2024
2.1.476 3,840 9/26/2024
2.1.475 127 9/26/2024
2.1.474 5,638 9/23/2024
2.1.473 1,321 9/23/2024
2.1.472 985 9/23/2024
2.1.471 1,172 9/23/2024
2.1.470 136 9/23/2024
2.1.469 1,571 9/23/2024
2.1.468 117 9/23/2024
2.1.467 4,690 9/23/2024
2.1.466 131 9/23/2024
2.1.465 748 9/23/2024
2.1.464 148 9/23/2024
2.1.463 120 9/23/2024
2.1.462 904 9/23/2024
2.1.461 9,408 9/18/2024
2.1.460 273 9/17/2024
2.1.459 1,234 9/17/2024
2.1.458 1,734 9/17/2024
2.1.457 137 9/17/2024
2.1.456 1,831 9/17/2024
2.1.455 496 9/17/2024
2.1.454 3,312 9/17/2024
2.1.453 582 9/17/2024
2.1.452 221 9/17/2024
2.1.451 2,681 9/17/2024
2.1.450 7,473 9/16/2024
2.1.449 740 9/16/2024
2.1.448 5,104 9/12/2024
2.1.447 2,940 9/12/2024
2.1.446 1,344 9/11/2024
2.1.445 1,558 9/11/2024
2.1.443 3,743 9/11/2024
2.1.442 1,025 9/11/2024
2.1.441 986 9/11/2024
2.1.440 2,338 9/11/2024
2.1.439 8,108 9/10/2024
2.1.438 153 9/10/2024
2.1.437 1,174 9/10/2024
2.1.436 145 9/10/2024
2.1.434 2,947 9/10/2024
2.1.433 627 9/9/2024
2.1.432 2,029 9/9/2024
2.1.430 1,573 9/9/2024
2.1.428 161 9/9/2024
2.1.427 493 9/9/2024
2.1.426 13,279 9/7/2024
2.1.425 166 9/7/2024
2.1.424 5,039 9/6/2024
2.1.423 394 9/6/2024
2.1.422 2,239 9/6/2024
2.1.421 149 9/5/2024
2.1.420 156 9/5/2024
2.1.419 2,418 9/5/2024
2.1.418 1,179 9/5/2024
2.1.417 149 9/5/2024
2.1.416 1,175 9/5/2024
2.1.415 468 9/5/2024
2.1.414 145 9/5/2024
2.1.413 5,072 9/5/2024
2.1.412 223 9/5/2024
2.1.411 156 9/5/2024
2.1.410 2,292 9/4/2024
2.1.409 8,039 9/3/2024
2.1.408 134 9/3/2024
2.1.407 135 9/3/2024
2.1.406 4,041 9/3/2024
2.1.405 174 9/3/2024
2.1.404 2,516 9/3/2024
2.1.403 5,318 8/29/2024
2.1.402 2,580 8/29/2024
2.1.401 2,906 8/26/2024
2.1.400 132 8/26/2024
2.1.399 4,968 8/21/2024
2.1.398 637 8/21/2024
2.1.397 168 8/21/2024
2.1.396 2,576 8/21/2024
2.1.395 174 8/20/2024
2.1.394 172 8/20/2024
2.1.393 509 8/20/2024
2.1.392 2,988 8/20/2024
2.1.391 447 8/20/2024
2.1.390 146 8/20/2024
2.1.389 2,676 8/20/2024
2.1.388 150 8/20/2024
2.1.387 1,233 8/20/2024
2.1.386 2,919 8/19/2024
2.1.385 4,804 8/15/2024
2.1.384 2,144 8/15/2024
2.1.383 4,838 8/14/2024
2.1.382 175 8/13/2024
2.1.381 5,721 8/7/2024
2.1.380 303 8/6/2024
2.1.379 2,722 8/6/2024
2.1.378 4,949 8/1/2024
2.1.377 360 8/1/2024
2.1.376 122 8/1/2024
2.1.374 1,168 8/1/2024
2.1.373 5,827 7/25/2024
2.1.372 119 7/25/2024
2.1.371 753 7/25/2024
2.1.370 334 7/25/2024
2.1.369 385 7/25/2024
2.1.368 204 7/25/2024
2.1.367 410 7/24/2024
2.1.366 181 7/24/2024
2.1.365 230 7/24/2024
2.1.364 339 7/24/2024
2.1.363 8,621 7/20/2024
2.1.362 1,482 7/20/2024
2.1.361 5,042 7/14/2024
2.1.360 1,578 7/14/2024
2.1.359 131 7/14/2024
2.1.358 1,521 7/14/2024
2.1.357 4,346 7/10/2024
2.1.355 819 7/10/2024
2.1.354 1,212 7/10/2024
2.1.353 146 7/10/2024
2.1.352 1,927 7/10/2024
2.1.351 155 7/10/2024
2.1.350 131 7/10/2024
2.1.349 197 7/10/2024
2.1.348 137 7/10/2024
2.1.347 2,073 7/10/2024
2.1.346 153 7/10/2024
2.1.345 836 7/10/2024
2.1.344 133 7/10/2024
2.1.343 238 7/9/2024
2.1.342 119 7/9/2024
2.1.339 2,000 7/9/2024
2.1.338 507 7/9/2024
2.1.337 4,041 7/9/2024
2.1.336 1,087 7/9/2024
2.1.335 147 7/9/2024
2.1.334 2,603 7/9/2024
2.1.333 134 7/9/2024
2.1.332 9,953 7/9/2024
2.1.331 138 7/9/2024
2.1.330 2,528 7/9/2024
2.1.329 124 7/9/2024
2.1.328 1,091 7/9/2024
2.1.327 730 7/8/2024
2.1.326 990 7/8/2024
2.1.325 148 7/8/2024
2.1.324 150 7/8/2024
2.1.323 4,876 7/8/2024
2.1.322 1,651 7/8/2024
2.1.321 145 7/8/2024
2.1.320 2,306 7/7/2024
2.1.319 149 7/7/2024
2.1.318 163 7/7/2024
2.1.317 148 7/7/2024
2.1.316 1,173 7/7/2024
2.1.315 2,194 7/7/2024
2.1.314 1,889 7/7/2024
2.1.313 245 7/7/2024
2.1.312 3,418 7/5/2024
2.1.311 3,900 7/3/2024
2.1.310 3,060 7/3/2024
2.1.309 416 7/3/2024
2.1.308 3,925 7/2/2024
2.1.307 1,884 6/30/2024
2.1.306 2,266 6/28/2024
2.1.305 5,420 6/22/2024
2.1.304 4,889 6/15/2024
2.1.303 4,111 6/14/2024
2.1.302 5,898 6/1/2024
2.1.301 1,616 6/1/2024
2.1.300 609 6/1/2024
2.1.299 5,835 5/31/2024
2.1.298 3,720 5/29/2024
2.1.297 3,046 5/28/2024
2.1.296 2,482 5/27/2024
2.1.295 4,842 5/26/2024
2.1.294 2,039 5/26/2024
2.1.293 504 5/26/2024
2.1.292 2,518 5/25/2024
2.1.291 1,404 5/25/2024
2.1.290 159 5/25/2024
2.1.289 155 5/25/2024
2.1.288 714 5/25/2024
2.1.287 150 5/25/2024
2.1.286 433 5/25/2024
2.1.285 156 5/25/2024
2.1.284 147 5/25/2024
2.1.283 7,429 5/23/2024
2.1.282 548 5/23/2024
2.1.281 300 5/22/2024
2.1.280 3,653 5/22/2024
2.1.279 149 5/22/2024
2.1.278 160 5/22/2024
2.1.277 155 5/22/2024
2.1.276 2,143 5/22/2024
2.1.275 3,435 5/18/2024
2.1.274 1,910 5/18/2024
2.1.273 1,829 5/17/2024
2.1.272 140 5/17/2024
2.1.271 2,732 5/16/2024
2.1.270 462 5/15/2024
2.1.269 2,757 5/15/2024
2.1.268 4,458 5/12/2024
2.1.267 2,762 5/3/2024
2.1.266 1,162 4/30/2024
2.1.265 1,784 4/29/2024
2.1.264 1,938 4/29/2024
2.1.263 2,669 4/28/2024
2.1.262 1,503 4/28/2024
2.1.261 1,120 4/28/2024
2.1.260 1,763 4/28/2024
2.1.259 932 4/28/2024
2.1.258 139 4/28/2024
2.1.257 4,163 4/27/2024
2.1.256 156 4/27/2024
2.1.255 4,386 4/19/2024
2.1.254 4,092 4/18/2024
2.1.253 3,447 4/12/2024
2.1.252 1,169 4/12/2024
2.1.251 749 4/12/2024
2.1.250 886 4/12/2024
2.1.249 235 4/12/2024
2.1.248 132 4/12/2024
2.1.247 1,010 4/12/2024
2.1.246 333 4/12/2024
2.1.245 1,672 4/11/2024
2.1.244 3,745 4/10/2024
2.1.243 1,166 4/9/2024
2.1.242 3,182 4/2/2024
2.1.241 930 4/1/2024
2.1.240 2,104 3/29/2024
2.1.239 1,863 3/25/2024
2.1.238 320 3/25/2024
2.1.237 3,328 3/20/2024
2.1.236 2,157 3/19/2024
2.1.235 542 3/19/2024
2.1.234 2,363 3/18/2024
2.1.233 1,427 3/18/2024
2.1.232 1,400 3/15/2024
2.1.231 2,364 3/13/2024
2.1.230 1,126 3/13/2024
2.1.229 682 3/13/2024
2.1.228 788 3/13/2024
2.1.227 163 3/13/2024
2.1.226 558 3/13/2024
2.1.225 164 3/13/2024
2.1.224 168 3/13/2024
2.1.223 1,677 3/12/2024
2.1.222 2,847 3/11/2024
2.1.221 2,496 3/11/2024
2.1.220 1,649 3/10/2024
2.1.219 1,906 3/8/2024
2.1.218 1,085 3/8/2024
2.1.217 1,581 3/8/2024
2.1.216 2,095 3/6/2024
2.1.215 2,019 3/4/2024
2.1.214 1,431 3/4/2024
2.1.213 2,578 3/2/2024
2.1.212 1,239 3/2/2024
2.1.211 437 3/2/2024
2.1.210 377 3/2/2024
2.1.209 504 3/2/2024
2.1.208 3,444 2/29/2024
2.1.207 660 2/29/2024
2.1.206 364 2/29/2024
2.1.205 3,333 2/26/2024
2.1.204 1,506 2/25/2024
2.1.203 2,618 2/23/2024
2.1.202 1,916 2/22/2024
2.1.201 982 2/22/2024
2.1.200 459 2/21/2024
2.1.199 1,207 2/21/2024
2.1.198 326 2/21/2024
2.1.197 788 2/21/2024
2.1.196 152 2/21/2024
2.1.195 1,269 2/21/2024
2.1.194 436 2/21/2024
2.1.193 161 2/21/2024
2.1.192 165 2/21/2024
2.1.191 614 2/21/2024
2.1.190 143 2/21/2024
2.1.189 2,658 2/20/2024
2.1.188 739 2/20/2024
2.1.187 667 2/20/2024
2.1.186 787 2/20/2024
2.1.185 2,142 2/19/2024
2.1.184 1,896 2/17/2024
2.1.183 922 2/16/2024
2.1.182 882 2/16/2024
2.1.181 1,374 2/16/2024
2.1.180 153 2/16/2024
2.1.179 665 2/16/2024
2.1.178 162 2/16/2024
2.1.177 155 2/16/2024
2.1.176 578 2/16/2024
2.1.175 143 2/16/2024
2.1.174 3,312 2/13/2024
2.1.173 1,397 2/13/2024
2.1.172 1,111 2/13/2024
2.1.171 479 2/13/2024
2.1.170 646 2/13/2024
2.1.169 1,956 2/12/2024
2.1.168 536 2/11/2024
2.1.167 1,550 2/11/2024
2.1.166 883 2/11/2024
2.1.165 2,818 2/10/2024
2.1.164 564 2/9/2024
2.1.163 162 2/9/2024
2.1.162 1,583 2/9/2024
2.1.161 1,688 2/9/2024
2.1.160 419 2/8/2024
2.1.159 1,249 2/8/2024
2.1.158 883 2/8/2024
2.1.157 1,492 2/8/2024
2.1.156 147 2/8/2024
2.1.155 1,890 2/7/2024
2.1.154 459 2/7/2024
2.1.153 628 2/7/2024
2.1.152 1,288 2/7/2024
2.1.151 400 2/6/2024
2.1.150 157 2/6/2024
2.1.149 152 2/6/2024
2.1.148 2,790 2/5/2024
2.1.147 1,550 2/4/2024
2.1.146 2,106 2/2/2024
2.1.145 1,932 1/31/2024
2.1.144 2,165 1/29/2024
2.1.143 1,388 1/29/2024
2.1.142 369 1/29/2024
2.1.141 1,512 1/28/2024
2.1.140 492 1/28/2024
2.1.139 333 1/28/2024
2.1.138 574 1/28/2024
2.1.137 1,948 1/28/2024
2.1.136 952 1/28/2024
2.1.135 314 1/27/2024
2.1.134 947 1/27/2024
2.1.133 1,185 1/27/2024
2.1.132 1,202 1/27/2024
2.1.131 173 1/27/2024
2.1.130 724 1/27/2024
2.1.129 1,087 1/26/2024
2.1.128 248 1/26/2024
2.1.127 895 1/26/2024
2.1.126 1,147 1/26/2024
2.1.125 1,654 1/26/2024
2.1.124 902 1/25/2024
2.1.123 1,136 1/25/2024
2.1.122 479 1/25/2024
2.1.121 943 1/25/2024
2.1.120 544 1/25/2024
2.1.119 2,602 1/19/2024
2.1.118 2,233 1/15/2024
2.1.117 524 1/15/2024
2.1.116 1,261 1/15/2024
2.1.115 153 1/15/2024
2.1.114 590 1/15/2024
2.1.113 1,390 1/15/2024
2.1.112 2,565 1/14/2024
2.1.111 1,638 1/13/2024
2.1.110 1,862 1/12/2024
2.1.109 2,062 1/11/2024
2.1.108 2,667 1/7/2024
2.1.107 2,111 1/5/2024
2.1.106 517 1/5/2024
2.1.105 165 1/5/2024
2.1.104 165 1/5/2024
2.1.103 1,512 1/5/2024
2.1.102 166 1/5/2024
2.1.101 2,809 1/1/2024
2.1.100 2,242 12/28/2023
2.1.99 763 12/28/2023
2.1.98 527 12/28/2023
2.1.97 158 12/28/2023
2.1.96 157 12/28/2023
2.1.95 734 12/27/2023
2.1.94 170 12/27/2023
2.1.93 501 12/27/2023
2.1.92 166 12/27/2023
2.1.91 170 12/27/2023
2.1.90 2,247 12/25/2023
2.1.89 377 12/25/2023
2.1.88 809 12/25/2023
2.1.87 172 12/25/2023
2.1.86 686 12/25/2023
2.1.85 164 12/25/2023
2.1.84 601 12/25/2023
2.1.83 163 12/25/2023
2.1.82 1,691 12/24/2023
2.1.81 1,106 12/23/2023
2.1.80 897 12/23/2023
2.1.79 333 12/23/2023
2.1.78 588 12/23/2023
2.1.77 162 12/23/2023
2.1.76 149 12/23/2023
2.1.75 1,113 12/23/2023
2.1.74 151 12/23/2023
2.1.73 1,435 12/19/2023
2.1.72 241 12/19/2023
2.1.71 3,116 12/11/2023
2.1.70 748 12/10/2023
2.1.69 148 12/10/2023
2.1.68 519 12/10/2023
2.1.67 1,446 12/10/2023
2.1.66 404 12/9/2023
2.1.65 398 12/9/2023
2.1.64 315 12/9/2023
2.1.63 171 12/9/2023
2.1.62 293 12/9/2023
2.1.61 228 12/9/2023
2.1.60 154 12/9/2023
2.1.59 1,092 12/9/2023
2.1.58 161 12/9/2023
2.1.57 1,551 12/6/2023
2.1.56 422 12/6/2023
2.1.55 264 12/6/2023
2.1.54 293 12/6/2023
2.1.53 947 12/5/2023
2.1.52 397 12/5/2023
2.1.51 356 12/5/2023
2.1.50 397 12/5/2023
2.1.49 142 12/5/2023
2.1.48 358 12/5/2023
2.1.47 291 12/5/2023
2.1.46 145 12/4/2023
2.1.45 152 12/4/2023
2.1.44 355 12/4/2023
2.1.43 166 12/4/2023
2.1.42 1,036 12/4/2023
2.1.41 125 12/4/2023
2.1.40 1,185 11/27/2023
2.1.39 546 11/26/2023
2.1.38 244 11/26/2023
2.1.37 649 11/23/2023
2.1.36 706 11/23/2023
2.1.35 664 11/23/2023
2.1.34 151 11/23/2023
2.1.33 426 11/23/2023
2.1.32 156 11/23/2023
2.1.31 1,097 11/20/2023
2.1.30 1,079 11/20/2023
2.1.29 824 11/19/2023
2.1.28 281 11/19/2023
2.1.27 471 11/19/2023
2.1.26 524 11/19/2023
2.1.25 520 11/19/2023
2.1.24 139 11/19/2023
2.1.23 232 11/18/2023
2.1.22 1,003 11/18/2023
2.1.21 392 11/18/2023
2.1.20 552 11/18/2023
2.1.19 155 11/18/2023
2.1.18 325 11/18/2023
2.1.17 147 11/18/2023
2.1.16 625 11/17/2023
2.1.15 541 11/17/2023
2.1.14 148 11/17/2023
2.1.13 441 11/17/2023
2.1.12 323 11/17/2023
2.1.11 510 11/17/2023
2.1.10 147 11/17/2023
2.1.9 526 11/17/2023
2.1.8 153 11/17/2023
2.1.7 169 11/17/2023
2.1.6 360 11/17/2023
2.1.5 398 11/16/2023
2.0.101 2,092 11/15/2023
2.0.100 145 11/15/2023
2.0.99 154 11/15/2023
2.0.4 146 11/16/2023
2.0.3 155 11/16/2023
2.0.2 152 11/16/2023
2.0.1 146 11/16/2023
1.0.98 631 11/14/2023
1.0.97 765 11/13/2023
1.0.96 136 11/13/2023
1.0.95 590 11/10/2023
1.0.94 142 11/10/2023
1.0.93 958 11/9/2023
1.0.92 149 11/9/2023
1.0.91 1,057 11/7/2023
1.0.90 140 11/7/2023
1.0.89 523 11/6/2023
1.0.88 159 11/6/2023
1.0.87 617 11/3/2023
1.0.86 161 11/3/2023
1.0.85 906 11/2/2023
1.0.84 141 11/2/2023
1.0.83 622 11/1/2023
1.0.82 1,487 10/26/2023
1.0.81 1,329 10/19/2023
1.0.80 169 10/19/2023
1.0.79 810 10/18/2023
1.0.78 187 10/18/2023
1.0.77 757 10/17/2023
1.0.76 173 10/17/2023
1.0.75 691 10/16/2023
1.0.74 178 10/16/2023
1.0.73 723 10/13/2023
1.0.72 364 10/12/2023
1.0.71 1,765 9/20/2023
1.0.70 709 9/19/2023
1.0.69 704 9/18/2023
1.0.68 172 9/18/2023
1.0.67 916 9/14/2023
1.0.66 1,528 8/31/2023
1.0.65 177 8/31/2023
1.0.64 843 8/30/2023
1.0.63 191 8/30/2023
1.0.62 207 8/30/2023
1.0.61 874 8/28/2023
1.0.60 724 8/25/2023
1.0.59 178 8/25/2023
1.0.58 528 8/24/2023
1.0.57 1,488 8/21/2023
1.0.56 858 8/18/2023
1.0.55 779 8/17/2023
1.0.54 189 8/17/2023
1.0.53 1,928 8/10/2023
1.0.52 597 8/9/2023
1.0.51 709 8/8/2023
1.0.50 691 8/7/2023
1.0.49 213 8/7/2023
1.0.48 2,508 7/13/2023
1.0.47 925 7/11/2023
1.0.46 756 7/10/2023
1.0.45 728 7/7/2023
1.0.44 210 7/7/2023
1.0.43 2,144 6/30/2023
1.0.42 1,103 6/29/2023
1.0.41 638 6/28/2023
1.0.40 1,582 6/26/2023
1.0.39 831 6/23/2023
1.0.38 1,125 6/21/2023
1.0.37 1,488 6/15/2023
1.0.36 520 6/14/2023
1.0.35 1,841 6/9/2023
1.0.34 867 6/8/2023
1.0.33 1,659 6/7/2023
1.0.32 210 6/7/2023
1.0.31 1,260 6/6/2023
1.0.30 1,219 6/5/2023
1.0.29 1,410 6/2/2023
1.0.28 197 6/2/2023
1.0.27 1,285 6/1/2023
1.0.26 639 5/31/2023
1.0.25 524 5/31/2023
1.0.24 208 5/31/2023
1.0.23 1,505 5/30/2023
1.0.22 1,570 5/26/2023
1.0.21 729 5/25/2023
1.0.20 190 5/25/2023
1.0.19 876 5/24/2023
1.0.18 201 5/24/2023
1.0.17 494 5/23/2023
1.0.13 1,507 5/22/2023
1.0.12 1,232 5/18/2023
1.0.11 636 5/17/2023
1.0.10 1,592 5/1/2023
1.0.9 1,064 4/25/2023
1.0.8 528 4/24/2023
1.0.7 1,042 4/21/2023
1.0.6 1,997 4/13/2023
1.0.5 643 4/12/2023
1.0.4 1,066 4/8/2023
1.0.3 234 4/8/2023
1.0.2 639 4/8/2023
1.0.1 239 4/8/2023