Soenneker.Utils.AutoBogus 3.0.807

Prefix Reserved
dotnet add package Soenneker.Utils.AutoBogus --version 3.0.807
                    
NuGet\Install-Package Soenneker.Utils.AutoBogus -Version 3.0.807
                    
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.AutoBogus" Version="3.0.807" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.AutoBogus" Version="3.0.807" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Utils.AutoBogus" />
                    
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.AutoBogus --version 3.0.807
                    
#r "nuget: Soenneker.Utils.AutoBogus, 3.0.807"
                    
#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.
#:package Soenneker.Utils.AutoBogus@3.0.807
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Utils.AutoBogus&version=3.0.807
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.AutoBogus&version=3.0.807
                    
Install 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.AutoBogus

The .NET Autogenerator

This project is an automatic creator and populator for the fake data generator Bogus. It's a replacement for the abandoned AutoBogus library.

The goals:

  • Be fast
  • Support the latest types in .NET

It uses the fastest .NET Reflection cache: soenneker.reflection.cache. Bogus updates are automatically integrated.

.NET 8+ is supported.

Installation

dotnet add package Soenneker.Utils.AutoBogus

Usage

  • Create an AutoFaker instance:
var optionalConfig = new AutoFakerConfig();
var autoFaker = new AutoFaker(optionalConfig);
  • Call Generate<>() on any type you want:
var randomWord = autoFaker.Generate<string>();
var dictionary = autoFaker.Generate<Dictionary<int, string>>();
var order = autoFaker.Generate<Order>();
  • It's also possible to generate types via an argument:
var randomWord = autoFaker.Generate(typeof(string));
  • Set a faker, configuration, rules, etc:
autoFaker.Config.Faker = new Faker("de");
autoFaker.Config.RepeatCount = 3;
...

AutoFakerOverride

This is the recommended way for controlling type customization:

public class OrderOverride : AutoFakerOverride<Order>
{
    public override void Generate(AutoFakerOverrideContext context)
    {
        var target = (context.Instance as Order)!;
        target.Id = 123;
        
        // Faker is available
        target.Name = context.Faker.Random.Word();

        // AutoFaker is also available
        target.Customer = context.AutoFaker.Generate<Customer>();
     }
}

Then just add AutoFakerOverride to the AutoFaker.Config instance:

autoFaker.Config.Overrides = new List<AutoFakerGeneratorOverride>();
autoFaker.Config.Overrides.Add(new OrderOverride());

AutoFaker<T>

This inherits from Bogus.Faker, and can be used to designate rules specific to the AutoFaker instance.

var autoFaker = new AutoFaker<Order>();
autoFaker.RuleFor(x => x.Id, f => f.Random.Number());
var order = autoFaker.Generate();

Interfaces/Abstracts

The base library does not generate interfaces or abstract objects, but these enable you to generate mocks of them:

Tips

  • ⚠️ Instantiating an AutoFaker takes a non-trivial amount of time because of Bogus Faker initialization (almost 1ms). It's recommended that a single instance be used if possible.
  • AutoFaker.GenerateStatic<T>() is also available, but should be avoided (as it creates a new AutoFaker/Faker on each call).

Notes

  • Some patterns that existed in AutoBogus have been removed due to the complexity and performance impact.
  • This is a work in progress. Contribution is welcomed.

Benchmarks

Soenneker.Utils.AutoBogus - AutoFaker

Method Mean Error StdDev
Generate_int 79.40 ns 0.635 ns 0.563 ns
Generate_string 241.35 ns 3.553 ns 3.324 ns
Generate_complex 6,782.34 ns 43.811 ns 38.837 ns

Soenneker.Utils.AutoBogus - AutoFaker<T>

Method Mean Error StdDev
Generate_string 283.6 ns 3.28 ns 3.07 ns
Generate_complex 8,504.0 ns 76.58 ns 67.89 ns

AutoBogus

Method Mean Error StdDev
Generate_int 1.17 ms 0.033 ms 0.026 ms
Generate_complex 10.91 ms 0.181 ms 0.236 ms

Bogus

Method Mean Error StdDev
Bogus_int 19.70 ns 0.176 ns 0.165 ns
Bogus_string 171.75 ns 2.763 ns 2.585 ns
Bogus_ctor 730,669.06 ns 8,246.622 ns 7,310.416 ns
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.  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 (21)

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

Package Downloads
Soenneker.Tests.Unit

A base test providing faker and autofaker capabilities

Soenneker.Fixtures.Unit

