Soenneker.Utils.HttpClientCache 2.1.628

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

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

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

Providing thread-safe singleton HttpClients

Why?

'Long-lived' HttpClient static/singleton instances is the recommended use pattern in .NET. Avoid the unnecessary overhead of IHttpClientFactory, and definitely avoid creating a new HttpClient instance per request.

HttpClientCache provides a thread-safe singleton HttpClient instance per key via dependency injection. HttpClients are created lazily, and disposed on application shutdown (or manually if you want).

See Guidelines for using HttpClient

Installation

dotnet add package Soenneker.Utils.HttpClientCache

Usage

  1. Register IHttpClientCache within DI (Program.cs).
public static async Task Main(string[] args)
{
    ...
    builder.Services.AddHttpClientCache();
}
  1. Inject IHttpClientCache via constructor, and retrieve a fresh HttpClient.

Example:

public class TestClass
{
    IHttpClientCache _httpClientCache;

    public TestClass(IHttpClientCache httpClientCache)
    {
        _httpClientCache = httpClientCache;
    }

    public async ValueTask<string> GetGoogleSource()
    {
        HttpClient httpClient = await _httpClientCache.Get(nameof(TestClass));

        var response = await httpClient.GetAsync("https://www.google.com");
        response.EnsureSuccessStatusCode();

        var responseString = await response.Content.ReadAsStringAsync();
        return responseString;
    }
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (15)

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

Package Downloads
Soenneker.Blob.Container

A utility library for Azure Blob storage container operations

Soenneker.Validators.Email.Disposable.Online

A validation module checking for disposable email addresses via online sources

Soenneker.Queue.Client

A utility library for Azure Queue (Storage) client accessibility

Soenneker.YouTube.Client

An async thread-safe singleton for the YouTube client YouTubeExplode

Soenneker.Blob.Service

A utility library for Azure Blob storage service client operations

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.726 83 9/7/2024
2.1.725 156 9/7/2024
2.1.724 217 9/7/2024
2.1.723 285 9/6/2024
2.1.722 515 9/6/2024
2.1.721 316 9/6/2024
2.1.720 67 9/6/2024
2.1.719 308 9/6/2024
2.1.718 32 9/6/2024
2.1.717 158 9/6/2024
2.1.716 516 9/5/2024
2.1.715 27 9/5/2024
2.1.714 262 9/5/2024
2.1.713 27 9/5/2024
2.1.712 382 9/5/2024
2.1.711 95 9/5/2024
2.1.710 32 9/5/2024
2.1.709 958 9/5/2024
2.1.708 257 9/5/2024
2.1.707 30 9/5/2024
2.1.706 279 9/5/2024
2.1.705 409 9/5/2024
2.1.704 240 9/4/2024
2.1.703 31 9/4/2024
2.1.702 225 9/4/2024
2.1.701 28 9/4/2024
2.1.700 1,112 9/4/2024
2.1.699 180 9/4/2024
2.1.698 401 9/4/2024
2.1.697 265 9/3/2024
2.1.696 135 9/3/2024
2.1.695 33 9/3/2024
2.1.694 809 9/3/2024
2.1.693 781 9/3/2024
2.1.692 191 9/3/2024
2.1.691 394 9/3/2024
2.1.690 51 9/3/2024
2.1.689 551 9/3/2024
2.1.688 46 9/3/2024
2.1.687 295 9/3/2024
2.1.686 1,493 8/30/2024
2.1.685 190 8/29/2024
2.1.684 388 8/29/2024
2.1.683 739 8/29/2024
2.1.682 431 8/29/2024
2.1.681 56 8/29/2024
2.1.680 1,126 8/26/2024
2.1.679 385 8/26/2024
2.1.678 339 8/26/2024
2.1.677 966 8/26/2024
2.1.676 62 8/26/2024
2.1.675 1,057 8/21/2024
2.1.674 716 8/21/2024
2.1.673 440 8/21/2024
2.1.672 489 8/21/2024
2.1.671 70 8/21/2024
2.1.670 339 8/21/2024
2.1.669 73 8/21/2024
2.1.668 949 8/20/2024
2.1.667 80 8/20/2024
2.1.666 889 8/20/2024
2.1.665 59 8/20/2024
2.1.664 223 8/20/2024
2.1.663 870 8/20/2024
2.1.662 58 8/20/2024
2.1.661 233 8/20/2024
2.1.660 60 8/20/2024
2.1.659 988 8/20/2024
2.1.658 1,191 8/20/2024
2.1.657 635 8/19/2024
2.1.656 62 8/19/2024
2.1.655 1,324 8/15/2024
2.1.654 341 8/15/2024
2.1.653 356 8/15/2024
2.1.652 437 8/15/2024
2.1.651 544 8/15/2024
2.1.650 700 8/15/2024
2.1.649 1,754 8/14/2024
2.1.648 68 8/14/2024
2.1.647 557 8/14/2024
2.1.646 320 8/14/2024
2.1.645 141 8/13/2024
2.1.644 1,746 8/7/2024
2.1.643 197 8/7/2024
2.1.642 456 8/7/2024
2.1.641 286 8/7/2024
2.1.640 1,011 8/6/2024
2.1.639 112 8/6/2024
2.1.638 56 8/6/2024
2.1.637 610 8/6/2024
2.1.636 870 8/1/2024
2.1.635 409 8/1/2024
2.1.634 306 8/1/2024
2.1.633 176 8/1/2024
2.1.632 41 8/1/2024
2.1.631 409 8/1/2024
2.1.630 42 8/1/2024
2.1.629 572 8/1/2024
2.1.628 1,657 7/25/2024
2.1.627 257 7/25/2024
2.1.626 404 7/25/2024
2.1.625 457 7/25/2024
2.1.624 50 7/25/2024
2.1.623 323 7/25/2024
2.1.622 161 7/25/2024
2.1.621 177 7/25/2024
2.1.620 352 7/25/2024
2.1.619 104 7/24/2024
2.1.618 313 7/24/2024
2.1.617 133 7/24/2024
2.1.616 214 7/24/2024
2.1.615 3,009 7/20/2024
2.1.614 50 7/20/2024
2.1.612 340 7/20/2024
2.1.611 461 7/20/2024
2.1.610 365 7/20/2024
2.1.609 1,533 7/14/2024
2.1.608 309 7/14/2024
2.1.607 293 7/14/2024
2.1.606 606 7/14/2024
2.1.605 324 7/14/2024
2.1.604 53 7/14/2024
2.1.603 779 7/14/2024
2.1.602 145 7/14/2024
2.1.601 51 7/14/2024
2.1.600 1,488 7/10/2024
2.1.599 164 7/10/2024
2.1.598 150 7/10/2024
2.1.597 142 7/10/2024
2.1.596 128 7/10/2024
2.1.594 305 7/10/2024
2.1.593 811 7/10/2024
2.1.592 52 7/10/2024
2.1.591 557 7/10/2024
2.1.590 53 7/10/2024
2.1.589 47 7/10/2024
2.1.588 1,115 7/10/2024
2.1.587 43 7/10/2024
2.1.586 408 7/10/2024
2.1.585 62 7/10/2024
2.1.584 56 7/10/2024
2.1.583 62 7/10/2024
2.1.581 215 7/10/2024
2.1.580 58 7/10/2024
2.1.579 865 7/9/2024
2.1.578 52 7/9/2024
2.1.576 705 7/9/2024
2.1.575 44 7/9/2024
2.1.574 125 7/9/2024
2.1.573 2,152 7/9/2024
2.1.572 51 7/9/2024
2.1.571 577 7/9/2024
2.1.570 973 7/9/2024
2.1.569 101 7/9/2024
2.1.568 762 7/9/2024
2.1.567 682 7/9/2024
2.1.566 57 7/9/2024
2.1.565 506 7/9/2024
2.1.564 58 7/9/2024
2.1.563 702 7/9/2024
2.1.562 59 7/9/2024
2.1.560 421 7/8/2024
2.1.559 1,069 7/8/2024
2.1.558 66 7/8/2024
2.1.557 637 7/8/2024
2.1.556 876 7/8/2024
2.1.555 149 7/8/2024
2.1.554 637 7/8/2024
2.1.553 154 7/8/2024
2.1.552 64 7/8/2024
2.1.551 720 7/8/2024
2.1.550 552 7/7/2024
2.1.549 58 7/7/2024
2.1.548 460 7/7/2024
2.1.547 67 7/7/2024
2.1.546 147 7/7/2024
2.1.545 63 7/7/2024
2.1.544 796 7/7/2024
2.1.543 62 7/7/2024
2.1.542 785 7/7/2024
2.1.541 433 7/7/2024
2.1.540 1,498 7/5/2024
2.1.539 778 7/4/2024
2.1.538 736 7/3/2024
2.1.537 473 7/3/2024
2.1.536 333 7/3/2024
2.1.535 231 7/3/2024
2.1.534 908 7/3/2024
2.1.533 90 7/3/2024
2.1.532 758 7/3/2024
2.1.531 54 7/3/2024
2.1.530 511 7/3/2024
2.1.529 915 7/2/2024
2.1.528 921 6/30/2024
2.1.527 872 6/28/2024
2.1.526 427 6/27/2024
2.1.525 489 6/27/2024
2.1.524 539 6/27/2024
2.1.523 902 6/22/2024
2.1.522 654 6/22/2024
2.1.521 538 6/22/2024
2.1.520 77 6/22/2024
2.1.519 1,063 6/16/2024
2.1.518 377 6/16/2024
2.1.517 382 6/15/2024
2.1.516 642 6/15/2024
2.1.515 320 6/15/2024
2.1.514 325 6/15/2024
2.1.513 64 6/15/2024
2.1.512 988 6/15/2024
2.1.511 70 6/15/2024
2.1.510 785 6/15/2024
2.1.509 664 6/15/2024
2.1.508 331 6/14/2024
2.1.507 65 6/14/2024
2.1.506 2,315 6/4/2024
2.1.505 909 6/2/2024
2.1.504 130 6/2/2024
2.1.503 224 6/2/2024
2.1.502 228 6/1/2024
2.1.501 263 6/1/2024
2.1.500 481 6/1/2024
2.1.499 72 6/1/2024
2.1.498 608 6/1/2024
2.1.497 176 6/1/2024
2.1.496 72 6/1/2024
2.1.495 663 6/1/2024
2.1.494 70 6/1/2024
2.1.493 1,584 5/31/2024
2.1.492 446 5/31/2024
2.1.491 290 5/31/2024
2.1.490 447 5/31/2024
2.1.489 249 5/31/2024
2.1.488 593 5/31/2024
2.1.487 962 5/29/2024
2.1.486 366 5/29/2024
2.1.485 525 5/29/2024
2.1.484 451 5/29/2024
2.1.483 73 5/29/2024
2.1.482 1,033 5/28/2024
2.1.481 292 5/28/2024
2.1.480 298 5/28/2024
2.1.479 328 5/28/2024
2.1.478 49 5/28/2024
2.1.477 722 5/28/2024
2.1.476 50 5/28/2024
2.1.475 244 5/28/2024
2.1.474 972 5/27/2024
2.1.473 942 5/27/2024
2.1.472 350 5/27/2024
2.1.471 382 5/27/2024
2.1.470 645 5/26/2024
2.1.469 57 5/26/2024
2.1.468 906 5/26/2024
2.1.467 107 5/26/2024
2.1.466 300 5/26/2024
2.1.465 476 5/26/2024
2.1.464 795 5/26/2024
2.1.463 56 5/26/2024
2.1.462 525 5/26/2024
2.1.461 61 5/26/2024
2.1.460 185 5/25/2024
2.1.459 255 5/25/2024
2.1.458 58 5/25/2024
2.1.457 821 5/25/2024
2.1.456 60 5/25/2024
2.1.455 828 5/25/2024
2.1.454 60 5/25/2024
2.1.453 1,073 5/25/2024
2.1.452 96 5/25/2024
2.1.451 438 5/25/2024
2.1.450 59 5/25/2024
2.1.449 359 5/25/2024
2.1.448 1,353 5/23/2024
2.1.447 438 5/23/2024
2.1.446 462 5/23/2024
2.1.445 44 5/23/2024
2.1.444 507 5/23/2024
2.1.443 64 5/23/2024
2.1.442 441 5/23/2024
2.1.441 61 5/23/2024
2.1.440 666 5/23/2024
2.1.439 68 5/23/2024
2.1.438 476 5/22/2024
2.1.437 667 5/22/2024
2.1.436 62 5/22/2024
2.1.435 466 5/22/2024
2.1.434 70 5/22/2024
2.1.433 66 5/22/2024
2.1.432 752 5/22/2024
2.1.431 517 5/22/2024
2.1.430 889 5/19/2024
2.1.429 347 5/18/2024
2.1.428 372 5/18/2024
2.1.427 428 5/18/2024
2.1.426 274 5/18/2024
2.1.425 85 5/18/2024
2.1.424 609 5/17/2024
2.1.423 79 5/17/2024
2.1.422 402 5/17/2024
2.1.421 1,060 5/17/2024
2.1.420 78 5/17/2024
2.1.419 671 5/16/2024
2.1.418 336 5/16/2024
2.1.417 557 5/16/2024
2.1.416 86 5/16/2024
2.1.415 545 5/15/2024
2.1.414 78 5/15/2024
2.1.413 584 5/15/2024
2.1.412 1,019 5/14/2024
2.1.411 84 5/14/2024
2.1.410 1,149 5/13/2024
2.1.409 444 5/13/2024
2.1.408 332 5/13/2024
2.1.407 269 5/13/2024
2.1.406 58 5/13/2024
2.1.405 1,371 5/3/2024
2.1.404 627 4/30/2024
2.1.403 150 4/30/2024
2.1.402 366 4/30/2024
2.1.401 401 4/30/2024
2.1.400 544 4/30/2024
2.1.399 514 4/30/2024
2.1.398 331 4/29/2024
2.1.397 263 4/29/2024
2.1.396 81 4/29/2024
2.1.395 1,095 4/29/2024
2.1.394 368 4/29/2024
2.1.393 777 4/29/2024
2.1.392 210 4/28/2024
2.1.391 78 4/28/2024
2.1.390 617 4/28/2024
2.1.389 100 4/28/2024
2.1.388 691 4/28/2024
2.1.387 442 4/28/2024
2.1.386 76 4/28/2024
2.1.385 653 4/28/2024
2.1.384 78 4/28/2024
2.1.383 492 4/28/2024
2.1.382 78 4/28/2024
2.1.381 1,158 4/28/2024
2.1.380 609 4/27/2024
2.1.379 89 4/27/2024
2.1.378 84 4/27/2024
2.1.377 1,568 4/20/2024
2.1.376 584 4/20/2024
2.1.375 517 4/19/2024
2.1.374 264 4/19/2024
2.1.373 77 4/19/2024
2.1.372 996 4/19/2024
2.1.371 513 4/19/2024
2.1.370 483 4/19/2024
2.1.369 363 4/19/2024
2.1.368 128 4/18/2024
2.1.367 75 4/18/2024
2.1.366 1,127 4/15/2024
2.1.365 434 4/14/2024
2.1.364 502 4/13/2024
2.1.363 556 4/12/2024
2.1.362 81 4/12/2024
2.1.361 454 4/12/2024
2.1.360 270 4/12/2024
2.1.359 424 4/12/2024
2.1.358 84 4/12/2024
2.1.357 699 4/12/2024
2.1.356 98 4/12/2024
2.1.355 736 4/12/2024
2.1.354 83 4/12/2024
2.1.353 304 4/11/2024
2.1.352 458 4/11/2024
2.1.351 80 4/11/2024
2.1.350 612 4/10/2024
2.1.349 82 4/10/2024
2.1.348 603 4/9/2024
2.1.347 80 4/9/2024
2.1.346 1,278 4/2/2024
2.1.345 226 4/2/2024
2.1.344 288 4/1/2024
2.1.343 109 4/1/2024
2.1.342 811 3/29/2024
2.1.341 84 3/29/2024
2.1.340 678 3/25/2024
2.1.339 73 3/25/2024
2.1.338 576 3/25/2024
2.1.337 818 3/20/2024
2.1.336 93 3/20/2024
2.1.335 896 3/19/2024
2.1.334 91 3/19/2024
2.1.333 332 3/19/2024
2.1.332 338 3/19/2024
2.1.331 559 3/18/2024
2.1.330 85 3/18/2024
2.1.329 568 3/18/2024
2.1.328 598 3/16/2024
2.1.327 334 3/15/2024
2.1.326 715 3/13/2024
2.1.325 415 3/13/2024
2.1.324 132 3/13/2024
2.1.323 112 3/13/2024
2.1.322 533 3/13/2024
2.1.321 95 3/13/2024
2.1.320 311 3/13/2024
2.1.319 87 3/13/2024
2.1.318 84 3/13/2024
2.1.317 335 3/12/2024
2.1.316 92 3/12/2024
2.1.315 383 3/12/2024
2.1.314 464 3/12/2024
2.1.313 492 3/12/2024
2.1.312 336 3/11/2024
2.1.311 679 3/11/2024
2.1.310 282 3/11/2024
2.1.309 536 3/10/2024
2.1.308 90 3/10/2024
2.1.307 688 3/8/2024
2.1.306 190 3/8/2024
2.1.305 434 3/8/2024
2.1.304 75 3/8/2024
2.1.303 455 3/8/2024
2.1.302 79 3/8/2024
2.1.301 803 3/6/2024
2.1.300 95 3/6/2024
2.1.299 733 3/4/2024
2.1.298 411 3/4/2024
2.1.297 347 3/4/2024
2.1.296 103 3/4/2024
2.1.295 890 3/3/2024
2.1.294 182 3/2/2024
2.1.293 461 3/2/2024
2.1.292 93 3/2/2024
2.1.291 1,518 2/29/2024
2.1.290 307 2/29/2024
2.1.289 79 2/29/2024
2.1.288 173 2/29/2024
2.1.287 75 2/29/2024
2.1.286 516 2/29/2024
2.1.285 988 2/26/2024
2.1.284 90 2/26/2024
2.1.283 431 2/25/2024
2.1.282 154 2/25/2024
2.1.281 662 2/23/2024
2.1.280 380 2/23/2024
2.1.279 384 2/22/2024
2.1.278 191 2/22/2024
2.1.277 278 2/22/2024
2.1.276 92 2/22/2024
2.1.275 183 2/21/2024
2.1.274 95 2/21/2024
2.1.273 445 2/21/2024
2.1.272 103 2/21/2024
2.1.271 84 2/21/2024
2.1.270 474 2/21/2024
2.1.269 238 2/21/2024
2.1.268 92 2/21/2024
2.1.267 210 2/21/2024
2.1.266 82 2/21/2024
2.1.265 230 2/21/2024
2.1.264 85 2/21/2024
2.1.263 344 2/21/2024
2.1.262 428 2/20/2024
2.1.261 282 2/20/2024
2.1.260 118 2/20/2024
2.1.259 156 2/20/2024
2.1.258 364 2/20/2024
2.1.257 202 2/20/2024
2.1.256 259 2/19/2024
2.1.255 397 2/19/2024
2.1.254 78 2/19/2024
2.1.253 594 2/17/2024
2.1.252 76 2/17/2024
2.1.251 242 2/17/2024
2.1.250 359 2/16/2024
2.1.249 74 2/16/2024
2.1.248 279 2/16/2024
2.1.247 248 2/16/2024
2.1.246 79 2/16/2024
2.1.245 282 2/16/2024
2.1.244 74 2/16/2024
2.1.243 78 2/16/2024
2.1.242 306 2/16/2024
2.1.241 83 2/16/2024
2.1.240 886 2/13/2024
2.1.239 81 2/13/2024
2.1.238 496 2/13/2024
2.1.237 362 2/13/2024
2.1.236 168 2/13/2024
2.1.235 76 2/13/2024
2.1.234 139 2/13/2024
2.1.233 372 2/13/2024
2.1.232 92 2/13/2024
2.1.231 472 2/12/2024
2.1.230 325 2/12/2024
2.1.229 105 2/11/2024
2.1.228 93 2/11/2024
2.1.227 474 2/11/2024
2.1.226 234 2/11/2024
2.1.225 298 2/11/2024
2.1.224 187 2/11/2024
2.1.223 714 2/10/2024
2.1.222 157 2/10/2024
2.1.221 217 2/9/2024
2.1.220 256 2/9/2024
2.1.219 415 2/9/2024
2.1.218 302 2/9/2024
2.1.217 348 2/9/2024
2.1.216 90 2/9/2024
2.1.215 263 2/8/2024
2.1.214 352 2/8/2024
2.1.213 92 2/8/2024
2.1.212 285 2/8/2024
2.1.211 140 2/8/2024
2.1.210 433 2/8/2024
2.1.209 115 2/8/2024
2.1.208 543 2/7/2024
2.1.207 96 2/7/2024
2.1.206 130 2/7/2024
2.1.205 366 2/7/2024
2.1.204 250 2/7/2024
2.1.203 90 2/7/2024
2.1.202 249 2/7/2024
2.1.201 90 2/7/2024
2.1.200 373 2/6/2024
2.1.199 88 2/6/2024
2.1.198 695 2/5/2024
2.1.197 85 2/5/2024
2.1.196 441 2/4/2024
2.1.195 149 2/4/2024
2.1.194 638 2/2/2024
2.1.193 86 2/2/2024
2.1.192 581 1/31/2024
2.1.191 94 1/31/2024
2.1.190 443 1/30/2024
2.1.189 387 1/29/2024
2.1.188 304 1/29/2024
2.1.187 81 1/29/2024
2.1.186 80 1/29/2024
2.1.185 359 1/29/2024
2.1.184 246 1/29/2024
2.1.183 73 1/29/2024
2.1.182 242 1/28/2024
2.1.181 83 1/28/2024
2.1.180 178 1/28/2024
2.1.179 344 1/28/2024
2.1.178 82 1/28/2024
2.1.177 192 1/28/2024
2.1.176 234 1/28/2024
2.1.175 81 1/28/2024
2.1.174 576 1/28/2024
2.1.173 133 1/27/2024
2.1.172 86 1/27/2024
2.1.171 409 1/27/2024
2.1.170 81 1/27/2024
2.1.169 171 1/27/2024
2.1.168 89 1/27/2024
2.1.167 381 1/27/2024
2.1.166 80 1/27/2024
2.1.165 418 1/27/2024
2.1.164 83 1/27/2024
2.1.163 176 1/27/2024
2.1.162 103 1/26/2024
2.1.161 76 1/26/2024
2.1.160 554 1/26/2024
2.1.159 83 1/26/2024
2.1.158 382 1/26/2024
2.1.157 74 1/26/2024
2.1.156 173 1/26/2024
2.1.155 177 1/26/2024
2.1.154 80 1/26/2024
2.1.153 137 1/26/2024
2.1.152 74 1/26/2024
2.1.151 539 1/25/2024
2.1.150 85 1/25/2024
2.1.149 259 1/25/2024
2.1.148 82 1/25/2024
2.1.147 481 1/25/2024
2.1.146 149 1/25/2024
2.1.145 79 1/25/2024
2.1.144 245 1/25/2024
2.1.143 648 1/19/2024
2.1.142 83 1/19/2024
2.1.141 558 1/15/2024
2.1.140 114 1/15/2024
2.1.139 90 1/15/2024
2.1.138 477 1/15/2024
2.1.137 92 1/15/2024
2.1.136 223 1/15/2024
2.1.135 88 1/15/2024
2.1.134 356 1/15/2024
2.1.133 218 1/15/2024
2.1.132 649 1/14/2024
2.1.131 86 1/14/2024
2.1.130 492 1/13/2024
2.1.129 87 1/13/2024
2.1.128 514 1/12/2024
2.1.127 90 1/12/2024
2.1.126 492 1/11/2024
2.1.125 362 1/11/2024
2.1.124 614 1/8/2024
2.1.123 263 1/7/2024
2.1.122 463 1/5/2024
2.1.121 226 1/5/2024
2.1.120 91 1/5/2024
2.1.119 377 1/5/2024
2.1.118 371 1/5/2024
2.1.117 96 1/5/2024
2.1.116 563 1/3/2024
2.1.115 118 1/3/2024
2.1.114 357 1/1/2024
2.1.113 144 1/1/2024
2.1.112 646 12/30/2023
2.1.111 226 12/28/2023
2.1.110 178 12/28/2023
2.1.109 222 12/28/2023
2.1.108 192 12/28/2023
2.1.107 112 12/28/2023
2.1.106 427 12/28/2023
2.1.105 176 12/27/2023
2.1.104 103 12/27/2023
2.1.103 128 12/27/2023
2.1.102 95 12/27/2023
2.1.101 570 12/25/2023
2.1.100 85 12/25/2023
2.1.99 213 12/25/2023
2.1.98 102 12/25/2023
2.1.97 328 12/25/2023
2.1.96 243 12/25/2023
2.1.95 154 12/25/2023
2.1.94 98 12/25/2023
2.1.93 125 12/25/2023
2.1.92 121 12/25/2023
2.1.91 534 12/24/2023
2.1.90 179 12/24/2023
2.1.89 324 12/23/2023
2.1.88 141 12/23/2023
2.1.87 99 12/23/2023
2.1.86 211 12/23/2023
2.1.85 97 12/23/2023
2.1.84 335 12/23/2023
2.1.83 99 12/23/2023
2.1.82 367 12/23/2023
2.1.81 102 12/23/2023
2.1.80 203 12/23/2023
2.1.79 449 12/19/2023
2.1.78 96 12/19/2023
2.1.77 177 12/19/2023
2.1.76 791 12/11/2023
2.1.75 222 12/11/2023
2.1.74 240 12/10/2023
2.1.73 179 12/10/2023
2.1.72 126 12/10/2023
2.1.71 402 12/10/2023
2.1.70 140 12/9/2023
2.1.69 199 12/9/2023
2.1.68 218 12/9/2023
2.1.67 124 12/9/2023
2.1.66 143 12/9/2023
2.1.65 191 12/9/2023
2.1.64 103 12/9/2023
2.1.63 285 12/9/2023
2.1.62 407 12/6/2023
2.1.61 169 12/6/2023
2.1.60 197 12/6/2023
2.1.59 140 12/6/2023
2.1.58 227 12/5/2023
2.1.57 209 12/5/2023
2.1.56 146 12/5/2023
2.1.55 172 12/5/2023
2.1.54 166 12/5/2023
2.1.53 120 12/5/2023
2.1.52 179 12/5/2023
2.1.51 128 12/4/2023
2.1.50 108 12/4/2023
2.1.49 334 12/4/2023
2.1.48 107 12/4/2023
2.1.47 100 12/4/2023
2.1.46 311 11/28/2023
2.1.45 128 11/27/2023
2.1.44 155 11/27/2023
2.1.43 119 11/26/2023
2.1.42 192 11/23/2023
2.1.41 111 11/23/2023
2.1.40 256 11/23/2023
2.1.39 219 11/23/2023
2.1.38 174 11/23/2023
2.1.37 119 11/23/2023
2.1.36 145 11/23/2023
2.1.35 343 11/22/2023
2.1.34 142 11/20/2023
2.1.33 156 11/20/2023
2.1.32 198 11/20/2023
2.1.31 108 11/20/2023
2.1.30 210 11/19/2023
2.1.29 105 11/19/2023
2.1.28 136 11/19/2023
2.1.27 116 11/19/2023
2.1.26 186 11/19/2023
2.1.25 117 11/19/2023
2.1.24 126 11/19/2023
2.1.23 109 11/19/2023
2.1.22 109 11/19/2023
2.1.21 224 11/18/2023
2.1.20 122 11/18/2023
2.1.19 114 11/18/2023
2.1.18 109 11/18/2023
2.1.17 106 11/18/2023
2.1.16 117 11/17/2023
2.1.15 104 11/17/2023
2.1.14 112 11/17/2023
2.1.13 118 11/17/2023
2.1.12 143 11/17/2023
2.1.11 95 11/17/2023
2.1.10 112 11/17/2023
2.1.9 112 11/17/2023
2.1.8 129 11/17/2023
2.1.7 119 11/17/2023
2.1.6 139 11/17/2023
2.1.5 117 11/17/2023
2.1.4 115 11/16/2023
2.1.3 113 11/16/2023
2.0.37 552 11/15/2023
2.0.36 111 11/15/2023
2.0.35 111 11/15/2023
2.0.34 114 11/15/2023
1.0.33 115 11/14/2023
1.0.32 100 11/14/2023
1.0.31 280 11/13/2023
1.0.30 102 11/13/2023
1.0.29 133 11/10/2023
1.0.28 109 11/10/2023
1.0.27 108 11/9/2023
1.0.26 107 11/9/2023
1.0.25 105 11/9/2023
1.0.24 106 11/7/2023
1.0.23 105 11/7/2023
1.0.22 101 11/6/2023
1.0.21 110 11/6/2023
1.0.20 131 11/3/2023
1.0.19 115 11/3/2023
1.0.18 128 11/2/2023
1.0.17 113 11/2/2023
1.0.16 122 11/1/2023
1.0.15 114 11/1/2023
1.0.14 151 10/26/2023
1.0.13 128 10/26/2023
1.0.12 149 10/19/2023
1.0.11 142 10/19/2023
1.0.10 141 10/18/2023
1.0.9 141 10/18/2023
1.0.8 142 10/17/2023
1.0.7 127 10/17/2023
1.0.6 161 10/16/2023
1.0.5 157 10/16/2023
1.0.4 155 10/13/2023
1.0.3 148 10/13/2023
1.0.2 148 10/12/2023
1.0.1 168 10/1/2023