Soenneker.Utils.String.Trie 3.0.509

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

A utility library for comparing strings via trie (prefix tree) similarity

Installation

dotnet add package Soenneker.Utils.String.Trie

Why?

Imagine you have two strings. Trie-based matching helps you figure out how similar they are by looking at the prefixes they share. Here's why it's handy:

Easy to Understand:

Trie-based matching is straightforward. It helps identify common prefixes between two strings, providing an intuitive measure of similarity.

Not Bothered by Length:

Whether a string is long or short doesn't throw off trie-based matching. It cares more about the common prefixes than the total length of the strings.

Efficient for Big Tasks:

When you're dealing with lots of strings or large texts, trie-based matching is efficient. It quickly identifies common prefixes without getting bogged down by complicated calculations, making it a practical choice for large datasets.

Usage

string str1 = "hello";
string str2 = "hell";

double similarity = TrieStringSimilarityUtil.CalculateSimilarityPercentage(str1, str2); // 80
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.
  • net9.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.677 79 6/27/2025
3.0.676 145 5/27/2025
3.0.674 147 5/7/2025
3.0.673 143 5/5/2025
3.0.672 140 5/5/2025
3.0.670 175 4/8/2025
3.0.669 164 4/8/2025
3.0.668 160 4/8/2025
3.0.667 165 4/8/2025
3.0.666 154 4/8/2025
3.0.665 164 4/8/2025
3.0.664 158 4/8/2025
3.0.663 165 4/7/2025
3.0.662 167 4/7/2025
3.0.661 170 4/7/2025
3.0.660 159 4/7/2025
3.0.659 161 4/7/2025
3.0.658 155 4/7/2025
3.0.657 163 4/7/2025
3.0.656 169 4/6/2025
3.0.655 159 4/6/2025
3.0.654 148 4/6/2025
3.0.653 138 4/6/2025
3.0.652 119 4/6/2025
3.0.651 114 4/6/2025
3.0.650 119 4/6/2025
3.0.649 112 4/6/2025
3.0.648 94 4/5/2025
3.0.647 85 4/5/2025
3.0.646 90 4/5/2025
3.0.645 98 4/5/2025
3.0.644 85 4/5/2025
3.0.643 86 4/5/2025
3.0.642 98 4/5/2025
3.0.641 152 4/4/2025
3.0.640 153 4/1/2025
3.0.639 162 3/31/2025
3.0.638 166 3/31/2025
3.0.637 90 3/29/2025
3.0.636 474 3/25/2025
3.0.635 467 3/25/2025
3.0.634 119 3/21/2025
3.0.633 127 3/21/2025
3.0.632 143 3/18/2025
3.0.631 147 3/18/2025
3.0.630 70 3/15/2025
3.0.629 70 3/15/2025
3.0.628 71 3/15/2025
3.0.627 157 3/12/2025
3.0.626 161 3/12/2025
3.0.625 154 3/12/2025
3.0.624 161 3/11/2025
3.0.623 154 3/11/2025
3.0.622 159 3/11/2025
3.0.621 166 3/11/2025
3.0.620 150 3/11/2025
3.0.619 151 3/11/2025
3.0.618 215 3/7/2025
3.0.617 221 3/7/2025
3.0.616 98 3/2/2025
3.0.615 101 3/2/2025
3.0.614 97 3/2/2025
3.0.613 103 3/2/2025
3.0.612 97 3/1/2025
3.0.611 98 3/1/2025
3.0.610 105 3/1/2025
3.0.609 100 3/1/2025
3.0.608 103 3/1/2025
3.0.607 100 3/1/2025
3.0.606 94 3/1/2025
3.0.605 92 3/1/2025
3.0.604 110 2/25/2025
3.0.603 112 2/25/2025
3.0.602 105 2/25/2025
3.0.601 109 2/25/2025
3.0.600 92 2/24/2025
3.0.599 122 2/23/2025
3.0.598 98 2/23/2025
3.0.597 98 2/22/2025
3.0.596 91 2/22/2025
3.0.595 101 2/22/2025
3.0.594 103 2/22/2025
3.0.593 105 2/22/2025
3.0.592 100 2/21/2025
3.0.591 98 2/21/2025
3.0.590 111 2/21/2025
3.0.589 117 2/19/2025
3.0.588 117 2/19/2025
3.0.587 105 2/19/2025
3.0.586 110 2/18/2025
3.0.585 113 2/18/2025
3.0.584 131 2/18/2025
3.0.583 118 2/14/2025
3.0.582 107 2/13/2025
3.0.581 118 2/12/2025
3.0.580 116 2/12/2025
3.0.579 106 2/12/2025
3.0.578 103 2/12/2025
3.0.577 105 2/12/2025
3.0.576 106 2/11/2025
3.0.575 108 2/11/2025
3.0.574 116 2/11/2025
3.0.573 108 2/11/2025
3.0.572 114 2/11/2025
3.0.571 115 2/11/2025
3.0.570 122 2/10/2025
3.0.569 106 2/10/2025
3.0.568 102 2/10/2025
3.0.567 106 2/10/2025
3.0.566 104 2/9/2025
3.0.565 99 2/8/2025
3.0.564 110 2/8/2025
3.0.563 99 2/8/2025
3.0.562 106 2/8/2025
3.0.561 111 2/8/2025
3.0.560 99 2/7/2025
3.0.559 108 2/7/2025
3.0.558 99 2/7/2025
3.0.557 99 2/7/2025
3.0.556 112 2/7/2025
3.0.555 98 2/6/2025
3.0.554 122 2/5/2025
3.0.553 111 2/5/2025
3.0.552 108 2/5/2025
3.0.551 100 2/5/2025
3.0.550 97 2/5/2025
3.0.549 108 2/5/2025
3.0.548 93 2/5/2025
3.0.547 108 1/28/2025
3.0.546 98 1/28/2025
3.0.545 99 1/28/2025
3.0.544 91 1/27/2025
3.0.543 86 1/27/2025
3.0.542 88 1/27/2025
3.0.541 93 1/27/2025
3.0.540 103 1/26/2025
3.0.539 92 1/26/2025
3.0.538 99 1/25/2025
3.0.537 99 1/25/2025
3.0.536 101 1/25/2025
3.0.535 89 1/25/2025
3.0.534 89 1/24/2025
3.0.533 100 1/24/2025
3.0.532 99 1/24/2025
3.0.531 97 1/24/2025
3.0.530 98 1/24/2025
3.0.529 91 1/24/2025
3.0.528 100 1/23/2025
3.0.527 107 1/23/2025
3.0.526 102 1/21/2025
3.0.525 100 1/21/2025
3.0.524 113 1/21/2025
3.0.523 98 1/21/2025
3.0.522 94 1/21/2025
3.0.521 103 1/21/2025
3.0.520 98 1/21/2025
3.0.519 107 1/21/2025
3.0.518 103 1/21/2025
3.0.517 98 1/21/2025
3.0.516 104 1/21/2025
3.0.515 108 1/21/2025
3.0.514 95 1/20/2025
3.0.513 106 1/20/2025
3.0.512 95 1/20/2025
3.0.511 101 1/20/2025
3.0.510 95 1/20/2025
3.0.509 98 1/20/2025
3.0.508 104 1/20/2025
3.0.507 93 1/20/2025
3.0.506 94 1/20/2025
3.0.505 103 1/19/2025
3.0.504 95 1/19/2025
3.0.503 92 1/19/2025
3.0.502 97 1/19/2025
3.0.501 96 1/19/2025
3.0.500 93 1/19/2025
3.0.499 88 1/19/2025
3.0.498 100 1/18/2025
3.0.497 91 1/18/2025
3.0.496 93 1/17/2025
3.0.495 99 1/17/2025
3.0.494 95 1/17/2025
3.0.493 103 1/17/2025
3.0.492 96 1/16/2025
3.0.491 90 1/16/2025
3.0.490 102 1/16/2025
3.0.489 95 1/16/2025
3.0.488 99 1/16/2025
3.0.487 95 1/16/2025
3.0.486 101 1/15/2025
3.0.485 95 1/15/2025
3.0.484 92 1/15/2025
3.0.483 90 1/15/2025
3.0.482 104 1/15/2025
3.0.481 91 1/15/2025
3.0.480 76 1/15/2025
3.0.479 63 1/15/2025
3.0.478 85 1/14/2025
3.0.477 84 1/14/2025
3.0.476 87 1/14/2025
3.0.475 84 1/14/2025
3.0.474 94 1/14/2025
3.0.473 87 1/13/2025
3.0.472 90 1/13/2025
3.0.471 86 1/13/2025
3.0.470 85 1/13/2025
3.0.469 98 1/11/2025
3.0.468 107 1/11/2025
3.0.467 94 1/11/2025
3.0.466 97 1/11/2025
3.0.465 111 1/10/2025
3.0.464 89 1/10/2025
3.0.463 81 1/10/2025
3.0.462 100 1/10/2025
3.0.461 101 1/10/2025
3.0.460 110 1/10/2025
3.0.459 125 1/3/2025
3.0.458 133 1/3/2025
3.0.457 121 1/3/2025
3.0.456 107 1/3/2025
3.0.455 116 1/2/2025
3.0.454 108 1/2/2025
3.0.453 121 1/2/2025
3.0.452 111 1/2/2025
3.0.451 113 1/1/2025
3.0.450 133 1/1/2025
3.0.449 114 1/1/2025
3.0.448 118 1/1/2025
3.0.447 119 1/1/2025
3.0.446 126 1/1/2025
3.0.445 113 1/1/2025
3.0.444 113 1/1/2025
3.0.443 122 12/31/2024
3.0.442 112 12/31/2024
3.0.441 115 12/31/2024
3.0.440 120 12/31/2024
3.0.439 127 12/31/2024
3.0.438 123 12/31/2024
3.0.437 99 12/31/2024
3.0.436 100 12/31/2024
3.0.435 104 12/31/2024
3.0.434 95 12/31/2024
3.0.433 114 12/31/2024
3.0.432 103 12/30/2024
3.0.431 105 12/28/2024
3.0.430 95 12/28/2024
3.0.429 107 12/27/2024
3.0.428 114 12/27/2024
3.0.427 104 12/24/2024
3.0.426 102 12/24/2024
3.0.425 94 12/24/2024
3.0.424 103 12/23/2024
3.0.423 106 12/23/2024
3.0.422 108 12/23/2024
3.0.421 94 12/23/2024
3.0.420 108 12/23/2024
3.0.419 96 12/23/2024
3.0.418 105 12/22/2024
3.0.417 104 12/22/2024
3.0.416 104 12/22/2024
3.0.415 118 12/22/2024
3.0.414 108 12/22/2024
3.0.413 113 12/22/2024
3.0.412 102 12/21/2024
3.0.411 98 12/21/2024
3.0.410 107 12/21/2024
3.0.409 100 12/21/2024
3.0.408 96 12/21/2024
3.0.407 103 12/21/2024
3.0.406 103 12/20/2024
3.0.405 105 12/20/2024
3.0.404 110 12/20/2024
3.0.403 101 12/20/2024
3.0.402 100 12/20/2024
3.0.401 106 12/19/2024
3.0.400 96 12/19/2024
3.0.399 99 12/19/2024
3.0.398 96 12/19/2024
3.0.397 108 12/18/2024
3.0.396 102 12/18/2024
3.0.395 111 12/16/2024
3.0.394 104 12/16/2024
3.0.393 98 12/10/2024
3.0.392 104 12/10/2024
3.0.391 104 12/10/2024
3.0.390 99 12/9/2024
3.0.389 110 12/9/2024
3.0.388 99 12/9/2024
3.0.387 96 12/9/2024
3.0.386 98 12/9/2024
3.0.385 100 12/7/2024
3.0.384 108 12/6/2024
3.0.383 112 12/6/2024
3.0.382 96 12/6/2024
3.0.381 106 12/6/2024
3.0.380 108 12/6/2024
3.0.379 104 12/6/2024
3.0.377 106 12/6/2024
3.0.376 102 12/5/2024
3.0.375 117 12/5/2024
3.0.374 109 12/5/2024
3.0.373 108 12/5/2024
3.0.372 102 12/5/2024
3.0.371 100 12/5/2024
3.0.370 111 12/5/2024
3.0.369 106 12/4/2024
3.0.368 109 12/4/2024
3.0.367 104 12/4/2024
3.0.366 115 12/4/2024
3.0.365 105 12/4/2024
3.0.364 112 12/3/2024
3.0.363 106 12/3/2024
3.0.362 113 12/3/2024
3.0.361 102 12/3/2024
3.0.360 101 12/3/2024
3.0.359 99 12/3/2024
3.0.358 99 12/3/2024
3.0.357 102 12/2/2024
3.0.356 96 12/2/2024
3.0.355 100 12/2/2024
3.0.354 108 12/2/2024
3.0.353 106 12/1/2024
3.0.352 103 12/1/2024
3.0.351 110 12/1/2024
3.0.350 112 12/1/2024
3.0.349 112 11/29/2024
3.0.348 98 11/29/2024
3.0.347 102 11/21/2024
3.0.346 99 11/21/2024
3.0.345 113 11/20/2024
3.0.344 100 11/20/2024
3.0.343 113 11/20/2024
3.0.342 113 11/20/2024
3.0.341 112 11/20/2024
3.0.340 104 11/19/2024
3.0.339 109 11/19/2024
3.0.338 101 11/19/2024
3.0.337 94 11/19/2024
3.0.336 105 11/19/2024
3.0.335 108 11/19/2024
3.0.334 145 11/15/2024
3.0.333 105 11/14/2024
3.0.332 103 11/14/2024
3.0.331 97 11/14/2024
3.0.330 99 11/14/2024
3.0.329 105 11/14/2024
3.0.328 106 11/14/2024
3.0.327 105 11/14/2024
3.0.326 113 11/14/2024
3.0.325 110 11/14/2024
3.0.324 116 11/14/2024
3.0.323 110 11/14/2024
3.0.322 105 11/14/2024
3.0.321 106 11/14/2024
2.1.320 109 11/13/2024
2.1.319 108 11/13/2024
2.1.318 109 11/13/2024
2.1.317 107 11/13/2024
2.1.316 108 11/13/2024
2.1.315 106 11/12/2024
2.1.314 118 11/9/2024
2.1.313 111 11/9/2024
2.1.312 110 11/9/2024
2.1.311 108 11/8/2024
2.1.310 99 11/8/2024
2.1.309 108 11/8/2024
2.1.308 122 11/8/2024
2.1.307 122 11/8/2024
2.1.306 119 11/6/2024
2.1.305 111 11/1/2024
2.1.304 105 11/1/2024
2.1.303 106 11/1/2024
2.1.302 103 10/31/2024
2.1.301 106 10/29/2024
2.1.300 103 10/29/2024
2.1.299 109 10/29/2024
2.1.298 102 10/29/2024
2.1.297 114 10/29/2024
2.1.296 102 10/29/2024
2.1.295 107 10/28/2024
2.1.294 113 10/26/2024
2.1.293 108 10/26/2024
2.1.292 106 10/22/2024
2.1.291 115 10/22/2024
2.1.290 102 10/22/2024
2.1.289 97 10/22/2024
2.1.288 110 10/22/2024
2.1.287 111 10/18/2024
2.1.286 96 10/17/2024
2.1.285 113 10/17/2024
2.1.284 103 10/15/2024
2.1.283 103 10/15/2024
2.1.282 99 10/14/2024
2.1.281 107 10/12/2024
2.1.280 105 10/12/2024
2.1.279 98 10/12/2024
2.1.278 106 10/11/2024
2.1.277 108 10/9/2024
2.1.276 109 10/9/2024
2.1.275 101 10/9/2024
2.1.274 97 10/9/2024
2.1.273 102 10/9/2024
2.1.272 110 10/8/2024
2.1.271 112 10/8/2024
2.1.270 107 10/8/2024
2.1.269 109 10/8/2024
2.1.268 106 10/3/2024
2.1.267 94 10/3/2024
2.1.266 111 10/3/2024
2.1.265 104 10/3/2024
2.1.264 106 10/3/2024
2.1.263 105 10/2/2024
2.1.262 105 10/2/2024
2.1.261 115 10/2/2024
2.1.260 111 10/2/2024
2.1.259 103 10/2/2024
2.1.258 106 10/1/2024
2.1.257 108 10/1/2024
2.1.256 111 10/1/2024
2.1.255 118 10/1/2024
2.1.254 110 9/29/2024
2.1.253 106 9/29/2024
2.1.252 101 9/29/2024
2.1.251 104 9/29/2024
2.1.250 110 9/29/2024
2.1.249 101 9/27/2024
2.1.248 107 9/27/2024
2.1.247 100 9/27/2024
2.1.246 99 9/27/2024
2.1.245 106 9/27/2024
2.1.244 117 9/27/2024
2.1.243 107 9/27/2024
2.1.242 105 9/26/2024
2.1.241 102 9/26/2024
2.1.240 110 9/26/2024
2.1.239 102 9/26/2024
2.1.238 105 9/26/2024
2.1.237 107 9/26/2024
2.1.236 100 9/26/2024
2.1.235 102 9/26/2024
2.1.234 102 9/23/2024
2.1.233 106 9/23/2024
2.1.232 104 9/23/2024
2.1.231 101 9/23/2024
2.1.230 104 9/23/2024
2.1.229 104 9/23/2024
2.1.228 107 9/23/2024
2.1.227 102 9/23/2024
2.1.226 118 9/18/2024
2.1.225 122 9/18/2024
2.1.224 105 9/18/2024
2.1.223 111 9/18/2024
2.1.222 111 9/18/2024
2.1.221 113 9/17/2024
2.1.220 115 9/17/2024
2.1.218 117 9/17/2024
2.1.217 111 9/17/2024
2.1.216 126 9/17/2024
2.1.215 106 9/17/2024
2.1.214 103 9/17/2024
2.1.213 102 9/16/2024
2.1.212 123 9/16/2024
2.1.211 122 9/12/2024
2.1.210 123 9/12/2024
2.1.209 131 9/11/2024
2.1.208 126 9/11/2024
2.1.207 125 9/11/2024
2.1.206 128 9/11/2024
2.1.205 120 9/11/2024
2.1.204 136 9/10/2024
2.1.203 138 9/10/2024
2.1.202 112 9/10/2024
2.1.201 124 9/10/2024
2.1.200 124 9/10/2024
2.1.199 133 9/10/2024
2.1.198 133 9/10/2024
2.1.197 106 9/9/2024
2.1.195 119 9/9/2024
2.1.194 108 9/9/2024
2.1.193 122 9/9/2024
2.1.192 127 9/9/2024
2.1.191 123 9/7/2024
2.1.190 99 9/7/2024
2.1.189 125 9/7/2024
2.1.188 125 9/6/2024
2.1.187 132 9/6/2024
2.1.186 130 9/6/2024
2.1.185 127 9/5/2024
2.1.184 129 9/5/2024
2.1.183 109 9/5/2024
2.1.182 126 9/5/2024
2.1.181 118 9/5/2024
2.1.180 115 9/5/2024
2.1.179 116 9/5/2024
2.1.178 108 9/5/2024
2.1.177 108 9/4/2024
2.1.176 115 9/4/2024
2.1.175 117 9/3/2024
2.1.174 126 9/3/2024
2.1.173 115 9/3/2024
2.1.172 128 9/3/2024
2.1.171 107 9/3/2024
2.1.170 114 9/3/2024
2.1.169 121 8/29/2024
2.1.168 115 8/29/2024
2.1.167 116 8/29/2024
2.1.166 120 8/26/2024
2.1.165 110 8/26/2024
2.1.164 136 8/26/2024
2.1.163 129 8/21/2024
2.1.162 149 8/21/2024
2.1.161 139 8/21/2024
2.1.160 129 8/21/2024
2.1.159 149 8/20/2024
2.1.158 146 8/20/2024
2.1.157 125 8/20/2024
2.1.156 124 8/20/2024
2.1.155 140 8/20/2024
2.1.154 133 8/20/2024
2.1.153 146 8/19/2024
2.1.152 138 8/15/2024
2.1.151 147 8/15/2024
2.1.150 145 8/15/2024
2.1.149 138 8/14/2024
2.1.148 120 8/14/2024
2.1.147 116 8/14/2024
2.1.146 136 8/13/2024
2.1.145 112 8/7/2024
2.1.144 108 8/7/2024
2.1.143 112 8/7/2024
2.1.142 111 8/6/2024
2.1.141 101 8/6/2024
2.1.140 89 8/1/2024
2.1.139 84 8/1/2024
2.1.137 103 7/25/2024
2.1.136 107 7/25/2024
2.1.135 103 7/25/2024
2.1.134 108 7/25/2024
2.1.133 96 7/25/2024
2.1.132 111 7/25/2024
2.1.131 110 7/25/2024
2.1.130 103 7/24/2024
2.1.129 110 7/24/2024
2.1.128 104 7/20/2024
2.1.127 127 7/20/2024
2.1.126 122 7/20/2024
2.1.125 119 7/14/2024
2.1.124 116 7/14/2024
2.1.123 115 7/14/2024
2.1.122 114 7/14/2024
2.1.121 116 7/14/2024
2.1.120 122 7/10/2024
2.1.119 116 7/10/2024
2.1.118 117 7/10/2024
2.1.117 102 7/10/2024
2.1.115 114 7/10/2024
2.1.114 107 7/10/2024
2.1.113 119 7/10/2024
2.1.112 117 7/10/2024
2.1.111 101 7/10/2024
2.1.109 120 7/10/2024
2.1.108 122 7/9/2024
2.1.106 88 7/9/2024
2.1.105 108 7/9/2024
2.1.104 102 7/9/2024
2.1.103 117 7/9/2024
2.1.102 117 7/9/2024
2.1.101 117 7/9/2024
2.1.100 118 7/9/2024
2.1.99 115 7/9/2024
2.1.98 102 7/8/2024
2.1.97 129 7/8/2024
2.1.96 119 7/8/2024
2.1.95 118 7/8/2024
2.1.94 127 7/8/2024
2.1.93 116 7/8/2024
2.1.92 122 7/7/2024
2.1.91 119 7/7/2024
2.1.90 125 7/3/2024
2.1.89 110 7/3/2024
2.1.88 127 7/3/2024
2.1.87 121 7/3/2024
2.1.86 108 7/3/2024
2.1.85 116 6/27/2024
2.1.84 105 6/27/2024
2.1.83 101 6/27/2024
2.1.82 138 6/22/2024
2.1.81 125 6/22/2024
2.1.80 127 6/22/2024
2.1.79 124 6/16/2024
2.1.78 102 6/15/2024
2.1.77 109 6/15/2024
2.1.76 119 6/15/2024
2.1.75 111 6/15/2024
2.1.74 124 6/15/2024
2.1.73 110 6/15/2024
2.1.72 123 6/15/2024
2.1.71 105 6/14/2024
2.1.70 127 6/4/2024
2.1.69 112 6/4/2024
2.1.68 130 6/2/2024
2.1.67 136 6/2/2024
2.1.66 133 6/1/2024
2.1.65 113 6/1/2024
2.1.64 123 6/1/2024
2.1.63 122 6/1/2024
2.1.62 126 6/1/2024
2.1.61 121 6/1/2024
2.1.60 126 6/1/2024
2.1.59 111 5/31/2024
2.1.58 126 5/31/2024
2.1.57 132 5/31/2024
2.1.56 119 5/31/2024
2.1.55 130 5/29/2024
2.1.54 118 5/29/2024
2.1.53 129 5/29/2024
2.1.52 119 5/28/2024
2.1.51 123 5/28/2024
2.1.50 124 5/28/2024
2.1.49 127 5/28/2024
2.1.48 127 5/28/2024
2.1.47 99 5/27/2024
2.1.46 113 5/27/2024
2.1.45 119 5/27/2024
2.1.44 116 5/27/2024
2.1.43 119 5/26/2024
2.1.42 125 5/26/2024
2.1.41 125 5/26/2024
2.1.40 113 5/26/2024
2.1.39 121 5/26/2024
2.1.38 127 5/26/2024
2.1.37 102 5/25/2024
2.1.36 123 5/25/2024
2.1.35 139 5/25/2024
2.1.34 135 5/25/2024
2.1.33 128 5/25/2024
2.1.32 122 5/23/2024
2.1.31 113 5/23/2024
2.1.30 128 5/23/2024
2.1.29 125 5/23/2024
2.1.28 113 5/23/2024
2.1.27 125 5/23/2024
2.1.26 131 5/23/2024
2.1.25 123 5/22/2024
2.1.24 126 5/22/2024
2.1.23 130 5/22/2024
2.1.22 127 5/22/2024
2.1.21 109 5/18/2024
2.1.20 100 5/18/2024
2.1.19 98 5/18/2024
2.1.18 107 5/18/2024
2.1.17 105 5/17/2024
2.1.16 120 5/17/2024
2.1.15 83 5/17/2024
2.1.14 113 5/16/2024
2.1.13 101 5/16/2024
2.1.12 118 5/16/2024
2.1.11 109 5/15/2024
2.1.10 104 5/15/2024
2.1.9 116 5/15/2024
2.1.8 101 5/14/2024
2.1.7 84 5/14/2024
2.1.6 84 5/14/2024
2.1.5 95 5/14/2024
2.1.4 67 5/14/2024
2.1.3 110 5/14/2024
2.1.2 90 5/14/2024
2.1.1 94 5/14/2024