Soenneker.Extensions.Enumerable 3.0.489

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.489
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 3.0.489
                    
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.489" />
                    
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.489" />
                    
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.489
                    
#r "nuget: Soenneker.Extensions.Enumerable, 3.0.489"
                    
#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.489
                    
#: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.489
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=3.0.489
                    
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 30,683 9/9/2025
3.0.565 22,802 9/3/2025
3.0.564 2,378 9/3/2025
3.0.563 159 9/3/2025
3.0.562 38,993 8/11/2025
3.0.561 5,293 8/11/2025
3.0.560 413 8/11/2025
3.0.559 26,835 8/5/2025
3.0.558 28,674 7/8/2025
3.0.557 32,823 6/27/2025
3.0.556 2,682 6/27/2025
3.0.555 265 6/27/2025
3.0.554 36,184 6/10/2025
3.0.553 25,965 5/27/2025
3.0.552 1,707 5/27/2025
3.0.551 1,437 5/27/2025
3.0.550 24,556 5/23/2025
3.0.549 2,756 5/23/2025
3.0.548 2,732 5/22/2025
3.0.547 23,651 5/14/2025
3.0.546 14,540 5/8/2025
3.0.545 2,166 5/7/2025
3.0.544 301 5/7/2025
3.0.543 20,300 5/5/2025
3.0.542 2,299 5/5/2025
3.0.541 4,180 5/5/2025
3.0.540 175 5/5/2025
3.0.539 29,308 4/8/2025
3.0.538 3,117 4/8/2025
3.0.537 682 4/8/2025
3.0.536 3,261 4/8/2025
3.0.535 206 4/8/2025
3.0.534 5,031 4/8/2025
3.0.533 768 4/8/2025
3.0.532 7,897 4/8/2025
3.0.531 9,521 4/8/2025
3.0.530 2,046 4/7/2025
3.0.529 4,777 4/7/2025
3.0.528 1,599 4/7/2025
3.0.527 3,939 4/7/2025
3.0.526 10,601 4/7/2025
3.0.525 3,145 4/7/2025
3.0.524 749 4/7/2025
3.0.523 12,162 4/7/2025
3.0.522 2,415 4/7/2025
3.0.521 4,166 4/6/2025
3.0.520 310 4/6/2025
3.0.519 1,983 4/6/2025
3.0.518 2,375 4/6/2025
3.0.517 2,909 4/6/2025
3.0.516 146 4/6/2025
3.0.515 511 4/6/2025
3.0.514 156 4/6/2025
3.0.513 624 4/5/2025
3.0.512 3,912 4/5/2025
3.0.511 1,906 4/5/2025
3.0.510 1,457 4/5/2025
3.0.509 219 4/5/2025
3.0.508 282 4/5/2025
3.0.507 344 4/5/2025
3.0.506 3,596 4/4/2025
3.0.505 170 4/4/2025
3.0.504 3,835 4/4/2025
3.0.503 47,115 4/4/2025
3.0.502 10,753 4/1/2025
3.0.501 5,905 4/1/2025
3.0.500 8,402 3/31/2025
3.0.499 3,726 3/31/2025
3.0.498 8,406 3/31/2025
3.0.497 10,264 3/29/2025
3.0.496 2,696 3/29/2025
3.0.495 8,542 3/27/2025
3.0.494 5,545 3/25/2025
3.0.493 2,174 3/25/2025
3.0.492 13,870 3/21/2025
3.0.491 13,463 3/18/2025
3.0.490 6,485 3/18/2025
3.0.489 9,699 3/15/2025
3.0.488 3,046 3/15/2025
3.0.487 10,940 3/12/2025
3.0.486 4,061 3/12/2025
3.0.485 643 3/12/2025
3.0.484 4,105 3/11/2025
3.0.483 474 3/11/2025
3.0.482 1,584 3/11/2025
3.0.481 3,071 3/11/2025
3.0.480 4,546 3/11/2025
3.0.479 4,058 3/11/2025
3.0.478 2,686 3/11/2025
3.0.477 15,837 3/7/2025
3.0.476 4,769 3/7/2025
3.0.475 9,575 3/2/2025
3.0.474 3,585 3/2/2025
3.0.473 867 3/2/2025
3.0.472 6,852 3/2/2025
3.0.471 6,337 3/1/2025
3.0.470 316 3/1/2025
3.0.469 6,026 3/1/2025
3.0.468 142 3/1/2025
3.0.467 2,203 3/1/2025
3.0.466 16,461 2/26/2025
3.0.465 1,457 2/25/2025
3.0.464 4,094 2/25/2025
3.0.463 2,621 2/25/2025
3.0.462 1,363 2/25/2025
3.0.461 15,277 2/23/2025
3.0.460 2,667 2/22/2025
3.0.459 12,150 2/22/2025
3.0.458 3,590 2/22/2025
3.0.457 4,349 2/22/2025
3.0.456 699 2/21/2025
3.0.455 6,914 2/21/2025
3.0.454 15,212 2/19/2025
3.0.453 6,161 2/18/2025
3.0.452 1,348 2/18/2025
3.0.451 553 2/18/2025
3.0.450 7,449 2/18/2025
3.0.449 138 2/18/2025
3.0.448 17,448 2/14/2025
3.0.447 1,797 2/14/2025
3.0.446 5,080 2/13/2025
3.0.445 6,125 2/13/2025
3.0.444 6,933 2/12/2025
3.0.443 2,171 2/12/2025
3.0.442 941 2/12/2025
3.0.441 2,763 2/12/2025
3.0.440 922 2/12/2025
3.0.439 650 2/11/2025
3.0.438 10,284 2/11/2025
3.0.437 3,523 2/11/2025
3.0.436 550 2/11/2025
3.0.435 3,378 2/10/2025
3.0.434 151 2/10/2025
3.0.433 2,234 2/10/2025
3.0.432 156 2/10/2025
3.0.431 18,047 2/9/2025
3.0.430 10,252 2/9/2025
3.0.429 483 2/9/2025
3.0.428 347 2/8/2025
3.0.427 289 2/8/2025
3.0.426 371 2/8/2025
3.0.425 11,120 2/8/2025
3.0.424 3,631 2/7/2025
3.0.423 2,588 2/7/2025
3.0.422 2,961 2/7/2025
3.0.421 141 2/7/2025
3.0.420 502 2/7/2025
3.0.419 154 2/7/2025
3.0.418 2,600 2/7/2025
3.0.417 145 2/7/2025
3.0.416 18,759 2/7/2025
3.0.415 9,406 2/5/2025
3.0.414 1,087 2/5/2025
3.0.413 1,556 2/5/2025
3.0.412 336 2/5/2025
3.0.411 3,314 2/5/2025
3.0.410 7,184 2/5/2025
3.0.409 15,779 1/28/2025
3.0.408 1,121 1/28/2025
3.0.407 356 1/28/2025
3.0.406 3,619 1/28/2025
3.0.405 7,679 1/27/2025
3.0.404 2,069 1/27/2025
3.0.403 135 1/27/2025
3.0.402 7,520 1/27/2025
3.0.401 140 1/27/2025
3.0.400 8,305 1/26/2025
3.0.399 1,723 1/26/2025
3.0.398 1,329 1/26/2025
3.0.397 731 1/26/2025
3.0.396 313 1/26/2025
3.0.395 3,613 1/25/2025
3.0.394 7,926 1/25/2025
3.0.393 5,957 1/25/2025
3.0.392 632 1/25/2025
3.0.391 14,687 1/24/2025
3.0.390 2,740 1/24/2025
3.0.389 4,842 1/24/2025
3.0.388 5,547 1/24/2025
3.0.387 1,277 1/23/2025
3.0.386 1,498 1/23/2025
3.0.385 192 1/23/2025
3.0.384 13,031 1/22/2025
3.0.383 1,659 1/21/2025
3.0.382 493 1/21/2025
3.0.381 1,583 1/21/2025
3.0.380 1,570 1/21/2025
3.0.379 1,763 1/21/2025
3.0.378 1,309 1/21/2025
3.0.377 1,809 1/21/2025
3.0.376 151 1/21/2025
3.0.375 8,340 1/21/2025
3.0.374 2,325 1/21/2025
3.0.373 1,933 1/21/2025
3.0.372 3,626 1/21/2025
3.0.371 269 1/20/2025
3.0.370 9,467 1/20/2025
3.0.369 345 1/20/2025
3.0.368 1,977 1/20/2025
3.0.367 136 1/20/2025
3.0.366 1,677 1/20/2025
3.0.365 149 1/20/2025
3.0.364 5,998 1/19/2025
3.0.363 9,026 1/19/2025
3.0.362 8,700 1/19/2025
3.0.361 2,976 1/19/2025
3.0.360 868 1/19/2025
3.0.359 5,022 1/18/2025
3.0.358 189 1/18/2025
3.0.357 4,768 1/18/2025
3.0.356 358 1/18/2025
3.0.355 1,382 1/18/2025
3.0.354 8,732 1/17/2025
3.0.353 183 1/17/2025
3.0.352 11,389 1/16/2025
3.0.351 6,177 1/16/2025
3.0.350 1,115 1/16/2025
3.0.349 7,020 1/15/2025
3.0.348 6,066 1/15/2025
3.0.347 5,054 1/15/2025
3.0.346 5,286 1/15/2025
3.0.345 3,174 1/15/2025
3.0.344 4,251 1/15/2025
3.0.343 1,182 1/15/2025
3.0.342 3,599 1/14/2025
3.0.341 629 1/14/2025
3.0.340 178 1/14/2025
3.0.339 5,281 1/14/2025
3.0.338 1,387 1/14/2025
3.0.337 134 1/14/2025
3.0.336 1,580 1/14/2025
3.0.335 514 1/14/2025
3.0.334 10,100 1/13/2025
3.0.333 2,244 1/13/2025
3.0.332 4,255 1/13/2025
3.0.331 8,639 1/11/2025
3.0.330 3,572 1/11/2025
3.0.329 3,658 1/10/2025
3.0.328 7,547 1/10/2025
3.0.327 154 1/10/2025
3.0.326 723 1/10/2025
3.0.325 148 1/10/2025
3.0.324 147 1/10/2025
3.0.323 12,273 1/3/2025
3.0.322 1,375 1/3/2025
3.0.321 1,750 1/3/2025
3.0.320 538 1/3/2025
3.0.319 1,996 1/3/2025
3.0.318 4,502 1/2/2025
3.0.317 163 1/2/2025
3.0.316 3,058 1/2/2025
3.0.315 165 1/2/2025
3.0.314 4,189 1/2/2025
3.0.313 168 1/2/2025
3.0.312 13,330 1/1/2025
3.0.311 160 1/1/2025
3.0.310 227 12/31/2024
3.0.309 169 12/31/2024
3.0.308 4,971 12/31/2024
3.0.307 161 12/31/2024
3.0.306 257 12/31/2024
3.0.305 903 12/31/2024
3.0.304 162 12/31/2024
3.0.303 1,424 12/31/2024
3.0.302 509 12/31/2024
3.0.301 8,710 12/31/2024
3.0.300 6,173 12/31/2024
3.0.299 1,339 12/31/2024
3.0.298 4,347 12/31/2024
3.0.297 3,413 12/31/2024
3.0.296 149 12/31/2024
3.0.295 162 12/31/2024
3.0.294 15,861 12/28/2024
3.0.293 2,647 12/28/2024
3.0.292 1,545 12/28/2024
3.0.291 1,793 12/27/2024
3.0.290 11,531 12/24/2024
3.0.289 2,503 12/24/2024
3.0.288 2,356 12/24/2024
3.0.287 3,376 12/24/2024
3.0.286 3,538 12/24/2024
3.0.285 2,918 12/24/2024
3.0.284 2,294 12/24/2024
3.0.283 1,817 12/23/2024
3.0.282 3,997 12/23/2024
3.0.281 4,536 12/23/2024
3.0.280 1,832 12/23/2024
3.0.279 5,250 12/23/2024
3.0.278 424 12/23/2024
3.0.277 4,852 12/22/2024
3.0.276 7,795 12/22/2024
3.0.275 7,771 12/22/2024
3.0.274 10,536 12/21/2024
3.0.273 634 12/21/2024
3.0.272 5,100 12/21/2024
3.0.271 6,810 12/21/2024
3.0.270 1,370 12/21/2024
3.0.269 8,026 12/20/2024
3.0.268 15,449 12/18/2024
3.0.267 210 12/18/2024
3.0.266 9,938 12/17/2024
3.0.265 8,371 12/17/2024
3.0.264 508 12/16/2024
3.0.263 1,466 12/16/2024
3.0.262 10,918 12/10/2024
3.0.261 3,064 12/9/2024
3.0.260 5,010 12/9/2024
3.0.259 3,403 12/9/2024
3.0.258 9,615 12/6/2024
3.0.257 1,753 12/6/2024
3.0.256 3,111 12/6/2024
3.0.255 9,515 12/6/2024
3.0.254 258 12/6/2024
3.0.253 449 12/6/2024
3.0.252 1,255 12/6/2024
3.0.251 7,623 12/6/2024
3.0.250 181 12/6/2024
3.0.249 155 12/6/2024
3.0.248 5,966 12/5/2024
3.0.247 5,917 12/5/2024
3.0.246 4,376 12/5/2024
3.0.245 5,583 12/5/2024
3.0.244 796 12/5/2024
3.0.243 645 12/5/2024
3.0.242 7,004 12/4/2024
3.0.241 618 12/4/2024
3.0.240 1,530 12/4/2024
3.0.239 4,695 12/4/2024
3.0.238 5,104 12/3/2024
3.0.237 3,806 12/3/2024
3.0.236 4,961 12/3/2024
3.0.235 4,652 12/3/2024
3.0.234 6,399 12/2/2024
3.0.233 5,273 12/2/2024
3.0.232 3,182 12/2/2024
3.0.231 597 12/2/2024
3.0.230 5,782 12/1/2024
3.0.229 1,100 12/1/2024
3.0.228 4,199 12/1/2024
3.0.227 5,469 12/1/2024
3.0.226 5,773 11/29/2024
3.0.225 9,858 11/21/2024
3.0.224 8,266 11/20/2024
3.0.223 844 11/20/2024
3.0.222 1,490 11/20/2024
3.0.221 755 11/19/2024
3.0.220 7,323 11/19/2024
3.0.219 2,999 11/19/2024
3.0.218 150 11/19/2024
3.0.217 4,921 11/19/2024
3.0.216 142 11/19/2024
3.0.215 14,077 11/14/2024
3.0.214 1,558 11/14/2024
3.0.213 5,377 11/14/2024
3.0.212 1,280 11/14/2024
3.0.211 742 11/14/2024
3.0.210 5,735 11/14/2024
3.0.209 149 11/14/2024
3.0.208 4,689 11/14/2024
3.0.207 269 11/14/2024
2.1.206 16,359 11/13/2024
2.1.205 6,565 11/13/2024
2.1.204 15,844 11/9/2024
2.1.203 1,069 11/9/2024
2.1.202 2,872 11/9/2024
2.1.201 1,687 11/8/2024
2.1.200 1,336 11/8/2024
2.1.199 152 11/8/2024
2.1.198 2,503 11/8/2024
2.1.197 349 11/8/2024
2.1.196 5,893 11/8/2024
2.1.195 7,831 11/8/2024
2.1.194 17,598 11/1/2024
2.1.192 12,587 10/29/2024
2.1.191 13,467 10/28/2024
2.1.190 8,514 10/26/2024
2.1.189 13,988 10/22/2024
2.1.188 1,902 10/22/2024
2.1.187 1,447 10/22/2024
2.1.186 11,310 10/17/2024
2.1.185 8,207 10/15/2024
2.1.184 3,133 10/14/2024
2.1.183 9,057 10/11/2024
2.1.182 1,208 10/11/2024
2.1.181 717 10/11/2024
2.1.180 14,594 10/9/2024
2.1.179 1,200 10/8/2024
2.1.178 7,161 10/8/2024
2.1.177 1,117 10/8/2024
2.1.176 16,653 10/3/2024
2.1.175 4,948 10/3/2024
2.1.174 12,048 10/2/2024
2.1.173 3,659 10/2/2024
2.1.172 8,741 10/1/2024
2.1.171 2,239 10/1/2024
2.1.170 3,573 10/1/2024
2.1.169 10,107 9/29/2024
2.1.168 2,879 9/29/2024
2.1.167 2,133 9/29/2024
2.1.166 12,256 9/27/2024
2.1.165 6,887 9/27/2024
2.1.164 147 9/27/2024
2.1.163 405 9/27/2024
2.1.162 151 9/27/2024
2.1.161 10,248 9/26/2024
2.1.160 9,853 9/26/2024
2.1.159 9,079 9/26/2024
2.1.158 9,240 9/23/2024
2.1.157 4,280 9/23/2024
2.1.156 2,482 9/23/2024
2.1.155 2,566 9/23/2024
2.1.154 8,568 9/23/2024
2.1.153 979 9/23/2024
2.1.152 1,138 9/23/2024
2.1.151 139 9/23/2024
2.1.150 2,959 9/23/2024
2.1.149 15,718 9/17/2024
2.1.148 150 9/17/2024
2.1.147 523 9/17/2024
2.1.146 6,170 9/17/2024
2.1.145 5,356 9/17/2024
2.1.144 7,076 9/17/2024
2.1.143 160 9/17/2024
2.1.142 666 9/17/2024
2.1.141 1,505 9/17/2024
2.1.140 16,967 9/16/2024
2.1.139 9,552 9/12/2024
2.1.138 6,577 9/11/2024
2.1.137 3,958 9/11/2024
2.1.136 7,444 9/11/2024
2.1.135 6,014 9/11/2024
2.1.134 14,048 9/10/2024
2.1.133 2,949 9/10/2024
2.1.132 4,662 9/9/2024
2.1.131 4,943 9/9/2024
2.1.130 3,075 9/9/2024
2.1.129 1,570 9/9/2024
2.1.128 147 9/9/2024
2.1.127 154 9/9/2024
2.1.126 157 9/9/2024
2.1.125 21,123 9/6/2024
2.1.124 8,335 9/6/2024
2.1.123 4,289 9/5/2024
2.1.122 2,568 9/5/2024
2.1.121 5,210 9/5/2024
2.1.120 2,764 9/5/2024
2.1.119 157 9/5/2024
2.1.118 2,100 9/5/2024
2.1.117 7,467 9/5/2024
2.1.116 1,726 9/4/2024
2.1.115 15,491 9/3/2024
2.1.114 1,515 9/3/2024
2.1.113 6,368 9/3/2024
2.1.112 12,335 8/29/2024
2.1.111 8,678 8/26/2024
2.1.110 8,636 8/21/2024
2.1.109 4,955 8/21/2024
2.1.108 561 8/20/2024
2.1.107 6,140 8/20/2024
2.1.106 158 8/20/2024
2.1.105 6,250 8/20/2024
2.1.104 3,699 8/20/2024
2.1.103 11,783 8/15/2024
2.1.102 10,477 8/13/2024
2.1.101 9,955 8/6/2024
2.1.100 12,100 8/1/2024
2.1.99 742 8/1/2024
2.1.98 11,471 7/25/2024
2.1.97 1,434 7/25/2024
2.1.96 1,278 7/25/2024
2.1.95 868 7/24/2024
2.1.94 299 7/24/2024
2.1.93 12,654 7/20/2024
2.1.92 10,501 7/14/2024
2.1.91 2,908 7/14/2024
2.1.90 8,901 7/10/2024
2.1.89 307 7/10/2024
2.1.88 2,731 7/10/2024
2.1.87 2,538 7/10/2024
2.1.86 313 7/10/2024
2.1.85 315 7/10/2024
2.1.83 2,760 7/10/2024
2.1.82 4,000 7/9/2024
2.1.80 1,107 7/9/2024
2.1.79 1,424 7/9/2024
2.1.78 9,963 7/9/2024
2.1.77 4,055 7/9/2024
2.1.76 15,341 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,144 7/8/2024
2.1.71 148 7/8/2024
2.1.70 9,047 7/8/2024
2.1.69 2,997 7/7/2024
2.1.68 3,385 7/7/2024
2.1.67 871 7/7/2024
2.1.66 1,739 7/7/2024
2.1.65 3,918 7/7/2024
2.1.64 3,453 7/7/2024
2.1.63 158 7/7/2024
2.1.62 4,732 7/5/2024
2.1.61 95,230 5/25/2024
2.1.60 162 5/25/2024
2.1.59 673 5/25/2024
2.1.58 18,130 5/22/2024
2.1.57 159 5/22/2024
2.1.56 14,743 5/17/2024
2.1.55 20,821 4/30/2024
2.1.54 20,584 4/28/2024
2.1.53 165 4/28/2024
2.1.52 888 4/27/2024
2.1.51 157 4/27/2024
2.1.50 32,002 4/12/2024
2.1.49 1,698 4/12/2024
2.1.48 175 4/12/2024
2.1.47 49,240 3/18/2024
2.1.46 11,124 3/13/2024
2.1.45 2,888 3/13/2024
2.1.44 76,619 2/21/2024
2.1.43 3,352 2/21/2024
2.1.42 163 2/21/2024
2.1.41 26,794 2/16/2024
2.1.40 791 2/16/2024
2.1.39 29,487 2/9/2024
2.1.38 22,989 2/6/2024
2.1.37 174 2/6/2024
2.1.36 76,306 1/15/2024
2.1.35 1,053 1/15/2024
2.1.34 30,905 1/5/2024
2.1.33 2,927 1/5/2024
2.1.32 15,818 12/27/2023
2.1.31 1,566 12/27/2023
2.1.30 1,310 12/27/2023
2.1.29 9,410 12/25/2023
2.1.28 1,721 12/25/2023
2.1.27 802 12/25/2023
2.1.26 12,617 12/23/2023
2.1.25 194 12/23/2023
2.1.24 962 12/23/2023
2.1.23 24,580 12/9/2023
2.1.22 1,550 12/9/2023
2.1.21 314 12/9/2023
2.1.20 2,307 12/9/2023
2.1.19 12,894 12/4/2023
2.1.18 984 12/4/2023
2.1.17 6,638 11/26/2023
2.1.16 6,326 11/23/2023
2.1.15 426 11/23/2023
2.1.14 1,184 11/23/2023
2.1.13 11,206 11/19/2023
2.1.12 176 11/19/2023
2.1.11 1,434 11/18/2023
2.1.10 4,003 11/18/2023
2.1.9 2,222 11/18/2023
2.1.8 4,317 11/17/2023
2.1.7 1,173 11/17/2023
2.1.6 2,099 11/17/2023
2.1.5 1,080 11/17/2023
2.1.4 796 11/16/2023
2.1.3 232 11/16/2023
2.0.52 1,483 11/15/2023
2.0.51 2,861 11/15/2023
2.0.2 169 11/16/2023
2.0.1 184 11/16/2023
1.0.50 4,720 11/11/2023
1.0.49 170 11/11/2023
1.0.48 152 11/11/2023
1.0.47 1,489 11/9/2023
1.0.46 174 11/9/2023
1.0.45 5,984 11/6/2023
1.0.44 2,516 11/3/2023
1.0.43 2,013 11/2/2023
1.0.42 2,227 11/1/2023
1.0.41 8,573 10/18/2023
1.0.40 3,338 10/17/2023
1.0.39 1,420 10/16/2023
1.0.38 3,013 10/13/2023
1.0.37 206 10/13/2023
1.0.36 6,999 9/19/2023
1.0.35 2,345 9/18/2023
1.0.34 179 9/18/2023
1.0.33 8,605 8/30/2023
1.0.32 3,023 8/29/2023
1.0.31 4,708 8/24/2023
1.0.30 205 8/24/2023
1.0.29 4,642 8/17/2023
1.0.28 235 8/17/2023
1.0.27 8,540 8/7/2023
1.0.26 234 8/7/2023
1.0.25 8,692 7/10/2023
1.0.24 12,474 7/7/2023
1.0.23 231 7/7/2023
1.0.22 10,430 6/28/2023
1.0.21 48,952 5/24/2023
1.0.20 1,288 5/24/2023
1.0.19 512 5/23/2023
1.0.18 264 5/31/2023
1.0.17 2,996 5/23/2023
1.0.16 3,106 5/22/2023
1.0.15 6,639 5/17/2023
1.0.14 253 5/17/2023
1.0.13 6,138 4/28/2023
1.0.12 2,455 4/24/2023
1.0.11 1,102 4/21/2023
1.0.10 5,088 4/12/2023
1.0.9 1,231 4/11/2023
1.0.8 2,347 4/3/2023
1.0.7 305 4/3/2023
1.0.6 445 4/1/2023
1.0.5 2,185 3/23/2023
1.0.3 625 2/28/2023
1.0.2 531 2/16/2023