Soenneker.Extensions.Enumerable 3.0.566

Prefix Reserved
dotnet add package Soenneker.Extensions.Enumerable --version 3.0.566
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 3.0.566
                    
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.566" />
                    
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.566" />
                    
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.566
                    
#r "nuget: Soenneker.Extensions.Enumerable, 3.0.566"
                    
#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.566
                    
#: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.566
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=3.0.566
                    
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.566 61,317 9/9/2025
3.0.565 29,272 9/3/2025
3.0.564 3,055 9/3/2025
3.0.563 161 9/3/2025
3.0.562 50,099 8/11/2025
3.0.561 6,915 8/11/2025
3.0.560 500 8/11/2025
3.0.559 34,658 8/5/2025
3.0.558 37,820 7/8/2025
3.0.557 40,716 6/27/2025
3.0.556 3,371 6/27/2025
3.0.555 320 6/27/2025
3.0.554 45,943 6/10/2025
3.0.553 32,683 5/27/2025
3.0.552 2,133 5/27/2025
3.0.551 1,786 5/27/2025
3.0.550 31,342 5/23/2025
3.0.549 3,507 5/23/2025
3.0.548 3,408 5/22/2025
3.0.547 30,021 5/14/2025
3.0.546 18,127 5/8/2025
3.0.545 2,754 5/7/2025
3.0.544 342 5/7/2025
3.0.543 25,539 5/5/2025
3.0.542 2,904 5/5/2025
3.0.541 5,273 5/5/2025
3.0.540 186 5/5/2025
3.0.539 36,835 4/8/2025
3.0.538 3,980 4/8/2025
3.0.537 800 4/8/2025
3.0.536 4,107 4/8/2025
3.0.535 221 4/8/2025
3.0.534 6,397 4/8/2025
3.0.533 944 4/8/2025
3.0.532 10,192 4/8/2025
3.0.531 12,439 4/8/2025
3.0.530 2,661 4/7/2025
3.0.529 6,212 4/7/2025
3.0.528 2,070 4/7/2025
3.0.527 5,137 4/7/2025
3.0.526 13,932 4/7/2025
3.0.525 4,019 4/7/2025
3.0.524 930 4/7/2025
3.0.523 16,048 4/7/2025
3.0.522 3,046 4/7/2025
3.0.521 5,350 4/6/2025
3.0.520 354 4/6/2025
3.0.519 2,508 4/6/2025
3.0.518 3,041 4/6/2025
3.0.517 3,662 4/6/2025
3.0.516 157 4/6/2025
3.0.515 605 4/6/2025
3.0.514 168 4/6/2025
3.0.513 760 4/5/2025
3.0.512 4,921 4/5/2025
3.0.511 2,435 4/5/2025
3.0.510 1,827 4/5/2025
3.0.509 251 4/5/2025
3.0.508 325 4/5/2025
3.0.507 406 4/5/2025
3.0.506 4,576 4/4/2025
3.0.505 183 4/4/2025
3.0.504 4,837 4/4/2025
3.0.503 60,031 4/4/2025
3.0.502 14,099 4/1/2025
3.0.501 7,785 4/1/2025
3.0.500 11,054 3/31/2025
3.0.499 4,819 3/31/2025
3.0.498 10,986 3/31/2025
3.0.497 13,595 3/29/2025
3.0.496 3,590 3/29/2025
3.0.495 11,210 3/27/2025
3.0.494 7,168 3/25/2025
3.0.493 2,707 3/25/2025
3.0.492 18,184 3/21/2025
3.0.491 17,070 3/18/2025
3.0.490 8,478 3/18/2025
3.0.489 12,711 3/15/2025
3.0.488 3,994 3/15/2025
3.0.487 14,293 3/12/2025
3.0.486 5,265 3/12/2025
3.0.485 753 3/12/2025
3.0.484 5,313 3/11/2025
3.0.483 542 3/11/2025
3.0.482 2,075 3/11/2025
3.0.481 3,976 3/11/2025
3.0.480 5,755 3/11/2025
3.0.479 5,183 3/11/2025
3.0.478 3,452 3/11/2025
3.0.477 20,609 3/7/2025
3.0.476 6,130 3/7/2025
3.0.475 12,121 3/2/2025
3.0.474 4,604 3/2/2025
3.0.473 1,109 3/2/2025
3.0.472 8,779 3/2/2025
3.0.471 8,232 3/1/2025
3.0.470 360 3/1/2025
3.0.469 7,825 3/1/2025
3.0.468 154 3/1/2025
3.0.467 2,816 3/1/2025
3.0.466 21,142 2/26/2025
3.0.465 1,880 2/25/2025
3.0.464 5,262 2/25/2025
3.0.463 3,366 2/25/2025
3.0.462 1,716 2/25/2025
3.0.461 19,814 2/23/2025
3.0.460 3,446 2/22/2025
3.0.459 15,746 2/22/2025
3.0.458 4,635 2/22/2025
3.0.457 5,673 2/22/2025
3.0.456 867 2/21/2025
3.0.455 8,970 2/21/2025
3.0.454 19,703 2/19/2025
3.0.453 7,897 2/18/2025
3.0.452 1,760 2/18/2025
3.0.451 665 2/18/2025
3.0.450 9,619 2/18/2025
3.0.449 151 2/18/2025
3.0.448 22,009 2/14/2025
3.0.447 2,305 2/14/2025
3.0.446 6,538 2/13/2025
3.0.445 7,930 2/13/2025
3.0.444 8,749 2/12/2025
3.0.443 2,767 2/12/2025
3.0.442 1,163 2/12/2025
3.0.441 3,623 2/12/2025
3.0.440 1,148 2/12/2025
3.0.439 802 2/11/2025
3.0.438 13,245 2/11/2025
3.0.437 4,567 2/11/2025
3.0.436 676 2/11/2025
3.0.435 4,322 2/10/2025
3.0.434 162 2/10/2025
3.0.433 2,847 2/10/2025
3.0.432 159 2/10/2025
3.0.431 23,290 2/9/2025
3.0.430 13,234 2/9/2025
3.0.429 572 2/9/2025
3.0.428 435 2/8/2025
3.0.427 336 2/8/2025
3.0.426 431 2/8/2025
3.0.425 14,390 2/8/2025
3.0.424 4,631 2/7/2025
3.0.423 3,398 2/7/2025
3.0.422 3,725 2/7/2025
3.0.421 153 2/7/2025
3.0.420 598 2/7/2025
3.0.419 167 2/7/2025
3.0.418 3,359 2/7/2025
3.0.417 157 2/7/2025
3.0.416 24,188 2/7/2025
3.0.415 12,191 2/5/2025
3.0.414 1,377 2/5/2025
3.0.413 2,044 2/5/2025
3.0.412 400 2/5/2025
3.0.411 4,322 2/5/2025
3.0.410 9,466 2/5/2025
3.0.409 20,072 1/28/2025
3.0.408 1,459 1/28/2025
3.0.407 435 1/28/2025
3.0.406 4,824 1/28/2025
3.0.405 10,268 1/27/2025
3.0.404 2,675 1/27/2025
3.0.403 147 1/27/2025
3.0.402 10,013 1/27/2025
3.0.401 152 1/27/2025
3.0.400 10,967 1/26/2025
3.0.399 2,217 1/26/2025
3.0.398 1,708 1/26/2025
3.0.397 928 1/26/2025
3.0.396 382 1/26/2025
3.0.395 4,762 1/25/2025
3.0.394 10,437 1/25/2025
3.0.393 7,812 1/25/2025
3.0.392 793 1/25/2025
3.0.391 19,449 1/24/2025
3.0.390 3,658 1/24/2025
3.0.389 6,475 1/24/2025
3.0.388 7,397 1/24/2025
3.0.387 1,692 1/23/2025
3.0.386 1,999 1/23/2025
3.0.385 219 1/23/2025
3.0.384 17,195 1/22/2025
3.0.383 2,175 1/21/2025
3.0.382 600 1/21/2025
3.0.381 2,041 1/21/2025
3.0.380 1,992 1/21/2025
3.0.379 2,219 1/21/2025
3.0.378 1,680 1/21/2025
3.0.377 2,318 1/21/2025
3.0.376 162 1/21/2025
3.0.375 10,982 1/21/2025
3.0.374 3,056 1/21/2025
3.0.373 2,411 1/21/2025
3.0.372 4,836 1/21/2025
3.0.371 310 1/20/2025
3.0.370 12,418 1/20/2025
3.0.369 418 1/20/2025
3.0.368 2,586 1/20/2025
3.0.367 146 1/20/2025
3.0.366 2,228 1/20/2025
3.0.365 162 1/20/2025
3.0.364 7,835 1/19/2025
3.0.363 12,004 1/19/2025
3.0.362 11,571 1/19/2025
3.0.361 3,913 1/19/2025
3.0.360 1,086 1/19/2025
3.0.359 6,600 1/18/2025
3.0.358 205 1/18/2025
3.0.357 6,375 1/18/2025
3.0.356 465 1/18/2025
3.0.355 1,797 1/18/2025
3.0.354 11,602 1/17/2025
3.0.353 199 1/17/2025
3.0.352 15,248 1/16/2025
3.0.351 8,311 1/16/2025
3.0.350 1,487 1/16/2025
3.0.349 9,227 1/15/2025
3.0.348 8,015 1/15/2025
3.0.347 6,690 1/15/2025
3.0.346 6,997 1/15/2025
3.0.345 4,155 1/15/2025
3.0.344 5,797 1/15/2025
3.0.343 1,681 1/15/2025
3.0.342 4,922 1/14/2025
3.0.341 868 1/14/2025
3.0.340 204 1/14/2025
3.0.339 7,468 1/14/2025
3.0.338 1,895 1/14/2025
3.0.337 145 1/14/2025
3.0.336 1,929 1/14/2025
3.0.335 682 1/14/2025
3.0.334 13,692 1/13/2025
3.0.333 2,947 1/13/2025
3.0.332 5,711 1/13/2025
3.0.331 11,708 1/11/2025
3.0.330 4,832 1/11/2025
3.0.329 4,678 1/10/2025
3.0.328 10,046 1/10/2025
3.0.327 165 1/10/2025
3.0.326 907 1/10/2025
3.0.325 160 1/10/2025
3.0.324 159 1/10/2025
3.0.323 16,367 1/3/2025
3.0.322 1,749 1/3/2025
3.0.321 2,205 1/3/2025
3.0.320 685 1/3/2025
3.0.319 2,608 1/3/2025
3.0.318 5,908 1/2/2025
3.0.317 175 1/2/2025
3.0.316 3,952 1/2/2025
3.0.315 179 1/2/2025
3.0.314 5,540 1/2/2025
3.0.313 181 1/2/2025
3.0.312 17,652 1/1/2025
3.0.311 172 1/1/2025
3.0.310 255 12/31/2024
3.0.309 185 12/31/2024
3.0.308 6,537 12/31/2024
3.0.307 172 12/31/2024
3.0.306 298 12/31/2024
3.0.305 1,125 12/31/2024
3.0.304 174 12/31/2024
3.0.303 1,822 12/31/2024
3.0.302 621 12/31/2024
3.0.301 11,488 12/31/2024
3.0.300 8,192 12/31/2024
3.0.299 1,621 12/31/2024
3.0.298 5,605 12/31/2024
3.0.297 4,473 12/31/2024
3.0.296 151 12/31/2024
3.0.295 162 12/31/2024
3.0.294 21,028 12/28/2024
3.0.293 3,493 12/28/2024
3.0.292 2,027 12/28/2024
3.0.291 2,423 12/27/2024
3.0.290 15,151 12/24/2024
3.0.289 3,208 12/24/2024
3.0.288 3,017 12/24/2024
3.0.287 4,343 12/24/2024
3.0.286 4,586 12/24/2024
3.0.285 3,712 12/24/2024
3.0.284 2,931 12/24/2024
3.0.283 2,295 12/23/2024
3.0.282 5,227 12/23/2024
3.0.281 6,010 12/23/2024
3.0.280 2,357 12/23/2024
3.0.279 6,932 12/23/2024
3.0.278 522 12/23/2024
3.0.277 6,383 12/22/2024
3.0.276 10,236 12/22/2024
3.0.275 10,165 12/22/2024
3.0.274 13,923 12/21/2024
3.0.273 805 12/21/2024
3.0.272 6,629 12/21/2024
3.0.271 8,969 12/21/2024
3.0.270 1,692 12/21/2024
3.0.269 10,545 12/20/2024
3.0.268 20,477 12/18/2024
3.0.267 238 12/18/2024
3.0.266 12,970 12/17/2024
3.0.265 10,999 12/17/2024
3.0.264 611 12/16/2024
3.0.263 1,858 12/16/2024
3.0.262 14,326 12/10/2024
3.0.261 3,985 12/9/2024
3.0.260 6,517 12/9/2024
3.0.259 4,485 12/9/2024
3.0.258 12,744 12/6/2024
3.0.257 2,241 12/6/2024
3.0.256 3,926 12/6/2024
3.0.255 12,427 12/6/2024
3.0.254 300 12/6/2024
3.0.253 547 12/6/2024
3.0.252 1,516 12/6/2024
3.0.251 10,098 12/6/2024
3.0.250 181 12/6/2024
3.0.249 168 12/6/2024
3.0.248 7,611 12/5/2024
3.0.247 7,660 12/5/2024
3.0.246 5,538 12/5/2024
3.0.245 7,347 12/5/2024
3.0.244 1,046 12/5/2024
3.0.243 796 12/5/2024
3.0.242 9,119 12/4/2024
3.0.241 718 12/4/2024
3.0.240 1,887 12/4/2024
3.0.239 6,184 12/4/2024
3.0.238 6,711 12/3/2024
3.0.237 4,926 12/3/2024
3.0.236 6,680 12/3/2024
3.0.235 6,146 12/3/2024
3.0.234 8,405 12/2/2024
3.0.233 6,852 12/2/2024
3.0.232 4,166 12/2/2024
3.0.231 746 12/2/2024
3.0.230 7,674 12/1/2024
3.0.229 1,174 12/1/2024
3.0.228 5,577 12/1/2024
3.0.227 7,192 12/1/2024
3.0.226 7,625 11/29/2024
3.0.225 12,533 11/21/2024
3.0.224 10,797 11/20/2024
3.0.223 1,055 11/20/2024
3.0.222 1,874 11/20/2024
3.0.221 949 11/19/2024
3.0.220 9,435 11/19/2024
3.0.219 3,743 11/19/2024
3.0.218 166 11/19/2024
3.0.217 6,190 11/19/2024
3.0.216 153 11/19/2024
3.0.215 18,428 11/14/2024
3.0.214 2,042 11/14/2024
3.0.213 6,957 11/14/2024
3.0.212 1,561 11/14/2024
3.0.211 943 11/14/2024
3.0.210 7,447 11/14/2024
3.0.209 162 11/14/2024
3.0.208 6,138 11/14/2024
3.0.207 315 11/14/2024
2.1.206 20,750 11/13/2024
2.1.205 8,451 11/13/2024
2.1.204 20,130 11/9/2024
2.1.203 1,304 11/9/2024
2.1.202 3,632 11/9/2024
2.1.201 2,059 11/8/2024
2.1.200 1,697 11/8/2024
2.1.199 154 11/8/2024
2.1.198 3,097 11/8/2024
2.1.197 414 11/8/2024
2.1.196 7,442 11/8/2024
2.1.195 9,977 11/8/2024
2.1.194 22,761 11/1/2024
2.1.192 16,381 10/29/2024
2.1.191 17,203 10/28/2024
2.1.190 10,815 10/26/2024
2.1.189 17,131 10/22/2024
2.1.188 2,434 10/22/2024
2.1.187 1,861 10/22/2024
2.1.186 14,705 10/17/2024
2.1.185 10,580 10/15/2024
2.1.184 4,056 10/14/2024
2.1.183 11,786 10/11/2024
2.1.182 1,510 10/11/2024
2.1.181 867 10/11/2024
2.1.180 18,889 10/9/2024
2.1.179 1,506 10/8/2024
2.1.178 9,194 10/8/2024
2.1.177 1,399 10/8/2024
2.1.176 21,295 10/3/2024
2.1.175 6,477 10/3/2024
2.1.174 15,641 10/2/2024
2.1.173 4,702 10/2/2024
2.1.172 11,263 10/1/2024
2.1.171 2,758 10/1/2024
2.1.170 4,632 10/1/2024
2.1.169 13,028 9/29/2024
2.1.168 3,656 9/29/2024
2.1.167 2,700 9/29/2024
2.1.166 15,645 9/27/2024
2.1.165 8,839 9/27/2024
2.1.164 160 9/27/2024
2.1.163 481 9/27/2024
2.1.162 165 9/27/2024
2.1.161 13,084 9/26/2024
2.1.160 12,835 9/26/2024
2.1.159 11,663 9/26/2024
2.1.158 11,843 9/23/2024
2.1.157 5,384 9/23/2024
2.1.156 3,162 9/23/2024
2.1.155 3,260 9/23/2024
2.1.154 10,882 9/23/2024
2.1.153 1,240 9/23/2024
2.1.152 1,413 9/23/2024
2.1.151 150 9/23/2024
2.1.150 3,603 9/23/2024
2.1.149 19,998 9/17/2024
2.1.148 162 9/17/2024
2.1.147 630 9/17/2024
2.1.146 7,763 9/17/2024
2.1.145 6,636 9/17/2024
2.1.144 8,910 9/17/2024
2.1.143 171 9/17/2024
2.1.142 787 9/17/2024
2.1.141 1,837 9/17/2024
2.1.140 21,254 9/16/2024
2.1.139 11,898 9/12/2024
2.1.138 8,210 9/11/2024
2.1.137 4,910 9/11/2024
2.1.136 9,169 9/11/2024
2.1.135 7,429 9/11/2024
2.1.134 17,346 9/10/2024
2.1.133 3,677 9/10/2024
2.1.132 5,737 9/9/2024
2.1.131 5,986 9/9/2024
2.1.130 3,640 9/9/2024
2.1.129 1,877 9/9/2024
2.1.128 161 9/9/2024
2.1.127 155 9/9/2024
2.1.126 171 9/9/2024
2.1.125 26,535 9/6/2024
2.1.124 10,456 9/6/2024
2.1.123 5,378 9/5/2024
2.1.122 3,127 9/5/2024
2.1.121 6,542 9/5/2024
2.1.120 3,418 9/5/2024
2.1.119 169 9/5/2024
2.1.118 2,569 9/5/2024
2.1.117 9,349 9/5/2024
2.1.116 2,089 9/4/2024
2.1.115 19,422 9/3/2024
2.1.114 1,861 9/3/2024
2.1.113 8,048 9/3/2024
2.1.112 15,549 8/29/2024
2.1.111 11,067 8/26/2024
2.1.110 10,953 8/21/2024
2.1.109 6,336 8/21/2024
2.1.108 675 8/20/2024
2.1.107 7,786 8/20/2024
2.1.106 170 8/20/2024
2.1.105 7,808 8/20/2024
2.1.104 4,580 8/20/2024
2.1.103 14,815 8/15/2024
2.1.102 13,139 8/13/2024
2.1.101 12,539 8/6/2024
2.1.100 15,549 8/1/2024
2.1.99 950 8/1/2024
2.1.98 14,844 7/25/2024
2.1.97 1,884 7/25/2024
2.1.96 1,697 7/25/2024
2.1.95 1,112 7/24/2024
2.1.94 348 7/24/2024
2.1.93 16,315 7/20/2024
2.1.92 13,285 7/14/2024
2.1.91 3,696 7/14/2024
2.1.90 11,313 7/10/2024
2.1.89 349 7/10/2024
2.1.88 3,443 7/10/2024
2.1.87 3,084 7/10/2024
2.1.86 367 7/10/2024
2.1.85 358 7/10/2024
2.1.83 3,486 7/10/2024
2.1.82 4,885 7/9/2024
2.1.80 1,344 7/9/2024
2.1.79 1,561 7/9/2024
2.1.78 12,780 7/9/2024
2.1.77 5,150 7/9/2024
2.1.76 17,470 7/9/2024
2.1.75 177 7/9/2024
2.1.74 197 7/8/2024
2.1.73 165 7/8/2024
2.1.72 4,004 7/8/2024
2.1.71 162 7/8/2024
2.1.70 11,572 7/8/2024
2.1.69 3,882 7/7/2024
2.1.68 4,365 7/7/2024
2.1.67 1,037 7/7/2024
2.1.66 2,181 7/7/2024
2.1.65 5,008 7/7/2024
2.1.64 4,378 7/7/2024
2.1.63 172 7/7/2024
2.1.62 6,085 7/5/2024
2.1.61 121,443 5/25/2024
2.1.60 173 5/25/2024
2.1.59 814 5/25/2024
2.1.58 22,841 5/22/2024
2.1.57 173 5/22/2024
2.1.56 18,655 5/17/2024
2.1.55 26,363 4/30/2024
2.1.54 25,934 4/28/2024
2.1.53 169 4/28/2024
2.1.52 1,090 4/27/2024
2.1.51 168 4/27/2024
2.1.50 40,318 4/12/2024
2.1.49 2,149 4/12/2024
2.1.48 188 4/12/2024
2.1.47 61,848 3/18/2024
2.1.46 13,975 3/13/2024
2.1.45 3,546 3/13/2024
2.1.44 95,616 2/21/2024
2.1.43 4,112 2/21/2024
2.1.42 174 2/21/2024
2.1.41 33,034 2/16/2024
2.1.40 914 2/16/2024
2.1.39 35,966 2/9/2024
2.1.38 28,035 2/6/2024
2.1.37 187 2/6/2024
2.1.36 92,005 1/15/2024
2.1.35 1,250 1/15/2024
2.1.34 36,442 1/5/2024
2.1.33 3,410 1/5/2024
2.1.32 18,573 12/27/2023
2.1.31 1,770 12/27/2023
2.1.30 1,534 12/27/2023
2.1.29 11,195 12/25/2023
2.1.28 2,016 12/25/2023
2.1.27 864 12/25/2023
2.1.26 14,931 12/23/2023
2.1.25 207 12/23/2023
2.1.24 1,080 12/23/2023
2.1.23 28,951 12/9/2023
2.1.22 1,732 12/9/2023
2.1.21 355 12/9/2023
2.1.20 2,728 12/9/2023
2.1.19 15,271 12/4/2023
2.1.18 1,144 12/4/2023
2.1.17 8,017 11/26/2023
2.1.16 7,429 11/23/2023
2.1.15 519 11/23/2023
2.1.14 1,460 11/23/2023
2.1.13 13,473 11/19/2023
2.1.12 180 11/19/2023
2.1.11 1,751 11/18/2023
2.1.10 4,781 11/18/2023
2.1.9 2,617 11/18/2023
2.1.8 5,166 11/17/2023
2.1.7 1,350 11/17/2023
2.1.6 2,585 11/17/2023
2.1.5 1,323 11/17/2023
2.1.4 963 11/16/2023
2.1.3 284 11/16/2023
2.0.52 1,786 11/15/2023
2.0.51 3,639 11/15/2023
2.0.2 182 11/16/2023
2.0.1 199 11/16/2023
1.0.50 5,625 11/11/2023
1.0.49 183 11/11/2023
1.0.48 165 11/11/2023
1.0.47 1,710 11/9/2023
1.0.46 185 11/9/2023
1.0.45 7,025 11/6/2023
1.0.44 2,870 11/3/2023
1.0.43 2,327 11/2/2023
1.0.42 2,602 11/1/2023
1.0.41 9,896 10/18/2023
1.0.40 3,810 10/17/2023
1.0.39 1,684 10/16/2023
1.0.38 3,420 10/13/2023
1.0.37 222 10/13/2023
1.0.36 8,165 9/19/2023
1.0.35 2,687 9/18/2023
1.0.34 190 9/18/2023
1.0.33 10,038 8/30/2023
1.0.32 3,444 8/29/2023
1.0.31 5,499 8/24/2023
1.0.30 217 8/24/2023
1.0.29 5,168 8/17/2023
1.0.28 247 8/17/2023
1.0.27 9,471 8/7/2023
1.0.26 246 8/7/2023
1.0.25 9,740 7/10/2023
1.0.24 14,992 7/7/2023
1.0.23 244 7/7/2023
1.0.22 11,874 6/28/2023
1.0.21 55,264 5/24/2023
1.0.20 1,452 5/24/2023
1.0.19 550 5/23/2023
1.0.18 276 5/31/2023
1.0.17 3,288 5/23/2023
1.0.16 3,347 5/22/2023
1.0.15 7,538 5/17/2023
1.0.14 265 5/17/2023
1.0.13 6,886 4/28/2023
1.0.12 2,705 4/24/2023
1.0.11 1,196 4/21/2023
1.0.10 5,738 4/12/2023
1.0.9 1,365 4/11/2023
1.0.8 2,665 4/3/2023
1.0.7 319 4/3/2023
1.0.6 473 4/1/2023
1.0.5 2,295 3/23/2023
1.0.3 659 2/28/2023
1.0.2 581 2/16/2023