Soenneker.Utils.SingletonDictionary 1.0.97

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Utils.SingletonDictionary --version 1.0.97
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 1.0.97
                    
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="1.0.97" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.SingletonDictionary" Version="1.0.97" />
                    
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 1.0.97
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 1.0.97"
                    
#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@1.0.97
                    
#: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=1.0.97
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=1.0.97
                    
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

An externally initializing singleton dictionary that uses double-check asynchronous locking, with optional async and sync disposal

Installation

Install-Package Soenneker.Utils.SingletonDictionary

Example

Below is a long-living HttpClient implementation using SingletonDictionary with different settings. It guarantees only one instance of a particular key is instantiated due to the locking.

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

    public HttpRequester()
    {
        // This func will lazily execute once it's retrieved the first time.
        // Other threads calling this at the same moment will asynchronously wait,
        // and then utilize the HttpClient that was created from the first caller.
        _clients = new SingletonDictionary<HttpClient>((args) =>
        {
            var socketsHandler = new SocketsHttpHandler
            {
                PooledConnectionLifetime = TimeSpan.FromMinutes(10),
                MaxConnectionsPerServer = 10
            };

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

            return client;
        });
    }

    public async ValueTask Get()
    {
        // retrieve the singleton async, thus not blocking the calling thread
        await (await _client.Get("100", 100)).GetAsync("https://google.com");
    }

    // Disposal is not necessary for AsyncSingleton unless the type used is IDisposable/IAsyncDisposable
    public ValueTask DisposeAsync()
    {
        GC.SuppressFinalize(false);

        return _client.DisposeAsync();
    }

    public void Dispose()
    {
        GC.SuppressFinalize(false);
        
        _client.Dispose();
    }
}
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  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.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.1108 3,356 9/30/2025
3.0.1107 36,608 9/9/2025
3.0.1106 23,077 9/3/2025
3.0.1105 365 9/3/2025
3.0.1104 2,254 9/3/2025
3.0.1103 30,349 8/14/2025
3.0.1102 7,624 8/11/2025
3.0.1101 3,103 8/11/2025
3.0.1100 811 8/11/2025
3.0.1099 149 8/11/2025
3.0.1098 23,022 8/6/2025
3.0.1097 4,942 8/5/2025
3.0.1096 28,859 7/9/2025
3.0.1095 30,766 6/28/2025
3.0.1094 1,714 6/28/2025
3.0.1093 2,444 6/27/2025
3.0.1092 3,075 6/27/2025
3.0.1091 33,321 6/10/2025
3.0.1090 23,232 5/27/2025
3.0.1089 1,239 5/27/2025
3.0.1088 1,297 5/27/2025
3.0.1087 3,146 5/27/2025
3.0.1086 19,379 5/23/2025
3.0.1085 1,701 5/23/2025
3.0.1084 1,669 5/23/2025
3.0.1083 1,627 5/23/2025
3.0.1082 321 5/22/2025
3.0.1081 13,374 5/18/2025
3.0.1079 2,015 5/18/2025
3.0.1078 1,958 5/18/2025
3.0.1077 5,688 5/14/2025
3.0.1076 12,421 5/8/2025
3.0.1075 383 5/8/2025
3.0.1074 812 5/8/2025
3.0.1073 1,459 5/7/2025
3.0.1072 17,354 5/5/2025
3.0.1071 1,163 5/5/2025
3.0.1070 2,129 5/5/2025
3.0.1069 986 5/5/2025
3.0.1068 281 5/5/2025
3.0.1067 192 5/5/2025
3.0.1066 24,426 4/9/2025
3.0.1065 353 4/9/2025
3.0.1064 1,439 4/8/2025
3.0.1063 3,016 4/8/2025
3.0.1062 4,114 4/8/2025
3.0.1061 249 4/8/2025
3.0.1060 213 4/8/2025
3.0.1059 243 4/8/2025
3.0.1058 195 4/8/2025
3.0.1057 1,250 4/8/2025
3.0.1056 390 4/8/2025
3.0.1055 9,214 4/8/2025
3.0.1054 904 4/8/2025
3.0.1053 4,589 4/7/2025
3.0.1052 994 4/7/2025
3.0.1051 203 4/7/2025
3.0.1050 806 4/7/2025
3.0.1049 205 4/7/2025
3.0.1048 9,649 4/7/2025
3.0.1047 206 4/7/2025
3.0.1046 13,369 4/7/2025
3.0.1045 207 4/7/2025
3.0.1044 1,846 4/7/2025
3.0.1043 206 4/7/2025
3.0.1042 2,200 4/7/2025
3.0.1041 1,294 4/6/2025
3.0.1040 359 4/6/2025
3.0.1039 211 4/6/2025
3.0.1038 1,545 4/6/2025
3.0.1037 210 4/6/2025
3.0.1036 505 4/6/2025
3.0.1035 1,634 4/6/2025
3.0.1034 177 4/6/2025
3.0.1033 2,863 4/6/2025
3.0.1032 154 4/6/2025
3.0.1031 195 4/6/2025
3.0.1030 159 4/6/2025
3.0.1029 2,205 4/5/2025
3.0.1028 228 4/5/2025
3.0.1027 1,669 4/5/2025
3.0.1026 1,472 4/5/2025
3.0.1025 1,464 4/5/2025
3.0.1024 837 4/5/2025
3.0.1023 728 4/5/2025
3.0.1022 153 4/5/2025
3.0.1021 1,945 4/4/2025
3.0.1020 9,691 4/4/2025
3.0.1019 32,796 4/4/2025
3.0.1018 9,671 4/1/2025
3.0.1017 3,732 4/1/2025
3.0.1016 209 4/1/2025
3.0.1015 7,855 4/1/2025
3.0.1014 3,362 3/31/2025
3.0.1013 472 3/31/2025
3.0.1012 5,445 3/31/2025
3.0.1011 9,848 3/29/2025
3.0.1010 1,500 3/29/2025
3.0.1009 2,046 3/29/2025
3.0.1008 145 3/29/2025
3.0.1007 6,294 3/27/2025
3.0.1006 5,374 3/25/2025
3.0.1005 697 3/25/2025
3.0.1004 4,311 3/25/2025
3.0.1003 8,865 3/21/2025
3.0.1002 3,696 3/21/2025
3.0.1001 9,800 3/18/2025
3.0.1000 4,880 3/18/2025
3.0.999 9,322 3/15/2025
3.0.998 2,635 3/15/2025
3.0.997 122 3/15/2025
3.0.996 8,809 3/12/2025
3.0.995 3,087 3/12/2025
3.0.994 211 3/12/2025
3.0.993 517 3/12/2025
3.0.992 198 3/12/2025
3.0.991 3,850 3/11/2025
3.0.990 210 3/11/2025
3.0.989 1,729 3/11/2025
3.0.988 212 3/11/2025
3.0.987 3,676 3/11/2025
3.0.986 216 3/11/2025
3.0.985 3,579 3/11/2025
3.0.984 202 3/11/2025
3.0.983 2,283 3/11/2025
3.0.982 195 3/11/2025
3.0.981 12,781 3/7/2025
3.0.980 3,716 3/7/2025
3.0.979 8,629 3/2/2025
3.0.978 1,498 3/2/2025
3.0.977 950 3/2/2025
3.0.976 140 3/2/2025
3.0.975 6,200 3/2/2025
3.0.974 147 3/2/2025
3.0.973 4,624 3/1/2025
3.0.972 130 3/1/2025
3.0.971 6,354 3/1/2025
3.0.970 161 3/1/2025
3.0.969 128 3/1/2025
3.0.968 619 3/1/2025
3.0.967 139 3/1/2025
3.0.966 8,480 3/1/2025
3.0.965 6,718 2/26/2025
3.0.964 1,143 2/26/2025
3.0.963 3,411 2/25/2025
3.0.962 143 2/25/2025
3.0.961 1,229 2/25/2025
3.0.960 124 2/25/2025
3.0.959 169 2/25/2025
3.0.958 2,665 2/25/2025
3.0.957 6,938 2/24/2025
3.0.956 6,484 2/23/2025
3.0.955 1,563 2/22/2025
3.0.954 131 2/22/2025
3.0.953 11,022 2/22/2025
3.0.952 3,125 2/22/2025
3.0.951 1,541 2/22/2025
3.0.950 1,109 2/22/2025
3.0.949 186 2/22/2025
3.0.948 148 2/22/2025
3.0.947 148 2/22/2025
3.0.946 6,694 2/21/2025
3.0.945 141 2/21/2025
3.0.944 8,100 2/21/2025
3.0.943 6,448 2/19/2025
3.0.942 2,233 2/19/2025
3.0.941 949 2/19/2025
3.0.940 147 2/19/2025
3.0.939 542 2/18/2025
3.0.938 147 2/18/2025
3.0.937 7,673 2/18/2025
3.0.936 140 2/18/2025
3.0.935 3,966 2/18/2025
3.0.934 9,413 2/16/2025
3.0.933 2,108 2/14/2025
3.0.932 1,091 2/14/2025
3.0.931 997 2/13/2025
3.0.930 3,393 2/13/2025
3.0.929 409 2/13/2025
3.0.928 5,264 2/13/2025
3.0.927 5,213 2/12/2025
3.0.926 2,012 2/12/2025
3.0.925 168 2/12/2025
3.0.924 146 2/12/2025
3.0.923 2,816 2/12/2025
3.0.922 427 2/12/2025
3.0.921 153 2/12/2025
3.0.920 227 2/12/2025
3.0.919 220 2/12/2025
3.0.918 146 2/12/2025
3.0.917 205 2/11/2025
3.0.916 4,794 2/11/2025
3.0.915 5,433 2/11/2025
3.0.914 3,126 2/11/2025
3.0.913 157 2/11/2025
3.0.912 514 2/11/2025
3.0.911 2,473 2/10/2025
3.0.910 165 2/10/2025
3.0.909 1,071 2/10/2025
3.0.908 162 2/10/2025
3.0.907 8,992 2/10/2025
3.0.906 157 2/10/2025
3.0.905 1,646 2/9/2025
3.0.904 8,125 2/9/2025
3.0.903 141 2/9/2025
3.0.902 10,400 2/8/2025
3.0.901 156 2/8/2025
3.0.900 2,417 2/7/2025
3.0.899 149 2/7/2025
3.0.898 2,294 2/7/2025
3.0.897 150 2/7/2025
3.0.896 860 2/7/2025
3.0.895 594 2/7/2025
3.0.894 159 2/7/2025
3.0.893 475 2/7/2025
3.0.892 145 2/7/2025
3.0.891 1,477 2/7/2025
3.0.890 140 2/7/2025
3.0.889 155 2/7/2025
3.0.888 15,172 2/7/2025
3.0.887 9,027 2/5/2025
3.0.886 869 2/5/2025
3.0.885 1,303 2/5/2025
3.0.884 378 2/5/2025
3.0.883 1,413 2/5/2025
3.0.882 919 2/5/2025
3.0.881 4,390 2/5/2025
3.0.880 136 2/5/2025
3.0.879 14,832 1/28/2025
3.0.878 940 1/28/2025
3.0.877 2,723 1/28/2025
3.0.876 298 1/28/2025
3.0.875 5,757 1/28/2025
3.0.874 899 1/27/2025
3.0.873 117 1/27/2025
3.0.872 245 1/27/2025
3.0.871 390 1/27/2025
3.0.870 133 1/27/2025
3.0.869 7,170 1/27/2025
3.0.868 6,523 1/26/2025
3.0.867 1,353 1/26/2025
3.0.866 250 1/26/2025
3.0.865 1,499 1/26/2025
3.0.864 1,909 1/25/2025
3.0.863 135 1/25/2025
3.0.862 8,247 1/25/2025
3.0.861 1,473 1/25/2025
3.0.860 404 1/25/2025
3.0.859 145 1/25/2025
3.0.858 2,767 1/25/2025
3.0.857 1,807 1/25/2025
3.0.856 9,310 1/24/2025
3.0.855 2,242 1/24/2025
3.0.854 122 1/24/2025
3.0.853 2,956 1/24/2025
3.0.852 473 1/24/2025
3.0.851 324 1/24/2025
3.0.850 4,512 1/24/2025
3.0.849 137 1/24/2025
3.0.848 723 1/23/2025
3.0.847 141 1/23/2025
3.0.846 866 1/23/2025
3.0.845 135 1/23/2025
3.0.844 11,290 1/22/2025
3.0.843 1,394 1/21/2025
3.0.842 1,336 1/21/2025
3.0.841 778 1/21/2025
3.0.840 128 1/21/2025
3.0.839 787 1/21/2025
3.0.838 1,006 1/21/2025
3.0.837 7,691 1/21/2025
3.0.836 874 1/21/2025
3.0.835 1,416 1/21/2025
3.0.834 142 1/21/2025
3.0.833 1,157 1/21/2025
3.0.832 133 1/21/2025
3.0.831 3,202 1/21/2025
3.0.830 125 1/21/2025
3.0.829 590 1/20/2025
3.0.828 4,060 1/20/2025
3.0.827 353 1/20/2025
3.0.826 2,921 1/20/2025
3.0.825 137 1/20/2025
3.0.824 1,607 1/20/2025
3.0.823 144 1/20/2025
3.0.822 148 1/20/2025
3.0.821 141 1/20/2025
3.0.820 496 1/20/2025
3.0.819 145 1/20/2025
3.0.818 138 1/20/2025
3.0.817 8,007 1/19/2025
3.0.816 143 1/19/2025
3.0.815 7,527 1/19/2025
3.0.814 2,341 1/19/2025
3.0.813 169 1/19/2025
3.0.812 558 1/19/2025
3.0.811 135 1/19/2025
3.0.810 2,718 1/19/2025
3.0.809 134 1/19/2025
3.0.808 4,678 1/18/2025
3.0.807 141 1/18/2025
3.0.806 10,176 1/17/2025
3.0.805 150 1/17/2025
3.0.804 939 1/17/2025
3.0.803 1,391 1/17/2025
3.0.802 6,009 1/16/2025
3.0.801 2,052 1/16/2025
3.0.800 3,005 1/16/2025
3.0.799 747 1/16/2025
3.0.798 1,794 1/16/2025
3.0.797 1,440 1/16/2025
3.0.796 128 1/16/2025
3.0.795 6,696 1/15/2025
3.0.794 134 1/15/2025
3.0.793 4,005 1/15/2025
3.0.792 130 1/15/2025
3.0.791 202 1/15/2025
3.0.790 4,858 1/15/2025
3.0.789 117 1/15/2025
3.0.788 4,114 1/15/2025
3.0.787 114 1/15/2025
3.0.786 728 1/15/2025
3.0.785 110 1/15/2025
3.0.784 2,431 1/15/2025
3.0.783 112 1/15/2025
3.0.782 362 1/14/2025
3.0.781 125 1/14/2025
3.0.780 126 1/14/2025
3.0.779 5,098 1/14/2025
3.0.778 818 1/14/2025
3.0.777 126 1/14/2025
3.0.776 1,586 1/14/2025
3.0.775 114 1/14/2025
3.0.774 8,073 1/13/2025
3.0.773 2,333 1/13/2025
3.0.772 2,003 1/13/2025
3.0.771 131 1/13/2025
3.0.770 7,739 1/11/2025
3.0.769 3,069 1/11/2025
3.0.768 156 1/11/2025
3.0.767 2,871 1/11/2025
3.0.766 142 1/11/2025
3.0.765 2,630 1/10/2025
3.0.764 2,865 1/10/2025
3.0.763 135 1/10/2025
3.0.762 1,161 1/10/2025
3.0.761 150 1/10/2025
3.0.760 137 1/10/2025
3.0.759 9,474 1/3/2025
3.0.758 641 1/3/2025
3.0.757 1,396 1/3/2025
3.0.756 172 1/3/2025
3.0.755 2,071 1/3/2025
3.0.754 145 1/3/2025
3.0.753 1,597 1/3/2025
3.0.752 1,519 1/2/2025
3.0.751 141 1/2/2025
3.0.750 2,595 1/2/2025
3.0.749 145 1/2/2025
3.0.748 4,214 1/2/2025
3.0.747 135 1/2/2025
3.0.746 155 1/2/2025
3.0.745 7,076 1/1/2025
3.0.744 1,509 1/1/2025
3.0.743 365 1/1/2025
3.0.742 164 1/1/2025
3.0.741 2,228 1/1/2025
3.0.740 148 1/1/2025
3.0.739 146 1/1/2025
3.0.738 158 1/1/2025
3.0.737 446 12/31/2024
3.0.736 159 12/31/2024
3.0.735 172 12/31/2024
3.0.734 910 12/31/2024
3.0.733 169 12/31/2024
3.0.732 6,873 12/31/2024
3.0.731 159 12/31/2024
3.0.730 6,600 12/31/2024
3.0.729 129 12/31/2024
3.0.728 3,684 12/31/2024
3.0.727 510 12/31/2024
3.0.726 148 12/31/2024
3.0.725 1,920 12/31/2024
3.0.724 145 12/31/2024
3.0.723 13,166 12/28/2024
3.0.722 1,662 12/28/2024
3.0.721 1,847 12/27/2024
3.0.720 159 12/27/2024
3.0.719 3,940 12/27/2024
3.0.718 7,456 12/24/2024
3.0.717 1,832 12/24/2024
3.0.716 1,337 12/24/2024
3.0.715 1,122 12/24/2024
3.0.714 2,002 12/24/2024
3.0.713 140 12/24/2024
3.0.712 3,216 12/24/2024
3.0.711 906 12/24/2024
3.0.710 142 12/24/2024
3.0.709 626 12/24/2024
3.0.708 1,395 12/24/2024
3.0.707 348 12/24/2024
3.0.706 181 12/24/2024
3.0.705 1,525 12/24/2024
3.0.704 150 12/24/2024
3.0.703 2,628 12/23/2024
3.0.702 4,152 12/23/2024
3.0.701 148 12/23/2024
3.0.700 990 12/23/2024
3.0.699 146 12/23/2024
3.0.698 2,787 12/23/2024
3.0.697 146 12/23/2024
3.0.696 2,201 12/23/2024
3.0.695 153 12/23/2024
3.0.694 619 12/22/2024
3.0.693 2,086 12/22/2024
3.0.692 5,854 12/22/2024
3.0.691 157 12/22/2024
3.0.690 2,359 12/22/2024
3.0.689 225 12/22/2024
3.0.688 636 12/22/2024
3.0.687 141 12/22/2024
3.0.686 355 12/22/2024
3.0.685 148 12/22/2024
3.0.684 9,954 12/22/2024
3.0.683 137 12/22/2024
3.0.682 1,561 12/21/2024
3.0.681 402 12/21/2024
3.0.680 143 12/21/2024
3.0.679 712 12/21/2024
3.0.678 1,187 12/21/2024
3.0.677 140 12/21/2024
3.0.676 5,647 12/21/2024
3.0.675 559 12/21/2024
3.0.674 144 12/21/2024
3.0.673 3,716 12/21/2024
3.0.672 997 12/21/2024
3.0.671 153 12/21/2024
3.0.670 2,252 12/20/2024
3.0.669 153 12/20/2024
3.0.668 149 12/20/2024
3.0.667 5,608 12/20/2024
3.0.666 1,650 12/20/2024
3.0.665 310 12/20/2024
3.0.664 5,116 12/19/2024
3.0.663 609 12/19/2024
3.0.662 3,038 12/18/2024
3.0.661 142 12/18/2024
3.0.660 9,389 12/17/2024
3.0.659 287 12/17/2024
3.0.658 961 12/16/2024
3.0.657 151 12/16/2024
3.0.656 203 12/16/2024
3.0.655 139 12/16/2024
3.0.654 9,386 12/10/2024
3.0.653 1,490 12/10/2024
3.0.652 545 12/9/2024
3.0.651 147 12/9/2024
3.0.650 3,959 12/9/2024
3.0.649 2,047 12/9/2024
3.0.648 142 12/9/2024
3.0.647 5,518 12/9/2024
3.0.646 4,155 12/6/2024
3.0.645 616 12/6/2024
3.0.644 148 12/6/2024
3.0.643 1,044 12/6/2024
3.0.641 5,729 12/6/2024
3.0.640 3,655 12/6/2024
3.0.639 7,961 12/6/2024
3.0.637 508 12/6/2024
3.0.636 3,748 12/5/2024
3.0.635 5,102 12/5/2024
3.0.634 4,283 12/5/2024
3.0.633 141 12/5/2024
3.0.632 2,641 12/5/2024
3.0.631 1,457 12/5/2024
3.0.630 151 12/5/2024
3.0.629 541 12/5/2024
3.0.628 145 12/5/2024
3.0.627 196 12/5/2024
3.0.626 146 12/5/2024
3.0.625 4,994 12/4/2024
3.0.624 145 12/4/2024
3.0.623 161 12/4/2024
3.0.622 164 12/4/2024
3.0.621 2,433 12/4/2024
3.0.620 441 12/4/2024
3.0.619 632 12/4/2024
3.0.618 5,026 12/3/2024
3.0.617 150 12/3/2024
3.0.616 1,621 12/3/2024
3.0.615 704 12/3/2024
3.0.614 162 12/3/2024
3.0.613 162 12/3/2024
3.0.612 5,642 12/3/2024
3.0.611 142 12/3/2024
3.0.610 4,867 12/3/2024
3.0.609 136 12/3/2024
3.0.608 4,567 12/2/2024
3.0.607 4,073 12/2/2024
3.0.606 2,357 12/2/2024
3.0.605 385 12/2/2024
3.0.604 153 12/2/2024
3.0.603 589 12/2/2024
3.0.602 5,047 12/1/2024
3.0.601 154 12/1/2024
3.0.600 2,755 12/1/2024
3.0.599 266 12/1/2024
3.0.598 5,139 12/1/2024
3.0.597 155 12/1/2024
3.0.596 5,347 11/29/2024
3.0.595 1,594 11/29/2024
3.0.594 8,146 11/21/2024
3.0.593 450 11/21/2024
3.0.592 6,657 11/20/2024
3.0.591 481 11/20/2024
3.0.590 157 11/20/2024
3.0.589 143 11/20/2024
3.0.588 622 11/20/2024
3.0.587 237 11/20/2024
3.0.586 143 11/20/2024
3.0.585 2,825 11/20/2024
3.0.584 4,015 11/19/2024
3.0.583 149 11/19/2024
3.0.582 905 11/19/2024
3.0.581 133 11/19/2024
3.0.580 3,658 11/19/2024
3.0.579 128 11/19/2024
3.0.578 1,856 11/19/2024
3.0.577 153 11/19/2024
3.0.576 12,460 11/14/2024
3.0.575 213 11/14/2024
3.0.574 759 11/14/2024
3.0.573 3,432 11/14/2024
3.0.572 1,062 11/14/2024
3.0.571 161 11/14/2024
3.0.570 155 11/14/2024
3.0.569 5,994 11/14/2024
3.0.568 154 11/14/2024
3.0.567 153 11/14/2024
3.0.566 5,210 11/14/2024
3.0.565 149 11/14/2024
3.0.564 151 11/14/2024
3.0.563 148 11/14/2024
2.1.562 11,975 11/13/2024
2.1.561 1,963 11/13/2024
2.1.560 4,392 11/13/2024
2.1.559 164 11/13/2024
2.1.558 1,944 11/12/2024
2.1.557 544 11/12/2024
2.1.556 11,688 11/9/2024
2.1.555 514 11/9/2024
2.1.554 161 11/9/2024
2.1.553 2,431 11/9/2024
2.1.552 146 11/9/2024
2.1.551 1,273 11/8/2024
2.1.550 150 11/8/2024
2.1.549 154 11/8/2024
2.1.548 155 11/8/2024
2.1.547 547 11/8/2024
2.1.546 2,770 11/8/2024
2.1.545 139 11/8/2024
2.1.544 7,740 11/8/2024
2.1.543 133 11/8/2024
2.1.542 16,932 11/1/2024
2.1.541 643 11/1/2024
2.1.540 9,800 10/29/2024
2.1.539 1,046 10/29/2024
2.1.538 3,967 10/29/2024
2.1.537 887 10/29/2024
2.1.536 7,861 10/28/2024
2.1.535 2,694 10/28/2024
2.1.534 5,513 10/26/2024
2.1.533 1,009 10/26/2024
2.1.532 11,997 10/22/2024
2.1.531 392 10/22/2024
2.1.530 736 10/22/2024
2.1.529 1,286 10/22/2024
2.1.528 146 10/22/2024
2.1.527 655 10/22/2024
2.1.526 9,400 10/18/2024
2.1.525 1,542 10/17/2024
2.1.524 6,004 10/15/2024
2.1.523 2,273 10/15/2024
2.1.522 147 10/14/2024
2.1.521 7,378 10/12/2024
2.1.520 956 10/11/2024
2.1.519 145 10/11/2024
2.1.518 670 10/11/2024
2.1.517 4,204 10/11/2024
2.1.516 9,273 10/9/2024
2.1.515 526 10/9/2024
2.1.514 132 10/9/2024
2.1.513 2,786 10/8/2024
2.1.512 206 10/8/2024
2.1.511 3,138 10/8/2024
2.1.510 189 10/8/2024
2.1.509 137 10/8/2024
2.1.508 5,709 10/8/2024
2.1.507 8,829 10/3/2024
2.1.506 150 10/3/2024
2.1.505 1,634 10/3/2024
2.1.504 2,788 10/3/2024
2.1.503 2,061 10/3/2024
2.1.502 8,413 10/2/2024
2.1.501 143 10/2/2024
2.1.500 2,588 10/2/2024
2.1.499 1,446 10/2/2024
2.1.498 6,033 10/1/2024
2.1.497 1,003 10/1/2024
2.1.496 160 10/1/2024
2.1.495 3,744 10/1/2024
2.1.494 151 10/1/2024
2.1.493 199 10/1/2024
2.1.492 7,865 9/29/2024
2.1.491 1,941 9/29/2024
2.1.490 150 9/29/2024
2.1.489 1,715 9/29/2024
2.1.488 158 9/29/2024
2.1.487 3,679 9/29/2024
2.1.486 7,377 9/27/2024
2.1.485 1,096 9/27/2024
2.1.484 4,373 9/27/2024
2.1.483 162 9/27/2024
2.1.482 618 9/27/2024
2.1.481 3,059 9/27/2024
2.1.480 4,637 9/26/2024
2.1.479 4,981 9/26/2024
2.1.478 3,354 9/26/2024
2.1.477 3,032 9/26/2024
2.1.476 5,398 9/26/2024
2.1.475 146 9/26/2024
2.1.474 8,065 9/23/2024
2.1.473 1,800 9/23/2024
2.1.472 1,368 9/23/2024
2.1.471 1,631 9/23/2024
2.1.470 160 9/23/2024
2.1.469 2,180 9/23/2024
2.1.468 132 9/23/2024
2.1.467 6,724 9/23/2024
2.1.466 154 9/23/2024
2.1.465 1,079 9/23/2024
2.1.464 167 9/23/2024
2.1.463 139 9/23/2024
2.1.462 1,303 9/23/2024
2.1.461 13,233 9/18/2024
2.1.460 357 9/17/2024
2.1.459 1,720 9/17/2024
2.1.458 2,334 9/17/2024
2.1.457 159 9/17/2024
2.1.456 2,564 9/17/2024
2.1.455 639 9/17/2024
2.1.454 4,567 9/17/2024
2.1.453 789 9/17/2024
2.1.452 269 9/17/2024
2.1.451 3,650 9/17/2024
2.1.450 10,512 9/16/2024
2.1.449 986 9/16/2024
2.1.448 6,880 9/12/2024
2.1.447 4,089 9/12/2024
2.1.446 1,800 9/11/2024
2.1.445 2,158 9/11/2024
2.1.443 4,926 9/11/2024
2.1.442 1,308 9/11/2024
2.1.441 1,280 9/11/2024
2.1.440 3,127 9/11/2024
2.1.439 10,974 9/10/2024
2.1.438 173 9/10/2024
2.1.437 1,525 9/10/2024
2.1.436 166 9/10/2024
2.1.434 3,948 9/10/2024
2.1.433 790 9/9/2024
2.1.432 2,511 9/9/2024
2.1.430 2,028 9/9/2024
2.1.428 175 9/9/2024
2.1.427 588 9/9/2024
2.1.426 18,245 9/7/2024
2.1.425 188 9/7/2024
2.1.424 6,854 9/6/2024
2.1.423 491 9/6/2024
2.1.422 3,068 9/6/2024
2.1.421 165 9/5/2024
2.1.420 175 9/5/2024
2.1.419 3,318 9/5/2024
2.1.418 1,557 9/5/2024
2.1.417 163 9/5/2024
2.1.416 1,489 9/5/2024
2.1.415 596 9/5/2024
2.1.414 160 9/5/2024
2.1.413 6,933 9/5/2024
2.1.412 263 9/5/2024
2.1.411 170 9/5/2024
2.1.410 3,079 9/4/2024
2.1.409 11,119 9/3/2024
2.1.408 154 9/3/2024
2.1.407 156 9/3/2024
2.1.406 5,446 9/3/2024
2.1.405 199 9/3/2024
2.1.404 3,476 9/3/2024
2.1.403 7,296 8/29/2024
2.1.402 3,565 8/29/2024
2.1.401 3,963 8/26/2024
2.1.400 146 8/26/2024
2.1.399 6,975 8/21/2024
2.1.398 835 8/21/2024
2.1.397 189 8/21/2024
2.1.396 3,589 8/21/2024
2.1.395 196 8/20/2024
2.1.394 192 8/20/2024
2.1.393 644 8/20/2024
2.1.392 4,187 8/20/2024
2.1.391 601 8/20/2024
2.1.390 166 8/20/2024
2.1.389 3,723 8/20/2024
2.1.388 170 8/20/2024
2.1.387 1,746 8/20/2024
2.1.386 4,064 8/19/2024
2.1.385 6,719 8/15/2024
2.1.384 2,850 8/15/2024
2.1.383 6,650 8/14/2024
2.1.382 191 8/13/2024
2.1.381 7,824 8/7/2024
2.1.380 406 8/6/2024
2.1.379 3,771 8/6/2024
2.1.378 7,119 8/1/2024
2.1.377 477 8/1/2024
2.1.376 145 8/1/2024
2.1.374 1,695 8/1/2024
2.1.373 8,450 7/25/2024
2.1.372 141 7/25/2024
2.1.371 1,107 7/25/2024
2.1.370 441 7/25/2024
2.1.369 525 7/25/2024
2.1.368 268 7/25/2024
2.1.367 575 7/24/2024
2.1.366 217 7/24/2024
2.1.365 320 7/24/2024
2.1.364 478 7/24/2024
2.1.363 12,083 7/20/2024
2.1.362 2,104 7/20/2024
2.1.361 7,211 7/14/2024
2.1.360 2,188 7/14/2024
2.1.359 154 7/14/2024
2.1.358 2,121 7/14/2024
2.1.357 6,225 7/10/2024
2.1.355 1,038 7/10/2024
2.1.354 1,665 7/10/2024
2.1.353 161 7/10/2024
2.1.352 2,479 7/10/2024
2.1.351 190 7/10/2024
2.1.350 151 7/10/2024
2.1.349 239 7/10/2024
2.1.348 157 7/10/2024
2.1.347 2,805 7/10/2024
2.1.346 173 7/10/2024
2.1.345 1,208 7/10/2024
2.1.344 153 7/10/2024
2.1.343 295 7/9/2024
2.1.342 140 7/9/2024
2.1.339 2,766 7/9/2024
2.1.338 608 7/9/2024
2.1.337 5,791 7/9/2024
2.1.336 1,530 7/9/2024
2.1.335 164 7/9/2024
2.1.334 3,576 7/9/2024
2.1.333 148 7/9/2024
2.1.332 11,287 7/9/2024
2.1.331 161 7/9/2024
2.1.330 3,500 7/9/2024
2.1.329 148 7/9/2024
2.1.328 1,473 7/9/2024
2.1.327 912 7/8/2024
2.1.326 1,402 7/8/2024
2.1.325 162 7/8/2024
2.1.324 174 7/8/2024
2.1.323 6,987 7/8/2024
2.1.322 2,266 7/8/2024
2.1.321 159 7/8/2024
2.1.320 3,349 7/7/2024
2.1.319 170 7/7/2024
2.1.318 183 7/7/2024
2.1.317 167 7/7/2024
2.1.316 1,642 7/7/2024
2.1.315 3,110 7/7/2024
2.1.314 2,625 7/7/2024
2.1.313 328 7/7/2024
2.1.312 4,858 7/5/2024
2.1.311 5,608 7/3/2024
2.1.310 4,375 7/3/2024
2.1.309 581 7/3/2024
2.1.308 5,732 7/2/2024
2.1.307 2,606 6/30/2024
2.1.306 3,178 6/28/2024
2.1.305 7,571 6/22/2024
2.1.304 6,884 6/15/2024
2.1.303 5,676 6/14/2024
2.1.302 8,177 6/1/2024
2.1.301 2,260 6/1/2024
2.1.300 858 6/1/2024
2.1.299 8,241 5/31/2024
2.1.298 5,167 5/29/2024
2.1.297 4,301 5/28/2024
2.1.296 3,472 5/27/2024
2.1.295 6,815 5/26/2024
2.1.294 2,877 5/26/2024
2.1.293 693 5/26/2024
2.1.292 3,555 5/25/2024
2.1.291 1,893 5/25/2024
2.1.290 181 5/25/2024
2.1.289 174 5/25/2024
2.1.288 1,016 5/25/2024
2.1.287 170 5/25/2024
2.1.286 538 5/25/2024
2.1.285 170 5/25/2024
2.1.284 167 5/25/2024
2.1.283 10,491 5/23/2024
2.1.282 748 5/23/2024
2.1.281 379 5/22/2024
2.1.280 5,127 5/22/2024
2.1.279 175 5/22/2024
2.1.278 181 5/22/2024
2.1.277 170 5/22/2024
2.1.276 3,047 5/22/2024
2.1.275 4,795 5/18/2024
2.1.274 2,637 5/18/2024
2.1.273 2,583 5/17/2024
2.1.272 166 5/17/2024
2.1.271 3,782 5/16/2024
2.1.270 610 5/15/2024
2.1.269 3,882 5/15/2024
2.1.268 6,349 5/12/2024
2.1.267 3,894 5/3/2024
2.1.266 1,624 4/30/2024
2.1.265 2,529 4/29/2024
2.1.264 2,649 4/29/2024
2.1.263 3,785 4/28/2024
2.1.262 2,083 4/28/2024
2.1.261 1,548 4/28/2024
2.1.260 2,398 4/28/2024
2.1.259 1,363 4/28/2024
2.1.258 159 4/28/2024
2.1.257 5,845 4/27/2024
2.1.256 179 4/27/2024
2.1.255 6,034 4/19/2024
2.1.254 5,758 4/18/2024
2.1.253 4,763 4/12/2024
2.1.252 1,617 4/12/2024
2.1.251 981 4/12/2024
2.1.250 1,184 4/12/2024
2.1.249 285 4/12/2024
2.1.248 154 4/12/2024
2.1.247 1,365 4/12/2024
2.1.246 450 4/12/2024
2.1.245 2,139 4/11/2024
2.1.244 5,445 4/10/2024
2.1.243 1,527 4/9/2024
2.1.242 4,422 4/2/2024
2.1.241 1,240 4/1/2024
2.1.240 2,930 3/29/2024
2.1.239 2,505 3/25/2024
2.1.238 399 3/25/2024
2.1.237 4,613 3/20/2024
2.1.236 2,828 3/19/2024
2.1.235 657 3/19/2024
2.1.234 3,382 3/18/2024
2.1.233 1,836 3/18/2024
2.1.232 1,819 3/15/2024
2.1.231 3,215 3/13/2024
2.1.230 1,450 3/13/2024
2.1.229 950 3/13/2024
2.1.228 993 3/13/2024
2.1.227 185 3/13/2024
2.1.226 705 3/13/2024
2.1.225 180 3/13/2024
2.1.224 184 3/13/2024
2.1.223 2,284 3/12/2024
2.1.222 3,839 3/11/2024
2.1.221 3,363 3/11/2024
2.1.220 2,201 3/10/2024
2.1.219 2,579 3/8/2024
2.1.218 1,391 3/8/2024
2.1.217 2,096 3/8/2024
2.1.216 2,878 3/6/2024
2.1.215 2,676 3/4/2024
2.1.214 1,909 3/4/2024
2.1.213 3,524 3/2/2024
2.1.212 1,627 3/2/2024
2.1.211 541 3/2/2024
2.1.210 459 3/2/2024
2.1.209 688 3/2/2024
2.1.208 4,573 2/29/2024
2.1.207 828 2/29/2024
2.1.206 482 2/29/2024
2.1.205 4,443 2/26/2024
2.1.204 1,960 2/25/2024
2.1.203 3,518 2/23/2024
2.1.202 2,486 2/22/2024
2.1.201 1,241 2/22/2024
2.1.200 596 2/21/2024
2.1.199 1,527 2/21/2024
2.1.198 380 2/21/2024
2.1.197 918 2/21/2024
2.1.196 169 2/21/2024
2.1.195 1,749 2/21/2024
2.1.194 535 2/21/2024
2.1.193 175 2/21/2024
2.1.192 188 2/21/2024
2.1.191 732 2/21/2024
2.1.190 163 2/21/2024
2.1.189 3,594 2/20/2024
2.1.188 877 2/20/2024
2.1.187 805 2/20/2024
2.1.186 1,116 2/20/2024
2.1.185 2,816 2/19/2024
2.1.184 2,512 2/17/2024
2.1.183 1,214 2/16/2024
2.1.182 1,100 2/16/2024
2.1.181 1,806 2/16/2024
2.1.180 179 2/16/2024
2.1.179 874 2/16/2024
2.1.178 181 2/16/2024
2.1.177 176 2/16/2024
2.1.176 714 2/16/2024
2.1.175 165 2/16/2024
2.1.174 4,467 2/13/2024
2.1.173 1,820 2/13/2024
2.1.172 1,443 2/13/2024
2.1.171 611 2/13/2024
2.1.170 834 2/13/2024
2.1.169 2,579 2/12/2024
2.1.168 621 2/11/2024
2.1.167 2,061 2/11/2024
2.1.166 1,125 2/11/2024
2.1.165 3,701 2/10/2024
2.1.164 680 2/9/2024
2.1.163 176 2/9/2024
2.1.162 2,110 2/9/2024
2.1.161 2,169 2/9/2024
2.1.160 548 2/8/2024
2.1.159 1,630 2/8/2024
2.1.158 1,048 2/8/2024
2.1.157 1,946 2/8/2024
2.1.156 162 2/8/2024
2.1.155 2,484 2/7/2024
2.1.154 591 2/7/2024
2.1.153 761 2/7/2024
2.1.152 1,725 2/7/2024
2.1.151 453 2/6/2024
2.1.150 171 2/6/2024
2.1.149 173 2/6/2024
2.1.148 3,656 2/5/2024
2.1.147 2,048 2/4/2024
2.1.146 2,789 2/2/2024
2.1.145 2,510 1/31/2024
2.1.144 2,785 1/29/2024
2.1.143 1,766 1/29/2024
2.1.142 477 1/29/2024
2.1.141 1,877 1/28/2024
2.1.140 636 1/28/2024
2.1.139 399 1/28/2024
2.1.138 678 1/28/2024
2.1.137 2,622 1/28/2024
2.1.136 1,246 1/28/2024
2.1.135 402 1/27/2024
2.1.134 1,196 1/27/2024
2.1.133 1,670 1/27/2024
2.1.132 1,621 1/27/2024
2.1.131 196 1/27/2024
2.1.130 850 1/27/2024
2.1.129 1,453 1/26/2024
2.1.128 307 1/26/2024
2.1.127 1,118 1/26/2024
2.1.126 1,507 1/26/2024
2.1.125 2,156 1/26/2024
2.1.124 1,218 1/25/2024
2.1.123 1,329 1/25/2024
2.1.122 596 1/25/2024
2.1.121 1,134 1/25/2024
2.1.120 653 1/25/2024
2.1.119 3,486 1/19/2024
2.1.118 2,862 1/15/2024
2.1.117 635 1/15/2024
2.1.116 1,662 1/15/2024
2.1.115 172 1/15/2024
2.1.114 731 1/15/2024
2.1.113 1,786 1/15/2024
2.1.112 3,278 1/14/2024
2.1.111 2,105 1/13/2024
2.1.110 2,281 1/12/2024
2.1.109 2,665 1/11/2024
2.1.108 3,375 1/7/2024
2.1.107 2,619 1/5/2024
2.1.106 654 1/5/2024
2.1.105 192 1/5/2024
2.1.104 179 1/5/2024
2.1.103 1,831 1/5/2024
2.1.102 186 1/5/2024
2.1.101 3,592 1/1/2024
2.1.100 2,845 12/28/2023
2.1.99 961 12/28/2023
2.1.98 669 12/28/2023
2.1.97 173 12/28/2023
2.1.96 178 12/28/2023
2.1.95 891 12/27/2023
2.1.94 193 12/27/2023
2.1.93 697 12/27/2023
2.1.92 185 12/27/2023
2.1.91 190 12/27/2023
2.1.90 3,020 12/25/2023
2.1.89 460 12/25/2023
2.1.88 1,124 12/25/2023
2.1.87 193 12/25/2023
2.1.86 839 12/25/2023
2.1.85 182 12/25/2023
2.1.84 805 12/25/2023
2.1.83 183 12/25/2023
2.1.82 2,275 12/24/2023
2.1.81 1,500 12/23/2023
2.1.80 1,239 12/23/2023
2.1.79 385 12/23/2023
2.1.78 752 12/23/2023
2.1.77 185 12/23/2023
2.1.76 170 12/23/2023
2.1.75 1,466 12/23/2023
2.1.74 175 12/23/2023
2.1.73 1,914 12/19/2023
2.1.72 282 12/19/2023
2.1.71 4,157 12/11/2023
2.1.70 1,001 12/10/2023
2.1.69 173 12/10/2023
2.1.68 589 12/10/2023
2.1.67 1,963 12/10/2023
2.1.66 516 12/9/2023
2.1.65 480 12/9/2023
2.1.64 366 12/9/2023
2.1.63 191 12/9/2023
2.1.62 340 12/9/2023
2.1.61 279 12/9/2023
2.1.60 168 12/9/2023
2.1.59 1,495 12/9/2023
2.1.58 183 12/9/2023
2.1.57 2,098 12/6/2023
2.1.56 547 12/6/2023
2.1.55 335 12/6/2023
2.1.54 366 12/6/2023
2.1.53 1,273 12/5/2023
2.1.52 510 12/5/2023
2.1.51 457 12/5/2023
2.1.50 521 12/5/2023
2.1.49 152 12/5/2023
2.1.48 460 12/5/2023
2.1.47 349 12/5/2023
2.1.46 156 12/4/2023
2.1.45 169 12/4/2023
2.1.44 459 12/4/2023
2.1.43 184 12/4/2023
2.1.42 1,392 12/4/2023
2.1.41 135 12/4/2023
2.1.40 1,683 11/27/2023
2.1.39 744 11/26/2023
2.1.38 302 11/26/2023
2.1.37 889 11/23/2023
2.1.36 979 11/23/2023
2.1.35 883 11/23/2023
2.1.34 165 11/23/2023
2.1.33 589 11/23/2023
2.1.32 175 11/23/2023
2.1.31 1,495 11/20/2023
2.1.30 1,591 11/20/2023
2.1.29 1,187 11/19/2023
2.1.28 365 11/19/2023
2.1.27 665 11/19/2023
2.1.26 688 11/19/2023
2.1.25 708 11/19/2023
2.1.24 153 11/19/2023
2.1.23 285 11/18/2023
2.1.22 1,432 11/18/2023
2.1.21 531 11/18/2023
2.1.20 758 11/18/2023
2.1.19 175 11/18/2023
2.1.18 441 11/18/2023
2.1.17 164 11/18/2023
2.1.16 878 11/17/2023
2.1.15 757 11/17/2023
2.1.14 164 11/17/2023
2.1.13 620 11/17/2023
2.1.12 407 11/17/2023
2.1.11 715 11/17/2023
2.1.10 160 11/17/2023
2.1.9 737 11/17/2023
2.1.8 168 11/17/2023
2.1.7 211 11/17/2023
2.1.6 466 11/17/2023
2.1.5 541 11/16/2023
2.0.101 2,986 11/15/2023
2.0.100 151 11/15/2023
2.0.99 168 11/15/2023
2.0.4 161 11/16/2023
2.0.3 175 11/16/2023
2.0.2 166 11/16/2023
2.0.1 161 11/16/2023
1.0.98 869 11/14/2023
1.0.97 1,013 11/13/2023
1.0.96 146 11/13/2023
1.0.95 711 11/10/2023
1.0.94 161 11/10/2023
1.0.93 1,320 11/9/2023
1.0.92 163 11/9/2023
1.0.91 1,421 11/7/2023
1.0.90 161 11/7/2023
1.0.89 667 11/6/2023
1.0.88 171 11/6/2023
1.0.87 783 11/3/2023
1.0.86 176 11/3/2023
1.0.85 1,203 11/2/2023
1.0.84 156 11/2/2023
1.0.83 780 11/1/2023
1.0.82 2,012 10/26/2023
1.0.81 1,797 10/19/2023
1.0.80 179 10/19/2023
1.0.79 1,074 10/18/2023
1.0.78 202 10/18/2023
1.0.77 982 10/17/2023
1.0.76 191 10/17/2023
1.0.75 879 10/16/2023
1.0.74 193 10/16/2023
1.0.73 954 10/13/2023
1.0.72 462 10/12/2023
1.0.71 2,293 9/20/2023
1.0.70 954 9/19/2023
1.0.69 927 9/18/2023
1.0.68 188 9/18/2023
1.0.67 1,250 9/14/2023
1.0.66 1,998 8/31/2023
1.0.65 191 8/31/2023
1.0.64 1,122 8/30/2023
1.0.63 217 8/30/2023
1.0.62 233 8/30/2023
1.0.61 1,143 8/28/2023
1.0.60 939 8/25/2023
1.0.59 193 8/25/2023
1.0.58 655 8/24/2023
1.0.57 2,025 8/21/2023
1.0.56 1,161 8/18/2023
1.0.55 1,009 8/17/2023
1.0.54 212 8/17/2023
1.0.53 2,605 8/10/2023
1.0.52 735 8/9/2023
1.0.51 896 8/8/2023
1.0.50 831 8/7/2023
1.0.49 238 8/7/2023
1.0.48 3,324 7/13/2023
1.0.47 1,174 7/11/2023
1.0.46 936 7/10/2023
1.0.45 877 7/7/2023
1.0.44 236 7/7/2023
1.0.43 2,823 6/30/2023
1.0.42 1,403 6/29/2023
1.0.41 753 6/28/2023
1.0.40 1,993 6/26/2023
1.0.39 1,063 6/23/2023
1.0.38 1,417 6/21/2023
1.0.37 1,945 6/15/2023
1.0.36 603 6/14/2023
1.0.35 2,353 6/9/2023
1.0.34 1,031 6/8/2023
1.0.33 2,055 6/7/2023
1.0.32 234 6/7/2023
1.0.31 1,489 6/6/2023
1.0.30 1,464 6/5/2023
1.0.29 1,660 6/2/2023
1.0.28 227 6/2/2023
1.0.27 1,516 6/1/2023
1.0.26 780 5/31/2023
1.0.25 590 5/31/2023
1.0.24 230 5/31/2023
1.0.23 1,850 5/30/2023
1.0.22 1,888 5/26/2023
1.0.21 877 5/25/2023
1.0.20 204 5/25/2023
1.0.19 1,027 5/24/2023
1.0.18 221 5/24/2023
1.0.17 587 5/23/2023
1.0.13 1,811 5/22/2023
1.0.12 1,501 5/18/2023
1.0.11 771 5/17/2023
1.0.10 1,865 5/1/2023
1.0.9 1,210 4/25/2023
1.0.8 567 4/24/2023
1.0.7 1,197 4/21/2023
1.0.6 2,349 4/13/2023
1.0.5 742 4/12/2023
1.0.4 1,209 4/8/2023
1.0.3 260 4/8/2023
1.0.2 761 4/8/2023
1.0.1 265 4/8/2023