Soenneker.Extensions.Enumerable 4.0.572

Prefix Reserved
dotnet add package Soenneker.Extensions.Enumerable --version 4.0.572
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 4.0.572
                    
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="4.0.572" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Extensions.Enumerable" Version="4.0.572" />
                    
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 4.0.572
                    
#r "nuget: Soenneker.Extensions.Enumerable, 4.0.572"
                    
#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@4.0.572
                    
#: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=4.0.572
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=4.0.572
                    
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 net10.0 is compatible.  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
4.0.572 10,577 11/11/2025
4.0.571 31,863 11/3/2025
4.0.570 20,798 10/30/2025
4.0.569 1,579 10/30/2025
3.0.567 40,478 10/16/2025
3.0.566 86,236 9/9/2025
3.0.565 32,322 9/3/2025
3.0.564 3,405 9/3/2025
3.0.563 182 9/3/2025
3.0.562 55,325 8/11/2025
3.0.561 7,678 8/11/2025
3.0.560 531 8/11/2025
3.0.559 38,254 8/5/2025
3.0.558 40,553 7/8/2025
3.0.557 41,086 6/27/2025
3.0.556 3,429 6/27/2025
3.0.555 337 6/27/2025
3.0.554 46,436 6/10/2025
3.0.553 32,975 5/27/2025
3.0.552 2,187 5/27/2025
3.0.551 1,817 5/27/2025
3.0.550 31,655 5/23/2025
3.0.549 3,545 5/23/2025
3.0.548 3,443 5/22/2025
3.0.547 30,350 5/14/2025
3.0.546 18,349 5/8/2025
3.0.545 2,788 5/7/2025
3.0.544 362 5/7/2025
3.0.543 25,779 5/5/2025
3.0.542 2,948 5/5/2025
3.0.541 5,347 5/5/2025
3.0.540 204 5/5/2025
3.0.539 37,246 4/8/2025
3.0.538 4,029 4/8/2025
3.0.537 817 4/8/2025
3.0.536 4,151 4/8/2025
3.0.535 238 4/8/2025
3.0.534 6,465 4/8/2025
3.0.533 965 4/8/2025
3.0.532 10,319 4/8/2025
3.0.531 12,600 4/8/2025
3.0.530 2,690 4/7/2025
3.0.529 6,282 4/7/2025
3.0.528 2,114 4/7/2025
3.0.527 5,197 4/7/2025
3.0.526 14,104 4/7/2025
3.0.525 4,051 4/7/2025
3.0.524 959 4/7/2025
3.0.523 16,312 4/7/2025
3.0.522 3,093 4/7/2025
3.0.521 5,457 4/6/2025
3.0.520 369 4/6/2025
3.0.519 2,541 4/6/2025
3.0.518 3,067 4/6/2025
3.0.517 3,728 4/6/2025
3.0.516 170 4/6/2025
3.0.515 623 4/6/2025
3.0.514 186 4/6/2025
3.0.513 773 4/5/2025
3.0.512 4,979 4/5/2025
3.0.511 2,477 4/5/2025
3.0.510 1,853 4/5/2025
3.0.509 269 4/5/2025
3.0.508 350 4/5/2025
3.0.507 421 4/5/2025
3.0.506 4,634 4/4/2025
3.0.505 198 4/4/2025
3.0.504 4,901 4/4/2025
3.0.503 60,747 4/4/2025
3.0.502 14,299 4/1/2025
3.0.501 7,882 4/1/2025
3.0.500 11,219 3/31/2025
3.0.499 4,892 3/31/2025
3.0.498 11,213 3/31/2025
3.0.497 13,767 3/29/2025
3.0.496 3,640 3/29/2025
3.0.495 11,379 3/27/2025
3.0.494 7,273 3/25/2025
3.0.493 2,739 3/25/2025
3.0.492 18,476 3/21/2025
3.0.491 17,273 3/18/2025
3.0.490 8,573 3/18/2025
3.0.489 12,878 3/15/2025
3.0.488 4,059 3/15/2025
3.0.487 14,484 3/12/2025
3.0.486 5,342 3/12/2025
3.0.485 774 3/12/2025
3.0.484 5,379 3/11/2025
3.0.483 584 3/11/2025
3.0.482 2,131 3/11/2025
3.0.481 4,045 3/11/2025
3.0.480 5,821 3/11/2025
3.0.479 5,230 3/11/2025
3.0.478 3,507 3/11/2025
3.0.477 20,850 3/7/2025
3.0.476 6,214 3/7/2025
3.0.475 12,288 3/2/2025
3.0.474 4,671 3/2/2025
3.0.473 1,138 3/2/2025
3.0.472 8,878 3/2/2025
3.0.471 8,353 3/1/2025
3.0.470 379 3/1/2025
3.0.469 7,941 3/1/2025
3.0.468 175 3/1/2025
3.0.467 2,860 3/1/2025
3.0.466 21,433 2/26/2025
3.0.465 1,911 2/25/2025
3.0.464 5,320 2/25/2025
3.0.463 3,434 2/25/2025
3.0.462 1,754 2/25/2025
3.0.461 20,092 2/23/2025
3.0.460 3,515 2/22/2025
3.0.459 15,954 2/22/2025
3.0.458 4,711 2/22/2025
3.0.457 5,768 2/22/2025
3.0.456 903 2/21/2025
3.0.455 9,117 2/21/2025
3.0.454 19,999 2/19/2025
3.0.453 8,003 2/18/2025
3.0.452 1,775 2/18/2025
3.0.451 688 2/18/2025
3.0.450 9,765 2/18/2025
3.0.449 171 2/18/2025
3.0.448 22,542 2/14/2025
3.0.447 2,335 2/14/2025
3.0.446 6,618 2/13/2025
3.0.445 8,019 2/13/2025
3.0.444 8,902 2/12/2025
3.0.443 2,812 2/12/2025
3.0.442 1,194 2/12/2025
3.0.441 3,722 2/12/2025
3.0.440 1,179 2/12/2025
3.0.439 825 2/11/2025
3.0.438 13,390 2/11/2025
3.0.437 4,681 2/11/2025
3.0.436 711 2/11/2025
3.0.435 4,438 2/10/2025
3.0.434 177 2/10/2025
3.0.433 2,926 2/10/2025
3.0.432 179 2/10/2025
3.0.431 23,606 2/9/2025
3.0.430 13,423 2/9/2025
3.0.429 592 2/9/2025
3.0.428 456 2/8/2025
3.0.427 348 2/8/2025
3.0.426 444 2/8/2025
3.0.425 14,545 2/8/2025
3.0.424 4,693 2/7/2025
3.0.423 3,461 2/7/2025
3.0.422 3,832 2/7/2025
3.0.421 183 2/7/2025
3.0.420 636 2/7/2025
3.0.419 186 2/7/2025
3.0.418 3,423 2/7/2025
3.0.417 171 2/7/2025
3.0.416 24,472 2/7/2025
3.0.415 12,370 2/5/2025
3.0.414 1,412 2/5/2025
3.0.413 2,077 2/5/2025
3.0.412 425 2/5/2025
3.0.411 4,408 2/5/2025
3.0.410 9,617 2/5/2025
3.0.409 20,334 1/28/2025
3.0.408 1,489 1/28/2025
3.0.407 453 1/28/2025
3.0.406 4,868 1/28/2025
3.0.405 10,416 1/27/2025
3.0.404 2,719 1/27/2025
3.0.403 165 1/27/2025
3.0.402 10,159 1/27/2025
3.0.401 175 1/27/2025
3.0.400 11,166 1/26/2025
3.0.399 2,263 1/26/2025
3.0.398 1,746 1/26/2025
3.0.397 959 1/26/2025
3.0.396 416 1/26/2025
3.0.395 4,823 1/25/2025
3.0.394 10,582 1/25/2025
3.0.393 7,922 1/25/2025
3.0.392 805 1/25/2025
3.0.391 19,762 1/24/2025
3.0.390 3,728 1/24/2025
3.0.389 6,566 1/24/2025
3.0.388 7,506 1/24/2025
3.0.387 1,726 1/23/2025
3.0.386 2,045 1/23/2025
3.0.385 251 1/23/2025
3.0.384 17,500 1/22/2025
3.0.383 2,224 1/21/2025
3.0.382 622 1/21/2025
3.0.381 2,087 1/21/2025
3.0.380 2,022 1/21/2025
3.0.379 2,252 1/21/2025
3.0.378 1,707 1/21/2025
3.0.377 2,381 1/21/2025
3.0.376 179 1/21/2025
3.0.375 11,158 1/21/2025
3.0.374 3,123 1/21/2025
3.0.373 2,458 1/21/2025
3.0.372 4,901 1/21/2025
3.0.371 324 1/20/2025
3.0.370 12,554 1/20/2025
3.0.369 432 1/20/2025
3.0.368 2,634 1/20/2025
3.0.367 162 1/20/2025
3.0.366 2,302 1/20/2025
3.0.365 193 1/20/2025
3.0.364 7,965 1/19/2025
3.0.363 12,209 1/19/2025
3.0.362 11,744 1/19/2025
3.0.361 4,013 1/19/2025
3.0.360 1,104 1/19/2025
3.0.359 6,700 1/18/2025
3.0.358 218 1/18/2025
3.0.357 6,500 1/18/2025
3.0.356 499 1/18/2025
3.0.355 1,842 1/18/2025
3.0.354 11,733 1/17/2025
3.0.353 226 1/17/2025
3.0.352 15,477 1/16/2025
3.0.351 8,441 1/16/2025
3.0.350 1,565 1/16/2025
3.0.349 9,393 1/15/2025
3.0.348 8,135 1/15/2025
3.0.347 6,785 1/15/2025
3.0.346 7,159 1/15/2025
3.0.345 4,220 1/15/2025
3.0.344 5,906 1/15/2025
3.0.343 1,723 1/15/2025
3.0.342 5,039 1/14/2025
3.0.341 906 1/14/2025
3.0.340 234 1/14/2025
3.0.339 7,620 1/14/2025
3.0.338 1,930 1/14/2025
3.0.337 165 1/14/2025
3.0.336 1,976 1/14/2025
3.0.335 701 1/14/2025
3.0.334 13,853 1/13/2025
3.0.333 3,005 1/13/2025
3.0.332 5,803 1/13/2025
3.0.331 11,869 1/11/2025
3.0.330 4,930 1/11/2025
3.0.329 4,750 1/10/2025
3.0.328 10,243 1/10/2025
3.0.327 185 1/10/2025
3.0.326 930 1/10/2025
3.0.325 172 1/10/2025
3.0.324 176 1/10/2025
3.0.323 16,606 1/3/2025
3.0.322 1,794 1/3/2025
3.0.321 2,256 1/3/2025
3.0.320 719 1/3/2025
3.0.319 2,672 1/3/2025
3.0.318 6,001 1/2/2025
3.0.317 193 1/2/2025
3.0.316 4,014 1/2/2025
3.0.315 193 1/2/2025
3.0.314 5,597 1/2/2025
3.0.313 196 1/2/2025
3.0.312 17,925 1/1/2025
3.0.311 189 1/1/2025
3.0.310 271 12/31/2024
3.0.309 203 12/31/2024
3.0.308 6,650 12/31/2024
3.0.307 187 12/31/2024
3.0.306 316 12/31/2024
3.0.305 1,164 12/31/2024
3.0.304 189 12/31/2024
3.0.303 1,869 12/31/2024
3.0.302 667 12/31/2024
3.0.301 11,684 12/31/2024
3.0.300 8,267 12/31/2024
3.0.299 1,642 12/31/2024
3.0.298 5,685 12/31/2024
3.0.297 4,611 12/31/2024
3.0.296 182 12/31/2024
3.0.295 176 12/31/2024
3.0.294 21,282 12/28/2024
3.0.293 3,561 12/28/2024
3.0.292 2,079 12/28/2024
3.0.291 2,456 12/27/2024
3.0.290 15,376 12/24/2024
3.0.289 3,241 12/24/2024
3.0.288 3,064 12/24/2024
3.0.287 4,393 12/24/2024
3.0.286 4,630 12/24/2024
3.0.285 3,759 12/24/2024
3.0.284 2,993 12/24/2024
3.0.283 2,326 12/23/2024
3.0.282 5,287 12/23/2024
3.0.281 6,099 12/23/2024
3.0.280 2,388 12/23/2024
3.0.279 7,026 12/23/2024
3.0.278 539 12/23/2024
3.0.277 6,467 12/22/2024
3.0.276 10,390 12/22/2024
3.0.275 10,290 12/22/2024
3.0.274 14,071 12/21/2024
3.0.273 844 12/21/2024
3.0.272 6,789 12/21/2024
3.0.271 9,097 12/21/2024
3.0.270 1,735 12/21/2024
3.0.269 10,697 12/20/2024
3.0.268 20,812 12/18/2024
3.0.267 277 12/18/2024
3.0.266 13,320 12/17/2024
3.0.265 11,170 12/17/2024
3.0.264 643 12/16/2024
3.0.263 1,909 12/16/2024
3.0.262 14,487 12/10/2024
3.0.261 4,043 12/9/2024
3.0.260 6,621 12/9/2024
3.0.259 4,565 12/9/2024
3.0.258 12,972 12/6/2024
3.0.257 2,286 12/6/2024
3.0.256 4,015 12/6/2024
3.0.255 12,594 12/6/2024
3.0.254 324 12/6/2024
3.0.253 574 12/6/2024
3.0.252 1,556 12/6/2024
3.0.251 10,198 12/6/2024
3.0.250 198 12/6/2024
3.0.249 196 12/6/2024
3.0.248 7,700 12/5/2024
3.0.247 7,845 12/5/2024
3.0.246 5,594 12/5/2024
3.0.245 7,531 12/5/2024
3.0.244 1,068 12/5/2024
3.0.243 823 12/5/2024
3.0.242 9,251 12/4/2024
3.0.241 737 12/4/2024
3.0.240 1,954 12/4/2024
3.0.239 6,320 12/4/2024
3.0.238 6,797 12/3/2024
3.0.237 4,987 12/3/2024
3.0.236 6,914 12/3/2024
3.0.235 6,217 12/3/2024
3.0.234 8,557 12/2/2024
3.0.233 7,009 12/2/2024
3.0.232 4,229 12/2/2024
3.0.231 782 12/2/2024
3.0.230 7,776 12/1/2024
3.0.229 1,199 12/1/2024
3.0.228 5,709 12/1/2024
3.0.227 7,299 12/1/2024
3.0.226 7,774 11/29/2024
3.0.225 14,055 11/21/2024
3.0.224 10,952 11/20/2024
3.0.223 1,094 11/20/2024
3.0.222 1,911 11/20/2024
3.0.221 978 11/19/2024
3.0.220 9,551 11/19/2024
3.0.219 3,805 11/19/2024
3.0.218 182 11/19/2024
3.0.217 6,253 11/19/2024
3.0.216 169 11/19/2024
3.0.215 18,713 11/14/2024
3.0.214 2,093 11/14/2024
3.0.213 7,099 11/14/2024
3.0.212 1,595 11/14/2024
3.0.211 973 11/14/2024
3.0.210 7,566 11/14/2024
3.0.209 179 11/14/2024
3.0.208 6,252 11/14/2024
3.0.207 341 11/14/2024
2.1.206 21,459 11/13/2024
2.1.205 8,695 11/13/2024
2.1.204 20,387 11/9/2024
2.1.203 1,335 11/9/2024
2.1.202 3,696 11/9/2024
2.1.201 2,108 11/8/2024
2.1.200 1,737 11/8/2024
2.1.199 173 11/8/2024
2.1.198 3,179 11/8/2024
2.1.197 433 11/8/2024
2.1.196 7,589 11/8/2024
2.1.195 10,071 11/8/2024
2.1.194 23,098 11/1/2024
2.1.192 16,579 10/29/2024
2.1.191 17,463 10/28/2024
2.1.190 10,991 10/26/2024
2.1.189 17,384 10/22/2024
2.1.188 2,474 10/22/2024
2.1.187 1,913 10/22/2024
2.1.186 14,931 10/17/2024
2.1.185 10,792 10/15/2024
2.1.184 4,136 10/14/2024
2.1.183 11,972 10/11/2024
2.1.182 1,556 10/11/2024
2.1.181 905 10/11/2024
2.1.180 19,097 10/9/2024
2.1.179 1,550 10/8/2024
2.1.178 9,319 10/8/2024
2.1.177 1,434 10/8/2024
2.1.176 21,725 10/3/2024
2.1.175 6,576 10/3/2024
2.1.174 15,812 10/2/2024
2.1.173 4,742 10/2/2024
2.1.172 11,421 10/1/2024
2.1.171 2,827 10/1/2024
2.1.170 4,706 10/1/2024
2.1.169 13,223 9/29/2024
2.1.168 3,703 9/29/2024
2.1.167 2,746 9/29/2024
2.1.166 15,810 9/27/2024
2.1.165 8,933 9/27/2024
2.1.164 175 9/27/2024
2.1.163 500 9/27/2024
2.1.162 186 9/27/2024
2.1.161 13,230 9/26/2024
2.1.160 12,997 9/26/2024
2.1.159 11,808 9/26/2024
2.1.158 11,956 9/23/2024
2.1.157 5,466 9/23/2024
2.1.156 3,208 9/23/2024
2.1.155 3,302 9/23/2024
2.1.154 10,958 9/23/2024
2.1.153 1,266 9/23/2024
2.1.152 1,458 9/23/2024
2.1.151 164 9/23/2024
2.1.150 3,670 9/23/2024
2.1.149 20,297 9/17/2024
2.1.148 179 9/17/2024
2.1.147 665 9/17/2024
2.1.146 7,854 9/17/2024
2.1.145 6,696 9/17/2024
2.1.144 8,968 9/17/2024
2.1.143 188 9/17/2024
2.1.142 802 9/17/2024
2.1.141 1,881 9/17/2024
2.1.140 21,464 9/16/2024
2.1.139 12,063 9/12/2024
2.1.138 8,314 9/11/2024
2.1.137 4,991 9/11/2024
2.1.136 9,305 9/11/2024
2.1.135 7,514 9/11/2024
2.1.134 17,566 9/10/2024
2.1.133 3,710 9/10/2024
2.1.132 5,838 9/9/2024
2.1.131 6,062 9/9/2024
2.1.130 3,696 9/9/2024
2.1.129 1,911 9/9/2024
2.1.128 184 9/9/2024
2.1.127 176 9/9/2024
2.1.126 184 9/9/2024
2.1.125 26,756 9/6/2024
2.1.124 10,561 9/6/2024
2.1.123 5,450 9/5/2024
2.1.122 3,199 9/5/2024
2.1.121 6,602 9/5/2024
2.1.120 3,498 9/5/2024
2.1.119 187 9/5/2024
2.1.118 2,643 9/5/2024
2.1.117 9,465 9/5/2024
2.1.116 2,116 9/4/2024
2.1.115 19,628 9/3/2024
2.1.114 1,898 9/3/2024
2.1.113 8,126 9/3/2024
2.1.112 15,700 8/29/2024
2.1.111 11,147 8/26/2024
2.1.110 11,116 8/21/2024
2.1.109 6,439 8/21/2024
2.1.108 700 8/20/2024
2.1.107 7,892 8/20/2024
2.1.106 184 8/20/2024
2.1.105 7,895 8/20/2024
2.1.104 4,621 8/20/2024
2.1.103 14,995 8/15/2024
2.1.102 13,244 8/13/2024
2.1.101 12,699 8/6/2024
2.1.100 15,749 8/1/2024
2.1.99 970 8/1/2024
2.1.98 15,107 7/25/2024
2.1.97 1,910 7/25/2024
2.1.96 1,747 7/25/2024
2.1.95 1,147 7/24/2024
2.1.94 362 7/24/2024
2.1.93 16,636 7/20/2024
2.1.92 13,441 7/14/2024
2.1.91 3,771 7/14/2024
2.1.90 11,510 7/10/2024
2.1.89 370 7/10/2024
2.1.88 3,496 7/10/2024
2.1.87 3,118 7/10/2024
2.1.86 382 7/10/2024
2.1.85 377 7/10/2024
2.1.83 3,544 7/10/2024
2.1.82 4,965 7/9/2024
2.1.80 1,382 7/9/2024
2.1.79 1,605 7/9/2024
2.1.78 12,974 7/9/2024
2.1.77 5,233 7/9/2024
2.1.76 18,716 7/9/2024
2.1.75 198 7/9/2024
2.1.74 213 7/8/2024
2.1.73 190 7/8/2024
2.1.72 4,047 7/8/2024
2.1.71 181 7/8/2024
2.1.70 11,742 7/8/2024
2.1.69 3,924 7/7/2024
2.1.68 4,441 7/7/2024
2.1.67 1,071 7/7/2024
2.1.66 2,220 7/7/2024
2.1.65 5,103 7/7/2024
2.1.64 4,450 7/7/2024
2.1.63 190 7/7/2024
2.1.62 6,150 7/5/2024
2.1.61 122,849 5/25/2024
2.1.60 185 5/25/2024
2.1.59 844 5/25/2024
2.1.58 23,200 5/22/2024
2.1.57 201 5/22/2024
2.1.56 18,917 5/17/2024
2.1.55 26,756 4/30/2024
2.1.54 26,269 4/28/2024
2.1.53 185 4/28/2024
2.1.52 1,125 4/27/2024
2.1.51 188 4/27/2024
2.1.50 40,871 4/12/2024
2.1.49 2,194 4/12/2024
2.1.48 205 4/12/2024
2.1.47 62,717 3/18/2024
2.1.46 14,124 3/13/2024
2.1.45 3,600 3/13/2024
2.1.44 96,474 2/21/2024
2.1.43 4,165 2/21/2024
2.1.42 190 2/21/2024
2.1.41 33,352 2/16/2024
2.1.40 938 2/16/2024
2.1.39 36,275 2/9/2024
2.1.38 28,379 2/6/2024
2.1.37 205 2/6/2024
2.1.36 92,792 1/15/2024
2.1.35 1,278 1/15/2024
2.1.34 36,788 1/5/2024
2.1.33 3,457 1/5/2024
2.1.32 18,712 12/27/2023
2.1.31 1,797 12/27/2023
2.1.30 1,558 12/27/2023
2.1.29 11,342 12/25/2023
2.1.28 2,039 12/25/2023
2.1.27 879 12/25/2023
2.1.26 15,073 12/23/2023
2.1.25 222 12/23/2023
2.1.24 1,103 12/23/2023
2.1.23 29,210 12/9/2023
2.1.22 1,777 12/9/2023
2.1.21 377 12/9/2023
2.1.20 2,782 12/9/2023
2.1.19 15,452 12/4/2023
2.1.18 1,169 12/4/2023
2.1.17 8,144 11/26/2023
2.1.16 7,514 11/23/2023
2.1.15 558 11/23/2023
2.1.14 1,489 11/23/2023
2.1.13 13,636 11/19/2023
2.1.12 193 11/19/2023
2.1.11 1,780 11/18/2023
2.1.10 4,848 11/18/2023
2.1.9 2,659 11/18/2023
2.1.8 5,217 11/17/2023
2.1.7 1,373 11/17/2023
2.1.6 2,646 11/17/2023
2.1.5 1,338 11/17/2023
2.1.4 999 11/16/2023
2.1.3 296 11/16/2023
2.0.52 1,821 11/15/2023
2.0.51 3,694 11/15/2023
2.0.2 199 11/16/2023
2.0.1 220 11/16/2023
1.0.50 5,694 11/11/2023
1.0.49 203 11/11/2023
1.0.48 180 11/11/2023
1.0.47 1,758 11/9/2023
1.0.46 199 11/9/2023
1.0.45 7,092 11/6/2023
1.0.44 2,900 11/3/2023
1.0.43 2,374 11/2/2023
1.0.42 2,639 11/1/2023
1.0.41 9,984 10/18/2023
1.0.40 3,847 10/17/2023
1.0.39 1,731 10/16/2023
1.0.38 3,463 10/13/2023
1.0.37 236 10/13/2023
1.0.36 8,244 9/19/2023
1.0.35 2,730 9/18/2023
1.0.34 204 9/18/2023
1.0.33 10,155 8/30/2023
1.0.32 3,485 8/29/2023
1.0.31 5,550 8/24/2023
1.0.30 228 8/24/2023
1.0.29 5,237 8/17/2023
1.0.28 260 8/17/2023
1.0.27 9,545 8/7/2023
1.0.26 258 8/7/2023
1.0.25 9,797 7/10/2023
1.0.24 15,148 7/7/2023
1.0.23 262 7/7/2023
1.0.22 11,970 6/28/2023
1.0.21 55,680 5/24/2023
1.0.20 1,498 5/24/2023
1.0.19 568 5/23/2023
1.0.18 291 5/31/2023
1.0.17 3,348 5/23/2023
1.0.16 3,373 5/22/2023
1.0.15 7,654 5/17/2023
1.0.14 289 5/17/2023
1.0.13 6,977 4/28/2023
1.0.12 2,752 4/24/2023
1.0.11 1,233 4/21/2023
1.0.10 5,809 4/12/2023
1.0.9 1,412 4/11/2023
1.0.8 2,708 4/3/2023
1.0.7 342 4/3/2023
1.0.6 493 4/1/2023
1.0.5 2,324 3/23/2023
1.0.3 680 2/28/2023
1.0.2 607 2/16/2023