Soenneker.Extensions.String 2.1.202

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Extensions.String --version 2.1.202
                    
NuGet\Install-Package Soenneker.Extensions.String -Version 2.1.202
                    
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.String" Version="2.1.202" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Extensions.String" Version="2.1.202" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Extensions.String" />
                    
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.String --version 2.1.202
                    
#r "nuget: Soenneker.Extensions.String, 2.1.202"
                    
#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.String@2.1.202
                    
#: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.String&version=2.1.202
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.String&version=2.1.202
                    
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.String

A collection of useful string extension methods

Installation

dotnet add package Soenneker.Extensions.String

Usage

Truncate()

string longString = "This is a long string that needs to be truncated";
string truncatedString = longString.Truncate(10);
// truncatedString = "This is a ..."

IsAlphaNumeric()

string alphanumeric = "abc123";
bool isAlphanumeric = alphanumeric.IsAlphaNumeric();
// isAlphanumeric = true

string nonAlphanumeric = "abc123!";
bool isNonAlphanumeric = nonAlphanumeric.IsAlphaNumeric();
// isNonAlphanumeric = false

Slugify()

string test = "this string&is%bad#for\\urls"

test.Slugify() // "this-string-is-bad-for-urls"

ToDouble()

string numericString = "3.14";
double? doubleValue = numericString.ToDouble();
// doubleValue = 3.14

string nonNumericString = "abc";
double? nonDoubleValue = nonNumericString.ToDouble();
// nonDoubleValue = null

RemoveNonDigits()

string stringWithNonDigits = "abc123xyz456";
string digitsOnly = stringWithNonDigits.RemoveNonDigits();
// digitsOnly = "123456"

Shuffle()

string originalString = "hello";
string shuffledString = originalString.Shuffle();
// shuffledString = "olhel"

... and more

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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 (63)

Showing the top 5 NuGet packages that depend on Soenneker.Extensions.String:

Package Downloads
Soenneker.Extensions.Configuration

A collection of helpful IConfiguration extension methods

Soenneker.Utils.MemoryStream

An easy modern MemoryStream utility

Soenneker.Utils.Runtime

A collection of helpful runtime-based operations

Soenneker.Extensions.Enumerable.String

A collection of helpful enumerable string extension methods

Soenneker.Extensions.Type

