Soenneker.Utils.SingletonDictionary 3.0.1103

Prefix Reserved
dotnet add package Soenneker.Utils.SingletonDictionary --version 3.0.1103
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.1103
                    
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.1103" />
                    
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.1103" />
                    
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.1103
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.1103"
                    
#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.1103
                    
#: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.1103
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1103
                    
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.1103 382 8/14/2025
3.0.1102 2,678 8/11/2025
3.0.1101 1,558 8/11/2025
3.0.1100 400 8/11/2025
3.0.1099 110 8/11/2025
3.0.1098 12,598 8/6/2025
3.0.1097 3,014 8/5/2025
3.0.1096 14,380 7/9/2025
3.0.1095 23,032 6/28/2025
3.0.1094 1,248 6/28/2025
3.0.1093 1,795 6/27/2025
3.0.1092 2,276 6/27/2025
3.0.1091 24,375 6/10/2025
3.0.1090 17,329 5/27/2025
3.0.1089 895 5/27/2025
3.0.1088 966 5/27/2025
3.0.1087 2,290 5/27/2025
3.0.1086 13,855 5/23/2025
3.0.1085 1,260 5/23/2025
3.0.1084 1,218 5/23/2025
3.0.1083 1,239 5/23/2025
3.0.1082 260 5/22/2025
3.0.1081 9,471 5/18/2025
3.0.1079 1,426 5/18/2025
3.0.1078 1,376 5/18/2025
3.0.1077 4,145 5/14/2025
3.0.1076 9,207 5/8/2025
3.0.1075 295 5/8/2025
3.0.1074 601 5/8/2025
3.0.1073 1,099 5/7/2025
3.0.1072 12,986 5/5/2025
3.0.1071 869 5/5/2025
3.0.1070 1,560 5/5/2025
3.0.1069 730 5/5/2025
3.0.1068 244 5/5/2025
3.0.1067 159 5/5/2025
3.0.1066 18,148 4/9/2025
3.0.1065 285 4/9/2025
3.0.1064 1,077 4/8/2025
3.0.1063 2,212 4/8/2025
3.0.1062 3,022 4/8/2025
3.0.1061 208 4/8/2025
3.0.1060 184 4/8/2025
3.0.1059 207 4/8/2025
3.0.1058 174 4/8/2025
3.0.1057 880 4/8/2025
3.0.1056 304 4/8/2025
3.0.1055 6,415 4/8/2025
3.0.1054 672 4/8/2025
3.0.1053 3,299 4/7/2025
3.0.1052 725 4/7/2025
3.0.1051 183 4/7/2025
3.0.1050 611 4/7/2025
3.0.1049 186 4/7/2025
3.0.1048 6,792 4/7/2025
3.0.1047 189 4/7/2025
3.0.1046 9,354 4/7/2025
3.0.1045 179 4/7/2025
3.0.1044 1,396 4/7/2025
3.0.1043 184 4/7/2025
3.0.1042 1,641 4/7/2025
3.0.1041 954 4/6/2025
3.0.1040 309 4/6/2025
3.0.1039 184 4/6/2025
3.0.1038 1,082 4/6/2025
3.0.1037 182 4/6/2025
3.0.1036 420 4/6/2025
3.0.1035 1,203 4/6/2025
3.0.1034 163 4/6/2025
3.0.1033 2,070 4/6/2025
3.0.1032 127 4/6/2025
3.0.1031 167 4/6/2025
3.0.1030 133 4/6/2025
3.0.1029 1,625 4/5/2025
3.0.1028 192 4/5/2025
3.0.1027 1,170 4/5/2025
3.0.1026 1,229 4/5/2025
3.0.1025 1,071 4/5/2025
3.0.1024 654 4/5/2025
3.0.1023 562 4/5/2025
3.0.1022 130 4/5/2025
3.0.1021 1,293 4/4/2025
3.0.1020 6,972 4/4/2025
3.0.1019 23,344 4/4/2025
3.0.1018 6,654 4/1/2025
3.0.1017 2,631 4/1/2025
3.0.1016 183 4/1/2025
3.0.1015 5,411 4/1/2025
3.0.1014 2,354 3/31/2025
3.0.1013 382 3/31/2025
3.0.1012 3,911 3/31/2025
3.0.1011 6,736 3/29/2025
3.0.1010 1,074 3/29/2025
3.0.1009 1,412 3/29/2025
3.0.1008 119 3/29/2025
3.0.1007 4,319 3/27/2025
3.0.1006 3,842 3/25/2025
3.0.1005 612 3/25/2025
3.0.1004 3,103 3/25/2025
3.0.1003 6,066 3/21/2025
3.0.1002 2,553 3/21/2025
3.0.1001 7,294 3/18/2025
3.0.1000 3,388 3/18/2025
3.0.999 6,331 3/15/2025
3.0.998 1,791 3/15/2025
3.0.997 93 3/15/2025
3.0.996 6,044 3/12/2025
3.0.995 2,163 3/12/2025
3.0.994 184 3/12/2025
3.0.993 410 3/12/2025
3.0.992 174 3/12/2025
3.0.991 2,703 3/11/2025
3.0.990 177 3/11/2025
3.0.989 1,284 3/11/2025
3.0.988 188 3/11/2025
3.0.987 2,569 3/11/2025
3.0.986 187 3/11/2025
3.0.985 2,652 3/11/2025
3.0.984 171 3/11/2025
3.0.983 1,630 3/11/2025
3.0.982 177 3/11/2025
3.0.981 8,865 3/7/2025
3.0.980 2,602 3/7/2025
3.0.979 6,158 3/2/2025
3.0.978 1,046 3/2/2025
3.0.977 655 3/2/2025
3.0.976 123 3/2/2025
3.0.975 4,327 3/2/2025
3.0.974 120 3/2/2025
3.0.973 3,180 3/1/2025
3.0.972 111 3/1/2025
3.0.971 4,274 3/1/2025
3.0.970 135 3/1/2025
3.0.969 111 3/1/2025
3.0.968 416 3/1/2025
3.0.967 114 3/1/2025
3.0.966 5,796 3/1/2025
3.0.965 4,765 2/26/2025
3.0.964 831 2/26/2025
3.0.963 2,324 2/25/2025
3.0.962 116 2/25/2025
3.0.961 855 2/25/2025
3.0.960 107 2/25/2025
3.0.959 141 2/25/2025
3.0.958 1,833 2/25/2025
3.0.957 4,831 2/24/2025
3.0.956 4,474 2/23/2025
3.0.955 1,090 2/22/2025
3.0.954 113 2/22/2025
3.0.953 7,547 2/22/2025
3.0.952 2,202 2/22/2025
3.0.951 1,059 2/22/2025
3.0.950 774 2/22/2025
3.0.949 150 2/22/2025
3.0.948 125 2/22/2025
3.0.947 119 2/22/2025
3.0.946 4,623 2/21/2025
3.0.945 115 2/21/2025
3.0.944 5,490 2/21/2025
3.0.943 4,545 2/19/2025
3.0.942 1,618 2/19/2025
3.0.941 730 2/19/2025
3.0.940 124 2/19/2025
3.0.939 411 2/18/2025
3.0.938 123 2/18/2025
3.0.937 5,448 2/18/2025
3.0.936 117 2/18/2025
3.0.935 2,811 2/18/2025
3.0.934 6,795 2/16/2025
3.0.933 1,533 2/14/2025
3.0.932 818 2/14/2025
3.0.931 719 2/13/2025
3.0.930 2,385 2/13/2025
3.0.929 292 2/13/2025
3.0.928 3,683 2/13/2025
3.0.927 3,851 2/12/2025
3.0.926 1,459 2/12/2025
3.0.925 158 2/12/2025
3.0.924 123 2/12/2025
3.0.923 2,007 2/12/2025
3.0.922 360 2/12/2025
3.0.921 134 2/12/2025
3.0.920 195 2/12/2025
3.0.919 201 2/12/2025
3.0.918 123 2/12/2025
3.0.917 176 2/11/2025
3.0.916 3,388 2/11/2025
3.0.915 3,679 2/11/2025
3.0.914 2,196 2/11/2025
3.0.913 133 2/11/2025
3.0.912 404 2/11/2025
3.0.911 1,733 2/10/2025
3.0.910 136 2/10/2025
3.0.909 793 2/10/2025
3.0.908 131 2/10/2025
3.0.907 6,316 2/10/2025
3.0.906 129 2/10/2025
3.0.905 1,173 2/9/2025
3.0.904 5,598 2/9/2025
3.0.903 122 2/9/2025
3.0.902 7,111 2/8/2025
3.0.901 129 2/8/2025
3.0.900 1,694 2/7/2025
3.0.899 119 2/7/2025
3.0.898 1,591 2/7/2025
3.0.897 124 2/7/2025
3.0.896 656 2/7/2025
3.0.895 431 2/7/2025
3.0.894 133 2/7/2025
3.0.893 344 2/7/2025
3.0.892 118 2/7/2025
3.0.891 1,044 2/7/2025
3.0.890 115 2/7/2025
3.0.889 131 2/7/2025
3.0.888 10,575 2/7/2025
3.0.887 6,174 2/5/2025
3.0.886 611 2/5/2025
3.0.885 897 2/5/2025
3.0.884 297 2/5/2025
3.0.883 992 2/5/2025
3.0.882 663 2/5/2025
3.0.881 2,919 2/5/2025
3.0.880 120 2/5/2025
3.0.879 10,747 1/28/2025
3.0.878 647 1/28/2025
3.0.877 1,743 1/28/2025
3.0.876 235 1/28/2025
3.0.875 3,658 1/28/2025
3.0.874 634 1/27/2025
3.0.873 101 1/27/2025
3.0.872 197 1/27/2025
3.0.871 276 1/27/2025
3.0.870 108 1/27/2025
3.0.869 4,710 1/27/2025
3.0.868 4,376 1/26/2025
3.0.867 939 1/26/2025
3.0.866 189 1/26/2025
3.0.865 1,018 1/26/2025
3.0.864 1,323 1/25/2025
3.0.863 115 1/25/2025
3.0.862 5,525 1/25/2025
3.0.861 964 1/25/2025
3.0.860 306 1/25/2025
3.0.859 119 1/25/2025
3.0.858 1,804 1/25/2025
3.0.857 1,267 1/25/2025
3.0.856 6,391 1/24/2025
3.0.855 1,480 1/24/2025
3.0.854 103 1/24/2025
3.0.853 1,928 1/24/2025
3.0.852 330 1/24/2025
3.0.851 221 1/24/2025
3.0.850 3,016 1/24/2025
3.0.849 112 1/24/2025
3.0.848 490 1/23/2025
3.0.847 116 1/23/2025
3.0.846 577 1/23/2025
3.0.845 108 1/23/2025
3.0.844 7,568 1/22/2025
3.0.843 976 1/21/2025
3.0.842 957 1/21/2025
3.0.841 573 1/21/2025
3.0.840 111 1/21/2025
3.0.839 597 1/21/2025
3.0.838 744 1/21/2025
3.0.837 5,229 1/21/2025
3.0.836 539 1/21/2025
3.0.835 1,001 1/21/2025
3.0.834 121 1/21/2025
3.0.833 798 1/21/2025
3.0.832 115 1/21/2025
3.0.831 2,092 1/21/2025
3.0.830 105 1/21/2025
3.0.829 394 1/20/2025
3.0.828 2,697 1/20/2025
3.0.827 247 1/20/2025
3.0.826 1,974 1/20/2025
3.0.825 115 1/20/2025
3.0.824 1,056 1/20/2025
3.0.823 117 1/20/2025
3.0.822 129 1/20/2025
3.0.821 115 1/20/2025
3.0.820 362 1/20/2025
3.0.819 122 1/20/2025
3.0.818 118 1/20/2025
3.0.817 5,400 1/19/2025
3.0.816 119 1/19/2025
3.0.815 4,995 1/19/2025
3.0.814 1,560 1/19/2025
3.0.813 129 1/19/2025
3.0.812 383 1/19/2025
3.0.811 111 1/19/2025
3.0.810 1,820 1/19/2025
3.0.809 108 1/19/2025
3.0.808 3,110 1/18/2025
3.0.807 115 1/18/2025
3.0.806 6,892 1/17/2025
3.0.805 122 1/17/2025
3.0.804 594 1/17/2025
3.0.803 913 1/17/2025
3.0.802 4,006 1/16/2025
3.0.801 1,405 1/16/2025
3.0.800 2,014 1/16/2025
3.0.799 541 1/16/2025
3.0.798 1,172 1/16/2025
3.0.797 1,000 1/16/2025
3.0.796 104 1/16/2025
3.0.795 4,394 1/15/2025
3.0.794 107 1/15/2025
3.0.793 2,710 1/15/2025
3.0.792 108 1/15/2025
3.0.791 154 1/15/2025
3.0.790 3,190 1/15/2025
3.0.789 101 1/15/2025
3.0.788 2,682 1/15/2025
3.0.787 87 1/15/2025
3.0.786 447 1/15/2025
3.0.785 83 1/15/2025
3.0.784 1,558 1/15/2025
3.0.783 84 1/15/2025
3.0.782 228 1/14/2025
3.0.781 98 1/14/2025
3.0.780 103 1/14/2025
3.0.779 2,961 1/14/2025
3.0.778 531 1/14/2025
3.0.777 101 1/14/2025
3.0.776 1,193 1/14/2025
3.0.775 98 1/14/2025
3.0.774 4,980 1/13/2025
3.0.773 1,551 1/13/2025
3.0.772 1,312 1/13/2025
3.0.771 105 1/13/2025
3.0.770 4,850 1/11/2025
3.0.769 1,960 1/11/2025
3.0.768 133 1/11/2025
3.0.767 2,077 1/11/2025
3.0.766 117 1/11/2025
3.0.765 1,675 1/10/2025
3.0.764 1,820 1/10/2025
3.0.763 116 1/10/2025
3.0.762 773 1/10/2025
3.0.761 122 1/10/2025
3.0.760 112 1/10/2025
3.0.759 6,266 1/3/2025
3.0.758 477 1/3/2025
3.0.757 995 1/3/2025
3.0.756 146 1/3/2025
3.0.755 1,432 1/3/2025
3.0.754 121 1/3/2025
3.0.753 1,070 1/3/2025
3.0.752 1,036 1/2/2025
3.0.751 122 1/2/2025
3.0.750 1,716 1/2/2025
3.0.749 129 1/2/2025
3.0.748 2,841 1/2/2025
3.0.747 119 1/2/2025
3.0.746 128 1/2/2025
3.0.745 4,664 1/1/2025
3.0.744 1,016 1/1/2025
3.0.743 290 1/1/2025
3.0.742 136 1/1/2025
3.0.741 1,482 1/1/2025
3.0.740 127 1/1/2025
3.0.739 130 1/1/2025
3.0.738 135 1/1/2025
3.0.737 332 12/31/2024
3.0.736 137 12/31/2024
3.0.735 139 12/31/2024
3.0.734 630 12/31/2024
3.0.733 146 12/31/2024
3.0.732 4,570 12/31/2024
3.0.731 136 12/31/2024
3.0.730 4,375 12/31/2024
3.0.729 113 12/31/2024
3.0.728 2,585 12/31/2024
3.0.727 346 12/31/2024
3.0.726 125 12/31/2024
3.0.725 1,330 12/31/2024
3.0.724 121 12/31/2024
3.0.723 8,876 12/28/2024
3.0.722 1,137 12/28/2024
3.0.721 1,244 12/27/2024
3.0.720 134 12/27/2024
3.0.719 2,699 12/27/2024
3.0.718 4,904 12/24/2024
3.0.717 1,265 12/24/2024
3.0.716 951 12/24/2024
3.0.715 817 12/24/2024
3.0.714 1,389 12/24/2024
3.0.713 116 12/24/2024
3.0.712 2,274 12/24/2024
3.0.711 657 12/24/2024
3.0.710 116 12/24/2024
3.0.709 473 12/24/2024
3.0.708 985 12/24/2024
3.0.707 275 12/24/2024
3.0.706 144 12/24/2024
3.0.705 1,064 12/24/2024
3.0.704 122 12/24/2024
3.0.703 1,808 12/23/2024
3.0.702 2,763 12/23/2024
3.0.701 126 12/23/2024
3.0.700 690 12/23/2024
3.0.699 121 12/23/2024
3.0.698 1,852 12/23/2024
3.0.697 120 12/23/2024
3.0.696 1,462 12/23/2024
3.0.695 130 12/23/2024
3.0.694 458 12/22/2024
3.0.693 1,409 12/22/2024
3.0.692 4,009 12/22/2024
3.0.691 128 12/22/2024
3.0.690 1,567 12/22/2024
3.0.689 173 12/22/2024
3.0.688 487 12/22/2024
3.0.687 116 12/22/2024
3.0.686 280 12/22/2024
3.0.685 124 12/22/2024
3.0.684 6,781 12/22/2024
3.0.683 116 12/22/2024
3.0.682 1,081 12/21/2024
3.0.681 286 12/21/2024
3.0.680 121 12/21/2024
3.0.679 510 12/21/2024
3.0.678 793 12/21/2024
3.0.677 118 12/21/2024
3.0.676 3,799 12/21/2024
3.0.675 405 12/21/2024
3.0.674 120 12/21/2024
3.0.673 2,548 12/21/2024
3.0.672 691 12/21/2024
3.0.671 128 12/21/2024
3.0.670 1,595 12/20/2024
3.0.669 131 12/20/2024
3.0.668 125 12/20/2024
3.0.667 3,705 12/20/2024
3.0.666 1,150 12/20/2024
3.0.665 238 12/20/2024
3.0.664 3,470 12/19/2024
3.0.663 436 12/19/2024
3.0.662 2,038 12/18/2024
3.0.661 121 12/18/2024
3.0.660 6,592 12/17/2024
3.0.659 233 12/17/2024
3.0.658 705 12/16/2024
3.0.657 128 12/16/2024
3.0.656 161 12/16/2024
3.0.655 115 12/16/2024
3.0.654 6,500 12/10/2024
3.0.653 1,012 12/10/2024
3.0.652 398 12/9/2024
3.0.651 121 12/9/2024
3.0.650 2,685 12/9/2024
3.0.649 1,388 12/9/2024
3.0.648 118 12/9/2024
3.0.647 3,644 12/9/2024
3.0.646 2,757 12/6/2024
3.0.645 441 12/6/2024
3.0.644 123 12/6/2024
3.0.643 701 12/6/2024
3.0.641 3,897 12/6/2024
3.0.640 2,463 12/6/2024
3.0.639 5,290 12/6/2024
3.0.637 390 12/6/2024
3.0.636 2,543 12/5/2024
3.0.635 3,580 12/5/2024
3.0.634 3,186 12/5/2024
3.0.633 121 12/5/2024
3.0.632 1,761 12/5/2024
3.0.631 1,047 12/5/2024
3.0.630 129 12/5/2024
3.0.629 398 12/5/2024
3.0.628 120 12/5/2024
3.0.627 161 12/5/2024
3.0.626 121 12/5/2024
3.0.625 3,377 12/4/2024
3.0.624 119 12/4/2024
3.0.623 137 12/4/2024
3.0.622 134 12/4/2024
3.0.621 1,732 12/4/2024
3.0.620 319 12/4/2024
3.0.619 426 12/4/2024
3.0.618 3,392 12/3/2024
3.0.617 129 12/3/2024
3.0.616 1,139 12/3/2024
3.0.615 458 12/3/2024
3.0.614 136 12/3/2024
3.0.613 137 12/3/2024
3.0.612 4,050 12/3/2024
3.0.611 119 12/3/2024
3.0.610 3,308 12/3/2024
3.0.609 115 12/3/2024
3.0.608 3,090 12/2/2024
3.0.607 2,675 12/2/2024
3.0.606 1,638 12/2/2024
3.0.605 297 12/2/2024
3.0.604 128 12/2/2024
3.0.603 417 12/2/2024
3.0.602 3,472 12/1/2024
3.0.601 125 12/1/2024
3.0.600 1,907 12/1/2024
3.0.599 219 12/1/2024
3.0.598 3,474 12/1/2024
3.0.597 129 12/1/2024
3.0.596 3,577 11/29/2024
3.0.595 1,064 11/29/2024
3.0.594 5,916 11/21/2024
3.0.593 318 11/21/2024
3.0.592 4,542 11/20/2024
3.0.591 363 11/20/2024
3.0.590 133 11/20/2024
3.0.589 126 11/20/2024
3.0.588 445 11/20/2024
3.0.587 177 11/20/2024
3.0.586 118 11/20/2024
3.0.585 2,047 11/20/2024
3.0.584 2,773 11/19/2024
3.0.583 125 11/19/2024
3.0.582 656 11/19/2024
3.0.581 115 11/19/2024
3.0.580 2,689 11/19/2024
3.0.579 111 11/19/2024
3.0.578 1,335 11/19/2024
3.0.577 132 11/19/2024
3.0.576 8,540 11/14/2024
3.0.575 162 11/14/2024
3.0.574 531 11/14/2024
3.0.573 2,393 11/14/2024
3.0.572 744 11/14/2024
3.0.571 137 11/14/2024
3.0.570 134 11/14/2024
3.0.569 4,167 11/14/2024
3.0.568 129 11/14/2024
3.0.567 127 11/14/2024
3.0.566 3,499 11/14/2024
3.0.565 128 11/14/2024
3.0.564 127 11/14/2024
3.0.563 127 11/14/2024
2.1.562 8,596 11/13/2024
2.1.561 1,420 11/13/2024
2.1.560 3,080 11/13/2024
2.1.559 139 11/13/2024
2.1.558 1,350 11/12/2024
2.1.557 414 11/12/2024
2.1.556 8,270 11/9/2024
2.1.555 384 11/9/2024
2.1.554 132 11/9/2024
2.1.553 1,755 11/9/2024
2.1.552 124 11/9/2024
2.1.551 986 11/8/2024
2.1.550 128 11/8/2024
2.1.549 132 11/8/2024
2.1.548 130 11/8/2024
2.1.547 445 11/8/2024
2.1.546 1,915 11/8/2024
2.1.545 122 11/8/2024
2.1.544 5,490 11/8/2024
2.1.543 117 11/8/2024
2.1.542 11,688 11/1/2024
2.1.541 485 11/1/2024
2.1.540 6,800 10/29/2024
2.1.539 765 10/29/2024
2.1.538 2,850 10/29/2024
2.1.537 647 10/29/2024
2.1.536 5,579 10/28/2024
2.1.535 1,871 10/28/2024
2.1.534 4,030 10/26/2024
2.1.533 719 10/26/2024
2.1.532 9,356 10/22/2024
2.1.531 274 10/22/2024
2.1.530 569 10/22/2024
2.1.529 902 10/22/2024
2.1.528 123 10/22/2024
2.1.527 514 10/22/2024
2.1.526 6,522 10/18/2024
2.1.525 1,104 10/17/2024
2.1.524 4,169 10/15/2024
2.1.523 1,616 10/15/2024
2.1.522 120 10/14/2024
2.1.521 5,151 10/12/2024
2.1.520 670 10/11/2024
2.1.519 119 10/11/2024
2.1.518 496 10/11/2024
2.1.517 2,962 10/11/2024
2.1.516 6,485 10/9/2024
2.1.515 399 10/9/2024
2.1.514 114 10/9/2024
2.1.513 1,995 10/8/2024
2.1.512 168 10/8/2024
2.1.511 2,245 10/8/2024
2.1.510 162 10/8/2024
2.1.509 114 10/8/2024
2.1.508 3,961 10/8/2024
2.1.507 6,252 10/3/2024
2.1.506 125 10/3/2024
2.1.505 1,122 10/3/2024
2.1.504 1,949 10/3/2024
2.1.503 1,438 10/3/2024
2.1.502 5,751 10/2/2024
2.1.501 122 10/2/2024
2.1.500 1,836 10/2/2024
2.1.499 1,028 10/2/2024
2.1.498 4,200 10/1/2024
2.1.497 724 10/1/2024
2.1.496 136 10/1/2024
2.1.495 2,646 10/1/2024
2.1.494 127 10/1/2024
2.1.493 167 10/1/2024
2.1.492 5,463 9/29/2024
2.1.491 1,403 9/29/2024
2.1.490 124 9/29/2024
2.1.489 1,244 9/29/2024
2.1.488 133 9/29/2024
2.1.487 2,533 9/29/2024
2.1.486 5,253 9/27/2024
2.1.485 792 9/27/2024
2.1.484 3,149 9/27/2024
2.1.483 137 9/27/2024
2.1.482 469 9/27/2024
2.1.481 2,174 9/27/2024
2.1.480 3,186 9/26/2024
2.1.479 3,497 9/26/2024
2.1.478 2,372 9/26/2024
2.1.477 2,184 9/26/2024
2.1.476 3,837 9/26/2024
2.1.475 124 9/26/2024
2.1.474 5,632 9/23/2024
2.1.473 1,317 9/23/2024
2.1.472 978 9/23/2024
2.1.471 1,169 9/23/2024
2.1.470 133 9/23/2024
2.1.469 1,566 9/23/2024
2.1.468 115 9/23/2024
2.1.467 4,687 9/23/2024
2.1.466 129 9/23/2024
2.1.465 744 9/23/2024
2.1.464 144 9/23/2024
2.1.463 116 9/23/2024
2.1.462 902 9/23/2024
2.1.461 9,367 9/18/2024
2.1.460 271 9/17/2024
2.1.459 1,224 9/17/2024
2.1.458 1,732 9/17/2024
2.1.457 133 9/17/2024
2.1.456 1,827 9/17/2024
2.1.455 490 9/17/2024
2.1.454 3,305 9/17/2024
2.1.453 580 9/17/2024
2.1.452 218 9/17/2024
2.1.451 2,677 9/17/2024
2.1.450 7,471 9/16/2024
2.1.449 736 9/16/2024
2.1.448 5,078 9/12/2024
2.1.447 2,938 9/12/2024
2.1.446 1,342 9/11/2024
2.1.445 1,555 9/11/2024
2.1.443 3,740 9/11/2024
2.1.442 1,021 9/11/2024
2.1.441 983 9/11/2024
2.1.440 2,334 9/11/2024
2.1.439 8,106 9/10/2024
2.1.438 149 9/10/2024
2.1.437 1,172 9/10/2024
2.1.436 143 9/10/2024
2.1.434 2,944 9/10/2024
2.1.433 624 9/9/2024
2.1.432 2,027 9/9/2024
2.1.430 1,571 9/9/2024
2.1.428 159 9/9/2024
2.1.427 490 9/9/2024
2.1.426 13,272 9/7/2024
2.1.425 163 9/7/2024
2.1.424 5,034 9/6/2024
2.1.423 392 9/6/2024
2.1.422 2,233 9/6/2024
2.1.421 145 9/5/2024
2.1.420 153 9/5/2024
2.1.419 2,412 9/5/2024
2.1.418 1,176 9/5/2024
2.1.417 147 9/5/2024
2.1.416 1,169 9/5/2024
2.1.415 461 9/5/2024
2.1.414 143 9/5/2024
2.1.413 5,070 9/5/2024
2.1.412 221 9/5/2024
2.1.411 150 9/5/2024
2.1.410 2,290 9/4/2024
2.1.409 8,037 9/3/2024
2.1.408 132 9/3/2024
2.1.407 132 9/3/2024
2.1.406 4,038 9/3/2024
2.1.405 172 9/3/2024
2.1.404 2,512 9/3/2024
2.1.403 5,312 8/29/2024
2.1.402 2,576 8/29/2024
2.1.401 2,904 8/26/2024
2.1.400 130 8/26/2024
2.1.399 4,962 8/21/2024
2.1.398 634 8/21/2024
2.1.397 165 8/21/2024
2.1.396 2,574 8/21/2024
2.1.395 172 8/20/2024
2.1.394 168 8/20/2024
2.1.393 505 8/20/2024
2.1.392 2,985 8/20/2024
2.1.391 445 8/20/2024
2.1.390 142 8/20/2024
2.1.389 2,673 8/20/2024
2.1.388 147 8/20/2024
2.1.387 1,231 8/20/2024
2.1.386 2,916 8/19/2024
2.1.385 4,802 8/15/2024
2.1.384 2,141 8/15/2024
2.1.383 4,834 8/14/2024
2.1.382 173 8/13/2024
2.1.381 5,718 8/7/2024
2.1.380 301 8/6/2024
2.1.379 2,715 8/6/2024
2.1.378 4,947 8/1/2024
2.1.377 358 8/1/2024
2.1.376 120 8/1/2024
2.1.374 1,164 8/1/2024
2.1.373 5,825 7/25/2024
2.1.372 116 7/25/2024
2.1.371 751 7/25/2024
2.1.370 331 7/25/2024
2.1.369 383 7/25/2024
2.1.368 202 7/25/2024
2.1.367 408 7/24/2024
2.1.366 177 7/24/2024
2.1.365 226 7/24/2024
2.1.364 337 7/24/2024
2.1.363 8,603 7/20/2024
2.1.362 1,479 7/20/2024
2.1.361 5,039 7/14/2024
2.1.360 1,574 7/14/2024
2.1.359 126 7/14/2024
2.1.358 1,519 7/14/2024
2.1.357 4,344 7/10/2024
2.1.355 817 7/10/2024
2.1.354 1,209 7/10/2024
2.1.353 142 7/10/2024
2.1.352 1,921 7/10/2024
2.1.351 151 7/10/2024
2.1.350 128 7/10/2024
2.1.349 195 7/10/2024
2.1.348 135 7/10/2024
2.1.347 2,071 7/10/2024
2.1.346 150 7/10/2024
2.1.345 831 7/10/2024
2.1.344 131 7/10/2024
2.1.343 236 7/9/2024
2.1.342 117 7/9/2024
2.1.339 1,998 7/9/2024
2.1.338 505 7/9/2024
2.1.337 4,038 7/9/2024
2.1.336 1,085 7/9/2024
2.1.335 143 7/9/2024
2.1.334 2,601 7/9/2024
2.1.333 132 7/9/2024
2.1.332 9,497 7/9/2024
2.1.331 134 7/9/2024
2.1.330 2,526 7/9/2024
2.1.329 122 7/9/2024
2.1.328 1,088 7/9/2024
2.1.327 728 7/8/2024
2.1.326 986 7/8/2024
2.1.325 145 7/8/2024
2.1.324 147 7/8/2024
2.1.323 4,874 7/8/2024
2.1.322 1,647 7/8/2024
2.1.321 143 7/8/2024
2.1.320 2,301 7/7/2024
2.1.319 147 7/7/2024
2.1.318 161 7/7/2024
2.1.317 144 7/7/2024
2.1.316 1,171 7/7/2024
2.1.315 2,191 7/7/2024
2.1.314 1,887 7/7/2024
2.1.313 243 7/7/2024
2.1.312 3,415 7/5/2024
2.1.311 3,896 7/3/2024
2.1.310 3,057 7/3/2024
2.1.309 413 7/3/2024
2.1.308 3,920 7/2/2024
2.1.307 1,879 6/30/2024
2.1.306 2,264 6/28/2024
2.1.305 5,410 6/22/2024
2.1.304 4,881 6/15/2024
2.1.303 4,109 6/14/2024
2.1.302 5,890 6/1/2024
2.1.301 1,614 6/1/2024
2.1.300 605 6/1/2024
2.1.299 5,831 5/31/2024
2.1.298 3,716 5/29/2024
2.1.297 3,042 5/28/2024
2.1.296 2,479 5/27/2024
2.1.295 4,840 5/26/2024
2.1.294 2,036 5/26/2024
2.1.293 501 5/26/2024
2.1.292 2,515 5/25/2024
2.1.291 1,398 5/25/2024
2.1.290 156 5/25/2024
2.1.289 152 5/25/2024
2.1.288 712 5/25/2024
2.1.287 147 5/25/2024
2.1.286 429 5/25/2024
2.1.285 153 5/25/2024
2.1.284 143 5/25/2024
2.1.283 7,421 5/23/2024
2.1.282 546 5/23/2024
2.1.281 298 5/22/2024
2.1.280 3,650 5/22/2024
2.1.279 143 5/22/2024
2.1.278 157 5/22/2024
2.1.277 153 5/22/2024
2.1.276 2,140 5/22/2024
2.1.275 3,433 5/18/2024
2.1.274 1,907 5/18/2024
2.1.273 1,825 5/17/2024
2.1.272 137 5/17/2024
2.1.271 2,730 5/16/2024
2.1.270 458 5/15/2024
2.1.269 2,755 5/15/2024
2.1.268 4,456 5/12/2024
2.1.267 2,758 5/3/2024
2.1.266 1,159 4/30/2024
2.1.265 1,781 4/29/2024
2.1.264 1,932 4/29/2024
2.1.263 2,663 4/28/2024
2.1.262 1,501 4/28/2024
2.1.261 1,117 4/28/2024
2.1.260 1,761 4/28/2024
2.1.259 929 4/28/2024
2.1.258 137 4/28/2024
2.1.257 4,159 4/27/2024
2.1.256 154 4/27/2024
2.1.255 4,384 4/19/2024
2.1.254 4,090 4/18/2024
2.1.253 3,441 4/12/2024
2.1.252 1,167 4/12/2024
2.1.251 746 4/12/2024
2.1.250 883 4/12/2024
2.1.249 228 4/12/2024
2.1.248 130 4/12/2024
2.1.247 1,006 4/12/2024
2.1.246 329 4/12/2024
2.1.245 1,668 4/11/2024
2.1.244 3,740 4/10/2024
2.1.243 1,163 4/9/2024
2.1.242 3,178 4/2/2024
2.1.241 927 4/1/2024
2.1.240 2,102 3/29/2024
2.1.239 1,858 3/25/2024
2.1.238 318 3/25/2024
2.1.237 3,326 3/20/2024
2.1.236 2,154 3/19/2024
2.1.235 540 3/19/2024
2.1.234 2,360 3/18/2024
2.1.233 1,421 3/18/2024
2.1.232 1,397 3/15/2024
2.1.231 2,362 3/13/2024
2.1.230 1,120 3/13/2024
2.1.229 680 3/13/2024
2.1.228 786 3/13/2024
2.1.227 161 3/13/2024
2.1.226 556 3/13/2024
2.1.225 162 3/13/2024
2.1.224 166 3/13/2024
2.1.223 1,675 3/12/2024
2.1.222 2,844 3/11/2024
2.1.221 2,493 3/11/2024
2.1.220 1,647 3/10/2024
2.1.219 1,904 3/8/2024
2.1.218 1,080 3/8/2024
2.1.217 1,578 3/8/2024
2.1.216 2,093 3/6/2024
2.1.215 2,015 3/4/2024
2.1.214 1,427 3/4/2024
2.1.213 2,572 3/2/2024
2.1.212 1,235 3/2/2024
2.1.211 431 3/2/2024
2.1.210 371 3/2/2024
2.1.209 497 3/2/2024
2.1.208 3,442 2/29/2024
2.1.207 658 2/29/2024
2.1.206 361 2/29/2024
2.1.205 3,330 2/26/2024
2.1.204 1,502 2/25/2024
2.1.203 2,612 2/23/2024
2.1.202 1,913 2/22/2024
2.1.201 979 2/22/2024
2.1.200 456 2/21/2024
2.1.199 1,203 2/21/2024
2.1.198 322 2/21/2024
2.1.197 785 2/21/2024
2.1.196 150 2/21/2024
2.1.195 1,267 2/21/2024
2.1.194 433 2/21/2024
2.1.193 159 2/21/2024
2.1.192 163 2/21/2024
2.1.191 612 2/21/2024
2.1.190 140 2/21/2024
2.1.189 2,653 2/20/2024
2.1.188 737 2/20/2024
2.1.187 664 2/20/2024
2.1.186 783 2/20/2024
2.1.185 2,133 2/19/2024
2.1.184 1,894 2/17/2024
2.1.183 919 2/16/2024
2.1.182 879 2/16/2024
2.1.181 1,369 2/16/2024
2.1.180 151 2/16/2024
2.1.179 659 2/16/2024
2.1.178 160 2/16/2024
2.1.177 153 2/16/2024
2.1.176 575 2/16/2024
2.1.175 140 2/16/2024
2.1.174 3,310 2/13/2024
2.1.173 1,394 2/13/2024
2.1.172 1,109 2/13/2024
2.1.171 475 2/13/2024
2.1.170 643 2/13/2024
2.1.169 1,954 2/12/2024
2.1.168 531 2/11/2024
2.1.167 1,547 2/11/2024
2.1.166 880 2/11/2024
2.1.165 2,812 2/10/2024
2.1.164 561 2/9/2024
2.1.163 160 2/9/2024
2.1.162 1,580 2/9/2024
2.1.161 1,686 2/9/2024
2.1.160 416 2/8/2024
2.1.159 1,246 2/8/2024
2.1.158 879 2/8/2024
2.1.157 1,490 2/8/2024
2.1.156 145 2/8/2024
2.1.155 1,887 2/7/2024
2.1.154 456 2/7/2024
2.1.153 624 2/7/2024
2.1.152 1,284 2/7/2024
2.1.151 397 2/6/2024
2.1.150 155 2/6/2024
2.1.149 149 2/6/2024
2.1.148 2,785 2/5/2024
2.1.147 1,547 2/4/2024
2.1.146 2,104 2/2/2024
2.1.145 1,928 1/31/2024
2.1.144 2,162 1/29/2024
2.1.143 1,386 1/29/2024
2.1.142 365 1/29/2024
2.1.141 1,508 1/28/2024
2.1.140 490 1/28/2024
2.1.139 329 1/28/2024
2.1.138 572 1/28/2024
2.1.137 1,944 1/28/2024
2.1.136 946 1/28/2024
2.1.135 312 1/27/2024
2.1.134 945 1/27/2024
2.1.133 1,180 1/27/2024
2.1.132 1,199 1/27/2024
2.1.131 170 1/27/2024
2.1.130 720 1/27/2024
2.1.129 1,079 1/26/2024
2.1.128 245 1/26/2024
2.1.127 892 1/26/2024
2.1.126 1,144 1/26/2024
2.1.125 1,652 1/26/2024
2.1.124 900 1/25/2024
2.1.123 1,131 1/25/2024
2.1.122 476 1/25/2024
2.1.121 940 1/25/2024
2.1.120 541 1/25/2024
2.1.119 2,597 1/19/2024
2.1.118 2,231 1/15/2024
2.1.117 522 1/15/2024
2.1.116 1,258 1/15/2024
2.1.115 149 1/15/2024
2.1.114 587 1/15/2024
2.1.113 1,388 1/15/2024
2.1.112 2,560 1/14/2024
2.1.111 1,635 1/13/2024
2.1.110 1,857 1/12/2024
2.1.109 2,060 1/11/2024
2.1.108 2,665 1/7/2024
2.1.107 2,107 1/5/2024
2.1.106 514 1/5/2024
2.1.105 163 1/5/2024
2.1.104 163 1/5/2024
2.1.103 1,509 1/5/2024
2.1.102 163 1/5/2024
2.1.101 2,806 1/1/2024
2.1.100 2,240 12/28/2023
2.1.99 760 12/28/2023
2.1.98 523 12/28/2023
2.1.97 156 12/28/2023
2.1.96 155 12/28/2023
2.1.95 732 12/27/2023
2.1.94 167 12/27/2023
2.1.93 498 12/27/2023
2.1.92 163 12/27/2023
2.1.91 167 12/27/2023
2.1.90 2,244 12/25/2023
2.1.89 374 12/25/2023
2.1.88 803 12/25/2023
2.1.87 170 12/25/2023
2.1.86 684 12/25/2023
2.1.85 160 12/25/2023
2.1.84 598 12/25/2023
2.1.83 160 12/25/2023
2.1.82 1,685 12/24/2023
2.1.81 1,102 12/23/2023
2.1.80 894 12/23/2023
2.1.79 330 12/23/2023
2.1.78 582 12/23/2023
2.1.77 158 12/23/2023
2.1.76 144 12/23/2023
2.1.75 1,108 12/23/2023
2.1.74 147 12/23/2023
2.1.73 1,432 12/19/2023
2.1.72 239 12/19/2023
2.1.71 3,114 12/11/2023
2.1.70 746 12/10/2023
2.1.69 146 12/10/2023
2.1.68 516 12/10/2023
2.1.67 1,441 12/10/2023
2.1.66 401 12/9/2023
2.1.65 396 12/9/2023
2.1.64 313 12/9/2023
2.1.63 168 12/9/2023
2.1.62 290 12/9/2023
2.1.61 225 12/9/2023
2.1.60 152 12/9/2023
2.1.59 1,090 12/9/2023
2.1.58 157 12/9/2023
2.1.57 1,551 12/6/2023
2.1.56 422 12/6/2023
2.1.55 263 12/6/2023
2.1.54 292 12/6/2023
2.1.53 946 12/5/2023
2.1.52 396 12/5/2023
2.1.51 356 12/5/2023
2.1.50 394 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 151 12/4/2023
2.1.44 354 12/4/2023
2.1.43 163 12/4/2023
2.1.42 1,035 12/4/2023
2.1.41 125 12/4/2023
2.1.40 1,184 11/27/2023
2.1.39 543 11/26/2023
2.1.38 244 11/26/2023
2.1.37 647 11/23/2023
2.1.36 706 11/23/2023
2.1.35 662 11/23/2023
2.1.34 150 11/23/2023
2.1.33 424 11/23/2023
2.1.32 154 11/23/2023
2.1.31 1,096 11/20/2023
2.1.30 1,078 11/20/2023
2.1.29 824 11/19/2023
2.1.28 280 11/19/2023
2.1.27 471 11/19/2023
2.1.26 520 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,002 11/18/2023
2.1.21 392 11/18/2023
2.1.20 551 11/18/2023
2.1.19 153 11/18/2023
2.1.18 322 11/18/2023
2.1.17 146 11/18/2023
2.1.16 625 11/17/2023
2.1.15 540 11/17/2023
2.1.14 146 11/17/2023
2.1.13 440 11/17/2023
2.1.12 321 11/17/2023
2.1.11 510 11/17/2023
2.1.10 145 11/17/2023
2.1.9 526 11/17/2023
2.1.8 153 11/17/2023
2.1.7 168 11/17/2023
2.1.6 357 11/17/2023
2.1.5 397 11/16/2023
2.0.101 2,092 11/15/2023
2.0.100 141 11/15/2023
2.0.99 151 11/15/2023
2.0.4 145 11/16/2023
2.0.3 154 11/16/2023
2.0.2 151 11/16/2023
2.0.1 145 11/16/2023
1.0.98 631 11/14/2023
1.0.97 764 11/13/2023
1.0.96 136 11/13/2023
1.0.95 589 11/10/2023
1.0.94 141 11/10/2023
1.0.93 958 11/9/2023
1.0.92 145 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 155 11/6/2023
1.0.87 616 11/3/2023
1.0.86 161 11/3/2023
1.0.85 905 11/2/2023
1.0.84 141 11/2/2023
1.0.83 621 11/1/2023
1.0.82 1,487 10/26/2023
1.0.81 1,326 10/19/2023
1.0.80 168 10/19/2023
1.0.79 810 10/18/2023
1.0.78 185 10/18/2023
1.0.77 757 10/17/2023
1.0.76 171 10/17/2023
1.0.75 685 10/16/2023
1.0.74 176 10/16/2023
1.0.73 722 10/13/2023
1.0.72 361 10/12/2023
1.0.71 1,765 9/20/2023
1.0.70 706 9/19/2023
1.0.69 703 9/18/2023
1.0.68 168 9/18/2023
1.0.67 915 9/14/2023
1.0.66 1,526 8/31/2023
1.0.65 175 8/31/2023
1.0.64 838 8/30/2023
1.0.63 186 8/30/2023
1.0.62 203 8/30/2023
1.0.61 871 8/28/2023
1.0.60 722 8/25/2023
1.0.59 176 8/25/2023
1.0.58 526 8/24/2023
1.0.57 1,486 8/21/2023
1.0.56 856 8/18/2023
1.0.55 776 8/17/2023
1.0.54 186 8/17/2023
1.0.53 1,925 8/10/2023
1.0.52 595 8/9/2023
1.0.51 706 8/8/2023
1.0.50 689 8/7/2023
1.0.49 210 8/7/2023
1.0.48 2,505 7/13/2023
1.0.47 923 7/11/2023
1.0.46 754 7/10/2023
1.0.45 725 7/7/2023
1.0.44 207 7/7/2023
1.0.43 2,142 6/30/2023
1.0.42 1,099 6/29/2023
1.0.41 630 6/28/2023
1.0.40 1,578 6/26/2023
1.0.39 826 6/23/2023
1.0.38 1,119 6/21/2023
1.0.37 1,482 6/15/2023
1.0.36 517 6/14/2023
1.0.35 1,838 6/9/2023
1.0.34 864 6/8/2023
1.0.33 1,657 6/7/2023
1.0.32 207 6/7/2023
1.0.31 1,255 6/6/2023
1.0.30 1,213 6/5/2023
1.0.29 1,397 6/2/2023
1.0.28 193 6/2/2023
1.0.27 1,283 6/1/2023
1.0.26 637 5/31/2023
1.0.25 522 5/31/2023
1.0.24 205 5/31/2023
1.0.23 1,503 5/30/2023
1.0.22 1,565 5/26/2023
1.0.21 726 5/25/2023
1.0.20 188 5/25/2023
1.0.19 872 5/24/2023
1.0.18 199 5/24/2023
1.0.17 492 5/23/2023
1.0.13 1,505 5/22/2023
1.0.12 1,229 5/18/2023
1.0.11 634 5/17/2023
1.0.10 1,590 5/1/2023
1.0.9 1,062 4/25/2023
1.0.8 523 4/24/2023
1.0.7 1,040 4/21/2023
1.0.6 1,994 4/13/2023
1.0.5 639 4/12/2023
1.0.4 1,061 4/8/2023
1.0.3 232 4/8/2023
1.0.2 635 4/8/2023
1.0.1 236 4/8/2023