Soenneker.Utils.AsyncSingleton 2.1.167

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

// Install Soenneker.Utils.AsyncSingleton as a Cake Tool
#tool nuget:?package=Soenneker.Utils.AsyncSingleton&version=2.1.167                

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.AsyncSingleton

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

Installation

dotnet add package Soenneker.Utils.AsyncSingleton

Example

The example below is a long-living HttpClient implementation using AsyncSingleton. It avoids the additional overhead of IHttpClientFactory, and doesn't rely on short-lived clients.

public class HttpRequester : IDisposable, IAsyncDisposable
{
    private readonly AsyncSingleton<HttpClient> _client;

    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.
        _client = new AsyncSingleton<HttpClient>(() =>
        {
            var socketsHandler = new SocketsHttpHandler
            {
                PooledConnectionLifetime = TimeSpan.FromMinutes(10),
                MaxConnectionsPerServer = 10
            };

            return new HttpClient(socketsHandler);
        });
    }

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

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

        return _client.DisposeAsync();
    }

    public void Dispose()
    {
        GC.SuppressFinalize(this);
        
        _client.Dispose();
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (23)

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

Package Downloads
Soenneker.Utils.MemoryStream

An easy modern MemoryStream utility

Soenneker.Redis.Client

A utility library for Redis client accessibility

Soenneker.Cosmos.Client

A utility library for Azure Cosmos client accessibility

Soenneker.Blob.Container

A utility library for Azure Blob storage container operations

Soenneker.ServiceBus.Admin

A utility library for Azure Service Bus Administration client accessibility

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.450 1,185 11/20/2024
3.0.449 2,807 11/20/2024
3.0.448 221 11/20/2024
3.0.447 1,221 11/20/2024
3.0.445 1,717 11/19/2024
3.0.444 1,515 11/19/2024
3.0.443 3,899 11/19/2024
3.0.442 2,943 11/19/2024
3.0.441 31 11/19/2024
3.0.439 9,324 11/14/2024
3.0.438 4,250 11/14/2024
3.0.437 1,801 11/14/2024
3.0.436 3,322 11/14/2024
3.0.435 295 11/14/2024
3.0.434 64 11/14/2024
3.0.433 1,114 11/14/2024
3.0.432 65 11/14/2024
2.1.431 14,660 11/13/2024
2.1.430 3,131 11/13/2024
2.1.429 2,423 11/12/2024
2.1.428 11,351 11/9/2024
2.1.427 2,343 11/9/2024
2.1.426 2,528 11/8/2024
2.1.425 1,145 11/8/2024
2.1.424 1,282 11/8/2024
2.1.423 1,491 11/8/2024
2.1.422 1,738 11/8/2024
2.1.421 4,645 11/8/2024
2.1.420 18,022 11/1/2024
2.1.419 8,226 10/29/2024
2.1.418 3,197 10/29/2024
2.1.417 4,360 10/29/2024
2.1.416 8,163 10/28/2024
2.1.415 8,270 10/26/2024
2.1.414 7,850 10/22/2024
2.1.413 2,923 10/22/2024
2.1.412 1,640 10/22/2024
2.1.411 8,997 10/17/2024
2.1.410 8,029 10/15/2024
2.1.409 1,466 10/14/2024
2.1.408 8,323 10/11/2024
2.1.407 2,272 10/11/2024
2.1.406 1,482 10/11/2024
2.1.404 12,257 10/8/2024
2.1.403 5,051 10/8/2024
2.1.402 15,066 10/3/2024
2.1.401 1,070 10/3/2024
2.1.400 2,525 10/3/2024
2.1.399 9,788 10/2/2024
2.1.398 3,235 10/2/2024
2.1.397 10,197 10/1/2024
2.1.396 903 10/1/2024
2.1.395 5,046 9/30/2024
2.1.394 7,860 9/29/2024
2.1.393 2,537 9/29/2024
2.1.392 2,437 9/29/2024
2.1.391 6,775 9/27/2024
2.1.390 4,710 9/27/2024
2.1.389 143 9/27/2024
2.1.388 720 9/27/2024
2.1.387 1,740 9/27/2024
2.1.386 87 9/27/2024
2.1.385 10,454 9/26/2024
2.1.384 9,158 9/26/2024
2.1.383 3,988 9/26/2024
2.1.382 11,516 9/23/2024
2.1.381 2,865 9/23/2024
2.1.380 4,968 9/23/2024
2.1.379 4,937 9/23/2024
2.1.378 3,732 9/23/2024
2.1.377 742 9/23/2024
2.1.376 1,860 9/23/2024
2.1.375 79 9/23/2024
2.1.374 13,571 9/17/2024
2.1.373 655 9/17/2024
2.1.372 2,721 9/17/2024
2.1.371 2,719 9/17/2024
2.1.370 3,102 9/17/2024
2.1.369 4,224 9/17/2024
2.1.368 4,719 9/17/2024
2.1.367 15,463 9/16/2024
2.1.366 7,994 9/12/2024
2.1.365 3,029 9/11/2024
2.1.363 8,885 9/11/2024
2.1.362 17,158 9/10/2024
2.1.361 707 9/10/2024
2.1.360 1,028 9/10/2024
2.1.359 906 9/10/2024
2.1.358 3,653 9/9/2024
2.1.357 1,502 9/9/2024
2.1.356 6,262 9/9/2024
2.1.355 1,731 9/9/2024
2.1.354 6,991 9/9/2024
2.1.353 13,455 9/7/2024
2.1.352 9,905 9/6/2024
2.1.351 5,120 9/5/2024
2.1.350 5,140 9/5/2024
2.1.349 541 9/5/2024
2.1.348 125 9/5/2024
2.1.347 9,025 9/5/2024
2.1.346 1,001 9/4/2024
2.1.345 13,578 9/3/2024
2.1.344 6,102 9/3/2024
2.1.343 4,515 9/3/2024
2.1.342 8,655 8/29/2024
2.1.341 7,242 8/26/2024
2.1.340 7,665 8/21/2024
2.1.339 2,807 8/21/2024
2.1.338 1,635 8/20/2024
2.1.337 5,789 8/20/2024
2.1.336 104 8/20/2024
2.1.335 106 8/20/2024
2.1.334 9,754 8/19/2024
2.1.333 9,458 8/15/2024
2.1.332 9,467 8/13/2024
2.1.331 7,931 8/6/2024
2.1.330 4,329 8/6/2024
2.1.329 6,543 8/1/2024
2.1.328 1,340 8/1/2024
2.1.327 613 8/1/2024
2.1.326 9,464 7/25/2024
2.1.325 1,963 7/25/2024
2.1.324 1,695 7/25/2024
2.1.323 255 7/24/2024
2.1.322 708 7/24/2024
2.1.321 330 7/24/2024
2.1.320 8,994 7/20/2024
2.1.319 11,725 7/14/2024
2.1.318 4,442 7/14/2024
2.1.317 6,771 7/10/2024
2.1.316 2,941 7/10/2024
2.1.315 2,731 7/10/2024
2.1.314 1,582 7/10/2024
2.1.313 996 7/10/2024
2.1.312 310 7/10/2024
2.1.311 2,592 7/10/2024
2.1.310 1,333 7/9/2024
2.1.308 2,747 7/9/2024
2.1.307 85 7/9/2024
2.1.306 2,921 7/9/2024
2.1.305 6,775 7/9/2024
2.1.304 5,674 7/9/2024
2.1.303 2,720 7/9/2024
2.1.302 83 7/9/2024
2.1.301 3,808 7/9/2024
2.1.300 6,099 7/8/2024
2.1.299 353 7/8/2024
2.1.298 86 7/8/2024
2.1.297 94 7/8/2024
2.1.296 8,374 7/8/2024
2.1.295 1,622 7/7/2024
2.1.294 5,063 7/7/2024
2.1.293 108 7/7/2024
2.1.292 1,429 7/7/2024
2.1.291 3,075 7/7/2024
2.1.290 10,236 7/3/2024
2.1.289 3,272 7/3/2024
2.1.288 2,917 7/3/2024
2.1.287 819 7/3/2024
2.1.286 5,640 7/2/2024
2.1.283 3,518 6/30/2024
2.1.282 2,359 6/28/2024
2.1.281 229 6/28/2024
2.1.279 7,635 6/22/2024
2.1.278 8,599 6/15/2024
2.1.277 1,156 6/15/2024
2.1.276 6,731 6/14/2024
2.1.275 10,728 6/1/2024
2.1.274 1,716 6/1/2024
2.1.273 1,088 6/1/2024
2.1.272 9,379 5/31/2024
2.1.271 5,857 5/29/2024
2.1.270 6,686 5/28/2024
2.1.269 3,761 5/27/2024
2.1.268 6,951 5/26/2024
2.1.267 6,870 5/26/2024
2.1.266 303 5/26/2024
2.1.265 2,506 5/25/2024
2.1.264 1,807 5/25/2024
2.1.263 1,657 5/25/2024
2.1.262 100 5/25/2024
2.1.261 1,336 5/25/2024
2.1.260 98 5/25/2024
2.1.259 4,862 5/25/2024
2.1.258 92 5/25/2024
2.1.257 8,687 5/23/2024
2.1.256 3,433 5/23/2024
2.1.255 2,447 5/22/2024
2.1.254 1,852 5/22/2024
2.1.253 741 5/22/2024
2.1.252 92 5/22/2024
2.1.251 90 5/22/2024
2.1.250 3,602 5/22/2024
2.1.249 9,248 5/18/2024
2.1.248 1,935 5/17/2024
2.1.247 3,318 5/17/2024
2.1.246 5,193 5/16/2024
2.1.245 1,336 5/15/2024
2.1.244 3,776 5/15/2024
2.1.243 7,746 5/12/2024
2.1.242 4,219 5/3/2024
2.1.241 4,725 4/29/2024
2.1.240 2,698 4/29/2024
2.1.239 5,211 4/28/2024
2.1.238 838 4/28/2024
2.1.237 958 4/28/2024
2.1.236 3,916 4/28/2024
2.1.235 544 4/28/2024
2.1.234 5,204 4/28/2024
2.1.233 1,091 4/28/2024
2.1.232 4,871 4/27/2024
2.1.231 100 4/27/2024
2.1.230 9,829 4/19/2024
2.1.229 6,090 4/18/2024
2.1.228 6,366 4/12/2024
2.1.227 1,013 4/12/2024
2.1.226 1,625 4/12/2024
2.1.225 1,367 4/12/2024
2.1.224 948 4/12/2024
2.1.223 1,368 4/12/2024
2.1.222 512 4/12/2024
2.1.221 106 4/12/2024
2.1.220 3,571 4/10/2024
2.1.219 14,219 4/10/2024
2.1.218 666 4/10/2024
2.1.217 7,587 4/2/2024
2.1.216 1,323 4/1/2024
2.1.215 7,301 3/29/2024
2.1.214 5,316 3/25/2024
2.1.213 603 3/25/2024
2.1.212 7,403 3/20/2024
2.1.211 5,028 3/19/2024
2.1.210 3,033 3/19/2024
2.1.209 3,352 3/18/2024
2.1.208 7,352 3/15/2024
2.1.207 4,999 3/13/2024
2.1.206 1,904 3/13/2024
2.1.205 2,482 3/13/2024
2.1.204 151 3/13/2024
2.1.203 134 3/13/2024
2.1.202 1,641 3/13/2024
2.1.201 147 3/13/2024
2.1.200 3,597 3/12/2024
2.1.199 4,619 3/12/2024
2.1.198 6,030 3/11/2024
2.1.197 4,188 3/11/2024
2.1.196 4,486 3/10/2024
2.1.195 5,792 3/8/2024
2.1.194 523 3/8/2024
2.1.193 4,182 3/8/2024
2.1.192 5,380 3/6/2024
2.1.191 5,373 3/4/2024
2.1.190 3,034 3/4/2024
2.1.189 6,085 3/2/2024
2.1.188 1,545 3/2/2024
2.1.187 1,928 3/2/2024
2.1.186 1,081 3/2/2024
2.1.185 751 3/2/2024
2.1.184 4,074 2/29/2024
2.1.183 1,329 2/29/2024
2.1.182 2,045 2/29/2024
2.1.181 3,941 2/26/2024
2.1.180 15,250 2/25/2024
2.1.179 1,810 2/25/2024
2.1.178 6,011 2/23/2024
2.1.177 5,827 2/22/2024
2.1.176 1,618 2/22/2024
2.1.175 1,954 2/21/2024
2.1.174 3,166 2/21/2024
2.1.173 2,845 2/21/2024
2.1.172 3,585 2/21/2024
2.1.171 1,541 2/21/2024
2.1.170 342 2/21/2024
2.1.169 3,299 2/21/2024
2.1.168 1,014 2/20/2024
2.1.167 191 2/20/2024
2.1.166 199 2/20/2024
2.1.165 4,391 2/20/2024
2.1.164 3,306 2/20/2024
2.1.163 3,184 2/20/2024
2.1.162 6,685 2/19/2024
2.1.161 5,332 2/17/2024
2.1.160 2,213 2/17/2024
2.1.159 1,589 2/16/2024
2.1.158 1,150 2/16/2024
2.1.157 1,940 2/16/2024
2.1.156 2,992 2/16/2024
2.1.155 3,461 2/16/2024
2.1.154 229 2/16/2024
2.1.153 1,701 2/16/2024
2.1.152 232 2/16/2024
2.1.151 227 2/16/2024
2.1.150 5,919 2/14/2024
2.1.149 2,508 2/13/2024
2.1.148 3,014 2/13/2024
2.1.147 3,643 2/13/2024
2.1.146 3,496 2/13/2024
2.1.145 4,836 2/12/2024
2.1.144 753 2/11/2024
2.1.143 5,260 2/11/2024
2.1.142 2,962 2/11/2024
2.1.141 6,144 2/10/2024
2.1.140 758 2/9/2024
2.1.139 5,609 2/9/2024
2.1.138 3,612 2/9/2024
2.1.137 947 2/8/2024
2.1.136 4,504 2/8/2024
2.1.135 1,832 2/8/2024
2.1.134 10,448 2/8/2024
2.1.133 302 2/8/2024
2.1.132 231 2/8/2024
2.1.131 5,145 2/7/2024
2.1.130 2,049 2/7/2024
2.1.129 3,514 2/7/2024
2.1.128 1,139 2/7/2024
2.1.127 1,002 2/6/2024
2.1.126 2,802 2/6/2024
2.1.125 271 2/6/2024
2.1.124 7,404 2/5/2024
2.1.123 4,831 2/4/2024
2.1.122 5,146 2/2/2024
2.1.121 6,125 1/31/2024
2.1.120 6,023 1/29/2024
2.1.119 3,629 1/29/2024
2.1.118 2,438 1/29/2024
2.1.117 3,884 1/28/2024
2.1.116 5,154 1/28/2024
2.1.115 2,932 1/28/2024
2.1.114 1,710 1/28/2024
2.1.113 2,334 1/27/2024
2.1.112 2,058 1/27/2024
2.1.111 5,369 1/27/2024
2.1.110 2,703 1/27/2024
2.1.109 6,442 1/27/2024
2.1.108 1,667 1/26/2024
2.1.107 2,112 1/26/2024
2.1.106 2,737 1/26/2024
2.1.105 4,961 1/26/2024
2.1.104 2,365 1/26/2024
2.1.103 1,306 1/26/2024
2.1.102 4,429 1/25/2024
2.1.101 3,512 1/25/2024
2.1.100 1,699 1/25/2024
2.1.99 5,684 1/25/2024
2.1.98 5,474 1/19/2024
2.1.97 5,675 1/15/2024
2.1.96 2,590 1/15/2024
2.1.95 2,035 1/15/2024
2.1.94 5,158 1/15/2024
2.1.93 5,305 1/15/2024
2.1.92 5,138 1/14/2024
2.1.91 6,290 1/13/2024
2.1.90 5,263 1/12/2024
2.1.89 5,160 1/11/2024
2.1.88 7,144 1/7/2024
2.1.87 5,694 1/5/2024
2.1.86 2,547 1/5/2024
2.1.85 3,241 1/5/2024
2.1.84 6,116 1/3/2024
2.1.83 3,727 1/1/2024
2.1.82 5,085 12/28/2023
2.1.81 2,050 12/28/2023
2.1.80 2,059 12/28/2023
2.1.79 4,558 12/27/2023
2.1.78 2,135 12/27/2023
2.1.77 288 12/27/2023
2.1.76 8,750 12/25/2023
2.1.75 4,803 12/25/2023
2.1.74 2,435 12/25/2023
2.1.73 689 12/25/2023
2.1.72 313 12/25/2023
2.1.71 6,902 12/24/2023
2.1.70 5,385 12/23/2023
2.1.69 2,880 12/23/2023
2.1.68 1,710 12/23/2023
2.1.67 3,874 12/23/2023
2.1.66 285 12/23/2023
2.1.65 8,143 12/19/2023
2.1.64 2,237 12/19/2023
2.1.63 5,503 12/12/2023
2.1.62 458 12/12/2023
2.1.61 2,718 12/11/2023
2.1.60 2,210 12/11/2023
2.1.59 1,225 12/11/2023
2.1.58 1,658 12/11/2023
2.1.57 818 12/10/2023
2.1.56 794 12/10/2023
2.1.55 1,821 12/10/2023
2.1.54 1,126 12/10/2023
2.1.53 8,188 12/10/2023
2.1.52 1,858 12/9/2023
2.1.51 1,044 12/9/2023
2.1.50 1,612 12/9/2023
2.1.49 2,486 12/9/2023
2.1.48 258 12/9/2023
2.1.47 1,268 12/9/2023
2.1.46 332 12/9/2023
2.1.45 2,863 12/9/2023
2.1.44 292 12/9/2023
2.1.43 4,518 12/9/2023
2.1.42 6,773 12/6/2023
2.1.41 1,239 12/6/2023
2.1.40 1,771 12/6/2023
2.1.39 3,988 12/5/2023
2.1.38 2,007 12/5/2023
2.1.37 1,128 12/5/2023
2.1.36 2,865 12/5/2023
2.1.35 287 12/5/2023
2.1.34 2,433 12/5/2023
2.1.33 295 12/5/2023
2.1.32 1,604 12/4/2023
2.1.31 1,533 12/4/2023
2.1.30 322 12/4/2023
2.1.29 8,831 12/4/2023
2.1.28 2,904 11/27/2023
2.1.27 1,356 11/26/2023
2.1.26 3,404 11/23/2023
2.1.25 2,940 11/23/2023
2.1.24 3,585 11/23/2023
2.1.23 296 11/23/2023
2.1.22 7,015 11/20/2023
2.1.21 3,390 11/20/2023
2.1.20 5,486 11/19/2023
2.1.19 3,010 11/19/2023
2.1.18 4,153 11/19/2023
2.1.17 1,112 11/18/2023
2.1.16 5,396 11/18/2023
2.1.15 1,305 11/18/2023
2.1.14 3,426 11/18/2023
2.1.13 751 11/18/2023
2.1.12 3,559 11/17/2023
2.1.11 2,933 11/17/2023
2.1.10 2,176 11/17/2023
2.1.9 402 11/17/2023
2.1.8 3,471 11/17/2023
2.1.7 2,005 11/17/2023
2.1.6 2,526 11/17/2023
2.1.5 1,724 11/17/2023
2.1.4 584 11/17/2023
2.1.3 3,279 11/16/2023
2.0.78 1,123 11/15/2023
2.0.77 314 11/15/2023
2.0.76 2,937 11/15/2023
2.0.2 318 11/16/2023
2.0.1 280 11/16/2023
1.0.75 4,225 11/13/2023
1.0.74 6,080 11/10/2023
1.0.73 4,789 11/9/2023
1.0.72 3,252 11/8/2023
1.0.71 4,999 11/7/2023
1.0.70 2,483 11/6/2023
1.0.69 3,107 11/3/2023
1.0.68 5,612 11/2/2023
1.0.67 3,423 11/1/2023
1.0.66 10,919 10/26/2023
1.0.65 6,694 10/19/2023
1.0.64 2,898 10/18/2023
1.0.63 2,806 10/17/2023
1.0.62 3,395 10/16/2023
1.0.61 6,192 10/13/2023
1.0.60 3,630 10/12/2023
1.0.59 11,395 9/18/2023
1.0.58 302 9/18/2023
1.0.57 7,673 9/14/2023
1.0.56 7,163 8/31/2023
1.0.55 3,634 8/30/2023
1.0.54 3,109 8/29/2023
1.0.53 3,028 8/28/2023
1.0.52 5,790 8/25/2023
1.0.51 3,251 8/24/2023
1.0.50 7,903 8/21/2023
1.0.49 3,209 8/18/2023
1.0.48 2,982 8/17/2023
1.0.47 5,494 8/16/2023
1.0.46 9,057 8/10/2023
1.0.45 3,155 8/9/2023
1.0.44 5,279 8/8/2023
1.0.43 4,458 8/7/2023
1.0.42 4,648 8/4/2023
1.0.41 8,573 7/13/2023
1.0.40 5,709 7/11/2023
1.0.39 3,466 7/10/2023
1.0.38 4,350 7/7/2023
1.0.37 358 7/7/2023
1.0.36 12,004 6/30/2023
1.0.35 6,177 6/28/2023
1.0.34 6,312 6/27/2023
1.0.33 7,319 6/26/2023
1.0.32 4,355 6/23/2023
1.0.31 8,854 6/21/2023
1.0.30 9,243 6/15/2023
1.0.29 3,648 6/14/2023
1.0.28 9,847 6/9/2023
1.0.27 4,277 6/8/2023
1.0.26 5,234 6/7/2023
1.0.25 5,888 6/6/2023
1.0.24 384 6/6/2023
1.0.23 4,928 6/5/2023
1.0.22 17,028 5/30/2023
1.0.21 19,869 5/29/2023
1.0.20 6,863 5/26/2023
1.0.19 7,995 5/25/2023
1.0.18 8,353 5/24/2023
1.0.17 5,657 5/24/2023
1.0.16 1,686 5/23/2023
1.0.15 1,666 5/23/2023
1.0.12 3,100 5/22/2023
1.0.11 19,262 5/16/2023
1.0.10 15,863 4/20/2023
1.0.9 15,187 4/3/2023
1.0.8 1,268 4/3/2023
1.0.7 2,511 3/23/2023
1.0.5 768 3/13/2023
1.0.4 526 3/11/2023
1.0.3 432 3/11/2023
1.0.2 436 3/11/2023
1.0.1 490 3/11/2023