Soenneker.Utils.RateLimiting.Factory 3.0.897

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.897
                    
NuGet\Install-Package Soenneker.Utils.RateLimiting.Factory -Version 3.0.897
                    
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.897" />
                    
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.897" />
                    
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.897
                    
#r "nuget: Soenneker.Utils.RateLimiting.Factory, 3.0.897"
                    
#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.897
                    
Install Soenneker.Utils.RateLimiting.Factory as a Cake Addin
#tool nuget:?package=Soenneker.Utils.RateLimiting.Factory&version=3.0.897
                    
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.  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 (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.906 48 5/28/2025
3.0.905 54 5/27/2025
3.0.904 82 5/27/2025
3.0.903 50 5/27/2025
3.0.902 74 5/27/2025
3.0.901 295 5/23/2025
3.0.900 106 5/23/2025
3.0.899 180 5/23/2025
3.0.898 141 5/23/2025
3.0.897 161 5/22/2025
3.0.896 188 5/18/2025
3.0.895 127 5/18/2025
3.0.894 132 5/18/2025
3.0.893 298 5/14/2025
3.0.892 225 5/13/2025
3.0.891 325 5/8/2025
3.0.890 147 5/8/2025
3.0.889 133 5/8/2025
3.0.888 178 5/8/2025
3.0.887 166 5/7/2025
3.0.886 284 5/5/2025
3.0.885 126 5/5/2025
3.0.884 162 5/5/2025
3.0.883 129 5/5/2025
3.0.882 154 5/5/2025
3.0.881 129 5/5/2025
3.0.880 173 5/5/2025
3.0.879 171 5/5/2025
3.0.878 128 5/5/2025
3.0.877 678 4/9/2025
3.0.876 147 4/9/2025
3.0.875 221 4/9/2025
3.0.874 211 4/8/2025
3.0.873 147 4/8/2025
3.0.872 164 4/8/2025
3.0.871 255 4/8/2025
3.0.870 162 4/8/2025
3.0.869 146 4/8/2025
3.0.868 164 4/8/2025
3.0.867 144 4/8/2025
3.0.866 148 4/8/2025
3.0.865 141 4/8/2025
3.0.864 144 4/8/2025
3.0.863 154 4/8/2025
3.0.862 153 4/8/2025
3.0.861 376 4/8/2025
3.0.860 153 4/8/2025
3.0.859 190 4/8/2025
3.0.858 148 4/8/2025
3.0.857 148 4/7/2025
3.0.856 141 4/7/2025
3.0.855 192 4/7/2025
3.0.854 238 4/7/2025
3.0.853 146 4/7/2025
3.0.852 138 4/7/2025
3.0.851 194 4/7/2025
3.0.850 155 4/7/2025
3.0.849 150 4/7/2025
3.0.848 149 4/7/2025
3.0.847 225 4/7/2025
3.0.846 147 4/7/2025
3.0.845 154 4/7/2025
3.0.844 157 4/7/2025
3.0.843 150 4/7/2025
3.0.842 160 4/7/2025
3.0.841 149 4/7/2025
3.0.840 151 4/6/2025
3.0.839 144 4/6/2025
3.0.838 160 4/6/2025
3.0.837 147 4/6/2025
3.0.836 148 4/6/2025
3.0.835 154 4/6/2025
3.0.834 145 4/6/2025
3.0.833 146 4/6/2025
3.0.832 132 4/6/2025
3.0.831 127 4/6/2025
3.0.830 129 4/6/2025
3.0.829 131 4/6/2025
3.0.828 96 4/6/2025
3.0.827 100 4/6/2025
3.0.826 93 4/6/2025
3.0.825 97 4/6/2025
3.0.824 106 4/6/2025
3.0.823 94 4/6/2025
3.0.822 117 4/5/2025
3.0.821 71 4/5/2025
3.0.820 79 4/5/2025
3.0.819 79 4/5/2025
3.0.818 80 4/5/2025
3.0.817 88 4/5/2025
3.0.816 78 4/5/2025
3.0.815 88 4/5/2025
3.0.814 83 4/5/2025
3.0.813 76 4/5/2025
3.0.812 80 4/5/2025
3.0.811 94 4/5/2025
3.0.810 88 4/5/2025
3.0.809 443 4/4/2025
3.0.808 503 4/4/2025
3.0.807 211 4/3/2025
3.0.806 140 4/3/2025
3.0.805 225 4/1/2025
3.0.804 151 4/1/2025
3.0.803 165 4/1/2025
3.0.802 134 4/1/2025
3.0.801 140 4/1/2025
3.0.800 201 4/1/2025
3.0.799 174 4/1/2025
3.0.798 145 4/1/2025
3.0.797 195 3/31/2025
3.0.796 135 3/31/2025
3.0.795 143 3/31/2025
3.0.794 138 3/31/2025
3.0.793 229 3/31/2025
3.0.792 183 3/31/2025
3.0.791 113 3/29/2025
3.0.790 104 3/29/2025
3.0.789 94 3/29/2025
3.0.788 76 3/29/2025
3.0.787 82 3/29/2025
3.0.786 196 3/27/2025
3.0.785 520 3/26/2025
3.0.784 485 3/25/2025
3.0.783 455 3/25/2025
3.0.782 478 3/25/2025
3.0.781 454 3/25/2025
3.0.780 465 3/25/2025
3.0.779 456 3/25/2025
3.0.778 230 3/21/2025
3.0.777 127 3/21/2025
3.0.776 107 3/21/2025
3.0.775 140 3/21/2025
3.0.774 118 3/21/2025
3.0.773 215 3/20/2025
3.0.772 244 3/18/2025
3.0.771 190 3/18/2025
3.0.770 135 3/18/2025
3.0.769 147 3/18/2025
3.0.768 195 3/18/2025
3.0.767 168 3/18/2025
3.0.766 143 3/15/2025
3.0.765 85 3/15/2025
3.0.764 83 3/15/2025
3.0.763 58 3/15/2025
3.0.762 94 3/15/2025
3.0.761 295 3/12/2025
3.0.760 170 3/12/2025
3.0.759 185 3/12/2025
3.0.758 154 3/12/2025
3.0.757 227 3/12/2025
3.0.756 157 3/12/2025
3.0.755 147 3/12/2025
3.0.754 151 3/12/2025
3.0.753 225 3/12/2025
3.0.752 153 3/12/2025
3.0.751 153 3/12/2025
3.0.750 187 3/11/2025
3.0.749 149 3/11/2025
3.0.748 207 3/11/2025
3.0.747 162 3/11/2025
3.0.746 170 3/11/2025
3.0.745 160 3/11/2025
3.0.744 175 3/11/2025
3.0.743 166 3/11/2025
3.0.742 231 3/11/2025
3.0.741 162 3/11/2025
3.0.740 171 3/11/2025
3.0.739 295 3/11/2025
3.0.738 155 3/11/2025
3.0.737 324 3/7/2025
3.0.736 218 3/7/2025
3.0.735 201 3/7/2025
3.0.734 275 3/7/2025
3.0.733 238 3/7/2025
3.0.732 217 3/7/2025
3.0.731 256 3/2/2025
3.0.730 125 3/2/2025
3.0.729 125 3/2/2025
3.0.728 110 3/2/2025
3.0.727 82 3/2/2025
3.0.726 92 3/2/2025
3.0.725 86 3/2/2025
3.0.724 134 3/2/2025
3.0.723 85 3/2/2025
3.0.722 129 3/2/2025
3.0.721 78 3/2/2025
3.0.720 98 3/2/2025
3.0.719 90 3/2/2025
3.0.718 190 3/1/2025
3.0.717 91 3/1/2025
3.0.716 90 3/1/2025
3.0.715 181 3/1/2025
3.0.714 85 3/1/2025
3.0.713 83 3/1/2025
3.0.712 273 3/1/2025
3.0.711 93 3/1/2025
3.0.710 90 3/1/2025
3.0.709 79 3/1/2025
3.0.708 94 3/1/2025
3.0.707 79 3/1/2025
3.0.706 177 3/1/2025
3.0.705 82 3/1/2025
3.0.704 79 3/1/2025
3.0.703 277 2/26/2025
3.0.702 87 2/26/2025
3.0.701 119 2/25/2025
3.0.700 79 2/25/2025
3.0.699 165 2/25/2025
3.0.698 88 2/25/2025
3.0.697 185 2/25/2025
3.0.696 89 2/25/2025
3.0.695 83 2/25/2025
3.0.694 139 2/25/2025
3.0.693 86 2/25/2025
3.0.692 90 2/24/2025
3.0.691 86 2/24/2025
3.0.690 87 2/24/2025
3.0.689 301 2/23/2025
3.0.688 140 2/23/2025
3.0.687 128 2/23/2025
3.0.686 87 2/23/2025
3.0.685 107 2/23/2025
3.0.684 83 2/23/2025
3.0.683 88 2/22/2025
3.0.682 197 2/22/2025
3.0.681 155 2/22/2025
3.0.680 105 2/22/2025
3.0.679 125 2/22/2025
3.0.678 95 2/22/2025
3.0.677 111 2/22/2025
3.0.676 128 2/22/2025
3.0.675 92 2/22/2025
3.0.674 176 2/22/2025
3.0.673 104 2/22/2025
3.0.672 88 2/22/2025
3.0.671 135 2/21/2025
3.0.670 88 2/21/2025
3.0.669 93 2/21/2025
3.0.668 93 2/21/2025
3.0.667 91 2/21/2025
3.0.666 252 2/21/2025
3.0.665 96 2/21/2025
3.0.664 91 2/21/2025
3.0.663 278 2/19/2025
3.0.662 104 2/19/2025
3.0.661 110 2/19/2025
3.0.660 95 2/19/2025
3.0.659 109 2/19/2025
3.0.658 98 2/19/2025
3.0.657 120 2/19/2025
3.0.656 98 2/19/2025
3.0.655 243 2/18/2025
3.0.654 95 2/18/2025
3.0.653 156 2/18/2025
3.0.652 94 2/18/2025
3.0.651 101 2/18/2025
3.0.650 93 2/18/2025
3.0.649 90 2/18/2025
3.0.648 217 2/18/2025
3.0.647 97 2/18/2025
3.0.646 200 2/16/2025
3.0.645 151 2/14/2025
3.0.644 116 2/14/2025
3.0.643 100 2/14/2025
3.0.642 127 2/14/2025
3.0.641 103 2/14/2025
3.0.640 103 2/14/2025
3.0.639 95 2/14/2025
3.0.638 178 2/13/2025
3.0.637 98 2/13/2025
3.0.636 283 2/12/2025
3.0.635 107 2/12/2025
3.0.634 99 2/12/2025
3.0.633 101 2/12/2025
3.0.632 172 2/12/2025
3.0.631 92 2/12/2025
3.0.630 104 2/12/2025
3.0.629 141 2/12/2025
3.0.628 89 2/12/2025
3.0.627 101 2/12/2025
3.0.626 93 2/12/2025
3.0.625 95 2/12/2025
3.0.624 153 2/11/2025
3.0.623 97 2/11/2025
3.0.622 88 2/11/2025
3.0.621 300 2/11/2025
3.0.620 92 2/11/2025
3.0.619 99 2/11/2025
3.0.618 96 2/11/2025
3.0.617 92 2/11/2025
3.0.616 90 2/11/2025
3.0.615 204 2/11/2025
3.0.614 94 2/11/2025
3.0.613 93 2/11/2025
3.0.612 163 2/11/2025
3.0.611 101 2/11/2025
3.0.610 126 2/11/2025
3.0.609 89 2/11/2025
3.0.608 95 2/11/2025
3.0.607 127 2/11/2025
3.0.606 98 2/11/2025
3.0.605 100 2/11/2025
3.0.604 97 2/10/2025
3.0.603 102 2/10/2025
3.0.602 101 2/10/2025
3.0.601 185 2/10/2025
3.0.600 89 2/10/2025
3.0.599 90 2/10/2025
3.0.598 170 2/10/2025
3.0.597 98 2/10/2025
3.0.596 98 2/10/2025
3.0.595 161 2/10/2025
3.0.594 187 2/9/2025
3.0.593 114 2/9/2025
3.0.592 88 2/9/2025
3.0.591 84 2/9/2025
3.0.590 93 2/9/2025
3.0.589 89 2/9/2025
3.0.588 97 2/9/2025
3.0.587 294 2/8/2025
3.0.586 93 2/8/2025
3.0.585 99 2/8/2025
3.0.584 92 2/8/2025
3.0.583 87 2/8/2025
3.0.582 114 2/7/2025
3.0.581 90 2/7/2025
3.0.580 91 2/7/2025
3.0.579 220 2/7/2025
3.0.578 90 2/7/2025
3.0.577 92 2/7/2025
3.0.576 102 2/7/2025
3.0.575 88 2/7/2025
3.0.574 90 2/7/2025
3.0.573 91 2/7/2025
3.0.572 92 2/7/2025
3.0.571 96 2/7/2025
3.0.570 87 2/7/2025
3.0.569 93 2/7/2025
3.0.568 83 2/7/2025
3.0.567 276 2/7/2025
3.0.566 138 2/7/2025
3.0.565 88 2/6/2025
3.0.564 197 2/5/2025
3.0.563 134 2/5/2025
3.0.562 113 2/5/2025
3.0.561 126 2/5/2025
3.0.560 113 2/5/2025
3.0.559 96 2/5/2025
3.0.558 198 2/5/2025
3.0.557 100 2/5/2025
3.0.556 117 2/5/2025
3.0.555 84 2/5/2025
3.0.554 99 2/5/2025
3.0.553 90 2/5/2025
3.0.552 91 2/5/2025
3.0.551 171 2/5/2025
3.0.550 194 2/5/2025
3.0.549 223 1/28/2025
3.0.548 96 1/28/2025
3.0.547 86 1/28/2025
3.0.546 85 1/28/2025
3.0.545 88 1/28/2025
3.0.544 83 1/28/2025
3.0.543 140 1/28/2025
3.0.542 82 1/28/2025
3.0.541 107 1/28/2025
3.0.540 98 1/28/2025
3.0.539 208 1/28/2025
3.0.538 84 1/27/2025
3.0.537 76 1/27/2025
3.0.536 81 1/27/2025
3.0.535 74 1/27/2025
3.0.534 79 1/27/2025
3.0.533 115 1/27/2025
3.0.532 84 1/27/2025
3.0.531 83 1/27/2025
3.0.530 77 1/27/2025
3.0.529 80 1/27/2025
3.0.528 214 1/26/2025
3.0.527 122 1/26/2025
3.0.526 86 1/26/2025
3.0.525 90 1/26/2025
3.0.524 88 1/26/2025
3.0.523 157 1/26/2025
3.0.522 91 1/25/2025
3.0.521 87 1/25/2025
3.0.520 183 1/25/2025
3.0.519 83 1/25/2025
3.0.518 85 1/25/2025
3.0.517 143 1/25/2025
3.0.516 83 1/25/2025
3.0.515 109 1/25/2025
3.0.514 172 1/25/2025
3.0.513 78 1/25/2025
3.0.512 168 1/24/2025
3.0.511 125 1/24/2025
3.0.510 109 1/24/2025
3.0.509 80 1/24/2025
3.0.508 107 1/24/2025
3.0.507 101 1/24/2025
3.0.506 81 1/24/2025
3.0.505 142 1/24/2025
3.0.504 84 1/24/2025
3.0.503 139 1/24/2025
3.0.502 81 1/24/2025
3.0.501 76 1/24/2025
3.0.500 80 1/24/2025
3.0.499 83 1/24/2025
3.0.498 81 1/24/2025
3.0.497 78 1/24/2025
3.0.496 75 1/24/2025
3.0.495 191 1/24/2025
3.0.494 77 1/24/2025
3.0.493 77 1/24/2025
3.0.492 75 1/24/2025
3.0.491 105 1/23/2025
3.0.490 118 1/23/2025
3.0.489 78 1/23/2025
3.0.488 199 1/22/2025
3.0.487 138 1/22/2025
3.0.486 89 1/21/2025
3.0.485 73 1/21/2025
3.0.484 136 1/21/2025
3.0.483 75 1/21/2025
3.0.482 85 1/21/2025
3.0.481 83 1/21/2025
3.0.480 82 1/21/2025
3.0.479 128 1/21/2025
3.0.478 78 1/21/2025
3.0.477 80 1/21/2025
3.0.476 205 1/21/2025
3.0.475 80 1/21/2025
3.0.474 81 1/21/2025
3.0.473 86 1/21/2025
3.0.472 91 1/21/2025
3.0.471 78 1/21/2025
3.0.470 219 1/21/2025
3.0.469 85 1/21/2025
3.0.468 132 1/20/2025
3.0.467 78 1/20/2025
3.0.466 142 1/20/2025
3.0.465 77 1/20/2025
3.0.464 161 1/20/2025
3.0.463 136 1/20/2025
3.0.462 82 1/20/2025
3.0.461 114 1/20/2025
3.0.460 73 1/20/2025
3.0.459 206 1/20/2025
3.0.458 80 1/20/2025
3.0.457 82 1/20/2025
3.0.456 74 1/20/2025
3.0.455 76 1/20/2025
3.0.454 185 1/19/2025
3.0.453 74 1/19/2025
3.0.452 82 1/19/2025
3.0.451 74 1/19/2025
3.0.450 150 1/19/2025
3.0.449 73 1/19/2025
3.0.448 76 1/19/2025
3.0.447 217 1/19/2025
3.0.446 73 1/19/2025
3.0.445 128 1/18/2025
3.0.444 151 1/18/2025
3.0.443 72 1/18/2025
3.0.442 170 1/18/2025
3.0.441 167 1/17/2025
3.0.440 131 1/17/2025
3.0.439 76 1/17/2025
3.0.438 80 1/17/2025
3.0.437 82 1/17/2025
3.0.436 155 1/17/2025
3.0.435 75 1/17/2025
3.0.434 101 1/17/2025
3.0.433 84 1/16/2025
3.0.432 147 1/16/2025
3.0.431 78 1/16/2025
3.0.430 93 1/16/2025
3.0.429 158 1/16/2025
3.0.428 100 1/16/2025
3.0.427 102 1/16/2025
3.0.426 72 1/16/2025
3.0.425 85 1/16/2025
3.0.424 140 1/16/2025
3.0.423 75 1/16/2025
3.0.422 166 1/16/2025
3.0.421 82 1/15/2025
3.0.420 146 1/15/2025
3.0.419 134 1/15/2025
3.0.418 82 1/15/2025
3.0.417 74 1/15/2025
3.0.416 118 1/15/2025
3.0.415 66 1/15/2025
3.0.414 234 1/15/2025
3.0.413 61 1/15/2025
3.0.412 91 1/15/2025
3.0.411 62 1/15/2025
3.0.410 50 1/15/2025
3.0.409 48 1/15/2025
3.0.408 46 1/15/2025
3.0.407 102 1/14/2025
3.0.406 61 1/14/2025
3.0.405 62 1/14/2025
3.0.404 71 1/14/2025
3.0.403 60 1/14/2025
3.0.402 123 1/14/2025
3.0.401 62 1/14/2025
3.0.400 161 1/14/2025
3.0.399 58 1/14/2025
3.0.398 134 1/13/2025
3.0.397 71 1/13/2025
3.0.396 65 1/13/2025
3.0.395 118 1/13/2025
3.0.394 73 1/13/2025
3.0.393 93 1/13/2025
3.0.392 70 1/13/2025
3.0.391 160 1/13/2025
3.0.390 70 1/13/2025
3.0.389 144 1/11/2025
3.0.388 73 1/11/2025
3.0.387 78 1/11/2025
3.0.386 105 1/11/2025
3.0.385 117 1/11/2025
3.0.384 77 1/11/2025
3.0.383 84 1/11/2025
3.0.382 81 1/11/2025
3.0.381 113 1/11/2025
3.0.380 83 1/11/2025
3.0.379 151 1/10/2025
3.0.378 84 1/10/2025
3.0.377 131 1/10/2025
3.0.376 81 1/10/2025
3.0.375 122 1/10/2025
3.0.374 80 1/10/2025
3.0.373 105 1/10/2025
3.0.372 81 1/10/2025
3.0.371 460 1/3/2025
3.0.370 172 1/3/2025
3.0.369 121 1/3/2025
3.0.368 103 1/3/2025
3.0.367 119 1/3/2025
3.0.366 108 1/3/2025
3.0.365 158 1/3/2025
3.0.364 111 1/3/2025
3.0.363 101 1/3/2025
3.0.362 87 1/3/2025
3.0.361 100 1/3/2025
3.0.360 90 1/3/2025
3.0.359 156 1/2/2025
3.0.358 88 1/2/2025
3.0.357 162 1/2/2025
3.0.356 92 1/2/2025
3.0.355 264 1/2/2025
3.0.354 89 1/2/2025
3.0.353 92 1/2/2025
3.0.352 190 1/1/2025
3.0.351 99 1/1/2025
3.0.350 97 1/1/2025
3.0.349 140 1/1/2025
3.0.348 93 1/1/2025
3.0.347 105 1/1/2025
3.0.346 92 1/1/2025
3.0.345 165 1/1/2025
3.0.344 102 1/1/2025
3.0.343 94 1/1/2025
3.0.342 105 1/1/2025
3.0.341 133 1/1/2025
3.0.340 102 1/1/2025
3.0.339 107 12/31/2024
3.0.338 99 12/31/2024
3.0.337 95 12/31/2024
3.0.336 191 12/31/2024
3.0.335 104 12/31/2024
3.0.334 105 12/31/2024
3.0.333 259 12/31/2024
3.0.332 113 12/31/2024
3.0.331 115 12/31/2024
3.0.330 108 12/31/2024
3.0.329 228 12/31/2024
3.0.328 82 12/31/2024
3.0.327 79 12/31/2024
3.0.326 141 12/31/2024
3.0.325 84 12/31/2024
3.0.324 89 12/31/2024
3.0.323 89 12/31/2024
3.0.322 90 12/31/2024
3.0.321 216 12/30/2024
3.0.320 159 12/28/2024
3.0.319 139 12/28/2024
3.0.318 92 12/28/2024
3.0.317 92 12/28/2024
3.0.316 104 12/28/2024
3.0.315 130 12/28/2024
3.0.314 84 12/28/2024
3.0.313 95 12/27/2024
3.0.312 91 12/27/2024
3.0.311 159 12/27/2024
3.0.310 89 12/27/2024
3.0.309 278 12/24/2024
3.0.308 142 12/24/2024
3.0.307 89 12/24/2024
3.0.306 86 12/24/2024
3.0.305 158 12/24/2024
3.0.304 106 12/24/2024
3.0.303 119 12/24/2024
3.0.302 91 12/24/2024
3.0.301 89 12/24/2024
3.0.300 167 12/24/2024
3.0.299 165 12/24/2024
3.0.298 114 12/24/2024
3.0.297 85 12/24/2024
3.0.296 91 12/24/2024
3.0.295 89 12/24/2024
3.0.294 122 12/24/2024
3.0.293 88 12/24/2024
3.0.292 122 12/23/2024
3.0.291 79 12/23/2024
3.0.290 100 12/23/2024
3.0.289 87 12/23/2024
3.0.288 148 12/23/2024
3.0.287 191 12/23/2024
3.0.286 87 12/23/2024
3.0.285 142 12/23/2024
3.0.284 91 12/23/2024
3.0.283 90 12/23/2024
3.0.282 118 12/23/2024
3.0.281 87 12/23/2024
3.0.280 204 12/23/2024
3.0.279 88 12/23/2024
3.0.278 123 12/22/2024
3.0.277 85 12/22/2024
3.0.276 91 12/22/2024
3.0.275 167 12/22/2024
3.0.274 99 12/22/2024
3.0.273 91 12/22/2024
3.0.272 98 12/22/2024
3.0.271 208 12/22/2024
3.0.270 90 12/22/2024
3.0.269 141 12/22/2024
3.0.268 184 12/22/2024
3.0.267 93 12/22/2024
3.0.266 121 12/22/2024
3.0.265 117 12/21/2024
3.0.264 104 12/21/2024
3.0.263 111 12/21/2024
3.0.262 92 12/21/2024
3.0.261 231 12/21/2024
3.0.260 91 12/21/2024
3.0.259 126 12/21/2024
3.0.258 91 12/21/2024
3.0.257 168 12/21/2024
3.0.256 98 12/21/2024
3.0.255 89 12/21/2024
3.0.254 210 12/21/2024
3.0.253 94 12/21/2024
3.0.252 87 12/21/2024
3.0.251 130 12/20/2024
3.0.250 87 12/20/2024
3.0.249 153 12/20/2024
3.0.248 96 12/20/2024
3.0.247 91 12/20/2024
3.0.246 168 12/20/2024
3.0.245 155 12/20/2024
3.0.244 90 12/20/2024
3.0.243 94 12/20/2024
3.0.242 93 12/20/2024
3.0.241 153 12/20/2024
3.0.240 99 12/20/2024
3.0.239 100 12/20/2024
3.0.238 173 12/19/2024
3.0.237 91 12/19/2024
3.0.236 127 12/19/2024
3.0.235 112 12/19/2024
3.0.234 90 12/19/2024
3.0.233 93 12/19/2024
3.0.232 137 12/19/2024
3.0.231 85 12/19/2024
3.0.230 123 12/18/2024
3.0.229 89 12/18/2024
3.0.228 93 12/18/2024
3.0.227 180 12/17/2024
3.0.225 124 12/17/2024
3.0.224 158 12/17/2024
3.0.223 114 12/16/2024
3.0.222 91 12/16/2024
3.0.221 93 12/16/2024
3.0.220 98 12/16/2024
3.0.219 281 12/10/2024
3.0.218 83 12/10/2024
3.0.217 110 12/10/2024
3.0.216 96 12/10/2024
3.0.215 137 12/10/2024
3.0.214 90 12/10/2024
3.0.213 103 12/9/2024
3.0.212 102 12/9/2024
3.0.211 135 12/9/2024
3.0.210 177 12/9/2024
3.0.209 94 12/9/2024
3.0.208 101 12/9/2024
3.0.207 85 12/9/2024
3.0.206 90 12/9/2024
3.0.205 143 12/9/2024
3.0.204 87 12/9/2024
3.0.203 213 12/7/2024
3.0.202 103 12/7/2024
3.0.201 96 12/7/2024
3.0.200 92 12/6/2024
3.0.199 89 12/6/2024
3.0.198 102 12/6/2024
3.0.197 95 12/6/2024
3.0.196 97 12/6/2024
3.0.195 97 12/6/2024
3.0.194 98 12/6/2024
3.0.193 91 12/6/2024
3.0.192 99 12/6/2024
3.0.191 106 12/6/2024
3.0.190 100 12/6/2024
3.0.189 104 12/6/2024
3.0.188 102 12/6/2024
3.0.187 116 12/6/2024
3.0.184 109 12/6/2024
3.0.183 97 12/6/2024
3.0.182 95 12/6/2024
3.0.181 108 12/5/2024
3.0.180 104 12/5/2024
3.0.179 97 12/5/2024
3.0.178 651 12/5/2024
3.0.177 110 12/5/2024
3.0.176 99 12/5/2024
3.0.175 121 12/5/2024
3.0.174 86 12/5/2024
3.0.173 117 12/5/2024
3.0.172 138 12/5/2024
3.0.171 93 12/5/2024
3.0.170 128 12/5/2024
3.0.169 100 12/5/2024
3.0.168 104 12/5/2024
3.0.167 96 12/4/2024
3.0.166 97 12/4/2024
3.0.165 145 12/4/2024
3.0.164 97 12/4/2024
3.0.163 183 12/4/2024
3.0.162 132 12/4/2024
3.0.161 103 12/4/2024
3.0.160 131 12/4/2024
3.0.159 94 12/4/2024
3.0.158 152 12/4/2024
3.0.157 95 12/4/2024
3.0.156 98 12/4/2024
3.0.155 171 12/4/2024
3.0.154 97 12/3/2024
3.0.153 89 12/3/2024
3.0.152 133 12/3/2024
3.0.151 86 12/3/2024
3.0.150 121 12/3/2024
3.0.149 91 12/3/2024
3.0.148 94 12/3/2024
3.0.147 91 12/3/2024
3.0.146 137 12/3/2024
3.0.145 87 12/3/2024
3.0.144 98 12/3/2024
3.0.143 142 12/3/2024
3.0.142 92 12/3/2024
3.0.141 333 12/2/2024
3.0.140 100 12/2/2024
3.0.139 94 12/2/2024
3.0.138 85 12/2/2024
3.0.137 141 12/2/2024
3.0.136 99 12/2/2024
3.0.135 99 12/2/2024
3.0.134 148 12/2/2024
3.0.133 92 12/2/2024
3.0.132 153 12/2/2024
3.0.131 91 12/2/2024
3.0.130 193 12/2/2024
3.0.129 92 12/2/2024
3.0.128 93 12/1/2024
3.0.127 93 12/1/2024
3.0.126 135 12/1/2024
3.0.125 97 12/1/2024
3.0.124 188 12/1/2024
3.0.123 105 12/1/2024
3.0.122 101 12/1/2024
3.0.121 98 12/1/2024
3.0.120 180 11/29/2024
3.0.119 116 11/29/2024
3.0.118 91 11/29/2024
3.0.117 132 11/29/2024
3.0.116 88 11/29/2024
3.0.115 126 11/29/2024
3.0.114 109 11/29/2024
3.0.113 173 11/21/2024
3.0.112 113 11/21/2024
3.0.111 91 11/21/2024
3.0.110 96 11/21/2024
3.0.109 122 11/21/2024
3.0.108 101 11/21/2024
3.0.107 195 11/20/2024
3.0.106 107 11/20/2024
3.0.105 96 11/20/2024
3.0.104 115 11/20/2024
3.0.103 96 11/20/2024
3.0.102 91 11/20/2024
3.0.101 97 11/20/2024
3.0.100 97 11/19/2024
3.0.99 96 11/19/2024
3.0.98 93 11/19/2024
3.0.97 357 11/19/2024
3.0.96 221 11/19/2024
3.0.95 85 11/19/2024
3.0.94 85 11/19/2024
3.0.93 159 11/19/2024
3.0.92 85 11/19/2024
3.0.91 115 11/19/2024
3.0.90 94 11/19/2024
3.0.89 243 11/15/2024
3.0.88 119 11/15/2024
3.0.87 88 11/15/2024
3.0.86 96 11/14/2024
3.0.85 89 11/14/2024
3.0.84 133 11/14/2024
3.0.83 90 11/14/2024
3.0.82 97 11/14/2024
3.0.81 93 11/14/2024
3.0.80 143 11/14/2024
3.0.79 139 11/14/2024
3.0.78 101 11/14/2024
3.0.77 93 11/14/2024
3.0.76 185 11/14/2024
3.0.75 104 11/14/2024
3.0.74 146 11/14/2024
3.0.73 180 11/14/2024
3.0.72 100 11/14/2024
3.0.71 165 11/14/2024
3.0.70 97 11/14/2024
3.0.69 121 11/14/2024
3.0.68 108 11/14/2024
3.0.67 192 11/14/2024
3.0.66 100 11/14/2024
3.0.65 99 11/14/2024
2.1.64 280 11/13/2024
2.1.63 116 11/13/2024
2.1.62 130 11/13/2024
2.1.61 95 11/13/2024
2.1.60 96 11/13/2024
2.1.59 234 11/13/2024
2.1.58 99 11/13/2024
2.1.57 99 11/13/2024
2.1.56 136 11/12/2024
2.1.55 96 11/12/2024
2.1.54 615 11/9/2024
2.1.53 129 11/9/2024
2.1.52 102 11/9/2024
2.1.51 153 11/9/2024
2.1.50 105 11/9/2024
2.1.49 104 11/9/2024
2.1.48 104 11/9/2024
2.1.47 235 11/9/2024
2.1.46 220 11/8/2024
2.1.45 106 11/8/2024
2.1.44 111 11/8/2024
2.1.43 130 11/8/2024
2.1.42 109 11/8/2024
2.1.41 222 11/8/2024
2.1.40 105 11/8/2024
2.1.39 104 11/8/2024
2.1.38 195 11/8/2024
2.1.37 98 11/8/2024
2.1.36 258 11/6/2024
2.1.35 148 11/6/2024
2.1.34 283 11/1/2024
2.1.33 135 11/1/2024
2.1.32 104 11/1/2024
2.1.31 133 11/1/2024
2.1.30 165 11/1/2024
2.1.29 164 11/1/2024
2.1.28 109 11/1/2024
2.1.26 228 10/29/2024
2.1.25 96 10/29/2024
2.1.24 94 10/29/2024
2.1.23 105 10/29/2024
2.1.22 102 10/29/2024
2.1.21 95 10/29/2024
2.1.20 234 10/29/2024
2.1.19 201 10/29/2024
2.1.18 135 10/29/2024
2.1.17 99 10/29/2024
2.1.16 90 10/29/2024
2.1.15 221 10/28/2024
2.1.14 102 10/28/2024
2.1.13 98 10/28/2024
2.1.12 324 10/26/2024
2.1.11 102 10/26/2024
2.1.10 102 10/26/2024
2.1.9 96 10/26/2024
2.1.8 102 10/26/2024
2.1.7 99 10/26/2024
2.1.6 221 10/22/2024
2.1.5 99 10/22/2024
2.1.4 96 10/22/2024
2.1.3 99 10/22/2024
2.1.2 101 10/22/2024
2.1.1 103 10/22/2024