Soenneker.Extensions.Enumerable 3.0.562

Prefix Reserved
dotnet add package Soenneker.Extensions.Enumerable --version 3.0.562
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 3.0.562
                    
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.562" />
                    
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.562" />
                    
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.562
                    
#r "nuget: Soenneker.Extensions.Enumerable, 3.0.562"
                    
#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.562
                    
#: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.562
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=3.0.562
                    
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.562 98 8/11/2025
3.0.561 88 8/11/2025
3.0.560 89 8/11/2025
3.0.559 2,201 8/5/2025
3.0.558 13,686 7/8/2025
3.0.557 26,597 6/27/2025
3.0.556 2,118 6/27/2025
3.0.555 213 6/27/2025
3.0.554 28,939 6/10/2025
3.0.553 21,140 5/27/2025
3.0.552 1,365 5/27/2025
3.0.551 1,128 5/27/2025
3.0.550 19,519 5/23/2025
3.0.549 2,161 5/23/2025
3.0.548 2,166 5/22/2025
3.0.547 18,638 5/14/2025
3.0.546 11,695 5/8/2025
3.0.545 1,734 5/7/2025
3.0.544 251 5/7/2025
3.0.543 16,529 5/5/2025
3.0.542 1,835 5/5/2025
3.0.541 3,361 5/5/2025
3.0.540 146 5/5/2025
3.0.539 23,527 4/8/2025
3.0.538 2,470 4/8/2025
3.0.537 544 4/8/2025
3.0.536 2,580 4/8/2025
3.0.535 173 4/8/2025
3.0.534 3,950 4/8/2025
3.0.533 657 4/8/2025
3.0.532 6,181 4/8/2025
3.0.531 7,332 4/8/2025
3.0.530 1,626 4/7/2025
3.0.529 3,682 4/7/2025
3.0.528 1,273 4/7/2025
3.0.527 3,088 4/7/2025
3.0.526 8,162 4/7/2025
3.0.525 2,416 4/7/2025
3.0.524 624 4/7/2025
3.0.523 9,304 4/7/2025
3.0.522 1,918 4/7/2025
3.0.521 3,300 4/6/2025
3.0.520 257 4/6/2025
3.0.519 1,510 4/6/2025
3.0.518 1,881 4/6/2025
3.0.517 2,229 4/6/2025
3.0.516 116 4/6/2025
3.0.515 395 4/6/2025
3.0.514 125 4/6/2025
3.0.513 490 4/5/2025
3.0.512 3,122 4/5/2025
3.0.511 1,466 4/5/2025
3.0.510 1,126 4/5/2025
3.0.509 176 4/5/2025
3.0.508 228 4/5/2025
3.0.507 273 4/5/2025
3.0.506 2,897 4/4/2025
3.0.505 137 4/4/2025
3.0.504 3,026 4/4/2025
3.0.503 37,245 4/4/2025
3.0.502 8,258 4/1/2025
3.0.501 4,538 4/1/2025
3.0.500 6,438 3/31/2025
3.0.499 2,839 3/31/2025
3.0.498 6,512 3/31/2025
3.0.497 7,836 3/29/2025
3.0.496 2,086 3/29/2025
3.0.495 6,499 3/27/2025
3.0.494 4,379 3/25/2025
3.0.493 1,754 3/25/2025
3.0.492 10,587 3/21/2025
3.0.491 10,750 3/18/2025
3.0.490 4,926 3/18/2025
3.0.489 7,362 3/15/2025
3.0.488 2,295 3/15/2025
3.0.487 8,356 3/12/2025
3.0.486 3,147 3/12/2025
3.0.485 520 3/12/2025
3.0.484 3,146 3/11/2025
3.0.483 394 3/11/2025
3.0.482 1,284 3/11/2025
3.0.481 2,352 3/11/2025
3.0.480 3,493 3/11/2025
3.0.479 3,202 3/11/2025
3.0.478 2,027 3/11/2025
3.0.477 12,330 3/7/2025
3.0.476 3,671 3/7/2025
3.0.475 7,431 3/2/2025
3.0.474 2,709 3/2/2025
3.0.473 678 3/2/2025
3.0.472 5,172 3/2/2025
3.0.471 4,735 3/1/2025
3.0.470 247 3/1/2025
3.0.469 4,485 3/1/2025
3.0.468 116 3/1/2025
3.0.467 1,667 3/1/2025
3.0.466 12,727 2/26/2025
3.0.465 1,130 2/25/2025
3.0.464 3,098 2/25/2025
3.0.463 2,024 2/25/2025
3.0.462 1,033 2/25/2025
3.0.461 11,657 2/23/2025
3.0.460 2,100 2/22/2025
3.0.459 9,294 2/22/2025
3.0.458 2,701 2/22/2025
3.0.457 3,264 2/22/2025
3.0.456 538 2/21/2025
3.0.455 5,242 2/21/2025
3.0.454 11,553 2/19/2025
3.0.453 4,858 2/18/2025
3.0.452 1,064 2/18/2025
3.0.451 434 2/18/2025
3.0.450 5,721 2/18/2025
3.0.449 115 2/18/2025
3.0.448 12,777 2/14/2025
3.0.447 1,394 2/14/2025
3.0.446 3,846 2/13/2025
3.0.445 4,710 2/13/2025
3.0.444 5,399 2/12/2025
3.0.443 1,691 2/12/2025
3.0.442 744 2/12/2025
3.0.441 2,135 2/12/2025
3.0.440 750 2/12/2025
3.0.439 515 2/11/2025
3.0.438 7,868 2/11/2025
3.0.437 2,666 2/11/2025
3.0.436 458 2/11/2025
3.0.435 2,606 2/10/2025
3.0.434 127 2/10/2025
3.0.433 1,767 2/10/2025
3.0.432 129 2/10/2025
3.0.431 13,785 2/9/2025
3.0.430 7,987 2/9/2025
3.0.429 368 2/9/2025
3.0.428 280 2/8/2025
3.0.427 229 2/8/2025
3.0.426 289 2/8/2025
3.0.425 8,296 2/8/2025
3.0.424 2,731 2/7/2025
3.0.423 1,932 2/7/2025
3.0.422 2,469 2/7/2025
3.0.421 124 2/7/2025
3.0.420 421 2/7/2025
3.0.419 123 2/7/2025
3.0.418 1,985 2/7/2025
3.0.417 121 2/7/2025
3.0.416 14,592 2/7/2025
3.0.415 7,165 2/5/2025
3.0.414 850 2/5/2025
3.0.413 1,180 2/5/2025
3.0.412 268 2/5/2025
3.0.411 2,549 2/5/2025
3.0.410 5,368 2/5/2025
3.0.409 12,307 1/28/2025
3.0.408 854 1/28/2025
3.0.407 274 1/28/2025
3.0.406 2,656 1/28/2025
3.0.405 5,518 1/27/2025
3.0.404 1,573 1/27/2025
3.0.403 113 1/27/2025
3.0.402 5,386 1/27/2025
3.0.401 110 1/27/2025
3.0.400 6,153 1/26/2025
3.0.399 1,303 1/26/2025
3.0.398 1,000 1/26/2025
3.0.397 550 1/26/2025
3.0.396 268 1/26/2025
3.0.395 2,755 1/25/2025
3.0.394 5,913 1/25/2025
3.0.393 4,306 1/25/2025
3.0.392 457 1/25/2025
3.0.391 10,793 1/24/2025
3.0.390 1,994 1/24/2025
3.0.389 3,498 1/24/2025
3.0.388 4,086 1/24/2025
3.0.387 950 1/23/2025
3.0.386 1,175 1/23/2025
3.0.385 160 1/23/2025
3.0.384 9,608 1/22/2025
3.0.383 1,254 1/21/2025
3.0.382 389 1/21/2025
3.0.381 1,214 1/21/2025
3.0.380 1,175 1/21/2025
3.0.379 1,347 1/21/2025
3.0.378 1,034 1/21/2025
3.0.377 1,381 1/21/2025
3.0.376 123 1/21/2025
3.0.375 6,203 1/21/2025
3.0.374 1,771 1/21/2025
3.0.373 1,525 1/21/2025
3.0.372 2,664 1/21/2025
3.0.371 207 1/20/2025
3.0.370 6,965 1/20/2025
3.0.369 271 1/20/2025
3.0.368 1,460 1/20/2025
3.0.367 114 1/20/2025
3.0.366 1,379 1/20/2025
3.0.365 132 1/20/2025
3.0.364 4,258 1/19/2025
3.0.363 6,649 1/19/2025
3.0.362 6,443 1/19/2025
3.0.361 2,197 1/19/2025
3.0.360 643 1/19/2025
3.0.359 3,649 1/18/2025
3.0.358 157 1/18/2025
3.0.357 3,562 1/18/2025
3.0.356 283 1/18/2025
3.0.355 1,031 1/18/2025
3.0.354 6,405 1/17/2025
3.0.353 149 1/17/2025
3.0.352 8,300 1/16/2025
3.0.351 4,576 1/16/2025
3.0.350 861 1/16/2025
3.0.349 5,162 1/15/2025
3.0.348 4,423 1/15/2025
3.0.347 3,741 1/15/2025
3.0.346 3,942 1/15/2025
3.0.345 2,317 1/15/2025
3.0.344 3,068 1/15/2025
3.0.343 818 1/15/2025
3.0.342 2,463 1/14/2025
3.0.341 431 1/14/2025
3.0.340 145 1/14/2025
3.0.339 3,481 1/14/2025
3.0.338 960 1/14/2025
3.0.337 102 1/14/2025
3.0.336 1,256 1/14/2025
3.0.335 368 1/14/2025
3.0.334 7,140 1/13/2025
3.0.333 1,605 1/13/2025
3.0.332 3,031 1/13/2025
3.0.331 6,095 1/11/2025
3.0.330 2,539 1/11/2025
3.0.329 2,801 1/10/2025
3.0.328 5,590 1/10/2025
3.0.327 130 1/10/2025
3.0.326 527 1/10/2025
3.0.325 120 1/10/2025
3.0.324 125 1/10/2025
3.0.323 9,004 1/3/2025
3.0.322 1,053 1/3/2025
3.0.321 1,327 1/3/2025
3.0.320 428 1/3/2025
3.0.319 1,497 1/3/2025
3.0.318 3,316 1/2/2025
3.0.317 135 1/2/2025
3.0.316 2,300 1/2/2025
3.0.315 141 1/2/2025
3.0.314 3,058 1/2/2025
3.0.313 143 1/2/2025
3.0.312 9,898 1/1/2025
3.0.311 134 1/1/2025
3.0.310 181 12/31/2024
3.0.309 145 12/31/2024
3.0.308 3,591 12/31/2024
3.0.307 133 12/31/2024
3.0.306 209 12/31/2024
3.0.305 705 12/31/2024
3.0.304 137 12/31/2024
3.0.303 1,100 12/31/2024
3.0.302 412 12/31/2024
3.0.301 6,443 12/31/2024
3.0.300 4,545 12/31/2024
3.0.299 1,054 12/31/2024
3.0.298 3,301 12/31/2024
3.0.297 2,508 12/31/2024
3.0.296 129 12/31/2024
3.0.295 136 12/31/2024
3.0.294 11,598 12/28/2024
3.0.293 1,967 12/28/2024
3.0.292 1,130 12/28/2024
3.0.291 1,359 12/27/2024
3.0.290 8,496 12/24/2024
3.0.289 1,858 12/24/2024
3.0.288 1,804 12/24/2024
3.0.287 2,534 12/24/2024
3.0.286 2,723 12/24/2024
3.0.285 2,151 12/24/2024
3.0.284 1,782 12/24/2024
3.0.283 1,408 12/23/2024
3.0.282 2,967 12/23/2024
3.0.281 3,401 12/23/2024
3.0.280 1,350 12/23/2024
3.0.279 3,812 12/23/2024
3.0.278 323 12/23/2024
3.0.277 3,644 12/22/2024
3.0.276 5,763 12/22/2024
3.0.275 5,786 12/22/2024
3.0.274 7,816 12/21/2024
3.0.273 473 12/21/2024
3.0.272 3,841 12/21/2024
3.0.271 4,972 12/21/2024
3.0.270 1,088 12/21/2024
3.0.269 5,942 12/20/2024
3.0.268 11,609 12/18/2024
3.0.267 179 12/18/2024
3.0.266 7,603 12/17/2024
3.0.265 6,163 12/17/2024
3.0.264 397 12/16/2024
3.0.263 1,142 12/16/2024
3.0.262 8,175 12/10/2024
3.0.261 2,288 12/9/2024
3.0.260 3,724 12/9/2024
3.0.259 2,537 12/9/2024
3.0.258 7,049 12/6/2024
3.0.257 1,348 12/6/2024
3.0.256 2,335 12/6/2024
3.0.255 7,166 12/6/2024
3.0.254 223 12/6/2024
3.0.253 360 12/6/2024
3.0.252 1,025 12/6/2024
3.0.251 5,682 12/6/2024
3.0.250 149 12/6/2024
3.0.249 140 12/6/2024
3.0.248 4,515 12/5/2024
3.0.247 4,511 12/5/2024
3.0.246 3,452 12/5/2024
3.0.245 4,116 12/5/2024
3.0.244 614 12/5/2024
3.0.243 533 12/5/2024
3.0.242 5,216 12/4/2024
3.0.241 497 12/4/2024
3.0.240 1,149 12/4/2024
3.0.239 3,630 12/4/2024
3.0.238 3,830 12/3/2024
3.0.237 2,879 12/3/2024
3.0.236 3,644 12/3/2024
3.0.235 3,440 12/3/2024
3.0.234 4,748 12/2/2024
3.0.233 3,914 12/2/2024
3.0.232 2,408 12/2/2024
3.0.231 454 12/2/2024
3.0.230 4,333 12/1/2024
3.0.229 1,018 12/1/2024
3.0.228 3,178 12/1/2024
3.0.227 4,111 12/1/2024
3.0.226 4,321 11/29/2024
3.0.225 7,591 11/21/2024
3.0.224 6,237 11/20/2024
3.0.223 693 11/20/2024
3.0.222 1,173 11/20/2024
3.0.221 594 11/19/2024
3.0.220 5,703 11/19/2024
3.0.219 2,344 11/19/2024
3.0.218 123 11/19/2024
3.0.217 3,849 11/19/2024
3.0.216 113 11/19/2024
3.0.215 10,639 11/14/2024
3.0.214 1,191 11/14/2024
3.0.213 4,130 11/14/2024
3.0.212 1,003 11/14/2024
3.0.211 609 11/14/2024
3.0.210 4,374 11/14/2024
3.0.209 119 11/14/2024
3.0.208 3,474 11/14/2024
3.0.207 212 11/14/2024
2.1.206 12,597 11/13/2024
2.1.205 5,023 11/13/2024
2.1.204 12,153 11/9/2024
2.1.203 869 11/9/2024
2.1.202 2,191 11/9/2024
2.1.201 1,299 11/8/2024
2.1.200 1,101 11/8/2024
2.1.199 127 11/8/2024
2.1.198 1,943 11/8/2024
2.1.197 279 11/8/2024
2.1.196 4,652 11/8/2024
2.1.195 6,069 11/8/2024
2.1.194 13,376 11/1/2024
2.1.192 9,674 10/29/2024
2.1.191 10,416 10/28/2024
2.1.190 6,633 10/26/2024
2.1.189 11,460 10/22/2024
2.1.188 1,511 10/22/2024
2.1.187 1,084 10/22/2024
2.1.186 8,575 10/17/2024
2.1.185 6,230 10/15/2024
2.1.184 2,375 10/14/2024
2.1.183 6,907 10/11/2024
2.1.182 970 10/11/2024
2.1.181 583 10/11/2024
2.1.180 11,118 10/9/2024
2.1.179 937 10/8/2024
2.1.178 5,550 10/8/2024
2.1.177 869 10/8/2024
2.1.176 12,514 10/3/2024
2.1.175 3,758 10/3/2024
2.1.174 9,109 10/2/2024
2.1.173 2,745 10/2/2024
2.1.172 6,702 10/1/2024
2.1.171 1,823 10/1/2024
2.1.170 2,763 10/1/2024
2.1.169 7,755 9/29/2024
2.1.168 2,241 9/29/2024
2.1.167 1,653 9/29/2024
2.1.166 9,519 9/27/2024
2.1.165 5,307 9/27/2024
2.1.164 123 9/27/2024
2.1.163 319 9/27/2024
2.1.162 123 9/27/2024
2.1.161 7,963 9/26/2024
2.1.160 7,607 9/26/2024
2.1.159 7,011 9/26/2024
2.1.158 7,196 9/23/2024
2.1.157 3,329 9/23/2024
2.1.156 1,972 9/23/2024
2.1.155 2,046 9/23/2024
2.1.154 6,584 9/23/2024
2.1.153 751 9/23/2024
2.1.152 911 9/23/2024
2.1.151 110 9/23/2024
2.1.150 2,394 9/23/2024
2.1.149 12,133 9/17/2024
2.1.148 122 9/17/2024
2.1.147 440 9/17/2024
2.1.146 4,856 9/17/2024
2.1.145 4,227 9/17/2024
2.1.144 5,512 9/17/2024
2.1.143 133 9/17/2024
2.1.142 539 9/17/2024
2.1.141 1,267 9/17/2024
2.1.140 13,495 9/16/2024
2.1.139 7,637 9/12/2024
2.1.138 5,165 9/11/2024
2.1.137 3,115 9/11/2024
2.1.136 6,007 9/11/2024
2.1.135 4,949 9/11/2024
2.1.134 11,222 9/10/2024
2.1.133 2,371 9/10/2024
2.1.132 3,768 9/9/2024
2.1.131 4,151 9/9/2024
2.1.130 2,635 9/9/2024
2.1.129 1,265 9/9/2024
2.1.128 122 9/9/2024
2.1.127 129 9/9/2024
2.1.126 126 9/9/2024
2.1.125 16,861 9/6/2024
2.1.124 6,596 9/6/2024
2.1.123 3,420 9/5/2024
2.1.122 2,062 9/5/2024
2.1.121 4,160 9/5/2024
2.1.120 2,271 9/5/2024
2.1.119 126 9/5/2024
2.1.118 1,663 9/5/2024
2.1.117 5,939 9/5/2024
2.1.116 1,424 9/4/2024
2.1.115 12,137 9/3/2024
2.1.114 1,236 9/3/2024
2.1.113 4,977 9/3/2024
2.1.112 9,608 8/29/2024
2.1.111 6,800 8/26/2024
2.1.110 6,756 8/21/2024
2.1.109 3,846 8/21/2024
2.1.108 465 8/20/2024
2.1.107 4,763 8/20/2024
2.1.106 131 8/20/2024
2.1.105 4,850 8/20/2024
2.1.104 2,963 8/20/2024
2.1.103 9,125 8/15/2024
2.1.102 8,246 8/13/2024
2.1.101 7,915 8/6/2024
2.1.100 9,246 8/1/2024
2.1.99 591 8/1/2024
2.1.98 8,730 7/25/2024
2.1.97 1,090 7/25/2024
2.1.96 1,008 7/25/2024
2.1.95 665 7/24/2024
2.1.94 235 7/24/2024
2.1.93 9,776 7/20/2024
2.1.92 8,277 7/14/2024
2.1.91 2,265 7/14/2024
2.1.90 6,874 7/10/2024
2.1.89 252 7/10/2024
2.1.88 2,194 7/10/2024
2.1.87 2,069 7/10/2024
2.1.86 246 7/10/2024
2.1.85 255 7/10/2024
2.1.83 2,148 7/10/2024
2.1.82 3,256 7/9/2024
2.1.80 861 7/9/2024
2.1.79 1,275 7/9/2024
2.1.78 7,762 7/9/2024
2.1.77 3,100 7/9/2024
2.1.76 12,742 7/9/2024
2.1.75 142 7/9/2024
2.1.74 159 7/8/2024
2.1.73 138 7/8/2024
2.1.72 2,541 7/8/2024
2.1.71 119 7/8/2024
2.1.70 6,988 7/8/2024
2.1.69 2,312 7/7/2024
2.1.68 2,615 7/7/2024
2.1.67 696 7/7/2024
2.1.66 1,360 7/7/2024
2.1.65 3,083 7/7/2024
2.1.64 2,748 7/7/2024
2.1.63 130 7/7/2024
2.1.62 3,662 7/5/2024
2.1.61 73,374 5/25/2024
2.1.60 136 5/25/2024
2.1.59 551 5/25/2024
2.1.58 14,043 5/22/2024
2.1.57 138 5/22/2024
2.1.56 11,541 5/17/2024
2.1.55 15,980 4/30/2024
2.1.54 16,003 4/28/2024
2.1.53 135 4/28/2024
2.1.52 698 4/27/2024
2.1.51 126 4/27/2024
2.1.50 25,136 4/12/2024
2.1.49 1,383 4/12/2024
2.1.48 144 4/12/2024
2.1.47 39,445 3/18/2024
2.1.46 8,818 3/13/2024
2.1.45 2,304 3/13/2024
2.1.44 61,362 2/21/2024
2.1.43 2,762 2/21/2024
2.1.42 136 2/21/2024
2.1.41 21,908 2/16/2024
2.1.40 671 2/16/2024
2.1.39 23,984 2/9/2024
2.1.38 19,010 2/6/2024
2.1.37 145 2/6/2024
2.1.36 62,958 1/15/2024
2.1.35 859 1/15/2024
2.1.34 26,209 1/5/2024
2.1.33 2,476 1/5/2024
2.1.32 13,430 12/27/2023
2.1.31 1,366 12/27/2023
2.1.30 1,110 12/27/2023
2.1.29 7,906 12/25/2023
2.1.28 1,456 12/25/2023
2.1.27 710 12/25/2023
2.1.26 10,598 12/23/2023
2.1.25 162 12/23/2023
2.1.24 833 12/23/2023
2.1.23 20,810 12/9/2023
2.1.22 1,368 12/9/2023
2.1.21 272 12/9/2023
2.1.20 1,953 12/9/2023
2.1.19 10,893 12/4/2023
2.1.18 841 12/4/2023
2.1.17 5,479 11/26/2023
2.1.16 5,440 11/23/2023
2.1.15 358 11/23/2023
2.1.14 979 11/23/2023
2.1.13 9,473 11/19/2023
2.1.12 157 11/19/2023
2.1.11 1,215 11/18/2023
2.1.10 3,445 11/18/2023
2.1.9 1,965 11/18/2023
2.1.8 3,710 11/17/2023
2.1.7 1,097 11/17/2023
2.1.6 1,730 11/17/2023
2.1.5 899 11/17/2023
2.1.4 674 11/16/2023
2.1.3 203 11/16/2023
2.0.52 1,264 11/15/2023
2.0.51 2,160 11/15/2023
2.0.2 151 11/16/2023
2.0.1 161 11/16/2023
1.0.50 4,129 11/11/2023
1.0.49 143 11/11/2023
1.0.48 127 11/11/2023
1.0.47 1,358 11/9/2023
1.0.46 148 11/9/2023
1.0.45 5,253 11/6/2023
1.0.44 2,248 11/3/2023
1.0.43 1,834 11/2/2023
1.0.42 1,909 11/1/2023
1.0.41 7,571 10/18/2023
1.0.40 3,041 10/17/2023
1.0.39 1,262 10/16/2023
1.0.38 2,712 10/13/2023
1.0.37 187 10/13/2023
1.0.36 6,193 9/19/2023
1.0.35 2,092 9/18/2023
1.0.34 161 9/18/2023
1.0.33 7,731 8/30/2023
1.0.32 2,741 8/29/2023
1.0.31 4,203 8/24/2023
1.0.30 175 8/24/2023
1.0.29 4,382 8/17/2023
1.0.28 205 8/17/2023
1.0.27 8,075 8/7/2023
1.0.26 203 8/7/2023
1.0.25 8,026 7/10/2023
1.0.24 10,429 7/7/2023
1.0.23 201 7/7/2023
1.0.22 9,381 6/28/2023
1.0.21 44,620 5/24/2023
1.0.20 1,168 5/24/2023
1.0.19 450 5/23/2023
1.0.18 229 5/31/2023
1.0.17 2,798 5/23/2023
1.0.16 2,983 5/22/2023
1.0.15 6,010 5/17/2023
1.0.14 223 5/17/2023
1.0.13 5,645 4/28/2023
1.0.12 2,252 4/24/2023
1.0.11 1,012 4/21/2023
1.0.10 4,527 4/12/2023
1.0.9 1,111 4/11/2023
1.0.8 2,070 4/3/2023
1.0.7 274 4/3/2023
1.0.6 407 4/1/2023
1.0.5 2,079 3/23/2023
1.0.3 589 2/28/2023
1.0.2 495 2/16/2023