An extension library for useful Type operations

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.557 53,459 9/16/2025
3.0.556 33,156 9/9/2025
3.0.555 31,383 9/3/2025
3.0.554 11,754 9/3/2025
3.0.553 173 9/3/2025
3.0.552 729 9/3/2025
3.0.551 189 9/3/2025
3.0.550 1,932 9/3/2025
3.0.549 41,896 8/16/2025
3.0.548 29,358 8/11/2025
3.0.547 2,337 8/11/2025
3.0.546 165 8/11/2025
3.0.545 3,888 8/11/2025
3.0.544 156 8/11/2025
3.0.543 262 8/11/2025
3.0.542 33,332 8/10/2025
3.0.541 22,711 8/5/2025
3.0.540 15,642 7/29/2025
3.0.539 32,432 7/8/2025
3.0.538 49,567 6/28/2025
3.0.537 5,940 6/27/2025
3.0.536 104 6/27/2025
3.0.535 7,800 6/27/2025
3.0.534 109 6/27/2025
3.0.533 372 6/27/2025
3.0.532 26,832 6/24/2025
3.0.531 22,187 6/11/2025
3.0.530 14,313 6/10/2025
3.0.529 26,361 6/2/2025
3.0.528 15,569 5/27/2025
3.0.527 3,018 5/27/2025
3.0.526 190 5/27/2025
3.0.525 4,294 5/27/2025
3.0.524 195 5/27/2025
3.0.523 204 5/27/2025
3.0.522 5,346 5/27/2025
3.0.521 25,041 5/25/2025
3.0.520 14,797 5/23/2025
3.0.519 4,873 5/23/2025
3.0.518 190 5/23/2025
3.0.517 181 5/23/2025
3.0.516 3,166 5/22/2025
3.0.515 197 5/22/2025
3.0.514 5,457 5/22/2025
3.0.513 38,760 5/14/2025
3.0.512 23,420 5/8/2025
3.0.511 5,607 5/8/2025
3.0.510 210 5/8/2025
3.0.509 1,244 5/8/2025
3.0.508 315 5/7/2025
3.0.507 205 5/7/2025
3.0.506 4,726 5/7/2025
3.0.505 26,566 5/5/2025
3.0.504 3,982 5/5/2025
3.0.503 310 5/5/2025
3.0.502 212 5/5/2025
3.0.501 6,654 5/5/2025
3.0.500 1,475 5/5/2025
3.0.499 213 5/5/2025
3.0.498 302 5/5/2025
3.0.497 199 5/5/2025
3.0.496 428 5/5/2025
3.0.495 11,147 5/5/2025
3.0.494 190 5/5/2025
3.0.493 35,581 4/27/2025
3.0.492 157 4/27/2025
3.0.491 7,704 4/26/2025
3.0.490 15,688 4/8/2025
3.0.489 3,340 4/8/2025
3.0.488 218 4/8/2025
3.0.487 220 4/8/2025
3.0.486 4,315 4/8/2025
3.0.485 327 4/8/2025
3.0.484 1,410 4/8/2025
3.0.483 3,584 4/8/2025
3.0.482 39,331 4/8/2025
3.0.481 710 4/8/2025
3.0.480 76,592 4/6/2025
3.0.479 10,324 4/6/2025
3.0.478 4,166 4/6/2025
3.0.477 4,836 4/6/2025
3.0.476 3,797 4/6/2025
3.0.475 201 4/6/2025
3.0.474 204 4/6/2025
3.0.473 10,633 4/6/2025
3.0.472 188 4/6/2025
3.0.471 201 4/6/2025
3.0.470 4,787 4/5/2025
3.0.469 166 4/5/2025
3.0.468 44,259 4/4/2025
3.0.467 155 4/4/2025
3.0.466 262 4/4/2025
3.0.465 11,111 4/4/2025
3.0.464 208,910 3/11/2025
3.0.463 15,924 3/11/2025
3.0.462 223 3/11/2025
3.0.461 11,824 3/11/2025
3.0.460 226 3/11/2025
3.0.459 77,234 3/1/2025
3.0.458 8,932 3/1/2025
3.0.457 151 3/1/2025
3.0.456 6,359 3/1/2025
3.0.455 176 3/1/2025
3.0.454 164 3/1/2025
3.0.453 3,233 3/1/2025
3.0.452 175 3/1/2025
3.0.451 159 3/1/2025
3.0.450 178 3/1/2025
3.0.449 166 3/1/2025
3.0.448 52,827 2/24/2025
3.0.447 1,878 2/24/2025
3.0.446 51,655 2/21/2025
3.0.445 38,517 2/18/2025
3.0.444 2,259 2/18/2025
3.0.443 186 2/18/2025
3.0.442 173 2/18/2025
3.0.441 39,954 2/13/2025
3.0.440 29,847 2/11/2025
3.0.439 5,310 2/11/2025
3.0.438 10,570 2/11/2025
3.0.437 8,186 2/11/2025
3.0.436 5,462 2/10/2025
3.0.435 196 2/10/2025
3.0.434 4,339 2/10/2025
3.0.433 14,237 2/10/2025
3.0.432 8,340 2/10/2025
3.0.431 373 2/10/2025
3.0.430 162 2/10/2025
3.0.429 21,760 2/10/2025
3.0.428 166 2/10/2025
3.0.427 37,365 2/8/2025
3.0.426 3,579 2/7/2025
3.0.425 166 2/7/2025
3.0.424 11,905 2/7/2025
3.0.423 4,632 2/7/2025
3.0.422 3,365 2/7/2025
3.0.421 161 2/7/2025
3.0.420 158 2/7/2025
3.0.419 3,642 2/7/2025
3.0.418 183 2/7/2025
3.0.417 165 2/7/2025
3.0.416 163 2/7/2025
3.0.415 6,529 2/7/2025
3.0.414 209 2/7/2025
3.0.413 159 2/7/2025
3.0.412 91,965 1/27/2025
3.0.411 3,861 1/27/2025
3.0.410 227 1/27/2025
3.0.409 7,959 1/27/2025
3.0.408 1,699 1/27/2025
3.0.407 170 1/27/2025
3.0.406 163 1/27/2025
3.0.405 35,354 1/25/2025
3.0.404 28,704 1/24/2025
3.0.403 28,474 1/24/2025
3.0.402 720 1/24/2025
3.0.401 8,391 1/23/2025
3.0.400 173 1/23/2025
3.0.398 10,942 1/23/2025
3.0.397 31,829 1/21/2025
3.0.396 175 1/21/2025
3.0.395 231 1/21/2025
3.0.394 27,393 1/20/2025
3.0.393 5,961 1/20/2025
3.0.392 2,653 1/20/2025
3.0.391 174 1/20/2025
3.0.390 14,764 1/20/2025
3.0.389 166 1/20/2025
3.0.388 6,308 1/20/2025
3.0.387 170 1/20/2025
3.0.386 165 1/20/2025
3.0.385 11,724 1/20/2025
3.0.384 167 1/20/2025
3.0.383 167 1/20/2025
3.0.382 160 1/20/2025
3.0.381 39,862 1/19/2025
3.0.380 481 1/19/2025
3.0.379 147 1/19/2025
3.0.378 23,189 1/18/2025
3.0.377 21,960 1/16/2025
3.0.376 26,004 1/16/2025
3.0.375 20,949 1/16/2025
3.0.374 18,435 1/15/2025
3.0.373 6,674 1/15/2025
3.0.372 5,353 1/15/2025
3.0.371 9,569 1/15/2025
3.0.370 8,765 1/15/2025
3.0.369 5,486 1/14/2025
3.0.368 1,608 1/14/2025
3.0.367 1,247 1/14/2025
3.0.366 346 1/14/2025
3.0.365 156 1/14/2025
3.0.364 6,171 1/14/2025
3.0.363 3,517 1/14/2025
3.0.362 159 1/14/2025
3.0.361 7,921 1/14/2025
3.0.360 34,374 1/12/2025
3.0.359 23,606 1/10/2025
3.0.358 7,015 1/10/2025
3.0.357 168 1/10/2025
3.0.356 159 1/10/2025
3.0.355 6,004 1/10/2025
3.0.354 181 1/10/2025
3.0.353 197 1/10/2025
3.0.352 158 1/10/2025
3.0.351 36,408 1/2/2025
3.0.350 220 1/2/2025
3.0.349 170 1/2/2025
3.0.348 8,841 1/2/2025
3.0.347 190 1/2/2025
3.0.346 200 1/2/2025
3.0.345 2,605 1/2/2025
3.0.344 24,230 1/1/2025
3.0.343 207 1/1/2025
3.0.342 210 1/1/2025
3.0.341 661 12/31/2024
3.0.340 188 12/31/2024
3.0.339 183 12/31/2024
3.0.338 3,351 12/31/2024
3.0.337 204 12/31/2024
3.0.336 192 12/31/2024
3.0.335 227 12/31/2024
3.0.334 11,554 12/31/2024
3.0.333 31,213 12/31/2024
3.0.332 165 12/31/2024
3.0.331 187 12/31/2024
3.0.330 13,747 12/31/2024
3.0.329 194 12/31/2024
3.0.328 187 12/31/2024
3.0.327 6,264 12/31/2024
3.0.326 57,545 12/24/2024
3.0.325 161 12/24/2024
3.0.324 168 12/24/2024
3.0.323 9,262 12/24/2024
3.0.322 188 12/24/2024
3.0.321 184 12/24/2024
3.0.320 2,176 12/24/2024
3.0.319 57,247 12/22/2024
3.0.318 648 12/22/2024
3.0.317 189 12/22/2024
3.0.316 10,710 12/21/2024
3.0.315 168 12/21/2024
3.0.314 1,416 12/21/2024
3.0.313 13,471 12/21/2024
3.0.312 174 12/21/2024
3.0.311 3,828 12/21/2024
3.0.310 7,118 12/21/2024
3.0.309 194 12/21/2024
3.0.308 10,665 12/21/2024
3.0.307 185 12/21/2024
3.0.306 942 12/21/2024
3.0.305 7,432 12/21/2024
3.0.304 177 12/21/2024
3.0.303 8,858 12/20/2024
3.0.302 5,385 12/20/2024
3.0.301 183 12/20/2024
3.0.300 19,609 12/19/2024
3.0.299 2,031 12/19/2024
3.0.298 933 12/18/2024
3.0.297 174 12/18/2024
3.0.296 360 12/18/2024
3.0.295 35,749 12/17/2024
3.0.294 5,093 12/17/2024
3.0.293 209 12/17/2024
3.0.292 537 12/16/2024
3.0.291 197 12/16/2024
3.0.290 159 12/16/2024
3.0.289 184 12/16/2024
3.0.288 80,558 12/5/2024
3.0.287 34,081 12/4/2024
3.0.286 11,156 12/4/2024
3.0.285 7,552 12/4/2024
3.0.284 5,097 12/4/2024
3.0.283 10,005 12/4/2024
3.0.282 306 12/4/2024
3.0.281 20,845 12/3/2024
3.0.280 201 12/3/2024
3.0.279 8,660 12/3/2024
3.0.278 5,828 12/2/2024
3.0.277 186 12/2/2024
3.0.276 8,179 12/2/2024
3.0.275 19,761 12/1/2024
3.0.274 8,290 12/1/2024
3.0.273 212 12/1/2024
3.0.272 202 12/1/2024
3.0.271 57,336 11/19/2024
3.0.270 193 11/19/2024
3.0.269 7,677 11/19/2024
3.0.268 208 11/19/2024
3.0.267 186 11/19/2024
3.0.266 18,772 11/19/2024
3.0.265 5,458 11/19/2024
3.0.264 39,509 11/14/2024
3.0.263 194 11/14/2024
3.0.262 4,525 11/14/2024
3.0.261 182 11/14/2024
3.0.260 189 11/14/2024
3.0.259 2,418 11/13/2024
3.0.258 200 11/13/2024
2.1.257 71,841 11/8/2024
2.1.256 20,087 11/8/2024
2.1.255 171 11/8/2024
2.1.254 163 11/8/2024
2.1.253 66,868 10/28/2024
2.1.252 160,964 10/1/2024
2.1.251 23,789 9/30/2024
2.1.250 41,760 9/27/2024
2.1.249 172 9/27/2024
2.1.248 166 9/27/2024
2.1.247 4,021 9/27/2024
2.1.246 167 9/27/2024
2.1.245 165 9/27/2024
2.1.244 158 9/27/2024
2.1.243 76,270 9/23/2024
2.1.242 1,100 9/23/2024
2.1.241 4,603 9/23/2024
2.1.240 178 9/23/2024
2.1.239 1,902 9/23/2024
2.1.238 186 9/23/2024
2.1.237 10,101 9/22/2024
2.1.236 38,870 9/17/2024
2.1.235 344 9/17/2024
2.1.234 183 9/17/2024
2.1.233 279 9/17/2024
2.1.232 198 9/17/2024
2.1.231 5,390 9/17/2024
2.1.230 208 9/17/2024
2.1.229 67,338 9/11/2024
2.1.228 22,247 9/11/2024
2.1.227 31,309 9/9/2024
2.1.226 12,282 9/9/2024
2.1.225 7,460 9/9/2024
2.1.224 10,376 9/9/2024
2.1.223 11,862 9/9/2024
2.1.222 182 9/9/2024
2.1.221 206 9/9/2024
2.1.220 48,653 9/5/2024
2.1.219 9,918 9/5/2024
2.1.218 194 9/5/2024
2.1.217 200 9/5/2024
2.1.216 1,609 9/5/2024
2.1.215 211 9/5/2024
2.1.214 5,380 9/5/2024
2.1.213 27,560 9/4/2024
2.1.212 68,935 8/20/2024
2.1.211 7,336 8/20/2024
2.1.210 192 8/20/2024
2.1.209 180 8/20/2024
2.1.208 6,864 8/20/2024
2.1.207 197 8/20/2024
2.1.206 205 8/20/2024
2.1.205 101,807 7/24/2024
2.1.204 7,970 7/24/2024
2.1.203 153 7/24/2024
2.1.202 38,342 7/13/2024
2.1.201 193 7/13/2024
2.1.200 21,378 7/10/2024
2.1.199 5,657 7/10/2024
2.1.198 237 7/10/2024
2.1.196 6,014 7/9/2024
2.1.194 4,587 7/9/2024
2.1.193 26,571 7/9/2024
2.1.192 8,627 7/9/2024
2.1.191 878 7/9/2024
2.1.190 191 7/9/2024
2.1.189 11,196 7/9/2024
2.1.188 3,954 7/8/2024
2.1.187 170 7/8/2024
2.1.186 190 7/8/2024
2.1.185 173 7/8/2024
2.1.184 173 7/8/2024
2.1.183 6,982 7/8/2024
2.1.182 188 7/8/2024
2.1.181 178 7/8/2024
2.1.180 753 7/8/2024
2.1.179 34,604 7/7/2024
2.1.178 4,267 7/7/2024
2.1.177 31,725 7/3/2024
2.1.176 51,845 6/14/2024
2.1.174 60,578 5/27/2024
2.1.173 3,731 5/27/2024
2.1.172 155 5/27/2024
2.1.171 28,636 5/25/2024
2.1.170 9,763 5/25/2024
2.1.169 193 5/25/2024
2.1.168 174 5/25/2024
2.1.167 6,084 5/25/2024
2.1.166 192 5/25/2024
2.1.165 220 5/25/2024
2.1.164 193 5/25/2024
2.1.163 5,465 5/25/2024
2.1.162 182 5/25/2024
2.1.161 26,078 5/22/2024
2.1.160 6,263 5/22/2024
2.1.159 3,477 5/22/2024
2.1.158 180 5/22/2024
2.1.157 181 5/22/2024
2.1.156 193 5/22/2024
2.1.155 13,696 5/22/2024
2.1.154 22,279 5/16/2024
2.1.153 66,756 4/28/2024
2.1.152 170 4/28/2024
2.1.151 10,047 4/28/2024
2.1.150 179 4/28/2024
2.1.149 206 4/28/2024
2.1.148 871 4/28/2024
2.1.147 185 4/28/2024
2.1.146 195 4/28/2024
2.1.145 6,561 4/27/2024
2.1.144 229 4/27/2024
2.1.143 182 4/27/2024
2.1.142 52,848 4/12/2024
2.1.141 226 4/12/2024
2.1.140 6,892 4/12/2024
2.1.139 208 4/12/2024
2.1.138 193 4/12/2024
2.1.137 3,546 4/12/2024
2.1.136 212 4/12/2024
2.1.135 199 4/12/2024
2.1.134 192 4/12/2024
2.1.133 36,953 4/1/2024
2.1.132 26,063 3/25/2024
2.1.131 27,921 3/18/2024
2.1.130 273 3/18/2024
2.1.129 468 3/18/2024
2.1.128 26,285 3/13/2024
2.1.127 267 3/13/2024
2.1.126 255 3/13/2024
2.1.125 1,921 3/13/2024
2.1.124 236 3/13/2024
2.1.123 261 3/13/2024
2.1.122 52,558 3/8/2024
2.1.121 21,795 3/3/2024
2.1.120 18,149 3/2/2024
2.1.119 2,323 3/1/2024
2.1.117 16,302 2/28/2024
2.1.116 31,039 2/25/2024
2.1.115 289 2/25/2024
2.1.114 24,803 2/21/2024
2.1.113 5,883 2/21/2024
2.1.112 3,877 2/21/2024
2.1.111 2,533 2/21/2024
2.1.110 309 2/21/2024
2.1.109 7,961 2/21/2024
2.1.108 313 2/21/2024
2.1.107 328 2/21/2024
2.1.106 19,750 2/20/2024
2.1.105 2,133 2/20/2024
2.1.104 13,395 2/19/2024
2.1.103 13,798 2/16/2024
2.1.102 9,240 2/16/2024
2.1.101 318 2/16/2024
2.1.100 8,373 2/16/2024
2.1.99 53,515 2/9/2024
2.1.98 48,621 2/7/2024
2.1.97 5,724 2/6/2024
2.1.96 3,569 2/6/2024
2.1.95 659 2/6/2024
2.1.94 340 2/6/2024
2.1.93 17,791 2/4/2024
2.1.92 130,491 1/15/2024
2.1.91 7,015 1/15/2024
2.1.90 437 1/15/2024
2.1.89 3,837 1/15/2024
2.1.88 399 1/15/2024
2.1.87 48,462 1/7/2024
2.1.86 9,460 1/5/2024
2.1.85 5,928 1/5/2024
2.1.84 419 1/5/2024
2.1.83 448 1/5/2024
2.1.82 6,213 1/5/2024
2.1.81 16,302 1/1/2024
2.1.80 502 1/1/2024
2.1.79 10,816 12/28/2023
2.1.78 5,238 12/28/2023
2.1.77 5,305 12/27/2023
2.1.76 477 12/27/2023
2.1.75 471 12/27/2023
2.1.74 6,116 12/27/2023
2.1.73 444 12/27/2023
2.1.72 491 12/27/2023
2.1.71 20,458 12/25/2023
2.1.70 1,116 12/25/2023
2.1.69 488 12/25/2023
2.1.68 486 12/25/2023
2.1.67 5,867 12/25/2023
2.1.66 16,357 12/24/2023
2.1.65 9,899 12/23/2023
2.1.64 2,776 12/23/2023
2.1.63 465 12/23/2023
2.1.62 7,016 12/23/2023
2.1.61 499 12/23/2023
2.1.60 445 12/23/2023
2.1.59 2,178 12/23/2023
2.1.58 452 12/23/2023
2.1.57 17,530 12/19/2023
2.1.56 5,910 12/18/2023
2.1.55 16,454 12/10/2023
2.1.51 7,922 12/10/2023
2.1.50 14,014 12/9/2023
2.1.49 507 12/9/2023
2.1.48 609 12/9/2023
2.1.47 518 12/9/2023
2.1.46 514 12/9/2023
2.1.45 538 12/9/2023
2.1.44 9,488 12/9/2023
2.1.43 14,628 12/6/2023
2.1.42 12,105 12/4/2023
2.1.41 7,384 12/4/2023
2.1.40 547 12/4/2023
2.1.39 1,133 12/4/2023
2.1.38 592 12/4/2023
2.1.37 20,625 11/23/2023
2.1.36 478 11/23/2023
2.1.35 1,046 11/23/2023
2.1.34 503 11/23/2023
2.1.33 2,555 11/23/2023
2.1.32 4,041 11/23/2023
2.1.31 12,421 11/20/2023
2.1.30 5,022 11/20/2023
2.1.29 8,918 11/19/2023
2.1.28 1,637 11/19/2023
2.1.27 511 11/19/2023
2.1.26 520 11/19/2023
2.1.25 506 11/19/2023
2.1.24 2,855 11/19/2023
2.1.23 12,855 11/18/2023
2.1.22 542 11/18/2023
2.1.21 4,196 11/18/2023
2.1.20 2,790 11/18/2023
2.1.19 524 11/18/2023
2.1.18 7,449 11/17/2023
2.1.17 1,904 11/17/2023
2.1.16 531 11/17/2023
2.1.15 518 11/17/2023
2.1.14 2,476 11/17/2023
2.1.13 10,213 11/17/2023
2.1.12 2,907 11/17/2023
2.1.11 511 11/17/2023
2.1.10 541 11/17/2023
2.1.9 603 11/17/2023
2.1.8 4,824 11/17/2023
2.1.7 2,041 11/16/2023
2.1.6 486 11/16/2023
2.1.5 1,205 11/16/2023
2.1.4 504 11/16/2023
2.0.140 7,225 11/15/2023
2.0.139 533 11/15/2023
2.0.138 497 11/15/2023
2.0.137 521 11/15/2023
2.0.136 508 11/15/2023
2.0.3 497 11/16/2023
2.0.2 523 11/16/2023
2.0.1 458 11/16/2023
1.0.135 15,618 11/10/2023
1.0.134 543 11/10/2023
1.0.133 7,004 11/9/2023
1.0.132 495 11/9/2023
1.0.131 538 11/9/2023
1.0.130 2,535 11/8/2023
1.0.129 12,921 11/6/2023
1.0.128 501 11/6/2023
1.0.127 534 11/6/2023
1.0.126 541 11/6/2023
1.0.125 4,764 11/3/2023
1.0.124 8,958 11/2/2023
1.0.123 556 11/2/2023
1.0.122 545 11/2/2023
1.0.121 498 11/2/2023
1.0.120 4,602 11/1/2023
1.0.119 24,571 10/18/2023
1.0.118 577 10/18/2023
1.0.117 580 10/18/2023
1.0.116 542 10/18/2023
1.0.115 5,253 10/17/2023
1.0.114 5,944 10/16/2023
1.0.113 574 10/16/2023
1.0.112 567 10/16/2023
1.0.111 598 10/16/2023
1.0.110 8,834 10/13/2023
1.0.109 619 10/13/2023
1.0.108 17,382 9/19/2023
1.0.107 605 9/19/2023
1.0.106 617 9/19/2023
1.0.105 555 9/19/2023
1.0.104 7,816 9/18/2023
1.0.103 601 9/18/2023
1.0.102 19,992 8/30/2023
1.0.101 690 8/30/2023
1.0.100 637 8/30/2023
1.0.99 637 8/30/2023
1.0.98 642 8/30/2023
1.0.97 14,781 8/25/2023
1.0.96 6,602 8/24/2023
1.0.95 652 8/24/2023
1.0.94 13,233 8/18/2023
1.0.93 668 8/18/2023
1.0.92 6,019 8/17/2023
1.0.91 632 8/17/2023
1.0.90 660 8/17/2023
1.0.89 22,186 8/8/2023
1.0.88 705 8/8/2023
1.0.87 7,240 8/7/2023
1.0.86 714 8/7/2023
1.0.85 699 8/7/2023
1.0.84 26,809 7/10/2023
1.0.83 764 7/10/2023
1.0.82 776 7/10/2023
1.0.81 786 7/10/2023
1.0.80 6,073 7/7/2023
1.0.79 738 7/7/2023
1.0.78 19,712 6/29/2023
1.0.77 5,445 6/28/2023
1.0.76 761 6/28/2023
1.0.75 788 6/28/2023
1.0.74 56,392 6/7/2023
1.0.73 6,859 6/7/2023
1.0.72 797 6/7/2023
1.0.71 794 6/7/2023
1.0.70 8,495 6/6/2023
1.0.69 780 6/6/2023
1.0.68 3,187 6/5/2023
1.0.67 787 6/5/2023
1.0.66 8,518 6/2/2023
1.0.65 809 6/2/2023
1.0.64 797 6/2/2023
1.0.63 32,839 5/30/2023
1.0.62 790 5/30/2023
1.0.61 9,440 5/29/2023
1.0.60 788 5/29/2023
1.0.59 7,362 5/26/2023
1.0.58 14,159 5/25/2023
1.0.57 784 5/25/2023
1.0.56 7,291 5/24/2023
1.0.55 815 5/24/2023
1.0.54 812 5/24/2023
1.0.53 788 5/24/2023
1.0.52 906 5/24/2023
1.0.51 4,823 5/23/2023
1.0.50 781 5/23/2023
1.0.49 801 5/23/2023
1.0.46 15,201 5/22/2023
1.0.45 12,576 5/18/2023
1.0.44 7,499 5/17/2023
1.0.43 770 5/17/2023
1.0.42 765 5/17/2023
1.0.41 759 5/17/2023
1.0.40 19,780 4/24/2023
1.0.39 2,670 4/24/2023
1.0.38 834 4/24/2023
1.0.37 4,575 4/21/2023
1.0.36 791 4/21/2023
1.0.35 807 4/21/2023
1.0.34 5,116 4/20/2023
1.0.33 1,023 4/20/2023
1.0.32 936 4/20/2023
1.0.31 4,650 4/19/2023
1.0.30 2,178 4/18/2023
1.0.29 827 4/18/2023
1.0.28 2,089 4/18/2023
1.0.27 3,788 4/17/2023
1.0.26 904 4/16/2023
1.0.25 850 4/16/2023
1.0.24 3,922 4/14/2023
1.0.23 2,905 4/13/2023
1.0.22 2,811 4/12/2023
1.0.21 831 4/12/2023
1.0.20 829 4/12/2023
1.0.19 2,024 4/11/2023
1.0.18 903 4/11/2023
1.0.17 2,908 4/11/2023
1.0.16 3,368 4/7/2023
1.0.15 4,378 4/3/2023
1.0.14 870 4/3/2023
1.0.13 861 4/3/2023
1.0.12 818 4/3/2023
1.0.11 2,286 4/1/2023
1.0.10 1,280 3/30/2023
1.0.9 1,009 3/26/2023
1.0.7 4,419 2/27/2023
1.0.6 911 2/26/2023
1.0.5 885 2/22/2023
1.0.4 1,125 2/22/2023
1.0.3 915 2/22/2023
1.0.2 1,513 2/12/2023
1.0.1 1,119 2/12/2023