Soenneker.Extensions.Enumerable 3.0.534

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 3.0.534
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 3.0.534
                    
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.534" />
                    
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.534" />
                    
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.534
                    
#r "nuget: Soenneker.Extensions.Enumerable, 3.0.534"
                    
#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.534
                    
#: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.534
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=3.0.534
                    
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 14,016 9/9/2025
3.0.565 15,757 9/3/2025
3.0.564 1,592 9/3/2025
3.0.563 136 9/3/2025
3.0.562 27,632 8/11/2025
3.0.561 3,499 8/11/2025
3.0.560 279 8/11/2025
3.0.559 18,770 8/5/2025
3.0.558 20,430 7/8/2025
3.0.557 26,934 6/27/2025
3.0.556 2,128 6/27/2025
3.0.555 221 6/27/2025
3.0.554 29,305 6/10/2025
3.0.553 21,151 5/27/2025
3.0.552 1,375 5/27/2025
3.0.551 1,142 5/27/2025
3.0.550 19,644 5/23/2025
3.0.549 2,174 5/23/2025
3.0.548 2,179 5/22/2025
3.0.547 18,872 5/14/2025
3.0.546 11,880 5/8/2025
3.0.545 1,745 5/7/2025
3.0.544 265 5/7/2025
3.0.543 16,552 5/5/2025
3.0.542 1,844 5/5/2025
3.0.541 3,377 5/5/2025
3.0.540 159 5/5/2025
3.0.539 23,623 4/8/2025
3.0.538 2,480 4/8/2025
3.0.537 558 4/8/2025
3.0.536 2,593 4/8/2025
3.0.535 188 4/8/2025
3.0.534 3,960 4/8/2025
3.0.533 666 4/8/2025
3.0.532 6,200 4/8/2025
3.0.531 7,348 4/8/2025
3.0.530 1,636 4/7/2025
3.0.529 3,691 4/7/2025
3.0.528 1,288 4/7/2025
3.0.527 3,098 4/7/2025
3.0.526 8,177 4/7/2025
3.0.525 2,427 4/7/2025
3.0.524 636 4/7/2025
3.0.523 9,328 4/7/2025
3.0.522 1,930 4/7/2025
3.0.521 3,313 4/6/2025
3.0.520 269 4/6/2025
3.0.519 1,526 4/6/2025
3.0.518 1,895 4/6/2025
3.0.517 2,242 4/6/2025
3.0.516 128 4/6/2025
3.0.515 405 4/6/2025
3.0.514 137 4/6/2025
3.0.513 500 4/5/2025
3.0.512 3,132 4/5/2025
3.0.511 1,476 4/5/2025
3.0.510 1,139 4/5/2025
3.0.509 186 4/5/2025
3.0.508 241 4/5/2025
3.0.507 284 4/5/2025
3.0.506 2,912 4/4/2025
3.0.505 150 4/4/2025
3.0.504 3,041 4/4/2025
3.0.503 37,260 4/4/2025
3.0.502 8,274 4/1/2025
3.0.501 4,553 4/1/2025
3.0.500 6,464 3/31/2025
3.0.499 2,853 3/31/2025
3.0.498 6,526 3/31/2025
3.0.497 7,846 3/29/2025
3.0.496 2,101 3/29/2025
3.0.495 6,516 3/27/2025
3.0.494 4,392 3/25/2025
3.0.493 1,764 3/25/2025
3.0.492 10,631 3/21/2025
3.0.491 10,771 3/18/2025
3.0.490 4,938 3/18/2025
3.0.489 7,388 3/15/2025
3.0.488 2,313 3/15/2025
3.0.487 8,386 3/12/2025
3.0.486 3,159 3/12/2025
3.0.485 531 3/12/2025
3.0.484 3,163 3/11/2025
3.0.483 407 3/11/2025
3.0.482 1,297 3/11/2025
3.0.481 2,368 3/11/2025
3.0.480 3,512 3/11/2025
3.0.479 3,216 3/11/2025
3.0.478 2,036 3/11/2025
3.0.477 12,342 3/7/2025
3.0.476 3,678 3/7/2025
3.0.475 7,445 3/2/2025
3.0.474 2,720 3/2/2025
3.0.473 687 3/2/2025
3.0.472 5,180 3/2/2025
3.0.471 4,747 3/1/2025
3.0.470 257 3/1/2025
3.0.469 4,496 3/1/2025
3.0.468 124 3/1/2025
3.0.467 1,676 3/1/2025
3.0.466 12,744 2/26/2025
3.0.465 1,137 2/25/2025
3.0.464 3,106 2/25/2025
3.0.463 2,039 2/25/2025
3.0.462 1,042 2/25/2025
3.0.461 11,674 2/23/2025
3.0.460 2,113 2/22/2025
3.0.459 9,303 2/22/2025
3.0.458 2,710 2/22/2025
3.0.457 3,277 2/22/2025
3.0.456 550 2/21/2025
3.0.455 5,260 2/21/2025
3.0.454 11,569 2/19/2025
3.0.453 4,870 2/18/2025
3.0.452 1,078 2/18/2025
3.0.451 444 2/18/2025
3.0.450 5,734 2/18/2025
3.0.449 123 2/18/2025
3.0.448 13,828 2/14/2025
3.0.447 1,405 2/14/2025
3.0.446 3,858 2/13/2025
3.0.445 4,724 2/13/2025
3.0.444 5,450 2/12/2025
3.0.443 1,709 2/12/2025
3.0.442 750 2/12/2025
3.0.441 2,149 2/12/2025
3.0.440 762 2/12/2025
3.0.439 526 2/11/2025
3.0.438 7,880 2/11/2025
3.0.437 2,682 2/11/2025
3.0.436 471 2/11/2025
3.0.435 2,615 2/10/2025
3.0.434 133 2/10/2025
3.0.433 1,780 2/10/2025
3.0.432 142 2/10/2025
3.0.431 13,808 2/9/2025
3.0.430 8,002 2/9/2025
3.0.429 377 2/9/2025
3.0.428 290 2/8/2025
3.0.427 237 2/8/2025
3.0.426 304 2/8/2025
3.0.425 8,306 2/8/2025
3.0.424 2,740 2/7/2025
3.0.423 1,948 2/7/2025
3.0.422 2,480 2/7/2025
3.0.421 136 2/7/2025
3.0.420 430 2/7/2025
3.0.419 137 2/7/2025
3.0.418 1,997 2/7/2025
3.0.417 130 2/7/2025
3.0.416 14,607 2/7/2025
3.0.415 7,176 2/5/2025
3.0.414 859 2/5/2025
3.0.413 1,186 2/5/2025
3.0.412 277 2/5/2025
3.0.411 2,561 2/5/2025
3.0.410 5,379 2/5/2025
3.0.409 12,317 1/28/2025
3.0.408 870 1/28/2025
3.0.407 288 1/28/2025
3.0.406 2,663 1/28/2025
3.0.405 5,530 1/27/2025
3.0.404 1,583 1/27/2025
3.0.403 120 1/27/2025
3.0.402 5,395 1/27/2025
3.0.401 122 1/27/2025
3.0.400 6,168 1/26/2025
3.0.399 1,316 1/26/2025
3.0.398 1,009 1/26/2025
3.0.397 556 1/26/2025
3.0.396 275 1/26/2025
3.0.395 2,765 1/25/2025
3.0.394 5,925 1/25/2025
3.0.393 4,319 1/25/2025
3.0.392 466 1/25/2025
3.0.391 10,809 1/24/2025
3.0.390 2,005 1/24/2025
3.0.389 3,516 1/24/2025
3.0.388 4,096 1/24/2025
3.0.387 960 1/23/2025
3.0.386 1,181 1/23/2025
3.0.385 170 1/23/2025
3.0.384 9,626 1/22/2025
3.0.383 1,264 1/21/2025
3.0.382 398 1/21/2025
3.0.381 1,221 1/21/2025
3.0.380 1,187 1/21/2025
3.0.379 1,361 1/21/2025
3.0.378 1,048 1/21/2025
3.0.377 1,391 1/21/2025
3.0.376 135 1/21/2025
3.0.375 6,216 1/21/2025
3.0.374 1,783 1/21/2025
3.0.373 1,538 1/21/2025
3.0.372 2,672 1/21/2025
3.0.371 220 1/20/2025
3.0.370 6,975 1/20/2025
3.0.369 281 1/20/2025
3.0.368 1,469 1/20/2025
3.0.367 119 1/20/2025
3.0.366 1,385 1/20/2025
3.0.365 144 1/20/2025
3.0.364 4,274 1/19/2025
3.0.363 6,659 1/19/2025
3.0.362 6,454 1/19/2025
3.0.361 2,206 1/19/2025
3.0.360 652 1/19/2025
3.0.359 3,662 1/18/2025
3.0.358 166 1/18/2025
3.0.357 3,573 1/18/2025
3.0.356 289 1/18/2025
3.0.355 1,043 1/18/2025
3.0.354 6,418 1/17/2025
3.0.353 159 1/17/2025
3.0.352 8,309 1/16/2025
3.0.351 4,588 1/16/2025
3.0.350 868 1/16/2025
3.0.349 5,171 1/15/2025
3.0.348 4,431 1/15/2025
3.0.347 3,752 1/15/2025
3.0.346 3,952 1/15/2025
3.0.345 2,329 1/15/2025
3.0.344 3,078 1/15/2025
3.0.343 827 1/15/2025
3.0.342 2,471 1/14/2025
3.0.341 438 1/14/2025
3.0.340 158 1/14/2025
3.0.339 3,495 1/14/2025
3.0.338 972 1/14/2025
3.0.337 116 1/14/2025
3.0.336 1,266 1/14/2025
3.0.335 379 1/14/2025
3.0.334 7,155 1/13/2025
3.0.333 1,614 1/13/2025
3.0.332 3,039 1/13/2025
3.0.331 6,109 1/11/2025
3.0.330 2,549 1/11/2025
3.0.329 2,810 1/10/2025
3.0.328 5,603 1/10/2025
3.0.327 139 1/10/2025
3.0.326 540 1/10/2025
3.0.325 131 1/10/2025
3.0.324 132 1/10/2025
3.0.323 9,019 1/3/2025
3.0.322 1,068 1/3/2025
3.0.321 1,339 1/3/2025
3.0.320 437 1/3/2025
3.0.319 1,507 1/3/2025
3.0.318 3,329 1/2/2025
3.0.317 145 1/2/2025
3.0.316 2,309 1/2/2025
3.0.315 149 1/2/2025
3.0.314 3,069 1/2/2025
3.0.313 153 1/2/2025
3.0.312 9,920 1/1/2025
3.0.311 145 1/1/2025
3.0.310 192 12/31/2024
3.0.309 155 12/31/2024
3.0.308 3,601 12/31/2024
3.0.307 144 12/31/2024
3.0.306 221 12/31/2024
3.0.305 717 12/31/2024
3.0.304 147 12/31/2024
3.0.303 1,108 12/31/2024
3.0.302 421 12/31/2024
3.0.301 6,449 12/31/2024
3.0.300 4,560 12/31/2024
3.0.299 1,062 12/31/2024
3.0.298 3,309 12/31/2024
3.0.297 2,516 12/31/2024
3.0.296 140 12/31/2024
3.0.295 147 12/31/2024
3.0.294 11,614 12/28/2024
3.0.293 1,974 12/28/2024
3.0.292 1,139 12/28/2024
3.0.291 1,372 12/27/2024
3.0.290 8,512 12/24/2024
3.0.289 1,870 12/24/2024
3.0.288 1,809 12/24/2024
3.0.287 2,547 12/24/2024
3.0.286 2,731 12/24/2024
3.0.285 2,166 12/24/2024
3.0.284 1,791 12/24/2024
3.0.283 1,420 12/23/2024
3.0.282 2,975 12/23/2024
3.0.281 3,410 12/23/2024
3.0.280 1,365 12/23/2024
3.0.279 3,819 12/23/2024
3.0.278 335 12/23/2024
3.0.277 3,657 12/22/2024
3.0.276 5,772 12/22/2024
3.0.275 5,797 12/22/2024
3.0.274 7,828 12/21/2024
3.0.273 488 12/21/2024
3.0.272 3,850 12/21/2024
3.0.271 4,983 12/21/2024
3.0.270 1,099 12/21/2024
3.0.269 5,950 12/20/2024
3.0.268 11,621 12/18/2024
3.0.267 190 12/18/2024
3.0.266 7,609 12/17/2024
3.0.265 6,173 12/17/2024
3.0.264 408 12/16/2024
3.0.263 1,154 12/16/2024
3.0.262 8,186 12/10/2024
3.0.261 2,304 12/9/2024
3.0.260 3,736 12/9/2024
3.0.259 2,548 12/9/2024
3.0.258 7,063 12/6/2024
3.0.257 1,356 12/6/2024
3.0.256 2,344 12/6/2024
3.0.255 7,174 12/6/2024
3.0.254 228 12/6/2024
3.0.253 370 12/6/2024
3.0.252 1,039 12/6/2024
3.0.251 5,698 12/6/2024
3.0.250 163 12/6/2024
3.0.249 149 12/6/2024
3.0.248 4,523 12/5/2024
3.0.247 4,519 12/5/2024
3.0.246 3,458 12/5/2024
3.0.245 4,126 12/5/2024
3.0.244 628 12/5/2024
3.0.243 539 12/5/2024
3.0.242 5,224 12/4/2024
3.0.241 507 12/4/2024
3.0.240 1,161 12/4/2024
3.0.239 3,640 12/4/2024
3.0.238 3,843 12/3/2024
3.0.237 2,890 12/3/2024
3.0.236 3,653 12/3/2024
3.0.235 3,449 12/3/2024
3.0.234 4,760 12/2/2024
3.0.233 3,926 12/2/2024
3.0.232 2,415 12/2/2024
3.0.231 466 12/2/2024
3.0.230 4,345 12/1/2024
3.0.229 1,028 12/1/2024
3.0.228 3,191 12/1/2024
3.0.227 4,126 12/1/2024
3.0.226 4,334 11/29/2024
3.0.225 7,762 11/21/2024
3.0.224 6,249 11/20/2024
3.0.223 703 11/20/2024
3.0.222 1,185 11/20/2024
3.0.221 605 11/19/2024
3.0.220 5,713 11/19/2024
3.0.219 2,354 11/19/2024
3.0.218 132 11/19/2024
3.0.217 3,861 11/19/2024
3.0.216 125 11/19/2024
3.0.215 10,656 11/14/2024
3.0.214 1,206 11/14/2024
3.0.213 4,141 11/14/2024
3.0.212 1,017 11/14/2024
3.0.211 617 11/14/2024
3.0.210 4,392 11/14/2024
3.0.209 130 11/14/2024
3.0.208 3,485 11/14/2024
3.0.207 222 11/14/2024
2.1.206 12,734 11/13/2024
2.1.205 5,064 11/13/2024
2.1.204 12,168 11/9/2024
2.1.203 883 11/9/2024
2.1.202 2,203 11/9/2024
2.1.201 1,308 11/8/2024
2.1.200 1,113 11/8/2024
2.1.199 137 11/8/2024
2.1.198 1,955 11/8/2024
2.1.197 289 11/8/2024
2.1.196 4,670 11/8/2024
2.1.195 6,080 11/8/2024
2.1.194 13,394 11/1/2024
2.1.192 9,693 10/29/2024
2.1.191 10,426 10/28/2024
2.1.190 6,644 10/26/2024
2.1.189 11,483 10/22/2024
2.1.188 1,522 10/22/2024
2.1.187 1,097 10/22/2024
2.1.186 8,586 10/17/2024
2.1.185 6,244 10/15/2024
2.1.184 2,388 10/14/2024
2.1.183 6,926 10/11/2024
2.1.182 979 10/11/2024
2.1.181 594 10/11/2024
2.1.180 11,134 10/9/2024
2.1.179 950 10/8/2024
2.1.178 5,559 10/8/2024
2.1.177 882 10/8/2024
2.1.176 12,790 10/3/2024
2.1.175 3,765 10/3/2024
2.1.174 9,122 10/2/2024
2.1.173 2,758 10/2/2024
2.1.172 6,710 10/1/2024
2.1.171 1,834 10/1/2024
2.1.170 2,774 10/1/2024
2.1.169 7,787 9/29/2024
2.1.168 2,251 9/29/2024
2.1.167 1,660 9/29/2024
2.1.166 9,532 9/27/2024
2.1.165 5,316 9/27/2024
2.1.164 132 9/27/2024
2.1.163 325 9/27/2024
2.1.162 130 9/27/2024
2.1.161 7,976 9/26/2024
2.1.160 7,614 9/26/2024
2.1.159 7,028 9/26/2024
2.1.158 7,213 9/23/2024
2.1.157 3,344 9/23/2024
2.1.156 1,983 9/23/2024
2.1.155 2,061 9/23/2024
2.1.154 6,601 9/23/2024
2.1.153 764 9/23/2024
2.1.152 923 9/23/2024
2.1.151 121 9/23/2024
2.1.150 2,403 9/23/2024
2.1.149 12,233 9/17/2024
2.1.148 131 9/17/2024
2.1.147 451 9/17/2024
2.1.146 4,871 9/17/2024
2.1.145 4,235 9/17/2024
2.1.144 5,525 9/17/2024
2.1.143 144 9/17/2024
2.1.142 544 9/17/2024
2.1.141 1,276 9/17/2024
2.1.140 13,508 9/16/2024
2.1.139 7,686 9/12/2024
2.1.138 5,174 9/11/2024
2.1.137 3,126 9/11/2024
2.1.136 6,014 9/11/2024
2.1.135 4,957 9/11/2024
2.1.134 11,236 9/10/2024
2.1.133 2,381 9/10/2024
2.1.132 3,778 9/9/2024
2.1.131 4,162 9/9/2024
2.1.130 2,646 9/9/2024
2.1.129 1,279 9/9/2024
2.1.128 131 9/9/2024
2.1.127 138 9/9/2024
2.1.126 137 9/9/2024
2.1.125 16,881 9/6/2024
2.1.124 6,613 9/6/2024
2.1.123 3,435 9/5/2024
2.1.122 2,074 9/5/2024
2.1.121 4,173 9/5/2024
2.1.120 2,287 9/5/2024
2.1.119 139 9/5/2024
2.1.118 1,677 9/5/2024
2.1.117 5,953 9/5/2024
2.1.116 1,435 9/4/2024
2.1.115 12,159 9/3/2024
2.1.114 1,249 9/3/2024
2.1.113 4,987 9/3/2024
2.1.112 9,621 8/29/2024
2.1.111 6,811 8/26/2024
2.1.110 6,769 8/21/2024
2.1.109 3,859 8/21/2024
2.1.108 475 8/20/2024
2.1.107 4,779 8/20/2024
2.1.106 141 8/20/2024
2.1.105 4,866 8/20/2024
2.1.104 2,978 8/20/2024
2.1.103 9,135 8/15/2024
2.1.102 8,258 8/13/2024
2.1.101 7,928 8/6/2024
2.1.100 9,262 8/1/2024
2.1.99 600 8/1/2024
2.1.98 8,742 7/25/2024
2.1.97 1,098 7/25/2024
2.1.96 1,020 7/25/2024
2.1.95 672 7/24/2024
2.1.94 246 7/24/2024
2.1.93 9,823 7/20/2024
2.1.92 8,293 7/14/2024
2.1.91 2,282 7/14/2024
2.1.90 6,888 7/10/2024
2.1.89 265 7/10/2024
2.1.88 2,204 7/10/2024
2.1.87 2,077 7/10/2024
2.1.86 257 7/10/2024
2.1.85 268 7/10/2024
2.1.83 2,157 7/10/2024
2.1.82 3,267 7/9/2024
2.1.80 871 7/9/2024
2.1.79 1,286 7/9/2024
2.1.78 7,775 7/9/2024
2.1.77 3,107 7/9/2024
2.1.76 13,744 7/9/2024
2.1.75 153 7/9/2024
2.1.74 167 7/8/2024
2.1.73 145 7/8/2024
2.1.72 2,552 7/8/2024
2.1.71 128 7/8/2024
2.1.70 6,996 7/8/2024
2.1.69 2,318 7/7/2024
2.1.68 2,627 7/7/2024
2.1.67 707 7/7/2024
2.1.66 1,370 7/7/2024
2.1.65 3,090 7/7/2024
2.1.64 2,757 7/7/2024
2.1.63 141 7/7/2024
2.1.62 3,671 7/5/2024
2.1.61 73,455 5/25/2024
2.1.60 147 5/25/2024
2.1.59 562 5/25/2024
2.1.58 14,060 5/22/2024
2.1.57 150 5/22/2024
2.1.56 11,554 5/17/2024
2.1.55 16,000 4/30/2024
2.1.54 16,028 4/28/2024
2.1.53 150 4/28/2024
2.1.52 710 4/27/2024
2.1.51 141 4/27/2024
2.1.50 25,163 4/12/2024
2.1.49 1,399 4/12/2024
2.1.48 157 4/12/2024
2.1.47 39,644 3/18/2024
2.1.46 8,839 3/13/2024
2.1.45 2,319 3/13/2024
2.1.44 61,434 2/21/2024
2.1.43 2,771 2/21/2024
2.1.42 147 2/21/2024
2.1.41 21,936 2/16/2024
2.1.40 680 2/16/2024
2.1.39 24,014 2/9/2024
2.1.38 19,027 2/6/2024
2.1.37 158 2/6/2024
2.1.36 63,036 1/15/2024
2.1.35 868 1/15/2024
2.1.34 26,237 1/5/2024
2.1.33 2,489 1/5/2024
2.1.32 13,453 12/27/2023
2.1.31 1,380 12/27/2023
2.1.30 1,117 12/27/2023
2.1.29 7,918 12/25/2023
2.1.28 1,464 12/25/2023
2.1.27 722 12/25/2023
2.1.26 10,620 12/23/2023
2.1.25 172 12/23/2023
2.1.24 844 12/23/2023
2.1.23 20,831 12/9/2023
2.1.22 1,381 12/9/2023
2.1.21 280 12/9/2023
2.1.20 1,964 12/9/2023
2.1.19 10,919 12/4/2023
2.1.18 854 12/4/2023
2.1.17 5,496 11/26/2023
2.1.16 5,453 11/23/2023
2.1.15 364 11/23/2023
2.1.14 986 11/23/2023
2.1.13 9,488 11/19/2023
2.1.12 166 11/19/2023
2.1.11 1,221 11/18/2023
2.1.10 3,456 11/18/2023
2.1.9 1,971 11/18/2023
2.1.8 3,722 11/17/2023
2.1.7 1,105 11/17/2023
2.1.6 1,743 11/17/2023
2.1.5 906 11/17/2023
2.1.4 682 11/16/2023
2.1.3 210 11/16/2023
2.0.52 1,283 11/15/2023
2.0.51 2,171 11/15/2023
2.0.2 156 11/16/2023
2.0.1 171 11/16/2023
1.0.50 4,139 11/11/2023
1.0.49 148 11/11/2023
1.0.48 140 11/11/2023
1.0.47 1,364 11/9/2023
1.0.46 155 11/9/2023
1.0.45 5,270 11/6/2023
1.0.44 2,258 11/3/2023
1.0.43 1,842 11/2/2023
1.0.42 1,918 11/1/2023
1.0.41 7,584 10/18/2023
1.0.40 3,054 10/17/2023
1.0.39 1,267 10/16/2023
1.0.38 2,726 10/13/2023
1.0.37 193 10/13/2023
1.0.36 6,206 9/19/2023
1.0.35 2,105 9/18/2023
1.0.34 165 9/18/2023
1.0.33 7,743 8/30/2023
1.0.32 2,764 8/29/2023
1.0.31 4,222 8/24/2023
1.0.30 191 8/24/2023
1.0.29 4,403 8/17/2023
1.0.28 220 8/17/2023
1.0.27 8,090 8/7/2023
1.0.26 221 8/7/2023
1.0.25 8,046 7/10/2023
1.0.24 10,450 7/7/2023
1.0.23 218 7/7/2023
1.0.22 9,412 6/28/2023
1.0.21 44,671 5/24/2023
1.0.20 1,186 5/24/2023
1.0.19 471 5/23/2023
1.0.18 250 5/31/2023
1.0.17 2,815 5/23/2023
1.0.16 2,999 5/22/2023
1.0.15 6,026 5/17/2023
1.0.14 241 5/17/2023
1.0.13 5,663 4/28/2023
1.0.12 2,272 4/24/2023
1.0.11 1,027 4/21/2023
1.0.10 4,542 4/12/2023
1.0.9 1,127 4/11/2023
1.0.8 2,093 4/3/2023
1.0.7 293 4/3/2023
1.0.6 423 4/1/2023
1.0.5 2,099 3/23/2023
1.0.3 607 2/28/2023
1.0.2 518 2/16/2023