Soenneker.Utils.String.Trie 3.0.678

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