Soenneker.Extensions.Enumerable 3.0.556

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

A collection of helpful enumerable extension methods

Installation

dotnet add package Soenneker.Extensions.Enumerable

Usage

IEnumerable should have IsNullOrEmpty() too

var populatedList = new List<string>{"foo", "bar", "foo"};

populatedList.IsNullOrEmpty() // false

populatedList.Populated() // true
populatedList.None() // false

One call checking for null and contains any elements

List<string>? nullList = null;

nullList.IsNullOrEmpty() // true
nullList.Populated() // false

Duplicate handling

var containsDuplicates = populatedList.ContainsDuplicates(); // true

var deduped = populatedList.RemoveDuplicates(); // {"foo", "bar"}

Recursive flattening

public class Node 
{
    public string Name {get; set;}
    public List<Node> Children {get; set;}
}

void Example()
{
    var node = new Node(){ Name = "Node1" };
    node.Children = new List()
    {
        new Node() 
        {
            Name = "Node2"
        }
    }

    List<Node>? children = node.Children.ToFlattenedFromRecursive(c => c.Children);

    // Results in flattened List:
    // { Node1, Node2 }
}
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 (15)

Showing the top 5 NuGet packages that depend on Soenneker.Extensions.Enumerable:

Package Downloads
Soenneker.Utils.SingletonDictionary

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

Soenneker.Extensions.Enumerable.String

A collection of helpful enumerable string extension methods

Soenneker.Utils.String

A utility library for useful String operations

Soenneker.Swashbuckle.Authentication

A middleware implementing basic authentication and RBAC support for Swashbuckle (Swagger)

Soenneker.Utils.Network