A base xUnit fixture providing injectable log output, DI mechanisms like IServiceCollection and ServiceProvider, and AutoFaker/Faker for generating test data.

Soenneker.AutoFaker.Overrides.IdNamePair

An AutoFaker (AutoBogus) override for the DTO IdNamePair

Soenneker.AutoFaker.Overrides.Documents.Document

An AutoFaker (AutoBogus) override for the base Document object

Soenneker.AutoFaker.Overrides.MinMax

An AutoFaker (AutoBogus) override for the DTO MinMax

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.807 10,081 10/14/2025
3.0.806 562 10/14/2025
3.0.805 9,559 10/7/2025
3.0.804 20,601 9/26/2025
3.0.803 18,005 9/10/2025
3.0.800 19,457 9/4/2025
3.0.799 3,846 9/3/2025
3.0.798 3,569 9/3/2025
3.0.795 29,400 8/12/2025
3.0.792 6,837 8/11/2025
3.0.791 391 8/11/2025
3.0.790 326 8/11/2025
3.0.789 20,167 8/5/2025
3.0.788 2,824 8/5/2025
3.0.787 27,486 7/8/2025
3.0.786 1,996 7/8/2025
3.0.785 6,314 7/8/2025
3.0.784 14,171 6/28/2025
3.0.783 2,029 6/28/2025
3.0.782 1,691 6/28/2025
3.0.781 2,801 6/27/2025
3.0.780 4,522 6/27/2025
3.0.779 457 6/27/2025
3.0.778 24,132 6/11/2025
3.0.777 3,012 6/10/2025
3.0.776 17,780 5/27/2025
3.0.775 1,330 5/27/2025
3.0.774 2,067 5/27/2025
3.0.773 303 5/27/2025
3.0.772 899 5/27/2025
3.0.771 14,093 5/23/2025
3.0.770 3,364 5/23/2025
3.0.768 4,670 5/22/2025
3.0.767 19,661 5/14/2025
3.0.766 6,122 5/13/2025
3.0.765 6,435 5/8/2025
3.0.764 1,840 5/8/2025
3.0.763 2,488 5/8/2025
3.0.762 5,432 5/7/2025
3.0.761 9,218 5/5/2025
3.0.760 1,599 5/5/2025
3.0.759 1,725 5/5/2025
3.0.758 329 5/5/2025
3.0.757 485 5/5/2025
3.0.756 7,104 5/5/2025
3.0.755 722 5/5/2025
3.0.754 520 5/5/2025
3.0.753 573 5/5/2025
3.0.752 4,637 5/5/2025
3.0.751 30,508 4/12/2025
3.0.750 4,403 4/9/2025
3.0.749 384 4/9/2025
3.0.748 2,382 4/8/2025
3.0.747 377 4/8/2025
3.0.746 9,449 4/8/2025
3.0.745 8,792 4/8/2025
3.0.744 3,000 4/8/2025
3.0.743 22,628 4/7/2025
3.0.742 370 4/7/2025
3.0.741 2,512 4/6/2025
3.0.740 5,173 4/6/2025
3.0.739 380 4/6/2025
3.0.738 2,797 4/6/2025
3.0.737 355 4/6/2025
3.0.736 352 4/6/2025
3.0.735 3,112 4/6/2025
3.0.734 373 4/6/2025
3.0.733 1,929 4/6/2025
3.0.732 312 4/6/2025
3.0.731 326 4/6/2025
3.0.730 1,265 4/6/2025
3.0.729 318 4/6/2025
3.0.728 316 4/6/2025
3.0.727 313 4/6/2025
3.0.726 16,652 4/5/2025
3.0.725 316 4/5/2025
3.0.724 5,959 4/4/2025
3.0.723 340 4/4/2025
3.0.722 314 4/4/2025
3.0.721 52,241 3/20/2025
3.0.719 14,843 3/14/2025
3.0.718 6,975 3/11/2025
3.0.717 543 3/11/2025
3.0.716 2,101 3/11/2025
3.0.715 375 3/11/2025
3.0.714 602 3/11/2025
3.0.713 6,164 3/11/2025
3.0.712 5,090 3/11/2025
3.0.711 335 3/11/2025
3.0.710 414 3/11/2025
3.0.709 16,064 3/2/2025
3.0.708 3,376 3/2/2025
3.0.707 2,249 3/1/2025
3.0.705 3,469 3/1/2025
3.0.704 886 3/1/2025
3.0.703 324 3/1/2025
3.0.702 333 3/1/2025
3.0.701 2,166 3/1/2025
3.0.700 329 3/1/2025
3.0.699 314 3/1/2025
3.0.698 319 3/1/2025
3.0.697 15,360 2/25/2025
3.0.696 645 2/25/2025
3.0.695 11,754 2/22/2025
3.0.694 309 2/22/2025
3.0.693 6,076 2/22/2025
3.0.692 465 2/22/2025
3.0.691 1,450 2/22/2025
3.0.690 549 2/21/2025
3.0.689 718 2/21/2025
3.0.688 324 2/21/2025
3.0.687 8,579 2/21/2025
3.0.686 6,605 2/18/2025
3.0.685 1,256 2/18/2025
3.0.684 5,589 2/18/2025
3.0.683 316 2/18/2025
3.0.682 443 2/18/2025
3.0.681 11,602 2/13/2025
3.0.680 289 2/13/2025
3.0.679 9,015 2/12/2025
3.0.678 296 2/12/2025
3.0.677 1,455 2/11/2025
3.0.676 299 2/11/2025
3.0.675 305 2/11/2025
3.0.674 5,180 2/11/2025
3.0.672 569 2/11/2025
3.0.671 283 2/11/2025
3.0.670 4,201 2/11/2025
3.0.669 302 2/11/2025
3.0.668 298 2/11/2025
3.0.667 4,036 2/10/2025
3.0.666 609 2/10/2025
3.0.665 1,806 2/10/2025
3.0.664 288 2/10/2025
3.0.663 1,271 2/10/2025
3.0.662 297 2/10/2025
3.0.661 282 2/10/2025
3.0.660 668 2/10/2025
3.0.659 11,408 2/8/2025
3.0.658 283 2/8/2025
3.0.657 2,331 2/8/2025
3.0.654 2,298 2/8/2025
3.0.653 293 2/8/2025
3.0.652 584 2/7/2025
3.0.651 301 2/7/2025
3.0.650 4,175 2/7/2025
3.0.649 282 2/7/2025
3.0.648 3,451 2/7/2025
3.0.647 4,149 2/7/2025
3.0.646 296 2/7/2025
3.0.645 866 2/7/2025
3.0.644 308 2/7/2025
3.0.643 296 2/7/2025
3.0.642 289 2/7/2025
3.0.641 14,242 2/5/2025
3.0.640 1,907 2/5/2025
3.0.639 5,247 2/5/2025
3.0.638 2,268 2/5/2025
3.0.637 12,405 1/28/2025
3.0.636 1,795 1/27/2025
3.0.635 858 1/27/2025
3.0.634 4,219 1/27/2025
3.0.633 358 1/27/2025
3.0.632 272 1/27/2025
3.0.631 13,369 1/25/2025
3.0.630 3,039 1/25/2025
3.0.629 5,314 1/24/2025
3.0.628 3,639 1/24/2025
3.0.627 7,650 1/24/2025
3.0.626 1,631 1/24/2025
3.0.625 334 1/24/2025
3.0.624 2,927 1/24/2025
3.0.623 245 1/24/2025
3.0.622 3,482 1/23/2025
3.0.621 2,739 1/23/2025
3.0.620 619 1/23/2025
3.0.619 311 1/23/2025
3.0.618 10,045 1/21/2025
3.0.617 255 1/21/2025
3.0.616 523 1/21/2025
3.0.615 2,130 1/21/2025
3.0.614 247 1/21/2025
3.0.613 8,501 1/21/2025
3.0.612 4,008 1/21/2025
3.0.611 580 1/20/2025
3.0.610 257 1/20/2025
3.0.609 4,276 1/20/2025
3.0.608 384 1/20/2025
3.0.607 4,825 1/20/2025
3.0.606 2,830 1/20/2025
3.0.605 235 1/20/2025
3.0.604 368 1/20/2025
3.0.603 4,512 1/20/2025
3.0.602 223 1/20/2025
3.0.601 767 1/20/2025
3.0.600 249 1/20/2025
3.0.599 7,301 1/19/2025
3.0.598 3,788 1/19/2025
3.0.597 5,087 1/18/2025
3.0.596 205 1/18/2025
3.0.595 5,362 1/18/2025
3.0.594 3,737 1/17/2025
3.0.593 3,403 1/17/2025
3.0.592 236 1/17/2025
3.0.591 8,440 1/16/2025
3.0.590 1,867 1/16/2025
3.0.589 1,409 1/16/2025
3.0.588 194 1/16/2025
3.0.587 2,872 1/16/2025
3.0.586 3,468 1/15/2025
3.0.585 205 1/15/2025
3.0.584 6,788 1/15/2025
3.0.583 197 1/15/2025
3.0.582 3,160 1/15/2025
3.0.581 834 1/14/2025
3.0.580 1,176 1/14/2025
3.0.579 202 1/14/2025
3.0.578 703 1/14/2025
3.0.577 235 1/14/2025
3.0.576 185 1/14/2025
3.0.575 189 1/14/2025
3.0.574 2,609 1/14/2025
3.0.573 8,696 1/13/2025
3.0.572 206 1/13/2025
3.0.571 7,271 1/11/2025
3.0.570 467 1/11/2025
3.0.569 198 1/11/2025
3.0.568 2,843 1/10/2025
3.0.567 226 1/10/2025
3.0.566 649 1/10/2025
3.0.565 208 1/10/2025
3.0.564 2,953 1/10/2025
3.0.563 215 1/10/2025
3.0.562 306 1/10/2025
3.0.561 208 1/10/2025
3.0.560 220 1/10/2025
3.0.559 17,757 1/3/2025
3.0.558 2,304 1/3/2025
3.0.557 215 1/3/2025
3.0.556 3,295 1/2/2025
3.0.555 214 1/2/2025
3.0.554 675 1/2/2025
3.0.553 225 1/2/2025
3.0.552 228 1/2/2025
3.0.551 807 1/2/2025
3.0.550 221 1/2/2025
3.0.549 262 1/2/2025
3.0.548 9,278 1/1/2025
3.0.547 1,642 1/1/2025
3.0.546 205 1/1/2025
3.0.545 2,952 1/1/2025
3.0.544 221 1/1/2025
3.0.543 212 1/1/2025
3.0.542 233 1/1/2025
3.0.541 221 1/1/2025
3.0.538 316 12/31/2024
3.0.537 320 12/31/2024
3.0.536 330 12/31/2024
3.0.535 206 12/31/2024
3.0.534 297 12/31/2024
3.0.533 5,106 12/31/2024
3.0.532 8,898 12/31/2024
3.0.531 2,999 12/31/2024
3.0.530 206 12/31/2024
3.0.529 565 12/31/2024
3.0.528 233 12/31/2024
3.0.527 1,141 12/31/2024
3.0.526 221 12/31/2024
3.0.525 4,081 12/31/2024
3.0.524 212 12/31/2024
3.0.523 394 12/31/2024
3.0.522 229 12/31/2024
3.0.521 9,521 12/27/2024
3.0.520 7,397 12/24/2024
3.0.519 191 12/24/2024
3.0.518 1,146 12/24/2024
3.0.517 271 12/24/2024
3.0.515 2,283 12/24/2024
3.0.514 196 12/24/2024
3.0.513 241 12/24/2024
3.0.512 2,970 12/23/2024
3.0.511 225 12/23/2024
3.0.510 3,279 12/23/2024
3.0.509 202 12/23/2024
3.0.508 2,378 12/23/2024
3.0.507 1,619 12/23/2024
3.0.506 4,231 12/23/2024
3.0.505 1,481 12/23/2024
3.0.504 2,727 12/23/2024
3.0.503 215 12/23/2024
3.0.502 3,181 12/22/2024
3.0.501 196 12/22/2024
3.0.500 4,577 12/22/2024
3.0.499 3,189 12/22/2024
3.0.497 7,690 12/22/2024
3.0.495 2,764 12/22/2024
3.0.494 367 12/21/2024
3.0.493 3,429 12/21/2024
3.0.492 212 12/21/2024
3.0.491 677 12/21/2024
3.0.490 203 12/21/2024
3.0.489 1,026 12/21/2024
3.0.488 4,382 12/21/2024
3.0.487 205 12/21/2024
3.0.486 1,609 12/21/2024
3.0.485 1,676 12/21/2024
3.0.484 195 12/21/2024
3.0.483 1,018 12/21/2024
3.0.482 203 12/21/2024
3.0.481 4,543 12/20/2024
3.0.480 5,410 12/20/2024
3.0.479 222 12/20/2024
3.0.478 2,265 12/20/2024
3.0.477 216 12/20/2024
3.0.476 701 12/19/2024
3.0.475 3,800 12/19/2024
3.0.474 211 12/19/2024
3.0.473 2,519 12/18/2024
3.0.472 201 12/18/2024
3.0.471 205 12/18/2024
3.0.470 207 12/18/2024
3.0.469 4,530 12/17/2024
3.0.468 1,902 12/17/2024
3.0.467 262 12/17/2024
3.0.466 1,744 12/16/2024
3.0.465 937 12/16/2024
3.0.464 203 12/16/2024
3.0.463 228 12/16/2024
3.0.462 41,438 12/9/2024
3.0.461 2,309 12/9/2024
3.0.460 4,434 12/9/2024
3.0.459 7,267 12/6/2024
3.0.458 2,590 12/6/2024
3.0.457 239 12/6/2024
3.0.456 4,215 12/6/2024
3.0.455 848 12/6/2024
3.0.454 2,677 12/6/2024
3.0.453 2,345 12/6/2024
3.0.452 3,651 12/5/2024
3.0.451 4,015 12/5/2024
3.0.450 8,596 12/5/2024
3.0.449 925 12/5/2024
3.0.448 1,687 12/5/2024
3.0.447 3,603 12/4/2024
3.0.446 212 12/4/2024
3.0.445 1,690 12/4/2024
3.0.444 5,642 12/4/2024
3.0.443 214 12/4/2024
3.0.442 5,083 12/3/2024
3.0.441 439 12/3/2024
3.0.440 1,627 12/3/2024
3.0.439 217 12/3/2024
3.0.438 2,835 12/3/2024
3.0.437 212 12/3/2024
3.0.436 2,628 12/3/2024
3.0.435 216 12/3/2024
3.0.434 2,454 12/3/2024
3.0.433 2,189 12/2/2024
3.0.432 5,388 12/2/2024
3.0.431 206 12/2/2024
3.0.430 2,893 12/1/2024
3.0.429 222 12/1/2024
3.0.428 3,574 12/1/2024
3.0.427 728 12/1/2024
3.0.426 4,147 11/30/2024
3.0.425 4,481 11/29/2024
3.0.424 10,523 11/20/2024
3.0.422 4,485 11/20/2024
3.0.420 1,103 11/20/2024
3.0.419 5,408 11/19/2024
3.0.418 184 11/19/2024
3.0.417 295 11/19/2024
3.0.416 171 11/19/2024
3.0.415 862 11/19/2024
3.0.414 2,355 11/19/2024
3.0.413 164 11/19/2024
3.0.412 163 11/19/2024
3.0.411 163 11/19/2024
3.0.410 15,774 11/14/2024
3.0.409 3,923 11/14/2024
3.0.408 140 11/14/2024
3.0.407 3,913 11/14/2024
3.0.406 3,375 11/14/2024
3.0.405 163 11/14/2024
3.0.404 1,372 11/14/2024
3.0.403 164 11/14/2024
3.0.402 661 11/14/2024
3.0.401 261 11/14/2024
3.0.400 178 11/14/2024
3.0.399 187 11/14/2024
2.1.398 1,708 11/13/2024
2.1.397 9,406 11/12/2024
2.1.396 3,924 11/12/2024
2.1.395 6,095 11/9/2024
2.1.394 1,890 11/8/2024
2.1.393 1,044 11/8/2024
2.1.392 2,445 11/8/2024
2.1.391 1,287 11/8/2024
2.1.390 4,169 11/8/2024
2.1.389 3,389 11/8/2024
2.1.388 8,548 10/31/2024
2.1.387 6,068 10/29/2024
2.1.386 3,102 10/28/2024
2.1.385 6,643 10/26/2024
2.1.383 18,668 10/22/2024
2.1.382 4,758 10/22/2024
2.1.381 6,275 10/17/2024
2.1.380 5,435 10/14/2024
2.1.379 472 10/14/2024
2.1.378 4,548 10/11/2024
2.1.377 792 10/11/2024
2.1.376 6,400 10/8/2024
2.1.375 6,954 10/8/2024
2.1.374 8,038 10/3/2024
2.1.373 167 10/3/2024
2.1.372 150 10/3/2024
2.1.371 1,263 10/3/2024
2.1.370 1,914 10/3/2024
2.1.369 8,859 10/2/2024
2.1.368 144 10/2/2024
2.1.367 5,850 10/1/2024
2.1.366 1,641 10/1/2024
2.1.365 5,088 9/29/2024
2.1.364 1,269 9/29/2024
2.1.363 174 9/29/2024
2.1.362 5,158 9/27/2024
2.1.361 151 9/27/2024
2.1.360 274 9/27/2024
2.1.359 153 9/27/2024
2.1.358 2,763 9/27/2024
2.1.357 147 9/27/2024
2.1.356 135 9/27/2024
2.1.355 3,874 9/27/2024
2.1.354 4,097 9/26/2024
2.1.353 230 9/26/2024
2.1.351 5,131 9/26/2024
2.1.350 2,383 9/25/2024
2.1.349 150 9/25/2024
2.1.348 138 9/25/2024
2.1.347 4,711 9/23/2024
2.1.346 2,121 9/23/2024
2.1.345 1,910 9/23/2024
2.1.344 157 9/23/2024
2.1.343 177 9/23/2024
2.1.342 3,808 9/23/2024
2.1.341 152 9/23/2024
2.1.340 165 9/23/2024
2.1.339 1,500 9/23/2024
2.1.338 154 9/23/2024
2.1.337 1,520 9/22/2024
2.1.336 7,167 9/17/2024
2.1.335 153 9/17/2024
2.1.334 3,395 9/17/2024
2.1.333 2,282 9/17/2024
2.1.332 162 9/17/2024
2.1.331 159 9/17/2024
2.1.330 221 9/17/2024
2.1.328 15,914 9/12/2024
2.1.327 2,769 9/11/2024
2.1.326 985 9/11/2024
2.1.325 2,807 9/11/2024
2.1.324 166 9/11/2024
2.1.323 7,597 9/10/2024
2.1.322 1,316 9/10/2024
2.1.320 2,243 9/9/2024
2.1.319 1,400 9/9/2024
2.1.318 1,925 9/9/2024
2.1.317 5,137 9/9/2024
2.1.316 158 9/9/2024
2.1.315 2,954 9/9/2024
2.1.314 3,964 9/6/2024
2.1.313 3,088 9/6/2024
2.1.312 2,153 9/5/2024
2.1.311 167 9/5/2024
2.1.310 488 9/5/2024
2.1.309 165 9/5/2024
2.1.308 1,826 9/5/2024
2.1.307 147 9/5/2024
2.1.306 183 9/5/2024
2.1.305 157 9/5/2024
2.1.304 172 9/5/2024
2.1.303 173 9/5/2024
2.1.302 6,433 9/4/2024
2.1.301 1,147 9/4/2024
2.1.300 4,489 9/3/2024
2.1.299 2,766 9/3/2024
2.1.298 3,140 9/3/2024
2.1.297 524 9/2/2024
2.1.296 8,074 8/29/2024
2.1.295 3,523 8/25/2024
2.1.294 4,467 8/21/2024
2.1.293 168 8/21/2024
2.1.292 173 8/21/2024
2.1.291 1,063 8/20/2024
2.1.290 175 8/20/2024
2.1.289 981 8/20/2024
2.1.288 178 8/20/2024
2.1.287 2,055 8/20/2024
2.1.286 171 8/20/2024
2.1.285 165 8/20/2024
2.1.284 6,409 8/19/2024
2.1.283 6,263 8/13/2024
2.1.282 8,209 8/6/2024
2.1.281 1,122 8/6/2024
2.1.280 35,590 8/1/2024
2.1.279 3,107 7/31/2024
2.1.278 6,009 7/25/2024
2.1.277 153 7/25/2024
2.1.276 2,031 7/24/2024
2.1.275 771 7/24/2024
2.1.274 11,312 7/19/2024
2.1.273 3,696 7/14/2024
2.1.272 1,969 7/14/2024
2.1.271 5,049 7/10/2024
2.1.270 2,680 7/10/2024
2.1.269 1,004 7/10/2024
2.1.268 164 7/10/2024
2.1.267 500 7/10/2024
2.1.266 785 7/10/2024
2.1.265 162 7/10/2024
2.1.264 1,728 7/9/2024
2.1.261 277 7/9/2024
2.1.260 4,799 7/9/2024
2.1.259 3,389 7/9/2024
2.1.258 163 7/9/2024
2.1.257 840 7/9/2024
2.1.256 178 7/9/2024
2.1.255 1,835 7/9/2024
2.1.254 165 7/9/2024
2.1.253 2,552 7/9/2024
2.1.252 175 7/9/2024
2.1.251 664 7/9/2024
2.1.249 171 7/8/2024
2.1.248 191 7/8/2024
2.1.247 161 7/8/2024
2.1.246 722 7/8/2024
2.1.245 185 7/8/2024
2.1.244 171 7/8/2024
2.1.243 6,337 7/7/2024
2.1.242 1,187 7/7/2024
2.1.241 1,147 7/7/2024
2.1.240 705 7/7/2024
2.1.239 9,831 7/3/2024
2.1.238 931 7/3/2024
2.1.237 10,345 6/21/2024
2.1.236 3,836 6/15/2024
2.1.235 1,758 6/15/2024
2.1.234 10,477 6/1/2024
2.1.233 443 6/1/2024
2.1.232 180 6/1/2024
2.1.231 2,766 6/1/2024
2.1.230 3,125 5/31/2024
2.1.229 2,979 5/29/2024
2.1.228 169 5/29/2024
2.1.227 3,063 5/28/2024
2.1.226 146 5/28/2024
2.1.225 2,129 5/27/2024
2.1.224 165 5/27/2024
2.1.223 4,062 5/26/2024
2.1.221 2,702 5/26/2024
2.1.220 150 5/26/2024
2.1.219 1,955 5/25/2024
2.1.218 138 5/25/2024
2.1.215 1,000 5/25/2024
2.1.214 165 5/25/2024
2.1.213 2,864 5/25/2024
2.1.212 155 5/25/2024
2.1.211 172 5/25/2024
2.1.210 196 5/25/2024
2.1.208 18,795 5/23/2024
2.1.207 219 5/23/2024
2.1.206 160 5/23/2024
2.1.205 1,390 5/23/2024
2.1.204 164 5/23/2024
2.1.203 1,466 5/22/2024
2.1.202 186 5/22/2024
2.1.201 159 5/22/2024
2.1.200 170 5/22/2024
2.1.199 2,564 5/22/2024
2.1.197 670 5/22/2024
2.1.196 4,976 5/17/2024
2.1.195 1,916 5/17/2024
2.1.194 5,765 5/14/2024
2.1.193 184 5/14/2024
2.1.192 3,443 5/12/2024
2.1.191 25,095 4/29/2024
2.1.190 183 4/29/2024
2.1.189 189 4/29/2024
2.1.188 554 4/29/2024
2.1.187 148 4/29/2024
2.1.186 3,300 4/28/2024
2.1.185 186 4/28/2024
2.1.184 2,281 4/28/2024
2.1.183 924 4/28/2024
2.1.182 2,461 4/28/2024
2.1.181 164 4/28/2024
2.1.180 155 4/28/2024
2.1.179 1,672 4/28/2024
2.1.178 199 4/27/2024
2.1.177 142 4/27/2024
2.1.176 6,149 4/19/2024
2.1.175 2,266 4/18/2024
2.1.174 4,399 4/12/2024
2.1.173 1,822 4/12/2024
2.1.172 624 4/12/2024
2.1.171 501 4/12/2024
2.1.170 174 4/12/2024
2.1.169 183 4/12/2024
2.1.168 2,187 4/12/2024
2.1.167 185 4/12/2024
2.1.166 189 4/12/2024
2.1.165 170 4/12/2024
2.1.164 156 4/12/2024
2.1.163 6,292 4/9/2024
2.1.162 3,497 4/1/2024
2.1.161 163 4/1/2024
2.1.160 9,577 3/25/2024
2.1.159 161 3/25/2024
2.1.158 2,487 3/20/2024
2.1.157 2,275 3/19/2024
2.1.156 1,348 3/19/2024
2.1.155 3,489 3/15/2024
2.1.154 2,238 3/13/2024
2.1.153 985 3/13/2024
2.1.152 493 3/13/2024
2.1.151 180 3/13/2024
2.1.150 166 3/13/2024
2.1.149 181 3/13/2024
2.1.148 219 3/13/2024
2.1.147 2,996 3/12/2024
2.1.146 3,675 3/11/2024
2.1.145 157 3/11/2024
2.1.144 1,400 3/11/2024
2.1.143 1,870 3/9/2024
2.1.142 2,089 3/8/2024
2.1.141 1,400 3/8/2024
2.1.140 3,026 3/6/2024
2.1.139 198 3/6/2024
2.1.138 2,118 3/4/2024
2.1.137 163 3/4/2024
2.1.136 2,869 3/2/2024
2.1.135 1,341 3/2/2024
2.1.134 168 3/2/2024
2.1.133 1,713 3/2/2024
2.1.132 943 3/2/2024
2.1.131 1,940 2/29/2024
2.1.130 1,652 2/29/2024
2.1.129 1,929 2/26/2024
2.1.128 1,765 2/25/2024
2.1.127 180 2/25/2024
2.1.126 2,362 2/23/2024
2.1.125 2,477 2/22/2024
2.1.124 1,214 2/21/2024
2.1.123 1,546 2/21/2024
2.1.122 414 2/21/2024
2.1.121 442 2/21/2024
2.1.120 181 2/21/2024
2.1.119 1,490 2/21/2024
2.1.118 188 2/21/2024
2.1.117 181 2/21/2024
2.1.116 782 2/21/2024
2.1.115 1,103 2/21/2024
2.1.114 183 2/21/2024
2.1.113 170 2/21/2024
2.1.112 180 2/21/2024
2.1.111 933 2/21/2024
2.1.110 196 2/21/2024
2.1.109 2,863 2/20/2024
2.1.108 187 2/20/2024
2.1.107 2,813 2/19/2024
2.1.106 415 2/19/2024
2.1.104 3,047 2/17/2024
2.1.103 1,568 2/16/2024
2.1.102 161 2/16/2024
2.1.101 844 2/16/2024
2.1.100 1,334 2/16/2024
2.1.99 184 2/16/2024
2.1.98 154 2/16/2024
2.1.97 847 2/16/2024
2.1.96 161 2/16/2024
2.1.95 151 2/16/2024
2.1.94 1,590 2/16/2024
2.1.93 172 2/16/2024
2.1.92 2,279 2/13/2024
2.1.91 2,288 2/13/2024
2.1.90 943 2/13/2024
2.1.89 176 2/13/2024
2.1.88 783 2/13/2024
2.1.87 2,260 2/11/2024
2.1.86 897 2/11/2024
2.1.85 183 2/11/2024
2.1.84 1,641 2/11/2024
2.1.83 171 2/11/2024
2.1.82 1,239 2/11/2024
2.1.81 177 2/11/2024
2.1.80 176 2/11/2024
2.1.79 177 2/11/2024
2.1.78 193 2/11/2024
2.1.76 2,599 2/9/2024
2.1.75 183 2/9/2024
2.1.74 1,607 2/9/2024
2.1.73 185 2/9/2024
2.1.72 1,092 2/8/2024
2.1.71 172 2/8/2024
2.1.70 178 2/8/2024
2.1.69 573 2/8/2024
2.1.68 1,245 2/8/2024
2.1.67 181 2/8/2024
2.1.66 174 2/8/2024
2.1.65 1,217 2/8/2024
2.1.64 178 2/8/2024
2.1.63 887 2/8/2024
2.1.62 2,255 2/7/2024
2.1.61 1,188 2/6/2024
2.1.60 172 2/6/2024
2.1.59 1,541 2/6/2024
2.1.58 189 2/6/2024
2.1.57 993 2/6/2024
2.1.54 169 2/5/2024
2.1.53 183 2/5/2024
2.1.52 3,019 2/4/2024
2.1.51 1,408 2/2/2024
2.1.49 170 2/1/2024
2.1.48 1,820 1/31/2024
2.1.47 1,466 1/29/2024
2.1.46 1,497 1/29/2024
2.1.45 730 1/29/2024
2.1.44 974 1/28/2024
2.1.43 159 1/28/2024
2.1.42 992 1/28/2024
2.1.41 144 1/28/2024
2.1.40 170 1/28/2024
2.1.39 826 1/28/2024
2.1.38 1,030 1/28/2024
2.1.37 800 1/28/2024
2.1.36 154 1/28/2024
2.1.35 168 1/28/2024
2.1.34 139 1/28/2024
2.1.33 1,027 1/27/2024
2.1.31 407 1/27/2024
2.1.30 1,146 1/27/2024
2.1.29 1,105 1/27/2024
2.1.27 612 1/27/2024
2.1.26 1,104 1/27/2024
2.1.25 844 1/26/2024
2.1.24 179 1/26/2024
2.1.23 184 1/26/2024
2.1.22 173 1/26/2024
2.1.21 767 1/26/2024
2.1.20 758 1/26/2024
2.1.19 844 1/26/2024
2.1.18 797 1/26/2024
2.1.17 922 1/26/2024
2.1.16 887 1/26/2024
2.1.15 403 1/25/2024
2.1.14 970 1/25/2024
2.1.13 978 1/25/2024
2.1.12 156 1/25/2024
2.1.11 891 1/25/2024
2.1.10 865 1/25/2024
2.1.9 927 1/25/2024
2.1.7 5,446 1/15/2024
2.1.6 1,285 1/14/2024
2.1.5 1,595 1/14/2024
2.1.4 1,515 1/13/2024
2.1.3 1,501 1/5/2024
2.1.2 190 1/2/2024
2.1.1 658 12/29/2023