Soenneker.Extensions.Enumerable 3.0.487

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.487
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 3.0.487
                    
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.487" />
                    
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.487" />
                    
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.487
                    
#r "nuget: Soenneker.Extensions.Enumerable, 3.0.487"
                    
#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.487
                    
#: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.487
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=3.0.487
                    
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 31,896 9/9/2025
3.0.565 23,580 9/3/2025
3.0.564 2,475 9/3/2025
3.0.563 159 9/3/2025
3.0.562 40,143 8/11/2025
3.0.561 5,434 8/11/2025
3.0.560 418 8/11/2025
3.0.559 27,707 8/5/2025
3.0.558 29,605 7/8/2025
3.0.557 33,647 6/27/2025
3.0.556 2,762 6/27/2025
3.0.555 268 6/27/2025
3.0.554 37,281 6/10/2025
3.0.553 26,813 5/27/2025
3.0.552 1,770 5/27/2025
3.0.551 1,460 5/27/2025
3.0.550 25,455 5/23/2025
3.0.549 2,829 5/23/2025
3.0.548 2,785 5/22/2025
3.0.547 24,469 5/14/2025
3.0.546 14,995 5/8/2025
3.0.545 2,243 5/7/2025
3.0.544 303 5/7/2025
3.0.543 20,939 5/5/2025
3.0.542 2,379 5/5/2025
3.0.541 4,292 5/5/2025
3.0.540 176 5/5/2025
3.0.539 30,200 4/8/2025
3.0.538 3,225 4/8/2025
3.0.537 697 4/8/2025
3.0.536 3,338 4/8/2025
3.0.535 206 4/8/2025
3.0.534 5,193 4/8/2025
3.0.533 807 4/8/2025
3.0.532 8,201 4/8/2025
3.0.531 9,873 4/8/2025
3.0.530 2,119 4/7/2025
3.0.529 4,929 4/7/2025
3.0.528 1,702 4/7/2025
3.0.527 4,070 4/7/2025
3.0.526 10,984 4/7/2025
3.0.525 3,198 4/7/2025
3.0.524 769 4/7/2025
3.0.523 12,671 4/7/2025
3.0.522 2,476 4/7/2025
3.0.521 4,305 4/6/2025
3.0.520 313 4/6/2025
3.0.519 2,040 4/6/2025
3.0.518 2,444 4/6/2025
3.0.517 2,965 4/6/2025
3.0.516 146 4/6/2025
3.0.515 525 4/6/2025
3.0.514 156 4/6/2025
3.0.513 636 4/5/2025
3.0.512 4,052 4/5/2025
3.0.511 1,933 4/5/2025
3.0.510 1,481 4/5/2025
3.0.509 219 4/5/2025
3.0.508 285 4/5/2025
3.0.507 350 4/5/2025
3.0.506 3,695 4/4/2025
3.0.505 171 4/4/2025
3.0.504 3,889 4/4/2025
3.0.503 48,699 4/4/2025
3.0.502 11,173 4/1/2025
3.0.501 6,149 4/1/2025
3.0.500 8,723 3/31/2025
3.0.499 3,845 3/31/2025
3.0.498 8,718 3/31/2025
3.0.497 10,613 3/29/2025
3.0.496 2,806 3/29/2025
3.0.495 8,875 3/27/2025
3.0.494 5,763 3/25/2025
3.0.493 2,222 3/25/2025
3.0.492 14,404 3/21/2025
3.0.491 13,939 3/18/2025
3.0.490 6,738 3/18/2025
3.0.489 10,070 3/15/2025
3.0.488 3,186 3/15/2025
3.0.487 11,359 3/12/2025
3.0.486 4,192 3/12/2025
3.0.485 649 3/12/2025
3.0.484 4,231 3/11/2025
3.0.483 477 3/11/2025
3.0.482 1,638 3/11/2025
3.0.481 3,106 3/11/2025
3.0.480 4,754 3/11/2025
3.0.479 4,134 3/11/2025
3.0.478 2,745 3/11/2025
3.0.477 16,499 3/7/2025
3.0.476 4,940 3/7/2025
3.0.475 9,917 3/2/2025
3.0.474 3,750 3/2/2025
3.0.473 931 3/2/2025
3.0.472 7,087 3/2/2025
3.0.471 6,617 3/1/2025
3.0.470 319 3/1/2025
3.0.469 6,368 3/1/2025
3.0.468 142 3/1/2025
3.0.467 2,254 3/1/2025
3.0.466 17,079 2/26/2025
3.0.465 1,508 2/25/2025
3.0.464 4,224 2/25/2025
3.0.463 2,718 2/25/2025
3.0.462 1,404 2/25/2025
3.0.461 15,960 2/23/2025
3.0.460 2,762 2/22/2025
3.0.459 12,643 2/22/2025
3.0.458 3,679 2/22/2025
3.0.457 4,512 2/22/2025
3.0.456 702 2/21/2025
3.0.455 7,147 2/21/2025
3.0.454 15,714 2/19/2025
3.0.453 6,385 2/18/2025
3.0.452 1,378 2/18/2025
3.0.451 567 2/18/2025
3.0.450 7,674 2/18/2025
3.0.449 139 2/18/2025
3.0.448 17,956 2/14/2025
3.0.447 1,849 2/14/2025
3.0.446 5,214 2/13/2025
3.0.445 6,357 2/13/2025
3.0.444 7,063 2/12/2025
3.0.443 2,232 2/12/2025
3.0.442 956 2/12/2025
3.0.441 2,811 2/12/2025
3.0.440 943 2/12/2025
3.0.439 656 2/11/2025
3.0.438 10,568 2/11/2025
3.0.437 3,627 2/11/2025
3.0.436 553 2/11/2025
3.0.435 3,479 2/10/2025
3.0.434 151 2/10/2025
3.0.433 2,285 2/10/2025
3.0.432 157 2/10/2025
3.0.431 18,797 2/9/2025
3.0.430 10,598 2/9/2025
3.0.429 502 2/9/2025
3.0.428 353 2/8/2025
3.0.427 293 2/8/2025
3.0.426 371 2/8/2025
3.0.425 11,464 2/8/2025
3.0.424 3,767 2/7/2025
3.0.423 2,678 2/7/2025
3.0.422 3,035 2/7/2025
3.0.421 141 2/7/2025
3.0.420 521 2/7/2025
3.0.419 154 2/7/2025
3.0.418 2,692 2/7/2025
3.0.417 145 2/7/2025
3.0.416 19,330 2/7/2025
3.0.415 9,729 2/5/2025
3.0.414 1,123 2/5/2025
3.0.413 1,608 2/5/2025
3.0.412 337 2/5/2025
3.0.411 3,396 2/5/2025
3.0.410 7,471 2/5/2025
3.0.409 16,281 1/28/2025
3.0.408 1,154 1/28/2025
3.0.407 356 1/28/2025
3.0.406 3,795 1/28/2025
3.0.405 7,989 1/27/2025
3.0.404 2,116 1/27/2025
3.0.403 135 1/27/2025
3.0.402 7,738 1/27/2025
3.0.401 141 1/27/2025
3.0.400 8,621 1/26/2025
3.0.399 1,781 1/26/2025
3.0.398 1,368 1/26/2025
3.0.397 741 1/26/2025
3.0.396 319 1/26/2025
3.0.395 3,766 1/25/2025
3.0.394 8,160 1/25/2025
3.0.393 6,108 1/25/2025
3.0.392 636 1/25/2025
3.0.391 15,271 1/24/2025
3.0.390 2,817 1/24/2025
3.0.389 4,998 1/24/2025
3.0.388 5,723 1/24/2025
3.0.387 1,318 1/23/2025
3.0.386 1,605 1/23/2025
3.0.385 192 1/23/2025
3.0.384 13,484 1/22/2025
3.0.383 1,699 1/21/2025
3.0.382 496 1/21/2025
3.0.381 1,631 1/21/2025
3.0.380 1,608 1/21/2025
3.0.379 1,797 1/21/2025
3.0.378 1,358 1/21/2025
3.0.377 1,856 1/21/2025
3.0.376 151 1/21/2025
3.0.375 8,702 1/21/2025
3.0.374 2,427 1/21/2025
3.0.373 1,979 1/21/2025
3.0.372 3,781 1/21/2025
3.0.371 269 1/20/2025
3.0.370 9,765 1/20/2025
3.0.369 349 1/20/2025
3.0.368 2,029 1/20/2025
3.0.367 136 1/20/2025
3.0.366 1,737 1/20/2025
3.0.365 149 1/20/2025
3.0.364 6,115 1/19/2025
3.0.363 9,278 1/19/2025
3.0.362 9,153 1/19/2025
3.0.361 3,089 1/19/2025
3.0.360 895 1/19/2025
3.0.359 5,183 1/18/2025
3.0.358 189 1/18/2025
3.0.357 5,011 1/18/2025
3.0.356 373 1/18/2025
3.0.355 1,433 1/18/2025
3.0.354 9,083 1/17/2025
3.0.353 183 1/17/2025
3.0.352 11,873 1/16/2025
3.0.351 6,413 1/16/2025
3.0.350 1,149 1/16/2025
3.0.349 7,307 1/15/2025
3.0.348 6,273 1/15/2025
3.0.347 5,242 1/15/2025
3.0.346 5,522 1/15/2025
3.0.345 3,287 1/15/2025
3.0.344 4,403 1/15/2025
3.0.343 1,284 1/15/2025
3.0.342 3,706 1/14/2025
3.0.341 653 1/14/2025
3.0.340 178 1/14/2025
3.0.339 5,484 1/14/2025
3.0.338 1,410 1/14/2025
3.0.337 134 1/14/2025
3.0.336 1,607 1/14/2025
3.0.335 520 1/14/2025
3.0.334 10,464 1/13/2025
3.0.333 2,317 1/13/2025
3.0.332 4,430 1/13/2025
3.0.331 9,013 1/11/2025
3.0.330 3,718 1/11/2025
3.0.329 3,795 1/10/2025
3.0.328 7,786 1/10/2025
3.0.327 154 1/10/2025
3.0.326 731 1/10/2025
3.0.325 148 1/10/2025
3.0.324 147 1/10/2025
3.0.323 12,777 1/3/2025
3.0.322 1,402 1/3/2025
3.0.321 1,785 1/3/2025
3.0.320 544 1/3/2025
3.0.319 2,064 1/3/2025
3.0.318 4,645 1/2/2025
3.0.317 163 1/2/2025
3.0.316 3,118 1/2/2025
3.0.315 165 1/2/2025
3.0.314 4,344 1/2/2025
3.0.313 168 1/2/2025
3.0.312 13,807 1/1/2025
3.0.311 161 1/1/2025
3.0.310 227 12/31/2024
3.0.309 170 12/31/2024
3.0.308 5,089 12/31/2024
3.0.307 161 12/31/2024
3.0.306 257 12/31/2024
3.0.305 906 12/31/2024
3.0.304 163 12/31/2024
3.0.303 1,441 12/31/2024
3.0.302 518 12/31/2024
3.0.301 8,944 12/31/2024
3.0.300 6,418 12/31/2024
3.0.299 1,342 12/31/2024
3.0.298 4,477 12/31/2024
3.0.297 3,507 12/31/2024
3.0.296 149 12/31/2024
3.0.295 162 12/31/2024
3.0.294 16,356 12/28/2024
3.0.293 2,720 12/28/2024
3.0.292 1,582 12/28/2024
3.0.291 1,902 12/27/2024
3.0.290 11,915 12/24/2024
3.0.289 2,573 12/24/2024
3.0.288 2,423 12/24/2024
3.0.287 3,448 12/24/2024
3.0.286 3,661 12/24/2024
3.0.285 2,976 12/24/2024
3.0.284 2,373 12/24/2024
3.0.283 1,856 12/23/2024
3.0.282 4,140 12/23/2024
3.0.281 4,705 12/23/2024
3.0.280 1,865 12/23/2024
3.0.279 5,370 12/23/2024
3.0.278 424 12/23/2024
3.0.277 5,006 12/22/2024
3.0.276 7,977 12/22/2024
3.0.275 7,965 12/22/2024
3.0.274 10,952 12/21/2024
3.0.273 634 12/21/2024
3.0.272 5,215 12/21/2024
3.0.271 7,006 12/21/2024
3.0.270 1,389 12/21/2024
3.0.269 8,237 12/20/2024
3.0.268 16,072 12/18/2024
3.0.267 211 12/18/2024
3.0.266 10,314 12/17/2024
3.0.265 8,607 12/17/2024
3.0.264 513 12/16/2024
3.0.263 1,499 12/16/2024
3.0.262 11,260 12/10/2024
3.0.261 3,175 12/9/2024
3.0.260 5,140 12/9/2024
3.0.259 3,569 12/9/2024
3.0.258 9,934 12/6/2024
3.0.257 1,800 12/6/2024
3.0.256 3,173 12/6/2024
3.0.255 9,863 12/6/2024
3.0.254 258 12/6/2024
3.0.253 450 12/6/2024
3.0.252 1,272 12/6/2024
3.0.251 7,883 12/6/2024
3.0.250 181 12/6/2024
3.0.249 155 12/6/2024
3.0.248 6,108 12/5/2024
3.0.247 6,074 12/5/2024
3.0.246 4,482 12/5/2024
3.0.245 5,684 12/5/2024
3.0.244 826 12/5/2024
3.0.243 653 12/5/2024
3.0.242 7,179 12/4/2024
3.0.241 621 12/4/2024
3.0.240 1,548 12/4/2024
3.0.239 4,869 12/4/2024
3.0.238 5,340 12/3/2024
3.0.237 3,933 12/3/2024
3.0.236 5,079 12/3/2024
3.0.235 4,848 12/3/2024
3.0.234 6,578 12/2/2024
3.0.233 5,414 12/2/2024
3.0.232 3,244 12/2/2024
3.0.231 598 12/2/2024
3.0.230 5,973 12/1/2024
3.0.229 1,100 12/1/2024
3.0.228 4,344 12/1/2024
3.0.227 5,657 12/1/2024
3.0.226 5,991 11/29/2024
3.0.225 10,141 11/21/2024
3.0.224 8,518 11/20/2024
3.0.223 864 11/20/2024
3.0.222 1,514 11/20/2024
3.0.221 770 11/19/2024
3.0.220 7,491 11/19/2024
3.0.219 3,061 11/19/2024
3.0.218 152 11/19/2024
3.0.217 5,066 11/19/2024
3.0.216 142 11/19/2024
3.0.215 14,542 11/14/2024
3.0.214 1,590 11/14/2024
3.0.213 5,517 11/14/2024
3.0.212 1,294 11/14/2024
3.0.211 760 11/14/2024
3.0.210 5,903 11/14/2024
3.0.209 149 11/14/2024
3.0.208 4,840 11/14/2024
3.0.207 270 11/14/2024
2.1.206 16,833 11/13/2024
2.1.205 6,758 11/13/2024
2.1.204 16,270 11/9/2024
2.1.203 1,100 11/9/2024
2.1.202 2,929 11/9/2024
2.1.201 1,708 11/8/2024
2.1.200 1,413 11/8/2024
2.1.199 152 11/8/2024
2.1.198 2,532 11/8/2024
2.1.197 349 11/8/2024
2.1.196 6,016 11/8/2024
2.1.195 8,053 11/8/2024
2.1.194 18,164 11/1/2024
2.1.192 12,997 10/29/2024
2.1.191 13,913 10/28/2024
2.1.190 8,796 10/26/2024
2.1.189 14,367 10/22/2024
2.1.188 1,942 10/22/2024
2.1.187 1,467 10/22/2024
2.1.186 11,697 10/17/2024
2.1.185 8,431 10/15/2024
2.1.184 3,180 10/14/2024
2.1.183 9,323 10/11/2024
2.1.182 1,233 10/11/2024
2.1.181 721 10/11/2024
2.1.180 15,041 10/9/2024
2.1.179 1,208 10/8/2024
2.1.178 7,350 10/8/2024
2.1.177 1,130 10/8/2024
2.1.176 17,122 10/3/2024
2.1.175 5,076 10/3/2024
2.1.174 12,465 10/2/2024
2.1.173 3,737 10/2/2024
2.1.172 8,980 10/1/2024
2.1.171 2,290 10/1/2024
2.1.170 3,667 10/1/2024
2.1.169 10,416 9/29/2024
2.1.168 2,963 9/29/2024
2.1.167 2,174 9/29/2024
2.1.166 12,607 9/27/2024
2.1.165 7,045 9/27/2024
2.1.164 148 9/27/2024
2.1.163 405 9/27/2024
2.1.162 151 9/27/2024
2.1.161 10,533 9/26/2024
2.1.160 10,133 9/26/2024
2.1.159 9,320 9/26/2024
2.1.158 9,492 9/23/2024
2.1.157 4,396 9/23/2024
2.1.156 2,595 9/23/2024
2.1.155 2,639 9/23/2024
2.1.154 8,770 9/23/2024
2.1.153 983 9/23/2024
2.1.152 1,220 9/23/2024
2.1.151 140 9/23/2024
2.1.150 3,003 9/23/2024
2.1.149 16,190 9/17/2024
2.1.148 150 9/17/2024
2.1.147 531 9/17/2024
2.1.146 6,348 9/17/2024
2.1.145 5,476 9/17/2024
2.1.144 7,282 9/17/2024
2.1.143 160 9/17/2024
2.1.142 667 9/17/2024
2.1.141 1,579 9/17/2024
2.1.140 17,417 9/16/2024
2.1.139 9,796 9/12/2024
2.1.138 6,748 9/11/2024
2.1.137 4,044 9/11/2024
2.1.136 7,581 9/11/2024
2.1.135 6,305 9/11/2024
2.1.134 14,366 9/10/2024
2.1.133 2,996 9/10/2024
2.1.132 4,777 9/9/2024
2.1.131 5,024 9/9/2024
2.1.130 3,129 9/9/2024
2.1.129 1,574 9/9/2024
2.1.128 148 9/9/2024
2.1.127 154 9/9/2024
2.1.126 157 9/9/2024
2.1.125 21,783 9/6/2024
2.1.124 8,519 9/6/2024
2.1.123 4,380 9/5/2024
2.1.122 2,576 9/5/2024
2.1.121 5,412 9/5/2024
2.1.120 2,818 9/5/2024
2.1.119 157 9/5/2024
2.1.118 2,113 9/5/2024
2.1.117 7,680 9/5/2024
2.1.116 1,751 9/4/2024
2.1.115 15,870 9/3/2024
2.1.114 1,523 9/3/2024
2.1.113 6,490 9/3/2024
2.1.112 12,625 8/29/2024
2.1.111 8,914 8/26/2024
2.1.110 8,881 8/21/2024
2.1.109 5,074 8/21/2024
2.1.108 570 8/20/2024
2.1.107 6,326 8/20/2024
2.1.106 159 8/20/2024
2.1.105 6,355 8/20/2024
2.1.104 3,842 8/20/2024
2.1.103 12,088 8/15/2024
2.1.102 10,805 8/13/2024
2.1.101 10,249 8/6/2024
2.1.100 12,496 8/1/2024
2.1.99 754 8/1/2024
2.1.98 11,844 7/25/2024
2.1.97 1,481 7/25/2024
2.1.96 1,352 7/25/2024
2.1.95 905 7/24/2024
2.1.94 303 7/24/2024
2.1.93 13,056 7/20/2024
2.1.92 10,807 7/14/2024
2.1.91 2,977 7/14/2024
2.1.90 9,213 7/10/2024
2.1.89 312 7/10/2024
2.1.88 2,814 7/10/2024
2.1.87 2,614 7/10/2024
2.1.86 313 7/10/2024
2.1.85 315 7/10/2024
2.1.83 2,818 7/10/2024
2.1.82 4,103 7/9/2024
2.1.80 1,107 7/9/2024
2.1.79 1,430 7/9/2024
2.1.78 10,260 7/9/2024
2.1.77 4,109 7/9/2024
2.1.76 15,485 7/9/2024
2.1.75 167 7/9/2024
2.1.74 185 7/8/2024
2.1.73 154 7/8/2024
2.1.72 3,251 7/8/2024
2.1.71 148 7/8/2024
2.1.70 9,367 7/8/2024
2.1.69 3,091 7/7/2024
2.1.68 3,495 7/7/2024
2.1.67 875 7/7/2024
2.1.66 1,825 7/7/2024
2.1.65 3,996 7/7/2024
2.1.64 3,585 7/7/2024
2.1.63 160 7/7/2024
2.1.62 4,860 7/5/2024
2.1.61 98,070 5/25/2024
2.1.60 162 5/25/2024
2.1.59 673 5/25/2024
2.1.58 18,677 5/22/2024
2.1.57 160 5/22/2024
2.1.56 15,279 5/17/2024
2.1.55 21,410 4/30/2024
2.1.54 21,374 4/28/2024
2.1.53 165 4/28/2024
2.1.52 917 4/27/2024
2.1.51 157 4/27/2024
2.1.50 33,125 4/12/2024
2.1.49 1,780 4/12/2024
2.1.48 177 4/12/2024
2.1.47 51,429 3/18/2024
2.1.46 11,620 3/13/2024
2.1.45 2,964 3/13/2024
2.1.44 80,074 2/21/2024
2.1.43 3,521 2/21/2024
2.1.42 164 2/21/2024
2.1.41 27,952 2/16/2024
2.1.40 791 2/16/2024
2.1.39 30,571 2/9/2024
2.1.38 23,952 2/6/2024
2.1.37 174 2/6/2024
2.1.36 79,064 1/15/2024
2.1.35 1,054 1/15/2024
2.1.34 31,851 1/5/2024
2.1.33 2,967 1/5/2024
2.1.32 16,441 12/27/2023
2.1.31 1,582 12/27/2023
2.1.30 1,310 12/27/2023
2.1.29 9,869 12/25/2023
2.1.28 1,745 12/25/2023
2.1.27 833 12/25/2023
2.1.26 13,119 12/23/2023
2.1.25 194 12/23/2023
2.1.24 969 12/23/2023
2.1.23 25,622 12/9/2023
2.1.22 1,573 12/9/2023
2.1.21 318 12/9/2023
2.1.20 2,439 12/9/2023
2.1.19 13,443 12/4/2023
2.1.18 1,012 12/4/2023
2.1.17 6,955 11/26/2023
2.1.16 6,614 11/23/2023
2.1.15 427 11/23/2023
2.1.14 1,240 11/23/2023
2.1.13 11,857 11/19/2023
2.1.12 178 11/19/2023
2.1.11 1,511 11/18/2023
2.1.10 4,234 11/18/2023
2.1.9 2,370 11/18/2023
2.1.8 4,647 11/17/2023
2.1.7 1,241 11/17/2023
2.1.6 2,168 11/17/2023
2.1.5 1,166 11/17/2023
2.1.4 811 11/16/2023
2.1.3 237 11/16/2023
2.0.52 1,548 11/15/2023
2.0.51 2,951 11/15/2023
2.0.2 169 11/16/2023
2.0.1 185 11/16/2023
1.0.50 4,926 11/11/2023
1.0.49 170 11/11/2023
1.0.48 152 11/11/2023
1.0.47 1,498 11/9/2023
1.0.46 174 11/9/2023
1.0.45 6,339 11/6/2023
1.0.44 2,594 11/3/2023
1.0.43 2,076 11/2/2023
1.0.42 2,344 11/1/2023
1.0.41 8,979 10/18/2023
1.0.40 3,523 10/17/2023
1.0.39 1,479 10/16/2023
1.0.38 3,143 10/13/2023
1.0.37 207 10/13/2023
1.0.36 7,363 9/19/2023
1.0.35 2,452 9/18/2023
1.0.34 179 9/18/2023
1.0.33 9,067 8/30/2023
1.0.32 3,168 8/29/2023
1.0.31 4,834 8/24/2023
1.0.30 205 8/24/2023
1.0.29 4,854 8/17/2023
1.0.28 236 8/17/2023
1.0.27 8,936 8/7/2023
1.0.26 235 8/7/2023
1.0.25 9,018 7/10/2023
1.0.24 12,999 7/7/2023
1.0.23 232 7/7/2023
1.0.22 10,899 6/28/2023
1.0.21 50,637 5/24/2023
1.0.20 1,303 5/24/2023
1.0.19 512 5/23/2023
1.0.18 265 5/31/2023
1.0.17 3,079 5/23/2023
1.0.16 3,215 5/22/2023
1.0.15 6,761 5/17/2023
1.0.14 253 5/17/2023
1.0.13 6,267 4/28/2023
1.0.12 2,490 4/24/2023
1.0.11 1,104 4/21/2023
1.0.10 5,099 4/12/2023
1.0.9 1,235 4/11/2023
1.0.8 2,353 4/3/2023
1.0.7 305 4/3/2023
1.0.6 445 4/1/2023
1.0.5 2,195 3/23/2023
1.0.3 630 2/28/2023
1.0.2 543 2/16/2023