Soenneker.Utils.RateLimiting.Factory 3.0.789

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

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

Installation

dotnet add package Soenneker.Utils.RateLimiting.Factory

Usage

  1. Register IRateLimitingFactory within DI (Program.cs).
public static async Task Main(string[] args)
{
    ...
    builder.Services.AddRateLimitingFactoryAsSingleton();
}
  1. Inject IRateLimitingFactory, and retrieve a RateLimitingFactory.

Example:

public class TestClass
{
    IRateLimitingFactory _factory;

    public TestClass(IRateLimitingFactory factory)
    {
        _factory = factory;
    }

    public async ValueTask ExecuteTasks()
    {
        RateLimitingExecutor rateLimitingExecutor = await _factory.Get("test", TimeSpan.FromSeconds(2));

        for (int i = 0; i < 5; i++)
        {
            await rateLimitingExecutor.Execute(async ct =>
            {
                Logger.LogInformation($"Executing Task {i + 1} at {DateTime.Now:HH:mm:ss}");

                await Task.Delay(100, ct); // Simulate some work
            });
        }
    }
}

Console Output

Executing Task 1 at 14:00:00
Executing Task 2 at 14:00:02
Executing Task 3 at 14:00:04
Executing Task 4 at 14:00:06
Executing Task 5 at 14:00:08
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Soenneker.Utils.RateLimiting.Factory:

Package Downloads
Soenneker.Validators.Yahoo.Exists

A validation module checking for Yahoo account existence

Soenneker.Validators.Gmail.Exists

