Soenneker.Utils.SingletonDictionary 1.0.43

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.43
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 1.0.43
                    
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.43" />
                    
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.43" />
                    
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.43
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 1.0.43"
                    
#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.
#addin nuget:?package=Soenneker.Utils.SingletonDictionary&version=1.0.43
                    
Install Soenneker.Utils.SingletonDictionary as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=1.0.43
                    
Install Soenneker.Utils.SingletonDictionary 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.1090 1,874 5/27/2025
3.0.1089 651 5/27/2025
3.0.1088 737 5/27/2025
3.0.1087 1,770 5/27/2025
3.0.1086 12,275 5/23/2025
3.0.1085 1,235 5/23/2025
3.0.1084 1,192 5/23/2025
3.0.1083 1,206 5/23/2025
3.0.1082 234 5/22/2025
3.0.1081 9,379 5/18/2025
3.0.1079 1,401 5/18/2025
3.0.1078 1,345 5/18/2025
3.0.1077 3,925 5/14/2025
3.0.1076 8,771 5/8/2025
3.0.1075 273 5/8/2025
3.0.1074 569 5/8/2025
3.0.1073 1,078 5/7/2025
3.0.1072 12,723 5/5/2025
3.0.1071 845 5/5/2025
3.0.1070 1,541 5/5/2025
3.0.1069 708 5/5/2025
3.0.1068 223 5/5/2025
3.0.1067 135 5/5/2025
3.0.1066 18,018 4/9/2025
3.0.1065 258 4/9/2025
3.0.1064 1,057 4/8/2025
3.0.1063 2,191 4/8/2025
3.0.1062 3,003 4/8/2025
3.0.1061 190 4/8/2025
3.0.1060 157 4/8/2025
3.0.1059 188 4/8/2025
3.0.1058 151 4/8/2025
3.0.1057 857 4/8/2025
3.0.1056 278 4/8/2025
3.0.1055 6,394 4/8/2025
3.0.1054 652 4/8/2025
3.0.1053 3,273 4/7/2025
3.0.1052 708 4/7/2025
3.0.1051 160 4/7/2025
3.0.1050 590 4/7/2025
3.0.1049 157 4/7/2025
3.0.1048 6,765 4/7/2025
3.0.1047 164 4/7/2025
3.0.1046 9,321 4/7/2025
3.0.1045 155 4/7/2025
3.0.1044 1,373 4/7/2025
3.0.1043 157 4/7/2025
3.0.1042 1,618 4/7/2025
3.0.1041 931 4/6/2025
3.0.1040 284 4/6/2025
3.0.1039 161 4/6/2025
3.0.1038 1,051 4/6/2025
3.0.1037 159 4/6/2025
3.0.1036 393 4/6/2025
3.0.1035 1,176 4/6/2025
3.0.1034 138 4/6/2025
3.0.1033 2,045 4/6/2025
3.0.1032 97 4/6/2025
3.0.1031 149 4/6/2025
3.0.1030 111 4/6/2025
3.0.1029 1,603 4/5/2025
3.0.1028 171 4/5/2025
3.0.1027 1,147 4/5/2025
3.0.1026 1,205 4/5/2025
3.0.1025 1,047 4/5/2025
3.0.1024 634 4/5/2025
3.0.1023 532 4/5/2025
3.0.1022 110 4/5/2025
3.0.1021 1,268 4/4/2025
3.0.1020 6,951 4/4/2025
3.0.1019 23,314 4/4/2025
3.0.1018 6,629 4/1/2025
3.0.1017 2,608 4/1/2025
3.0.1016 152 4/1/2025
3.0.1015 5,377 4/1/2025
3.0.1014 2,327 3/31/2025
3.0.1013 363 3/31/2025
3.0.1012 3,885 3/31/2025
3.0.1011 6,712 3/29/2025
3.0.1010 1,045 3/29/2025
3.0.1009 1,388 3/29/2025
3.0.1008 91 3/29/2025
3.0.1007 4,293 3/27/2025
3.0.1006 3,819 3/25/2025
3.0.1005 592 3/25/2025
3.0.1004 3,075 3/25/2025
3.0.1003 6,009 3/21/2025
3.0.1002 2,529 3/21/2025
3.0.1001 7,268 3/18/2025
3.0.1000 3,369 3/18/2025
3.0.999 6,311 3/15/2025
3.0.998 1,752 3/15/2025
3.0.997 64 3/15/2025
3.0.996 6,015 3/12/2025
3.0.995 2,141 3/12/2025
3.0.994 161 3/12/2025
3.0.993 381 3/12/2025
3.0.992 147 3/12/2025
3.0.991 2,672 3/11/2025
3.0.990 158 3/11/2025
3.0.989 1,255 3/11/2025
3.0.988 159 3/11/2025
3.0.987 2,543 3/11/2025
3.0.986 164 3/11/2025
3.0.985 2,629 3/11/2025
3.0.984 153 3/11/2025
3.0.983 1,602 3/11/2025
3.0.982 161 3/11/2025
3.0.981 8,831 3/7/2025
3.0.980 2,583 3/7/2025
3.0.979 6,132 3/2/2025
3.0.978 1,025 3/2/2025
3.0.977 636 3/2/2025
3.0.976 107 3/2/2025
3.0.975 4,291 3/2/2025
3.0.974 96 3/2/2025
3.0.973 3,152 3/1/2025
3.0.972 93 3/1/2025
3.0.971 4,258 3/1/2025
3.0.970 114 3/1/2025
3.0.969 95 3/1/2025
3.0.968 395 3/1/2025
3.0.967 93 3/1/2025
3.0.966 5,778 3/1/2025
3.0.965 4,747 2/26/2025
3.0.964 810 2/26/2025
3.0.963 2,304 2/25/2025
3.0.962 89 2/25/2025
3.0.961 835 2/25/2025
3.0.960 91 2/25/2025
3.0.959 119 2/25/2025
3.0.958 1,818 2/25/2025
3.0.957 4,808 2/24/2025
3.0.956 4,451 2/23/2025
3.0.955 1,069 2/22/2025
3.0.954 93 2/22/2025
3.0.953 7,516 2/22/2025
3.0.952 2,173 2/22/2025
3.0.951 1,036 2/22/2025
3.0.950 750 2/22/2025
3.0.949 132 2/22/2025
3.0.948 109 2/22/2025
3.0.947 93 2/22/2025
3.0.946 4,596 2/21/2025
3.0.945 97 2/21/2025
3.0.944 5,458 2/21/2025
3.0.943 4,515 2/19/2025
3.0.942 1,600 2/19/2025
3.0.941 712 2/19/2025
3.0.940 99 2/19/2025
3.0.939 392 2/18/2025
3.0.938 97 2/18/2025
3.0.937 5,424 2/18/2025
3.0.936 98 2/18/2025
3.0.935 2,787 2/18/2025
3.0.934 6,444 2/16/2025
3.0.933 1,513 2/14/2025
3.0.932 797 2/14/2025
3.0.931 695 2/13/2025
3.0.930 2,363 2/13/2025
3.0.929 268 2/13/2025
3.0.928 3,647 2/13/2025
3.0.927 3,720 2/12/2025
3.0.926 1,447 2/12/2025
3.0.925 143 2/12/2025
3.0.924 98 2/12/2025
3.0.923 1,983 2/12/2025
3.0.922 331 2/12/2025
3.0.921 108 2/12/2025
3.0.920 179 2/12/2025
3.0.919 178 2/12/2025
3.0.918 101 2/12/2025
3.0.917 160 2/11/2025
3.0.916 3,361 2/11/2025
3.0.915 3,647 2/11/2025
3.0.914 2,161 2/11/2025
3.0.913 105 2/11/2025
3.0.912 387 2/11/2025
3.0.911 1,707 2/10/2025
3.0.910 107 2/10/2025
3.0.909 771 2/10/2025
3.0.908 105 2/10/2025
3.0.907 6,287 2/10/2025
3.0.906 106 2/10/2025
3.0.905 1,145 2/9/2025
3.0.904 5,580 2/9/2025
3.0.903 100 2/9/2025
3.0.902 7,078 2/8/2025
3.0.901 108 2/8/2025
3.0.900 1,662 2/7/2025
3.0.899 94 2/7/2025
3.0.898 1,565 2/7/2025
3.0.897 103 2/7/2025
3.0.896 630 2/7/2025
3.0.895 400 2/7/2025
3.0.894 107 2/7/2025
3.0.893 316 2/7/2025
3.0.892 99 2/7/2025
3.0.891 1,023 2/7/2025
3.0.890 98 2/7/2025
3.0.889 107 2/7/2025
3.0.888 10,539 2/7/2025
3.0.887 6,148 2/5/2025
3.0.886 584 2/5/2025
3.0.885 878 2/5/2025
3.0.884 276 2/5/2025
3.0.883 971 2/5/2025
3.0.882 647 2/5/2025
3.0.881 2,895 2/5/2025
3.0.880 106 2/5/2025
3.0.879 10,716 1/28/2025
3.0.878 626 1/28/2025
3.0.877 1,724 1/28/2025
3.0.876 212 1/28/2025
3.0.875 3,631 1/28/2025
3.0.874 616 1/27/2025
3.0.873 87 1/27/2025
3.0.872 170 1/27/2025
3.0.871 255 1/27/2025
3.0.870 91 1/27/2025
3.0.869 4,680 1/27/2025
3.0.868 4,344 1/26/2025
3.0.867 909 1/26/2025
3.0.866 166 1/26/2025
3.0.865 990 1/26/2025
3.0.864 1,300 1/25/2025
3.0.863 98 1/25/2025
3.0.862 5,498 1/25/2025
3.0.861 941 1/25/2025
3.0.860 287 1/25/2025
3.0.859 92 1/25/2025
3.0.858 1,772 1/25/2025
3.0.857 1,239 1/25/2025
3.0.856 6,362 1/24/2025
3.0.855 1,455 1/24/2025
3.0.854 85 1/24/2025
3.0.853 1,896 1/24/2025
3.0.852 304 1/24/2025
3.0.851 199 1/24/2025
3.0.850 2,989 1/24/2025
3.0.849 92 1/24/2025
3.0.848 470 1/23/2025
3.0.847 89 1/23/2025
3.0.846 551 1/23/2025
3.0.845 88 1/23/2025
3.0.844 7,541 1/22/2025
3.0.843 956 1/21/2025
3.0.842 935 1/21/2025
3.0.841 549 1/21/2025
3.0.840 95 1/21/2025
3.0.839 576 1/21/2025
3.0.838 709 1/21/2025
3.0.837 5,211 1/21/2025
3.0.836 521 1/21/2025
3.0.835 978 1/21/2025
3.0.834 98 1/21/2025
3.0.833 775 1/21/2025
3.0.832 87 1/21/2025
3.0.831 2,066 1/21/2025
3.0.830 84 1/21/2025
3.0.829 373 1/20/2025
3.0.828 2,673 1/20/2025
3.0.827 220 1/20/2025
3.0.826 1,953 1/20/2025
3.0.825 94 1/20/2025
3.0.824 1,036 1/20/2025
3.0.823 95 1/20/2025
3.0.822 102 1/20/2025
3.0.821 88 1/20/2025
3.0.820 340 1/20/2025
3.0.819 93 1/20/2025
3.0.818 95 1/20/2025
3.0.817 5,370 1/19/2025
3.0.816 97 1/19/2025
3.0.815 4,969 1/19/2025
3.0.814 1,534 1/19/2025
3.0.813 109 1/19/2025
3.0.812 364 1/19/2025
3.0.811 83 1/19/2025
3.0.810 1,791 1/19/2025
3.0.809 90 1/19/2025
3.0.808 3,088 1/18/2025
3.0.807 92 1/18/2025
3.0.806 6,867 1/17/2025
3.0.805 103 1/17/2025
3.0.804 571 1/17/2025
3.0.803 887 1/17/2025
3.0.802 3,984 1/16/2025
3.0.801 1,382 1/16/2025
3.0.800 1,995 1/16/2025
3.0.799 527 1/16/2025
3.0.798 1,144 1/16/2025
3.0.797 981 1/16/2025
3.0.796 84 1/16/2025
3.0.795 4,367 1/15/2025
3.0.794 86 1/15/2025
3.0.793 2,687 1/15/2025
3.0.792 86 1/15/2025
3.0.791 130 1/15/2025
3.0.790 3,168 1/15/2025
3.0.789 78 1/15/2025
3.0.788 2,655 1/15/2025
3.0.787 63 1/15/2025
3.0.786 425 1/15/2025
3.0.785 63 1/15/2025
3.0.784 1,540 1/15/2025
3.0.783 64 1/15/2025
3.0.782 203 1/14/2025
3.0.781 72 1/14/2025
3.0.780 83 1/14/2025
3.0.779 2,932 1/14/2025
3.0.778 507 1/14/2025
3.0.777 75 1/14/2025
3.0.776 1,172 1/14/2025
3.0.775 79 1/14/2025
3.0.774 4,951 1/13/2025
3.0.773 1,523 1/13/2025
3.0.772 1,288 1/13/2025
3.0.771 83 1/13/2025
3.0.770 4,824 1/11/2025
3.0.769 1,942 1/11/2025
3.0.768 106 1/11/2025
3.0.767 2,050 1/11/2025
3.0.766 97 1/11/2025
3.0.765 1,656 1/10/2025
3.0.764 1,793 1/10/2025
3.0.763 93 1/10/2025
3.0.762 747 1/10/2025
3.0.761 96 1/10/2025
3.0.760 90 1/10/2025
3.0.759 6,237 1/3/2025
3.0.758 458 1/3/2025
3.0.757 975 1/3/2025
3.0.756 123 1/3/2025
3.0.755 1,409 1/3/2025
3.0.754 104 1/3/2025
3.0.753 1,050 1/3/2025
3.0.752 1,011 1/2/2025
3.0.751 98 1/2/2025
3.0.750 1,694 1/2/2025
3.0.749 114 1/2/2025
3.0.748 2,818 1/2/2025
3.0.747 99 1/2/2025
3.0.746 104 1/2/2025
3.0.745 4,641 1/1/2025
3.0.744 988 1/1/2025
3.0.743 264 1/1/2025
3.0.742 112 1/1/2025
3.0.741 1,455 1/1/2025
3.0.740 107 1/1/2025
3.0.739 111 1/1/2025
3.0.738 115 1/1/2025
3.0.737 313 12/31/2024
3.0.736 109 12/31/2024
3.0.735 123 12/31/2024
3.0.734 607 12/31/2024
3.0.733 124 12/31/2024
3.0.732 4,538 12/31/2024
3.0.731 118 12/31/2024
3.0.730 4,350 12/31/2024
3.0.729 98 12/31/2024
3.0.728 2,567 12/31/2024
3.0.727 328 12/31/2024
3.0.726 99 12/31/2024
3.0.725 1,315 12/31/2024
3.0.724 100 12/31/2024
3.0.723 8,846 12/28/2024
3.0.722 1,118 12/28/2024
3.0.721 1,212 12/27/2024
3.0.720 104 12/27/2024
3.0.719 2,677 12/27/2024
3.0.718 4,878 12/24/2024
3.0.717 1,239 12/24/2024
3.0.716 932 12/24/2024
3.0.715 799 12/24/2024
3.0.714 1,373 12/24/2024
3.0.713 89 12/24/2024
3.0.712 2,244 12/24/2024
3.0.711 638 12/24/2024
3.0.710 97 12/24/2024
3.0.709 453 12/24/2024
3.0.708 969 12/24/2024
3.0.707 248 12/24/2024
3.0.706 118 12/24/2024
3.0.705 1,045 12/24/2024
3.0.704 98 12/24/2024
3.0.703 1,778 12/23/2024
3.0.702 2,740 12/23/2024
3.0.701 105 12/23/2024
3.0.700 660 12/23/2024
3.0.699 97 12/23/2024
3.0.698 1,827 12/23/2024
3.0.697 101 12/23/2024
3.0.696 1,444 12/23/2024
3.0.695 106 12/23/2024
3.0.694 436 12/22/2024
3.0.693 1,388 12/22/2024
3.0.692 3,988 12/22/2024
3.0.691 106 12/22/2024
3.0.690 1,544 12/22/2024
3.0.689 155 12/22/2024
3.0.688 464 12/22/2024
3.0.687 98 12/22/2024
3.0.686 260 12/22/2024
3.0.685 98 12/22/2024
3.0.684 6,750 12/22/2024
3.0.683 97 12/22/2024
3.0.682 1,060 12/21/2024
3.0.681 261 12/21/2024
3.0.680 104 12/21/2024
3.0.679 480 12/21/2024
3.0.678 765 12/21/2024
3.0.677 96 12/21/2024
3.0.676 3,770 12/21/2024
3.0.675 382 12/21/2024
3.0.674 96 12/21/2024
3.0.673 2,527 12/21/2024
3.0.672 674 12/21/2024
3.0.671 102 12/21/2024
3.0.670 1,573 12/20/2024
3.0.669 108 12/20/2024
3.0.668 98 12/20/2024
3.0.667 3,677 12/20/2024
3.0.666 1,133 12/20/2024
3.0.665 212 12/20/2024
3.0.664 3,441 12/19/2024
3.0.663 422 12/19/2024
3.0.662 2,011 12/18/2024
3.0.661 105 12/18/2024
3.0.660 6,569 12/17/2024
3.0.659 208 12/17/2024
3.0.658 685 12/16/2024
3.0.657 108 12/16/2024
3.0.656 138 12/16/2024
3.0.655 95 12/16/2024
3.0.654 6,469 12/10/2024
3.0.653 992 12/10/2024
3.0.652 376 12/9/2024
3.0.651 102 12/9/2024
3.0.650 2,663 12/9/2024
3.0.649 1,364 12/9/2024
3.0.648 95 12/9/2024
3.0.647 3,622 12/9/2024
3.0.646 2,726 12/6/2024
3.0.645 423 12/6/2024
3.0.644 106 12/6/2024
3.0.643 684 12/6/2024
3.0.641 3,866 12/6/2024
3.0.640 2,438 12/6/2024
3.0.639 5,270 12/6/2024
3.0.637 369 12/6/2024
3.0.636 2,515 12/5/2024
3.0.635 3,564 12/5/2024
3.0.634 3,168 12/5/2024
3.0.633 101 12/5/2024
3.0.632 1,733 12/5/2024
3.0.631 1,026 12/5/2024
3.0.630 104 12/5/2024
3.0.629 374 12/5/2024
3.0.628 99 12/5/2024
3.0.627 143 12/5/2024
3.0.626 98 12/5/2024
3.0.625 3,354 12/4/2024
3.0.624 97 12/4/2024
3.0.623 108 12/4/2024
3.0.622 106 12/4/2024
3.0.621 1,711 12/4/2024
3.0.620 292 12/4/2024
3.0.619 408 12/4/2024
3.0.618 3,359 12/3/2024
3.0.617 106 12/3/2024
3.0.616 1,120 12/3/2024
3.0.615 437 12/3/2024
3.0.614 111 12/3/2024
3.0.613 108 12/3/2024
3.0.612 4,031 12/3/2024
3.0.611 102 12/3/2024
3.0.610 3,289 12/3/2024
3.0.609 95 12/3/2024
3.0.608 3,066 12/2/2024
3.0.607 2,650 12/2/2024
3.0.606 1,618 12/2/2024
3.0.605 269 12/2/2024
3.0.604 104 12/2/2024
3.0.603 396 12/2/2024
3.0.602 3,442 12/1/2024
3.0.601 107 12/1/2024
3.0.600 1,872 12/1/2024
3.0.599 192 12/1/2024
3.0.598 3,454 12/1/2024
3.0.597 112 12/1/2024
3.0.596 3,562 11/29/2024
3.0.595 1,047 11/29/2024
3.0.594 5,746 11/21/2024
3.0.593 289 11/21/2024
3.0.592 4,510 11/20/2024
3.0.591 332 11/20/2024
3.0.590 107 11/20/2024
3.0.589 110 11/20/2024
3.0.588 420 11/20/2024
3.0.587 152 11/20/2024
3.0.586 99 11/20/2024
3.0.585 2,024 11/20/2024
3.0.584 2,755 11/19/2024
3.0.583 98 11/19/2024
3.0.582 637 11/19/2024
3.0.581 99 11/19/2024
3.0.580 2,674 11/19/2024
3.0.579 96 11/19/2024
3.0.578 1,312 11/19/2024
3.0.577 102 11/19/2024
3.0.576 8,513 11/14/2024
3.0.575 134 11/14/2024
3.0.574 505 11/14/2024
3.0.573 2,368 11/14/2024
3.0.572 720 11/14/2024
3.0.571 109 11/14/2024
3.0.570 110 11/14/2024
3.0.569 4,140 11/14/2024
3.0.568 113 11/14/2024
3.0.567 108 11/14/2024
3.0.566 3,486 11/14/2024
3.0.565 109 11/14/2024
3.0.564 108 11/14/2024
3.0.563 107 11/14/2024
2.1.562 8,435 11/13/2024
2.1.561 1,372 11/13/2024
2.1.560 3,050 11/13/2024
2.1.559 108 11/13/2024
2.1.558 1,332 11/12/2024
2.1.557 399 11/12/2024
2.1.556 8,243 11/9/2024
2.1.555 360 11/9/2024
2.1.554 103 11/9/2024
2.1.553 1,733 11/9/2024
2.1.552 106 11/9/2024
2.1.551 958 11/8/2024
2.1.550 108 11/8/2024
2.1.549 107 11/8/2024
2.1.548 108 11/8/2024
2.1.547 422 11/8/2024
2.1.546 1,889 11/8/2024
2.1.545 104 11/8/2024
2.1.544 5,457 11/8/2024
2.1.543 101 11/8/2024
2.1.542 11,648 11/1/2024
2.1.541 458 11/1/2024
2.1.540 6,775 10/29/2024
2.1.539 735 10/29/2024
2.1.538 2,835 10/29/2024
2.1.537 626 10/29/2024
2.1.536 5,556 10/28/2024
2.1.535 1,854 10/28/2024
2.1.534 4,010 10/26/2024
2.1.533 702 10/26/2024
2.1.532 9,230 10/22/2024
2.1.531 253 10/22/2024
2.1.530 548 10/22/2024
2.1.529 878 10/22/2024
2.1.528 92 10/22/2024
2.1.527 493 10/22/2024
2.1.526 6,502 10/18/2024
2.1.525 1,084 10/17/2024
2.1.524 4,149 10/15/2024
2.1.523 1,595 10/15/2024
2.1.522 100 10/14/2024
2.1.521 5,126 10/12/2024
2.1.520 649 10/11/2024
2.1.519 103 10/11/2024
2.1.518 474 10/11/2024
2.1.517 2,920 10/11/2024
2.1.516 6,382 10/9/2024
2.1.515 381 10/9/2024
2.1.514 99 10/9/2024
2.1.513 1,971 10/8/2024
2.1.512 142 10/8/2024
2.1.511 2,217 10/8/2024
2.1.510 144 10/8/2024
2.1.509 96 10/8/2024
2.1.508 3,936 10/8/2024
2.1.507 6,216 10/3/2024
2.1.506 104 10/3/2024
2.1.505 1,100 10/3/2024
2.1.504 1,923 10/3/2024
2.1.503 1,416 10/3/2024
2.1.502 5,720 10/2/2024
2.1.501 102 10/2/2024
2.1.500 1,814 10/2/2024
2.1.499 998 10/2/2024
2.1.498 4,173 10/1/2024
2.1.497 700 10/1/2024
2.1.496 113 10/1/2024
2.1.495 2,621 10/1/2024
2.1.494 106 10/1/2024
2.1.493 145 10/1/2024
2.1.492 5,424 9/29/2024
2.1.491 1,376 9/29/2024
2.1.490 107 9/29/2024
2.1.489 1,220 9/29/2024
2.1.488 108 9/29/2024
2.1.487 2,513 9/29/2024
2.1.486 5,229 9/27/2024
2.1.485 775 9/27/2024
2.1.484 3,128 9/27/2024
2.1.483 113 9/27/2024
2.1.482 446 9/27/2024
2.1.481 2,156 9/27/2024
2.1.480 3,158 9/26/2024
2.1.479 3,480 9/26/2024
2.1.478 2,353 9/26/2024
2.1.477 2,165 9/26/2024
2.1.476 3,804 9/26/2024
2.1.475 107 9/26/2024
2.1.474 5,600 9/23/2024
2.1.473 1,294 9/23/2024
2.1.472 949 9/23/2024
2.1.471 1,146 9/23/2024
2.1.470 108 9/23/2024
2.1.469 1,548 9/23/2024
2.1.468 100 9/23/2024
2.1.467 4,662 9/23/2024
2.1.466 106 9/23/2024
2.1.465 714 9/23/2024
2.1.464 115 9/23/2024
2.1.463 102 9/23/2024
2.1.462 885 9/23/2024
2.1.461 9,177 9/18/2024
2.1.460 253 9/17/2024
2.1.459 1,200 9/17/2024
2.1.458 1,712 9/17/2024
2.1.457 106 9/17/2024
2.1.456 1,803 9/17/2024
2.1.455 462 9/17/2024
2.1.454 3,276 9/17/2024
2.1.453 551 9/17/2024
2.1.452 196 9/17/2024
2.1.451 2,649 9/17/2024
2.1.450 7,453 9/16/2024
2.1.449 718 9/16/2024
2.1.448 5,023 9/12/2024
2.1.447 2,920 9/12/2024
2.1.446 1,311 9/11/2024
2.1.445 1,529 9/11/2024
2.1.443 3,715 9/11/2024
2.1.442 995 9/11/2024
2.1.441 961 9/11/2024
2.1.440 2,310 9/11/2024
2.1.439 8,086 9/10/2024
2.1.438 128 9/10/2024
2.1.437 1,153 9/10/2024
2.1.436 123 9/10/2024
2.1.434 2,918 9/10/2024
2.1.433 605 9/9/2024
2.1.432 2,008 9/9/2024
2.1.430 1,549 9/9/2024
2.1.428 144 9/9/2024
2.1.427 465 9/9/2024
2.1.426 13,248 9/7/2024
2.1.425 136 9/7/2024
2.1.424 5,007 9/6/2024
2.1.423 374 9/6/2024
2.1.422 2,207 9/6/2024
2.1.421 121 9/5/2024
2.1.420 132 9/5/2024
2.1.419 2,389 9/5/2024
2.1.418 1,154 9/5/2024
2.1.417 131 9/5/2024
2.1.416 1,150 9/5/2024
2.1.415 441 9/5/2024
2.1.414 124 9/5/2024
2.1.413 5,033 9/5/2024
2.1.412 203 9/5/2024
2.1.411 129 9/5/2024
2.1.410 2,260 9/4/2024
2.1.409 8,008 9/3/2024
2.1.408 113 9/3/2024
2.1.407 107 9/3/2024
2.1.406 4,011 9/3/2024
2.1.405 157 9/3/2024
2.1.404 2,485 9/3/2024
2.1.403 5,285 8/29/2024
2.1.402 2,551 8/29/2024
2.1.401 2,889 8/26/2024
2.1.400 115 8/26/2024
2.1.399 4,939 8/21/2024
2.1.398 613 8/21/2024
2.1.397 136 8/21/2024
2.1.396 2,553 8/21/2024
2.1.395 148 8/20/2024
2.1.394 144 8/20/2024
2.1.393 474 8/20/2024
2.1.392 2,960 8/20/2024
2.1.391 423 8/20/2024
2.1.390 121 8/20/2024
2.1.389 2,649 8/20/2024
2.1.388 123 8/20/2024
2.1.387 1,210 8/20/2024
2.1.386 2,900 8/19/2024
2.1.385 4,773 8/15/2024
2.1.384 2,115 8/15/2024
2.1.383 4,811 8/14/2024
2.1.382 160 8/13/2024
2.1.381 5,695 8/7/2024
2.1.380 279 8/6/2024
2.1.379 2,690 8/6/2024
2.1.378 4,930 8/1/2024
2.1.377 339 8/1/2024
2.1.376 103 8/1/2024
2.1.374 1,137 8/1/2024
2.1.373 5,795 7/25/2024
2.1.372 99 7/25/2024
2.1.371 725 7/25/2024
2.1.370 310 7/25/2024
2.1.369 361 7/25/2024
2.1.368 186 7/25/2024
2.1.367 386 7/24/2024
2.1.366 147 7/24/2024
2.1.365 209 7/24/2024
2.1.364 319 7/24/2024
2.1.363 8,493 7/20/2024
2.1.362 1,455 7/20/2024
2.1.361 5,002 7/14/2024
2.1.360 1,548 7/14/2024
2.1.359 108 7/14/2024
2.1.358 1,501 7/14/2024
2.1.357 4,317 7/10/2024
2.1.355 799 7/10/2024
2.1.354 1,185 7/10/2024
2.1.353 125 7/10/2024
2.1.352 1,906 7/10/2024
2.1.351 128 7/10/2024
2.1.350 114 7/10/2024
2.1.349 181 7/10/2024
2.1.348 111 7/10/2024
2.1.347 2,050 7/10/2024
2.1.346 129 7/10/2024
2.1.345 814 7/10/2024
2.1.344 113 7/10/2024
2.1.343 213 7/9/2024
2.1.342 102 7/9/2024
2.1.339 1,976 7/9/2024
2.1.338 490 7/9/2024
2.1.337 4,011 7/9/2024
2.1.336 1,072 7/9/2024
2.1.335 118 7/9/2024
2.1.334 2,583 7/9/2024
2.1.333 119 7/9/2024
2.1.332 8,360 7/9/2024
2.1.331 108 7/9/2024
2.1.330 2,504 7/9/2024
2.1.329 99 7/9/2024
2.1.328 1,068 7/9/2024
2.1.327 714 7/8/2024
2.1.326 964 7/8/2024
2.1.325 128 7/8/2024
2.1.324 125 7/8/2024
2.1.323 4,843 7/8/2024
2.1.322 1,623 7/8/2024
2.1.321 130 7/8/2024
2.1.320 2,276 7/7/2024
2.1.319 124 7/7/2024
2.1.318 133 7/7/2024
2.1.317 116 7/7/2024
2.1.316 1,153 7/7/2024
2.1.315 2,162 7/7/2024
2.1.314 1,854 7/7/2024
2.1.313 221 7/7/2024
2.1.312 3,385 7/5/2024
2.1.311 3,868 7/3/2024
2.1.310 3,036 7/3/2024
2.1.309 389 7/3/2024
2.1.308 3,901 7/2/2024
2.1.307 1,856 6/30/2024
2.1.306 2,244 6/28/2024
2.1.305 5,387 6/22/2024
2.1.304 4,854 6/15/2024
2.1.303 4,083 6/14/2024
2.1.302 5,873 6/1/2024
2.1.301 1,585 6/1/2024
2.1.300 582 6/1/2024
2.1.299 5,807 5/31/2024
2.1.298 3,689 5/29/2024
2.1.297 3,024 5/28/2024
2.1.296 2,456 5/27/2024
2.1.295 4,811 5/26/2024
2.1.294 2,011 5/26/2024
2.1.293 484 5/26/2024
2.1.292 2,497 5/25/2024
2.1.291 1,375 5/25/2024
2.1.290 131 5/25/2024
2.1.289 124 5/25/2024
2.1.288 679 5/25/2024
2.1.287 125 5/25/2024
2.1.286 405 5/25/2024
2.1.285 138 5/25/2024
2.1.284 126 5/25/2024
2.1.283 7,381 5/23/2024
2.1.282 528 5/23/2024
2.1.281 270 5/22/2024
2.1.280 3,624 5/22/2024
2.1.279 119 5/22/2024
2.1.278 133 5/22/2024
2.1.277 135 5/22/2024
2.1.276 2,111 5/22/2024
2.1.275 3,410 5/18/2024
2.1.274 1,888 5/18/2024
2.1.273 1,796 5/17/2024
2.1.272 114 5/17/2024
2.1.271 2,717 5/16/2024
2.1.270 437 5/15/2024
2.1.269 2,738 5/15/2024
2.1.268 4,439 5/12/2024
2.1.267 2,732 5/3/2024
2.1.266 1,134 4/30/2024
2.1.265 1,746 4/29/2024
2.1.264 1,905 4/29/2024
2.1.263 2,638 4/28/2024
2.1.262 1,474 4/28/2024
2.1.261 1,099 4/28/2024
2.1.260 1,746 4/28/2024
2.1.259 904 4/28/2024
2.1.258 117 4/28/2024
2.1.257 4,137 4/27/2024
2.1.256 131 4/27/2024
2.1.255 4,362 4/19/2024
2.1.254 4,057 4/18/2024
2.1.253 3,423 4/12/2024
2.1.252 1,141 4/12/2024
2.1.251 726 4/12/2024
2.1.250 859 4/12/2024
2.1.249 197 4/12/2024
2.1.248 113 4/12/2024
2.1.247 985 4/12/2024
2.1.246 304 4/12/2024
2.1.245 1,645 4/11/2024
2.1.244 3,703 4/10/2024
2.1.243 1,132 4/9/2024
2.1.242 3,156 4/2/2024
2.1.241 899 4/1/2024
2.1.240 2,074 3/29/2024
2.1.239 1,830 3/25/2024
2.1.238 295 3/25/2024
2.1.237 3,293 3/20/2024
2.1.236 2,132 3/19/2024
2.1.235 526 3/19/2024
2.1.234 2,335 3/18/2024
2.1.233 1,392 3/18/2024
2.1.232 1,373 3/15/2024
2.1.231 2,342 3/13/2024
2.1.230 1,095 3/13/2024
2.1.229 660 3/13/2024
2.1.228 760 3/13/2024
2.1.227 139 3/13/2024
2.1.226 540 3/13/2024
2.1.225 144 3/13/2024
2.1.224 151 3/13/2024
2.1.223 1,658 3/12/2024
2.1.222 2,820 3/11/2024
2.1.221 2,462 3/11/2024
2.1.220 1,618 3/10/2024
2.1.219 1,868 3/8/2024
2.1.218 1,056 3/8/2024
2.1.217 1,552 3/8/2024
2.1.216 2,070 3/6/2024
2.1.215 1,994 3/4/2024
2.1.214 1,409 3/4/2024
2.1.213 2,554 3/2/2024
2.1.212 1,208 3/2/2024
2.1.211 407 3/2/2024
2.1.210 351 3/2/2024
2.1.209 472 3/2/2024
2.1.208 3,417 2/29/2024
2.1.207 639 2/29/2024
2.1.206 339 2/29/2024
2.1.205 3,292 2/26/2024
2.1.204 1,482 2/25/2024
2.1.203 2,586 2/23/2024
2.1.202 1,889 2/22/2024
2.1.201 953 2/22/2024
2.1.200 435 2/21/2024
2.1.199 1,185 2/21/2024
2.1.198 295 2/21/2024
2.1.197 768 2/21/2024
2.1.196 134 2/21/2024
2.1.195 1,241 2/21/2024
2.1.194 409 2/21/2024
2.1.193 142 2/21/2024
2.1.192 141 2/21/2024
2.1.191 595 2/21/2024
2.1.190 121 2/21/2024
2.1.189 2,627 2/20/2024
2.1.188 720 2/20/2024
2.1.187 642 2/20/2024
2.1.186 753 2/20/2024
2.1.185 2,114 2/19/2024
2.1.184 1,868 2/17/2024
2.1.183 896 2/16/2024
2.1.182 859 2/16/2024
2.1.181 1,351 2/16/2024
2.1.180 127 2/16/2024
2.1.179 639 2/16/2024
2.1.178 137 2/16/2024
2.1.177 135 2/16/2024
2.1.176 555 2/16/2024
2.1.175 122 2/16/2024
2.1.174 3,282 2/13/2024
2.1.173 1,379 2/13/2024
2.1.172 1,084 2/13/2024
2.1.171 455 2/13/2024
2.1.170 628 2/13/2024
2.1.169 1,933 2/12/2024
2.1.168 512 2/11/2024
2.1.167 1,516 2/11/2024
2.1.166 856 2/11/2024
2.1.165 2,776 2/10/2024
2.1.164 547 2/9/2024
2.1.163 148 2/9/2024
2.1.162 1,556 2/9/2024
2.1.161 1,663 2/9/2024
2.1.160 388 2/8/2024
2.1.159 1,215 2/8/2024
2.1.158 851 2/8/2024
2.1.157 1,456 2/8/2024
2.1.156 131 2/8/2024
2.1.155 1,858 2/7/2024
2.1.154 443 2/7/2024
2.1.153 605 2/7/2024
2.1.152 1,264 2/7/2024
2.1.151 383 2/6/2024
2.1.150 139 2/6/2024
2.1.149 133 2/6/2024
2.1.148 2,767 2/5/2024
2.1.147 1,524 2/4/2024
2.1.146 2,083 2/2/2024
2.1.145 1,910 1/31/2024
2.1.144 2,132 1/29/2024
2.1.143 1,355 1/29/2024
2.1.142 348 1/29/2024
2.1.141 1,482 1/28/2024
2.1.140 459 1/28/2024
2.1.139 308 1/28/2024
2.1.138 546 1/28/2024
2.1.137 1,920 1/28/2024
2.1.136 928 1/28/2024
2.1.135 289 1/27/2024
2.1.134 929 1/27/2024
2.1.133 1,162 1/27/2024
2.1.132 1,180 1/27/2024
2.1.131 158 1/27/2024
2.1.130 699 1/27/2024
2.1.129 1,051 1/26/2024
2.1.128 222 1/26/2024
2.1.127 873 1/26/2024
2.1.126 1,119 1/26/2024
2.1.125 1,627 1/26/2024
2.1.124 887 1/25/2024
2.1.123 1,100 1/25/2024
2.1.122 455 1/25/2024
2.1.121 917 1/25/2024
2.1.120 522 1/25/2024
2.1.119 2,571 1/19/2024
2.1.118 2,215 1/15/2024
2.1.117 504 1/15/2024
2.1.116 1,221 1/15/2024
2.1.115 135 1/15/2024
2.1.114 565 1/15/2024
2.1.113 1,372 1/15/2024
2.1.112 2,544 1/14/2024
2.1.111 1,617 1/13/2024
2.1.110 1,837 1/12/2024
2.1.109 2,044 1/11/2024
2.1.108 2,639 1/7/2024
2.1.107 2,087 1/5/2024
2.1.106 489 1/5/2024
2.1.105 145 1/5/2024
2.1.104 150 1/5/2024
2.1.103 1,489 1/5/2024
2.1.102 150 1/5/2024
2.1.101 2,769 1/1/2024
2.1.100 2,217 12/28/2023
2.1.99 745 12/28/2023
2.1.98 501 12/28/2023
2.1.97 141 12/28/2023
2.1.96 137 12/28/2023
2.1.95 718 12/27/2023
2.1.94 149 12/27/2023
2.1.93 476 12/27/2023
2.1.92 144 12/27/2023
2.1.91 144 12/27/2023
2.1.90 2,220 12/25/2023
2.1.89 358 12/25/2023
2.1.88 782 12/25/2023
2.1.87 147 12/25/2023
2.1.86 640 12/25/2023
2.1.85 138 12/25/2023
2.1.84 576 12/25/2023
2.1.83 144 12/25/2023
2.1.82 1,663 12/24/2023
2.1.81 1,076 12/23/2023
2.1.80 874 12/23/2023
2.1.79 320 12/23/2023
2.1.78 561 12/23/2023
2.1.77 137 12/23/2023
2.1.76 128 12/23/2023
2.1.75 1,090 12/23/2023
2.1.74 131 12/23/2023
2.1.73 1,405 12/19/2023
2.1.72 225 12/19/2023
2.1.71 3,085 12/11/2023
2.1.70 727 12/10/2023
2.1.69 126 12/10/2023
2.1.68 493 12/10/2023
2.1.67 1,420 12/10/2023
2.1.66 374 12/9/2023
2.1.65 375 12/9/2023
2.1.64 299 12/9/2023
2.1.63 140 12/9/2023
2.1.62 271 12/9/2023
2.1.61 206 12/9/2023
2.1.60 141 12/9/2023
2.1.59 1,075 12/9/2023
2.1.58 135 12/9/2023
2.1.57 1,523 12/6/2023
2.1.56 394 12/6/2023
2.1.55 246 12/6/2023
2.1.54 276 12/6/2023
2.1.53 928 12/5/2023
2.1.52 381 12/5/2023
2.1.51 345 12/5/2023
2.1.50 386 12/5/2023
2.1.49 133 12/5/2023
2.1.48 342 12/5/2023
2.1.47 279 12/5/2023
2.1.46 132 12/4/2023
2.1.45 135 12/4/2023
2.1.44 332 12/4/2023
2.1.43 146 12/4/2023
2.1.42 1,010 12/4/2023
2.1.41 116 12/4/2023
2.1.40 1,173 11/27/2023
2.1.39 523 11/26/2023
2.1.38 217 11/26/2023
2.1.37 627 11/23/2023
2.1.36 687 11/23/2023
2.1.35 642 11/23/2023
2.1.34 134 11/23/2023
2.1.33 401 11/23/2023
2.1.32 140 11/23/2023
2.1.31 1,078 11/20/2023
2.1.30 1,056 11/20/2023
2.1.29 807 11/19/2023
2.1.28 265 11/19/2023
2.1.27 460 11/19/2023
2.1.26 509 11/19/2023
2.1.25 503 11/19/2023
2.1.24 123 11/19/2023
2.1.23 222 11/18/2023
2.1.22 980 11/18/2023
2.1.21 381 11/18/2023
2.1.20 534 11/18/2023
2.1.19 134 11/18/2023
2.1.18 308 11/18/2023
2.1.17 129 11/18/2023
2.1.16 603 11/17/2023
2.1.15 519 11/17/2023
2.1.14 128 11/17/2023
2.1.13 424 11/17/2023
2.1.12 300 11/17/2023
2.1.11 497 11/17/2023
2.1.10 130 11/17/2023
2.1.9 511 11/17/2023
2.1.8 129 11/17/2023
2.1.7 146 11/17/2023
2.1.6 336 11/17/2023
2.1.5 373 11/16/2023
2.0.101 2,074 11/15/2023
2.0.100 125 11/15/2023
2.0.99 134 11/15/2023
2.0.4 132 11/16/2023
2.0.3 136 11/16/2023
2.0.2 129 11/16/2023
2.0.1 126 11/16/2023
1.0.98 613 11/14/2023
1.0.97 752 11/13/2023
1.0.96 120 11/13/2023
1.0.95 573 11/10/2023
1.0.94 124 11/10/2023
1.0.93 937 11/9/2023
1.0.92 129 11/9/2023
1.0.91 1,047 11/7/2023
1.0.90 120 11/7/2023
1.0.89 506 11/6/2023
1.0.88 130 11/6/2023
1.0.87 598 11/3/2023
1.0.86 135 11/3/2023
1.0.85 892 11/2/2023
1.0.84 126 11/2/2023
1.0.83 606 11/1/2023
1.0.82 1,449 10/26/2023
1.0.81 1,298 10/19/2023
1.0.80 142 10/19/2023
1.0.79 777 10/18/2023
1.0.78 159 10/18/2023
1.0.77 730 10/17/2023
1.0.76 147 10/17/2023
1.0.75 652 10/16/2023
1.0.74 152 10/16/2023
1.0.73 700 10/13/2023
1.0.72 337 10/12/2023
1.0.71 1,735 9/20/2023
1.0.70 674 9/19/2023
1.0.69 682 9/18/2023
1.0.68 144 9/18/2023
1.0.67 893 9/14/2023
1.0.66 1,504 8/31/2023
1.0.65 150 8/31/2023
1.0.64 806 8/30/2023
1.0.63 159 8/30/2023
1.0.62 164 8/30/2023
1.0.61 839 8/28/2023
1.0.60 693 8/25/2023
1.0.59 152 8/25/2023
1.0.58 491 8/24/2023
1.0.57 1,451 8/21/2023
1.0.56 827 8/18/2023
1.0.55 748 8/17/2023
1.0.54 156 8/17/2023
1.0.53 1,898 8/10/2023
1.0.52 564 8/9/2023
1.0.51 672 8/8/2023
1.0.50 654 8/7/2023
1.0.49 180 8/7/2023
1.0.48 2,454 7/13/2023
1.0.47 888 7/11/2023
1.0.46 723 7/10/2023
1.0.45 688 7/7/2023
1.0.44 174 7/7/2023
1.0.43 2,110 6/30/2023
1.0.42 1,057 6/29/2023
1.0.41 599 6/28/2023
1.0.40 1,536 6/26/2023
1.0.39 782 6/23/2023
1.0.38 1,089 6/21/2023
1.0.37 1,447 6/15/2023
1.0.36 480 6/14/2023
1.0.35 1,798 6/9/2023
1.0.34 827 6/8/2023
1.0.33 1,628 6/7/2023
1.0.32 178 6/7/2023
1.0.31 1,221 6/6/2023
1.0.30 1,180 6/5/2023
1.0.29 1,354 6/2/2023
1.0.28 165 6/2/2023
1.0.27 1,250 6/1/2023
1.0.26 605 5/31/2023
1.0.25 489 5/31/2023
1.0.24 172 5/31/2023
1.0.23 1,468 5/30/2023
1.0.22 1,523 5/26/2023
1.0.21 681 5/25/2023
1.0.20 158 5/25/2023
1.0.19 836 5/24/2023
1.0.18 166 5/24/2023
1.0.17 455 5/23/2023
1.0.13 1,474 5/22/2023
1.0.12 1,195 5/18/2023
1.0.11 599 5/17/2023
1.0.10 1,559 5/1/2023
1.0.9 1,031 4/25/2023
1.0.8 482 4/24/2023
1.0.7 1,005 4/21/2023
1.0.6 1,965 4/13/2023
1.0.5 603 4/12/2023
1.0.4 1,024 4/8/2023
1.0.3 197 4/8/2023
1.0.2 596 4/8/2023
1.0.1 202 4/8/2023