Soenneker.Extensions.Enumerable 1.0.20

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 1.0.20
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 1.0.20
                    
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="1.0.20" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Extensions.Enumerable" Version="1.0.20" />
                    
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 1.0.20
                    
#r "nuget: Soenneker.Extensions.Enumerable, 1.0.20"
                    
#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.
#addin nuget:?package=Soenneker.Extensions.Enumerable&version=1.0.20
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=1.0.20
                    
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

Install-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 net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  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 (14)

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.557 14 6/27/2025
3.0.556 22 6/27/2025
3.0.555 25 6/27/2025
3.0.554 15,856 6/10/2025
3.0.553 20,929 5/27/2025
3.0.552 1,355 5/27/2025
3.0.551 1,117 5/27/2025
3.0.550 19,463 5/23/2025
3.0.549 2,148 5/23/2025
3.0.548 2,153 5/22/2025
3.0.547 18,393 5/14/2025
3.0.546 11,510 5/8/2025
3.0.545 1,726 5/7/2025
3.0.544 242 5/7/2025
3.0.543 16,512 5/5/2025
3.0.542 1,827 5/5/2025
3.0.541 3,347 5/5/2025
3.0.540 137 5/5/2025
3.0.539 23,468 4/8/2025
3.0.538 2,456 4/8/2025
3.0.537 531 4/8/2025
3.0.536 2,568 4/8/2025
3.0.535 166 4/8/2025
3.0.534 3,933 4/8/2025
3.0.533 645 4/8/2025
3.0.532 6,171 4/8/2025
3.0.531 7,315 4/8/2025
3.0.530 1,616 4/7/2025
3.0.529 3,672 4/7/2025
3.0.528 1,261 4/7/2025
3.0.527 3,079 4/7/2025
3.0.526 8,149 4/7/2025
3.0.525 2,405 4/7/2025
3.0.524 616 4/7/2025
3.0.523 9,284 4/7/2025
3.0.522 1,905 4/7/2025
3.0.521 3,287 4/6/2025
3.0.520 246 4/6/2025
3.0.519 1,501 4/6/2025
3.0.518 1,870 4/6/2025
3.0.517 2,221 4/6/2025
3.0.516 110 4/6/2025
3.0.515 379 4/6/2025
3.0.514 113 4/6/2025
3.0.513 482 4/5/2025
3.0.512 3,108 4/5/2025
3.0.511 1,456 4/5/2025
3.0.510 1,116 4/5/2025
3.0.509 166 4/5/2025
3.0.508 216 4/5/2025
3.0.507 265 4/5/2025
3.0.506 2,887 4/4/2025
3.0.505 125 4/4/2025
3.0.504 3,012 4/4/2025
3.0.503 37,231 4/4/2025
3.0.502 8,250 4/1/2025
3.0.501 4,529 4/1/2025
3.0.500 6,422 3/31/2025
3.0.499 2,824 3/31/2025
3.0.498 6,504 3/31/2025
3.0.497 7,823 3/29/2025
3.0.496 2,078 3/29/2025
3.0.495 6,486 3/27/2025
3.0.494 4,368 3/25/2025
3.0.493 1,743 3/25/2025
3.0.492 10,558 3/21/2025
3.0.491 10,742 3/18/2025
3.0.490 4,919 3/18/2025
3.0.489 7,346 3/15/2025
3.0.488 2,283 3/15/2025
3.0.487 8,342 3/12/2025
3.0.486 3,134 3/12/2025
3.0.485 508 3/12/2025
3.0.484 3,138 3/11/2025
3.0.483 385 3/11/2025
3.0.482 1,272 3/11/2025
3.0.481 2,339 3/11/2025
3.0.480 3,484 3/11/2025
3.0.479 3,190 3/11/2025
3.0.478 2,010 3/11/2025
3.0.477 12,313 3/7/2025
3.0.476 3,663 3/7/2025
3.0.475 7,414 3/2/2025
3.0.474 2,699 3/2/2025
3.0.473 668 3/2/2025
3.0.472 5,158 3/2/2025
3.0.471 4,723 3/1/2025
3.0.470 234 3/1/2025
3.0.469 4,474 3/1/2025
3.0.468 102 3/1/2025
3.0.467 1,651 3/1/2025
3.0.466 12,712 2/26/2025
3.0.465 1,120 2/25/2025
3.0.464 3,087 2/25/2025
3.0.463 2,014 2/25/2025
3.0.462 1,023 2/25/2025
3.0.461 11,644 2/23/2025
3.0.460 2,088 2/22/2025
3.0.459 9,277 2/22/2025
3.0.458 2,686 2/22/2025
3.0.457 3,254 2/22/2025
3.0.456 528 2/21/2025
3.0.455 5,231 2/21/2025
3.0.454 11,544 2/19/2025
3.0.453 4,841 2/18/2025
3.0.452 1,056 2/18/2025
3.0.451 424 2/18/2025
3.0.450 5,711 2/18/2025
3.0.449 107 2/18/2025
3.0.448 12,438 2/14/2025
3.0.447 1,384 2/14/2025
3.0.446 3,832 2/13/2025
3.0.445 4,700 2/13/2025
3.0.444 5,345 2/12/2025
3.0.443 1,680 2/12/2025
3.0.442 738 2/12/2025
3.0.441 2,129 2/12/2025
3.0.440 736 2/12/2025
3.0.439 507 2/11/2025
3.0.438 7,849 2/11/2025
3.0.437 2,656 2/11/2025
3.0.436 448 2/11/2025
3.0.435 2,593 2/10/2025
3.0.434 115 2/10/2025
3.0.433 1,755 2/10/2025
3.0.432 120 2/10/2025
3.0.431 13,771 2/9/2025
3.0.430 7,976 2/9/2025
3.0.429 359 2/9/2025
3.0.428 267 2/8/2025
3.0.427 218 2/8/2025
3.0.426 276 2/8/2025
3.0.425 8,286 2/8/2025
3.0.424 2,720 2/7/2025
3.0.423 1,923 2/7/2025
3.0.422 2,457 2/7/2025
3.0.421 112 2/7/2025
3.0.420 408 2/7/2025
3.0.419 112 2/7/2025
3.0.418 1,973 2/7/2025
3.0.417 111 2/7/2025
3.0.416 14,578 2/7/2025
3.0.415 7,157 2/5/2025
3.0.414 842 2/5/2025
3.0.413 1,169 2/5/2025
3.0.412 254 2/5/2025
3.0.411 2,538 2/5/2025
3.0.410 5,360 2/5/2025
3.0.409 12,286 1/28/2025
3.0.408 844 1/28/2025
3.0.407 263 1/28/2025
3.0.406 2,644 1/28/2025
3.0.405 5,505 1/27/2025
3.0.404 1,564 1/27/2025
3.0.403 104 1/27/2025
3.0.402 5,371 1/27/2025
3.0.401 100 1/27/2025
3.0.400 6,142 1/26/2025
3.0.399 1,294 1/26/2025
3.0.398 990 1/26/2025
3.0.397 542 1/26/2025
3.0.396 255 1/26/2025
3.0.395 2,742 1/25/2025
3.0.394 5,899 1/25/2025
3.0.393 4,292 1/25/2025
3.0.392 443 1/25/2025
3.0.391 10,779 1/24/2025
3.0.390 1,980 1/24/2025
3.0.389 3,485 1/24/2025
3.0.388 4,075 1/24/2025
3.0.387 940 1/23/2025
3.0.386 1,160 1/23/2025
3.0.385 150 1/23/2025
3.0.384 9,594 1/22/2025
3.0.383 1,239 1/21/2025
3.0.382 379 1/21/2025
3.0.381 1,201 1/21/2025
3.0.380 1,162 1/21/2025
3.0.379 1,337 1/21/2025
3.0.378 1,027 1/21/2025
3.0.377 1,370 1/21/2025
3.0.376 109 1/21/2025
3.0.375 6,186 1/21/2025
3.0.374 1,756 1/21/2025
3.0.373 1,516 1/21/2025
3.0.372 2,649 1/21/2025
3.0.371 193 1/20/2025
3.0.370 6,952 1/20/2025
3.0.369 260 1/20/2025
3.0.368 1,445 1/20/2025
3.0.367 105 1/20/2025
3.0.366 1,374 1/20/2025
3.0.365 121 1/20/2025
3.0.364 4,246 1/19/2025
3.0.363 6,632 1/19/2025
3.0.362 6,432 1/19/2025
3.0.361 2,188 1/19/2025
3.0.360 633 1/19/2025
3.0.359 3,638 1/18/2025
3.0.358 144 1/18/2025
3.0.357 3,552 1/18/2025
3.0.356 275 1/18/2025
3.0.355 1,020 1/18/2025
3.0.354 6,391 1/17/2025
3.0.353 137 1/17/2025
3.0.352 8,288 1/16/2025
3.0.351 4,566 1/16/2025
3.0.350 846 1/16/2025
3.0.349 5,150 1/15/2025
3.0.348 4,415 1/15/2025
3.0.347 3,727 1/15/2025
3.0.346 3,934 1/15/2025
3.0.345 2,308 1/15/2025
3.0.344 3,057 1/15/2025
3.0.343 807 1/15/2025
3.0.342 2,455 1/14/2025
3.0.341 423 1/14/2025
3.0.340 133 1/14/2025
3.0.339 3,472 1/14/2025
3.0.338 952 1/14/2025
3.0.337 90 1/14/2025
3.0.336 1,246 1/14/2025
3.0.335 358 1/14/2025
3.0.334 7,126 1/13/2025
3.0.333 1,592 1/13/2025
3.0.332 3,016 1/13/2025
3.0.331 6,081 1/11/2025
3.0.330 2,526 1/11/2025
3.0.329 2,787 1/10/2025
3.0.328 5,576 1/10/2025
3.0.327 120 1/10/2025
3.0.326 517 1/10/2025
3.0.325 108 1/10/2025
3.0.324 117 1/10/2025
3.0.323 8,988 1/3/2025
3.0.322 1,040 1/3/2025
3.0.321 1,315 1/3/2025
3.0.320 416 1/3/2025
3.0.319 1,488 1/3/2025
3.0.318 3,307 1/2/2025
3.0.317 125 1/2/2025
3.0.316 2,288 1/2/2025
3.0.315 130 1/2/2025
3.0.314 3,048 1/2/2025
3.0.313 134 1/2/2025
3.0.312 9,885 1/1/2025
3.0.311 123 1/1/2025
3.0.310 172 12/31/2024
3.0.309 132 12/31/2024
3.0.308 3,580 12/31/2024
3.0.307 123 12/31/2024
3.0.306 196 12/31/2024
3.0.305 694 12/31/2024
3.0.304 126 12/31/2024
3.0.303 1,090 12/31/2024
3.0.302 401 12/31/2024
3.0.301 6,435 12/31/2024
3.0.300 4,529 12/31/2024
3.0.299 1,045 12/31/2024
3.0.298 3,289 12/31/2024
3.0.297 2,497 12/31/2024
3.0.296 119 12/31/2024
3.0.295 125 12/31/2024
3.0.294 11,586 12/28/2024
3.0.293 1,957 12/28/2024
3.0.292 1,121 12/28/2024
3.0.291 1,353 12/27/2024
3.0.290 8,484 12/24/2024
3.0.289 1,847 12/24/2024
3.0.288 1,796 12/24/2024
3.0.287 2,523 12/24/2024
3.0.286 2,707 12/24/2024
3.0.285 2,141 12/24/2024
3.0.284 1,766 12/24/2024
3.0.283 1,400 12/23/2024
3.0.282 2,956 12/23/2024
3.0.281 3,389 12/23/2024
3.0.280 1,342 12/23/2024
3.0.279 3,799 12/23/2024
3.0.278 314 12/23/2024
3.0.277 3,635 12/22/2024
3.0.276 5,750 12/22/2024
3.0.275 5,772 12/22/2024
3.0.274 7,803 12/21/2024
3.0.273 461 12/21/2024
3.0.272 3,830 12/21/2024
3.0.271 4,962 12/21/2024
3.0.270 1,078 12/21/2024
3.0.269 5,933 12/20/2024
3.0.268 11,592 12/18/2024
3.0.267 166 12/18/2024
3.0.266 7,591 12/17/2024
3.0.265 6,147 12/17/2024
3.0.264 387 12/16/2024
3.0.263 1,132 12/16/2024
3.0.262 8,164 12/10/2024
3.0.261 2,277 12/9/2024
3.0.260 3,712 12/9/2024
3.0.259 2,530 12/9/2024
3.0.258 7,033 12/6/2024
3.0.257 1,339 12/6/2024
3.0.256 2,320 12/6/2024
3.0.255 7,152 12/6/2024
3.0.254 213 12/6/2024
3.0.253 347 12/6/2024
3.0.252 1,016 12/6/2024
3.0.251 5,671 12/6/2024
3.0.250 140 12/6/2024
3.0.249 132 12/6/2024
3.0.248 4,504 12/5/2024
3.0.247 4,499 12/5/2024
3.0.246 3,442 12/5/2024
3.0.245 4,108 12/5/2024
3.0.244 602 12/5/2024
3.0.243 523 12/5/2024
3.0.242 5,203 12/4/2024
3.0.241 486 12/4/2024
3.0.240 1,138 12/4/2024
3.0.239 3,618 12/4/2024
3.0.238 3,820 12/3/2024
3.0.237 2,867 12/3/2024
3.0.236 3,634 12/3/2024
3.0.235 3,428 12/3/2024
3.0.234 4,738 12/2/2024
3.0.233 3,899 12/2/2024
3.0.232 2,397 12/2/2024
3.0.231 444 12/2/2024
3.0.230 4,321 12/1/2024
3.0.229 716 12/1/2024
3.0.228 3,165 12/1/2024
3.0.227 4,100 12/1/2024
3.0.226 4,309 11/29/2024
3.0.225 7,462 11/21/2024
3.0.224 6,223 11/20/2024
3.0.223 684 11/20/2024
3.0.222 1,161 11/20/2024
3.0.221 585 11/19/2024
3.0.220 5,692 11/19/2024
3.0.219 2,334 11/19/2024
3.0.218 110 11/19/2024
3.0.217 3,836 11/19/2024
3.0.216 101 11/19/2024
3.0.215 10,625 11/14/2024
3.0.214 1,182 11/14/2024
3.0.213 4,116 11/14/2024
3.0.212 991 11/14/2024
3.0.211 589 11/14/2024
3.0.210 4,362 11/14/2024
3.0.209 113 11/14/2024
3.0.208 3,460 11/14/2024
3.0.207 204 11/14/2024
2.1.206 12,461 11/13/2024
2.1.205 4,985 11/13/2024
2.1.204 12,139 11/9/2024
2.1.203 862 11/9/2024
2.1.202 2,180 11/9/2024
2.1.201 1,288 11/8/2024
2.1.200 1,091 11/8/2024
2.1.199 116 11/8/2024
2.1.198 1,919 11/8/2024
2.1.197 268 11/8/2024
2.1.196 4,641 11/8/2024
2.1.195 6,052 11/8/2024
2.1.194 13,353 11/1/2024
2.1.192 9,664 10/29/2024
2.1.191 10,405 10/28/2024
2.1.190 6,622 10/26/2024
2.1.189 11,413 10/22/2024
2.1.188 1,504 10/22/2024
2.1.187 1,075 10/22/2024
2.1.186 8,561 10/17/2024
2.1.185 6,222 10/15/2024
2.1.184 2,370 10/14/2024
2.1.183 6,892 10/11/2024
2.1.182 962 10/11/2024
2.1.181 573 10/11/2024
2.1.180 11,061 10/9/2024
2.1.179 928 10/8/2024
2.1.178 5,538 10/8/2024
2.1.177 863 10/8/2024
2.1.176 12,406 10/3/2024
2.1.175 3,745 10/3/2024
2.1.174 9,098 10/2/2024
2.1.173 2,733 10/2/2024
2.1.172 6,682 10/1/2024
2.1.171 1,813 10/1/2024
2.1.170 2,753 10/1/2024
2.1.169 7,732 9/29/2024
2.1.168 2,230 9/29/2024
2.1.167 1,641 9/29/2024
2.1.166 9,505 9/27/2024
2.1.165 5,301 9/27/2024
2.1.164 113 9/27/2024
2.1.163 308 9/27/2024
2.1.162 111 9/27/2024
2.1.161 7,948 9/26/2024
2.1.160 7,598 9/26/2024
2.1.159 6,993 9/26/2024
2.1.158 7,184 9/23/2024
2.1.157 3,306 9/23/2024
2.1.156 1,955 9/23/2024
2.1.155 2,039 9/23/2024
2.1.154 6,570 9/23/2024
2.1.153 743 9/23/2024
2.1.152 900 9/23/2024
2.1.151 104 9/23/2024
2.1.150 2,384 9/23/2024
2.1.149 12,044 9/17/2024
2.1.148 112 9/17/2024
2.1.147 431 9/17/2024
2.1.146 4,846 9/17/2024
2.1.145 4,211 9/17/2024
2.1.144 5,503 9/17/2024
2.1.143 121 9/17/2024
2.1.142 533 9/17/2024
2.1.141 1,254 9/17/2024
2.1.140 13,423 9/16/2024
2.1.139 7,608 9/12/2024
2.1.138 5,155 9/11/2024
2.1.137 3,104 9/11/2024
2.1.136 5,994 9/11/2024
2.1.135 4,938 9/11/2024
2.1.134 11,210 9/10/2024
2.1.133 2,363 9/10/2024
2.1.132 3,755 9/9/2024
2.1.131 4,140 9/9/2024
2.1.130 2,627 9/9/2024
2.1.129 1,256 9/9/2024
2.1.128 110 9/9/2024
2.1.127 118 9/9/2024
2.1.126 115 9/9/2024
2.1.125 16,853 9/6/2024
2.1.124 6,581 9/6/2024
2.1.123 3,408 9/5/2024
2.1.122 2,055 9/5/2024
2.1.121 4,150 9/5/2024
2.1.120 2,258 9/5/2024
2.1.119 111 9/5/2024
2.1.118 1,657 9/5/2024
2.1.117 5,920 9/5/2024
2.1.116 1,416 9/4/2024
2.1.115 12,127 9/3/2024
2.1.114 1,222 9/3/2024
2.1.113 4,959 9/3/2024
2.1.112 9,587 8/29/2024
2.1.111 6,778 8/26/2024
2.1.110 6,743 8/21/2024
2.1.109 3,834 8/21/2024
2.1.108 456 8/20/2024
2.1.107 4,756 8/20/2024
2.1.106 121 8/20/2024
2.1.105 4,838 8/20/2024
2.1.104 2,953 8/20/2024
2.1.103 9,114 8/15/2024
2.1.102 8,230 8/13/2024
2.1.101 7,905 8/6/2024
2.1.100 9,226 8/1/2024
2.1.99 580 8/1/2024
2.1.98 8,713 7/25/2024
2.1.97 1,079 7/25/2024
2.1.96 998 7/25/2024
2.1.95 654 7/24/2024
2.1.94 225 7/24/2024
2.1.93 9,725 7/20/2024
2.1.92 8,268 7/14/2024
2.1.91 2,260 7/14/2024
2.1.90 6,859 7/10/2024
2.1.89 242 7/10/2024
2.1.88 2,183 7/10/2024
2.1.87 2,061 7/10/2024
2.1.86 236 7/10/2024
2.1.85 242 7/10/2024
2.1.83 2,139 7/10/2024
2.1.82 3,249 7/9/2024
2.1.80 853 7/9/2024
2.1.79 1,268 7/9/2024
2.1.78 7,746 7/9/2024
2.1.77 3,085 7/9/2024
2.1.76 12,235 7/9/2024
2.1.75 133 7/9/2024
2.1.74 145 7/8/2024
2.1.73 125 7/8/2024
2.1.72 2,528 7/8/2024
2.1.71 112 7/8/2024
2.1.70 6,973 7/8/2024
2.1.69 2,296 7/7/2024
2.1.68 2,602 7/7/2024
2.1.67 690 7/7/2024
2.1.66 1,348 7/7/2024
2.1.65 3,070 7/7/2024
2.1.64 2,741 7/7/2024
2.1.63 124 7/7/2024
2.1.62 3,647 7/5/2024
2.1.61 73,307 5/25/2024
2.1.60 126 5/25/2024
2.1.59 543 5/25/2024
2.1.58 14,024 5/22/2024
2.1.57 125 5/22/2024
2.1.56 11,517 5/17/2024
2.1.55 15,963 4/30/2024
2.1.54 15,981 4/28/2024
2.1.53 128 4/28/2024
2.1.52 690 4/27/2024
2.1.51 120 4/27/2024
2.1.50 25,104 4/12/2024
2.1.49 1,371 4/12/2024
2.1.48 131 4/12/2024
2.1.47 39,193 3/18/2024
2.1.46 8,805 3/13/2024
2.1.45 2,296 3/13/2024
2.1.44 61,311 2/21/2024
2.1.43 2,758 2/21/2024
2.1.42 130 2/21/2024
2.1.41 21,876 2/16/2024
2.1.40 663 2/16/2024
2.1.39 23,962 2/9/2024
2.1.38 18,994 2/6/2024
2.1.37 135 2/6/2024
2.1.36 62,872 1/15/2024
2.1.35 852 1/15/2024
2.1.34 26,186 1/5/2024
2.1.33 2,469 1/5/2024
2.1.32 13,407 12/27/2023
2.1.31 1,355 12/27/2023
2.1.30 1,106 12/27/2023
2.1.29 7,881 12/25/2023
2.1.28 1,419 12/25/2023
2.1.27 703 12/25/2023
2.1.26 10,583 12/23/2023
2.1.25 152 12/23/2023
2.1.24 824 12/23/2023
2.1.23 20,782 12/9/2023
2.1.22 1,358 12/9/2023
2.1.21 263 12/9/2023
2.1.20 1,942 12/9/2023
2.1.19 10,875 12/4/2023
2.1.18 835 12/4/2023
2.1.17 5,471 11/26/2023
2.1.16 5,424 11/23/2023
2.1.15 352 11/23/2023
2.1.14 968 11/23/2023
2.1.13 9,466 11/19/2023
2.1.12 147 11/19/2023
2.1.11 1,209 11/18/2023
2.1.10 3,438 11/18/2023
2.1.9 1,954 11/18/2023
2.1.8 3,693 11/17/2023
2.1.7 1,090 11/17/2023
2.1.6 1,721 11/17/2023
2.1.5 889 11/17/2023
2.1.4 664 11/16/2023
2.1.3 193 11/16/2023
2.0.52 1,257 11/15/2023
2.0.51 2,148 11/15/2023
2.0.2 142 11/16/2023
2.0.1 153 11/16/2023
1.0.50 4,122 11/11/2023
1.0.49 135 11/11/2023
1.0.48 116 11/11/2023
1.0.47 1,348 11/9/2023
1.0.46 140 11/9/2023
1.0.45 5,242 11/6/2023
1.0.44 2,241 11/3/2023
1.0.43 1,821 11/2/2023
1.0.42 1,897 11/1/2023
1.0.41 7,541 10/18/2023
1.0.40 3,021 10/17/2023
1.0.39 1,248 10/16/2023
1.0.38 2,696 10/13/2023
1.0.37 173 10/13/2023
1.0.36 6,178 9/19/2023
1.0.35 2,076 9/18/2023
1.0.34 146 9/18/2023
1.0.33 7,707 8/30/2023
1.0.32 2,720 8/29/2023
1.0.31 4,184 8/24/2023
1.0.30 155 8/24/2023
1.0.29 4,359 8/17/2023
1.0.28 182 8/17/2023
1.0.27 8,050 8/7/2023
1.0.26 183 8/7/2023
1.0.25 7,997 7/10/2023
1.0.24 10,397 7/7/2023
1.0.23 176 7/7/2023
1.0.22 9,354 6/28/2023
1.0.21 44,585 5/24/2023
1.0.20 1,146 5/24/2023
1.0.19 428 5/23/2023
1.0.18 207 5/31/2023
1.0.17 2,766 5/23/2023
1.0.16 2,960 5/22/2023
1.0.15 5,986 5/17/2023
1.0.14 199 5/17/2023
1.0.13 5,623 4/28/2023
1.0.12 2,232 4/24/2023
1.0.11 989 4/21/2023
1.0.10 4,506 4/12/2023
1.0.9 1,089 4/11/2023
1.0.8 2,048 4/3/2023
1.0.7 256 4/3/2023
1.0.6 387 4/1/2023
1.0.5 2,058 3/23/2023
1.0.3 565 2/28/2023
1.0.2 471 2/16/2023