Soenneker.Extensions.Enumerable 3.0.518

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.518
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 3.0.518
                    
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.518" />
                    
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.518" />
                    
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.518
                    
#r "nuget: Soenneker.Extensions.Enumerable, 3.0.518"
                    
#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.518
                    
#: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.518
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=3.0.518
                    
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 28,923 9/9/2025
3.0.565 22,054 9/3/2025
3.0.564 2,236 9/3/2025
3.0.563 159 9/3/2025
3.0.562 37,641 8/11/2025
3.0.561 5,084 8/11/2025
3.0.560 413 8/11/2025
3.0.559 25,932 8/5/2025
3.0.558 27,582 7/8/2025
3.0.557 31,959 6/27/2025
3.0.556 2,532 6/27/2025
3.0.555 265 6/27/2025
3.0.554 35,052 6/10/2025
3.0.553 25,138 5/27/2025
3.0.552 1,643 5/27/2025
3.0.551 1,356 5/27/2025
3.0.550 23,777 5/23/2025
3.0.549 2,659 5/23/2025
3.0.548 2,633 5/22/2025
3.0.547 23,026 5/14/2025
3.0.546 14,110 5/8/2025
3.0.545 2,086 5/7/2025
3.0.544 300 5/7/2025
3.0.543 19,773 5/5/2025
3.0.542 2,199 5/5/2025
3.0.541 3,979 5/5/2025
3.0.540 174 5/5/2025
3.0.539 28,369 4/8/2025
3.0.538 2,995 4/8/2025
3.0.537 654 4/8/2025
3.0.536 3,131 4/8/2025
3.0.535 206 4/8/2025
3.0.534 4,855 4/8/2025
3.0.533 764 4/8/2025
3.0.532 7,636 4/8/2025
3.0.531 9,210 4/8/2025
3.0.530 1,938 4/7/2025
3.0.529 4,645 4/7/2025
3.0.528 1,570 4/7/2025
3.0.527 3,790 4/7/2025
3.0.526 10,126 4/7/2025
3.0.525 2,944 4/7/2025
3.0.524 736 4/7/2025
3.0.523 11,644 4/7/2025
3.0.522 2,378 4/7/2025
3.0.521 4,075 4/6/2025
3.0.520 306 4/6/2025
3.0.519 1,968 4/6/2025
3.0.518 2,293 4/6/2025
3.0.517 2,802 4/6/2025
3.0.516 146 4/6/2025
3.0.515 500 4/6/2025
3.0.514 155 4/6/2025
3.0.513 609 4/5/2025
3.0.512 3,777 4/5/2025
3.0.511 1,870 4/5/2025
3.0.510 1,420 4/5/2025
3.0.509 218 4/5/2025
3.0.508 281 4/5/2025
3.0.507 344 4/5/2025
3.0.506 3,420 4/4/2025
3.0.505 170 4/4/2025
3.0.504 3,802 4/4/2025
3.0.503 45,549 4/4/2025
3.0.502 10,288 4/1/2025
3.0.501 5,618 4/1/2025
3.0.500 8,045 3/31/2025
3.0.499 3,570 3/31/2025
3.0.498 8,046 3/31/2025
3.0.497 9,820 3/29/2025
3.0.496 2,587 3/29/2025
3.0.495 8,160 3/27/2025
3.0.494 5,327 3/25/2025
3.0.493 2,094 3/25/2025
3.0.492 13,245 3/21/2025
3.0.491 13,018 3/18/2025
3.0.490 6,174 3/18/2025
3.0.489 9,286 3/15/2025
3.0.488 2,913 3/15/2025
3.0.487 10,490 3/12/2025
3.0.486 3,865 3/12/2025
3.0.485 628 3/12/2025
3.0.484 3,914 3/11/2025
3.0.483 471 3/11/2025
3.0.482 1,545 3/11/2025
3.0.481 2,879 3/11/2025
3.0.480 4,415 3/11/2025
3.0.479 3,883 3/11/2025
3.0.478 2,489 3/11/2025
3.0.477 15,266 3/7/2025
3.0.476 4,558 3/7/2025
3.0.475 9,210 3/2/2025
3.0.474 3,398 3/2/2025
3.0.473 817 3/2/2025
3.0.472 6,542 3/2/2025
3.0.471 6,025 3/1/2025
3.0.470 312 3/1/2025
3.0.469 5,798 3/1/2025
3.0.468 140 3/1/2025
3.0.467 2,093 3/1/2025
3.0.466 15,669 2/26/2025
3.0.465 1,410 2/25/2025
3.0.464 3,940 2/25/2025
3.0.463 2,540 2/25/2025
3.0.462 1,318 2/25/2025
3.0.461 14,626 2/23/2025
3.0.460 2,602 2/22/2025
3.0.459 11,616 2/22/2025
3.0.458 3,414 2/22/2025
3.0.457 4,185 2/22/2025
3.0.456 687 2/21/2025
3.0.455 6,663 2/21/2025
3.0.454 14,471 2/19/2025
3.0.453 5,975 2/18/2025
3.0.452 1,307 2/18/2025
3.0.451 549 2/18/2025
3.0.450 7,130 2/18/2025
3.0.449 138 2/18/2025
3.0.448 16,799 2/14/2025
3.0.447 1,735 2/14/2025
3.0.446 4,862 2/13/2025
3.0.445 5,886 2/13/2025
3.0.444 6,585 2/12/2025
3.0.443 2,122 2/12/2025
3.0.442 915 2/12/2025
3.0.441 2,631 2/12/2025
3.0.440 907 2/12/2025
3.0.439 645 2/11/2025
3.0.438 9,821 2/11/2025
3.0.437 3,382 2/11/2025
3.0.436 545 2/11/2025
3.0.435 3,205 2/10/2025
3.0.434 150 2/10/2025
3.0.433 2,139 2/10/2025
3.0.432 156 2/10/2025
3.0.431 17,360 2/9/2025
3.0.430 9,894 2/9/2025
3.0.429 472 2/9/2025
3.0.428 338 2/8/2025
3.0.427 282 2/8/2025
3.0.426 358 2/8/2025
3.0.425 10,745 2/8/2025
3.0.424 3,491 2/7/2025
3.0.423 2,354 2/7/2025
3.0.422 2,919 2/7/2025
3.0.421 141 2/7/2025
3.0.420 486 2/7/2025
3.0.419 154 2/7/2025
3.0.418 2,435 2/7/2025
3.0.417 144 2/7/2025
3.0.416 18,023 2/7/2025
3.0.415 9,027 2/5/2025
3.0.414 1,051 2/5/2025
3.0.413 1,516 2/5/2025
3.0.412 335 2/5/2025
3.0.411 3,222 2/5/2025
3.0.410 6,851 2/5/2025
3.0.409 15,112 1/28/2025
3.0.408 1,093 1/28/2025
3.0.407 341 1/28/2025
3.0.406 3,507 1/28/2025
3.0.405 7,247 1/27/2025
3.0.404 1,980 1/27/2025
3.0.403 135 1/27/2025
3.0.402 7,136 1/27/2025
3.0.401 139 1/27/2025
3.0.400 7,892 1/26/2025
3.0.399 1,636 1/26/2025
3.0.398 1,250 1/26/2025
3.0.397 692 1/26/2025
3.0.396 312 1/26/2025
3.0.395 3,427 1/25/2025
3.0.394 7,638 1/25/2025
3.0.393 5,596 1/25/2025
3.0.392 614 1/25/2025
3.0.391 13,941 1/24/2025
3.0.390 2,636 1/24/2025
3.0.389 4,639 1/24/2025
3.0.388 5,271 1/24/2025
3.0.387 1,202 1/23/2025
3.0.386 1,483 1/23/2025
3.0.385 186 1/23/2025
3.0.384 12,391 1/22/2025
3.0.383 1,619 1/21/2025
3.0.382 477 1/21/2025
3.0.381 1,529 1/21/2025
3.0.380 1,531 1/21/2025
3.0.379 1,691 1/21/2025
3.0.378 1,258 1/21/2025
3.0.377 1,733 1/21/2025
3.0.376 151 1/21/2025
3.0.375 8,079 1/21/2025
3.0.374 2,231 1/21/2025
3.0.373 1,872 1/21/2025
3.0.372 3,503 1/21/2025
3.0.371 269 1/20/2025
3.0.370 9,035 1/20/2025
3.0.369 345 1/20/2025
3.0.368 1,872 1/20/2025
3.0.367 136 1/20/2025
3.0.366 1,624 1/20/2025
3.0.365 149 1/20/2025
3.0.364 5,573 1/19/2025
3.0.363 8,695 1/19/2025
3.0.362 8,393 1/19/2025
3.0.361 2,823 1/19/2025
3.0.360 843 1/19/2025
3.0.359 4,784 1/18/2025
3.0.358 189 1/18/2025
3.0.357 4,513 1/18/2025
3.0.356 322 1/18/2025
3.0.355 1,341 1/18/2025
3.0.354 8,335 1/17/2025
3.0.353 183 1/17/2025
3.0.352 10,867 1/16/2025
3.0.351 5,925 1/16/2025
3.0.350 1,033 1/16/2025
3.0.349 6,675 1/15/2025
3.0.348 5,866 1/15/2025
3.0.347 4,776 1/15/2025
3.0.346 5,194 1/15/2025
3.0.345 2,955 1/15/2025
3.0.344 4,090 1/15/2025
3.0.343 1,112 1/15/2025
3.0.342 3,360 1/14/2025
3.0.341 578 1/14/2025
3.0.340 171 1/14/2025
3.0.339 4,950 1/14/2025
3.0.338 1,321 1/14/2025
3.0.337 134 1/14/2025
3.0.336 1,435 1/14/2025
3.0.335 474 1/14/2025
3.0.334 9,667 1/13/2025
3.0.333 2,126 1/13/2025
3.0.332 4,005 1/13/2025
3.0.331 8,232 1/11/2025
3.0.330 3,399 1/11/2025
3.0.329 3,532 1/10/2025
3.0.328 7,198 1/10/2025
3.0.327 154 1/10/2025
3.0.326 712 1/10/2025
3.0.325 148 1/10/2025
3.0.324 147 1/10/2025
3.0.323 11,682 1/3/2025
3.0.322 1,313 1/3/2025
3.0.321 1,686 1/3/2025
3.0.320 529 1/3/2025
3.0.319 1,929 1/3/2025
3.0.318 4,260 1/2/2025
3.0.317 162 1/2/2025
3.0.316 2,957 1/2/2025
3.0.315 165 1/2/2025
3.0.314 4,010 1/2/2025
3.0.313 168 1/2/2025
3.0.312 12,693 1/1/2025
3.0.311 159 1/1/2025
3.0.310 227 12/31/2024
3.0.309 169 12/31/2024
3.0.308 4,682 12/31/2024
3.0.307 159 12/31/2024
3.0.306 251 12/31/2024
3.0.305 897 12/31/2024
3.0.304 162 12/31/2024
3.0.303 1,338 12/31/2024
3.0.302 509 12/31/2024
3.0.301 8,266 12/31/2024
3.0.300 5,969 12/31/2024
3.0.299 1,330 12/31/2024
3.0.298 4,213 12/31/2024
3.0.297 3,190 12/31/2024
3.0.296 148 12/31/2024
3.0.295 161 12/31/2024
3.0.294 15,011 12/28/2024
3.0.293 2,537 12/28/2024
3.0.292 1,467 12/28/2024
3.0.291 1,717 12/27/2024
3.0.290 10,984 12/24/2024
3.0.289 2,392 12/24/2024
3.0.288 2,227 12/24/2024
3.0.287 3,183 12/24/2024
3.0.286 3,381 12/24/2024
3.0.285 2,711 12/24/2024
3.0.284 2,179 12/24/2024
3.0.283 1,727 12/23/2024
3.0.282 3,813 12/23/2024
3.0.281 4,430 12/23/2024
3.0.280 1,728 12/23/2024
3.0.279 5,025 12/23/2024
3.0.278 417 12/23/2024
3.0.277 4,696 12/22/2024
3.0.276 7,404 12/22/2024
3.0.275 7,418 12/22/2024
3.0.274 10,037 12/21/2024
3.0.273 624 12/21/2024
3.0.272 4,883 12/21/2024
3.0.271 6,596 12/21/2024
3.0.270 1,321 12/21/2024
3.0.269 7,697 12/20/2024
3.0.268 14,956 12/18/2024
3.0.267 209 12/18/2024
3.0.266 9,132 12/17/2024
3.0.265 7,866 12/17/2024
3.0.264 508 12/16/2024
3.0.263 1,409 12/16/2024
3.0.262 10,288 12/10/2024
3.0.261 2,945 12/9/2024
3.0.260 4,788 12/9/2024
3.0.259 3,303 12/9/2024
3.0.258 9,125 12/6/2024
3.0.257 1,708 12/6/2024
3.0.256 3,010 12/6/2024
3.0.255 9,193 12/6/2024
3.0.254 251 12/6/2024
3.0.253 440 12/6/2024
3.0.252 1,224 12/6/2024
3.0.251 7,363 12/6/2024
3.0.250 179 12/6/2024
3.0.249 155 12/6/2024
3.0.248 5,738 12/5/2024
3.0.247 5,740 12/5/2024
3.0.246 4,266 12/5/2024
3.0.245 5,240 12/5/2024
3.0.244 779 12/5/2024
3.0.243 638 12/5/2024
3.0.242 6,617 12/4/2024
3.0.241 609 12/4/2024
3.0.240 1,466 12/4/2024
3.0.239 4,480 12/4/2024
3.0.238 4,930 12/3/2024
3.0.237 3,663 12/3/2024
3.0.236 4,244 12/3/2024
3.0.235 4,446 12/3/2024
3.0.234 6,119 12/2/2024
3.0.233 5,079 12/2/2024
3.0.232 3,055 12/2/2024
3.0.231 588 12/2/2024
3.0.230 5,516 12/1/2024
3.0.229 1,094 12/1/2024
3.0.228 4,086 12/1/2024
3.0.227 5,257 12/1/2024
3.0.226 5,537 11/29/2024
3.0.225 9,481 11/21/2024
3.0.224 7,923 11/20/2024
3.0.223 834 11/20/2024
3.0.222 1,428 11/20/2024
3.0.221 730 11/19/2024
3.0.220 6,967 11/19/2024
3.0.219 2,835 11/19/2024
3.0.218 150 11/19/2024
3.0.217 4,717 11/19/2024
3.0.216 142 11/19/2024
3.0.215 13,554 11/14/2024
3.0.214 1,502 11/14/2024
3.0.213 5,185 11/14/2024
3.0.212 1,238 11/14/2024
3.0.211 733 11/14/2024
3.0.210 5,519 11/14/2024
3.0.209 149 11/14/2024
3.0.208 4,551 11/14/2024
3.0.207 263 11/14/2024
2.1.206 15,652 11/13/2024
2.1.205 6,276 11/13/2024
2.1.204 15,153 11/9/2024
2.1.203 1,045 11/9/2024
2.1.202 2,767 11/9/2024
2.1.201 1,576 11/8/2024
2.1.200 1,280 11/8/2024
2.1.199 152 11/8/2024
2.1.198 2,390 11/8/2024
2.1.197 341 11/8/2024
2.1.196 5,716 11/8/2024
2.1.195 7,563 11/8/2024
2.1.194 16,988 11/1/2024
2.1.192 12,092 10/29/2024
2.1.191 12,987 10/28/2024
2.1.190 8,196 10/26/2024
2.1.189 13,592 10/22/2024
2.1.188 1,826 10/22/2024
2.1.187 1,325 10/22/2024
2.1.186 10,838 10/17/2024
2.1.185 7,878 10/15/2024
2.1.184 3,026 10/14/2024
2.1.183 8,646 10/11/2024
2.1.182 1,129 10/11/2024
2.1.181 716 10/11/2024
2.1.180 14,096 10/9/2024
2.1.179 1,115 10/8/2024
2.1.178 7,000 10/8/2024
2.1.177 1,053 10/8/2024
2.1.176 16,098 10/3/2024
2.1.175 4,783 10/3/2024
2.1.174 11,685 10/2/2024
2.1.173 3,566 10/2/2024
2.1.172 8,506 10/1/2024
2.1.171 2,184 10/1/2024
2.1.170 3,468 10/1/2024
2.1.169 9,858 9/29/2024
2.1.168 2,821 9/29/2024
2.1.167 2,094 9/29/2024
2.1.166 11,886 9/27/2024
2.1.165 6,671 9/27/2024
2.1.164 147 9/27/2024
2.1.163 396 9/27/2024
2.1.162 150 9/27/2024
2.1.161 10,033 9/26/2024
2.1.160 9,556 9/26/2024
2.1.159 8,867 9/26/2024
2.1.158 9,026 9/23/2024
2.1.157 4,155 9/23/2024
2.1.156 2,435 9/23/2024
2.1.155 2,483 9/23/2024
2.1.154 8,359 9/23/2024
2.1.153 975 9/23/2024
2.1.152 1,138 9/23/2024
2.1.151 139 9/23/2024
2.1.150 2,851 9/23/2024
2.1.149 15,399 9/17/2024
2.1.148 149 9/17/2024
2.1.147 523 9/17/2024
2.1.146 5,955 9/17/2024
2.1.145 5,155 9/17/2024
2.1.144 6,907 9/17/2024
2.1.143 159 9/17/2024
2.1.142 647 9/17/2024
2.1.141 1,465 9/17/2024
2.1.140 16,559 9/16/2024
2.1.139 9,358 9/12/2024
2.1.138 6,455 9/11/2024
2.1.137 3,765 9/11/2024
2.1.136 7,304 9/11/2024
2.1.135 5,893 9/11/2024
2.1.134 13,686 9/10/2024
2.1.133 2,844 9/10/2024
2.1.132 4,559 9/9/2024
2.1.131 4,820 9/9/2024
2.1.130 3,059 9/9/2024
2.1.129 1,523 9/9/2024
2.1.128 147 9/9/2024
2.1.127 154 9/9/2024
2.1.126 156 9/9/2024
2.1.125 20,629 9/6/2024
2.1.124 8,182 9/6/2024
2.1.123 4,218 9/5/2024
2.1.122 2,500 9/5/2024
2.1.121 5,144 9/5/2024
2.1.120 2,704 9/5/2024
2.1.119 156 9/5/2024
2.1.118 2,052 9/5/2024
2.1.117 7,393 9/5/2024
2.1.116 1,699 9/4/2024
2.1.115 15,187 9/3/2024
2.1.114 1,463 9/3/2024
2.1.113 6,270 9/3/2024
2.1.112 12,095 8/29/2024
2.1.111 8,524 8/26/2024
2.1.110 8,452 8/21/2024
2.1.109 4,820 8/21/2024
2.1.108 552 8/20/2024
2.1.107 6,077 8/20/2024
2.1.106 158 8/20/2024
2.1.105 6,097 8/20/2024
2.1.104 3,635 8/20/2024
2.1.103 11,577 8/15/2024
2.1.102 10,319 8/13/2024
2.1.101 9,710 8/6/2024
2.1.100 11,832 8/1/2024
2.1.99 735 8/1/2024
2.1.98 11,262 7/25/2024
2.1.97 1,382 7/25/2024
2.1.96 1,237 7/25/2024
2.1.95 836 7/24/2024
2.1.94 299 7/24/2024
2.1.93 12,451 7/20/2024
2.1.92 10,326 7/14/2024
2.1.91 2,853 7/14/2024
2.1.90 8,746 7/10/2024
2.1.89 304 7/10/2024
2.1.88 2,656 7/10/2024
2.1.87 2,531 7/10/2024
2.1.86 313 7/10/2024
2.1.85 315 7/10/2024
2.1.83 2,754 7/10/2024
2.1.82 3,904 7/9/2024
2.1.80 1,054 7/9/2024
2.1.79 1,403 7/9/2024
2.1.78 9,701 7/9/2024
2.1.77 4,039 7/9/2024
2.1.76 15,243 7/9/2024
2.1.75 167 7/9/2024
2.1.74 185 7/8/2024
2.1.73 153 7/8/2024
2.1.72 3,092 7/8/2024
2.1.71 147 7/8/2024
2.1.70 8,875 7/8/2024
2.1.69 2,923 7/7/2024
2.1.68 3,340 7/7/2024
2.1.67 850 7/7/2024
2.1.66 1,735 7/7/2024
2.1.65 3,836 7/7/2024
2.1.64 3,419 7/7/2024
2.1.63 157 7/7/2024
2.1.62 4,685 7/5/2024
2.1.61 93,793 5/25/2024
2.1.60 162 5/25/2024
2.1.59 668 5/25/2024
2.1.58 17,909 5/22/2024
2.1.57 158 5/22/2024
2.1.56 14,557 5/17/2024
2.1.55 20,582 4/30/2024
2.1.54 20,313 4/28/2024
2.1.53 165 4/28/2024
2.1.52 875 4/27/2024
2.1.51 156 4/27/2024
2.1.50 31,623 4/12/2024
2.1.49 1,679 4/12/2024
2.1.48 174 4/12/2024
2.1.47 48,620 3/18/2024
2.1.46 10,978 3/13/2024
2.1.45 2,829 3/13/2024
2.1.44 75,663 2/21/2024
2.1.43 3,324 2/21/2024
2.1.42 163 2/21/2024
2.1.41 26,490 2/16/2024
2.1.40 790 2/16/2024
2.1.39 29,168 2/9/2024
2.1.38 22,684 2/6/2024
2.1.37 173 2/6/2024
2.1.36 75,346 1/15/2024
2.1.35 1,045 1/15/2024
2.1.34 30,588 1/5/2024
2.1.33 2,892 1/5/2024
2.1.32 15,598 12/27/2023
2.1.31 1,566 12/27/2023
2.1.30 1,290 12/27/2023
2.1.29 9,246 12/25/2023
2.1.28 1,690 12/25/2023
2.1.27 792 12/25/2023
2.1.26 12,436 12/23/2023
2.1.25 194 12/23/2023
2.1.24 938 12/23/2023
2.1.23 24,178 12/9/2023
2.1.22 1,534 12/9/2023
2.1.21 296 12/9/2023
2.1.20 2,302 12/9/2023
2.1.19 12,717 12/4/2023
2.1.18 964 12/4/2023
2.1.17 6,557 11/26/2023
2.1.16 6,248 11/23/2023
2.1.15 425 11/23/2023
2.1.14 1,148 11/23/2023
2.1.13 11,049 11/19/2023
2.1.12 176 11/19/2023
2.1.11 1,399 11/18/2023
2.1.10 3,974 11/18/2023
2.1.9 2,189 11/18/2023
2.1.8 4,258 11/17/2023
2.1.7 1,164 11/17/2023
2.1.6 2,045 11/17/2023
2.1.5 1,055 11/17/2023
2.1.4 787 11/16/2023
2.1.3 221 11/16/2023
2.0.52 1,463 11/15/2023
2.0.51 2,861 11/15/2023
2.0.2 168 11/16/2023
2.0.1 184 11/16/2023
1.0.50 4,669 11/11/2023
1.0.49 170 11/11/2023
1.0.48 152 11/11/2023
1.0.47 1,478 11/9/2023
1.0.46 173 11/9/2023
1.0.45 5,929 11/6/2023
1.0.44 2,488 11/3/2023
1.0.43 1,993 11/2/2023
1.0.42 2,213 11/1/2023
1.0.41 8,529 10/18/2023
1.0.40 3,308 10/17/2023
1.0.39 1,416 10/16/2023
1.0.38 2,993 10/13/2023
1.0.37 205 10/13/2023
1.0.36 6,933 9/19/2023
1.0.35 2,331 9/18/2023
1.0.34 178 9/18/2023
1.0.33 8,541 8/30/2023
1.0.32 3,012 8/29/2023
1.0.31 4,648 8/24/2023
1.0.30 205 8/24/2023
1.0.29 4,600 8/17/2023
1.0.28 234 8/17/2023
1.0.27 8,446 8/7/2023
1.0.26 233 8/7/2023
1.0.25 8,397 7/10/2023
1.0.24 12,457 7/7/2023
1.0.23 230 7/7/2023
1.0.22 10,324 6/28/2023
1.0.21 48,459 5/24/2023
1.0.20 1,287 5/24/2023
1.0.19 507 5/23/2023
1.0.18 263 5/31/2023
1.0.17 2,982 5/23/2023
1.0.16 3,069 5/22/2023
1.0.15 6,579 5/17/2023
1.0.14 252 5/17/2023
1.0.13 6,070 4/28/2023
1.0.12 2,420 4/24/2023
1.0.11 1,082 4/21/2023
1.0.10 4,992 4/12/2023
1.0.9 1,216 4/11/2023
1.0.8 2,302 4/3/2023
1.0.7 304 4/3/2023
1.0.6 444 4/1/2023
1.0.5 2,155 3/23/2023
1.0.3 624 2/28/2023
1.0.2 531 2/16/2023