Soenneker.Extensions.Enumerable 1.0.38

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 1.0.38
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 1.0.38
                    
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="1.0.38" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Extensions.Enumerable" Version="1.0.38" />
                    
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 1.0.38
                    
#r "nuget: Soenneker.Extensions.Enumerable, 1.0.38"
                    
#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@1.0.38
                    
#: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=1.0.38
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=1.0.38
                    
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

Install-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 net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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 was computed.  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 43,095 9/9/2025
3.0.565 25,067 9/3/2025
3.0.564 2,622 9/3/2025
3.0.563 160 9/3/2025
3.0.562 42,856 8/11/2025
3.0.561 5,876 8/11/2025
3.0.560 438 8/11/2025
3.0.559 29,569 8/5/2025
3.0.558 31,850 7/8/2025
3.0.557 35,670 6/27/2025
3.0.556 2,897 6/27/2025
3.0.555 297 6/27/2025
3.0.554 39,763 6/10/2025
3.0.553 28,543 5/27/2025
3.0.552 1,875 5/27/2025
3.0.551 1,546 5/27/2025
3.0.550 27,243 5/23/2025
3.0.549 3,009 5/23/2025
3.0.548 2,922 5/22/2025
3.0.547 26,158 5/14/2025
3.0.546 15,866 5/8/2025
3.0.545 2,416 5/7/2025
3.0.544 322 5/7/2025
3.0.543 22,302 5/5/2025
3.0.542 2,544 5/5/2025
3.0.541 4,612 5/5/2025
3.0.540 185 5/5/2025
3.0.539 32,071 4/8/2025
3.0.538 3,475 4/8/2025
3.0.537 725 4/8/2025
3.0.536 3,553 4/8/2025
3.0.535 217 4/8/2025
3.0.534 5,520 4/8/2025
3.0.533 880 4/8/2025
3.0.532 8,933 4/8/2025
3.0.531 10,701 4/8/2025
3.0.530 2,263 4/7/2025
3.0.529 5,345 4/7/2025
3.0.528 1,809 4/7/2025
3.0.527 4,435 4/7/2025
3.0.526 11,863 4/7/2025
3.0.525 3,431 4/7/2025
3.0.524 836 4/7/2025
3.0.523 13,561 4/7/2025
3.0.522 2,639 4/7/2025
3.0.521 4,578 4/6/2025
3.0.520 339 4/6/2025
3.0.519 2,161 4/6/2025
3.0.518 2,620 4/6/2025
3.0.517 3,129 4/6/2025
3.0.516 156 4/6/2025
3.0.515 559 4/6/2025
3.0.514 167 4/6/2025
3.0.513 683 4/5/2025
3.0.512 4,306 4/5/2025
3.0.511 2,111 4/5/2025
3.0.510 1,590 4/5/2025
3.0.509 238 4/5/2025
3.0.508 303 4/5/2025
3.0.507 380 4/5/2025
3.0.506 3,901 4/4/2025
3.0.505 182 4/4/2025
3.0.504 4,257 4/4/2025
3.0.503 52,447 4/4/2025
3.0.502 12,075 4/1/2025
3.0.501 6,632 4/1/2025
3.0.500 9,422 3/31/2025
3.0.499 4,131 3/31/2025
3.0.498 9,370 3/31/2025
3.0.497 11,542 3/29/2025
3.0.496 3,041 3/29/2025
3.0.495 9,556 3/27/2025
3.0.494 6,154 3/25/2025
3.0.493 2,378 3/25/2025
3.0.492 15,610 3/21/2025
3.0.491 14,949 3/18/2025
3.0.490 7,252 3/18/2025
3.0.489 10,942 3/15/2025
3.0.488 3,446 3/15/2025
3.0.487 12,349 3/12/2025
3.0.486 4,534 3/12/2025
3.0.485 691 3/12/2025
3.0.484 4,539 3/11/2025
3.0.483 502 3/11/2025
3.0.482 1,756 3/11/2025
3.0.481 3,407 3/11/2025
3.0.480 5,160 3/11/2025
3.0.479 4,365 3/11/2025
3.0.478 2,934 3/11/2025
3.0.477 17,734 3/7/2025
3.0.476 5,317 3/7/2025
3.0.475 10,646 3/2/2025
3.0.474 4,035 3/2/2025
3.0.473 993 3/2/2025
3.0.472 7,621 3/2/2025
3.0.471 7,118 3/1/2025
3.0.470 334 3/1/2025
3.0.469 6,760 3/1/2025
3.0.468 154 3/1/2025
3.0.467 2,543 3/1/2025
3.0.466 18,252 2/26/2025
3.0.465 1,600 2/25/2025
3.0.464 4,550 2/25/2025
3.0.463 2,969 2/25/2025
3.0.462 1,484 2/25/2025
3.0.461 17,117 2/23/2025
3.0.460 3,038 2/22/2025
3.0.459 13,595 2/22/2025
3.0.458 3,923 2/22/2025
3.0.457 4,905 2/22/2025
3.0.456 780 2/21/2025
3.0.455 7,695 2/21/2025
3.0.454 17,020 2/19/2025
3.0.453 6,865 2/18/2025
3.0.452 1,514 2/18/2025
3.0.451 603 2/18/2025
3.0.450 8,159 2/18/2025
3.0.449 151 2/18/2025
3.0.448 19,223 2/14/2025
3.0.447 1,979 2/14/2025
3.0.446 5,589 2/13/2025
3.0.445 6,841 2/13/2025
3.0.444 7,505 2/12/2025
3.0.443 2,379 2/12/2025
3.0.442 1,057 2/12/2025
3.0.441 3,052 2/12/2025
3.0.440 1,003 2/12/2025
3.0.439 700 2/11/2025
3.0.438 11,530 2/11/2025
3.0.437 3,847 2/11/2025
3.0.436 628 2/11/2025
3.0.435 3,756 2/10/2025
3.0.434 161 2/10/2025
3.0.433 2,509 2/10/2025
3.0.432 157 2/10/2025
3.0.431 20,103 2/9/2025
3.0.430 11,458 2/9/2025
3.0.429 531 2/9/2025
3.0.428 397 2/8/2025
3.0.427 312 2/8/2025
3.0.426 400 2/8/2025
3.0.425 12,260 2/8/2025
3.0.424 4,031 2/7/2025
3.0.423 2,865 2/7/2025
3.0.422 3,321 2/7/2025
3.0.421 151 2/7/2025
3.0.420 561 2/7/2025
3.0.419 164 2/7/2025
3.0.418 2,908 2/7/2025
3.0.417 156 2/7/2025
3.0.416 20,863 2/7/2025
3.0.415 10,578 2/5/2025
3.0.414 1,211 2/5/2025
3.0.413 1,745 2/5/2025
3.0.412 354 2/5/2025
3.0.411 3,673 2/5/2025
3.0.410 8,108 2/5/2025
3.0.409 17,366 1/28/2025
3.0.408 1,253 1/28/2025
3.0.407 373 1/28/2025
3.0.406 4,081 1/28/2025
3.0.405 8,660 1/27/2025
3.0.404 2,327 1/27/2025
3.0.403 145 1/27/2025
3.0.402 8,344 1/27/2025
3.0.401 151 1/27/2025
3.0.400 9,278 1/26/2025
3.0.399 1,907 1/26/2025
3.0.398 1,471 1/26/2025
3.0.397 801 1/26/2025
3.0.396 362 1/26/2025
3.0.395 4,076 1/25/2025
3.0.394 8,857 1/25/2025
3.0.393 6,619 1/25/2025
3.0.392 648 1/25/2025
3.0.391 16,397 1/24/2025
3.0.390 3,030 1/24/2025
3.0.389 5,409 1/24/2025
3.0.388 6,185 1/24/2025
3.0.387 1,439 1/23/2025
3.0.386 1,765 1/23/2025
3.0.385 204 1/23/2025
3.0.384 14,574 1/22/2025
3.0.383 1,849 1/21/2025
3.0.382 538 1/21/2025
3.0.381 1,733 1/21/2025
3.0.380 1,707 1/21/2025
3.0.379 1,901 1/21/2025
3.0.378 1,493 1/21/2025
3.0.377 1,994 1/21/2025
3.0.376 161 1/21/2025
3.0.375 9,316 1/21/2025
3.0.374 2,583 1/21/2025
3.0.373 2,127 1/21/2025
3.0.372 4,088 1/21/2025
3.0.371 282 1/20/2025
3.0.370 10,571 1/20/2025
3.0.369 371 1/20/2025
3.0.368 2,234 1/20/2025
3.0.367 146 1/20/2025
3.0.366 1,988 1/20/2025
3.0.365 160 1/20/2025
3.0.364 6,513 1/19/2025
3.0.363 9,889 1/19/2025
3.0.362 9,822 1/19/2025
3.0.361 3,364 1/19/2025
3.0.360 962 1/19/2025
3.0.359 5,560 1/18/2025
3.0.358 195 1/18/2025
3.0.357 5,394 1/18/2025
3.0.356 389 1/18/2025
3.0.355 1,579 1/18/2025
3.0.354 9,848 1/17/2025
3.0.353 198 1/17/2025
3.0.352 12,923 1/16/2025
3.0.351 6,963 1/16/2025
3.0.350 1,263 1/16/2025
3.0.349 7,892 1/15/2025
3.0.348 6,754 1/15/2025
3.0.347 5,676 1/15/2025
3.0.346 5,975 1/15/2025
3.0.345 3,528 1/15/2025
3.0.344 4,780 1/15/2025
3.0.343 1,392 1/15/2025
3.0.342 4,067 1/14/2025
3.0.341 710 1/14/2025
3.0.340 197 1/14/2025
3.0.339 6,039 1/14/2025
3.0.338 1,532 1/14/2025
3.0.337 144 1/14/2025
3.0.336 1,672 1/14/2025
3.0.335 558 1/14/2025
3.0.334 11,471 1/13/2025
3.0.333 2,457 1/13/2025
3.0.332 4,765 1/13/2025
3.0.331 9,857 1/11/2025
3.0.330 3,994 1/11/2025
3.0.329 4,022 1/10/2025
3.0.328 8,476 1/10/2025
3.0.327 164 1/10/2025
3.0.326 756 1/10/2025
3.0.325 158 1/10/2025
3.0.324 157 1/10/2025
3.0.323 13,890 1/3/2025
3.0.322 1,492 1/3/2025
3.0.321 1,903 1/3/2025
3.0.320 594 1/3/2025
3.0.319 2,181 1/3/2025
3.0.318 5,007 1/2/2025
3.0.317 174 1/2/2025
3.0.316 3,393 1/2/2025
3.0.315 175 1/2/2025
3.0.314 4,556 1/2/2025
3.0.313 181 1/2/2025
3.0.312 14,938 1/1/2025
3.0.311 171 1/1/2025
3.0.310 249 12/31/2024
3.0.309 181 12/31/2024
3.0.308 5,378 12/31/2024
3.0.307 171 12/31/2024
3.0.306 271 12/31/2024
3.0.305 985 12/31/2024
3.0.304 173 12/31/2024
3.0.303 1,567 12/31/2024
3.0.302 563 12/31/2024
3.0.301 9,727 12/31/2024
3.0.300 6,880 12/31/2024
3.0.299 1,395 12/31/2024
3.0.298 4,786 12/31/2024
3.0.297 3,723 12/31/2024
3.0.296 150 12/31/2024
3.0.295 162 12/31/2024
3.0.294 17,533 12/28/2024
3.0.293 2,901 12/28/2024
3.0.292 1,701 12/28/2024
3.0.291 2,031 12/27/2024
3.0.290 12,846 12/24/2024
3.0.289 2,751 12/24/2024
3.0.288 2,604 12/24/2024
3.0.287 3,688 12/24/2024
3.0.286 3,866 12/24/2024
3.0.285 3,161 12/24/2024
3.0.284 2,516 12/24/2024
3.0.283 1,994 12/23/2024
3.0.282 4,459 12/23/2024
3.0.281 5,029 12/23/2024
3.0.280 1,992 12/23/2024
3.0.279 5,772 12/23/2024
3.0.278 441 12/23/2024
3.0.277 5,406 12/22/2024
3.0.276 8,551 12/22/2024
3.0.275 8,524 12/22/2024
3.0.274 11,589 12/21/2024
3.0.273 701 12/21/2024
3.0.272 5,556 12/21/2024
3.0.271 7,508 12/21/2024
3.0.270 1,484 12/21/2024
3.0.269 8,811 12/20/2024
3.0.268 17,363 12/18/2024
3.0.267 228 12/18/2024
3.0.266 10,878 12/17/2024
3.0.265 9,123 12/17/2024
3.0.264 548 12/16/2024
3.0.263 1,591 12/16/2024
3.0.262 12,010 12/10/2024
3.0.261 3,380 12/9/2024
3.0.260 5,528 12/9/2024
3.0.259 3,769 12/9/2024
3.0.258 10,704 12/6/2024
3.0.257 1,936 12/6/2024
3.0.256 3,394 12/6/2024
3.0.255 10,582 12/6/2024
3.0.254 274 12/6/2024
3.0.253 473 12/6/2024
3.0.252 1,373 12/6/2024
3.0.251 8,537 12/6/2024
3.0.250 181 12/6/2024
3.0.249 165 12/6/2024
3.0.248 6,538 12/5/2024
3.0.247 6,465 12/5/2024
3.0.246 4,733 12/5/2024
3.0.245 5,964 12/5/2024
3.0.244 886 12/5/2024
3.0.243 713 12/5/2024
3.0.242 7,622 12/4/2024
3.0.241 661 12/4/2024
3.0.240 1,667 12/4/2024
3.0.239 5,257 12/4/2024
3.0.238 5,685 12/3/2024
3.0.237 4,231 12/3/2024
3.0.236 5,322 12/3/2024
3.0.235 5,088 12/3/2024
3.0.234 7,078 12/2/2024
3.0.233 5,787 12/2/2024
3.0.232 3,427 12/2/2024
3.0.231 663 12/2/2024
3.0.230 6,407 12/1/2024
3.0.229 1,129 12/1/2024
3.0.228 4,589 12/1/2024
3.0.227 6,057 12/1/2024
3.0.226 6,498 11/29/2024
3.0.225 10,832 11/21/2024
3.0.224 9,119 11/20/2024
3.0.223 927 11/20/2024
3.0.222 1,634 11/20/2024
3.0.221 822 11/19/2024
3.0.220 8,003 11/19/2024
3.0.219 3,205 11/19/2024
3.0.218 163 11/19/2024
3.0.217 5,319 11/19/2024
3.0.216 152 11/19/2024
3.0.215 15,636 11/14/2024
3.0.214 1,731 11/14/2024
3.0.213 5,892 11/14/2024
3.0.212 1,351 11/14/2024
3.0.211 815 11/14/2024
3.0.210 6,336 11/14/2024
3.0.209 160 11/14/2024
3.0.208 5,217 11/14/2024
3.0.207 281 11/14/2024
2.1.206 17,808 11/13/2024
2.1.205 7,200 11/13/2024
2.1.204 17,337 11/9/2024
2.1.203 1,156 11/9/2024
2.1.202 3,056 11/9/2024
2.1.201 1,785 11/8/2024
2.1.200 1,460 11/8/2024
2.1.199 154 11/8/2024
2.1.198 2,640 11/8/2024
2.1.197 363 11/8/2024
2.1.196 6,463 11/8/2024
2.1.195 8,501 11/8/2024
2.1.194 19,381 11/1/2024
2.1.192 13,861 10/29/2024
2.1.191 14,683 10/28/2024
2.1.190 9,273 10/26/2024
2.1.189 15,017 10/22/2024
2.1.188 2,062 10/22/2024
2.1.187 1,564 10/22/2024
2.1.186 12,390 10/17/2024
2.1.185 9,002 10/15/2024
2.1.184 3,376 10/14/2024
2.1.183 9,942 10/11/2024
2.1.182 1,344 10/11/2024
2.1.181 776 10/11/2024
2.1.180 16,028 10/9/2024
2.1.179 1,317 10/8/2024
2.1.178 7,824 10/8/2024
2.1.177 1,187 10/8/2024
2.1.176 18,174 10/3/2024
2.1.175 5,440 10/3/2024
2.1.174 13,251 10/2/2024
2.1.173 3,950 10/2/2024
2.1.172 9,627 10/1/2024
2.1.171 2,440 10/1/2024
2.1.170 3,912 10/1/2024
2.1.169 11,135 9/29/2024
2.1.168 3,096 9/29/2024
2.1.167 2,288 9/29/2024
2.1.166 13,400 9/27/2024
2.1.165 7,516 9/27/2024
2.1.164 158 9/27/2024
2.1.163 439 9/27/2024
2.1.162 165 9/27/2024
2.1.161 11,269 9/26/2024
2.1.160 10,882 9/26/2024
2.1.159 9,970 9/26/2024
2.1.158 10,172 9/23/2024
2.1.157 4,654 9/23/2024
2.1.156 2,750 9/23/2024
2.1.155 2,810 9/23/2024
2.1.154 9,319 9/23/2024
2.1.153 1,041 9/23/2024
2.1.152 1,293 9/23/2024
2.1.151 150 9/23/2024
2.1.150 3,142 9/23/2024
2.1.149 17,195 9/17/2024
2.1.148 161 9/17/2024
2.1.147 572 9/17/2024
2.1.146 6,714 9/17/2024
2.1.145 5,750 9/17/2024
2.1.144 7,652 9/17/2024
2.1.143 170 9/17/2024
2.1.142 695 9/17/2024
2.1.141 1,666 9/17/2024
2.1.140 18,273 9/16/2024
2.1.139 10,313 9/12/2024
2.1.138 7,161 9/11/2024
2.1.137 4,244 9/11/2024
2.1.136 7,918 9/11/2024
2.1.135 6,621 9/11/2024
2.1.134 15,039 9/10/2024
2.1.133 3,151 9/10/2024
2.1.132 5,006 9/9/2024
2.1.131 5,281 9/9/2024
2.1.130 3,239 9/9/2024
2.1.129 1,670 9/9/2024
2.1.128 160 9/9/2024
2.1.127 154 9/9/2024
2.1.126 169 9/9/2024
2.1.125 23,129 9/6/2024
2.1.124 8,993 9/6/2024
2.1.123 4,681 9/5/2024
2.1.122 2,741 9/5/2024
2.1.121 5,728 9/5/2024
2.1.120 2,983 9/5/2024
2.1.119 169 9/5/2024
2.1.118 2,206 9/5/2024
2.1.117 8,135 9/5/2024
2.1.116 1,866 9/4/2024
2.1.115 16,840 9/3/2024
2.1.114 1,619 9/3/2024
2.1.113 6,819 9/3/2024
2.1.112 13,330 8/29/2024
2.1.111 9,481 8/26/2024
2.1.110 9,449 8/21/2024
2.1.109 5,412 8/21/2024
2.1.108 611 8/20/2024
2.1.107 6,657 8/20/2024
2.1.106 169 8/20/2024
2.1.105 6,819 8/20/2024
2.1.104 4,076 8/20/2024
2.1.103 12,808 8/15/2024
2.1.102 11,283 8/13/2024
2.1.101 10,839 8/6/2024
2.1.100 13,327 8/1/2024
2.1.99 816 8/1/2024
2.1.98 12,668 7/25/2024
2.1.97 1,624 7/25/2024
2.1.96 1,456 7/25/2024
2.1.95 970 7/24/2024
2.1.94 336 7/24/2024
2.1.93 13,997 7/20/2024
2.1.92 11,454 7/14/2024
2.1.91 3,167 7/14/2024
2.1.90 9,874 7/10/2024
2.1.89 322 7/10/2024
2.1.88 2,988 7/10/2024
2.1.87 2,718 7/10/2024
2.1.86 335 7/10/2024
2.1.85 345 7/10/2024
2.1.83 2,952 7/10/2024
2.1.82 4,351 7/9/2024
2.1.80 1,153 7/9/2024
2.1.79 1,494 7/9/2024
2.1.78 11,106 7/9/2024
2.1.77 4,337 7/9/2024
2.1.76 16,073 7/9/2024
2.1.75 177 7/9/2024
2.1.74 195 7/8/2024
2.1.73 164 7/8/2024
2.1.72 3,423 7/8/2024
2.1.71 159 7/8/2024
2.1.70 10,077 7/8/2024
2.1.69 3,240 7/7/2024
2.1.68 3,821 7/7/2024
2.1.67 932 7/7/2024
2.1.66 1,912 7/7/2024
2.1.65 4,316 7/7/2024
2.1.64 3,808 7/7/2024
2.1.63 170 7/7/2024
2.1.62 5,258 7/5/2024
2.1.61 104,683 5/25/2024
2.1.60 172 5/25/2024
2.1.59 725 5/25/2024
2.1.58 19,993 5/22/2024
2.1.57 171 5/22/2024
2.1.56 16,341 5/17/2024
2.1.55 22,982 4/30/2024
2.1.54 22,910 4/28/2024
2.1.53 166 4/28/2024
2.1.52 990 4/27/2024
2.1.51 167 4/27/2024
2.1.50 35,509 4/12/2024
2.1.49 1,934 4/12/2024
2.1.48 187 4/12/2024
2.1.47 54,612 3/18/2024
2.1.46 12,270 3/13/2024
2.1.45 3,131 3/13/2024
2.1.44 84,413 2/21/2024
2.1.43 3,702 2/21/2024
2.1.42 174 2/21/2024
2.1.41 29,509 2/16/2024
2.1.40 834 2/16/2024
2.1.39 32,251 2/9/2024
2.1.38 25,214 2/6/2024
2.1.37 185 2/6/2024
2.1.36 83,098 1/15/2024
2.1.35 1,122 1/15/2024
2.1.34 33,434 1/5/2024
2.1.33 3,076 1/5/2024
2.1.32 17,132 12/27/2023
2.1.31 1,635 12/27/2023
2.1.30 1,446 12/27/2023
2.1.29 10,317 12/25/2023
2.1.28 1,802 12/25/2023
2.1.27 843 12/25/2023
2.1.26 13,864 12/23/2023
2.1.25 207 12/23/2023
2.1.24 1,006 12/23/2023
2.1.23 26,766 12/9/2023
2.1.22 1,646 12/9/2023
2.1.21 340 12/9/2023
2.1.20 2,567 12/9/2023
2.1.19 14,054 12/4/2023
2.1.18 1,072 12/4/2023
2.1.17 7,315 11/26/2023
2.1.16 6,906 11/23/2023
2.1.15 456 11/23/2023
2.1.14 1,330 11/23/2023
2.1.13 12,409 11/19/2023
2.1.12 179 11/19/2023
2.1.11 1,592 11/18/2023
2.1.10 4,468 11/18/2023
2.1.9 2,439 11/18/2023
2.1.8 4,819 11/17/2023
2.1.7 1,283 11/17/2023
2.1.6 2,366 11/17/2023
2.1.5 1,228 11/17/2023
2.1.4 885 11/16/2023
2.1.3 260 11/16/2023
2.0.52 1,686 11/15/2023
2.0.51 3,105 11/15/2023
2.0.2 180 11/16/2023
2.0.1 198 11/16/2023
1.0.50 5,183 11/11/2023
1.0.49 182 11/11/2023
1.0.48 162 11/11/2023
1.0.47 1,600 11/9/2023
1.0.46 185 11/9/2023
1.0.45 6,614 11/6/2023
1.0.44 2,718 11/3/2023
1.0.43 2,201 11/2/2023
1.0.42 2,439 11/1/2023
1.0.41 9,434 10/18/2023
1.0.40 3,642 10/17/2023
1.0.39 1,570 10/16/2023
1.0.38 3,258 10/13/2023
1.0.37 221 10/13/2023
1.0.36 7,704 9/19/2023
1.0.35 2,542 9/18/2023
1.0.34 189 9/18/2023
1.0.33 9,502 8/30/2023
1.0.32 3,300 8/29/2023
1.0.31 5,130 8/24/2023
1.0.30 216 8/24/2023
1.0.29 4,981 8/17/2023
1.0.28 247 8/17/2023
1.0.27 9,111 8/7/2023
1.0.26 245 8/7/2023
1.0.25 9,155 7/10/2023
1.0.24 14,031 7/7/2023
1.0.23 242 7/7/2023
1.0.22 11,307 6/28/2023
1.0.21 52,521 5/24/2023
1.0.20 1,386 5/24/2023
1.0.19 523 5/23/2023
1.0.18 276 5/31/2023
1.0.17 3,169 5/23/2023
1.0.16 3,265 5/22/2023
1.0.15 7,081 5/17/2023
1.0.14 264 5/17/2023
1.0.13 6,538 4/28/2023
1.0.12 2,562 4/24/2023
1.0.11 1,124 4/21/2023
1.0.10 5,372 4/12/2023
1.0.9 1,302 4/11/2023
1.0.8 2,489 4/3/2023
1.0.7 317 4/3/2023
1.0.6 467 4/1/2023
1.0.5 2,233 3/23/2023
1.0.3 652 2/28/2023
1.0.2 562 2/16/2023