A utility library of helpful network related operations

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.566 58,446 9/9/2025
3.0.565 29,267 9/3/2025
3.0.564 3,054 9/3/2025
3.0.563 160 9/3/2025
3.0.562 50,084 8/11/2025
3.0.561 6,915 8/11/2025
3.0.560 500 8/11/2025
3.0.559 34,647 8/5/2025
3.0.558 37,810 7/8/2025
3.0.557 40,712 6/27/2025
3.0.556 3,371 6/27/2025
3.0.555 320 6/27/2025
3.0.554 45,927 6/10/2025
3.0.553 32,683 5/27/2025
3.0.552 2,133 5/27/2025
3.0.551 1,785 5/27/2025
3.0.550 31,326 5/23/2025
3.0.549 3,507 5/23/2025
3.0.548 3,408 5/22/2025
3.0.547 30,012 5/14/2025
3.0.546 18,119 5/8/2025
3.0.545 2,746 5/7/2025
3.0.544 341 5/7/2025
3.0.543 25,527 5/5/2025
3.0.542 2,904 5/5/2025
3.0.541 5,272 5/5/2025
3.0.540 185 5/5/2025
3.0.539 36,829 4/8/2025
3.0.538 3,977 4/8/2025
3.0.537 800 4/8/2025
3.0.536 4,101 4/8/2025
3.0.535 221 4/8/2025
3.0.534 6,391 4/8/2025
3.0.533 941 4/8/2025
3.0.532 10,183 4/8/2025
3.0.531 12,436 4/8/2025
3.0.530 2,657 4/7/2025
3.0.529 6,211 4/7/2025
3.0.528 2,070 4/7/2025
3.0.527 5,137 4/7/2025
3.0.526 13,924 4/7/2025
3.0.525 4,019 4/7/2025
3.0.524 930 4/7/2025
3.0.523 16,038 4/7/2025
3.0.522 3,043 4/7/2025
3.0.521 5,349 4/6/2025
3.0.520 354 4/6/2025
3.0.519 2,508 4/6/2025
3.0.518 3,040 4/6/2025
3.0.517 3,659 4/6/2025
3.0.516 157 4/6/2025
3.0.515 605 4/6/2025
3.0.514 168 4/6/2025
3.0.513 759 4/5/2025
3.0.512 4,917 4/5/2025
3.0.511 2,429 4/5/2025
3.0.510 1,824 4/5/2025
3.0.509 245 4/5/2025
3.0.508 325 4/5/2025
3.0.507 404 4/5/2025
3.0.506 4,570 4/4/2025
3.0.505 183 4/4/2025
3.0.504 4,828 4/4/2025
3.0.503 60,008 4/4/2025
3.0.502 14,089 4/1/2025
3.0.501 7,780 4/1/2025
3.0.500 11,046 3/31/2025
3.0.499 4,816 3/31/2025
3.0.498 10,982 3/31/2025
3.0.497 13,589 3/29/2025
3.0.496 3,585 3/29/2025
3.0.495 11,198 3/27/2025
3.0.494 7,159 3/25/2025
3.0.493 2,707 3/25/2025
3.0.492 18,164 3/21/2025
3.0.491 17,063 3/18/2025
3.0.490 8,471 3/18/2025
3.0.489 12,708 3/15/2025
3.0.488 3,990 3/15/2025
3.0.487 14,274 3/12/2025
3.0.486 5,256 3/12/2025
3.0.485 752 3/12/2025
3.0.484 5,303 3/11/2025
3.0.483 542 3/11/2025
3.0.482 2,069 3/11/2025
3.0.481 3,972 3/11/2025
3.0.480 5,752 3/11/2025
3.0.479 5,174 3/11/2025
3.0.478 3,452 3/11/2025
3.0.477 20,603 3/7/2025
3.0.476 6,130 3/7/2025
3.0.475 12,116 3/2/2025
3.0.474 4,603 3/2/2025
3.0.473 1,108 3/2/2025
3.0.472 8,775 3/2/2025
3.0.471 8,227 3/1/2025
3.0.470 359 3/1/2025
3.0.469 7,822 3/1/2025
3.0.468 154 3/1/2025
3.0.467 2,816 3/1/2025
3.0.466 21,134 2/26/2025
3.0.465 1,880 2/25/2025
3.0.464 5,256 2/25/2025
3.0.463 3,363 2/25/2025
3.0.462 1,715 2/25/2025
3.0.461 19,796 2/23/2025
3.0.460 3,437 2/22/2025
3.0.459 15,738 2/22/2025
3.0.458 4,629 2/22/2025
3.0.457 5,673 2/22/2025
3.0.456 864 2/21/2025
3.0.455 8,967 2/21/2025
3.0.454 19,697 2/19/2025
3.0.453 7,888 2/18/2025
3.0.452 1,753 2/18/2025
3.0.451 664 2/18/2025
3.0.450 9,616 2/18/2025
3.0.449 151 2/18/2025
3.0.448 22,001 2/14/2025
3.0.447 2,302 2/14/2025
3.0.446 6,535 2/13/2025
3.0.445 7,927 2/13/2025
3.0.444 8,749 2/12/2025
3.0.443 2,767 2/12/2025
3.0.442 1,163 2/12/2025
3.0.441 3,623 2/12/2025
3.0.440 1,148 2/12/2025
3.0.439 802 2/11/2025
3.0.438 13,242 2/11/2025
3.0.437 4,567 2/11/2025
3.0.436 675 2/11/2025
3.0.435 4,321 2/10/2025
3.0.434 162 2/10/2025
3.0.433 2,844 2/10/2025
3.0.432 159 2/10/2025
3.0.431 23,280 2/9/2025
3.0.430 13,231 2/9/2025
3.0.429 572 2/9/2025
3.0.428 435 2/8/2025
3.0.427 336 2/8/2025
3.0.426 431 2/8/2025
3.0.425 14,386 2/8/2025
3.0.424 4,631 2/7/2025
3.0.423 3,397 2/7/2025
3.0.422 3,722 2/7/2025
3.0.421 153 2/7/2025
3.0.420 595 2/7/2025
3.0.419 166 2/7/2025
3.0.418 3,359 2/7/2025
3.0.417 157 2/7/2025
3.0.416 24,175 2/7/2025
3.0.415 12,182 2/5/2025
3.0.414 1,373 2/5/2025
3.0.413 2,041 2/5/2025
3.0.412 400 2/5/2025
3.0.411 4,322 2/5/2025
3.0.410 9,462 2/5/2025
3.0.409 20,059 1/28/2025
3.0.408 1,459 1/28/2025
3.0.407 435 1/28/2025
3.0.406 4,816 1/28/2025
3.0.405 10,250 1/27/2025
3.0.404 2,675 1/27/2025
3.0.403 147 1/27/2025
3.0.402 10,005 1/27/2025
3.0.401 151 1/27/2025
3.0.400 10,961 1/26/2025
3.0.399 2,217 1/26/2025
3.0.398 1,708 1/26/2025
3.0.397 928 1/26/2025
3.0.396 382 1/26/2025
3.0.395 4,756 1/25/2025
3.0.394 10,428 1/25/2025
3.0.393 7,809 1/25/2025
3.0.392 793 1/25/2025
3.0.391 19,434 1/24/2025
3.0.390 3,655 1/24/2025
3.0.389 6,461 1/24/2025
3.0.388 7,387 1/24/2025
3.0.387 1,692 1/23/2025
3.0.386 1,998 1/23/2025
3.0.385 219 1/23/2025
3.0.384 17,191 1/22/2025
3.0.383 2,172 1/21/2025
3.0.382 600 1/21/2025
3.0.381 2,034 1/21/2025
3.0.380 1,991 1/21/2025
3.0.379 2,209 1/21/2025
3.0.378 1,680 1/21/2025
3.0.377 2,318 1/21/2025
3.0.376 162 1/21/2025
3.0.375 10,978 1/21/2025
3.0.374 3,045 1/21/2025
3.0.373 2,408 1/21/2025
3.0.372 4,832 1/21/2025
3.0.371 309 1/20/2025
3.0.370 12,408 1/20/2025
3.0.369 417 1/20/2025
3.0.368 2,586 1/20/2025
3.0.367 146 1/20/2025
3.0.366 2,220 1/20/2025
3.0.365 162 1/20/2025
3.0.364 7,835 1/19/2025
3.0.363 11,988 1/19/2025
3.0.362 11,566 1/19/2025
3.0.361 3,912 1/19/2025
3.0.360 1,084 1/19/2025
3.0.359 6,593 1/18/2025
3.0.358 204 1/18/2025
3.0.357 6,374 1/18/2025
3.0.356 465 1/18/2025
3.0.355 1,797 1/18/2025
3.0.354 11,595 1/17/2025
3.0.353 199 1/17/2025
3.0.352 15,239 1/16/2025
3.0.351 8,301 1/16/2025
3.0.350 1,484 1/16/2025
3.0.349 9,226 1/15/2025
3.0.348 8,009 1/15/2025
3.0.347 6,676 1/15/2025
3.0.346 6,994 1/15/2025
3.0.345 4,152 1/15/2025
3.0.344 5,789 1/15/2025
3.0.343 1,681 1/15/2025
3.0.342 4,919 1/14/2025
3.0.341 865 1/14/2025
3.0.340 204 1/14/2025
3.0.339 7,459 1/14/2025
3.0.338 1,887 1/14/2025
3.0.337 145 1/14/2025
3.0.336 1,925 1/14/2025
3.0.335 682 1/14/2025
3.0.334 13,678 1/13/2025
3.0.333 2,947 1/13/2025
3.0.332 5,708 1/13/2025
3.0.331 11,702 1/11/2025
3.0.330 4,829 1/11/2025
3.0.329 4,672 1/10/2025
3.0.328 10,029 1/10/2025
3.0.327 165 1/10/2025
3.0.326 901 1/10/2025
3.0.325 160 1/10/2025
3.0.324 159 1/10/2025
3.0.323 16,348 1/3/2025
3.0.322 1,749 1/3/2025
3.0.321 2,196 1/3/2025
3.0.320 682 1/3/2025
3.0.319 2,595 1/3/2025
3.0.318 5,902 1/2/2025
3.0.317 175 1/2/2025
3.0.316 3,930 1/2/2025
3.0.315 178 1/2/2025
3.0.314 5,535 1/2/2025
3.0.313 181 1/2/2025
3.0.312 17,609 1/1/2025
3.0.311 171 1/1/2025
3.0.310 255 12/31/2024
3.0.309 184 12/31/2024
3.0.308 6,537 12/31/2024
3.0.307 172 12/31/2024
3.0.306 298 12/31/2024
3.0.305 1,118 12/31/2024
3.0.304 174 12/31/2024
3.0.303 1,819 12/31/2024
3.0.302 615 12/31/2024
3.0.301 11,479 12/31/2024
3.0.300 8,187 12/31/2024
3.0.299 1,617 12/31/2024
3.0.298 5,587 12/31/2024
3.0.297 4,473 12/31/2024
3.0.296 150 12/31/2024
3.0.295 162 12/31/2024
3.0.294 20,985 12/28/2024
3.0.293 3,486 12/28/2024
3.0.292 2,017 12/28/2024
3.0.291 2,422 12/27/2024
3.0.290 15,125 12/24/2024
3.0.289 3,198 12/24/2024
3.0.288 3,011 12/24/2024
3.0.287 4,327 12/24/2024
3.0.286 4,573 12/24/2024
3.0.285 3,707 12/24/2024
3.0.284 2,927 12/24/2024
3.0.283 2,283 12/23/2024
3.0.282 5,221 12/23/2024
3.0.281 6,001 12/23/2024
3.0.280 2,345 12/23/2024
3.0.279 6,914 12/23/2024
3.0.278 521 12/23/2024
3.0.277 6,376 12/22/2024
3.0.276 10,218 12/22/2024
3.0.275 10,132 12/22/2024
3.0.274 13,908 12/21/2024
3.0.273 805 12/21/2024
3.0.272 6,620 12/21/2024
3.0.271 8,960 12/21/2024
3.0.270 1,683 12/21/2024
3.0.269 10,528 12/20/2024
3.0.268 20,432 12/18/2024
3.0.267 237 12/18/2024
3.0.266 12,952 12/17/2024
3.0.265 10,999 12/17/2024
3.0.264 599 12/16/2024
3.0.263 1,854 12/16/2024
3.0.262 14,314 12/10/2024
3.0.261 3,980 12/9/2024
3.0.260 6,511 12/9/2024
3.0.259 4,474 12/9/2024
3.0.258 12,719 12/6/2024
3.0.257 2,229 12/6/2024
3.0.256 3,915 12/6/2024
3.0.255 12,414 12/6/2024
3.0.254 300 12/6/2024
3.0.253 547 12/6/2024
3.0.252 1,513 12/6/2024
3.0.251 10,082 12/6/2024
3.0.250 181 12/6/2024
3.0.249 168 12/6/2024
3.0.248 7,605 12/5/2024
3.0.247 7,654 12/5/2024
3.0.246 5,527 12/5/2024
3.0.245 7,335 12/5/2024
3.0.244 1,035 12/5/2024
3.0.243 790 12/5/2024
3.0.242 9,106 12/4/2024
3.0.241 718 12/4/2024
3.0.240 1,868 12/4/2024
3.0.239 6,167 12/4/2024
3.0.238 6,687 12/3/2024
3.0.237 4,918 12/3/2024
3.0.236 6,677 12/3/2024
3.0.235 6,140 12/3/2024
3.0.234 8,399 12/2/2024
3.0.233 6,843 12/2/2024
3.0.232 4,150 12/2/2024
3.0.231 739 12/2/2024
3.0.230 7,666 12/1/2024
3.0.229 1,162 12/1/2024
3.0.228 5,571 12/1/2024
3.0.227 7,174 12/1/2024
3.0.226 7,622 11/29/2024
3.0.225 12,476 11/21/2024
3.0.224 10,781 11/20/2024
3.0.223 1,049 11/20/2024
3.0.222 1,871 11/20/2024
3.0.221 944 11/19/2024
3.0.220 9,424 11/19/2024
3.0.219 3,740 11/19/2024
3.0.218 164 11/19/2024
3.0.217 6,181 11/19/2024
3.0.216 152 11/19/2024
3.0.215 18,404 11/14/2024
3.0.214 2,032 11/14/2024
3.0.213 6,934 11/14/2024
3.0.212 1,558 11/14/2024
3.0.211 942 11/14/2024
3.0.210 7,444 11/14/2024
3.0.209 162 11/14/2024
3.0.208 6,122 11/14/2024
3.0.207 306 11/14/2024
2.1.206 20,717 11/13/2024
2.1.205 8,442 11/13/2024
2.1.204 20,104 11/9/2024
2.1.203 1,298 11/9/2024
2.1.202 3,616 11/9/2024
2.1.201 2,059 11/8/2024
2.1.200 1,675 11/8/2024
2.1.199 154 11/8/2024
2.1.198 3,079 11/8/2024
2.1.197 412 11/8/2024
2.1.196 7,436 11/8/2024
2.1.195 9,964 11/8/2024
2.1.194 22,752 11/1/2024
2.1.192 16,372 10/29/2024
2.1.191 17,172 10/28/2024
2.1.190 10,803 10/26/2024
2.1.189 17,105 10/22/2024
2.1.188 2,425 10/22/2024
2.1.187 1,855 10/22/2024
2.1.186 14,678 10/17/2024
2.1.185 10,562 10/15/2024
2.1.184 4,041 10/14/2024
2.1.183 11,754 10/11/2024
2.1.182 1,506 10/11/2024
2.1.181 858 10/11/2024
2.1.180 18,860 10/9/2024
2.1.179 1,494 10/8/2024
2.1.178 9,177 10/8/2024
2.1.177 1,391 10/8/2024
2.1.176 21,227 10/3/2024
2.1.175 6,456 10/3/2024
2.1.174 15,616 10/2/2024
2.1.173 4,699 10/2/2024
2.1.172 11,236 10/1/2024
2.1.171 2,750 10/1/2024
2.1.170 4,619 10/1/2024
2.1.169 12,991 9/29/2024
2.1.168 3,651 9/29/2024
2.1.167 2,695 9/29/2024
2.1.166 15,626 9/27/2024
2.1.165 8,818 9/27/2024
2.1.164 160 9/27/2024
2.1.163 481 9/27/2024
2.1.162 165 9/27/2024
2.1.161 13,077 9/26/2024
2.1.160 12,801 9/26/2024
2.1.159 11,638 9/26/2024
2.1.158 11,815 9/23/2024
2.1.157 5,375 9/23/2024
2.1.156 3,154 9/23/2024
2.1.155 3,257 9/23/2024
2.1.154 10,870 9/23/2024
2.1.153 1,232 9/23/2024
2.1.152 1,400 9/23/2024
2.1.151 150 9/23/2024
2.1.150 3,603 9/23/2024
2.1.149 19,953 9/17/2024
2.1.148 162 9/17/2024
2.1.147 626 9/17/2024
2.1.146 7,748 9/17/2024
2.1.145 6,624 9/17/2024
2.1.144 8,892 9/17/2024
2.1.143 171 9/17/2024
2.1.142 787 9/17/2024
2.1.141 1,833 9/17/2024
2.1.140 21,238 9/16/2024
2.1.139 11,881 9/12/2024
2.1.138 8,202 9/11/2024
2.1.137 4,910 9/11/2024
2.1.136 9,155 9/11/2024
2.1.135 7,420 9/11/2024
2.1.134 17,339 9/10/2024
2.1.133 3,669 9/10/2024
2.1.132 5,720 9/9/2024
2.1.131 5,986 9/9/2024
2.1.130 3,636 9/9/2024
2.1.129 1,876 9/9/2024
2.1.128 161 9/9/2024
2.1.127 155 9/9/2024
2.1.126 170 9/9/2024
2.1.125 26,523 9/6/2024
2.1.124 10,447 9/6/2024
2.1.123 5,366 9/5/2024
2.1.122 3,114 9/5/2024
2.1.121 6,534 9/5/2024
2.1.120 3,418 9/5/2024
2.1.119 169 9/5/2024
2.1.118 2,564 9/5/2024
2.1.117 9,344 9/5/2024
2.1.116 2,088 9/4/2024
2.1.115 19,409 9/3/2024
2.1.114 1,857 9/3/2024
2.1.113 8,048 9/3/2024
2.1.112 15,519 8/29/2024
2.1.111 11,043 8/26/2024
2.1.110 10,941 8/21/2024
2.1.109 6,323 8/21/2024
2.1.108 675 8/20/2024
2.1.107 7,758 8/20/2024
2.1.106 170 8/20/2024
2.1.105 7,805 8/20/2024
2.1.104 4,580 8/20/2024
2.1.103 14,811 8/15/2024
2.1.102 13,133 8/13/2024
2.1.101 12,531 8/6/2024
2.1.100 15,545 8/1/2024
2.1.99 945 8/1/2024
2.1.98 14,832 7/25/2024
2.1.97 1,884 7/25/2024
2.1.96 1,688 7/25/2024
2.1.95 1,112 7/24/2024
2.1.94 348 7/24/2024
2.1.93 16,266 7/20/2024
2.1.92 13,276 7/14/2024
2.1.91 3,696 7/14/2024
2.1.90 11,307 7/10/2024
2.1.89 348 7/10/2024
2.1.88 3,439 7/10/2024
2.1.87 3,084 7/10/2024
2.1.86 367 7/10/2024
2.1.85 353 7/10/2024
2.1.83 3,482 7/10/2024
2.1.82 4,885 7/9/2024
2.1.80 1,344 7/9/2024
2.1.79 1,561 7/9/2024
2.1.78 12,776 7/9/2024
2.1.77 5,150 7/9/2024
2.1.76 17,415 7/9/2024
2.1.75 177 7/9/2024
2.1.74 197 7/8/2024
2.1.73 165 7/8/2024
2.1.72 4,000 7/8/2024
2.1.71 161 7/8/2024
2.1.70 11,568 7/8/2024
2.1.69 3,882 7/7/2024
2.1.68 4,365 7/7/2024
2.1.67 1,037 7/7/2024
2.1.66 2,176 7/7/2024
2.1.65 5,005 7/7/2024
2.1.64 4,374 7/7/2024
2.1.63 171 7/7/2024
2.1.62 6,085 7/5/2024
2.1.61 121,370 5/25/2024
2.1.60 173 5/25/2024
2.1.59 813 5/25/2024
2.1.58 22,821 5/22/2024
2.1.57 172 5/22/2024
2.1.56 18,645 5/17/2024
2.1.55 26,335 4/30/2024
2.1.54 25,900 4/28/2024
2.1.53 168 4/28/2024
2.1.52 1,087 4/27/2024
2.1.51 167 4/27/2024
2.1.50 40,303 4/12/2024
2.1.49 2,149 4/12/2024
2.1.48 188 4/12/2024
2.1.47 61,774 3/18/2024
2.1.46 13,963 3/13/2024
2.1.45 3,535 3/13/2024
2.1.44 95,543 2/21/2024
2.1.43 4,096 2/21/2024
2.1.42 174 2/21/2024
2.1.41 32,951 2/16/2024
2.1.40 910 2/16/2024
2.1.39 35,920 2/9/2024
2.1.38 27,970 2/6/2024
2.1.37 187 2/6/2024
2.1.36 91,826 1/15/2024
2.1.35 1,245 1/15/2024
2.1.34 36,385 1/5/2024
2.1.33 3,400 1/5/2024
2.1.32 18,538 12/27/2023
2.1.31 1,770 12/27/2023
2.1.30 1,526 12/27/2023
2.1.29 11,183 12/25/2023
2.1.28 2,015 12/25/2023
2.1.27 863 12/25/2023
2.1.26 14,906 12/23/2023
2.1.25 207 12/23/2023
2.1.24 1,080 12/23/2023
2.1.23 28,898 12/9/2023
2.1.22 1,728 12/9/2023
2.1.21 355 12/9/2023
2.1.20 2,716 12/9/2023
2.1.19 15,230 12/4/2023
2.1.18 1,140 12/4/2023
2.1.17 8,001 11/26/2023
2.1.16 7,417 11/23/2023
2.1.15 519 11/23/2023
2.1.14 1,455 11/23/2023
2.1.13 13,429 11/19/2023
2.1.12 179 11/19/2023
2.1.11 1,751 11/18/2023
2.1.10 4,773 11/18/2023
2.1.9 2,613 11/18/2023
2.1.8 5,149 11/17/2023
2.1.7 1,350 11/17/2023
2.1.6 2,565 11/17/2023
2.1.5 1,315 11/17/2023
2.1.4 958 11/16/2023
2.1.3 284 11/16/2023
2.0.52 1,777 11/15/2023
2.0.51 3,634 11/15/2023
2.0.2 181 11/16/2023
2.0.1 199 11/16/2023
1.0.50 5,618 11/11/2023
1.0.49 182 11/11/2023
1.0.48 165 11/11/2023
1.0.47 1,700 11/9/2023
1.0.46 185 11/9/2023
1.0.45 7,019 11/6/2023
1.0.44 2,870 11/3/2023
1.0.43 2,322 11/2/2023
1.0.42 2,597 11/1/2023
1.0.41 9,892 10/18/2023
1.0.40 3,795 10/17/2023
1.0.39 1,669 10/16/2023
1.0.38 3,415 10/13/2023
1.0.37 221 10/13/2023
1.0.36 8,155 9/19/2023
1.0.35 2,682 9/18/2023
1.0.34 190 9/18/2023
1.0.33 10,033 8/30/2023
1.0.32 3,444 8/29/2023
1.0.31 5,499 8/24/2023
1.0.30 217 8/24/2023
1.0.29 5,167 8/17/2023
1.0.28 247 8/17/2023
1.0.27 9,456 8/7/2023
1.0.26 245 8/7/2023
1.0.25 9,739 7/10/2023
1.0.24 14,983 7/7/2023
1.0.23 243 7/7/2023
1.0.22 11,871 6/28/2023
1.0.21 55,233 5/24/2023
1.0.20 1,452 5/24/2023
1.0.19 550 5/23/2023
1.0.18 276 5/31/2023
1.0.17 3,287 5/23/2023
1.0.16 3,338 5/22/2023
1.0.15 7,537 5/17/2023
1.0.14 265 5/17/2023
1.0.13 6,885 4/28/2023
1.0.12 2,695 4/24/2023
1.0.11 1,196 4/21/2023
1.0.10 5,733 4/12/2023
1.0.9 1,360 4/11/2023
1.0.8 2,664 4/3/2023
1.0.7 319 4/3/2023
1.0.6 472 4/1/2023
1.0.5 2,294 3/23/2023
1.0.3 659 2/28/2023
1.0.2 581 2/16/2023