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 20,647 9/9/2025
3.0.565 17,594 9/3/2025
3.0.564 1,794 9/3/2025
3.0.563 155 9/3/2025
3.0.562 30,490 8/11/2025
3.0.561 3,943 8/11/2025
3.0.560 337 8/11/2025
3.0.559 20,919 8/5/2025
3.0.558 23,396 7/8/2025
3.0.557 28,661 6/27/2025
3.0.556 2,259 6/27/2025
3.0.555 234 6/27/2025
3.0.554 31,420 6/10/2025
3.0.553 22,676 5/27/2025
3.0.552 1,444 5/27/2025
3.0.551 1,224 5/27/2025
3.0.550 21,164 5/23/2025
3.0.549 2,356 5/23/2025
3.0.548 2,316 5/22/2025
3.0.547 20,366 5/14/2025
3.0.546 12,609 5/8/2025
3.0.545 1,882 5/7/2025
3.0.544 282 5/7/2025
3.0.543 17,633 5/5/2025
3.0.542 1,974 5/5/2025
3.0.541 3,559 5/5/2025
3.0.540 171 5/5/2025
3.0.539 25,283 4/8/2025
3.0.538 2,695 4/8/2025
3.0.537 583 4/8/2025
3.0.536 2,789 4/8/2025
3.0.535 194 4/8/2025
3.0.534 4,213 4/8/2025
3.0.533 729 4/8/2025
3.0.532 6,781 4/8/2025
3.0.531 7,955 4/8/2025
3.0.530 1,743 4/7/2025
3.0.529 4,097 4/7/2025
3.0.528 1,349 4/7/2025
3.0.527 3,343 4/7/2025
3.0.526 8,824 4/7/2025
3.0.525 2,632 4/7/2025
3.0.524 648 4/7/2025
3.0.523 10,024 4/7/2025
3.0.522 2,052 4/7/2025
3.0.521 3,484 4/6/2025
3.0.520 290 4/6/2025
3.0.519 1,703 4/6/2025
3.0.518 1,993 4/6/2025
3.0.517 2,397 4/6/2025
3.0.516 143 4/6/2025
3.0.515 416 4/6/2025
3.0.514 152 4/6/2025
3.0.513 518 4/5/2025
3.0.512 3,342 4/5/2025
3.0.511 1,645 4/5/2025
3.0.510 1,208 4/5/2025
3.0.509 198 4/5/2025
3.0.508 262 4/5/2025
3.0.507 299 4/5/2025
3.0.506 3,086 4/4/2025
3.0.505 164 4/4/2025
3.0.504 3,207 4/4/2025
3.0.503 40,683 4/4/2025
3.0.502 9,035 4/1/2025
3.0.501 4,909 4/1/2025
3.0.500 7,038 3/31/2025
3.0.499 3,098 3/31/2025
3.0.498 7,037 3/31/2025
3.0.497 8,585 3/29/2025
3.0.496 2,282 3/29/2025
3.0.495 7,101 3/27/2025
3.0.494 4,765 3/25/2025
3.0.493 1,914 3/25/2025
3.0.492 11,614 3/21/2025
3.0.491 11,610 3/18/2025
3.0.490 5,424 3/18/2025
3.0.489 8,102 3/15/2025
3.0.488 2,515 3/15/2025
3.0.487 9,179 3/12/2025
3.0.486 3,402 3/12/2025
3.0.485 573 3/12/2025
3.0.484 3,449 3/11/2025
3.0.483 416 3/11/2025
3.0.482 1,363 3/11/2025
3.0.481 2,636 3/11/2025
3.0.480 3,890 3/11/2025
3.0.479 3,393 3/11/2025
3.0.478 2,202 3/11/2025
3.0.477 13,379 3/7/2025
3.0.476 4,011 3/7/2025
3.0.475 8,141 3/2/2025
3.0.474 2,997 3/2/2025
3.0.473 722 3/2/2025
3.0.472 5,675 3/2/2025
3.0.471 5,202 3/1/2025
3.0.470 276 3/1/2025
3.0.469 4,943 3/1/2025
3.0.468 138 3/1/2025
3.0.467 1,862 3/1/2025
3.0.466 13,702 2/26/2025
3.0.465 1,238 2/25/2025
3.0.464 3,383 2/25/2025
3.0.463 2,235 2/25/2025
3.0.462 1,111 2/25/2025
3.0.461 12,730 2/23/2025
3.0.460 2,277 2/22/2025
3.0.459 10,164 2/22/2025
3.0.458 2,971 2/22/2025
3.0.457 3,587 2/22/2025
3.0.456 590 2/21/2025
3.0.455 5,625 2/21/2025
3.0.454 12,667 2/19/2025
3.0.453 5,233 2/18/2025
3.0.452 1,145 2/18/2025
3.0.451 487 2/18/2025
3.0.450 6,107 2/18/2025
3.0.449 135 2/18/2025
3.0.448 14,913 2/14/2025
3.0.447 1,519 2/14/2025
3.0.446 4,193 2/13/2025
3.0.445 5,083 2/13/2025
3.0.444 5,852 2/12/2025
3.0.443 1,835 2/12/2025
3.0.442 823 2/12/2025
3.0.441 2,289 2/12/2025
3.0.440 817 2/12/2025
3.0.439 555 2/11/2025
3.0.438 8,633 2/11/2025
3.0.437 2,938 2/11/2025
3.0.436 498 2/11/2025
3.0.435 2,807 2/10/2025
3.0.434 146 2/10/2025
3.0.433 1,983 2/10/2025
3.0.432 154 2/10/2025
3.0.431 14,913 2/9/2025
3.0.430 8,703 2/9/2025
3.0.429 419 2/9/2025
3.0.428 301 2/8/2025
3.0.427 259 2/8/2025
3.0.426 312 2/8/2025
3.0.425 9,144 2/8/2025
3.0.424 3,013 2/7/2025
3.0.423 2,052 2/7/2025
3.0.422 2,557 2/7/2025
3.0.421 138 2/7/2025
3.0.420 460 2/7/2025
3.0.419 151 2/7/2025
3.0.418 2,140 2/7/2025
3.0.417 140 2/7/2025
3.0.416 15,814 2/7/2025
3.0.415 7,845 2/5/2025
3.0.414 905 2/5/2025
3.0.413 1,325 2/5/2025
3.0.412 305 2/5/2025
3.0.411 2,736 2/5/2025
3.0.410 5,953 2/5/2025
3.0.409 13,346 1/28/2025
3.0.408 952 1/28/2025
3.0.407 316 1/28/2025
3.0.406 2,915 1/28/2025
3.0.405 6,131 1/27/2025
3.0.404 1,746 1/27/2025
3.0.403 133 1/27/2025
3.0.402 5,944 1/27/2025
3.0.401 136 1/27/2025
3.0.400 6,765 1/26/2025
3.0.399 1,430 1/26/2025
3.0.398 1,102 1/26/2025
3.0.397 625 1/26/2025
3.0.396 294 1/26/2025
3.0.395 3,002 1/25/2025
3.0.394 6,471 1/25/2025
3.0.393 4,889 1/25/2025
3.0.392 502 1/25/2025
3.0.391 11,972 1/24/2025
3.0.390 2,185 1/24/2025
3.0.389 3,884 1/24/2025
3.0.388 4,494 1/24/2025
3.0.387 1,027 1/23/2025
3.0.386 1,254 1/23/2025
3.0.385 174 1/23/2025
3.0.384 10,642 1/22/2025
3.0.383 1,376 1/21/2025
3.0.382 449 1/21/2025
3.0.381 1,318 1/21/2025
3.0.380 1,296 1/21/2025
3.0.379 1,437 1/21/2025
3.0.378 1,165 1/21/2025
3.0.377 1,568 1/21/2025
3.0.376 148 1/21/2025
3.0.375 6,853 1/21/2025
3.0.374 1,961 1/21/2025
3.0.373 1,655 1/21/2025
3.0.372 2,897 1/21/2025
3.0.371 233 1/20/2025
3.0.370 7,841 1/20/2025
3.0.369 306 1/20/2025
3.0.368 1,564 1/20/2025
3.0.367 132 1/20/2025
3.0.366 1,459 1/20/2025
3.0.365 147 1/20/2025
3.0.364 4,968 1/19/2025
3.0.363 7,191 1/19/2025
3.0.362 7,114 1/19/2025
3.0.361 2,419 1/19/2025
3.0.360 725 1/19/2025
3.0.359 4,120 1/18/2025
3.0.358 181 1/18/2025
3.0.357 3,920 1/18/2025
3.0.356 306 1/18/2025
3.0.355 1,214 1/18/2025
3.0.354 7,101 1/17/2025
3.0.353 171 1/17/2025
3.0.352 9,283 1/16/2025
3.0.351 5,077 1/16/2025
3.0.350 931 1/16/2025
3.0.349 5,793 1/15/2025
3.0.348 4,789 1/15/2025
3.0.347 4,135 1/15/2025
3.0.346 4,337 1/15/2025
3.0.345 2,646 1/15/2025
3.0.344 3,369 1/15/2025
3.0.343 903 1/15/2025
3.0.342 2,849 1/14/2025
3.0.341 499 1/14/2025
3.0.340 160 1/14/2025
3.0.339 3,977 1/14/2025
3.0.338 1,107 1/14/2025
3.0.337 130 1/14/2025
3.0.336 1,374 1/14/2025
3.0.335 432 1/14/2025
3.0.334 7,976 1/13/2025
3.0.333 1,832 1/13/2025
3.0.332 3,407 1/13/2025
3.0.331 6,913 1/11/2025
3.0.330 2,819 1/11/2025
3.0.329 3,093 1/10/2025
3.0.328 6,175 1/10/2025
3.0.327 152 1/10/2025
3.0.326 553 1/10/2025
3.0.325 143 1/10/2025
3.0.324 135 1/10/2025
3.0.323 10,000 1/3/2025
3.0.322 1,175 1/3/2025
3.0.321 1,474 1/3/2025
3.0.320 449 1/3/2025
3.0.319 1,622 1/3/2025
3.0.318 3,686 1/2/2025
3.0.317 148 1/2/2025
3.0.316 2,493 1/2/2025
3.0.315 161 1/2/2025
3.0.314 3,316 1/2/2025
3.0.313 165 1/2/2025
3.0.312 10,947 1/1/2025
3.0.311 157 1/1/2025
3.0.310 207 12/31/2024
3.0.309 167 12/31/2024
3.0.308 4,072 12/31/2024
3.0.307 157 12/31/2024
3.0.306 243 12/31/2024
3.0.305 762 12/31/2024
3.0.304 159 12/31/2024
3.0.303 1,210 12/31/2024
3.0.302 438 12/31/2024
3.0.301 7,062 12/31/2024
3.0.300 4,880 12/31/2024
3.0.299 1,114 12/31/2024
3.0.298 3,559 12/31/2024
3.0.297 2,834 12/31/2024
3.0.296 143 12/31/2024
3.0.295 159 12/31/2024
3.0.294 12,862 12/28/2024
3.0.293 2,181 12/28/2024
3.0.292 1,294 12/28/2024
3.0.291 1,508 12/27/2024
3.0.290 9,360 12/24/2024
3.0.289 2,051 12/24/2024
3.0.288 2,000 12/24/2024
3.0.287 2,786 12/24/2024
3.0.286 2,985 12/24/2024
3.0.285 2,403 12/24/2024
3.0.284 1,930 12/24/2024
3.0.283 1,546 12/23/2024
3.0.282 3,285 12/23/2024
3.0.281 3,772 12/23/2024
3.0.280 1,500 12/23/2024
3.0.279 4,199 12/23/2024
3.0.278 376 12/23/2024
3.0.277 3,977 12/22/2024
3.0.276 6,334 12/22/2024
3.0.275 6,345 12/22/2024
3.0.274 8,482 12/21/2024
3.0.273 526 12/21/2024
3.0.272 4,284 12/21/2024
3.0.271 5,406 12/21/2024
3.0.270 1,153 12/21/2024
3.0.269 6,457 12/20/2024
3.0.268 12,633 12/18/2024
3.0.267 194 12/18/2024
3.0.266 8,072 12/17/2024
3.0.265 6,928 12/17/2024
3.0.264 444 12/16/2024
3.0.263 1,266 12/16/2024
3.0.262 8,944 12/10/2024
3.0.261 2,499 12/9/2024
3.0.260 4,049 12/9/2024
3.0.259 2,820 12/9/2024
3.0.258 7,746 12/6/2024
3.0.257 1,479 12/6/2024
3.0.256 2,594 12/6/2024
3.0.255 7,784 12/6/2024
3.0.254 243 12/6/2024
3.0.253 394 12/6/2024
3.0.252 1,112 12/6/2024
3.0.251 6,128 12/6/2024
3.0.250 165 12/6/2024
3.0.249 152 12/6/2024
3.0.248 4,845 12/5/2024
3.0.247 4,746 12/5/2024
3.0.246 3,611 12/5/2024
3.0.245 4,321 12/5/2024
3.0.244 661 12/5/2024
3.0.243 574 12/5/2024
3.0.242 5,708 12/4/2024
3.0.241 564 12/4/2024
3.0.240 1,280 12/4/2024
3.0.239 3,923 12/4/2024
3.0.238 4,091 12/3/2024
3.0.237 3,148 12/3/2024
3.0.236 3,983 12/3/2024
3.0.235 3,647 12/3/2024
3.0.234 5,123 12/2/2024
3.0.233 4,219 12/2/2024
3.0.232 2,556 12/2/2024
3.0.231 499 12/2/2024
3.0.230 4,613 12/1/2024
3.0.229 1,042 12/1/2024
3.0.228 3,394 12/1/2024
3.0.227 4,437 12/1/2024
3.0.226 4,659 11/29/2024
3.0.225 8,244 11/21/2024
3.0.224 6,718 11/20/2024
3.0.223 722 11/20/2024
3.0.222 1,254 11/20/2024
3.0.221 641 11/19/2024
3.0.220 6,044 11/19/2024
3.0.219 2,545 11/19/2024
3.0.218 145 11/19/2024
3.0.217 4,136 11/19/2024
3.0.216 128 11/19/2024
3.0.215 11,448 11/14/2024
3.0.214 1,296 11/14/2024
3.0.213 4,437 11/14/2024
3.0.212 1,075 11/14/2024
3.0.211 644 11/14/2024
3.0.210 4,692 11/14/2024
3.0.209 143 11/14/2024
3.0.208 3,764 11/14/2024
3.0.207 235 11/14/2024
2.1.206 13,657 11/13/2024
2.1.205 5,365 11/13/2024
2.1.204 13,076 11/9/2024
2.1.203 943 11/9/2024
2.1.202 2,347 11/9/2024
2.1.201 1,424 11/8/2024
2.1.200 1,168 11/8/2024
2.1.199 149 11/8/2024
2.1.198 2,108 11/8/2024
2.1.197 303 11/8/2024
2.1.196 5,002 11/8/2024
2.1.195 6,417 11/8/2024
2.1.194 14,279 11/1/2024
2.1.192 10,399 10/29/2024
2.1.191 11,186 10/28/2024
2.1.190 7,058 10/26/2024
2.1.189 12,095 10/22/2024
2.1.188 1,577 10/22/2024
2.1.187 1,155 10/22/2024
2.1.186 9,223 10/17/2024
2.1.185 6,718 10/15/2024
2.1.184 2,564 10/14/2024
2.1.183 7,435 10/11/2024
2.1.182 1,051 10/11/2024
2.1.181 626 10/11/2024
2.1.180 11,908 10/9/2024
2.1.179 1,023 10/8/2024
2.1.178 5,979 10/8/2024
2.1.177 952 10/8/2024
2.1.176 13,809 10/3/2024
2.1.175 4,055 10/3/2024
2.1.174 9,810 10/2/2024
2.1.173 2,943 10/2/2024
2.1.172 7,252 10/1/2024
2.1.171 1,933 10/1/2024
2.1.170 2,950 10/1/2024
2.1.169 8,394 9/29/2024
2.1.168 2,419 9/29/2024
2.1.167 1,735 9/29/2024
2.1.166 10,207 9/27/2024
2.1.165 5,757 9/27/2024
2.1.164 144 9/27/2024
2.1.163 357 9/27/2024
2.1.162 144 9/27/2024
2.1.161 8,602 9/26/2024
2.1.160 8,176 9/26/2024
2.1.159 7,589 9/26/2024
2.1.158 7,734 9/23/2024
2.1.157 3,619 9/23/2024
2.1.156 2,105 9/23/2024
2.1.155 2,198 9/23/2024
2.1.154 7,126 9/23/2024
2.1.153 812 9/23/2024
2.1.152 974 9/23/2024
2.1.151 126 9/23/2024
2.1.150 2,560 9/23/2024
2.1.149 13,175 9/17/2024
2.1.148 146 9/17/2024
2.1.147 475 9/17/2024
2.1.146 5,303 9/17/2024
2.1.145 4,524 9/17/2024
2.1.144 5,912 9/17/2024
2.1.143 157 9/17/2024
2.1.142 575 9/17/2024
2.1.141 1,335 9/17/2024
2.1.140 14,429 9/16/2024
2.1.139 8,143 9/12/2024
2.1.138 5,485 9/11/2024
2.1.137 3,402 9/11/2024
2.1.136 6,366 9/11/2024
2.1.135 5,234 9/11/2024
2.1.134 11,965 9/10/2024
2.1.133 2,578 9/10/2024
2.1.132 4,029 9/9/2024
2.1.131 4,386 9/9/2024
2.1.130 2,735 9/9/2024
2.1.129 1,389 9/9/2024
2.1.128 144 9/9/2024
2.1.127 152 9/9/2024
2.1.126 154 9/9/2024
2.1.125 17,980 9/6/2024
2.1.124 6,988 9/6/2024
2.1.123 3,634 9/5/2024
2.1.122 2,241 9/5/2024
2.1.121 4,480 9/5/2024
2.1.120 2,391 9/5/2024
2.1.119 153 9/5/2024
2.1.118 1,826 9/5/2024
2.1.117 6,269 9/5/2024
2.1.116 1,541 9/4/2024
2.1.115 12,975 9/3/2024
2.1.114 1,300 9/3/2024
2.1.113 5,313 9/3/2024
2.1.112 10,262 8/29/2024
2.1.111 7,246 8/26/2024
2.1.110 7,307 8/21/2024
2.1.109 4,115 8/21/2024
2.1.108 493 8/20/2024
2.1.107 5,166 8/20/2024
2.1.106 155 8/20/2024
2.1.105 5,311 8/20/2024
2.1.104 3,137 8/20/2024
2.1.103 9,883 8/15/2024
2.1.102 8,785 8/13/2024
2.1.101 8,502 8/6/2024
2.1.100 9,981 8/1/2024
2.1.99 629 8/1/2024
2.1.98 9,465 7/25/2024
2.1.97 1,185 7/25/2024
2.1.96 1,058 7/25/2024
2.1.95 720 7/24/2024
2.1.94 260 7/24/2024
2.1.93 10,566 7/20/2024
2.1.92 8,831 7/14/2024
2.1.91 2,379 7/14/2024
2.1.90 7,469 7/10/2024
2.1.89 290 7/10/2024
2.1.88 2,391 7/10/2024
2.1.87 2,191 7/10/2024
2.1.86 270 7/10/2024
2.1.85 281 7/10/2024
2.1.83 2,305 7/10/2024
2.1.82 3,488 7/9/2024
2.1.80 896 7/9/2024
2.1.79 1,325 7/9/2024
2.1.78 8,356 7/9/2024
2.1.77 3,293 7/9/2024
2.1.76 14,340 7/9/2024
2.1.75 165 7/9/2024
2.1.74 172 7/8/2024
2.1.73 149 7/8/2024
2.1.72 2,633 7/8/2024
2.1.71 144 7/8/2024
2.1.70 7,629 7/8/2024
2.1.69 2,522 7/7/2024
2.1.68 2,893 7/7/2024
2.1.67 763 7/7/2024
2.1.66 1,405 7/7/2024
2.1.65 3,288 7/7/2024
2.1.64 2,942 7/7/2024
2.1.63 153 7/7/2024
2.1.62 3,938 7/5/2024
2.1.61 78,252 5/25/2024
2.1.60 160 5/25/2024
2.1.59 598 5/25/2024
2.1.58 14,961 5/22/2024
2.1.57 154 5/22/2024
2.1.56 12,236 5/17/2024
2.1.55 17,138 4/30/2024
2.1.54 17,278 4/28/2024
2.1.53 162 4/28/2024
2.1.52 766 4/27/2024
2.1.51 154 4/27/2024
2.1.50 26,989 4/12/2024
2.1.49 1,480 4/12/2024
2.1.48 171 4/12/2024
2.1.47 41,962 3/18/2024
2.1.46 9,393 3/13/2024
2.1.45 2,503 3/13/2024
2.1.44 64,903 2/21/2024
2.1.43 2,895 2/21/2024
2.1.42 157 2/21/2024
2.1.41 23,073 2/16/2024
2.1.40 713 2/16/2024
2.1.39 25,229 2/9/2024
2.1.38 19,868 2/6/2024
2.1.37 170 2/6/2024
2.1.36 66,078 1/15/2024
2.1.35 891 1/15/2024
2.1.34 27,434 1/5/2024
2.1.33 2,561 1/5/2024
2.1.32 14,128 12/27/2023
2.1.31 1,422 12/27/2023
2.1.30 1,197 12/27/2023
2.1.29 8,289 12/25/2023
2.1.28 1,511 12/25/2023
2.1.27 762 12/25/2023
2.1.26 11,170 12/23/2023
2.1.25 186 12/23/2023
2.1.24 865 12/23/2023
2.1.23 21,976 12/9/2023
2.1.22 1,448 12/9/2023
2.1.21 294 12/9/2023
2.1.20 2,047 12/9/2023
2.1.19 11,497 12/4/2023
2.1.18 913 12/4/2023
2.1.17 5,739 11/26/2023
2.1.16 5,711 11/23/2023
2.1.15 376 11/23/2023
2.1.14 1,021 11/23/2023
2.1.13 9,899 11/19/2023
2.1.12 176 11/19/2023
2.1.11 1,255 11/18/2023
2.1.10 3,575 11/18/2023
2.1.9 2,025 11/18/2023
2.1.8 3,829 11/17/2023
2.1.7 1,123 11/17/2023
2.1.6 1,804 11/17/2023
2.1.5 919 11/17/2023
2.1.4 706 11/16/2023
2.1.3 220 11/16/2023
2.0.52 1,329 11/15/2023
2.0.51 2,219 11/15/2023
2.0.2 166 11/16/2023
2.0.1 181 11/16/2023
1.0.50 4,263 11/11/2023
1.0.49 161 11/11/2023
1.0.48 152 11/11/2023
1.0.47 1,396 11/9/2023
1.0.46 165 11/9/2023
1.0.45 5,419 11/6/2023
1.0.44 2,324 11/3/2023
1.0.43 1,911 11/2/2023
1.0.42 1,963 11/1/2023
1.0.41 7,787 10/18/2023
1.0.40 3,133 10/17/2023
1.0.39 1,294 10/16/2023
1.0.38 2,809 10/13/2023
1.0.37 204 10/13/2023
1.0.36 6,387 9/19/2023
1.0.35 2,159 9/18/2023
1.0.34 177 9/18/2023
1.0.33 7,936 8/30/2023
1.0.32 2,831 8/29/2023
1.0.31 4,351 8/24/2023
1.0.30 205 8/24/2023
1.0.29 4,485 8/17/2023
1.0.28 232 8/17/2023
1.0.27 8,207 8/7/2023
1.0.26 232 8/7/2023
1.0.25 8,177 7/10/2023
1.0.24 10,824 7/7/2023
1.0.23 220 7/7/2023
1.0.22 9,655 6/28/2023
1.0.21 45,726 5/24/2023
1.0.20 1,230 5/24/2023
1.0.19 481 5/23/2023
1.0.18 261 5/31/2023
1.0.17 2,855 5/23/2023
1.0.16 3,034 5/22/2023
1.0.15 6,185 5/17/2023
1.0.14 251 5/17/2023
1.0.13 5,813 4/28/2023
1.0.12 2,328 4/24/2023
1.0.11 1,034 4/21/2023
1.0.10 4,633 4/12/2023
1.0.9 1,158 4/11/2023
1.0.8 2,161 4/3/2023
1.0.7 303 4/3/2023
1.0.6 436 4/1/2023
1.0.5 2,105 3/23/2023
1.0.3 619 2/28/2023
1.0.2 527 2/16/2023