Soenneker.Extensions.Enumerable 3.0.535

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.535
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 3.0.535
                    
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.535" />
                    
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.535" />
                    
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.535
                    
#r "nuget: Soenneker.Extensions.Enumerable, 3.0.535"
                    
#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.535
                    
Install Soenneker.Extensions.Enumerable as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=3.0.535
                    
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.  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.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.553 3,328 5/27/2025
3.0.552 1,023 5/27/2025
3.0.551 881 5/27/2025
3.0.550 17,353 5/23/2025
3.0.549 2,134 5/23/2025
3.0.548 2,139 5/22/2025
3.0.547 18,282 5/14/2025
3.0.546 11,289 5/8/2025
3.0.545 1,718 5/7/2025
3.0.544 228 5/7/2025
3.0.543 16,265 5/5/2025
3.0.542 1,813 5/5/2025
3.0.541 3,330 5/5/2025
3.0.540 129 5/5/2025
3.0.539 23,416 4/8/2025
3.0.538 2,444 4/8/2025
3.0.537 522 4/8/2025
3.0.536 2,559 4/8/2025
3.0.535 151 4/8/2025
3.0.534 3,920 4/8/2025
3.0.533 635 4/8/2025
3.0.532 6,161 4/8/2025
3.0.531 7,303 4/8/2025
3.0.530 1,604 4/7/2025
3.0.529 3,657 4/7/2025
3.0.528 1,252 4/7/2025
3.0.527 3,063 4/7/2025
3.0.526 8,138 4/7/2025
3.0.525 2,394 4/7/2025
3.0.524 604 4/7/2025
3.0.523 9,265 4/7/2025
3.0.522 1,897 4/7/2025
3.0.521 3,272 4/6/2025
3.0.520 229 4/6/2025
3.0.519 1,482 4/6/2025
3.0.518 1,858 4/6/2025
3.0.517 2,214 4/6/2025
3.0.516 101 4/6/2025
3.0.515 371 4/6/2025
3.0.514 103 4/6/2025
3.0.513 475 4/5/2025
3.0.512 3,099 4/5/2025
3.0.511 1,445 4/5/2025
3.0.510 1,102 4/5/2025
3.0.509 155 4/5/2025
3.0.508 207 4/5/2025
3.0.507 256 4/5/2025
3.0.506 2,876 4/4/2025
3.0.505 117 4/4/2025
3.0.504 2,999 4/4/2025
3.0.503 37,213 4/4/2025
3.0.502 8,241 4/1/2025
3.0.501 4,518 4/1/2025
3.0.500 6,407 3/31/2025
3.0.499 2,818 3/31/2025
3.0.498 6,489 3/31/2025
3.0.497 7,816 3/29/2025
3.0.496 2,062 3/29/2025
3.0.495 6,475 3/27/2025
3.0.494 4,353 3/25/2025
3.0.493 1,736 3/25/2025
3.0.492 10,546 3/21/2025
3.0.491 10,732 3/18/2025
3.0.490 4,912 3/18/2025
3.0.489 7,338 3/15/2025
3.0.488 2,261 3/15/2025
3.0.487 8,335 3/12/2025
3.0.486 3,123 3/12/2025
3.0.485 496 3/12/2025
3.0.484 3,119 3/11/2025
3.0.483 375 3/11/2025
3.0.482 1,265 3/11/2025
3.0.481 2,331 3/11/2025
3.0.480 3,476 3/11/2025
3.0.479 3,181 3/11/2025
3.0.478 2,000 3/11/2025
3.0.477 12,295 3/7/2025
3.0.476 3,652 3/7/2025
3.0.475 7,402 3/2/2025
3.0.474 2,693 3/2/2025
3.0.473 662 3/2/2025
3.0.472 5,145 3/2/2025
3.0.471 4,708 3/1/2025
3.0.470 222 3/1/2025
3.0.469 4,466 3/1/2025
3.0.468 92 3/1/2025
3.0.467 1,641 3/1/2025
3.0.466 12,700 2/26/2025
3.0.465 1,109 2/25/2025
3.0.464 3,079 2/25/2025
3.0.463 2,003 2/25/2025
3.0.462 1,014 2/25/2025
3.0.461 11,631 2/23/2025
3.0.460 2,080 2/22/2025
3.0.459 9,260 2/22/2025
3.0.458 2,676 2/22/2025
3.0.457 3,246 2/22/2025
3.0.456 517 2/21/2025
3.0.455 5,222 2/21/2025
3.0.454 11,527 2/19/2025
3.0.453 4,831 2/18/2025
3.0.452 1,042 2/18/2025
3.0.451 416 2/18/2025
3.0.450 5,699 2/18/2025
3.0.449 97 2/18/2025
3.0.448 12,245 2/14/2025
3.0.447 1,369 2/14/2025
3.0.446 3,822 2/13/2025
3.0.445 4,685 2/13/2025
3.0.444 5,277 2/12/2025
3.0.443 1,671 2/12/2025
3.0.442 729 2/12/2025
3.0.441 2,112 2/12/2025
3.0.440 729 2/12/2025
3.0.439 494 2/11/2025
3.0.438 7,840 2/11/2025
3.0.437 2,647 2/11/2025
3.0.436 438 2/11/2025
3.0.435 2,583 2/10/2025
3.0.434 108 2/10/2025
3.0.433 1,743 2/10/2025
3.0.432 109 2/10/2025
3.0.431 13,755 2/9/2025
3.0.430 7,963 2/9/2025
3.0.429 350 2/9/2025
3.0.428 261 2/8/2025
3.0.427 208 2/8/2025
3.0.426 265 2/8/2025
3.0.425 8,278 2/8/2025
3.0.424 2,706 2/7/2025
3.0.423 1,917 2/7/2025
3.0.422 2,449 2/7/2025
3.0.421 96 2/7/2025
3.0.420 397 2/7/2025
3.0.419 103 2/7/2025
3.0.418 1,963 2/7/2025
3.0.417 102 2/7/2025
3.0.416 14,559 2/7/2025
3.0.415 7,148 2/5/2025
3.0.414 827 2/5/2025
3.0.413 1,157 2/5/2025
3.0.412 246 2/5/2025
3.0.411 2,516 2/5/2025
3.0.410 5,348 2/5/2025
3.0.409 12,274 1/28/2025
3.0.408 834 1/28/2025
3.0.407 256 1/28/2025
3.0.406 2,634 1/28/2025
3.0.405 5,496 1/27/2025
3.0.404 1,554 1/27/2025
3.0.403 91 1/27/2025
3.0.402 5,359 1/27/2025
3.0.401 91 1/27/2025
3.0.400 6,131 1/26/2025
3.0.399 1,286 1/26/2025
3.0.398 976 1/26/2025
3.0.397 530 1/26/2025
3.0.396 249 1/26/2025
3.0.395 2,724 1/25/2025
3.0.394 5,885 1/25/2025
3.0.393 4,284 1/25/2025
3.0.392 433 1/25/2025
3.0.391 10,770 1/24/2025
3.0.390 1,969 1/24/2025
3.0.389 3,476 1/24/2025
3.0.388 4,069 1/24/2025
3.0.387 931 1/23/2025
3.0.386 1,154 1/23/2025
3.0.385 141 1/23/2025
3.0.384 9,583 1/22/2025
3.0.383 1,231 1/21/2025
3.0.382 368 1/21/2025
3.0.381 1,189 1/21/2025
3.0.380 1,154 1/21/2025
3.0.379 1,330 1/21/2025
3.0.378 1,016 1/21/2025
3.0.377 1,352 1/21/2025
3.0.376 103 1/21/2025
3.0.375 6,177 1/21/2025
3.0.374 1,747 1/21/2025
3.0.373 1,500 1/21/2025
3.0.372 2,635 1/21/2025
3.0.371 184 1/20/2025
3.0.370 6,941 1/20/2025
3.0.369 252 1/20/2025
3.0.368 1,438 1/20/2025
3.0.367 96 1/20/2025
3.0.366 1,366 1/20/2025
3.0.365 109 1/20/2025
3.0.364 4,238 1/19/2025
3.0.363 6,618 1/19/2025
3.0.362 6,413 1/19/2025
3.0.361 2,175 1/19/2025
3.0.360 625 1/19/2025
3.0.359 3,626 1/18/2025
3.0.358 133 1/18/2025
3.0.357 3,541 1/18/2025
3.0.356 269 1/18/2025
3.0.355 1,009 1/18/2025
3.0.354 6,376 1/17/2025
3.0.353 131 1/17/2025
3.0.352 8,277 1/16/2025
3.0.351 4,558 1/16/2025
3.0.350 838 1/16/2025
3.0.349 5,137 1/15/2025
3.0.348 4,402 1/15/2025
3.0.347 3,720 1/15/2025
3.0.346 3,919 1/15/2025
3.0.345 2,297 1/15/2025
3.0.344 3,049 1/15/2025
3.0.343 796 1/15/2025
3.0.342 2,449 1/14/2025
3.0.341 414 1/14/2025
3.0.340 127 1/14/2025
3.0.339 3,466 1/14/2025
3.0.338 941 1/14/2025
3.0.337 81 1/14/2025
3.0.336 1,235 1/14/2025
3.0.335 350 1/14/2025
3.0.334 7,111 1/13/2025
3.0.333 1,579 1/13/2025
3.0.332 3,006 1/13/2025
3.0.331 6,070 1/11/2025
3.0.330 2,516 1/11/2025
3.0.329 2,777 1/10/2025
3.0.328 5,566 1/10/2025
3.0.327 113 1/10/2025
3.0.326 505 1/10/2025
3.0.325 103 1/10/2025
3.0.324 109 1/10/2025
3.0.323 8,980 1/3/2025
3.0.322 1,025 1/3/2025
3.0.321 1,308 1/3/2025
3.0.320 405 1/3/2025
3.0.319 1,478 1/3/2025
3.0.318 3,300 1/2/2025
3.0.317 118 1/2/2025
3.0.316 2,274 1/2/2025
3.0.315 120 1/2/2025
3.0.314 3,039 1/2/2025
3.0.313 119 1/2/2025
3.0.312 9,870 1/1/2025
3.0.311 117 1/1/2025
3.0.310 165 12/31/2024
3.0.309 122 12/31/2024
3.0.308 3,565 12/31/2024
3.0.307 115 12/31/2024
3.0.306 190 12/31/2024
3.0.305 685 12/31/2024
3.0.304 119 12/31/2024
3.0.303 1,076 12/31/2024
3.0.302 391 12/31/2024
3.0.301 6,421 12/31/2024
3.0.300 4,522 12/31/2024
3.0.299 1,036 12/31/2024
3.0.298 3,280 12/31/2024
3.0.297 2,491 12/31/2024
3.0.296 112 12/31/2024
3.0.295 117 12/31/2024
3.0.294 11,576 12/28/2024
3.0.293 1,951 12/28/2024
3.0.292 1,113 12/28/2024
3.0.291 1,341 12/27/2024
3.0.290 8,478 12/24/2024
3.0.289 1,839 12/24/2024
3.0.288 1,789 12/24/2024
3.0.287 2,515 12/24/2024
3.0.286 2,696 12/24/2024
3.0.285 2,133 12/24/2024
3.0.284 1,757 12/24/2024
3.0.283 1,394 12/23/2024
3.0.282 2,943 12/23/2024
3.0.281 3,377 12/23/2024
3.0.280 1,331 12/23/2024
3.0.279 3,790 12/23/2024
3.0.278 300 12/23/2024
3.0.277 3,620 12/22/2024
3.0.276 5,737 12/22/2024
3.0.275 5,763 12/22/2024
3.0.274 7,794 12/21/2024
3.0.273 456 12/21/2024
3.0.272 3,824 12/21/2024
3.0.271 4,955 12/21/2024
3.0.270 1,071 12/21/2024
3.0.269 5,923 12/20/2024
3.0.268 11,585 12/18/2024
3.0.267 159 12/18/2024
3.0.266 7,578 12/17/2024
3.0.265 6,139 12/17/2024
3.0.264 376 12/16/2024
3.0.263 1,116 12/16/2024
3.0.262 8,156 12/10/2024
3.0.261 2,268 12/9/2024
3.0.260 3,703 12/9/2024
3.0.259 2,517 12/9/2024
3.0.258 7,020 12/6/2024
3.0.257 1,329 12/6/2024
3.0.256 2,309 12/6/2024
3.0.255 7,139 12/6/2024
3.0.254 206 12/6/2024
3.0.253 341 12/6/2024
3.0.252 1,006 12/6/2024
3.0.251 5,664 12/6/2024
3.0.250 133 12/6/2024
3.0.249 127 12/6/2024
3.0.248 4,495 12/5/2024
3.0.247 4,493 12/5/2024
3.0.246 3,434 12/5/2024
3.0.245 4,089 12/5/2024
3.0.244 596 12/5/2024
3.0.243 517 12/5/2024
3.0.242 5,187 12/4/2024
3.0.241 479 12/4/2024
3.0.240 1,130 12/4/2024
3.0.239 3,611 12/4/2024
3.0.238 3,809 12/3/2024
3.0.237 2,858 12/3/2024
3.0.236 3,626 12/3/2024
3.0.235 3,422 12/3/2024
3.0.234 4,731 12/2/2024
3.0.233 3,891 12/2/2024
3.0.232 2,386 12/2/2024
3.0.231 435 12/2/2024
3.0.230 4,311 12/1/2024
3.0.229 702 12/1/2024
3.0.228 3,158 12/1/2024
3.0.227 4,092 12/1/2024
3.0.226 4,298 11/29/2024
3.0.225 7,429 11/21/2024
3.0.224 6,210 11/20/2024
3.0.223 673 11/20/2024
3.0.222 1,151 11/20/2024
3.0.221 574 11/19/2024
3.0.220 5,683 11/19/2024
3.0.219 2,323 11/19/2024
3.0.218 102 11/19/2024
3.0.217 3,829 11/19/2024
3.0.216 90 11/19/2024
3.0.215 10,610 11/14/2024
3.0.214 1,175 11/14/2024
3.0.213 4,106 11/14/2024
3.0.212 980 11/14/2024
3.0.211 575 11/14/2024
3.0.210 4,347 11/14/2024
3.0.209 108 11/14/2024
3.0.208 3,450 11/14/2024
3.0.207 198 11/14/2024
2.1.206 12,399 11/13/2024
2.1.205 4,971 11/13/2024
2.1.204 12,131 11/9/2024
2.1.203 855 11/9/2024
2.1.202 2,171 11/9/2024
2.1.201 1,279 11/8/2024
2.1.200 1,086 11/8/2024
2.1.199 108 11/8/2024
2.1.198 1,909 11/8/2024
2.1.197 260 11/8/2024
2.1.196 4,635 11/8/2024
2.1.195 6,040 11/8/2024
2.1.194 13,335 11/1/2024
2.1.192 9,655 10/29/2024
2.1.191 10,394 10/28/2024
2.1.190 6,613 10/26/2024
2.1.189 11,335 10/22/2024
2.1.188 1,492 10/22/2024
2.1.187 1,065 10/22/2024
2.1.186 8,554 10/17/2024
2.1.185 6,215 10/15/2024
2.1.184 2,364 10/14/2024
2.1.183 6,884 10/11/2024
2.1.182 952 10/11/2024
2.1.181 563 10/11/2024
2.1.180 11,019 10/9/2024
2.1.179 919 10/8/2024
2.1.178 5,528 10/8/2024
2.1.177 852 10/8/2024
2.1.176 12,283 10/3/2024
2.1.175 3,740 10/3/2024
2.1.174 9,088 10/2/2024
2.1.173 2,725 10/2/2024
2.1.172 6,666 10/1/2024
2.1.171 1,800 10/1/2024
2.1.170 2,745 10/1/2024
2.1.169 7,718 9/29/2024
2.1.168 2,224 9/29/2024
2.1.167 1,631 9/29/2024
2.1.166 9,498 9/27/2024
2.1.165 5,289 9/27/2024
2.1.164 102 9/27/2024
2.1.163 301 9/27/2024
2.1.162 101 9/27/2024
2.1.161 7,938 9/26/2024
2.1.160 7,587 9/26/2024
2.1.159 6,984 9/26/2024
2.1.158 7,171 9/23/2024
2.1.157 3,297 9/23/2024
2.1.156 1,940 9/23/2024
2.1.155 2,032 9/23/2024
2.1.154 6,560 9/23/2024
2.1.153 737 9/23/2024
2.1.152 888 9/23/2024
2.1.151 97 9/23/2024
2.1.150 2,373 9/23/2024
2.1.149 11,950 9/17/2024
2.1.148 104 9/17/2024
2.1.147 423 9/17/2024
2.1.146 4,839 9/17/2024
2.1.145 4,199 9/17/2024
2.1.144 5,494 9/17/2024
2.1.143 111 9/17/2024
2.1.142 528 9/17/2024
2.1.141 1,247 9/17/2024
2.1.140 13,404 9/16/2024
2.1.139 7,589 9/12/2024
2.1.138 5,150 9/11/2024
2.1.137 3,096 9/11/2024
2.1.136 5,986 9/11/2024
2.1.135 4,929 9/11/2024
2.1.134 11,195 9/10/2024
2.1.133 2,352 9/10/2024
2.1.132 3,749 9/9/2024
2.1.131 4,130 9/9/2024
2.1.130 2,621 9/9/2024
2.1.129 1,247 9/9/2024
2.1.128 104 9/9/2024
2.1.127 113 9/9/2024
2.1.126 100 9/9/2024
2.1.125 16,844 9/6/2024
2.1.124 6,571 9/6/2024
2.1.123 3,395 9/5/2024
2.1.122 2,046 9/5/2024
2.1.121 4,142 9/5/2024
2.1.120 2,244 9/5/2024
2.1.119 99 9/5/2024
2.1.118 1,643 9/5/2024
2.1.117 5,907 9/5/2024
2.1.116 1,411 9/4/2024
2.1.115 12,117 9/3/2024
2.1.114 1,208 9/3/2024
2.1.113 4,951 9/3/2024
2.1.112 9,580 8/29/2024
2.1.111 6,768 8/26/2024
2.1.110 6,730 8/21/2024
2.1.109 3,827 8/21/2024
2.1.108 446 8/20/2024
2.1.107 4,744 8/20/2024
2.1.106 110 8/20/2024
2.1.105 4,828 8/20/2024
2.1.104 2,943 8/20/2024
2.1.103 9,103 8/15/2024
2.1.102 8,224 8/13/2024
2.1.101 7,897 8/6/2024
2.1.100 9,214 8/1/2024
2.1.99 573 8/1/2024
2.1.98 8,705 7/25/2024
2.1.97 1,065 7/25/2024
2.1.96 991 7/25/2024
2.1.95 645 7/24/2024
2.1.94 217 7/24/2024
2.1.93 9,676 7/20/2024
2.1.92 8,254 7/14/2024
2.1.91 2,256 7/14/2024
2.1.90 6,849 7/10/2024
2.1.89 237 7/10/2024
2.1.88 2,176 7/10/2024
2.1.87 2,056 7/10/2024
2.1.86 229 7/10/2024
2.1.85 237 7/10/2024
2.1.83 2,134 7/10/2024
2.1.82 3,240 7/9/2024
2.1.80 848 7/9/2024
2.1.79 1,263 7/9/2024
2.1.78 7,733 7/9/2024
2.1.77 3,077 7/9/2024
2.1.76 11,716 7/9/2024
2.1.75 120 7/9/2024
2.1.74 137 7/8/2024
2.1.73 120 7/8/2024
2.1.72 2,522 7/8/2024
2.1.71 106 7/8/2024
2.1.70 6,961 7/8/2024
2.1.69 2,291 7/7/2024
2.1.68 2,587 7/7/2024
2.1.67 685 7/7/2024
2.1.66 1,339 7/7/2024
2.1.65 3,059 7/7/2024
2.1.64 2,722 7/7/2024
2.1.63 117 7/7/2024
2.1.62 3,639 7/5/2024
2.1.61 73,282 5/25/2024
2.1.60 116 5/25/2024
2.1.59 532 5/25/2024
2.1.58 14,008 5/22/2024
2.1.57 120 5/22/2024
2.1.56 11,501 5/17/2024
2.1.55 15,949 4/30/2024
2.1.54 15,953 4/28/2024
2.1.53 121 4/28/2024
2.1.52 682 4/27/2024
2.1.51 111 4/27/2024
2.1.50 25,076 4/12/2024
2.1.49 1,361 4/12/2024
2.1.48 126 4/12/2024
2.1.47 39,042 3/18/2024
2.1.46 8,786 3/13/2024
2.1.45 2,286 3/13/2024
2.1.44 61,239 2/21/2024
2.1.43 2,750 2/21/2024
2.1.42 124 2/21/2024
2.1.41 21,858 2/16/2024
2.1.40 654 2/16/2024
2.1.39 23,944 2/9/2024
2.1.38 18,954 2/6/2024
2.1.37 129 2/6/2024
2.1.36 62,826 1/15/2024
2.1.35 842 1/15/2024
2.1.34 26,172 1/5/2024
2.1.33 2,460 1/5/2024
2.1.32 13,388 12/27/2023
2.1.31 1,341 12/27/2023
2.1.30 1,097 12/27/2023
2.1.29 7,872 12/25/2023
2.1.28 1,399 12/25/2023
2.1.27 694 12/25/2023
2.1.26 10,573 12/23/2023
2.1.25 140 12/23/2023
2.1.24 819 12/23/2023
2.1.23 20,755 12/9/2023
2.1.22 1,349 12/9/2023
2.1.21 256 12/9/2023
2.1.20 1,934 12/9/2023
2.1.19 10,860 12/4/2023
2.1.18 832 12/4/2023
2.1.17 5,451 11/26/2023
2.1.16 5,409 11/23/2023
2.1.15 345 11/23/2023
2.1.14 959 11/23/2023
2.1.13 9,451 11/19/2023
2.1.12 141 11/19/2023
2.1.11 1,204 11/18/2023
2.1.10 3,419 11/18/2023
2.1.9 1,950 11/18/2023
2.1.8 3,687 11/17/2023
2.1.7 1,080 11/17/2023
2.1.6 1,710 11/17/2023
2.1.5 881 11/17/2023
2.1.4 652 11/16/2023
2.1.3 186 11/16/2023
2.0.52 1,251 11/15/2023
2.0.51 2,142 11/15/2023
2.0.2 138 11/16/2023
2.0.1 146 11/16/2023
1.0.50 4,118 11/11/2023
1.0.49 126 11/11/2023
1.0.48 112 11/11/2023
1.0.47 1,341 11/9/2023
1.0.46 132 11/9/2023
1.0.45 5,232 11/6/2023
1.0.44 2,234 11/3/2023
1.0.43 1,818 11/2/2023
1.0.42 1,894 11/1/2023
1.0.41 7,532 10/18/2023
1.0.40 3,014 10/17/2023
1.0.39 1,244 10/16/2023
1.0.38 2,685 10/13/2023
1.0.37 162 10/13/2023
1.0.36 6,172 9/19/2023
1.0.35 2,061 9/18/2023
1.0.34 136 9/18/2023
1.0.33 7,698 8/30/2023
1.0.32 2,715 8/29/2023
1.0.31 4,172 8/24/2023
1.0.30 149 8/24/2023
1.0.29 4,352 8/17/2023
1.0.28 173 8/17/2023
1.0.27 8,040 8/7/2023
1.0.26 174 8/7/2023
1.0.25 7,986 7/10/2023
1.0.24 10,382 7/7/2023
1.0.23 170 7/7/2023
1.0.22 9,335 6/28/2023
1.0.21 44,561 5/24/2023
1.0.20 1,141 5/24/2023
1.0.19 421 5/23/2023
1.0.18 201 5/31/2023
1.0.17 2,759 5/23/2023
1.0.16 2,951 5/22/2023
1.0.15 5,978 5/17/2023
1.0.14 191 5/17/2023
1.0.13 5,610 4/28/2023
1.0.12 2,222 4/24/2023
1.0.11 976 4/21/2023
1.0.10 4,496 4/12/2023
1.0.9 1,080 4/11/2023
1.0.8 2,039 4/3/2023
1.0.7 244 4/3/2023
1.0.6 378 4/1/2023
1.0.5 2,051 3/23/2023
1.0.3 556 2/28/2023
1.0.2 461 2/16/2023