Soenneker.Utils.SingletonDictionary 3.0.1098

Prefix Reserved
dotnet add package Soenneker.Utils.SingletonDictionary --version 3.0.1098
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.1098
                    
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.1098" />
                    
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.1098" />
                    
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.1098
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.1098"
                    
#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.1098
                    
#: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.1098
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1098
                    
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.1098 13 8/6/2025
3.0.1097 18 8/5/2025
3.0.1096 7,712 7/9/2025
3.0.1095 23,026 6/28/2025
3.0.1094 1,244 6/28/2025
3.0.1093 1,791 6/27/2025
3.0.1092 2,272 6/27/2025
3.0.1091 24,309 6/10/2025
3.0.1090 17,324 5/27/2025
3.0.1089 890 5/27/2025
3.0.1088 962 5/27/2025
3.0.1087 2,286 5/27/2025
3.0.1086 13,846 5/23/2025
3.0.1085 1,255 5/23/2025
3.0.1084 1,214 5/23/2025
3.0.1083 1,235 5/23/2025
3.0.1082 256 5/22/2025
3.0.1081 9,451 5/18/2025
3.0.1079 1,421 5/18/2025
3.0.1078 1,370 5/18/2025
3.0.1077 4,133 5/14/2025
3.0.1076 9,173 5/8/2025
3.0.1075 291 5/8/2025
3.0.1074 597 5/8/2025
3.0.1073 1,095 5/7/2025
3.0.1072 12,976 5/5/2025
3.0.1071 863 5/5/2025
3.0.1070 1,556 5/5/2025
3.0.1069 725 5/5/2025
3.0.1068 238 5/5/2025
3.0.1067 153 5/5/2025
3.0.1066 18,103 4/9/2025
3.0.1065 280 4/9/2025
3.0.1064 1,071 4/8/2025
3.0.1063 2,206 4/8/2025
3.0.1062 3,018 4/8/2025
3.0.1061 203 4/8/2025
3.0.1060 180 4/8/2025
3.0.1059 203 4/8/2025
3.0.1058 169 4/8/2025
3.0.1057 875 4/8/2025
3.0.1056 300 4/8/2025
3.0.1055 6,411 4/8/2025
3.0.1054 667 4/8/2025
3.0.1053 3,295 4/7/2025
3.0.1052 721 4/7/2025
3.0.1051 178 4/7/2025
3.0.1050 605 4/7/2025
3.0.1049 179 4/7/2025
3.0.1048 6,787 4/7/2025
3.0.1047 185 4/7/2025
3.0.1046 9,345 4/7/2025
3.0.1045 174 4/7/2025
3.0.1044 1,391 4/7/2025
3.0.1043 180 4/7/2025
3.0.1042 1,637 4/7/2025
3.0.1041 949 4/6/2025
3.0.1040 304 4/6/2025
3.0.1039 179 4/6/2025
3.0.1038 1,077 4/6/2025
3.0.1037 177 4/6/2025
3.0.1036 415 4/6/2025
3.0.1035 1,198 4/6/2025
3.0.1034 159 4/6/2025
3.0.1033 2,065 4/6/2025
3.0.1032 122 4/6/2025
3.0.1031 162 4/6/2025
3.0.1030 129 4/6/2025
3.0.1029 1,618 4/5/2025
3.0.1028 187 4/5/2025
3.0.1027 1,165 4/5/2025
3.0.1026 1,224 4/5/2025
3.0.1025 1,066 4/5/2025
3.0.1024 650 4/5/2025
3.0.1023 556 4/5/2025
3.0.1022 126 4/5/2025
3.0.1021 1,288 4/4/2025
3.0.1020 6,967 4/4/2025
3.0.1019 23,340 4/4/2025
3.0.1018 6,646 4/1/2025
3.0.1017 2,626 4/1/2025
3.0.1016 176 4/1/2025
3.0.1015 5,407 4/1/2025
3.0.1014 2,349 3/31/2025
3.0.1013 377 3/31/2025
3.0.1012 3,907 3/31/2025
3.0.1011 6,731 3/29/2025
3.0.1010 1,067 3/29/2025
3.0.1009 1,406 3/29/2025
3.0.1008 112 3/29/2025
3.0.1007 4,314 3/27/2025
3.0.1006 3,837 3/25/2025
3.0.1005 608 3/25/2025
3.0.1004 3,096 3/25/2025
3.0.1003 6,051 3/21/2025
3.0.1002 2,548 3/21/2025
3.0.1001 7,288 3/18/2025
3.0.1000 3,384 3/18/2025
3.0.999 6,327 3/15/2025
3.0.998 1,786 3/15/2025
3.0.997 89 3/15/2025
3.0.996 6,039 3/12/2025
3.0.995 2,158 3/12/2025
3.0.994 179 3/12/2025
3.0.993 405 3/12/2025
3.0.992 168 3/12/2025
3.0.991 2,698 3/11/2025
3.0.990 172 3/11/2025
3.0.989 1,280 3/11/2025
3.0.988 182 3/11/2025
3.0.987 2,565 3/11/2025
3.0.986 182 3/11/2025
3.0.985 2,647 3/11/2025
3.0.984 166 3/11/2025
3.0.983 1,625 3/11/2025
3.0.982 173 3/11/2025
3.0.981 8,857 3/7/2025
3.0.980 2,597 3/7/2025
3.0.979 6,151 3/2/2025
3.0.978 1,041 3/2/2025
3.0.977 650 3/2/2025
3.0.976 118 3/2/2025
3.0.975 4,322 3/2/2025
3.0.974 116 3/2/2025
3.0.973 3,176 3/1/2025
3.0.972 106 3/1/2025
3.0.971 4,269 3/1/2025
3.0.970 130 3/1/2025
3.0.969 106 3/1/2025
3.0.968 411 3/1/2025
3.0.967 110 3/1/2025
3.0.966 5,791 3/1/2025
3.0.965 4,761 2/26/2025
3.0.964 825 2/26/2025
3.0.963 2,319 2/25/2025
3.0.962 110 2/25/2025
3.0.961 850 2/25/2025
3.0.960 102 2/25/2025
3.0.959 136 2/25/2025
3.0.958 1,829 2/25/2025
3.0.957 4,825 2/24/2025
3.0.956 4,471 2/23/2025
3.0.955 1,087 2/22/2025
3.0.954 109 2/22/2025
3.0.953 7,544 2/22/2025
3.0.952 2,197 2/22/2025
3.0.951 1,055 2/22/2025
3.0.950 771 2/22/2025
3.0.949 147 2/22/2025
3.0.948 121 2/22/2025
3.0.947 114 2/22/2025
3.0.946 4,620 2/21/2025
3.0.945 112 2/21/2025
3.0.944 5,486 2/21/2025
3.0.943 4,541 2/19/2025
3.0.942 1,614 2/19/2025
3.0.941 726 2/19/2025
3.0.940 119 2/19/2025
3.0.939 406 2/18/2025
3.0.938 120 2/18/2025
3.0.937 5,443 2/18/2025
3.0.936 112 2/18/2025
3.0.935 2,808 2/18/2025
3.0.934 6,792 2/16/2025
3.0.933 1,528 2/14/2025
3.0.932 814 2/14/2025
3.0.931 713 2/13/2025
3.0.930 2,381 2/13/2025
3.0.929 287 2/13/2025
3.0.928 3,680 2/13/2025
3.0.927 3,843 2/12/2025
3.0.926 1,456 2/12/2025
3.0.925 153 2/12/2025
3.0.924 119 2/12/2025
3.0.923 2,003 2/12/2025
3.0.922 357 2/12/2025
3.0.921 131 2/12/2025
3.0.920 191 2/12/2025
3.0.919 196 2/12/2025
3.0.918 119 2/12/2025
3.0.917 172 2/11/2025
3.0.916 3,384 2/11/2025
3.0.915 3,675 2/11/2025
3.0.914 2,191 2/11/2025
3.0.913 129 2/11/2025
3.0.912 402 2/11/2025
3.0.911 1,729 2/10/2025
3.0.910 131 2/10/2025
3.0.909 790 2/10/2025
3.0.908 129 2/10/2025
3.0.907 6,311 2/10/2025
3.0.906 126 2/10/2025
3.0.905 1,169 2/9/2025
3.0.904 5,595 2/9/2025
3.0.903 118 2/9/2025
3.0.902 7,107 2/8/2025
3.0.901 125 2/8/2025
3.0.900 1,690 2/7/2025
3.0.899 115 2/7/2025
3.0.898 1,586 2/7/2025
3.0.897 121 2/7/2025
3.0.896 652 2/7/2025
3.0.895 426 2/7/2025
3.0.894 130 2/7/2025
3.0.893 337 2/7/2025
3.0.892 115 2/7/2025
3.0.891 1,038 2/7/2025
3.0.890 112 2/7/2025
3.0.889 127 2/7/2025
3.0.888 10,572 2/7/2025
3.0.887 6,170 2/5/2025
3.0.886 608 2/5/2025
3.0.885 894 2/5/2025
3.0.884 293 2/5/2025
3.0.883 988 2/5/2025
3.0.882 660 2/5/2025
3.0.881 2,915 2/5/2025
3.0.880 116 2/5/2025
3.0.879 10,743 1/28/2025
3.0.878 645 1/28/2025
3.0.877 1,740 1/28/2025
3.0.876 230 1/28/2025
3.0.875 3,654 1/28/2025
3.0.874 629 1/27/2025
3.0.873 98 1/27/2025
3.0.872 194 1/27/2025
3.0.871 272 1/27/2025
3.0.870 104 1/27/2025
3.0.869 4,706 1/27/2025
3.0.868 4,371 1/26/2025
3.0.867 936 1/26/2025
3.0.866 186 1/26/2025
3.0.865 1,012 1/26/2025
3.0.864 1,320 1/25/2025
3.0.863 111 1/25/2025
3.0.862 5,522 1/25/2025
3.0.861 961 1/25/2025
3.0.860 303 1/25/2025
3.0.859 114 1/25/2025
3.0.858 1,800 1/25/2025
3.0.857 1,263 1/25/2025
3.0.856 6,386 1/24/2025
3.0.855 1,477 1/24/2025
3.0.854 98 1/24/2025
3.0.853 1,923 1/24/2025
3.0.852 326 1/24/2025
3.0.851 218 1/24/2025
3.0.850 3,012 1/24/2025
3.0.849 109 1/24/2025
3.0.848 486 1/23/2025
3.0.847 112 1/23/2025
3.0.846 572 1/23/2025
3.0.845 104 1/23/2025
3.0.844 7,562 1/22/2025
3.0.843 972 1/21/2025
3.0.842 953 1/21/2025
3.0.841 568 1/21/2025
3.0.840 107 1/21/2025
3.0.839 594 1/21/2025
3.0.838 740 1/21/2025
3.0.837 5,225 1/21/2025
3.0.836 536 1/21/2025
3.0.835 997 1/21/2025
3.0.834 117 1/21/2025
3.0.833 794 1/21/2025
3.0.832 112 1/21/2025
3.0.831 2,084 1/21/2025
3.0.830 100 1/21/2025
3.0.829 390 1/20/2025
3.0.828 2,694 1/20/2025
3.0.827 242 1/20/2025
3.0.826 1,971 1/20/2025
3.0.825 110 1/20/2025
3.0.824 1,052 1/20/2025
3.0.823 113 1/20/2025
3.0.822 123 1/20/2025
3.0.821 110 1/20/2025
3.0.820 358 1/20/2025
3.0.819 115 1/20/2025
3.0.818 115 1/20/2025
3.0.817 5,395 1/19/2025
3.0.816 116 1/19/2025
3.0.815 4,990 1/19/2025
3.0.814 1,557 1/19/2025
3.0.813 126 1/19/2025
3.0.812 379 1/19/2025
3.0.811 108 1/19/2025
3.0.810 1,815 1/19/2025
3.0.809 104 1/19/2025
3.0.808 3,107 1/18/2025
3.0.807 111 1/18/2025
3.0.806 6,889 1/17/2025
3.0.805 119 1/17/2025
3.0.804 591 1/17/2025
3.0.803 909 1/17/2025
3.0.802 4,003 1/16/2025
3.0.801 1,399 1/16/2025
3.0.800 2,008 1/16/2025
3.0.799 538 1/16/2025
3.0.798 1,169 1/16/2025
3.0.797 996 1/16/2025
3.0.796 101 1/16/2025
3.0.795 4,390 1/15/2025
3.0.794 103 1/15/2025
3.0.793 2,707 1/15/2025
3.0.792 103 1/15/2025
3.0.791 150 1/15/2025
3.0.790 3,187 1/15/2025
3.0.789 98 1/15/2025
3.0.788 2,680 1/15/2025
3.0.787 83 1/15/2025
3.0.786 443 1/15/2025
3.0.785 79 1/15/2025
3.0.784 1,554 1/15/2025
3.0.783 79 1/15/2025
3.0.782 225 1/14/2025
3.0.781 94 1/14/2025
3.0.780 100 1/14/2025
3.0.779 2,955 1/14/2025
3.0.778 527 1/14/2025
3.0.777 98 1/14/2025
3.0.776 1,189 1/14/2025
3.0.775 95 1/14/2025
3.0.774 4,977 1/13/2025
3.0.773 1,547 1/13/2025
3.0.772 1,308 1/13/2025
3.0.771 100 1/13/2025
3.0.770 4,844 1/11/2025
3.0.769 1,956 1/11/2025
3.0.768 130 1/11/2025
3.0.767 2,072 1/11/2025
3.0.766 113 1/11/2025
3.0.765 1,671 1/10/2025
3.0.764 1,816 1/10/2025
3.0.763 113 1/10/2025
3.0.762 768 1/10/2025
3.0.761 118 1/10/2025
3.0.760 108 1/10/2025
3.0.759 6,262 1/3/2025
3.0.758 473 1/3/2025
3.0.757 990 1/3/2025
3.0.756 141 1/3/2025
3.0.755 1,427 1/3/2025
3.0.754 117 1/3/2025
3.0.753 1,067 1/3/2025
3.0.752 1,033 1/2/2025
3.0.751 119 1/2/2025
3.0.750 1,712 1/2/2025
3.0.749 126 1/2/2025
3.0.748 2,838 1/2/2025
3.0.747 115 1/2/2025
3.0.746 125 1/2/2025
3.0.745 4,659 1/1/2025
3.0.744 1,012 1/1/2025
3.0.743 286 1/1/2025
3.0.742 133 1/1/2025
3.0.741 1,477 1/1/2025
3.0.740 124 1/1/2025
3.0.739 127 1/1/2025
3.0.738 132 1/1/2025
3.0.737 328 12/31/2024
3.0.736 132 12/31/2024
3.0.735 136 12/31/2024
3.0.734 626 12/31/2024
3.0.733 142 12/31/2024
3.0.732 4,566 12/31/2024
3.0.731 132 12/31/2024
3.0.730 4,368 12/31/2024
3.0.729 109 12/31/2024
3.0.728 2,582 12/31/2024
3.0.727 342 12/31/2024
3.0.726 122 12/31/2024
3.0.725 1,327 12/31/2024
3.0.724 118 12/31/2024
3.0.723 8,871 12/28/2024
3.0.722 1,135 12/28/2024
3.0.721 1,239 12/27/2024
3.0.720 130 12/27/2024
3.0.719 2,696 12/27/2024
3.0.718 4,901 12/24/2024
3.0.717 1,259 12/24/2024
3.0.716 947 12/24/2024
3.0.715 815 12/24/2024
3.0.714 1,384 12/24/2024
3.0.713 111 12/24/2024
3.0.712 2,271 12/24/2024
3.0.711 652 12/24/2024
3.0.710 113 12/24/2024
3.0.709 469 12/24/2024
3.0.708 982 12/24/2024
3.0.707 269 12/24/2024
3.0.706 141 12/24/2024
3.0.705 1,061 12/24/2024
3.0.704 118 12/24/2024
3.0.703 1,805 12/23/2024
3.0.702 2,760 12/23/2024
3.0.701 122 12/23/2024
3.0.700 686 12/23/2024
3.0.699 118 12/23/2024
3.0.698 1,849 12/23/2024
3.0.697 116 12/23/2024
3.0.696 1,458 12/23/2024
3.0.695 126 12/23/2024
3.0.694 454 12/22/2024
3.0.693 1,405 12/22/2024
3.0.692 4,006 12/22/2024
3.0.691 123 12/22/2024
3.0.690 1,564 12/22/2024
3.0.689 170 12/22/2024
3.0.688 483 12/22/2024
3.0.687 113 12/22/2024
3.0.686 276 12/22/2024
3.0.685 119 12/22/2024
3.0.684 6,776 12/22/2024
3.0.683 113 12/22/2024
3.0.682 1,078 12/21/2024
3.0.681 283 12/21/2024
3.0.680 118 12/21/2024
3.0.679 505 12/21/2024
3.0.678 790 12/21/2024
3.0.677 113 12/21/2024
3.0.676 3,794 12/21/2024
3.0.675 401 12/21/2024
3.0.674 117 12/21/2024
3.0.673 2,543 12/21/2024
3.0.672 687 12/21/2024
3.0.671 124 12/21/2024
3.0.670 1,592 12/20/2024
3.0.669 128 12/20/2024
3.0.668 118 12/20/2024
3.0.667 3,701 12/20/2024
3.0.666 1,146 12/20/2024
3.0.665 235 12/20/2024
3.0.664 3,465 12/19/2024
3.0.663 432 12/19/2024
3.0.662 2,034 12/18/2024
3.0.661 118 12/18/2024
3.0.660 6,588 12/17/2024
3.0.659 229 12/17/2024
3.0.658 701 12/16/2024
3.0.657 124 12/16/2024
3.0.656 158 12/16/2024
3.0.655 112 12/16/2024
3.0.654 6,495 12/10/2024
3.0.653 1,009 12/10/2024
3.0.652 395 12/9/2024
3.0.651 118 12/9/2024
3.0.650 2,682 12/9/2024
3.0.649 1,384 12/9/2024
3.0.648 113 12/9/2024
3.0.647 3,640 12/9/2024
3.0.646 2,751 12/6/2024
3.0.645 437 12/6/2024
3.0.644 119 12/6/2024
3.0.643 698 12/6/2024
3.0.641 3,890 12/6/2024
3.0.640 2,459 12/6/2024
3.0.639 5,285 12/6/2024
3.0.637 387 12/6/2024
3.0.636 2,538 12/5/2024
3.0.635 3,577 12/5/2024
3.0.634 3,182 12/5/2024
3.0.633 117 12/5/2024
3.0.632 1,756 12/5/2024
3.0.631 1,044 12/5/2024
3.0.630 124 12/5/2024
3.0.629 391 12/5/2024
3.0.628 115 12/5/2024
3.0.627 159 12/5/2024
3.0.626 118 12/5/2024
3.0.625 3,373 12/4/2024
3.0.624 115 12/4/2024
3.0.623 132 12/4/2024
3.0.622 131 12/4/2024
3.0.621 1,727 12/4/2024
3.0.620 311 12/4/2024
3.0.619 423 12/4/2024
3.0.618 3,385 12/3/2024
3.0.617 125 12/3/2024
3.0.616 1,134 12/3/2024
3.0.615 454 12/3/2024
3.0.614 132 12/3/2024
3.0.613 133 12/3/2024
3.0.612 4,047 12/3/2024
3.0.611 115 12/3/2024
3.0.610 3,304 12/3/2024
3.0.609 111 12/3/2024
3.0.608 3,086 12/2/2024
3.0.607 2,670 12/2/2024
3.0.606 1,634 12/2/2024
3.0.605 292 12/2/2024
3.0.604 124 12/2/2024
3.0.603 414 12/2/2024
3.0.602 3,469 12/1/2024
3.0.601 122 12/1/2024
3.0.600 1,902 12/1/2024
3.0.599 215 12/1/2024
3.0.598 3,470 12/1/2024
3.0.597 126 12/1/2024
3.0.596 3,574 11/29/2024
3.0.595 1,060 11/29/2024
3.0.594 5,901 11/21/2024
3.0.593 313 11/21/2024
3.0.592 4,538 11/20/2024
3.0.591 359 11/20/2024
3.0.590 129 11/20/2024
3.0.589 122 11/20/2024
3.0.588 441 11/20/2024
3.0.587 174 11/20/2024
3.0.586 115 11/20/2024
3.0.585 2,043 11/20/2024
3.0.584 2,770 11/19/2024
3.0.583 121 11/19/2024
3.0.582 652 11/19/2024
3.0.581 112 11/19/2024
3.0.580 2,685 11/19/2024
3.0.579 108 11/19/2024
3.0.578 1,328 11/19/2024
3.0.577 129 11/19/2024
3.0.576 8,536 11/14/2024
3.0.575 156 11/14/2024
3.0.574 524 11/14/2024
3.0.573 2,389 11/14/2024
3.0.572 740 11/14/2024
3.0.571 132 11/14/2024
3.0.570 131 11/14/2024
3.0.569 4,164 11/14/2024
3.0.568 126 11/14/2024
3.0.567 124 11/14/2024
3.0.566 3,496 11/14/2024
3.0.565 125 11/14/2024
3.0.564 123 11/14/2024
3.0.563 124 11/14/2024
2.1.562 8,576 11/13/2024
2.1.561 1,413 11/13/2024
2.1.560 3,076 11/13/2024
2.1.559 135 11/13/2024
2.1.558 1,347 11/12/2024
2.1.557 411 11/12/2024
2.1.556 8,266 11/9/2024
2.1.555 379 11/9/2024
2.1.554 128 11/9/2024
2.1.553 1,752 11/9/2024
2.1.552 121 11/9/2024
2.1.551 983 11/8/2024
2.1.550 124 11/8/2024
2.1.549 126 11/8/2024
2.1.548 126 11/8/2024
2.1.547 441 11/8/2024
2.1.546 1,911 11/8/2024
2.1.545 118 11/8/2024
2.1.544 5,487 11/8/2024
2.1.543 114 11/8/2024
2.1.542 11,680 11/1/2024
2.1.541 480 11/1/2024
2.1.540 6,795 10/29/2024
2.1.539 762 10/29/2024
2.1.538 2,846 10/29/2024
2.1.537 643 10/29/2024
2.1.536 5,576 10/28/2024
2.1.535 1,868 10/28/2024
2.1.534 4,026 10/26/2024
2.1.533 714 10/26/2024
2.1.532 9,348 10/22/2024
2.1.531 269 10/22/2024
2.1.530 565 10/22/2024
2.1.529 898 10/22/2024
2.1.528 117 10/22/2024
2.1.527 510 10/22/2024
2.1.526 6,516 10/18/2024
2.1.525 1,100 10/17/2024
2.1.524 4,165 10/15/2024
2.1.523 1,612 10/15/2024
2.1.522 116 10/14/2024
2.1.521 5,148 10/12/2024
2.1.520 666 10/11/2024
2.1.519 115 10/11/2024
2.1.518 492 10/11/2024
2.1.517 2,955 10/11/2024
2.1.516 6,479 10/9/2024
2.1.515 396 10/9/2024
2.1.514 111 10/9/2024
2.1.513 1,993 10/8/2024
2.1.512 164 10/8/2024
2.1.511 2,241 10/8/2024
2.1.510 159 10/8/2024
2.1.509 112 10/8/2024
2.1.508 3,957 10/8/2024
2.1.507 6,246 10/3/2024
2.1.506 120 10/3/2024
2.1.505 1,119 10/3/2024
2.1.504 1,944 10/3/2024
2.1.503 1,434 10/3/2024
2.1.502 5,747 10/2/2024
2.1.501 117 10/2/2024
2.1.500 1,832 10/2/2024
2.1.499 1,023 10/2/2024
2.1.498 4,196 10/1/2024
2.1.497 721 10/1/2024
2.1.496 133 10/1/2024
2.1.495 2,642 10/1/2024
2.1.494 124 10/1/2024
2.1.493 163 10/1/2024
2.1.492 5,455 9/29/2024
2.1.491 1,400 9/29/2024
2.1.490 121 9/29/2024
2.1.489 1,241 9/29/2024
2.1.488 128 9/29/2024
2.1.487 2,529 9/29/2024
2.1.486 5,245 9/27/2024
2.1.485 788 9/27/2024
2.1.484 3,146 9/27/2024
2.1.483 134 9/27/2024
2.1.482 466 9/27/2024
2.1.481 2,170 9/27/2024
2.1.480 3,183 9/26/2024
2.1.479 3,493 9/26/2024
2.1.478 2,368 9/26/2024
2.1.477 2,181 9/26/2024
2.1.476 3,828 9/26/2024
2.1.475 120 9/26/2024
2.1.474 5,626 9/23/2024
2.1.473 1,312 9/23/2024
2.1.472 974 9/23/2024
2.1.471 1,165 9/23/2024
2.1.470 124 9/23/2024
2.1.469 1,562 9/23/2024
2.1.468 112 9/23/2024
2.1.467 4,682 9/23/2024
2.1.466 125 9/23/2024
2.1.465 740 9/23/2024
2.1.464 140 9/23/2024
2.1.463 113 9/23/2024
2.1.462 899 9/23/2024
2.1.461 9,344 9/18/2024
2.1.460 267 9/17/2024
2.1.459 1,220 9/17/2024
2.1.458 1,728 9/17/2024
2.1.457 129 9/17/2024
2.1.456 1,823 9/17/2024
2.1.455 486 9/17/2024
2.1.454 3,302 9/17/2024
2.1.453 577 9/17/2024
2.1.452 214 9/17/2024
2.1.451 2,672 9/17/2024
2.1.450 7,466 9/16/2024
2.1.449 732 9/16/2024
2.1.448 5,071 9/12/2024
2.1.447 2,935 9/12/2024
2.1.446 1,337 9/11/2024
2.1.445 1,551 9/11/2024
2.1.443 3,736 9/11/2024
2.1.442 1,018 9/11/2024
2.1.441 979 9/11/2024
2.1.440 2,330 9/11/2024
2.1.439 8,100 9/10/2024
2.1.438 144 9/10/2024
2.1.437 1,169 9/10/2024
2.1.436 140 9/10/2024
2.1.434 2,939 9/10/2024
2.1.433 618 9/9/2024
2.1.432 2,022 9/9/2024
2.1.430 1,568 9/9/2024
2.1.428 155 9/9/2024
2.1.427 487 9/9/2024
2.1.426 13,265 9/7/2024
2.1.425 159 9/7/2024
2.1.424 5,029 9/6/2024
2.1.423 388 9/6/2024
2.1.422 2,230 9/6/2024
2.1.421 141 9/5/2024
2.1.420 149 9/5/2024
2.1.419 2,409 9/5/2024
2.1.418 1,172 9/5/2024
2.1.417 144 9/5/2024
2.1.416 1,164 9/5/2024
2.1.415 457 9/5/2024
2.1.414 139 9/5/2024
2.1.413 5,067 9/5/2024
2.1.412 217 9/5/2024
2.1.411 145 9/5/2024
2.1.410 2,282 9/4/2024
2.1.409 8,031 9/3/2024
2.1.408 128 9/3/2024
2.1.407 126 9/3/2024
2.1.406 4,031 9/3/2024
2.1.405 167 9/3/2024
2.1.404 2,507 9/3/2024
2.1.403 5,308 8/29/2024
2.1.402 2,573 8/29/2024
2.1.401 2,900 8/26/2024
2.1.400 126 8/26/2024
2.1.399 4,959 8/21/2024
2.1.398 629 8/21/2024
2.1.397 159 8/21/2024
2.1.396 2,569 8/21/2024
2.1.395 167 8/20/2024
2.1.394 164 8/20/2024
2.1.393 501 8/20/2024
2.1.392 2,978 8/20/2024
2.1.391 439 8/20/2024
2.1.390 138 8/20/2024
2.1.389 2,669 8/20/2024
2.1.388 143 8/20/2024
2.1.387 1,226 8/20/2024
2.1.386 2,912 8/19/2024
2.1.385 4,798 8/15/2024
2.1.384 2,136 8/15/2024
2.1.383 4,830 8/14/2024
2.1.382 169 8/13/2024
2.1.381 5,713 8/7/2024
2.1.380 296 8/6/2024
2.1.379 2,710 8/6/2024
2.1.378 4,943 8/1/2024
2.1.377 353 8/1/2024
2.1.376 116 8/1/2024
2.1.374 1,159 8/1/2024
2.1.373 5,821 7/25/2024
2.1.372 113 7/25/2024
2.1.371 748 7/25/2024
2.1.370 328 7/25/2024
2.1.369 380 7/25/2024
2.1.368 198 7/25/2024
2.1.367 405 7/24/2024
2.1.366 174 7/24/2024
2.1.365 222 7/24/2024
2.1.364 333 7/24/2024
2.1.363 8,588 7/20/2024
2.1.362 1,475 7/20/2024
2.1.361 5,035 7/14/2024
2.1.360 1,568 7/14/2024
2.1.359 122 7/14/2024
2.1.358 1,515 7/14/2024
2.1.357 4,340 7/10/2024
2.1.355 813 7/10/2024
2.1.354 1,206 7/10/2024
2.1.353 139 7/10/2024
2.1.352 1,917 7/10/2024
2.1.351 147 7/10/2024
2.1.350 124 7/10/2024
2.1.349 192 7/10/2024
2.1.348 130 7/10/2024
2.1.347 2,068 7/10/2024
2.1.346 146 7/10/2024
2.1.345 827 7/10/2024
2.1.344 128 7/10/2024
2.1.343 232 7/9/2024
2.1.342 114 7/9/2024
2.1.339 1,994 7/9/2024
2.1.338 501 7/9/2024
2.1.337 4,034 7/9/2024
2.1.336 1,082 7/9/2024
2.1.335 139 7/9/2024
2.1.334 2,598 7/9/2024
2.1.333 128 7/9/2024
2.1.332 9,341 7/9/2024
2.1.331 130 7/9/2024
2.1.330 2,521 7/9/2024
2.1.329 117 7/9/2024
2.1.328 1,084 7/9/2024
2.1.327 725 7/8/2024
2.1.326 982 7/8/2024
2.1.325 141 7/8/2024
2.1.324 144 7/8/2024
2.1.323 4,869 7/8/2024
2.1.322 1,644 7/8/2024
2.1.321 138 7/8/2024
2.1.320 2,297 7/7/2024
2.1.319 144 7/7/2024
2.1.318 157 7/7/2024
2.1.317 140 7/7/2024
2.1.316 1,167 7/7/2024
2.1.315 2,187 7/7/2024
2.1.314 1,883 7/7/2024
2.1.313 238 7/7/2024
2.1.312 3,411 7/5/2024
2.1.311 3,892 7/3/2024
2.1.310 3,054 7/3/2024
2.1.309 409 7/3/2024
2.1.308 3,916 7/2/2024
2.1.307 1,875 6/30/2024
2.1.306 2,260 6/28/2024
2.1.305 5,407 6/22/2024
2.1.304 4,877 6/15/2024
2.1.303 4,101 6/14/2024
2.1.302 5,886 6/1/2024
2.1.301 1,610 6/1/2024
2.1.300 601 6/1/2024
2.1.299 5,827 5/31/2024
2.1.298 3,710 5/29/2024
2.1.297 3,039 5/28/2024
2.1.296 2,475 5/27/2024
2.1.295 4,836 5/26/2024
2.1.294 2,031 5/26/2024
2.1.293 498 5/26/2024
2.1.292 2,510 5/25/2024
2.1.291 1,392 5/25/2024
2.1.290 151 5/25/2024
2.1.289 146 5/25/2024
2.1.288 707 5/25/2024
2.1.287 143 5/25/2024
2.1.286 425 5/25/2024
2.1.285 148 5/25/2024
2.1.284 139 5/25/2024
2.1.283 7,416 5/23/2024
2.1.282 542 5/23/2024
2.1.281 294 5/22/2024
2.1.280 3,646 5/22/2024
2.1.279 139 5/22/2024
2.1.278 153 5/22/2024
2.1.277 150 5/22/2024
2.1.276 2,136 5/22/2024
2.1.275 3,429 5/18/2024
2.1.274 1,903 5/18/2024
2.1.273 1,821 5/17/2024
2.1.272 134 5/17/2024
2.1.271 2,726 5/16/2024
2.1.270 454 5/15/2024
2.1.269 2,748 5/15/2024
2.1.268 4,452 5/12/2024
2.1.267 2,752 5/3/2024
2.1.266 1,156 4/30/2024
2.1.265 1,776 4/29/2024
2.1.264 1,927 4/29/2024
2.1.263 2,660 4/28/2024
2.1.262 1,498 4/28/2024
2.1.261 1,114 4/28/2024
2.1.260 1,757 4/28/2024
2.1.259 924 4/28/2024
2.1.258 134 4/28/2024
2.1.257 4,155 4/27/2024
2.1.256 151 4/27/2024
2.1.255 4,381 4/19/2024
2.1.254 4,086 4/18/2024
2.1.253 3,437 4/12/2024
2.1.252 1,162 4/12/2024
2.1.251 743 4/12/2024
2.1.250 879 4/12/2024
2.1.249 220 4/12/2024
2.1.248 126 4/12/2024
2.1.247 1,003 4/12/2024
2.1.246 325 4/12/2024
2.1.245 1,664 4/11/2024
2.1.244 3,736 4/10/2024
2.1.243 1,152 4/9/2024
2.1.242 3,173 4/2/2024
2.1.241 923 4/1/2024
2.1.240 2,097 3/29/2024
2.1.239 1,855 3/25/2024
2.1.238 315 3/25/2024
2.1.237 3,320 3/20/2024
2.1.236 2,149 3/19/2024
2.1.235 535 3/19/2024
2.1.234 2,356 3/18/2024
2.1.233 1,416 3/18/2024
2.1.232 1,393 3/15/2024
2.1.231 2,356 3/13/2024
2.1.230 1,116 3/13/2024
2.1.229 677 3/13/2024
2.1.228 782 3/13/2024
2.1.227 157 3/13/2024
2.1.226 552 3/13/2024
2.1.225 159 3/13/2024
2.1.224 162 3/13/2024
2.1.223 1,672 3/12/2024
2.1.222 2,839 3/11/2024
2.1.221 2,488 3/11/2024
2.1.220 1,644 3/10/2024
2.1.219 1,900 3/8/2024
2.1.218 1,076 3/8/2024
2.1.217 1,574 3/8/2024
2.1.216 2,089 3/6/2024
2.1.215 2,012 3/4/2024
2.1.214 1,423 3/4/2024
2.1.213 2,568 3/2/2024
2.1.212 1,230 3/2/2024
2.1.211 427 3/2/2024
2.1.210 368 3/2/2024
2.1.209 492 3/2/2024
2.1.208 3,438 2/29/2024
2.1.207 654 2/29/2024
2.1.206 357 2/29/2024
2.1.205 3,323 2/26/2024
2.1.204 1,497 2/25/2024
2.1.203 2,608 2/23/2024
2.1.202 1,910 2/22/2024
2.1.201 975 2/22/2024
2.1.200 453 2/21/2024
2.1.199 1,201 2/21/2024
2.1.198 318 2/21/2024
2.1.197 781 2/21/2024
2.1.196 146 2/21/2024
2.1.195 1,263 2/21/2024
2.1.194 429 2/21/2024
2.1.193 155 2/21/2024
2.1.192 159 2/21/2024
2.1.191 607 2/21/2024
2.1.190 137 2/21/2024
2.1.189 2,643 2/20/2024
2.1.188 733 2/20/2024
2.1.187 660 2/20/2024
2.1.186 779 2/20/2024
2.1.185 2,130 2/19/2024
2.1.184 1,890 2/17/2024
2.1.183 916 2/16/2024
2.1.182 875 2/16/2024
2.1.181 1,366 2/16/2024
2.1.180 148 2/16/2024
2.1.179 656 2/16/2024
2.1.178 157 2/16/2024
2.1.177 149 2/16/2024
2.1.176 571 2/16/2024
2.1.175 136 2/16/2024
2.1.174 3,306 2/13/2024
2.1.173 1,391 2/13/2024
2.1.172 1,106 2/13/2024
2.1.171 471 2/13/2024
2.1.170 639 2/13/2024
2.1.169 1,950 2/12/2024
2.1.168 526 2/11/2024
2.1.167 1,541 2/11/2024
2.1.166 877 2/11/2024
2.1.165 2,805 2/10/2024
2.1.164 558 2/9/2024
2.1.163 157 2/9/2024
2.1.162 1,573 2/9/2024
2.1.161 1,682 2/9/2024
2.1.160 413 2/8/2024
2.1.159 1,242 2/8/2024
2.1.158 875 2/8/2024
2.1.157 1,482 2/8/2024
2.1.156 142 2/8/2024
2.1.155 1,884 2/7/2024
2.1.154 453 2/7/2024
2.1.153 620 2/7/2024
2.1.152 1,280 2/7/2024
2.1.151 394 2/6/2024
2.1.150 150 2/6/2024
2.1.149 146 2/6/2024
2.1.148 2,781 2/5/2024
2.1.147 1,543 2/4/2024
2.1.146 2,098 2/2/2024
2.1.145 1,924 1/31/2024
2.1.144 2,157 1/29/2024
2.1.143 1,378 1/29/2024
2.1.142 361 1/29/2024
2.1.141 1,505 1/28/2024
2.1.140 483 1/28/2024
2.1.139 326 1/28/2024
2.1.138 564 1/28/2024
2.1.137 1,940 1/28/2024
2.1.136 943 1/28/2024
2.1.135 308 1/27/2024
2.1.134 941 1/27/2024
2.1.133 1,177 1/27/2024
2.1.132 1,195 1/27/2024
2.1.131 167 1/27/2024
2.1.130 713 1/27/2024
2.1.129 1,074 1/26/2024
2.1.128 240 1/26/2024
2.1.127 886 1/26/2024
2.1.126 1,139 1/26/2024
2.1.125 1,647 1/26/2024
2.1.124 897 1/25/2024
2.1.123 1,127 1/25/2024
2.1.122 473 1/25/2024
2.1.121 933 1/25/2024
2.1.120 537 1/25/2024
2.1.119 2,594 1/19/2024
2.1.118 2,228 1/15/2024
2.1.117 518 1/15/2024
2.1.116 1,253 1/15/2024
2.1.115 146 1/15/2024
2.1.114 583 1/15/2024
2.1.113 1,384 1/15/2024
2.1.112 2,557 1/14/2024
2.1.111 1,631 1/13/2024
2.1.110 1,851 1/12/2024
2.1.109 2,053 1/11/2024
2.1.108 2,660 1/7/2024
2.1.107 2,104 1/5/2024
2.1.106 510 1/5/2024
2.1.105 160 1/5/2024
2.1.104 158 1/5/2024
2.1.103 1,506 1/5/2024
2.1.102 160 1/5/2024
2.1.101 2,801 1/1/2024
2.1.100 2,236 12/28/2023
2.1.99 754 12/28/2023
2.1.98 519 12/28/2023
2.1.97 153 12/28/2023
2.1.96 151 12/28/2023
2.1.95 728 12/27/2023
2.1.94 164 12/27/2023
2.1.93 495 12/27/2023
2.1.92 160 12/27/2023
2.1.91 164 12/27/2023
2.1.90 2,241 12/25/2023
2.1.89 370 12/25/2023
2.1.88 799 12/25/2023
2.1.87 166 12/25/2023
2.1.86 681 12/25/2023
2.1.85 157 12/25/2023
2.1.84 594 12/25/2023
2.1.83 157 12/25/2023
2.1.82 1,681 12/24/2023
2.1.81 1,098 12/23/2023
2.1.80 891 12/23/2023
2.1.79 327 12/23/2023
2.1.78 579 12/23/2023
2.1.77 154 12/23/2023
2.1.76 141 12/23/2023
2.1.75 1,105 12/23/2023
2.1.74 144 12/23/2023
2.1.73 1,425 12/19/2023
2.1.72 235 12/19/2023
2.1.71 3,111 12/11/2023
2.1.70 742 12/10/2023
2.1.69 142 12/10/2023
2.1.68 512 12/10/2023
2.1.67 1,437 12/10/2023
2.1.66 397 12/9/2023
2.1.65 391 12/9/2023
2.1.64 308 12/9/2023
2.1.63 164 12/9/2023
2.1.62 287 12/9/2023
2.1.61 221 12/9/2023
2.1.60 148 12/9/2023
2.1.59 1,086 12/9/2023
2.1.58 152 12/9/2023
2.1.57 1,547 12/6/2023
2.1.56 417 12/6/2023
2.1.55 258 12/6/2023
2.1.54 287 12/6/2023
2.1.53 943 12/5/2023
2.1.52 391 12/5/2023
2.1.51 351 12/5/2023
2.1.50 391 12/5/2023
2.1.49 139 12/5/2023
2.1.48 355 12/5/2023
2.1.47 288 12/5/2023
2.1.46 141 12/4/2023
2.1.45 147 12/4/2023
2.1.44 351 12/4/2023
2.1.43 159 12/4/2023
2.1.42 1,031 12/4/2023
2.1.41 122 12/4/2023
2.1.40 1,181 11/27/2023
2.1.39 540 11/26/2023
2.1.38 240 11/26/2023
2.1.37 642 11/23/2023
2.1.36 701 11/23/2023
2.1.35 658 11/23/2023
2.1.34 147 11/23/2023
2.1.33 418 11/23/2023
2.1.32 151 11/23/2023
2.1.31 1,093 11/20/2023
2.1.30 1,074 11/20/2023
2.1.29 820 11/19/2023
2.1.28 276 11/19/2023
2.1.27 467 11/19/2023
2.1.26 515 11/19/2023
2.1.25 517 11/19/2023
2.1.24 135 11/19/2023
2.1.23 229 11/18/2023
2.1.22 999 11/18/2023
2.1.21 387 11/18/2023
2.1.20 547 11/18/2023
2.1.19 149 11/18/2023
2.1.18 318 11/18/2023
2.1.17 143 11/18/2023
2.1.16 621 11/17/2023
2.1.15 537 11/17/2023
2.1.14 143 11/17/2023
2.1.13 437 11/17/2023
2.1.12 317 11/17/2023
2.1.11 507 11/17/2023
2.1.10 141 11/17/2023
2.1.9 521 11/17/2023
2.1.8 149 11/17/2023
2.1.7 164 11/17/2023
2.1.6 354 11/17/2023
2.1.5 391 11/16/2023
2.0.101 2,088 11/15/2023
2.0.100 137 11/15/2023
2.0.99 147 11/15/2023
2.0.4 141 11/16/2023
2.0.3 150 11/16/2023
2.0.2 147 11/16/2023
2.0.1 142 11/16/2023
1.0.98 628 11/14/2023
1.0.97 761 11/13/2023
1.0.96 127 11/13/2023
1.0.95 585 11/10/2023
1.0.94 138 11/10/2023
1.0.93 952 11/9/2023
1.0.92 141 11/9/2023
1.0.91 1,054 11/7/2023
1.0.90 136 11/7/2023
1.0.89 519 11/6/2023
1.0.88 151 11/6/2023
1.0.87 611 11/3/2023
1.0.86 153 11/3/2023
1.0.85 900 11/2/2023
1.0.84 136 11/2/2023
1.0.83 617 11/1/2023
1.0.82 1,477 10/26/2023
1.0.81 1,320 10/19/2023
1.0.80 163 10/19/2023
1.0.79 801 10/18/2023
1.0.78 181 10/18/2023
1.0.77 753 10/17/2023
1.0.76 166 10/17/2023
1.0.75 680 10/16/2023
1.0.74 171 10/16/2023
1.0.73 718 10/13/2023
1.0.72 357 10/12/2023
1.0.71 1,759 9/20/2023
1.0.70 702 9/19/2023
1.0.69 698 9/18/2023
1.0.68 164 9/18/2023
1.0.67 910 9/14/2023
1.0.66 1,521 8/31/2023
1.0.65 169 8/31/2023
1.0.64 833 8/30/2023
1.0.63 181 8/30/2023
1.0.62 197 8/30/2023
1.0.61 861 8/28/2023
1.0.60 716 8/25/2023
1.0.59 171 8/25/2023
1.0.58 520 8/24/2023
1.0.57 1,480 8/21/2023
1.0.56 851 8/18/2023
1.0.55 771 8/17/2023
1.0.54 180 8/17/2023
1.0.53 1,918 8/10/2023
1.0.52 590 8/9/2023
1.0.51 700 8/8/2023
1.0.50 684 8/7/2023
1.0.49 204 8/7/2023
1.0.48 2,500 7/13/2023
1.0.47 916 7/11/2023
1.0.46 748 7/10/2023
1.0.45 720 7/7/2023
1.0.44 200 7/7/2023
1.0.43 2,136 6/30/2023
1.0.42 1,093 6/29/2023
1.0.41 625 6/28/2023
1.0.40 1,572 6/26/2023
1.0.39 820 6/23/2023
1.0.38 1,112 6/21/2023
1.0.37 1,475 6/15/2023
1.0.36 510 6/14/2023
1.0.35 1,830 6/9/2023
1.0.34 857 6/8/2023
1.0.33 1,649 6/7/2023
1.0.32 201 6/7/2023
1.0.31 1,249 6/6/2023
1.0.30 1,207 6/5/2023
1.0.29 1,390 6/2/2023
1.0.28 187 6/2/2023
1.0.27 1,276 6/1/2023
1.0.26 631 5/31/2023
1.0.25 516 5/31/2023
1.0.24 198 5/31/2023
1.0.23 1,495 5/30/2023
1.0.22 1,558 5/26/2023
1.0.21 714 5/25/2023
1.0.20 181 5/25/2023
1.0.19 865 5/24/2023
1.0.18 192 5/24/2023
1.0.17 485 5/23/2023
1.0.13 1,496 5/22/2023
1.0.12 1,222 5/18/2023
1.0.11 627 5/17/2023
1.0.10 1,584 5/1/2023
1.0.9 1,055 4/25/2023
1.0.8 516 4/24/2023
1.0.7 1,033 4/21/2023
1.0.6 1,987 4/13/2023
1.0.5 633 4/12/2023
1.0.4 1,054 4/8/2023
1.0.3 224 4/8/2023
1.0.2 628 4/8/2023
1.0.1 230 4/8/2023