Soenneker.Extensions.Enumerable 2.1.158

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 2.1.158
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 2.1.158
                    
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="2.1.158" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Extensions.Enumerable" Version="2.1.158" />
                    
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 2.1.158
                    
#r "nuget: Soenneker.Extensions.Enumerable, 2.1.158"
                    
#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@2.1.158
                    
#: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=2.1.158
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=2.1.158
                    
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 net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  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 is compatible.  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 50,607 9/9/2025
3.0.565 28,715 9/3/2025
3.0.564 3,014 9/3/2025
3.0.563 160 9/3/2025
3.0.562 49,109 8/11/2025
3.0.561 6,773 8/11/2025
3.0.560 500 8/11/2025
3.0.559 33,865 8/5/2025
3.0.558 36,898 7/8/2025
3.0.557 39,900 6/27/2025
3.0.556 3,324 6/27/2025
3.0.555 314 6/27/2025
3.0.554 44,955 6/10/2025
3.0.553 32,025 5/27/2025
3.0.552 2,105 5/27/2025
3.0.551 1,755 5/27/2025
3.0.550 30,624 5/23/2025
3.0.549 3,456 5/23/2025
3.0.548 3,340 5/22/2025
3.0.547 29,380 5/14/2025
3.0.546 17,696 5/8/2025
3.0.545 2,707 5/7/2025
3.0.544 334 5/7/2025
3.0.543 24,952 5/5/2025
3.0.542 2,874 5/5/2025
3.0.541 5,203 5/5/2025
3.0.540 185 5/5/2025
3.0.539 35,952 4/8/2025
3.0.538 3,890 4/8/2025
3.0.537 797 4/8/2025
3.0.536 4,027 4/8/2025
3.0.535 221 4/8/2025
3.0.534 6,272 4/8/2025
3.0.533 932 4/8/2025
3.0.532 9,891 4/8/2025
3.0.531 12,184 4/8/2025
3.0.530 2,648 4/7/2025
3.0.529 6,052 4/7/2025
3.0.528 1,974 4/7/2025
3.0.527 4,963 4/7/2025
3.0.526 13,667 4/7/2025
3.0.525 3,912 4/7/2025
3.0.524 930 4/7/2025
3.0.523 15,530 4/7/2025
3.0.522 2,978 4/7/2025
3.0.521 5,193 4/6/2025
3.0.520 354 4/6/2025
3.0.519 2,452 4/6/2025
3.0.518 2,994 4/6/2025
3.0.517 3,542 4/6/2025
3.0.516 157 4/6/2025
3.0.515 599 4/6/2025
3.0.514 168 4/6/2025
3.0.513 759 4/5/2025
3.0.512 4,862 4/5/2025
3.0.511 2,383 4/5/2025
3.0.510 1,779 4/5/2025
3.0.509 244 4/5/2025
3.0.508 325 4/5/2025
3.0.507 404 4/5/2025
3.0.506 4,465 4/4/2025
3.0.505 183 4/4/2025
3.0.504 4,762 4/4/2025
3.0.503 58,711 4/4/2025
3.0.502 13,733 4/1/2025
3.0.501 7,555 4/1/2025
3.0.500 10,769 3/31/2025
3.0.499 4,714 3/31/2025
3.0.498 10,702 3/31/2025
3.0.497 13,244 3/29/2025
3.0.496 3,534 3/29/2025
3.0.495 10,944 3/27/2025
3.0.494 6,996 3/25/2025
3.0.493 2,654 3/25/2025
3.0.492 17,730 3/21/2025
3.0.491 16,695 3/18/2025
3.0.490 8,285 3/18/2025
3.0.489 12,429 3/15/2025
3.0.488 3,935 3/15/2025
3.0.487 13,972 3/12/2025
3.0.486 5,158 3/12/2025
3.0.485 727 3/12/2025
3.0.484 5,177 3/11/2025
3.0.483 542 3/11/2025
3.0.482 2,055 3/11/2025
3.0.481 3,906 3/11/2025
3.0.480 5,691 3/11/2025
3.0.479 5,028 3/11/2025
3.0.478 3,368 3/11/2025
3.0.477 20,119 3/7/2025
3.0.476 6,007 3/7/2025
3.0.475 11,848 3/2/2025
3.0.474 4,493 3/2/2025
3.0.473 1,090 3/2/2025
3.0.472 8,596 3/2/2025
3.0.471 8,048 3/1/2025
3.0.470 359 3/1/2025
3.0.469 7,612 3/1/2025
3.0.468 154 3/1/2025
3.0.467 2,781 3/1/2025
3.0.466 20,617 2/26/2025
3.0.465 1,848 2/25/2025
3.0.464 5,153 2/25/2025
3.0.463 3,317 2/25/2025
3.0.462 1,690 2/25/2025
3.0.461 19,278 2/23/2025
3.0.460 3,389 2/22/2025
3.0.459 15,339 2/22/2025
3.0.458 4,533 2/22/2025
3.0.457 5,505 2/22/2025
3.0.456 855 2/21/2025
3.0.455 8,773 2/21/2025
3.0.454 19,234 2/19/2025
3.0.453 7,702 2/18/2025
3.0.452 1,699 2/18/2025
3.0.451 661 2/18/2025
3.0.450 9,441 2/18/2025
3.0.449 151 2/18/2025
3.0.448 21,472 2/14/2025
3.0.447 2,234 2/14/2025
3.0.446 6,356 2/13/2025
3.0.445 7,743 2/13/2025
3.0.444 8,526 2/12/2025
3.0.443 2,706 2/12/2025
3.0.442 1,144 2/12/2025
3.0.441 3,539 2/12/2025
3.0.440 1,118 2/12/2025
3.0.439 784 2/11/2025
3.0.438 12,998 2/11/2025
3.0.437 4,437 2/11/2025
3.0.436 666 2/11/2025
3.0.435 4,226 2/10/2025
3.0.434 162 2/10/2025
3.0.433 2,796 2/10/2025
3.0.432 159 2/10/2025
3.0.431 22,625 2/9/2025
3.0.430 12,981 2/9/2025
3.0.429 572 2/9/2025
3.0.428 435 2/8/2025
3.0.427 335 2/8/2025
3.0.426 431 2/8/2025
3.0.425 13,884 2/8/2025
3.0.424 4,504 2/7/2025
3.0.423 3,284 2/7/2025
3.0.422 3,675 2/7/2025
3.0.421 153 2/7/2025
3.0.420 595 2/7/2025
3.0.419 166 2/7/2025
3.0.418 3,285 2/7/2025
3.0.417 157 2/7/2025
3.0.416 23,609 2/7/2025
3.0.415 11,861 2/5/2025
3.0.414 1,331 2/5/2025
3.0.413 1,979 2/5/2025
3.0.412 376 2/5/2025
3.0.411 4,192 2/5/2025
3.0.410 9,163 2/5/2025
3.0.409 19,566 1/28/2025
3.0.408 1,430 1/28/2025
3.0.407 429 1/28/2025
3.0.406 4,655 1/28/2025
3.0.405 9,973 1/27/2025
3.0.404 2,596 1/27/2025
3.0.403 146 1/27/2025
3.0.402 9,722 1/27/2025
3.0.401 151 1/27/2025
3.0.400 10,655 1/26/2025
3.0.399 2,184 1/26/2025
3.0.398 1,683 1/26/2025
3.0.397 889 1/26/2025
3.0.396 382 1/26/2025
3.0.395 4,652 1/25/2025
3.0.394 10,133 1/25/2025
3.0.393 7,581 1/25/2025
3.0.392 769 1/25/2025
3.0.391 18,858 1/24/2025
3.0.390 3,552 1/24/2025
3.0.389 6,236 1/24/2025
3.0.388 7,241 1/24/2025
3.0.387 1,662 1/23/2025
3.0.386 1,921 1/23/2025
3.0.385 219 1/23/2025
3.0.384 16,665 1/22/2025
3.0.383 2,107 1/21/2025
3.0.382 587 1/21/2025
3.0.381 1,996 1/21/2025
3.0.380 1,941 1/21/2025
3.0.379 2,153 1/21/2025
3.0.378 1,651 1/21/2025
3.0.377 2,252 1/21/2025
3.0.376 162 1/21/2025
3.0.375 10,603 1/21/2025
3.0.374 2,976 1/21/2025
3.0.373 2,352 1/21/2025
3.0.372 4,681 1/21/2025
3.0.371 309 1/20/2025
3.0.370 12,056 1/20/2025
3.0.369 399 1/20/2025
3.0.368 2,499 1/20/2025
3.0.367 146 1/20/2025
3.0.366 2,205 1/20/2025
3.0.365 162 1/20/2025
3.0.364 7,590 1/19/2025
3.0.363 11,513 1/19/2025
3.0.362 11,272 1/19/2025
3.0.361 3,823 1/19/2025
3.0.360 1,044 1/19/2025
3.0.359 6,469 1/18/2025
3.0.358 204 1/18/2025
3.0.357 6,241 1/18/2025
3.0.356 457 1/18/2025
3.0.355 1,768 1/18/2025
3.0.354 11,331 1/17/2025
3.0.353 199 1/17/2025
3.0.352 14,729 1/16/2025
3.0.351 8,061 1/16/2025
3.0.350 1,469 1/16/2025
3.0.349 8,937 1/15/2025
3.0.348 7,755 1/15/2025
3.0.347 6,514 1/15/2025
3.0.346 6,778 1/15/2025
3.0.345 3,975 1/15/2025
3.0.344 5,582 1/15/2025
3.0.343 1,612 1/15/2025
3.0.342 4,734 1/14/2025
3.0.341 835 1/14/2025
3.0.340 204 1/14/2025
3.0.339 7,225 1/14/2025
3.0.338 1,869 1/14/2025
3.0.337 145 1/14/2025
3.0.336 1,919 1/14/2025
3.0.335 643 1/14/2025
3.0.334 13,297 1/13/2025
3.0.333 2,881 1/13/2025
3.0.332 5,552 1/13/2025
3.0.331 11,335 1/11/2025
3.0.330 4,712 1/11/2025
3.0.329 4,552 1/10/2025
3.0.328 9,722 1/10/2025
3.0.327 165 1/10/2025
3.0.326 877 1/10/2025
3.0.325 160 1/10/2025
3.0.324 159 1/10/2025
3.0.323 15,913 1/3/2025
3.0.322 1,699 1/3/2025
3.0.321 2,141 1/3/2025
3.0.320 681 1/3/2025
3.0.319 2,498 1/3/2025
3.0.318 5,758 1/2/2025
3.0.317 175 1/2/2025
3.0.316 3,827 1/2/2025
3.0.315 178 1/2/2025
3.0.314 5,413 1/2/2025
3.0.313 181 1/2/2025
3.0.312 17,194 1/1/2025
3.0.311 171 1/1/2025
3.0.310 249 12/31/2024
3.0.309 184 12/31/2024
3.0.308 6,275 12/31/2024
3.0.307 172 12/31/2024
3.0.306 292 12/31/2024
3.0.305 1,048 12/31/2024
3.0.304 174 12/31/2024
3.0.303 1,776 12/31/2024
3.0.302 615 12/31/2024
3.0.301 11,286 12/31/2024
3.0.300 7,895 12/31/2024
3.0.299 1,602 12/31/2024
3.0.298 5,477 12/31/2024
3.0.297 4,306 12/31/2024
3.0.296 150 12/31/2024
3.0.295 162 12/31/2024
3.0.294 20,236 12/28/2024
3.0.293 3,349 12/28/2024
3.0.292 1,965 12/28/2024
3.0.291 2,330 12/27/2024
3.0.290 14,659 12/24/2024
3.0.289 3,109 12/24/2024
3.0.288 2,928 12/24/2024
3.0.287 4,205 12/24/2024
3.0.286 4,479 12/24/2024
3.0.285 3,593 12/24/2024
3.0.284 2,844 12/24/2024
3.0.283 2,235 12/23/2024
3.0.282 5,092 12/23/2024
3.0.281 5,736 12/23/2024
3.0.280 2,285 12/23/2024
3.0.279 6,642 12/23/2024
3.0.278 512 12/23/2024
3.0.277 6,124 12/22/2024
3.0.276 9,867 12/22/2024
3.0.275 9,868 12/22/2024
3.0.274 13,516 12/21/2024
3.0.273 767 12/21/2024
3.0.272 6,381 12/21/2024
3.0.271 8,667 12/21/2024
3.0.270 1,653 12/21/2024
3.0.269 10,115 12/20/2024
3.0.268 19,931 12/18/2024
3.0.267 237 12/18/2024
3.0.266 12,699 12/17/2024
3.0.265 10,551 12/17/2024
3.0.264 587 12/16/2024
3.0.263 1,821 12/16/2024
3.0.262 13,885 12/10/2024
3.0.261 3,825 12/9/2024
3.0.260 6,338 12/9/2024
3.0.259 4,313 12/9/2024
3.0.258 12,312 12/6/2024
3.0.257 2,140 12/6/2024
3.0.256 3,777 12/6/2024
3.0.255 11,983 12/6/2024
3.0.254 300 12/6/2024
3.0.253 520 12/6/2024
3.0.252 1,473 12/6/2024
3.0.251 9,690 12/6/2024
3.0.250 181 12/6/2024
3.0.249 168 12/6/2024
3.0.248 7,307 12/5/2024
3.0.247 7,375 12/5/2024
3.0.246 5,386 12/5/2024
3.0.245 7,213 12/5/2024
3.0.244 984 12/5/2024
3.0.243 790 12/5/2024
3.0.242 8,720 12/4/2024
3.0.241 715 12/4/2024
3.0.240 1,838 12/4/2024
3.0.239 6,028 12/4/2024
3.0.238 6,438 12/3/2024
3.0.237 4,806 12/3/2024
3.0.236 6,617 12/3/2024
3.0.235 5,952 12/3/2024
3.0.234 8,081 12/2/2024
3.0.233 6,665 12/2/2024
3.0.232 4,012 12/2/2024
3.0.231 715 12/2/2024
3.0.230 7,396 12/1/2024
3.0.229 1,159 12/1/2024
3.0.228 5,293 12/1/2024
3.0.227 6,931 12/1/2024
3.0.226 7,365 11/29/2024
3.0.225 12,125 11/21/2024
3.0.224 10,385 11/20/2024
3.0.223 1,019 11/20/2024
3.0.222 1,817 11/20/2024
3.0.221 902 11/19/2024
3.0.220 9,035 11/19/2024
3.0.219 3,637 11/19/2024
3.0.218 164 11/19/2024
3.0.217 5,983 11/19/2024
3.0.216 152 11/19/2024
3.0.215 17,714 11/14/2024
3.0.214 1,956 11/14/2024
3.0.213 6,689 11/14/2024
3.0.212 1,484 11/14/2024
3.0.211 912 11/14/2024
3.0.210 7,201 11/14/2024
3.0.209 162 11/14/2024
3.0.208 5,891 11/14/2024
3.0.207 306 11/14/2024
2.1.206 20,116 11/13/2024
2.1.205 8,174 11/13/2024
2.1.204 19,496 11/9/2024
2.1.203 1,270 11/9/2024
2.1.202 3,516 11/9/2024
2.1.201 1,996 11/8/2024
2.1.200 1,631 11/8/2024
2.1.199 154 11/8/2024
2.1.198 2,967 11/8/2024
2.1.197 404 11/8/2024
2.1.196 7,175 11/8/2024
2.1.195 9,578 11/8/2024
2.1.194 21,962 11/1/2024
2.1.192 15,777 10/29/2024
2.1.191 16,638 10/28/2024
2.1.190 10,469 10/26/2024
2.1.189 16,650 10/22/2024
2.1.188 2,358 10/22/2024
2.1.187 1,794 10/22/2024
2.1.186 14,129 10/17/2024
2.1.185 10,233 10/15/2024
2.1.184 3,877 10/14/2024
2.1.183 11,323 10/11/2024
2.1.182 1,493 10/11/2024
2.1.181 836 10/11/2024
2.1.180 18,168 10/9/2024
2.1.179 1,490 10/8/2024
2.1.178 8,869 10/8/2024
2.1.177 1,353 10/8/2024
2.1.176 20,462 10/3/2024
2.1.175 6,205 10/3/2024
2.1.174 14,996 10/2/2024
2.1.173 4,504 10/2/2024
2.1.172 10,757 10/1/2024
2.1.171 2,675 10/1/2024
2.1.170 4,456 10/1/2024
2.1.169 12,478 9/29/2024
2.1.168 3,470 9/29/2024
2.1.167 2,621 9/29/2024
2.1.166 15,057 9/27/2024
2.1.165 8,489 9/27/2024
2.1.164 160 9/27/2024
2.1.163 469 9/27/2024
2.1.162 165 9/27/2024
2.1.161 12,639 9/26/2024
2.1.160 12,260 9/26/2024
2.1.159 11,206 9/26/2024
2.1.158 11,406 9/23/2024
2.1.157 5,177 9/23/2024
2.1.156 3,018 9/23/2024
2.1.155 3,130 9/23/2024
2.1.154 10,436 9/23/2024
2.1.153 1,156 9/23/2024
2.1.152 1,352 9/23/2024
2.1.151 150 9/23/2024
2.1.150 3,469 9/23/2024
2.1.149 19,219 9/17/2024
2.1.148 162 9/17/2024
2.1.147 626 9/17/2024
2.1.146 7,474 9/17/2024
2.1.145 6,437 9/17/2024
2.1.144 8,487 9/17/2024
2.1.143 171 9/17/2024
2.1.142 771 9/17/2024
2.1.141 1,794 9/17/2024
2.1.140 20,334 9/16/2024
2.1.139 11,466 9/12/2024
2.1.138 7,900 9/11/2024
2.1.137 4,783 9/11/2024
2.1.136 8,810 9/11/2024
2.1.135 7,248 9/11/2024
2.1.134 16,719 9/10/2024
2.1.133 3,542 9/10/2024
2.1.132 5,598 9/9/2024
2.1.131 5,763 9/9/2024
2.1.130 3,593 9/9/2024
2.1.129 1,846 9/9/2024
2.1.128 161 9/9/2024
2.1.127 155 9/9/2024
2.1.126 170 9/9/2024
2.1.125 25,562 9/6/2024
2.1.124 10,024 9/6/2024
2.1.123 5,192 9/5/2024
2.1.122 3,038 9/5/2024
2.1.121 6,296 9/5/2024
2.1.120 3,326 9/5/2024
2.1.119 169 9/5/2024
2.1.118 2,453 9/5/2024
2.1.117 8,991 9/5/2024
2.1.116 2,044 9/4/2024
2.1.115 18,691 9/3/2024
2.1.114 1,806 9/3/2024
2.1.113 7,801 9/3/2024
2.1.112 14,984 8/29/2024
2.1.111 10,580 8/26/2024
2.1.110 10,571 8/21/2024
2.1.109 6,100 8/21/2024
2.1.108 667 8/20/2024
2.1.107 7,461 8/20/2024
2.1.106 170 8/20/2024
2.1.105 7,560 8/20/2024
2.1.104 4,397 8/20/2024
2.1.103 14,284 8/15/2024
2.1.102 12,567 8/13/2024
2.1.101 12,213 8/6/2024
2.1.100 15,037 8/1/2024
2.1.99 917 8/1/2024
2.1.98 14,206 7/25/2024
2.1.97 1,833 7/25/2024
2.1.96 1,644 7/25/2024
2.1.95 1,078 7/24/2024
2.1.94 344 7/24/2024
2.1.93 15,652 7/20/2024
2.1.92 12,887 7/14/2024
2.1.91 3,593 7/14/2024
2.1.90 10,954 7/10/2024
2.1.89 340 7/10/2024
2.1.88 3,327 7/10/2024
2.1.87 2,986 7/10/2024
2.1.86 345 7/10/2024
2.1.85 345 7/10/2024
2.1.83 3,346 7/10/2024
2.1.82 4,787 7/9/2024
2.1.80 1,328 7/9/2024
2.1.79 1,561 7/9/2024
2.1.78 12,493 7/9/2024
2.1.77 4,941 7/9/2024
2.1.76 17,159 7/9/2024
2.1.75 177 7/9/2024
2.1.74 196 7/8/2024
2.1.73 165 7/8/2024
2.1.72 3,856 7/8/2024
2.1.71 161 7/8/2024
2.1.70 11,216 7/8/2024
2.1.69 3,768 7/7/2024
2.1.68 4,302 7/7/2024
2.1.67 1,012 7/7/2024
2.1.66 2,098 7/7/2024
2.1.65 4,874 7/7/2024
2.1.64 4,221 7/7/2024
2.1.63 171 7/7/2024
2.1.62 5,951 7/5/2024
2.1.61 117,831 5/25/2024
2.1.60 173 5/25/2024
2.1.59 761 5/25/2024
2.1.58 22,264 5/22/2024
2.1.57 172 5/22/2024
2.1.56 18,167 5/17/2024
2.1.55 25,549 4/30/2024
2.1.54 25,208 4/28/2024
2.1.53 167 4/28/2024
2.1.52 1,083 4/27/2024
2.1.51 167 4/27/2024
2.1.50 39,216 4/12/2024
2.1.49 2,133 4/12/2024
2.1.48 188 4/12/2024
2.1.47 60,035 3/18/2024
2.1.46 13,543 3/13/2024
2.1.45 3,500 3/13/2024
2.1.44 92,519 2/21/2024
2.1.43 3,985 2/21/2024
2.1.42 174 2/21/2024
2.1.41 31,930 2/16/2024
2.1.40 890 2/16/2024
2.1.39 34,904 2/9/2024
2.1.38 27,252 2/6/2024
2.1.37 187 2/6/2024
2.1.36 89,432 1/15/2024
2.1.35 1,217 1/15/2024
2.1.34 35,778 1/5/2024
2.1.33 3,337 1/5/2024
2.1.32 18,341 12/27/2023
2.1.31 1,734 12/27/2023
2.1.30 1,501 12/27/2023
2.1.29 11,019 12/25/2023
2.1.28 1,991 12/25/2023
2.1.27 863 12/25/2023
2.1.26 14,706 12/23/2023
2.1.25 207 12/23/2023
2.1.24 1,076 12/23/2023
2.1.23 28,456 12/9/2023
2.1.22 1,692 12/9/2023
2.1.21 355 12/9/2023
2.1.20 2,658 12/9/2023
2.1.19 14,954 12/4/2023
2.1.18 1,122 12/4/2023
2.1.17 7,865 11/26/2023
2.1.16 7,301 11/23/2023
2.1.15 499 11/23/2023
2.1.14 1,437 11/23/2023
2.1.13 13,192 11/19/2023
2.1.12 179 11/19/2023
2.1.11 1,715 11/18/2023
2.1.10 4,707 11/18/2023
2.1.9 2,574 11/18/2023
2.1.8 5,069 11/17/2023
2.1.7 1,350 11/17/2023
2.1.6 2,498 11/17/2023
2.1.5 1,291 11/17/2023
2.1.4 934 11/16/2023
2.1.3 284 11/16/2023
2.0.52 1,753 11/15/2023
2.0.51 3,497 11/15/2023
2.0.2 181 11/16/2023
2.0.1 199 11/16/2023
1.0.50 5,523 11/11/2023
1.0.49 182 11/11/2023
1.0.48 165 11/11/2023
1.0.47 1,686 11/9/2023
1.0.46 185 11/9/2023
1.0.45 6,885 11/6/2023
1.0.44 2,845 11/3/2023
1.0.43 2,287 11/2/2023
1.0.42 2,554 11/1/2023
1.0.41 9,741 10/18/2023
1.0.40 3,759 10/17/2023
1.0.39 1,644 10/16/2023
1.0.38 3,385 10/13/2023
1.0.37 221 10/13/2023
1.0.36 8,036 9/19/2023
1.0.35 2,652 9/18/2023
1.0.34 190 9/18/2023
1.0.33 9,875 8/30/2023
1.0.32 3,385 8/29/2023
1.0.31 5,388 8/24/2023
1.0.30 217 8/24/2023
1.0.29 5,162 8/17/2023
1.0.28 247 8/17/2023
1.0.27 9,456 8/7/2023
1.0.26 245 8/7/2023
1.0.25 9,739 7/10/2023
1.0.24 14,502 7/7/2023
1.0.23 243 7/7/2023
1.0.22 11,738 6/28/2023
1.0.21 54,490 5/24/2023
1.0.20 1,422 5/24/2023
1.0.19 550 5/23/2023
1.0.18 276 5/31/2023
1.0.17 3,238 5/23/2023
1.0.16 3,338 5/22/2023
1.0.15 7,420 5/17/2023
1.0.14 265 5/17/2023
1.0.13 6,802 4/28/2023
1.0.12 2,652 4/24/2023
1.0.11 1,176 4/21/2023
1.0.10 5,592 4/12/2023
1.0.9 1,346 4/11/2023
1.0.8 2,611 4/3/2023
1.0.7 319 4/3/2023
1.0.6 471 4/1/2023
1.0.5 2,294 3/23/2023
1.0.3 659 2/28/2023
1.0.2 581 2/16/2023