Soenneker.Extensions.Enumerable 3.0.522

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.522
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 3.0.522
                    
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.522" />
                    
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.522" />
                    
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.522
                    
#r "nuget: Soenneker.Extensions.Enumerable, 3.0.522"
                    
#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=3.0.522
                    
Install Soenneker.Extensions.Enumerable as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=3.0.522
                    
Install Soenneker.Extensions.Enumerable 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. 
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.Utils.Process

A utility library implementing useful process operations

Soenneker.Swashbuckle.Authentication

A middleware implementing basic authentication and RBAC support for Swashbuckle (Swagger)

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.539 227 4/8/2025
3.0.538 585 4/8/2025
3.0.537 254 4/8/2025
3.0.536 825 4/8/2025
3.0.535 31 4/8/2025
3.0.534 2,034 4/8/2025
3.0.533 333 4/8/2025
3.0.532 3,372 4/8/2025
3.0.531 4,172 4/8/2025
3.0.530 1,056 4/7/2025
3.0.529 2,372 4/7/2025
3.0.528 879 4/7/2025
3.0.527 2,053 4/7/2025
3.0.526 5,558 4/7/2025
3.0.525 1,657 4/7/2025
3.0.524 445 4/7/2025
3.0.523 6,445 4/7/2025
3.0.522 1,538 4/7/2025
3.0.521 2,500 4/6/2025
3.0.520 167 4/6/2025
3.0.519 1,031 4/6/2025
3.0.518 1,491 4/6/2025
3.0.517 1,739 4/6/2025
3.0.516 66 4/6/2025
3.0.515 308 4/6/2025
3.0.514 67 4/6/2025
3.0.513 409 4/5/2025
3.0.512 2,574 4/5/2025
3.0.511 1,181 4/5/2025
3.0.510 953 4/5/2025
3.0.509 139 4/5/2025
3.0.508 183 4/5/2025
3.0.507 241 4/5/2025
3.0.506 2,220 4/4/2025
3.0.505 102 4/4/2025
3.0.504 2,685 4/4/2025
3.0.503 29,724 4/4/2025
3.0.502 6,895 4/1/2025
3.0.501 4,477 4/1/2025
3.0.500 6,349 3/31/2025
3.0.499 2,791 3/31/2025
3.0.498 6,464 3/31/2025
3.0.497 7,753 3/29/2025
3.0.496 2,049 3/29/2025
3.0.495 6,462 3/27/2025
3.0.494 4,341 3/25/2025
3.0.493 1,724 3/25/2025
3.0.492 10,490 3/21/2025
3.0.491 9,618 3/18/2025
3.0.490 4,897 3/18/2025
3.0.489 7,319 3/15/2025
3.0.488 2,247 3/15/2025
3.0.487 8,318 3/12/2025
3.0.486 3,114 3/12/2025
3.0.485 489 3/12/2025
3.0.484 3,108 3/11/2025
3.0.483 367 3/11/2025
3.0.482 1,258 3/11/2025
3.0.481 2,321 3/11/2025
3.0.480 3,468 3/11/2025
3.0.479 3,172 3/11/2025
3.0.478 1,992 3/11/2025
3.0.477 12,274 3/7/2025
3.0.476 3,645 3/7/2025
3.0.475 7,354 3/2/2025
3.0.474 2,686 3/2/2025
3.0.473 654 3/2/2025
3.0.472 5,132 3/2/2025
3.0.471 4,700 3/1/2025
3.0.470 215 3/1/2025
3.0.469 4,452 3/1/2025
3.0.468 85 3/1/2025
3.0.467 1,631 3/1/2025
3.0.466 12,687 2/26/2025
3.0.465 1,101 2/25/2025
3.0.464 3,072 2/25/2025
3.0.463 1,995 2/25/2025
3.0.462 1,006 2/25/2025
3.0.461 11,616 2/23/2025
3.0.460 2,069 2/22/2025
3.0.459 9,251 2/22/2025
3.0.458 2,667 2/22/2025
3.0.457 3,235 2/22/2025
3.0.456 509 2/21/2025
3.0.455 5,214 2/21/2025
3.0.454 11,519 2/19/2025
3.0.453 4,821 2/18/2025
3.0.452 1,034 2/18/2025
3.0.451 407 2/18/2025
3.0.450 5,688 2/18/2025
3.0.449 90 2/18/2025
3.0.448 12,154 2/14/2025
3.0.447 1,362 2/14/2025
3.0.446 3,815 2/13/2025
3.0.445 4,676 2/13/2025
3.0.444 5,184 2/12/2025
3.0.443 1,663 2/12/2025
3.0.442 722 2/12/2025
3.0.441 2,084 2/12/2025
3.0.440 722 2/12/2025
3.0.439 487 2/11/2025
3.0.438 7,831 2/11/2025
3.0.437 2,640 2/11/2025
3.0.436 431 2/11/2025
3.0.435 2,576 2/10/2025
3.0.434 100 2/10/2025
3.0.433 1,735 2/10/2025
3.0.432 100 2/10/2025
3.0.431 13,748 2/9/2025
3.0.430 7,951 2/9/2025
3.0.429 342 2/9/2025
3.0.428 254 2/8/2025
3.0.427 201 2/8/2025
3.0.426 258 2/8/2025
3.0.425 8,270 2/8/2025
3.0.424 2,699 2/7/2025
3.0.423 1,908 2/7/2025
3.0.422 2,442 2/7/2025
3.0.421 88 2/7/2025
3.0.420 390 2/7/2025
3.0.419 96 2/7/2025
3.0.418 1,956 2/7/2025
3.0.417 93 2/7/2025
3.0.416 14,550 2/7/2025
3.0.415 7,131 2/5/2025
3.0.414 820 2/5/2025
3.0.413 1,150 2/5/2025
3.0.412 239 2/5/2025
3.0.411 2,507 2/5/2025
3.0.410 5,340 2/5/2025
3.0.409 12,261 1/28/2025
3.0.408 827 1/28/2025
3.0.407 250 1/28/2025
3.0.406 2,626 1/28/2025
3.0.405 5,486 1/27/2025
3.0.404 1,546 1/27/2025
3.0.403 84 1/27/2025
3.0.402 5,346 1/27/2025
3.0.401 85 1/27/2025
3.0.400 6,124 1/26/2025
3.0.399 1,280 1/26/2025
3.0.398 970 1/26/2025
3.0.397 524 1/26/2025
3.0.396 242 1/26/2025
3.0.395 2,717 1/25/2025
3.0.394 5,877 1/25/2025
3.0.393 4,277 1/25/2025
3.0.392 427 1/25/2025
3.0.391 10,759 1/24/2025
3.0.390 1,962 1/24/2025
3.0.389 3,469 1/24/2025
3.0.388 4,063 1/24/2025
3.0.387 925 1/23/2025
3.0.386 1,144 1/23/2025
3.0.385 135 1/23/2025
3.0.384 9,577 1/22/2025
3.0.383 1,225 1/21/2025
3.0.382 362 1/21/2025
3.0.381 1,183 1/21/2025
3.0.380 1,147 1/21/2025
3.0.379 1,324 1/21/2025
3.0.378 1,010 1/21/2025
3.0.377 1,345 1/21/2025
3.0.376 96 1/21/2025
3.0.375 6,169 1/21/2025
3.0.374 1,739 1/21/2025
3.0.373 1,494 1/21/2025
3.0.372 2,629 1/21/2025
3.0.371 178 1/20/2025
3.0.370 6,935 1/20/2025
3.0.369 245 1/20/2025
3.0.368 1,430 1/20/2025
3.0.367 90 1/20/2025
3.0.366 1,358 1/20/2025
3.0.365 103 1/20/2025
3.0.364 4,230 1/19/2025
3.0.363 6,610 1/19/2025
3.0.362 6,406 1/19/2025
3.0.361 2,169 1/19/2025
3.0.360 618 1/19/2025
3.0.359 3,620 1/18/2025
3.0.358 127 1/18/2025
3.0.357 3,525 1/18/2025
3.0.356 261 1/18/2025
3.0.355 1,003 1/18/2025
3.0.354 6,368 1/17/2025
3.0.353 125 1/17/2025
3.0.352 8,269 1/16/2025
3.0.351 4,552 1/16/2025
3.0.350 832 1/16/2025
3.0.349 5,124 1/15/2025
3.0.348 4,387 1/15/2025
3.0.347 3,714 1/15/2025
3.0.346 3,908 1/15/2025
3.0.345 2,289 1/15/2025
3.0.344 3,043 1/15/2025
3.0.343 790 1/15/2025
3.0.342 2,439 1/14/2025
3.0.341 406 1/14/2025
3.0.340 119 1/14/2025
3.0.339 3,459 1/14/2025
3.0.338 934 1/14/2025
3.0.337 75 1/14/2025
3.0.336 1,172 1/14/2025
3.0.335 344 1/14/2025
3.0.334 7,096 1/13/2025
3.0.333 1,570 1/13/2025
3.0.332 2,995 1/13/2025
3.0.331 6,061 1/11/2025
3.0.330 2,507 1/11/2025
3.0.329 2,768 1/10/2025
3.0.328 5,558 1/10/2025
3.0.327 104 1/10/2025
3.0.326 497 1/10/2025
3.0.325 95 1/10/2025
3.0.324 102 1/10/2025
3.0.323 8,960 1/3/2025
3.0.322 1,014 1/3/2025
3.0.321 1,300 1/3/2025
3.0.320 397 1/3/2025
3.0.319 1,466 1/3/2025
3.0.318 3,292 1/2/2025
3.0.317 111 1/2/2025
3.0.316 2,264 1/2/2025
3.0.315 113 1/2/2025
3.0.314 3,030 1/2/2025
3.0.313 112 1/2/2025
3.0.312 9,852 1/1/2025
3.0.311 110 1/1/2025
3.0.310 158 12/31/2024
3.0.309 114 12/31/2024
3.0.308 3,554 12/31/2024
3.0.307 108 12/31/2024
3.0.306 183 12/31/2024
3.0.305 678 12/31/2024
3.0.304 112 12/31/2024
3.0.303 1,069 12/31/2024
3.0.302 384 12/31/2024
3.0.301 6,406 12/31/2024
3.0.300 4,515 12/31/2024
3.0.299 1,028 12/31/2024
3.0.298 3,269 12/31/2024
3.0.297 2,484 12/31/2024
3.0.296 105 12/31/2024
3.0.295 108 12/31/2024
3.0.294 11,567 12/28/2024
3.0.293 1,943 12/28/2024
3.0.292 1,104 12/28/2024
3.0.291 1,333 12/27/2024
3.0.290 8,465 12/24/2024
3.0.289 1,830 12/24/2024
3.0.288 1,780 12/24/2024
3.0.287 2,506 12/24/2024
3.0.286 2,688 12/24/2024
3.0.285 2,124 12/24/2024
3.0.284 1,749 12/24/2024
3.0.283 1,386 12/23/2024
3.0.282 2,933 12/23/2024
3.0.281 3,364 12/23/2024
3.0.280 1,323 12/23/2024
3.0.279 3,782 12/23/2024
3.0.278 292 12/23/2024
3.0.277 3,612 12/22/2024
3.0.276 5,729 12/22/2024
3.0.275 5,748 12/22/2024
3.0.274 7,785 12/21/2024
3.0.273 448 12/21/2024
3.0.272 3,816 12/21/2024
3.0.271 4,940 12/21/2024
3.0.270 1,062 12/21/2024
3.0.269 5,910 12/20/2024
3.0.268 11,568 12/18/2024
3.0.267 151 12/18/2024
3.0.266 7,570 12/17/2024
3.0.265 6,127 12/17/2024
3.0.264 368 12/16/2024
3.0.263 1,108 12/16/2024
3.0.262 8,145 12/10/2024
3.0.261 2,259 12/9/2024
3.0.260 3,694 12/9/2024
3.0.259 2,506 12/9/2024
3.0.258 7,010 12/6/2024
3.0.257 1,321 12/6/2024
3.0.256 2,301 12/6/2024
3.0.255 7,130 12/6/2024
3.0.254 198 12/6/2024
3.0.253 333 12/6/2024
3.0.252 998 12/6/2024
3.0.251 5,656 12/6/2024
3.0.250 124 12/6/2024
3.0.249 119 12/6/2024
3.0.248 4,486 12/5/2024
3.0.247 4,481 12/5/2024
3.0.246 3,426 12/5/2024
3.0.245 4,080 12/5/2024
3.0.244 587 12/5/2024
3.0.243 509 12/5/2024
3.0.242 5,177 12/4/2024
3.0.241 471 12/4/2024
3.0.240 1,122 12/4/2024
3.0.239 3,601 12/4/2024
3.0.238 3,797 12/3/2024
3.0.237 2,849 12/3/2024
3.0.236 3,617 12/3/2024
3.0.235 3,412 12/3/2024
3.0.234 4,718 12/2/2024
3.0.233 3,873 12/2/2024
3.0.232 2,376 12/2/2024
3.0.231 427 12/2/2024
3.0.230 4,298 12/1/2024
3.0.229 693 12/1/2024
3.0.228 3,144 12/1/2024
3.0.227 4,081 12/1/2024
3.0.226 4,289 11/29/2024
3.0.225 7,136 11/21/2024
3.0.224 6,195 11/20/2024
3.0.223 665 11/20/2024
3.0.222 1,141 11/20/2024
3.0.221 566 11/19/2024
3.0.220 5,675 11/19/2024
3.0.219 2,315 11/19/2024
3.0.218 93 11/19/2024
3.0.217 3,821 11/19/2024
3.0.216 82 11/19/2024
3.0.215 10,596 11/14/2024
3.0.214 1,167 11/14/2024
3.0.213 4,096 11/14/2024
3.0.212 969 11/14/2024
3.0.211 567 11/14/2024
3.0.210 4,332 11/14/2024
3.0.209 99 11/14/2024
3.0.208 3,436 11/14/2024
3.0.207 190 11/14/2024
2.1.206 12,225 11/13/2024
2.1.205 4,957 11/13/2024
2.1.204 12,116 11/9/2024
2.1.203 846 11/9/2024
2.1.202 2,159 11/9/2024
2.1.201 1,270 11/8/2024
2.1.200 1,073 11/8/2024
2.1.199 98 11/8/2024
2.1.198 1,899 11/8/2024
2.1.197 250 11/8/2024
2.1.196 4,626 11/8/2024
2.1.195 6,025 11/8/2024
2.1.194 13,286 11/1/2024
2.1.192 9,642 10/29/2024
2.1.191 10,381 10/28/2024
2.1.190 6,596 10/26/2024
2.1.189 10,795 10/22/2024
2.1.188 1,478 10/22/2024
2.1.187 1,057 10/22/2024
2.1.186 8,532 10/17/2024
2.1.185 6,205 10/15/2024
2.1.184 2,356 10/14/2024
2.1.183 6,874 10/11/2024
2.1.182 942 10/11/2024
2.1.181 554 10/11/2024
2.1.180 10,990 10/9/2024
2.1.179 908 10/8/2024
2.1.178 5,516 10/8/2024
2.1.177 843 10/8/2024
2.1.176 12,129 10/3/2024
2.1.175 3,728 10/3/2024
2.1.174 9,011 10/2/2024
2.1.173 2,714 10/2/2024
2.1.172 6,651 10/1/2024
2.1.171 1,788 10/1/2024
2.1.170 2,737 10/1/2024
2.1.169 7,693 9/29/2024
2.1.168 2,214 9/29/2024
2.1.167 1,617 9/29/2024
2.1.166 9,346 9/27/2024
2.1.165 5,278 9/27/2024
2.1.164 93 9/27/2024
2.1.163 293 9/27/2024
2.1.162 93 9/27/2024
2.1.161 7,919 9/26/2024
2.1.160 7,570 9/26/2024
2.1.159 6,966 9/26/2024
2.1.158 7,157 9/23/2024
2.1.157 3,284 9/23/2024
2.1.156 1,927 9/23/2024
2.1.155 2,024 9/23/2024
2.1.154 6,541 9/23/2024
2.1.153 726 9/23/2024
2.1.152 879 9/23/2024
2.1.151 88 9/23/2024
2.1.150 2,357 9/23/2024
2.1.149 11,837 9/17/2024
2.1.148 96 9/17/2024
2.1.147 415 9/17/2024
2.1.146 4,827 9/17/2024
2.1.145 4,185 9/17/2024
2.1.144 5,474 9/17/2024
2.1.143 103 9/17/2024
2.1.142 520 9/17/2024
2.1.141 1,226 9/17/2024
2.1.140 13,372 9/16/2024
2.1.139 7,559 9/12/2024
2.1.138 5,128 9/11/2024
2.1.137 3,075 9/11/2024
2.1.136 5,976 9/11/2024
2.1.135 4,915 9/11/2024
2.1.134 11,179 9/10/2024
2.1.133 2,343 9/10/2024
2.1.132 3,732 9/9/2024
2.1.131 4,109 9/9/2024
2.1.130 2,612 9/9/2024
2.1.129 1,239 9/9/2024
2.1.128 96 9/9/2024
2.1.127 105 9/9/2024
2.1.126 92 9/9/2024
2.1.125 16,824 9/6/2024
2.1.124 6,549 9/6/2024
2.1.123 3,383 9/5/2024
2.1.122 2,037 9/5/2024
2.1.121 4,132 9/5/2024
2.1.120 2,217 9/5/2024
2.1.119 91 9/5/2024
2.1.118 1,630 9/5/2024
2.1.117 5,892 9/5/2024
2.1.116 1,403 9/4/2024
2.1.115 12,094 9/3/2024
2.1.114 1,199 9/3/2024
2.1.113 4,943 9/3/2024
2.1.112 9,567 8/29/2024
2.1.111 6,760 8/26/2024
2.1.110 6,710 8/21/2024
2.1.109 3,819 8/21/2024
2.1.108 438 8/20/2024
2.1.107 4,730 8/20/2024
2.1.106 101 8/20/2024
2.1.105 4,812 8/20/2024
2.1.104 2,923 8/20/2024
2.1.103 9,076 8/15/2024
2.1.102 8,207 8/13/2024
2.1.101 7,870 8/6/2024
2.1.100 9,197 8/1/2024
2.1.99 560 8/1/2024
2.1.98 8,686 7/25/2024
2.1.97 1,056 7/25/2024
2.1.96 982 7/25/2024
2.1.95 636 7/24/2024
2.1.94 208 7/24/2024
2.1.93 9,470 7/20/2024
2.1.92 8,236 7/14/2024
2.1.91 2,242 7/14/2024
2.1.90 6,827 7/10/2024
2.1.89 227 7/10/2024
2.1.88 2,167 7/10/2024
2.1.87 2,046 7/10/2024
2.1.86 219 7/10/2024
2.1.85 226 7/10/2024
2.1.83 2,124 7/10/2024
2.1.82 3,231 7/9/2024
2.1.80 839 7/9/2024
2.1.79 1,254 7/9/2024
2.1.78 7,721 7/9/2024
2.1.77 3,056 7/9/2024
2.1.76 10,595 7/9/2024
2.1.75 110 7/9/2024
2.1.74 128 7/8/2024
2.1.73 110 7/8/2024
2.1.72 2,507 7/8/2024
2.1.71 97 7/8/2024
2.1.70 6,941 7/8/2024
2.1.69 2,278 7/7/2024
2.1.68 2,578 7/7/2024
2.1.67 675 7/7/2024
2.1.66 1,327 7/7/2024
2.1.65 3,047 7/7/2024
2.1.64 2,704 7/7/2024
2.1.63 109 7/7/2024
2.1.62 3,620 7/5/2024
2.1.61 73,164 5/25/2024
2.1.60 108 5/25/2024
2.1.59 524 5/25/2024
2.1.58 13,971 5/22/2024
2.1.57 111 5/22/2024
2.1.56 11,485 5/17/2024
2.1.55 15,909 4/30/2024
2.1.54 15,900 4/28/2024
2.1.53 113 4/28/2024
2.1.52 671 4/27/2024
2.1.51 103 4/27/2024
2.1.50 25,028 4/12/2024
2.1.49 1,352 4/12/2024
2.1.48 118 4/12/2024
2.1.47 38,479 3/18/2024
2.1.46 8,763 3/13/2024
2.1.45 2,276 3/13/2024
2.1.44 61,124 2/21/2024
2.1.43 2,741 2/21/2024
2.1.42 116 2/21/2024
2.1.41 21,799 2/16/2024
2.1.40 646 2/16/2024
2.1.39 23,856 2/9/2024
2.1.38 18,931 2/6/2024
2.1.37 121 2/6/2024
2.1.36 62,752 1/15/2024
2.1.35 831 1/15/2024
2.1.34 26,123 1/5/2024
2.1.33 2,452 1/5/2024
2.1.32 13,355 12/27/2023
2.1.31 1,333 12/27/2023
2.1.30 1,086 12/27/2023
2.1.29 7,845 12/25/2023
2.1.28 1,387 12/25/2023
2.1.27 683 12/25/2023
2.1.26 10,552 12/23/2023
2.1.25 132 12/23/2023
2.1.24 811 12/23/2023
2.1.23 20,712 12/9/2023
2.1.22 1,341 12/9/2023
2.1.21 248 12/9/2023
2.1.20 1,925 12/9/2023
2.1.19 10,831 12/4/2023
2.1.18 821 12/4/2023
2.1.17 5,442 11/26/2023
2.1.16 5,402 11/23/2023
2.1.15 341 11/23/2023
2.1.14 955 11/23/2023
2.1.13 9,417 11/19/2023
2.1.12 137 11/19/2023
2.1.11 1,200 11/18/2023
2.1.10 3,411 11/18/2023
2.1.9 1,941 11/18/2023
2.1.8 3,674 11/17/2023
2.1.7 1,074 11/17/2023
2.1.6 1,705 11/17/2023
2.1.5 876 11/17/2023
2.1.4 638 11/16/2023
2.1.3 182 11/16/2023
2.0.52 1,248 11/15/2023
2.0.51 2,133 11/15/2023
2.0.2 133 11/16/2023
2.0.1 141 11/16/2023
1.0.50 4,115 11/11/2023
1.0.49 122 11/11/2023
1.0.48 107 11/11/2023
1.0.47 1,337 11/9/2023
1.0.46 128 11/9/2023
1.0.45 5,217 11/6/2023
1.0.44 2,230 11/3/2023
1.0.43 1,814 11/2/2023
1.0.42 1,890 11/1/2023
1.0.41 7,514 10/18/2023
1.0.40 3,009 10/17/2023
1.0.39 1,240 10/16/2023
1.0.38 2,666 10/13/2023
1.0.37 157 10/13/2023
1.0.36 6,164 9/19/2023
1.0.35 2,057 9/18/2023
1.0.34 132 9/18/2023
1.0.33 7,672 8/30/2023
1.0.32 2,688 8/29/2023
1.0.31 4,158 8/24/2023
1.0.30 142 8/24/2023
1.0.29 4,331 8/17/2023
1.0.28 164 8/17/2023
1.0.27 8,032 8/7/2023
1.0.26 166 8/7/2023
1.0.25 7,977 7/10/2023
1.0.24 10,366 7/7/2023
1.0.23 161 7/7/2023
1.0.22 9,308 6/28/2023
1.0.21 44,367 5/24/2023
1.0.20 1,130 5/24/2023
1.0.19 409 5/23/2023
1.0.18 190 5/31/2023
1.0.17 2,748 5/23/2023
1.0.16 2,939 5/22/2023
1.0.15 5,967 5/17/2023
1.0.14 179 5/17/2023
1.0.13 5,599 4/28/2023
1.0.12 2,212 4/24/2023
1.0.11 965 4/21/2023
1.0.10 4,484 4/12/2023
1.0.9 1,069 4/11/2023
1.0.8 2,027 4/3/2023
1.0.7 232 4/3/2023
1.0.6 366 4/1/2023
1.0.5 2,039 3/23/2023
1.0.3 545 2/28/2023
1.0.2 450 2/16/2023