Soenneker.Extensions.Enumerable 3.0.557

Prefix Reserved
dotnet add package Soenneker.Extensions.Enumerable --version 3.0.557
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 3.0.557
                    
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.557" />
                    
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.557" />
                    
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.557
                    
#r "nuget: Soenneker.Extensions.Enumerable, 3.0.557"
                    
#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.Extensions.Enumerable&version=3.0.557
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=3.0.557
                    
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 (14)

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.557 0 6/27/2025
3.0.556 11 6/27/2025
3.0.555 16 6/27/2025
3.0.554 11,871 6/10/2025
3.0.553 20,895 5/27/2025
3.0.552 1,352 5/27/2025
3.0.551 1,115 5/27/2025
3.0.550 19,456 5/23/2025
3.0.549 2,146 5/23/2025
3.0.548 2,151 5/22/2025
3.0.547 18,383 5/14/2025
3.0.546 11,491 5/8/2025
3.0.545 1,724 5/7/2025
3.0.544 240 5/7/2025
3.0.543 16,509 5/5/2025
3.0.542 1,824 5/5/2025
3.0.541 3,344 5/5/2025
3.0.540 135 5/5/2025
3.0.539 23,460 4/8/2025
3.0.538 2,454 4/8/2025
3.0.537 529 4/8/2025
3.0.536 2,566 4/8/2025
3.0.535 164 4/8/2025
3.0.534 3,930 4/8/2025
3.0.533 642 4/8/2025
3.0.532 6,169 4/8/2025
3.0.531 7,313 4/8/2025
3.0.530 1,614 4/7/2025
3.0.529 3,670 4/7/2025
3.0.528 1,258 4/7/2025
3.0.527 3,076 4/7/2025
3.0.526 8,147 4/7/2025
3.0.525 2,403 4/7/2025
3.0.524 614 4/7/2025
3.0.523 9,280 4/7/2025
3.0.522 1,903 4/7/2025
3.0.521 3,285 4/6/2025
3.0.520 243 4/6/2025
3.0.519 1,499 4/6/2025
3.0.518 1,868 4/6/2025
3.0.517 2,219 4/6/2025
3.0.516 108 4/6/2025
3.0.515 376 4/6/2025
3.0.514 111 4/6/2025
3.0.513 480 4/5/2025
3.0.512 3,106 4/5/2025
3.0.511 1,454 4/5/2025
3.0.510 1,113 4/5/2025
3.0.509 164 4/5/2025
3.0.508 214 4/5/2025
3.0.507 263 4/5/2025
3.0.506 2,883 4/4/2025
3.0.505 123 4/4/2025
3.0.504 3,010 4/4/2025
3.0.503 37,225 4/4/2025
3.0.502 8,248 4/1/2025
3.0.501 4,527 4/1/2025
3.0.500 6,419 3/31/2025
3.0.499 2,822 3/31/2025
3.0.498 6,502 3/31/2025
3.0.497 7,821 3/29/2025
3.0.496 2,074 3/29/2025
3.0.495 6,484 3/27/2025
3.0.494 4,366 3/25/2025
3.0.493 1,741 3/25/2025
3.0.492 10,555 3/21/2025
3.0.491 10,740 3/18/2025
3.0.490 4,917 3/18/2025
3.0.489 7,343 3/15/2025
3.0.488 2,274 3/15/2025
3.0.487 8,340 3/12/2025
3.0.486 3,130 3/12/2025
3.0.485 506 3/12/2025
3.0.484 3,132 3/11/2025
3.0.483 382 3/11/2025
3.0.482 1,270 3/11/2025
3.0.481 2,337 3/11/2025
3.0.480 3,482 3/11/2025
3.0.479 3,188 3/11/2025
3.0.478 2,008 3/11/2025
3.0.477 12,311 3/7/2025
3.0.476 3,661 3/7/2025
3.0.475 7,412 3/2/2025
3.0.474 2,697 3/2/2025
3.0.473 666 3/2/2025
3.0.472 5,156 3/2/2025
3.0.471 4,720 3/1/2025
3.0.470 231 3/1/2025
3.0.469 4,472 3/1/2025
3.0.468 100 3/1/2025
3.0.467 1,649 3/1/2025
3.0.466 12,710 2/26/2025
3.0.465 1,118 2/25/2025
3.0.464 3,085 2/25/2025
3.0.463 2,012 2/25/2025
3.0.462 1,021 2/25/2025
3.0.461 11,642 2/23/2025
3.0.460 2,086 2/22/2025
3.0.459 9,275 2/22/2025
3.0.458 2,684 2/22/2025
3.0.457 3,252 2/22/2025
3.0.456 525 2/21/2025
3.0.455 5,229 2/21/2025
3.0.454 11,540 2/19/2025
3.0.453 4,839 2/18/2025
3.0.452 1,054 2/18/2025
3.0.451 422 2/18/2025
3.0.450 5,709 2/18/2025
3.0.449 105 2/18/2025
3.0.448 12,409 2/14/2025
3.0.447 1,382 2/14/2025
3.0.446 3,829 2/13/2025
3.0.445 4,698 2/13/2025
3.0.444 5,338 2/12/2025
3.0.443 1,678 2/12/2025
3.0.442 736 2/12/2025
3.0.441 2,127 2/12/2025
3.0.440 734 2/12/2025
3.0.439 504 2/11/2025
3.0.438 7,847 2/11/2025
3.0.437 2,654 2/11/2025
3.0.436 446 2/11/2025
3.0.435 2,591 2/10/2025
3.0.434 113 2/10/2025
3.0.433 1,753 2/10/2025
3.0.432 118 2/10/2025
3.0.431 13,769 2/9/2025
3.0.430 7,974 2/9/2025
3.0.429 357 2/9/2025
3.0.428 265 2/8/2025
3.0.427 216 2/8/2025
3.0.426 274 2/8/2025
3.0.425 8,282 2/8/2025
3.0.424 2,718 2/7/2025
3.0.423 1,921 2/7/2025
3.0.422 2,455 2/7/2025
3.0.421 110 2/7/2025
3.0.420 406 2/7/2025
3.0.419 110 2/7/2025
3.0.418 1,971 2/7/2025
3.0.417 109 2/7/2025
3.0.416 14,573 2/7/2025
3.0.415 7,153 2/5/2025
3.0.414 840 2/5/2025
3.0.413 1,167 2/5/2025
3.0.412 252 2/5/2025
3.0.411 2,536 2/5/2025
3.0.410 5,358 2/5/2025
3.0.409 12,284 1/28/2025
3.0.408 842 1/28/2025
3.0.407 261 1/28/2025
3.0.406 2,642 1/28/2025
3.0.405 5,502 1/27/2025
3.0.404 1,562 1/27/2025
3.0.403 101 1/27/2025
3.0.402 5,369 1/27/2025
3.0.401 97 1/27/2025
3.0.400 6,140 1/26/2025
3.0.399 1,292 1/26/2025
3.0.398 988 1/26/2025
3.0.397 540 1/26/2025
3.0.396 253 1/26/2025
3.0.395 2,740 1/25/2025
3.0.394 5,896 1/25/2025
3.0.393 4,290 1/25/2025
3.0.392 441 1/25/2025
3.0.391 10,776 1/24/2025
3.0.390 1,978 1/24/2025
3.0.389 3,483 1/24/2025
3.0.388 4,073 1/24/2025
3.0.387 938 1/23/2025
3.0.386 1,158 1/23/2025
3.0.385 147 1/23/2025
3.0.384 9,590 1/22/2025
3.0.383 1,237 1/21/2025
3.0.382 377 1/21/2025
3.0.381 1,198 1/21/2025
3.0.380 1,160 1/21/2025
3.0.379 1,335 1/21/2025
3.0.378 1,025 1/21/2025
3.0.377 1,368 1/21/2025
3.0.376 107 1/21/2025
3.0.375 6,184 1/21/2025
3.0.374 1,754 1/21/2025
3.0.373 1,514 1/21/2025
3.0.372 2,645 1/21/2025
3.0.371 191 1/20/2025
3.0.370 6,950 1/20/2025
3.0.369 257 1/20/2025
3.0.368 1,443 1/20/2025
3.0.367 103 1/20/2025
3.0.366 1,372 1/20/2025
3.0.365 119 1/20/2025
3.0.364 4,242 1/19/2025
3.0.363 6,630 1/19/2025
3.0.362 6,428 1/19/2025
3.0.361 2,186 1/19/2025
3.0.360 630 1/19/2025
3.0.359 3,635 1/18/2025
3.0.358 142 1/18/2025
3.0.357 3,550 1/18/2025
3.0.356 273 1/18/2025
3.0.355 1,018 1/18/2025
3.0.354 6,389 1/17/2025
3.0.353 135 1/17/2025
3.0.352 8,285 1/16/2025
3.0.351 4,564 1/16/2025
3.0.350 844 1/16/2025
3.0.349 5,148 1/15/2025
3.0.348 4,413 1/15/2025
3.0.347 3,725 1/15/2025
3.0.346 3,932 1/15/2025
3.0.345 2,306 1/15/2025
3.0.344 3,055 1/15/2025
3.0.343 803 1/15/2025
3.0.342 2,453 1/14/2025
3.0.341 421 1/14/2025
3.0.340 131 1/14/2025
3.0.339 3,470 1/14/2025
3.0.338 950 1/14/2025
3.0.337 88 1/14/2025
3.0.336 1,245 1/14/2025
3.0.335 357 1/14/2025
3.0.334 7,124 1/13/2025
3.0.333 1,588 1/13/2025
3.0.332 3,014 1/13/2025
3.0.331 6,079 1/11/2025
3.0.330 2,523 1/11/2025
3.0.329 2,785 1/10/2025
3.0.328 5,574 1/10/2025
3.0.327 118 1/10/2025
3.0.326 513 1/10/2025
3.0.325 106 1/10/2025
3.0.324 114 1/10/2025
3.0.323 8,986 1/3/2025
3.0.322 1,038 1/3/2025
3.0.321 1,313 1/3/2025
3.0.320 414 1/3/2025
3.0.319 1,485 1/3/2025
3.0.318 3,305 1/2/2025
3.0.317 123 1/2/2025
3.0.316 2,286 1/2/2025
3.0.315 127 1/2/2025
3.0.314 3,045 1/2/2025
3.0.313 132 1/2/2025
3.0.312 9,883 1/1/2025
3.0.311 121 1/1/2025
3.0.310 170 12/31/2024
3.0.309 130 12/31/2024
3.0.308 3,578 12/31/2024
3.0.307 121 12/31/2024
3.0.306 194 12/31/2024
3.0.305 690 12/31/2024
3.0.304 124 12/31/2024
3.0.303 1,088 12/31/2024
3.0.302 399 12/31/2024
3.0.301 6,433 12/31/2024
3.0.300 4,527 12/31/2024
3.0.299 1,043 12/31/2024
3.0.298 3,287 12/31/2024
3.0.297 2,495 12/31/2024
3.0.296 117 12/31/2024
3.0.295 123 12/31/2024
3.0.294 11,584 12/28/2024
3.0.293 1,955 12/28/2024
3.0.292 1,119 12/28/2024
3.0.291 1,351 12/27/2024
3.0.290 8,481 12/24/2024
3.0.289 1,845 12/24/2024
3.0.288 1,794 12/24/2024
3.0.287 2,521 12/24/2024
3.0.286 2,704 12/24/2024
3.0.285 2,139 12/24/2024
3.0.284 1,764 12/24/2024
3.0.283 1,398 12/23/2024
3.0.282 2,954 12/23/2024
3.0.281 3,387 12/23/2024
3.0.280 1,340 12/23/2024
3.0.279 3,797 12/23/2024
3.0.278 312 12/23/2024
3.0.277 3,631 12/22/2024
3.0.276 5,748 12/22/2024
3.0.275 5,769 12/22/2024
3.0.274 7,801 12/21/2024
3.0.273 459 12/21/2024
3.0.272 3,828 12/21/2024
3.0.271 4,960 12/21/2024
3.0.270 1,076 12/21/2024
3.0.269 5,931 12/20/2024
3.0.268 11,589 12/18/2024
3.0.267 164 12/18/2024
3.0.266 7,589 12/17/2024
3.0.265 6,145 12/17/2024
3.0.264 385 12/16/2024
3.0.263 1,130 12/16/2024
3.0.262 8,162 12/10/2024
3.0.261 2,275 12/9/2024
3.0.260 3,710 12/9/2024
3.0.259 2,526 12/9/2024
3.0.258 7,029 12/6/2024
3.0.257 1,334 12/6/2024
3.0.256 2,318 12/6/2024
3.0.255 7,150 12/6/2024
3.0.254 211 12/6/2024
3.0.253 345 12/6/2024
3.0.252 1,014 12/6/2024
3.0.251 5,669 12/6/2024
3.0.250 138 12/6/2024
3.0.249 130 12/6/2024
3.0.248 4,500 12/5/2024
3.0.247 4,497 12/5/2024
3.0.246 3,440 12/5/2024
3.0.245 4,105 12/5/2024
3.0.244 599 12/5/2024
3.0.243 521 12/5/2024
3.0.242 5,201 12/4/2024
3.0.241 484 12/4/2024
3.0.240 1,136 12/4/2024
3.0.239 3,615 12/4/2024
3.0.238 3,818 12/3/2024
3.0.237 2,865 12/3/2024
3.0.236 3,632 12/3/2024
3.0.235 3,426 12/3/2024
3.0.234 4,736 12/2/2024
3.0.233 3,897 12/2/2024
3.0.232 2,395 12/2/2024
3.0.231 442 12/2/2024
3.0.230 4,319 12/1/2024
3.0.229 714 12/1/2024
3.0.228 3,163 12/1/2024
3.0.227 4,097 12/1/2024
3.0.226 4,306 11/29/2024
3.0.225 7,446 11/21/2024
3.0.224 6,221 11/20/2024
3.0.223 682 11/20/2024
3.0.222 1,159 11/20/2024
3.0.221 583 11/19/2024
3.0.220 5,690 11/19/2024
3.0.219 2,332 11/19/2024
3.0.218 108 11/19/2024
3.0.217 3,834 11/19/2024
3.0.216 99 11/19/2024
3.0.215 10,619 11/14/2024
3.0.214 1,180 11/14/2024
3.0.213 4,112 11/14/2024
3.0.212 989 11/14/2024
3.0.211 587 11/14/2024
3.0.210 4,358 11/14/2024
3.0.209 111 11/14/2024
3.0.208 3,457 11/14/2024
3.0.207 202 11/14/2024
2.1.206 12,447 11/13/2024
2.1.205 4,981 11/13/2024
2.1.204 12,137 11/9/2024
2.1.203 860 11/9/2024
2.1.202 2,178 11/9/2024
2.1.201 1,286 11/8/2024
2.1.200 1,089 11/8/2024
2.1.199 114 11/8/2024
2.1.198 1,917 11/8/2024
2.1.197 266 11/8/2024
2.1.196 4,639 11/8/2024
2.1.195 6,050 11/8/2024
2.1.194 13,349 11/1/2024
2.1.192 9,661 10/29/2024
2.1.191 10,403 10/28/2024
2.1.190 6,619 10/26/2024
2.1.189 11,407 10/22/2024
2.1.188 1,502 10/22/2024
2.1.187 1,072 10/22/2024
2.1.186 8,559 10/17/2024
2.1.185 6,220 10/15/2024
2.1.184 2,368 10/14/2024
2.1.183 6,890 10/11/2024
2.1.182 959 10/11/2024
2.1.181 571 10/11/2024
2.1.180 11,057 10/9/2024
2.1.179 925 10/8/2024
2.1.178 5,535 10/8/2024
2.1.177 860 10/8/2024
2.1.176 12,398 10/3/2024
2.1.175 3,742 10/3/2024
2.1.174 9,095 10/2/2024
2.1.173 2,730 10/2/2024
2.1.172 6,676 10/1/2024
2.1.171 1,810 10/1/2024
2.1.170 2,750 10/1/2024
2.1.169 7,729 9/29/2024
2.1.168 2,227 9/29/2024
2.1.167 1,638 9/29/2024
2.1.166 9,502 9/27/2024
2.1.165 5,298 9/27/2024
2.1.164 110 9/27/2024
2.1.163 305 9/27/2024
2.1.162 107 9/27/2024
2.1.161 7,945 9/26/2024
2.1.160 7,595 9/26/2024
2.1.159 6,990 9/26/2024
2.1.158 7,180 9/23/2024
2.1.157 3,303 9/23/2024
2.1.156 1,953 9/23/2024
2.1.155 2,037 9/23/2024
2.1.154 6,567 9/23/2024
2.1.153 740 9/23/2024
2.1.152 896 9/23/2024
2.1.151 101 9/23/2024
2.1.150 2,381 9/23/2024
2.1.149 12,038 9/17/2024
2.1.148 109 9/17/2024
2.1.147 428 9/17/2024
2.1.146 4,843 9/17/2024
2.1.145 4,208 9/17/2024
2.1.144 5,500 9/17/2024
2.1.143 117 9/17/2024
2.1.142 531 9/17/2024
2.1.141 1,252 9/17/2024
2.1.140 13,414 9/16/2024
2.1.139 7,603 9/12/2024
2.1.138 5,153 9/11/2024
2.1.137 3,101 9/11/2024
2.1.136 5,991 9/11/2024
2.1.135 4,936 9/11/2024
2.1.134 11,208 9/10/2024
2.1.133 2,361 9/10/2024
2.1.132 3,753 9/9/2024
2.1.131 4,138 9/9/2024
2.1.130 2,625 9/9/2024
2.1.129 1,254 9/9/2024
2.1.128 108 9/9/2024
2.1.127 116 9/9/2024
2.1.126 113 9/9/2024
2.1.125 16,850 9/6/2024
2.1.124 6,579 9/6/2024
2.1.123 3,405 9/5/2024
2.1.122 2,052 9/5/2024
2.1.121 4,148 9/5/2024
2.1.120 2,253 9/5/2024
2.1.119 109 9/5/2024
2.1.118 1,652 9/5/2024
2.1.117 5,915 9/5/2024
2.1.116 1,414 9/4/2024
2.1.115 12,125 9/3/2024
2.1.114 1,220 9/3/2024
2.1.113 4,957 9/3/2024
2.1.112 9,585 8/29/2024
2.1.111 6,776 8/26/2024
2.1.110 6,741 8/21/2024
2.1.109 3,832 8/21/2024
2.1.108 454 8/20/2024
2.1.107 4,754 8/20/2024
2.1.106 119 8/20/2024
2.1.105 4,836 8/20/2024
2.1.104 2,951 8/20/2024
2.1.103 9,109 8/15/2024
2.1.102 8,228 8/13/2024
2.1.101 7,903 8/6/2024
2.1.100 9,224 8/1/2024
2.1.99 578 8/1/2024
2.1.98 8,710 7/25/2024
2.1.97 1,077 7/25/2024
2.1.96 996 7/25/2024
2.1.95 652 7/24/2024
2.1.94 223 7/24/2024
2.1.93 9,711 7/20/2024
2.1.92 8,266 7/14/2024
2.1.91 2,258 7/14/2024
2.1.90 6,854 7/10/2024
2.1.89 239 7/10/2024
2.1.88 2,181 7/10/2024
2.1.87 2,059 7/10/2024
2.1.86 234 7/10/2024
2.1.85 240 7/10/2024
2.1.83 2,137 7/10/2024
2.1.82 3,247 7/9/2024
2.1.80 851 7/9/2024
2.1.79 1,266 7/9/2024
2.1.78 7,744 7/9/2024
2.1.77 3,083 7/9/2024
2.1.76 12,161 7/9/2024
2.1.75 131 7/9/2024
2.1.74 143 7/8/2024
2.1.73 123 7/8/2024
2.1.72 2,526 7/8/2024
2.1.71 110 7/8/2024
2.1.70 6,971 7/8/2024
2.1.69 2,294 7/7/2024
2.1.68 2,600 7/7/2024
2.1.67 688 7/7/2024
2.1.66 1,346 7/7/2024
2.1.65 3,068 7/7/2024
2.1.64 2,739 7/7/2024
2.1.63 122 7/7/2024
2.1.62 3,645 7/5/2024
2.1.61 73,304 5/25/2024
2.1.60 124 5/25/2024
2.1.59 541 5/25/2024
2.1.58 14,022 5/22/2024
2.1.57 123 5/22/2024
2.1.56 11,515 5/17/2024
2.1.55 15,961 4/30/2024
2.1.54 15,967 4/28/2024
2.1.53 125 4/28/2024
2.1.52 688 4/27/2024
2.1.51 118 4/27/2024
2.1.50 25,093 4/12/2024
2.1.49 1,369 4/12/2024
2.1.48 129 4/12/2024
2.1.47 39,176 3/18/2024
2.1.46 8,802 3/13/2024
2.1.45 2,294 3/13/2024
2.1.44 61,297 2/21/2024
2.1.43 2,756 2/21/2024
2.1.42 128 2/21/2024
2.1.41 21,871 2/16/2024
2.1.40 661 2/16/2024
2.1.39 23,957 2/9/2024
2.1.38 18,986 2/6/2024
2.1.37 133 2/6/2024
2.1.36 62,867 1/15/2024
2.1.35 850 1/15/2024
2.1.34 26,184 1/5/2024
2.1.33 2,466 1/5/2024
2.1.32 13,402 12/27/2023
2.1.31 1,353 12/27/2023
2.1.30 1,104 12/27/2023
2.1.29 7,879 12/25/2023
2.1.28 1,414 12/25/2023
2.1.27 701 12/25/2023
2.1.26 10,581 12/23/2023
2.1.25 150 12/23/2023
2.1.24 822 12/23/2023
2.1.23 20,780 12/9/2023
2.1.22 1,356 12/9/2023
2.1.21 261 12/9/2023
2.1.20 1,940 12/9/2023
2.1.19 10,873 12/4/2023
2.1.18 833 12/4/2023
2.1.17 5,469 11/26/2023
2.1.16 5,419 11/23/2023
2.1.15 350 11/23/2023
2.1.14 966 11/23/2023
2.1.13 9,464 11/19/2023
2.1.12 144 11/19/2023
2.1.11 1,207 11/18/2023
2.1.10 3,433 11/18/2023
2.1.9 1,952 11/18/2023
2.1.8 3,691 11/17/2023
2.1.7 1,088 11/17/2023
2.1.6 1,719 11/17/2023
2.1.5 887 11/17/2023
2.1.4 662 11/16/2023
2.1.3 191 11/16/2023
2.0.52 1,255 11/15/2023
2.0.51 2,146 11/15/2023
2.0.2 140 11/16/2023
2.0.1 150 11/16/2023
1.0.50 4,120 11/11/2023
1.0.49 133 11/11/2023
1.0.48 114 11/11/2023
1.0.47 1,346 11/9/2023
1.0.46 137 11/9/2023
1.0.45 5,240 11/6/2023
1.0.44 2,239 11/3/2023
1.0.43 1,819 11/2/2023
1.0.42 1,895 11/1/2023
1.0.41 7,539 10/18/2023
1.0.40 3,019 10/17/2023
1.0.39 1,246 10/16/2023
1.0.38 2,694 10/13/2023
1.0.37 171 10/13/2023
1.0.36 6,175 9/19/2023
1.0.35 2,074 9/18/2023
1.0.34 144 9/18/2023
1.0.33 7,704 8/30/2023
1.0.32 2,718 8/29/2023
1.0.31 4,182 8/24/2023
1.0.30 153 8/24/2023
1.0.29 4,357 8/17/2023
1.0.28 180 8/17/2023
1.0.27 8,048 8/7/2023
1.0.26 181 8/7/2023
1.0.25 7,995 7/10/2023
1.0.24 10,395 7/7/2023
1.0.23 174 7/7/2023
1.0.22 9,352 6/28/2023
1.0.21 44,579 5/24/2023
1.0.20 1,144 5/24/2023
1.0.19 426 5/23/2023
1.0.18 205 5/31/2023
1.0.17 2,764 5/23/2023
1.0.16 2,958 5/22/2023
1.0.15 5,984 5/17/2023
1.0.14 197 5/17/2023
1.0.13 5,621 4/28/2023
1.0.12 2,230 4/24/2023
1.0.11 986 4/21/2023
1.0.10 4,504 4/12/2023
1.0.9 1,087 4/11/2023
1.0.8 2,046 4/3/2023
1.0.7 254 4/3/2023
1.0.6 385 4/1/2023
1.0.5 2,056 3/23/2023
1.0.3 563 2/28/2023
1.0.2 469 2/16/2023