Soenneker.Utils.SingletonDictionary 3.0.1107

Prefix Reserved
dotnet add package Soenneker.Utils.SingletonDictionary --version 3.0.1107
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.1107
                    
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.1107" />
                    
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.1107" />
                    
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.1107
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.1107"
                    
#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.1107
                    
#: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.1107
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1107
                    
Install as a Cake Tool

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

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

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


Features

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

Installation

dotnet add package Soenneker.Utils.SingletonDictionary

✨ Example Usage

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

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

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

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

            return client;
        });
    }

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

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

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

🔍 Internals

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

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

Example constructor overloads include:

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

You can also initialize manually:

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

🛡️ Thread Safety

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

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

NuGet packages (9)

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

Package Downloads
Soenneker.Utils.HttpClientCache

Providing thread-safe singleton HttpClients

Soenneker.Blazor.Utils.ModuleImport

A Blazor utility library assisting with asynchronous module loading

Soenneker.ServiceBus.Sender

A utility library that holds Azure Service senders

Soenneker.Google.Credentials

An async thread-safe singleton for Google OAuth credentials

Soenneker.Utils.RateLimiting.Factory

An async thread-safe singleton dictionary for Soenneker.Utils.RateLimiting.Executors, designed to manage the rate at which tasks are executed.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.1107 26,298 9/9/2025
3.0.1106 20,391 9/3/2025
3.0.1105 336 9/3/2025
3.0.1104 2,027 9/3/2025
3.0.1103 26,730 8/14/2025
3.0.1102 6,679 8/11/2025
3.0.1101 2,721 8/11/2025
3.0.1100 713 8/11/2025
3.0.1099 148 8/11/2025
3.0.1098 20,252 8/6/2025
3.0.1097 4,372 8/5/2025
3.0.1096 25,007 7/9/2025
3.0.1095 27,664 6/28/2025
3.0.1094 1,535 6/28/2025
3.0.1093 2,135 6/27/2025
3.0.1092 2,792 6/27/2025
3.0.1091 29,377 6/10/2025
3.0.1090 20,519 5/27/2025
3.0.1089 1,092 5/27/2025
3.0.1088 1,158 5/27/2025
3.0.1087 2,762 5/27/2025
3.0.1086 16,947 5/23/2025
3.0.1085 1,504 5/23/2025
3.0.1084 1,528 5/23/2025
3.0.1083 1,501 5/23/2025
3.0.1082 310 5/22/2025
3.0.1081 11,765 5/18/2025
3.0.1079 1,804 5/18/2025
3.0.1078 1,738 5/18/2025
3.0.1077 5,043 5/14/2025
3.0.1076 11,114 5/8/2025
3.0.1075 353 5/8/2025
3.0.1074 726 5/8/2025
3.0.1073 1,293 5/7/2025
3.0.1072 15,481 5/5/2025
3.0.1071 1,036 5/5/2025
3.0.1070 1,818 5/5/2025
3.0.1069 885 5/5/2025
3.0.1068 275 5/5/2025
3.0.1067 188 5/5/2025
3.0.1066 21,650 4/9/2025
3.0.1065 329 4/9/2025
3.0.1064 1,302 4/8/2025
3.0.1063 2,693 4/8/2025
3.0.1062 3,671 4/8/2025
3.0.1061 238 4/8/2025
3.0.1060 212 4/8/2025
3.0.1059 235 4/8/2025
3.0.1058 194 4/8/2025
3.0.1057 1,090 4/8/2025
3.0.1056 351 4/8/2025
3.0.1055 7,950 4/8/2025
3.0.1054 821 4/8/2025
3.0.1053 4,062 4/7/2025
3.0.1052 874 4/7/2025
3.0.1051 202 4/7/2025
3.0.1050 735 4/7/2025
3.0.1049 204 4/7/2025
3.0.1048 8,321 4/7/2025
3.0.1047 203 4/7/2025
3.0.1046 11,577 4/7/2025
3.0.1045 207 4/7/2025
3.0.1044 1,706 4/7/2025
3.0.1043 205 4/7/2025
3.0.1042 1,990 4/7/2025
3.0.1041 1,197 4/6/2025
3.0.1040 344 4/6/2025
3.0.1039 210 4/6/2025
3.0.1038 1,439 4/6/2025
3.0.1037 209 4/6/2025
3.0.1036 465 4/6/2025
3.0.1035 1,462 4/6/2025
3.0.1034 174 4/6/2025
3.0.1033 2,584 4/6/2025
3.0.1032 152 4/6/2025
3.0.1031 186 4/6/2025
3.0.1030 157 4/6/2025
3.0.1029 1,974 4/5/2025
3.0.1028 210 4/5/2025
3.0.1027 1,487 4/5/2025
3.0.1026 1,398 4/5/2025
3.0.1025 1,314 4/5/2025
3.0.1024 762 4/5/2025
3.0.1023 644 4/5/2025
3.0.1022 152 4/5/2025
3.0.1021 1,648 4/4/2025
3.0.1020 8,253 4/4/2025
3.0.1019 28,698 4/4/2025
3.0.1018 8,264 4/1/2025
3.0.1017 3,205 4/1/2025
3.0.1016 208 4/1/2025
3.0.1015 6,728 4/1/2025
3.0.1014 2,934 3/31/2025
3.0.1013 447 3/31/2025
3.0.1012 4,721 3/31/2025
3.0.1011 8,425 3/29/2025
3.0.1010 1,334 3/29/2025
3.0.1009 1,770 3/29/2025
3.0.1008 142 3/29/2025
3.0.1007 5,365 3/27/2025
3.0.1006 4,663 3/25/2025
3.0.1005 661 3/25/2025
3.0.1004 3,736 3/25/2025
3.0.1003 7,591 3/21/2025
3.0.1002 3,205 3/21/2025
3.0.1001 8,675 3/18/2025
3.0.1000 4,235 3/18/2025
3.0.999 7,942 3/15/2025
3.0.998 2,252 3/15/2025
3.0.997 119 3/15/2025
3.0.996 7,593 3/12/2025
3.0.995 2,645 3/12/2025
3.0.994 209 3/12/2025
3.0.993 480 3/12/2025
3.0.992 198 3/12/2025
3.0.991 3,337 3/11/2025
3.0.990 210 3/11/2025
3.0.989 1,527 3/11/2025
3.0.988 209 3/11/2025
3.0.987 3,238 3/11/2025
3.0.986 214 3/11/2025
3.0.985 3,222 3/11/2025
3.0.984 197 3/11/2025
3.0.983 1,951 3/11/2025
3.0.982 195 3/11/2025
3.0.981 11,072 3/7/2025
3.0.980 3,221 3/7/2025
3.0.979 7,581 3/2/2025
3.0.978 1,276 3/2/2025
3.0.977 787 3/2/2025
3.0.976 140 3/2/2025
3.0.975 5,414 3/2/2025
3.0.974 146 3/2/2025
3.0.973 3,986 3/1/2025
3.0.972 129 3/1/2025
3.0.971 5,481 3/1/2025
3.0.970 158 3/1/2025
3.0.969 128 3/1/2025
3.0.968 528 3/1/2025
3.0.967 139 3/1/2025
3.0.966 7,245 3/1/2025
3.0.965 5,872 2/26/2025
3.0.964 1,029 2/26/2025
3.0.963 2,967 2/25/2025
3.0.962 142 2/25/2025
3.0.961 1,057 2/25/2025
3.0.960 124 2/25/2025
3.0.959 165 2/25/2025
3.0.958 2,207 2/25/2025
3.0.957 6,069 2/24/2025
3.0.956 5,656 2/23/2025
3.0.955 1,355 2/22/2025
3.0.954 130 2/22/2025
3.0.953 9,467 2/22/2025
3.0.952 2,743 2/22/2025
3.0.951 1,359 2/22/2025
3.0.950 977 2/22/2025
3.0.949 177 2/22/2025
3.0.948 145 2/22/2025
3.0.947 146 2/22/2025
3.0.946 5,878 2/21/2025
3.0.945 141 2/21/2025
3.0.944 6,774 2/21/2025
3.0.943 5,687 2/19/2025
3.0.942 1,996 2/19/2025
3.0.941 850 2/19/2025
3.0.940 146 2/19/2025
3.0.939 479 2/18/2025
3.0.938 145 2/18/2025
3.0.937 6,768 2/18/2025
3.0.936 139 2/18/2025
3.0.935 3,306 2/18/2025
3.0.934 8,374 2/16/2025
3.0.933 1,881 2/14/2025
3.0.932 1,001 2/14/2025
3.0.931 851 2/13/2025
3.0.930 3,024 2/13/2025
3.0.929 364 2/13/2025
3.0.928 4,593 2/13/2025
3.0.927 4,625 2/12/2025
3.0.926 1,810 2/12/2025
3.0.925 168 2/12/2025
3.0.924 146 2/12/2025
3.0.923 2,452 2/12/2025
3.0.922 411 2/12/2025
3.0.921 153 2/12/2025
3.0.920 221 2/12/2025
3.0.919 220 2/12/2025
3.0.918 145 2/12/2025
3.0.917 205 2/11/2025
3.0.916 4,207 2/11/2025
3.0.915 4,565 2/11/2025
3.0.914 2,782 2/11/2025
3.0.913 156 2/11/2025
3.0.912 489 2/11/2025
3.0.911 2,083 2/10/2025
3.0.910 163 2/10/2025
3.0.909 883 2/10/2025
3.0.908 161 2/10/2025
3.0.907 7,949 2/10/2025
3.0.906 155 2/10/2025
3.0.905 1,404 2/9/2025
3.0.904 7,048 2/9/2025
3.0.903 140 2/9/2025
3.0.902 9,188 2/8/2025
3.0.901 155 2/8/2025
3.0.900 2,143 2/7/2025
3.0.899 147 2/7/2025
3.0.898 1,920 2/7/2025
3.0.897 147 2/7/2025
3.0.896 784 2/7/2025
3.0.895 546 2/7/2025
3.0.894 157 2/7/2025
3.0.893 436 2/7/2025
3.0.892 145 2/7/2025
3.0.891 1,232 2/7/2025
3.0.890 139 2/7/2025
3.0.889 154 2/7/2025
3.0.888 13,172 2/7/2025
3.0.887 7,770 2/5/2025
3.0.886 759 2/5/2025
3.0.885 1,142 2/5/2025
3.0.884 343 2/5/2025
3.0.883 1,284 2/5/2025
3.0.882 832 2/5/2025
3.0.881 3,768 2/5/2025
3.0.880 136 2/5/2025
3.0.879 13,052 1/28/2025
3.0.878 842 1/28/2025
3.0.877 2,350 1/28/2025
3.0.876 282 1/28/2025
3.0.875 4,794 1/28/2025
3.0.874 809 1/27/2025
3.0.873 117 1/27/2025
3.0.872 240 1/27/2025
3.0.871 332 1/27/2025
3.0.870 132 1/27/2025
3.0.869 6,204 1/27/2025
3.0.868 5,568 1/26/2025
3.0.867 1,171 1/26/2025
3.0.866 228 1/26/2025
3.0.865 1,261 1/26/2025
3.0.864 1,636 1/25/2025
3.0.863 134 1/25/2025
3.0.862 7,155 1/25/2025
3.0.861 1,260 1/25/2025
3.0.860 387 1/25/2025
3.0.859 143 1/25/2025
3.0.858 2,311 1/25/2025
3.0.857 1,548 1/25/2025
3.0.856 8,169 1/24/2025
3.0.855 1,974 1/24/2025
3.0.854 122 1/24/2025
3.0.853 2,551 1/24/2025
3.0.852 417 1/24/2025
3.0.851 293 1/24/2025
3.0.850 3,877 1/24/2025
3.0.849 135 1/24/2025
3.0.848 627 1/23/2025
3.0.847 139 1/23/2025
3.0.846 744 1/23/2025
3.0.845 132 1/23/2025
3.0.844 9,703 1/22/2025
3.0.843 1,245 1/21/2025
3.0.842 1,209 1/21/2025
3.0.841 717 1/21/2025
3.0.840 128 1/21/2025
3.0.839 694 1/21/2025
3.0.838 891 1/21/2025
3.0.837 6,758 1/21/2025
3.0.836 715 1/21/2025
3.0.835 1,241 1/21/2025
3.0.834 141 1/21/2025
3.0.833 1,002 1/21/2025
3.0.832 133 1/21/2025
3.0.831 2,741 1/21/2025
3.0.830 125 1/21/2025
3.0.829 506 1/20/2025
3.0.828 3,500 1/20/2025
3.0.827 318 1/20/2025
3.0.826 2,538 1/20/2025
3.0.825 137 1/20/2025
3.0.824 1,329 1/20/2025
3.0.823 144 1/20/2025
3.0.822 148 1/20/2025
3.0.821 139 1/20/2025
3.0.820 459 1/20/2025
3.0.819 143 1/20/2025
3.0.818 138 1/20/2025
3.0.817 7,067 1/19/2025
3.0.816 142 1/19/2025
3.0.815 6,546 1/19/2025
3.0.814 1,996 1/19/2025
3.0.813 161 1/19/2025
3.0.812 478 1/19/2025
3.0.811 135 1/19/2025
3.0.810 2,395 1/19/2025
3.0.809 132 1/19/2025
3.0.808 3,934 1/18/2025
3.0.807 140 1/18/2025
3.0.806 8,748 1/17/2025
3.0.805 147 1/17/2025
3.0.804 781 1/17/2025
3.0.803 1,159 1/17/2025
3.0.802 5,185 1/16/2025
3.0.801 1,823 1/16/2025
3.0.800 2,645 1/16/2025
3.0.799 617 1/16/2025
3.0.798 1,541 1/16/2025
3.0.797 1,244 1/16/2025
3.0.796 128 1/16/2025
3.0.795 5,822 1/15/2025
3.0.794 131 1/15/2025
3.0.793 3,379 1/15/2025
3.0.792 129 1/15/2025
3.0.791 184 1/15/2025
3.0.790 4,244 1/15/2025
3.0.789 117 1/15/2025
3.0.788 3,574 1/15/2025
3.0.787 114 1/15/2025
3.0.786 619 1/15/2025
3.0.785 108 1/15/2025
3.0.784 1,995 1/15/2025
3.0.783 110 1/15/2025
3.0.782 297 1/14/2025
3.0.781 122 1/14/2025
3.0.780 125 1/14/2025
3.0.779 4,246 1/14/2025
3.0.778 727 1/14/2025
3.0.777 124 1/14/2025
3.0.776 1,356 1/14/2025
3.0.775 114 1/14/2025
3.0.774 6,770 1/13/2025
3.0.773 2,049 1/13/2025
3.0.772 1,723 1/13/2025
3.0.771 130 1/13/2025
3.0.770 6,551 1/11/2025
3.0.769 2,634 1/11/2025
3.0.768 155 1/11/2025
3.0.767 2,543 1/11/2025
3.0.766 141 1/11/2025
3.0.765 2,239 1/10/2025
3.0.764 2,435 1/10/2025
3.0.763 135 1/10/2025
3.0.762 994 1/10/2025
3.0.761 148 1/10/2025
3.0.760 136 1/10/2025
3.0.759 8,094 1/3/2025
3.0.758 574 1/3/2025
3.0.757 1,251 1/3/2025
3.0.756 171 1/3/2025
3.0.755 1,836 1/3/2025
3.0.754 145 1/3/2025
3.0.753 1,410 1/3/2025
3.0.752 1,276 1/2/2025
3.0.751 141 1/2/2025
3.0.750 2,249 1/2/2025
3.0.749 145 1/2/2025
3.0.748 3,742 1/2/2025
3.0.747 135 1/2/2025
3.0.746 153 1/2/2025
3.0.745 6,029 1/1/2025
3.0.744 1,299 1/1/2025
3.0.743 343 1/1/2025
3.0.742 162 1/1/2025
3.0.741 1,885 1/1/2025
3.0.740 147 1/1/2025
3.0.739 146 1/1/2025
3.0.738 157 1/1/2025
3.0.737 425 12/31/2024
3.0.736 158 12/31/2024
3.0.735 169 12/31/2024
3.0.734 760 12/31/2024
3.0.733 166 12/31/2024
3.0.732 5,878 12/31/2024
3.0.731 156 12/31/2024
3.0.730 5,737 12/31/2024
3.0.729 129 12/31/2024
3.0.728 3,311 12/31/2024
3.0.727 430 12/31/2024
3.0.726 146 12/31/2024
3.0.725 1,634 12/31/2024
3.0.724 143 12/31/2024
3.0.723 11,528 12/28/2024
3.0.722 1,504 12/28/2024
3.0.721 1,564 12/27/2024
3.0.720 158 12/27/2024
3.0.719 3,419 12/27/2024
3.0.718 6,481 12/24/2024
3.0.717 1,621 12/24/2024
3.0.716 1,171 12/24/2024
3.0.715 978 12/24/2024
3.0.714 1,744 12/24/2024
3.0.713 138 12/24/2024
3.0.712 2,811 12/24/2024
3.0.711 798 12/24/2024
3.0.710 139 12/24/2024
3.0.709 567 12/24/2024
3.0.708 1,230 12/24/2024
3.0.707 311 12/24/2024
3.0.706 167 12/24/2024
3.0.705 1,301 12/24/2024
3.0.704 148 12/24/2024
3.0.703 2,324 12/23/2024
3.0.702 3,672 12/23/2024
3.0.701 147 12/23/2024
3.0.700 864 12/23/2024
3.0.699 143 12/23/2024
3.0.698 2,503 12/23/2024
3.0.697 146 12/23/2024
3.0.696 1,900 12/23/2024
3.0.695 151 12/23/2024
3.0.694 575 12/22/2024
3.0.693 1,779 12/22/2024
3.0.692 5,143 12/22/2024
3.0.691 154 12/22/2024
3.0.690 2,038 12/22/2024
3.0.689 213 12/22/2024
3.0.688 591 12/22/2024
3.0.687 139 12/22/2024
3.0.686 344 12/22/2024
3.0.685 146 12/22/2024
3.0.684 8,626 12/22/2024
3.0.683 135 12/22/2024
3.0.682 1,401 12/21/2024
3.0.681 375 12/21/2024
3.0.680 142 12/21/2024
3.0.679 643 12/21/2024
3.0.678 1,006 12/21/2024
3.0.677 140 12/21/2024
3.0.676 5,050 12/21/2024
3.0.675 506 12/21/2024
3.0.674 143 12/21/2024
3.0.673 3,374 12/21/2024
3.0.672 873 12/21/2024
3.0.671 152 12/21/2024
3.0.670 1,995 12/20/2024
3.0.669 151 12/20/2024
3.0.668 147 12/20/2024
3.0.667 4,885 12/20/2024
3.0.666 1,410 12/20/2024
3.0.665 287 12/20/2024
3.0.664 4,495 12/19/2024
3.0.663 522 12/19/2024
3.0.662 2,661 12/18/2024
3.0.661 140 12/18/2024
3.0.660 7,839 12/17/2024
3.0.659 268 12/17/2024
3.0.658 853 12/16/2024
3.0.657 149 12/16/2024
3.0.656 194 12/16/2024
3.0.655 136 12/16/2024
3.0.654 8,198 12/10/2024
3.0.653 1,300 12/10/2024
3.0.652 503 12/9/2024
3.0.651 145 12/9/2024
3.0.650 3,471 12/9/2024
3.0.649 1,802 12/9/2024
3.0.648 142 12/9/2024
3.0.647 4,713 12/9/2024
3.0.646 3,577 12/6/2024
3.0.645 543 12/6/2024
3.0.644 147 12/6/2024
3.0.643 889 12/6/2024
3.0.641 4,999 12/6/2024
3.0.640 3,177 12/6/2024
3.0.639 6,892 12/6/2024
3.0.637 468 12/6/2024
3.0.636 3,283 12/5/2024
3.0.635 4,548 12/5/2024
3.0.634 3,912 12/5/2024
3.0.633 141 12/5/2024
3.0.632 2,437 12/5/2024
3.0.631 1,289 12/5/2024
3.0.630 150 12/5/2024
3.0.629 487 12/5/2024
3.0.628 143 12/5/2024
3.0.627 186 12/5/2024
3.0.626 142 12/5/2024
3.0.625 4,350 12/4/2024
3.0.624 145 12/4/2024
3.0.623 160 12/4/2024
3.0.622 161 12/4/2024
3.0.621 2,147 12/4/2024
3.0.620 391 12/4/2024
3.0.619 538 12/4/2024
3.0.618 4,383 12/3/2024
3.0.617 149 12/3/2024
3.0.616 1,457 12/3/2024
3.0.615 581 12/3/2024
3.0.614 159 12/3/2024
3.0.613 159 12/3/2024
3.0.612 4,600 12/3/2024
3.0.611 141 12/3/2024
3.0.610 4,270 12/3/2024
3.0.609 136 12/3/2024
3.0.608 3,933 12/2/2024
3.0.607 3,577 12/2/2024
3.0.606 2,138 12/2/2024
3.0.605 346 12/2/2024
3.0.604 149 12/2/2024
3.0.603 534 12/2/2024
3.0.602 4,376 12/1/2024
3.0.601 150 12/1/2024
3.0.600 2,465 12/1/2024
3.0.599 260 12/1/2024
3.0.598 4,471 12/1/2024
3.0.597 153 12/1/2024
3.0.596 4,578 11/29/2024
3.0.595 1,371 11/29/2024
3.0.594 7,256 11/21/2024
3.0.593 400 11/21/2024
3.0.592 5,813 11/20/2024
3.0.591 434 11/20/2024
3.0.590 155 11/20/2024
3.0.589 143 11/20/2024
3.0.588 560 11/20/2024
3.0.587 224 11/20/2024
3.0.586 140 11/20/2024
3.0.585 2,489 11/20/2024
3.0.584 3,395 11/19/2024
3.0.583 146 11/19/2024
3.0.582 765 11/19/2024
3.0.581 133 11/19/2024
3.0.580 3,243 11/19/2024
3.0.579 128 11/19/2024
3.0.578 1,616 11/19/2024
3.0.577 152 11/19/2024
3.0.576 10,910 11/14/2024
3.0.575 195 11/14/2024
3.0.574 650 11/14/2024
3.0.573 3,029 11/14/2024
3.0.572 911 11/14/2024
3.0.571 159 11/14/2024
3.0.570 155 11/14/2024
3.0.569 5,256 11/14/2024
3.0.568 151 11/14/2024
3.0.567 152 11/14/2024
3.0.566 4,578 11/14/2024
3.0.565 149 11/14/2024
3.0.564 151 11/14/2024
3.0.563 147 11/14/2024
2.1.562 10,556 11/13/2024
2.1.561 1,687 11/13/2024
2.1.560 3,863 11/13/2024
2.1.559 162 11/13/2024
2.1.558 1,711 11/12/2024
2.1.557 516 11/12/2024
2.1.556 10,212 11/9/2024
2.1.555 463 11/9/2024
2.1.554 159 11/9/2024
2.1.553 2,197 11/9/2024
2.1.552 146 11/9/2024
2.1.551 1,121 11/8/2024
2.1.550 149 11/8/2024
2.1.549 154 11/8/2024
2.1.548 152 11/8/2024
2.1.547 529 11/8/2024
2.1.546 2,404 11/8/2024
2.1.545 139 11/8/2024
2.1.544 6,897 11/8/2024
2.1.543 133 11/8/2024
2.1.542 14,828 11/1/2024
2.1.541 574 11/1/2024
2.1.540 8,598 10/29/2024
2.1.539 899 10/29/2024
2.1.538 3,532 10/29/2024
2.1.537 799 10/29/2024
2.1.536 7,004 10/28/2024
2.1.535 2,458 10/28/2024
2.1.534 4,923 10/26/2024
2.1.533 869 10/26/2024
2.1.532 11,005 10/22/2024
2.1.531 355 10/22/2024
2.1.530 647 10/22/2024
2.1.529 1,084 10/22/2024
2.1.528 146 10/22/2024
2.1.527 602 10/22/2024
2.1.526 8,324 10/18/2024
2.1.525 1,386 10/17/2024
2.1.524 5,291 10/15/2024
2.1.523 2,052 10/15/2024
2.1.522 146 10/14/2024
2.1.521 6,449 10/12/2024
2.1.520 786 10/11/2024
2.1.519 141 10/11/2024
2.1.518 597 10/11/2024
2.1.517 3,789 10/11/2024
2.1.516 8,219 10/9/2024
2.1.515 465 10/9/2024
2.1.514 132 10/9/2024
2.1.513 2,508 10/8/2024
2.1.512 198 10/8/2024
2.1.511 2,825 10/8/2024
2.1.510 178 10/8/2024
2.1.509 137 10/8/2024
2.1.508 5,072 10/8/2024
2.1.507 7,876 10/3/2024
2.1.506 147 10/3/2024
2.1.505 1,365 10/3/2024
2.1.504 2,551 10/3/2024
2.1.503 1,871 10/3/2024
2.1.502 7,428 10/2/2024
2.1.501 143 10/2/2024
2.1.500 2,373 10/2/2024
2.1.499 1,244 10/2/2024
2.1.498 5,430 10/1/2024
2.1.497 879 10/1/2024
2.1.496 156 10/1/2024
2.1.495 3,347 10/1/2024
2.1.494 149 10/1/2024
2.1.493 190 10/1/2024
2.1.492 7,018 9/29/2024
2.1.491 1,764 9/29/2024
2.1.490 147 9/29/2024
2.1.489 1,606 9/29/2024
2.1.488 158 9/29/2024
2.1.487 3,181 9/29/2024
2.1.486 6,673 9/27/2024
2.1.485 970 9/27/2024
2.1.484 3,996 9/27/2024
2.1.483 160 9/27/2024
2.1.482 547 9/27/2024
2.1.481 2,829 9/27/2024
2.1.480 4,081 9/26/2024
2.1.479 4,395 9/26/2024
2.1.478 2,995 9/26/2024
2.1.477 2,757 9/26/2024
2.1.476 4,808 9/26/2024
2.1.475 145 9/26/2024
2.1.474 7,146 9/23/2024
2.1.473 1,644 9/23/2024
2.1.472 1,213 9/23/2024
2.1.471 1,438 9/23/2024
2.1.470 157 9/23/2024
2.1.469 1,895 9/23/2024
2.1.468 131 9/23/2024
2.1.467 6,115 9/23/2024
2.1.466 152 9/23/2024
2.1.465 936 9/23/2024
2.1.464 167 9/23/2024
2.1.463 137 9/23/2024
2.1.462 1,123 9/23/2024
2.1.461 11,937 9/18/2024
2.1.460 325 9/17/2024
2.1.459 1,427 9/17/2024
2.1.458 2,128 9/17/2024
2.1.457 158 9/17/2024
2.1.456 2,239 9/17/2024
2.1.455 593 9/17/2024
2.1.454 4,126 9/17/2024
2.1.453 677 9/17/2024
2.1.452 261 9/17/2024
2.1.451 3,295 9/17/2024
2.1.450 9,591 9/16/2024
2.1.449 906 9/16/2024
2.1.448 6,282 9/12/2024
2.1.447 3,684 9/12/2024
2.1.446 1,676 9/11/2024
2.1.445 1,870 9/11/2024
2.1.443 4,596 9/11/2024
2.1.442 1,209 9/11/2024
2.1.441 1,177 9/11/2024
2.1.440 2,770 9/11/2024
2.1.439 10,034 9/10/2024
2.1.438 170 9/10/2024
2.1.437 1,385 9/10/2024
2.1.436 165 9/10/2024
2.1.434 3,604 9/10/2024
2.1.433 709 9/9/2024
2.1.432 2,335 9/9/2024
2.1.430 1,916 9/9/2024
2.1.428 175 9/9/2024
2.1.427 567 9/9/2024
2.1.426 16,358 9/7/2024
2.1.425 188 9/7/2024
2.1.424 6,269 9/6/2024
2.1.423 459 9/6/2024
2.1.422 2,782 9/6/2024
2.1.421 165 9/5/2024
2.1.420 174 9/5/2024
2.1.419 3,024 9/5/2024
2.1.418 1,386 9/5/2024
2.1.417 163 9/5/2024
2.1.416 1,388 9/5/2024
2.1.415 537 9/5/2024
2.1.414 160 9/5/2024
2.1.413 6,354 9/5/2024
2.1.412 242 9/5/2024
2.1.411 170 9/5/2024
2.1.410 2,783 9/4/2024
2.1.409 10,159 9/3/2024
2.1.408 151 9/3/2024
2.1.407 156 9/3/2024
2.1.406 5,059 9/3/2024
2.1.405 188 9/3/2024
2.1.404 3,139 9/3/2024
2.1.403 6,764 8/29/2024
2.1.402 3,263 8/29/2024
2.1.401 3,606 8/26/2024
2.1.400 146 8/26/2024
2.1.399 6,266 8/21/2024
2.1.398 737 8/21/2024
2.1.397 188 8/21/2024
2.1.396 3,272 8/21/2024
2.1.395 192 8/20/2024
2.1.394 190 8/20/2024
2.1.393 594 8/20/2024
2.1.392 3,820 8/20/2024
2.1.391 566 8/20/2024
2.1.390 165 8/20/2024
2.1.389 3,358 8/20/2024
2.1.388 170 8/20/2024
2.1.387 1,492 8/20/2024
2.1.386 3,750 8/19/2024
2.1.385 6,077 8/15/2024
2.1.384 2,662 8/15/2024
2.1.383 6,096 8/14/2024
2.1.382 191 8/13/2024
2.1.381 7,036 8/7/2024
2.1.380 373 8/6/2024
2.1.379 3,426 8/6/2024
2.1.378 6,378 8/1/2024
2.1.377 444 8/1/2024
2.1.376 145 8/1/2024
2.1.374 1,516 8/1/2024
2.1.373 7,574 7/25/2024
2.1.372 138 7/25/2024
2.1.371 947 7/25/2024
2.1.370 402 7/25/2024
2.1.369 447 7/25/2024
2.1.368 258 7/25/2024
2.1.367 490 7/24/2024
2.1.366 208 7/24/2024
2.1.365 284 7/24/2024
2.1.364 403 7/24/2024
2.1.363 10,913 7/20/2024
2.1.362 1,904 7/20/2024
2.1.361 6,464 7/14/2024
2.1.360 1,999 7/14/2024
2.1.359 153 7/14/2024
2.1.358 1,931 7/14/2024
2.1.357 5,528 7/10/2024
2.1.355 962 7/10/2024
2.1.354 1,471 7/10/2024
2.1.353 161 7/10/2024
2.1.352 2,325 7/10/2024
2.1.351 180 7/10/2024
2.1.350 149 7/10/2024
2.1.349 227 7/10/2024
2.1.348 156 7/10/2024
2.1.347 2,648 7/10/2024
2.1.346 173 7/10/2024
2.1.345 1,021 7/10/2024
2.1.344 152 7/10/2024
2.1.343 281 7/9/2024
2.1.342 137 7/9/2024
2.1.339 2,445 7/9/2024
2.1.338 581 7/9/2024
2.1.337 5,083 7/9/2024
2.1.336 1,333 7/9/2024
2.1.335 164 7/9/2024
2.1.334 3,371 7/9/2024
2.1.333 148 7/9/2024
2.1.332 10,979 7/9/2024
2.1.331 160 7/9/2024
2.1.330 3,197 7/9/2024
2.1.329 146 7/9/2024
2.1.328 1,340 7/9/2024
2.1.327 862 7/8/2024
2.1.326 1,229 7/8/2024
2.1.325 162 7/8/2024
2.1.324 171 7/8/2024
2.1.323 6,215 7/8/2024
2.1.322 2,061 7/8/2024
2.1.321 159 7/8/2024
2.1.320 2,953 7/7/2024
2.1.319 168 7/7/2024
2.1.318 183 7/7/2024
2.1.317 165 7/7/2024
2.1.316 1,482 7/7/2024
2.1.315 2,760 7/7/2024
2.1.314 2,383 7/7/2024
2.1.313 296 7/7/2024
2.1.312 4,357 7/5/2024
2.1.311 5,074 7/3/2024
2.1.310 3,851 7/3/2024
2.1.309 516 7/3/2024
2.1.308 5,146 7/2/2024
2.1.307 2,381 6/30/2024
2.1.306 2,865 6/28/2024
2.1.305 6,833 6/22/2024
2.1.304 6,253 6/15/2024
2.1.303 5,180 6/14/2024
2.1.302 7,482 6/1/2024
2.1.301 2,026 6/1/2024
2.1.300 763 6/1/2024
2.1.299 7,484 5/31/2024
2.1.298 4,741 5/29/2024
2.1.297 3,935 5/28/2024
2.1.296 3,138 5/27/2024
2.1.295 6,140 5/26/2024
2.1.294 2,607 5/26/2024
2.1.293 612 5/26/2024
2.1.292 3,250 5/25/2024
2.1.291 1,720 5/25/2024
2.1.290 177 5/25/2024
2.1.289 174 5/25/2024
2.1.288 905 5/25/2024
2.1.287 169 5/25/2024
2.1.286 507 5/25/2024
2.1.285 170 5/25/2024
2.1.284 166 5/25/2024
2.1.283 9,531 5/23/2024
2.1.282 697 5/23/2024
2.1.281 351 5/22/2024
2.1.280 4,632 5/22/2024
2.1.279 173 5/22/2024
2.1.278 181 5/22/2024
2.1.277 170 5/22/2024
2.1.276 2,787 5/22/2024
2.1.275 4,317 5/18/2024
2.1.274 2,387 5/18/2024
2.1.273 2,273 5/17/2024
2.1.272 165 5/17/2024
2.1.271 3,482 5/16/2024
2.1.270 568 5/15/2024
2.1.269 3,486 5/15/2024
2.1.268 5,727 5/12/2024
2.1.267 3,529 5/3/2024
2.1.266 1,487 4/30/2024
2.1.265 2,280 4/29/2024
2.1.264 2,379 4/29/2024
2.1.263 3,427 4/28/2024
2.1.262 1,895 4/28/2024
2.1.261 1,398 4/28/2024
2.1.260 2,233 4/28/2024
2.1.259 1,190 4/28/2024
2.1.258 158 4/28/2024
2.1.257 5,272 4/27/2024
2.1.256 178 4/27/2024
2.1.255 5,491 4/19/2024
2.1.254 5,158 4/18/2024
2.1.253 4,322 4/12/2024
2.1.252 1,439 4/12/2024
2.1.251 882 4/12/2024
2.1.250 1,085 4/12/2024
2.1.249 272 4/12/2024
2.1.248 153 4/12/2024
2.1.247 1,204 4/12/2024
2.1.246 394 4/12/2024
2.1.245 1,992 4/11/2024
2.1.244 4,710 4/10/2024
2.1.243 1,388 4/9/2024
2.1.242 3,927 4/2/2024
2.1.241 1,094 4/1/2024
2.1.240 2,592 3/29/2024
2.1.239 2,247 3/25/2024
2.1.238 383 3/25/2024
2.1.237 4,030 3/20/2024
2.1.236 2,616 3/19/2024
2.1.235 616 3/19/2024
2.1.234 2,961 3/18/2024
2.1.233 1,685 3/18/2024
2.1.232 1,629 3/15/2024
2.1.231 2,910 3/13/2024
2.1.230 1,342 3/13/2024
2.1.229 834 3/13/2024
2.1.228 932 3/13/2024
2.1.227 183 3/13/2024
2.1.226 654 3/13/2024
2.1.225 178 3/13/2024
2.1.224 182 3/13/2024
2.1.223 2,058 3/12/2024
2.1.222 3,456 3/11/2024
2.1.221 3,032 3/11/2024
2.1.220 2,024 3/10/2024
2.1.219 2,335 3/8/2024
2.1.218 1,296 3/8/2024
2.1.217 1,914 3/8/2024
2.1.216 2,551 3/6/2024
2.1.215 2,453 3/4/2024
2.1.214 1,717 3/4/2024
2.1.213 3,181 3/2/2024
2.1.212 1,482 3/2/2024
2.1.211 520 3/2/2024
2.1.210 447 3/2/2024
2.1.209 618 3/2/2024
2.1.208 4,190 2/29/2024
2.1.207 786 2/29/2024
2.1.206 438 2/29/2024
2.1.205 4,062 2/26/2024
2.1.204 1,772 2/25/2024
2.1.203 3,166 2/23/2024
2.1.202 2,279 2/22/2024
2.1.201 1,156 2/22/2024
2.1.200 551 2/21/2024
2.1.199 1,424 2/21/2024
2.1.198 371 2/21/2024
2.1.197 881 2/21/2024
2.1.196 167 2/21/2024
2.1.195 1,553 2/21/2024
2.1.194 522 2/21/2024
2.1.193 175 2/21/2024
2.1.192 185 2/21/2024
2.1.191 704 2/21/2024
2.1.190 161 2/21/2024
2.1.189 3,214 2/20/2024
2.1.188 858 2/20/2024
2.1.187 795 2/20/2024
2.1.186 973 2/20/2024
2.1.185 2,593 2/19/2024
2.1.184 2,272 2/17/2024
2.1.183 1,113 2/16/2024
2.1.182 1,029 2/16/2024
2.1.181 1,607 2/16/2024
2.1.180 177 2/16/2024
2.1.179 812 2/16/2024
2.1.178 180 2/16/2024
2.1.177 174 2/16/2024
2.1.176 687 2/16/2024
2.1.175 162 2/16/2024
2.1.174 4,007 2/13/2024
2.1.173 1,668 2/13/2024
2.1.172 1,327 2/13/2024
2.1.171 566 2/13/2024
2.1.170 752 2/13/2024
2.1.169 2,361 2/12/2024
2.1.168 603 2/11/2024
2.1.167 1,879 2/11/2024
2.1.166 1,054 2/11/2024
2.1.165 3,431 2/10/2024
2.1.164 661 2/9/2024
2.1.163 176 2/9/2024
2.1.162 1,893 2/9/2024
2.1.161 1,993 2/9/2024
2.1.160 500 2/8/2024
2.1.159 1,461 2/8/2024
2.1.158 1,018 2/8/2024
2.1.157 1,775 2/8/2024
2.1.156 162 2/8/2024
2.1.155 2,255 2/7/2024
2.1.154 553 2/7/2024
2.1.153 726 2/7/2024
2.1.152 1,551 2/7/2024
2.1.151 452 2/6/2024
2.1.150 171 2/6/2024
2.1.149 173 2/6/2024
2.1.148 3,330 2/5/2024
2.1.147 1,881 2/4/2024
2.1.146 2,536 2/2/2024
2.1.145 2,321 1/31/2024
2.1.144 2,536 1/29/2024
2.1.143 1,634 1/29/2024
2.1.142 451 1/29/2024
2.1.141 1,777 1/28/2024
2.1.140 575 1/28/2024
2.1.139 391 1/28/2024
2.1.138 656 1/28/2024
2.1.137 2,311 1/28/2024
2.1.136 1,172 1/28/2024
2.1.135 377 1/27/2024
2.1.134 1,128 1/27/2024
2.1.133 1,459 1/27/2024
2.1.132 1,467 1/27/2024
2.1.131 196 1/27/2024
2.1.130 817 1/27/2024
2.1.129 1,296 1/26/2024
2.1.128 300 1/26/2024
2.1.127 1,050 1/26/2024
2.1.126 1,389 1/26/2024
2.1.125 1,987 1/26/2024
2.1.124 1,097 1/25/2024
2.1.123 1,276 1/25/2024
2.1.122 558 1/25/2024
2.1.121 1,108 1/25/2024
2.1.120 628 1/25/2024
2.1.119 3,164 1/19/2024
2.1.118 2,621 1/15/2024
2.1.117 611 1/15/2024
2.1.116 1,515 1/15/2024
2.1.115 171 1/15/2024
2.1.114 688 1/15/2024
2.1.113 1,642 1/15/2024
2.1.112 3,022 1/14/2024
2.1.111 1,911 1/13/2024
2.1.110 2,149 1/12/2024
2.1.109 2,426 1/11/2024
2.1.108 3,145 1/7/2024
2.1.107 2,437 1/5/2024
2.1.106 614 1/5/2024
2.1.105 191 1/5/2024
2.1.104 179 1/5/2024
2.1.103 1,763 1/5/2024
2.1.102 184 1/5/2024
2.1.101 3,289 1/1/2024
2.1.100 2,652 12/28/2023
2.1.99 897 12/28/2023
2.1.98 614 12/28/2023
2.1.97 173 12/28/2023
2.1.96 176 12/28/2023
2.1.95 868 12/27/2023
2.1.94 191 12/27/2023
2.1.93 609 12/27/2023
2.1.92 183 12/27/2023
2.1.91 189 12/27/2023
2.1.90 2,720 12/25/2023
2.1.89 448 12/25/2023
2.1.88 984 12/25/2023
2.1.87 193 12/25/2023
2.1.86 831 12/25/2023
2.1.85 182 12/25/2023
2.1.84 729 12/25/2023
2.1.83 182 12/25/2023
2.1.82 2,060 12/24/2023
2.1.81 1,355 12/23/2023
2.1.80 1,087 12/23/2023
2.1.79 381 12/23/2023
2.1.78 700 12/23/2023
2.1.77 184 12/23/2023
2.1.76 170 12/23/2023
2.1.75 1,346 12/23/2023
2.1.74 172 12/23/2023
2.1.73 1,745 12/19/2023
2.1.72 278 12/19/2023
2.1.71 3,752 12/11/2023
2.1.70 898 12/10/2023
2.1.69 171 12/10/2023
2.1.68 571 12/10/2023
2.1.67 1,745 12/10/2023
2.1.66 472 12/9/2023
2.1.65 468 12/9/2023
2.1.64 365 12/9/2023
2.1.63 188 12/9/2023
2.1.62 331 12/9/2023
2.1.61 271 12/9/2023
2.1.60 168 12/9/2023
2.1.59 1,322 12/9/2023
2.1.58 183 12/9/2023
2.1.57 1,883 12/6/2023
2.1.56 497 12/6/2023
2.1.55 304 12/6/2023
2.1.54 342 12/6/2023
2.1.53 1,140 12/5/2023
2.1.52 479 12/5/2023
2.1.51 425 12/5/2023
2.1.50 477 12/5/2023
2.1.49 152 12/5/2023
2.1.48 428 12/5/2023
2.1.47 347 12/5/2023
2.1.46 155 12/4/2023
2.1.45 168 12/4/2023
2.1.44 419 12/4/2023
2.1.43 183 12/4/2023
2.1.42 1,281 12/4/2023
2.1.41 135 12/4/2023
2.1.40 1,478 11/27/2023
2.1.39 673 11/26/2023
2.1.38 288 11/26/2023
2.1.37 794 11/23/2023
2.1.36 883 11/23/2023
2.1.35 830 11/23/2023
2.1.34 164 11/23/2023
2.1.33 519 11/23/2023
2.1.32 175 11/23/2023
2.1.31 1,353 11/20/2023
2.1.30 1,413 11/20/2023
2.1.29 1,050 11/19/2023
2.1.28 331 11/19/2023
2.1.27 601 11/19/2023
2.1.26 620 11/19/2023
2.1.25 644 11/19/2023
2.1.24 152 11/19/2023
2.1.23 285 11/18/2023
2.1.22 1,261 11/18/2023
2.1.21 467 11/18/2023
2.1.20 689 11/18/2023
2.1.19 173 11/18/2023
2.1.18 383 11/18/2023
2.1.17 164 11/18/2023
2.1.16 777 11/17/2023
2.1.15 686 11/17/2023
2.1.14 163 11/17/2023
2.1.13 542 11/17/2023
2.1.12 385 11/17/2023
2.1.11 623 11/17/2023
2.1.10 160 11/17/2023
2.1.9 637 11/17/2023
2.1.8 168 11/17/2023
2.1.7 199 11/17/2023
2.1.6 427 11/17/2023
2.1.5 475 11/16/2023
2.0.101 2,766 11/15/2023
2.0.100 149 11/15/2023
2.0.99 168 11/15/2023
2.0.4 160 11/16/2023
2.0.3 172 11/16/2023
2.0.2 165 11/16/2023
2.0.1 159 11/16/2023
1.0.98 778 11/14/2023
1.0.97 933 11/13/2023
1.0.96 146 11/13/2023
1.0.95 671 11/10/2023
1.0.94 161 11/10/2023
1.0.93 1,158 11/9/2023
1.0.92 162 11/9/2023
1.0.91 1,275 11/7/2023
1.0.90 157 11/7/2023
1.0.89 617 11/6/2023
1.0.88 170 11/6/2023
1.0.87 721 11/3/2023
1.0.86 176 11/3/2023
1.0.85 1,079 11/2/2023
1.0.84 156 11/2/2023
1.0.83 739 11/1/2023
1.0.82 1,783 10/26/2023
1.0.81 1,612 10/19/2023
1.0.80 177 10/19/2023
1.0.79 965 10/18/2023
1.0.78 201 10/18/2023
1.0.77 882 10/17/2023
1.0.76 188 10/17/2023
1.0.75 813 10/16/2023
1.0.74 192 10/16/2023
1.0.73 858 10/13/2023
1.0.72 413 10/12/2023
1.0.71 2,068 9/20/2023
1.0.70 838 9/19/2023
1.0.69 831 9/18/2023
1.0.68 187 9/18/2023
1.0.67 1,106 9/14/2023
1.0.66 1,797 8/31/2023
1.0.65 191 8/31/2023
1.0.64 991 8/30/2023
1.0.63 215 8/30/2023
1.0.62 231 8/30/2023
1.0.61 1,017 8/28/2023
1.0.60 849 8/25/2023
1.0.59 193 8/25/2023
1.0.58 614 8/24/2023
1.0.57 1,773 8/21/2023
1.0.56 1,020 8/18/2023
1.0.55 908 8/17/2023
1.0.54 211 8/17/2023
1.0.53 2,319 8/10/2023
1.0.52 695 8/9/2023
1.0.51 830 8/8/2023
1.0.50 790 8/7/2023
1.0.49 236 8/7/2023
1.0.48 2,963 7/13/2023
1.0.47 1,074 7/11/2023
1.0.46 868 7/10/2023
1.0.45 835 7/7/2023
1.0.44 235 7/7/2023
1.0.43 2,524 6/30/2023
1.0.42 1,280 6/29/2023
1.0.41 716 6/28/2023
1.0.40 1,828 6/26/2023
1.0.39 969 6/23/2023
1.0.38 1,297 6/21/2023
1.0.37 1,756 6/15/2023
1.0.36 577 6/14/2023
1.0.35 2,128 6/9/2023
1.0.34 975 6/8/2023
1.0.33 1,871 6/7/2023
1.0.32 231 6/7/2023
1.0.31 1,403 6/6/2023
1.0.30 1,378 6/5/2023
1.0.29 1,561 6/2/2023
1.0.28 223 6/2/2023
1.0.27 1,440 6/1/2023
1.0.26 727 5/31/2023
1.0.25 581 5/31/2023
1.0.24 229 5/31/2023
1.0.23 1,693 5/30/2023
1.0.22 1,776 5/26/2023
1.0.21 819 5/25/2023
1.0.20 204 5/25/2023
1.0.19 967 5/24/2023
1.0.18 221 5/24/2023
1.0.17 565 5/23/2023
1.0.13 1,704 5/22/2023
1.0.12 1,406 5/18/2023
1.0.11 724 5/17/2023
1.0.10 1,742 5/1/2023
1.0.9 1,167 4/25/2023
1.0.8 565 4/24/2023
1.0.7 1,150 4/21/2023
1.0.6 2,231 4/13/2023
1.0.5 715 4/12/2023
1.0.4 1,174 4/8/2023
1.0.3 259 4/8/2023
1.0.2 706 4/8/2023
1.0.1 263 4/8/2023