A validation module checking for Gmail account existence

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.807 0 4/3/2025
3.0.806 0 4/3/2025
3.0.805 85 4/1/2025
3.0.804 56 4/1/2025
3.0.803 75 4/1/2025
3.0.802 45 4/1/2025
3.0.801 48 4/1/2025
3.0.800 108 4/1/2025
3.0.799 85 4/1/2025
3.0.798 55 4/1/2025
3.0.797 107 3/31/2025
3.0.796 48 3/31/2025
3.0.795 54 3/31/2025
3.0.794 49 3/31/2025
3.0.793 141 3/31/2025
3.0.792 94 3/31/2025
3.0.791 100 3/29/2025
3.0.790 90 3/29/2025
3.0.789 81 3/29/2025
3.0.788 63 3/29/2025
3.0.787 68 3/29/2025
3.0.786 182 3/27/2025
3.0.785 504 3/26/2025
3.0.784 469 3/25/2025
3.0.783 438 3/25/2025
3.0.782 461 3/25/2025
3.0.781 439 3/25/2025
3.0.780 449 3/25/2025
3.0.779 441 3/25/2025
3.0.778 218 3/21/2025
3.0.777 115 3/21/2025
3.0.776 95 3/21/2025
3.0.775 128 3/21/2025
3.0.774 106 3/21/2025
3.0.773 201 3/20/2025
3.0.772 235 3/18/2025
3.0.771 181 3/18/2025
3.0.770 127 3/18/2025
3.0.769 139 3/18/2025
3.0.768 187 3/18/2025
3.0.767 160 3/18/2025
3.0.766 131 3/15/2025
3.0.765 77 3/15/2025
3.0.764 74 3/15/2025
3.0.763 49 3/15/2025
3.0.762 86 3/15/2025
3.0.761 287 3/12/2025
3.0.760 162 3/12/2025
3.0.759 163 3/12/2025
3.0.758 145 3/12/2025
3.0.757 218 3/12/2025
3.0.756 149 3/12/2025
3.0.755 138 3/12/2025
3.0.754 143 3/12/2025
3.0.753 217 3/12/2025
3.0.752 145 3/12/2025
3.0.751 143 3/12/2025
3.0.750 179 3/11/2025
3.0.749 140 3/11/2025
3.0.748 198 3/11/2025
3.0.747 154 3/11/2025
3.0.746 161 3/11/2025
3.0.745 152 3/11/2025
3.0.744 165 3/11/2025
3.0.743 157 3/11/2025
3.0.742 222 3/11/2025
3.0.741 153 3/11/2025
3.0.740 163 3/11/2025
3.0.739 286 3/11/2025
3.0.738 146 3/11/2025
3.0.737 315 3/7/2025
3.0.736 211 3/7/2025
3.0.735 194 3/7/2025
3.0.734 267 3/7/2025
3.0.733 229 3/7/2025
3.0.732 209 3/7/2025
3.0.731 248 3/2/2025
3.0.730 118 3/2/2025
3.0.729 117 3/2/2025
3.0.728 101 3/2/2025
3.0.727 74 3/2/2025
3.0.726 84 3/2/2025
3.0.725 78 3/2/2025
3.0.724 126 3/2/2025
3.0.723 77 3/2/2025
3.0.722 120 3/2/2025
3.0.721 70 3/2/2025
3.0.720 90 3/2/2025
3.0.719 81 3/2/2025
3.0.718 182 3/1/2025
3.0.717 83 3/1/2025
3.0.716 82 3/1/2025
3.0.715 173 3/1/2025
3.0.714 76 3/1/2025
3.0.713 75 3/1/2025
3.0.712 265 3/1/2025
3.0.711 84 3/1/2025
3.0.710 82 3/1/2025
3.0.709 71 3/1/2025
3.0.708 86 3/1/2025
3.0.707 71 3/1/2025
3.0.706 168 3/1/2025
3.0.705 74 3/1/2025
3.0.704 71 3/1/2025
3.0.703 268 2/26/2025
3.0.702 80 2/26/2025
3.0.701 110 2/25/2025
3.0.700 71 2/25/2025
3.0.699 156 2/25/2025
3.0.698 79 2/25/2025
3.0.697 177 2/25/2025
3.0.696 80 2/25/2025
3.0.695 75 2/25/2025
3.0.694 131 2/25/2025
3.0.693 77 2/25/2025
3.0.692 84 2/24/2025
3.0.691 80 2/24/2025
3.0.690 80 2/24/2025
3.0.689 293 2/23/2025
3.0.688 132 2/23/2025
3.0.687 120 2/23/2025
3.0.686 79 2/23/2025
3.0.685 99 2/23/2025
3.0.684 74 2/23/2025
3.0.683 80 2/22/2025
3.0.682 188 2/22/2025
3.0.681 146 2/22/2025
3.0.680 97 2/22/2025
3.0.679 116 2/22/2025
3.0.678 87 2/22/2025
3.0.677 103 2/22/2025
3.0.676 120 2/22/2025
3.0.675 84 2/22/2025
3.0.674 168 2/22/2025
3.0.673 96 2/22/2025
3.0.672 79 2/22/2025
3.0.671 127 2/21/2025
3.0.670 80 2/21/2025
3.0.669 86 2/21/2025
3.0.668 85 2/21/2025
3.0.667 82 2/21/2025
3.0.666 244 2/21/2025
3.0.665 88 2/21/2025
3.0.664 82 2/21/2025
3.0.663 270 2/19/2025
3.0.662 96 2/19/2025
3.0.661 102 2/19/2025
3.0.660 86 2/19/2025
3.0.659 101 2/19/2025
3.0.658 89 2/19/2025
3.0.657 112 2/19/2025
3.0.656 90 2/19/2025
3.0.655 235 2/18/2025
3.0.654 86 2/18/2025
3.0.653 148 2/18/2025
3.0.652 85 2/18/2025
3.0.651 92 2/18/2025
3.0.650 84 2/18/2025
3.0.649 81 2/18/2025
3.0.648 208 2/18/2025
3.0.647 89 2/18/2025
3.0.646 192 2/16/2025
3.0.645 143 2/14/2025
3.0.644 107 2/14/2025
3.0.643 92 2/14/2025
3.0.642 119 2/14/2025
3.0.641 95 2/14/2025
3.0.640 95 2/14/2025
3.0.639 87 2/14/2025
3.0.638 170 2/13/2025
3.0.637 90 2/13/2025
3.0.636 275 2/12/2025
3.0.635 99 2/12/2025
3.0.634 90 2/12/2025
3.0.633 93 2/12/2025
3.0.632 164 2/12/2025
3.0.631 84 2/12/2025
3.0.630 95 2/12/2025
3.0.629 133 2/12/2025
3.0.628 80 2/12/2025
3.0.627 92 2/12/2025
3.0.626 85 2/12/2025
3.0.625 87 2/12/2025
3.0.624 145 2/11/2025
3.0.623 83 2/11/2025
3.0.622 80 2/11/2025
3.0.621 291 2/11/2025
3.0.620 84 2/11/2025
3.0.619 90 2/11/2025
3.0.618 88 2/11/2025
3.0.617 82 2/11/2025
3.0.616 82 2/11/2025
3.0.615 196 2/11/2025
3.0.614 86 2/11/2025
3.0.613 84 2/11/2025
3.0.612 155 2/11/2025
3.0.611 93 2/11/2025
3.0.610 118 2/11/2025
3.0.609 81 2/11/2025
3.0.608 87 2/11/2025
3.0.607 119 2/11/2025
3.0.606 87 2/11/2025
3.0.605 91 2/11/2025
3.0.604 87 2/10/2025
3.0.603 94 2/10/2025
3.0.602 92 2/10/2025
3.0.601 176 2/10/2025
3.0.600 79 2/10/2025
3.0.599 81 2/10/2025
3.0.598 160 2/10/2025
3.0.597 89 2/10/2025
3.0.596 83 2/10/2025
3.0.595 152 2/10/2025
3.0.594 179 2/9/2025
3.0.593 106 2/9/2025
3.0.592 80 2/9/2025
3.0.591 75 2/9/2025
3.0.590 84 2/9/2025
3.0.589 81 2/9/2025
3.0.588 89 2/9/2025
3.0.587 285 2/8/2025
3.0.586 85 2/8/2025
3.0.585 91 2/8/2025
3.0.584 84 2/8/2025
3.0.583 78 2/8/2025
3.0.582 105 2/7/2025
3.0.581 81 2/7/2025
3.0.580 82 2/7/2025
3.0.579 211 2/7/2025
3.0.578 75 2/7/2025
3.0.577 84 2/7/2025
3.0.576 90 2/7/2025
3.0.575 79 2/7/2025
3.0.574 82 2/7/2025
3.0.573 83 2/7/2025
3.0.572 82 2/7/2025
3.0.571 88 2/7/2025
3.0.570 79 2/7/2025
3.0.569 85 2/7/2025
3.0.568 75 2/7/2025
3.0.567 268 2/7/2025
3.0.566 129 2/7/2025
3.0.565 80 2/6/2025
3.0.564 189 2/5/2025
3.0.563 122 2/5/2025
3.0.562 106 2/5/2025
3.0.561 120 2/5/2025
3.0.560 106 2/5/2025
3.0.559 90 2/5/2025
3.0.558 192 2/5/2025
3.0.557 85 2/5/2025
3.0.556 111 2/5/2025
3.0.555 78 2/5/2025
3.0.554 92 2/5/2025
3.0.553 84 2/5/2025
3.0.552 84 2/5/2025
3.0.551 165 2/5/2025
3.0.550 188 2/5/2025
3.0.549 218 1/28/2025
3.0.548 90 1/28/2025
3.0.547 81 1/28/2025
3.0.546 79 1/28/2025
3.0.545 82 1/28/2025
3.0.544 78 1/28/2025
3.0.543 134 1/28/2025
3.0.542 76 1/28/2025
3.0.541 100 1/28/2025
3.0.540 94 1/28/2025
3.0.539 202 1/28/2025
3.0.538 79 1/27/2025
3.0.537 70 1/27/2025
3.0.536 71 1/27/2025
3.0.535 69 1/27/2025
3.0.534 73 1/27/2025
3.0.533 110 1/27/2025
3.0.532 72 1/27/2025
3.0.531 77 1/27/2025
3.0.530 72 1/27/2025
3.0.529 75 1/27/2025
3.0.528 208 1/26/2025
3.0.527 117 1/26/2025
3.0.526 81 1/26/2025
3.0.525 84 1/26/2025
3.0.524 81 1/26/2025
3.0.523 150 1/26/2025
3.0.522 85 1/25/2025
3.0.521 80 1/25/2025
3.0.520 176 1/25/2025
3.0.519 77 1/25/2025
3.0.518 79 1/25/2025
3.0.517 137 1/25/2025
3.0.516 77 1/25/2025
3.0.515 103 1/25/2025
3.0.514 165 1/25/2025
3.0.513 71 1/25/2025
3.0.512 163 1/24/2025
3.0.511 120 1/24/2025
3.0.510 104 1/24/2025
3.0.509 74 1/24/2025
3.0.508 103 1/24/2025
3.0.507 94 1/24/2025
3.0.506 77 1/24/2025
3.0.505 138 1/24/2025
3.0.504 80 1/24/2025
3.0.503 136 1/24/2025
3.0.502 77 1/24/2025
3.0.501 73 1/24/2025
3.0.500 76 1/24/2025
3.0.499 80 1/24/2025
3.0.498 75 1/24/2025
3.0.497 72 1/24/2025
3.0.496 71 1/24/2025
3.0.495 186 1/24/2025
3.0.494 72 1/24/2025
3.0.493 72 1/24/2025
3.0.492 71 1/24/2025
3.0.491 101 1/23/2025
3.0.490 115 1/23/2025
3.0.489 75 1/23/2025
3.0.488 196 1/22/2025
3.0.487 129 1/22/2025
3.0.486 85 1/21/2025
3.0.485 68 1/21/2025
3.0.484 133 1/21/2025
3.0.483 72 1/21/2025
3.0.482 82 1/21/2025
3.0.481 79 1/21/2025
3.0.480 76 1/21/2025
3.0.479 123 1/21/2025
3.0.478 73 1/21/2025
3.0.477 75 1/21/2025
3.0.476 200 1/21/2025
3.0.475 77 1/21/2025
3.0.474 78 1/21/2025
3.0.473 82 1/21/2025
3.0.472 79 1/21/2025
3.0.471 75 1/21/2025
3.0.470 214 1/21/2025
3.0.469 79 1/21/2025
3.0.468 127 1/20/2025
3.0.467 71 1/20/2025
3.0.466 139 1/20/2025
3.0.465 74 1/20/2025
3.0.464 158 1/20/2025
3.0.463 133 1/20/2025
3.0.462 78 1/20/2025
3.0.461 111 1/20/2025
3.0.460 70 1/20/2025
3.0.459 203 1/20/2025
3.0.458 76 1/20/2025
3.0.457 78 1/20/2025
3.0.456 71 1/20/2025
3.0.455 73 1/20/2025
3.0.454 181 1/19/2025
3.0.453 70 1/19/2025
3.0.452 78 1/19/2025
3.0.451 70 1/19/2025
3.0.450 147 1/19/2025
3.0.449 70 1/19/2025
3.0.448 73 1/19/2025
3.0.447 214 1/19/2025
3.0.446 69 1/19/2025
3.0.445 125 1/18/2025
3.0.444 148 1/18/2025
3.0.443 69 1/18/2025
3.0.442 167 1/18/2025
3.0.441 164 1/17/2025
3.0.440 125 1/17/2025
3.0.439 72 1/17/2025
3.0.438 76 1/17/2025
3.0.437 79 1/17/2025
3.0.436 151 1/17/2025
3.0.435 72 1/17/2025
3.0.434 98 1/17/2025
3.0.433 81 1/16/2025
3.0.432 142 1/16/2025
3.0.431 73 1/16/2025
3.0.430 90 1/16/2025
3.0.429 155 1/16/2025
3.0.428 96 1/16/2025
3.0.427 99 1/16/2025
3.0.426 69 1/16/2025
3.0.425 82 1/16/2025
3.0.424 136 1/16/2025
3.0.423 72 1/16/2025
3.0.422 162 1/16/2025
3.0.421 79 1/15/2025
3.0.420 142 1/15/2025
3.0.419 130 1/15/2025
3.0.418 78 1/15/2025
3.0.417 71 1/15/2025
3.0.416 115 1/15/2025
3.0.415 63 1/15/2025
3.0.414 231 1/15/2025
3.0.413 58 1/15/2025
3.0.412 88 1/15/2025
3.0.411 59 1/15/2025
3.0.410 47 1/15/2025
3.0.409 43 1/15/2025
3.0.408 41 1/15/2025
3.0.407 97 1/14/2025
3.0.406 56 1/14/2025
3.0.405 59 1/14/2025
3.0.404 65 1/14/2025
3.0.403 55 1/14/2025
3.0.402 117 1/14/2025
3.0.401 57 1/14/2025
3.0.400 158 1/14/2025
3.0.399 55 1/14/2025
3.0.398 129 1/13/2025
3.0.397 66 1/13/2025
3.0.396 60 1/13/2025
3.0.395 112 1/13/2025
3.0.394 68 1/13/2025
3.0.393 89 1/13/2025
3.0.392 65 1/13/2025
3.0.391 155 1/13/2025
3.0.390 65 1/13/2025
3.0.389 139 1/11/2025
3.0.388 68 1/11/2025
3.0.387 73 1/11/2025
3.0.386 102 1/11/2025
3.0.385 114 1/11/2025
3.0.384 74 1/11/2025
3.0.383 81 1/11/2025
3.0.382 77 1/11/2025
3.0.381 108 1/11/2025
3.0.380 76 1/11/2025
3.0.379 140 1/10/2025
3.0.378 81 1/10/2025
3.0.377 127 1/10/2025
3.0.376 78 1/10/2025
3.0.375 119 1/10/2025
3.0.374 76 1/10/2025
3.0.373 99 1/10/2025
3.0.372 75 1/10/2025
3.0.371 457 1/3/2025
3.0.370 169 1/3/2025
3.0.369 118 1/3/2025
3.0.368 99 1/3/2025
3.0.367 116 1/3/2025
3.0.366 105 1/3/2025
3.0.365 155 1/3/2025
3.0.364 108 1/3/2025
3.0.363 98 1/3/2025
3.0.362 84 1/3/2025
3.0.361 97 1/3/2025
3.0.360 86 1/3/2025
3.0.359 153 1/2/2025
3.0.358 85 1/2/2025
3.0.357 156 1/2/2025
3.0.356 89 1/2/2025
3.0.355 261 1/2/2025
3.0.354 86 1/2/2025
3.0.353 89 1/2/2025
3.0.352 187 1/1/2025
3.0.351 96 1/1/2025
3.0.350 93 1/1/2025
3.0.349 137 1/1/2025
3.0.348 90 1/1/2025
3.0.347 102 1/1/2025
3.0.346 89 1/1/2025
3.0.345 162 1/1/2025
3.0.344 99 1/1/2025
3.0.343 91 1/1/2025
3.0.342 100 1/1/2025
3.0.341 129 1/1/2025
3.0.340 99 1/1/2025
3.0.339 104 12/31/2024
3.0.338 95 12/31/2024
3.0.337 91 12/31/2024
3.0.336 188 12/31/2024
3.0.335 101 12/31/2024
3.0.334 102 12/31/2024
3.0.333 256 12/31/2024
3.0.332 110 12/31/2024
3.0.331 111 12/31/2024
3.0.330 105 12/31/2024
3.0.329 225 12/31/2024
3.0.328 79 12/31/2024
3.0.327 76 12/31/2024
3.0.326 138 12/31/2024
3.0.325 80 12/31/2024
3.0.324 86 12/31/2024
3.0.323 85 12/31/2024
3.0.322 86 12/31/2024
3.0.321 213 12/30/2024
3.0.320 157 12/28/2024
3.0.319 137 12/28/2024
3.0.318 89 12/28/2024
3.0.317 89 12/28/2024
3.0.316 102 12/28/2024
3.0.315 127 12/28/2024
3.0.314 80 12/28/2024
3.0.313 92 12/27/2024
3.0.312 88 12/27/2024
3.0.311 156 12/27/2024
3.0.310 86 12/27/2024
3.0.309 276 12/24/2024
3.0.308 140 12/24/2024
3.0.307 87 12/24/2024
3.0.306 82 12/24/2024
3.0.305 156 12/24/2024
3.0.304 104 12/24/2024
3.0.303 115 12/24/2024
3.0.302 88 12/24/2024
3.0.301 85 12/24/2024
3.0.300 165 12/24/2024
3.0.299 163 12/24/2024
3.0.298 112 12/24/2024
3.0.297 81 12/24/2024
3.0.296 88 12/24/2024
3.0.295 87 12/24/2024
3.0.294 119 12/24/2024
3.0.293 85 12/24/2024
3.0.292 120 12/23/2024
3.0.291 77 12/23/2024
3.0.290 97 12/23/2024
3.0.289 85 12/23/2024
3.0.288 146 12/23/2024
3.0.287 188 12/23/2024
3.0.286 84 12/23/2024
3.0.285 140 12/23/2024
3.0.284 88 12/23/2024
3.0.283 87 12/23/2024
3.0.282 116 12/23/2024
3.0.281 85 12/23/2024
3.0.280 202 12/23/2024
3.0.279 86 12/23/2024
3.0.278 121 12/22/2024
3.0.277 82 12/22/2024
3.0.276 89 12/22/2024
3.0.275 163 12/22/2024
3.0.274 97 12/22/2024
3.0.273 88 12/22/2024
3.0.272 95 12/22/2024
3.0.271 205 12/22/2024
3.0.270 88 12/22/2024
3.0.269 139 12/22/2024
3.0.268 182 12/22/2024
3.0.267 90 12/22/2024
3.0.266 118 12/22/2024
3.0.265 115 12/21/2024
3.0.264 101 12/21/2024
3.0.263 109 12/21/2024
3.0.262 89 12/21/2024
3.0.261 229 12/21/2024
3.0.260 89 12/21/2024
3.0.259 123 12/21/2024
3.0.258 88 12/21/2024
3.0.257 166 12/21/2024
3.0.256 93 12/21/2024
3.0.255 86 12/21/2024
3.0.254 208 12/21/2024
3.0.253 91 12/21/2024
3.0.252 85 12/21/2024
3.0.251 128 12/20/2024
3.0.250 85 12/20/2024
3.0.249 150 12/20/2024
3.0.248 91 12/20/2024
3.0.247 87 12/20/2024
3.0.246 166 12/20/2024
3.0.245 153 12/20/2024
3.0.244 87 12/20/2024
3.0.243 92 12/20/2024
3.0.242 91 12/20/2024
3.0.241 151 12/20/2024
3.0.240 97 12/20/2024
3.0.239 96 12/20/2024
3.0.238 170 12/19/2024
3.0.237 89 12/19/2024
3.0.236 123 12/19/2024
3.0.235 109 12/19/2024
3.0.234 88 12/19/2024
3.0.233 90 12/19/2024
3.0.232 134 12/19/2024
3.0.231 83 12/19/2024
3.0.230 120 12/18/2024
3.0.229 87 12/18/2024
3.0.228 91 12/18/2024
3.0.227 178 12/17/2024
3.0.225 121 12/17/2024
3.0.224 154 12/17/2024
3.0.223 110 12/16/2024
3.0.222 88 12/16/2024
3.0.221 90 12/16/2024
3.0.220 96 12/16/2024
3.0.219 279 12/10/2024
3.0.218 80 12/10/2024
3.0.217 108 12/10/2024
3.0.216 94 12/10/2024
3.0.215 131 12/10/2024
3.0.214 87 12/10/2024
3.0.213 101 12/9/2024
3.0.212 99 12/9/2024
3.0.211 132 12/9/2024
3.0.210 174 12/9/2024
3.0.209 91 12/9/2024
3.0.208 98 12/9/2024
3.0.207 83 12/9/2024
3.0.206 87 12/9/2024
3.0.205 140 12/9/2024
3.0.204 85 12/9/2024
3.0.203 210 12/7/2024
3.0.202 100 12/7/2024
3.0.201 93 12/7/2024
3.0.200 89 12/6/2024
3.0.199 85 12/6/2024
3.0.198 100 12/6/2024
3.0.197 93 12/6/2024
3.0.196 94 12/6/2024
3.0.195 95 12/6/2024
3.0.194 96 12/6/2024
3.0.193 89 12/6/2024
3.0.192 96 12/6/2024
3.0.191 103 12/6/2024
3.0.190 97 12/6/2024
3.0.189 102 12/6/2024
3.0.188 99 12/6/2024
3.0.187 114 12/6/2024
3.0.184 107 12/6/2024
3.0.183 95 12/6/2024
3.0.182 91 12/6/2024
3.0.181 106 12/5/2024
3.0.180 102 12/5/2024
3.0.179 95 12/5/2024
3.0.178 648 12/5/2024
3.0.177 106 12/5/2024
3.0.176 96 12/5/2024
3.0.175 119 12/5/2024
3.0.174 84 12/5/2024
3.0.173 114 12/5/2024
3.0.172 135 12/5/2024
3.0.171 90 12/5/2024
3.0.170 124 12/5/2024
3.0.169 98 12/5/2024
3.0.168 102 12/5/2024
3.0.167 94 12/4/2024
3.0.166 94 12/4/2024
3.0.165 143 12/4/2024
3.0.164 95 12/4/2024
3.0.163 181 12/4/2024
3.0.162 130 12/4/2024
3.0.161 101 12/4/2024
3.0.160 129 12/4/2024
3.0.159 92 12/4/2024
3.0.158 150 12/4/2024
3.0.157 93 12/4/2024
3.0.156 96 12/4/2024
3.0.155 168 12/4/2024
3.0.154 94 12/3/2024
3.0.153 87 12/3/2024
3.0.152 130 12/3/2024
3.0.151 83 12/3/2024
3.0.150 119 12/3/2024
3.0.149 88 12/3/2024
3.0.148 92 12/3/2024
3.0.147 89 12/3/2024
3.0.146 134 12/3/2024
3.0.145 84 12/3/2024
3.0.144 96 12/3/2024
3.0.143 140 12/3/2024
3.0.142 89 12/3/2024
3.0.141 330 12/2/2024
3.0.140 96 12/2/2024
3.0.139 91 12/2/2024
3.0.138 83 12/2/2024
3.0.137 139 12/2/2024
3.0.136 97 12/2/2024
3.0.135 94 12/2/2024
3.0.134 145 12/2/2024
3.0.133 86 12/2/2024
3.0.132 149 12/2/2024
3.0.131 87 12/2/2024
3.0.130 191 12/2/2024
3.0.129 89 12/2/2024
3.0.128 90 12/1/2024
3.0.127 91 12/1/2024
3.0.126 132 12/1/2024
3.0.125 94 12/1/2024
3.0.124 186 12/1/2024
3.0.123 103 12/1/2024
3.0.122 97 12/1/2024
3.0.121 96 12/1/2024
3.0.120 177 11/29/2024
3.0.119 114 11/29/2024
3.0.118 89 11/29/2024
3.0.117 129 11/29/2024
3.0.116 85 11/29/2024
3.0.115 122 11/29/2024
3.0.114 105 11/29/2024
3.0.113 170 11/21/2024
3.0.112 109 11/21/2024
3.0.111 87 11/21/2024
3.0.110 93 11/21/2024
3.0.109 119 11/21/2024
3.0.108 97 11/21/2024
3.0.107 192 11/20/2024
3.0.106 102 11/20/2024
3.0.105 93 11/20/2024
3.0.104 112 11/20/2024
3.0.103 91 11/20/2024
3.0.102 87 11/20/2024
3.0.101 94 11/20/2024
3.0.100 92 11/19/2024
3.0.99 92 11/19/2024
3.0.98 88 11/19/2024
3.0.97 354 11/19/2024
3.0.96 218 11/19/2024
3.0.95 82 11/19/2024
3.0.94 81 11/19/2024
3.0.93 156 11/19/2024
3.0.92 82 11/19/2024
3.0.91 111 11/19/2024
3.0.90 89 11/19/2024
3.0.89 239 11/15/2024
3.0.88 116 11/15/2024
3.0.87 84 11/15/2024
3.0.86 93 11/14/2024
3.0.85 84 11/14/2024
3.0.84 130 11/14/2024
3.0.83 86 11/14/2024
3.0.82 95 11/14/2024
3.0.81 89 11/14/2024
3.0.80 140 11/14/2024
3.0.79 136 11/14/2024
3.0.78 98 11/14/2024
3.0.77 88 11/14/2024
3.0.76 182 11/14/2024
3.0.75 101 11/14/2024
3.0.74 142 11/14/2024
3.0.73 175 11/14/2024
3.0.72 97 11/14/2024
3.0.71 152 11/14/2024
3.0.70 91 11/14/2024
3.0.69 117 11/14/2024
3.0.68 104 11/14/2024
3.0.67 188 11/14/2024
3.0.66 96 11/14/2024
3.0.65 96 11/14/2024
2.1.64 276 11/13/2024
2.1.63 112 11/13/2024
2.1.62 127 11/13/2024
2.1.61 92 11/13/2024
2.1.60 93 11/13/2024
2.1.59 230 11/13/2024
2.1.58 96 11/13/2024
2.1.57 96 11/13/2024
2.1.56 133 11/12/2024
2.1.55 92 11/12/2024
2.1.54 613 11/9/2024
2.1.53 126 11/9/2024
2.1.52 100 11/9/2024
2.1.51 150 11/9/2024
2.1.50 102 11/9/2024
2.1.49 101 11/9/2024
2.1.48 102 11/9/2024
2.1.47 233 11/9/2024
2.1.46 218 11/8/2024
2.1.45 103 11/8/2024
2.1.44 109 11/8/2024
2.1.43 128 11/8/2024
2.1.42 107 11/8/2024
2.1.41 219 11/8/2024
2.1.40 103 11/8/2024
2.1.39 102 11/8/2024
2.1.38 191 11/8/2024
2.1.37 96 11/8/2024
2.1.36 256 11/6/2024
2.1.35 146 11/6/2024
2.1.34 281 11/1/2024
2.1.33 132 11/1/2024
2.1.32 101 11/1/2024
2.1.31 131 11/1/2024
2.1.30 163 11/1/2024
2.1.29 161 11/1/2024
2.1.28 107 11/1/2024
2.1.26 226 10/29/2024
2.1.25 92 10/29/2024
2.1.24 91 10/29/2024
2.1.23 103 10/29/2024
2.1.22 98 10/29/2024
2.1.21 91 10/29/2024
2.1.20 229 10/29/2024
2.1.19 198 10/29/2024
2.1.18 131 10/29/2024
2.1.17 97 10/29/2024
2.1.16 88 10/29/2024
2.1.15 219 10/28/2024
2.1.14 100 10/28/2024
2.1.13 96 10/28/2024
2.1.12 321 10/26/2024
2.1.11 100 10/26/2024
2.1.10 99 10/26/2024
2.1.9 93 10/26/2024
2.1.8 100 10/26/2024
2.1.7 96 10/26/2024
2.1.6 219 10/22/2024
2.1.5 96 10/22/2024
2.1.4 93 10/22/2024
2.1.3 97 10/22/2024
2.1.2 99 10/22/2024
2.1.1 101 10/22/2024