Soenneker.Extensions.Enumerable 3.0.567

Prefix Reserved
dotnet add package Soenneker.Extensions.Enumerable --version 3.0.567
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 3.0.567
                    
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.567" />
                    
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.567" />
                    
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.567
                    
#r "nuget: Soenneker.Extensions.Enumerable, 3.0.567"
                    
#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.567
                    
#: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.567
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=3.0.567
                    
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.567 3,395 10/16/2025
3.0.566 76,523 9/9/2025
3.0.565 29,293 9/3/2025
3.0.564 3,065 9/3/2025
3.0.563 165 9/3/2025
3.0.562 50,181 8/11/2025
3.0.561 6,919 8/11/2025
3.0.560 503 8/11/2025
3.0.559 34,740 8/5/2025
3.0.558 37,904 7/8/2025
3.0.557 40,726 6/27/2025
3.0.556 3,373 6/27/2025
3.0.555 322 6/27/2025
3.0.554 45,969 6/10/2025
3.0.553 32,690 5/27/2025
3.0.552 2,141 5/27/2025
3.0.551 1,790 5/27/2025
3.0.550 31,360 5/23/2025
3.0.549 3,514 5/23/2025
3.0.548 3,413 5/22/2025
3.0.547 30,058 5/14/2025
3.0.546 18,164 5/8/2025
3.0.545 2,757 5/7/2025
3.0.544 347 5/7/2025
3.0.543 25,570 5/5/2025
3.0.542 2,908 5/5/2025
3.0.541 5,279 5/5/2025
3.0.540 191 5/5/2025
3.0.539 36,910 4/8/2025
3.0.538 3,985 4/8/2025
3.0.537 803 4/8/2025
3.0.536 4,113 4/8/2025
3.0.535 228 4/8/2025
3.0.534 6,405 4/8/2025
3.0.533 949 4/8/2025
3.0.532 10,197 4/8/2025
3.0.531 12,450 4/8/2025
3.0.530 2,664 4/7/2025
3.0.529 6,222 4/7/2025
3.0.528 2,079 4/7/2025
3.0.527 5,142 4/7/2025
3.0.526 13,945 4/7/2025
3.0.525 4,022 4/7/2025
3.0.524 935 4/7/2025
3.0.523 16,068 4/7/2025
3.0.522 3,063 4/7/2025
3.0.521 5,370 4/6/2025
3.0.520 358 4/6/2025
3.0.519 2,519 4/6/2025
3.0.518 3,043 4/6/2025
3.0.517 3,682 4/6/2025
3.0.516 161 4/6/2025
3.0.515 612 4/6/2025
3.0.514 175 4/6/2025
3.0.513 764 4/5/2025
3.0.512 4,931 4/5/2025
3.0.511 2,440 4/5/2025
3.0.510 1,837 4/5/2025
3.0.509 258 4/5/2025
3.0.508 330 4/5/2025
3.0.507 411 4/5/2025
3.0.506 4,585 4/4/2025
3.0.505 188 4/4/2025
3.0.504 4,846 4/4/2025
3.0.503 60,057 4/4/2025
3.0.502 14,117 4/1/2025
3.0.501 7,790 4/1/2025
3.0.500 11,073 3/31/2025
3.0.499 4,832 3/31/2025
3.0.498 11,001 3/31/2025
3.0.497 13,613 3/29/2025
3.0.496 3,593 3/29/2025
3.0.495 11,228 3/27/2025
3.0.494 7,188 3/25/2025
3.0.493 2,716 3/25/2025
3.0.492 18,202 3/21/2025
3.0.491 17,083 3/18/2025
3.0.490 8,489 3/18/2025
3.0.489 12,727 3/15/2025
3.0.488 4,006 3/15/2025
3.0.487 14,311 3/12/2025
3.0.486 5,279 3/12/2025
3.0.485 759 3/12/2025
3.0.484 5,317 3/11/2025
3.0.483 552 3/11/2025
3.0.482 2,080 3/11/2025
3.0.481 3,982 3/11/2025
3.0.480 5,761 3/11/2025
3.0.479 5,188 3/11/2025
3.0.478 3,456 3/11/2025
3.0.477 20,631 3/7/2025
3.0.476 6,141 3/7/2025
3.0.475 12,164 3/2/2025
3.0.474 4,617 3/2/2025
3.0.473 1,113 3/2/2025
3.0.472 8,782 3/2/2025
3.0.471 8,245 3/1/2025
3.0.470 366 3/1/2025
3.0.469 7,845 3/1/2025
3.0.468 161 3/1/2025
3.0.467 2,821 3/1/2025
3.0.466 21,163 2/26/2025
3.0.465 1,887 2/25/2025
3.0.464 5,268 2/25/2025
3.0.463 3,371 2/25/2025
3.0.462 1,721 2/25/2025
3.0.461 19,830 2/23/2025
3.0.460 3,460 2/22/2025
3.0.459 15,750 2/22/2025
3.0.458 4,638 2/22/2025
3.0.457 5,676 2/22/2025
3.0.456 871 2/21/2025
3.0.455 8,981 2/21/2025
3.0.454 19,710 2/19/2025
3.0.453 7,904 2/18/2025
3.0.452 1,762 2/18/2025
3.0.451 670 2/18/2025
3.0.450 9,624 2/18/2025
3.0.449 157 2/18/2025
3.0.448 22,089 2/14/2025
3.0.447 2,310 2/14/2025
3.0.446 6,542 2/13/2025
3.0.445 7,940 2/13/2025
3.0.444 8,771 2/12/2025
3.0.443 2,771 2/12/2025
3.0.442 1,167 2/12/2025
3.0.441 3,631 2/12/2025
3.0.440 1,154 2/12/2025
3.0.439 806 2/11/2025
3.0.438 13,264 2/11/2025
3.0.437 4,576 2/11/2025
3.0.436 679 2/11/2025
3.0.435 4,330 2/10/2025
3.0.434 166 2/10/2025
3.0.433 2,855 2/10/2025
3.0.432 166 2/10/2025
3.0.431 23,309 2/9/2025
3.0.430 13,242 2/9/2025
3.0.429 577 2/9/2025
3.0.428 439 2/8/2025
3.0.427 338 2/8/2025
3.0.426 435 2/8/2025
3.0.425 14,402 2/8/2025
3.0.424 4,634 2/7/2025
3.0.423 3,404 2/7/2025
3.0.422 3,743 2/7/2025
3.0.421 162 2/7/2025
3.0.420 604 2/7/2025
3.0.419 172 2/7/2025
3.0.418 3,369 2/7/2025
3.0.417 161 2/7/2025
3.0.416 24,199 2/7/2025
3.0.415 12,203 2/5/2025
3.0.414 1,387 2/5/2025
3.0.413 2,049 2/5/2025
3.0.412 406 2/5/2025
3.0.411 4,328 2/5/2025
3.0.410 9,472 2/5/2025
3.0.409 20,093 1/28/2025
3.0.408 1,467 1/28/2025
3.0.407 440 1/28/2025
3.0.406 4,828 1/28/2025
3.0.405 10,274 1/27/2025
3.0.404 2,681 1/27/2025
3.0.403 150 1/27/2025
3.0.402 10,025 1/27/2025
3.0.401 160 1/27/2025
3.0.400 10,980 1/26/2025
3.0.399 2,221 1/26/2025
3.0.398 1,714 1/26/2025
3.0.397 936 1/26/2025
3.0.396 387 1/26/2025
3.0.395 4,767 1/25/2025
3.0.394 10,455 1/25/2025
3.0.393 7,822 1/25/2025
3.0.392 796 1/25/2025
3.0.391 19,478 1/24/2025
3.0.390 3,670 1/24/2025
3.0.389 6,487 1/24/2025
3.0.388 7,405 1/24/2025
3.0.387 1,697 1/23/2025
3.0.386 2,002 1/23/2025
3.0.385 224 1/23/2025
3.0.384 17,212 1/22/2025
3.0.383 2,181 1/21/2025
3.0.382 604 1/21/2025
3.0.381 2,049 1/21/2025
3.0.380 2,000 1/21/2025
3.0.379 2,227 1/21/2025
3.0.378 1,682 1/21/2025
3.0.377 2,323 1/21/2025
3.0.376 166 1/21/2025
3.0.375 11,003 1/21/2025
3.0.374 3,060 1/21/2025
3.0.373 2,424 1/21/2025
3.0.372 4,841 1/21/2025
3.0.371 315 1/20/2025
3.0.370 12,453 1/20/2025
3.0.369 422 1/20/2025
3.0.368 2,594 1/20/2025
3.0.367 149 1/20/2025
3.0.366 2,231 1/20/2025
3.0.365 167 1/20/2025
3.0.364 7,840 1/19/2025
3.0.363 12,027 1/19/2025
3.0.362 11,593 1/19/2025
3.0.361 3,921 1/19/2025
3.0.360 1,090 1/19/2025
3.0.359 6,613 1/18/2025
3.0.358 207 1/18/2025
3.0.357 6,391 1/18/2025
3.0.356 467 1/18/2025
3.0.355 1,803 1/18/2025
3.0.354 11,616 1/17/2025
3.0.353 209 1/17/2025
3.0.352 15,271 1/16/2025
3.0.351 8,320 1/16/2025
3.0.350 1,494 1/16/2025
3.0.349 9,239 1/15/2025
3.0.348 8,029 1/15/2025
3.0.347 6,700 1/15/2025
3.0.346 7,015 1/15/2025
3.0.345 4,163 1/15/2025
3.0.344 5,804 1/15/2025
3.0.343 1,690 1/15/2025
3.0.342 4,931 1/14/2025
3.0.341 877 1/14/2025
3.0.340 209 1/14/2025
3.0.339 7,471 1/14/2025
3.0.338 1,898 1/14/2025
3.0.337 150 1/14/2025
3.0.336 1,936 1/14/2025
3.0.335 688 1/14/2025
3.0.334 13,709 1/13/2025
3.0.333 2,953 1/13/2025
3.0.332 5,726 1/13/2025
3.0.331 11,717 1/11/2025
3.0.330 4,851 1/11/2025
3.0.329 4,687 1/10/2025
3.0.328 10,065 1/10/2025
3.0.327 169 1/10/2025
3.0.326 911 1/10/2025
3.0.325 163 1/10/2025
3.0.324 165 1/10/2025
3.0.323 16,373 1/3/2025
3.0.322 1,757 1/3/2025
3.0.321 2,210 1/3/2025
3.0.320 693 1/3/2025
3.0.319 2,616 1/3/2025
3.0.318 5,916 1/2/2025
3.0.317 184 1/2/2025
3.0.316 3,962 1/2/2025
3.0.315 185 1/2/2025
3.0.314 5,544 1/2/2025
3.0.313 185 1/2/2025
3.0.312 17,667 1/1/2025
3.0.311 178 1/1/2025
3.0.310 261 12/31/2024
3.0.309 190 12/31/2024
3.0.308 6,543 12/31/2024
3.0.307 175 12/31/2024
3.0.306 305 12/31/2024
3.0.305 1,131 12/31/2024
3.0.304 179 12/31/2024
3.0.303 1,829 12/31/2024
3.0.302 637 12/31/2024
3.0.301 11,508 12/31/2024
3.0.300 8,195 12/31/2024
3.0.299 1,624 12/31/2024
3.0.298 5,619 12/31/2024
3.0.297 4,476 12/31/2024
3.0.296 156 12/31/2024
3.0.295 167 12/31/2024
3.0.294 21,032 12/28/2024
3.0.293 3,496 12/28/2024
3.0.292 2,031 12/28/2024
3.0.291 2,433 12/27/2024
3.0.290 15,166 12/24/2024
3.0.289 3,214 12/24/2024
3.0.288 3,019 12/24/2024
3.0.287 4,346 12/24/2024
3.0.286 4,592 12/24/2024
3.0.285 3,719 12/24/2024
3.0.284 2,937 12/24/2024
3.0.283 2,298 12/23/2024
3.0.282 5,231 12/23/2024
3.0.281 6,014 12/23/2024
3.0.280 2,363 12/23/2024
3.0.279 6,934 12/23/2024
3.0.278 531 12/23/2024
3.0.277 6,396 12/22/2024
3.0.276 10,248 12/22/2024
3.0.275 10,182 12/22/2024
3.0.274 13,941 12/21/2024
3.0.273 813 12/21/2024
3.0.272 6,636 12/21/2024
3.0.271 8,977 12/21/2024
3.0.270 1,698 12/21/2024
3.0.269 10,561 12/20/2024
3.0.268 20,503 12/18/2024
3.0.267 245 12/18/2024
3.0.266 12,986 12/17/2024
3.0.265 11,004 12/17/2024
3.0.264 620 12/16/2024
3.0.263 1,865 12/16/2024
3.0.262 14,341 12/10/2024
3.0.261 3,994 12/9/2024
3.0.260 6,531 12/9/2024
3.0.259 4,493 12/9/2024
3.0.258 12,757 12/6/2024
3.0.257 2,245 12/6/2024
3.0.256 3,932 12/6/2024
3.0.255 12,441 12/6/2024
3.0.254 304 12/6/2024
3.0.253 554 12/6/2024
3.0.252 1,519 12/6/2024
3.0.251 10,111 12/6/2024
3.0.250 184 12/6/2024
3.0.249 173 12/6/2024
3.0.248 7,623 12/5/2024
3.0.247 7,672 12/5/2024
3.0.246 5,541 12/5/2024
3.0.245 7,366 12/5/2024
3.0.244 1,049 12/5/2024
3.0.243 799 12/5/2024
3.0.242 9,125 12/4/2024
3.0.241 723 12/4/2024
3.0.240 1,899 12/4/2024
3.0.239 6,192 12/4/2024
3.0.238 6,724 12/3/2024
3.0.237 4,935 12/3/2024
3.0.236 6,686 12/3/2024
3.0.235 6,158 12/3/2024
3.0.234 8,429 12/2/2024
3.0.233 6,873 12/2/2024
3.0.232 4,191 12/2/2024
3.0.231 749 12/2/2024
3.0.230 7,688 12/1/2024
3.0.229 1,179 12/1/2024
3.0.228 5,601 12/1/2024
3.0.227 7,210 12/1/2024
3.0.226 7,640 11/29/2024
3.0.225 12,832 11/21/2024
3.0.224 10,821 11/20/2024
3.0.223 1,065 11/20/2024
3.0.222 1,882 11/20/2024
3.0.221 954 11/19/2024
3.0.220 9,446 11/19/2024
3.0.219 3,749 11/19/2024
3.0.218 170 11/19/2024
3.0.217 6,201 11/19/2024
3.0.216 158 11/19/2024
3.0.215 18,456 11/14/2024
3.0.214 2,054 11/14/2024
3.0.213 6,968 11/14/2024
3.0.212 1,572 11/14/2024
3.0.211 952 11/14/2024
3.0.210 7,467 11/14/2024
3.0.209 170 11/14/2024
3.0.208 6,171 11/14/2024
3.0.207 329 11/14/2024
2.1.206 20,889 11/13/2024
2.1.205 8,470 11/13/2024
2.1.204 20,181 11/9/2024
2.1.203 1,309 11/9/2024
2.1.202 3,645 11/9/2024
2.1.201 2,066 11/8/2024
2.1.200 1,710 11/8/2024
2.1.199 159 11/8/2024
2.1.198 3,117 11/8/2024
2.1.197 418 11/8/2024
2.1.196 7,448 11/8/2024
2.1.195 9,991 11/8/2024
2.1.194 22,805 11/1/2024
2.1.192 16,409 10/29/2024
2.1.191 17,220 10/28/2024
2.1.190 10,827 10/26/2024
2.1.189 17,160 10/22/2024
2.1.188 2,438 10/22/2024
2.1.187 1,868 10/22/2024
2.1.186 14,726 10/17/2024
2.1.185 10,640 10/15/2024
2.1.184 4,071 10/14/2024
2.1.183 11,800 10/11/2024
2.1.182 1,514 10/11/2024
2.1.181 881 10/11/2024
2.1.180 18,923 10/9/2024
2.1.179 1,524 10/8/2024
2.1.178 9,230 10/8/2024
2.1.177 1,403 10/8/2024
2.1.176 21,395 10/3/2024
2.1.175 6,493 10/3/2024
2.1.174 15,683 10/2/2024
2.1.173 4,718 10/2/2024
2.1.172 11,291 10/1/2024
2.1.171 2,778 10/1/2024
2.1.170 4,655 10/1/2024
2.1.169 13,067 9/29/2024
2.1.168 3,666 9/29/2024
2.1.167 2,719 9/29/2024
2.1.166 15,696 9/27/2024
2.1.165 8,884 9/27/2024
2.1.164 164 9/27/2024
2.1.163 490 9/27/2024
2.1.162 173 9/27/2024
2.1.161 13,105 9/26/2024
2.1.160 12,856 9/26/2024
2.1.159 11,687 9/26/2024
2.1.158 11,883 9/23/2024
2.1.157 5,400 9/23/2024
2.1.156 3,185 9/23/2024
2.1.155 3,271 9/23/2024
2.1.154 10,901 9/23/2024
2.1.153 1,256 9/23/2024
2.1.152 1,431 9/23/2024
2.1.151 155 9/23/2024
2.1.150 3,620 9/23/2024
2.1.149 20,068 9/17/2024
2.1.148 166 9/17/2024
2.1.147 642 9/17/2024
2.1.146 7,781 9/17/2024
2.1.145 6,655 9/17/2024
2.1.144 8,922 9/17/2024
2.1.143 174 9/17/2024
2.1.142 789 9/17/2024
2.1.141 1,857 9/17/2024
2.1.140 21,297 9/16/2024
2.1.139 11,920 9/12/2024
2.1.138 8,237 9/11/2024
2.1.137 4,922 9/11/2024
2.1.136 9,210 9/11/2024
2.1.135 7,442 9/11/2024
2.1.134 17,386 9/10/2024
2.1.133 3,692 9/10/2024
2.1.132 5,745 9/9/2024
2.1.131 6,006 9/9/2024
2.1.130 3,652 9/9/2024
2.1.129 1,886 9/9/2024
2.1.128 167 9/9/2024
2.1.127 159 9/9/2024
2.1.126 173 9/9/2024
2.1.125 26,597 9/6/2024
2.1.124 10,480 9/6/2024
2.1.123 5,410 9/5/2024
2.1.122 3,164 9/5/2024
2.1.121 6,554 9/5/2024
2.1.120 3,441 9/5/2024
2.1.119 175 9/5/2024
2.1.118 2,584 9/5/2024
2.1.117 9,372 9/5/2024
2.1.116 2,096 9/4/2024
2.1.115 19,451 9/3/2024
2.1.114 1,882 9/3/2024
2.1.113 8,063 9/3/2024
2.1.112 15,575 8/29/2024
2.1.111 11,086 8/26/2024
2.1.110 10,980 8/21/2024
2.1.109 6,358 8/21/2024
2.1.108 686 8/20/2024
2.1.107 7,819 8/20/2024
2.1.106 175 8/20/2024
2.1.105 7,824 8/20/2024
2.1.104 4,590 8/20/2024
2.1.103 14,863 8/15/2024
2.1.102 13,164 8/13/2024
2.1.101 12,551 8/6/2024
2.1.100 15,595 8/1/2024
2.1.99 956 8/1/2024
2.1.98 14,901 7/25/2024
2.1.97 1,889 7/25/2024
2.1.96 1,716 7/25/2024
2.1.95 1,124 7/24/2024
2.1.94 351 7/24/2024
2.1.93 16,381 7/20/2024
2.1.92 13,314 7/14/2024
2.1.91 3,714 7/14/2024
2.1.90 11,347 7/10/2024
2.1.89 354 7/10/2024
2.1.88 3,450 7/10/2024
2.1.87 3,094 7/10/2024
2.1.86 372 7/10/2024
2.1.85 366 7/10/2024
2.1.83 3,507 7/10/2024
2.1.82 4,909 7/9/2024
2.1.80 1,347 7/9/2024
2.1.79 1,566 7/9/2024
2.1.78 12,817 7/9/2024
2.1.77 5,170 7/9/2024
2.1.76 17,812 7/9/2024
2.1.75 182 7/9/2024
2.1.74 202 7/8/2024
2.1.73 167 7/8/2024
2.1.72 4,012 7/8/2024
2.1.71 167 7/8/2024
2.1.70 11,604 7/8/2024
2.1.69 3,888 7/7/2024
2.1.68 4,377 7/7/2024
2.1.67 1,040 7/7/2024
2.1.66 2,194 7/7/2024
2.1.65 5,033 7/7/2024
2.1.64 4,392 7/7/2024
2.1.63 180 7/7/2024
2.1.62 6,089 7/5/2024
2.1.61 121,691 5/25/2024
2.1.60 176 5/25/2024
2.1.59 816 5/25/2024
2.1.58 22,894 5/22/2024
2.1.57 176 5/22/2024
2.1.56 18,727 5/17/2024
2.1.55 26,466 4/30/2024
2.1.54 25,982 4/28/2024
2.1.53 173 4/28/2024
2.1.52 1,100 4/27/2024
2.1.51 176 4/27/2024
2.1.50 40,413 4/12/2024
2.1.49 2,152 4/12/2024
2.1.48 192 4/12/2024
2.1.47 61,976 3/18/2024
2.1.46 13,998 3/13/2024
2.1.45 3,560 3/13/2024
2.1.44 95,704 2/21/2024
2.1.43 4,126 2/21/2024
2.1.42 177 2/21/2024
2.1.41 33,056 2/16/2024
2.1.40 920 2/16/2024
2.1.39 36,009 2/9/2024
2.1.38 28,087 2/6/2024
2.1.37 193 2/6/2024
2.1.36 92,139 1/15/2024
2.1.35 1,255 1/15/2024
2.1.34 36,540 1/5/2024
2.1.33 3,422 1/5/2024
2.1.32 18,588 12/27/2023
2.1.31 1,777 12/27/2023
2.1.30 1,536 12/27/2023
2.1.29 11,205 12/25/2023
2.1.28 2,027 12/25/2023
2.1.27 867 12/25/2023
2.1.26 14,963 12/23/2023
2.1.25 212 12/23/2023
2.1.24 1,087 12/23/2023
2.1.23 28,987 12/9/2023
2.1.22 1,741 12/9/2023
2.1.21 361 12/9/2023
2.1.20 2,739 12/9/2023
2.1.19 15,304 12/4/2023
2.1.18 1,157 12/4/2023
2.1.17 8,034 11/26/2023
2.1.16 7,470 11/23/2023
2.1.15 543 11/23/2023
2.1.14 1,472 11/23/2023
2.1.13 13,529 11/19/2023
2.1.12 185 11/19/2023
2.1.11 1,758 11/18/2023
2.1.10 4,817 11/18/2023
2.1.9 2,628 11/18/2023
2.1.8 5,188 11/17/2023
2.1.7 1,357 11/17/2023
2.1.6 2,608 11/17/2023
2.1.5 1,330 11/17/2023
2.1.4 975 11/16/2023
2.1.3 289 11/16/2023
2.0.52 1,795 11/15/2023
2.0.51 3,647 11/15/2023
2.0.2 187 11/16/2023
2.0.1 203 11/16/2023
1.0.50 5,643 11/11/2023
1.0.49 190 11/11/2023
1.0.48 171 11/11/2023
1.0.47 1,730 11/9/2023
1.0.46 190 11/9/2023
1.0.45 7,043 11/6/2023
1.0.44 2,873 11/3/2023
1.0.43 2,340 11/2/2023
1.0.42 2,608 11/1/2023
1.0.41 9,911 10/18/2023
1.0.40 3,820 10/17/2023
1.0.39 1,699 10/16/2023
1.0.38 3,438 10/13/2023
1.0.37 226 10/13/2023
1.0.36 8,175 9/19/2023
1.0.35 2,705 9/18/2023
1.0.34 195 9/18/2023
1.0.33 10,064 8/30/2023
1.0.32 3,456 8/29/2023
1.0.31 5,507 8/24/2023
1.0.30 220 8/24/2023
1.0.29 5,195 8/17/2023
1.0.28 250 8/17/2023
1.0.27 9,495 8/7/2023
1.0.26 250 8/7/2023
1.0.25 9,749 7/10/2023
1.0.24 15,025 7/7/2023
1.0.23 252 7/7/2023
1.0.22 11,893 6/28/2023
1.0.21 55,358 5/24/2023
1.0.20 1,469 5/24/2023
1.0.19 556 5/23/2023
1.0.18 283 5/31/2023
1.0.17 3,302 5/23/2023
1.0.16 3,360 5/22/2023
1.0.15 7,576 5/17/2023
1.0.14 274 5/17/2023
1.0.13 6,919 4/28/2023
1.0.12 2,721 4/24/2023
1.0.11 1,210 4/21/2023
1.0.10 5,760 4/12/2023
1.0.9 1,389 4/11/2023
1.0.8 2,679 4/3/2023
1.0.7 326 4/3/2023
1.0.6 482 4/1/2023
1.0.5 2,312 3/23/2023
1.0.3 666 2/28/2023
1.0.2 593 2/16/2023