Soenneker.SmartEnum.Abbreviated 3.0.740

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

// Install Soenneker.SmartEnum.Abbreviated as a Cake Tool
#tool nuget:?package=Soenneker.SmartEnum.Abbreviated&version=3.0.740                

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.SmartEnum.Abbreviated

A derivative of Ardalis' SmartEnum, adding support for abbreviations

Installation

dotnet add package Soenneker.SmartEnum.Abbreviated

Usage

The AbbreviatedSmartEnum class is an abstract base class that extends the SmartEnum class from Ardalis' library. It provides additional functionality for working with abbreviated enum values.

To create an abbreviated SmartEnum, you need to derive a new class from AbbreviatedSmartEnum<TEnum>.

public class LanguageType : AbbreviatedSmartEnum<LanguageType>
{
    public static readonly LanguageType English = new(nameof(English), 1, "EN");
    public static readonly LanguageType Spanish = new(nameof(Spanish), 2, "ES");
    public static readonly LanguageType French = new(nameof(French), 3, "FR");

    private LanguageType(string name, int value, string abbreviation)
        : base(name, value, abbreviation)
    {
    }
}

and how you use your new SmartEnum:

string abbreviated = LanguageType.English.Abbreviation; // "EN"

// Get the enum value for the "EN" abbreviation
LanguageType english = LanguageType.FromAbbreviation("EN");

// Try to get the enum value for the "ES" abbreviation (case-insensitive)
if (LanguageType.TryFromAbbreviation("es", ignoreCase: true, out LanguageType spanish))
{
    // spanish will be the LanguageType.Spanish value
}

The IgnoreCase and StaticIgnoreCase properties allow you to control whether the abbreviation matching is case-sensitive or case-insensitive, either for a specific instance or globally across all instances of the derived enum class.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Soenneker.SmartEnum.Abbreviated:

Package Downloads
Soenneker.SmartEnum.AbbreviatedDescriptive

A derivative of AbbreviatedSmartEnum adding support for descriptions

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.774 49 12/28/2024
3.0.773 70 12/28/2024
3.0.772 60 12/27/2024
3.0.771 57 12/27/2024
3.0.770 37 12/27/2024
3.0.769 67 12/27/2024
3.0.768 155 12/24/2024
3.0.767 113 12/24/2024
3.0.766 42 12/24/2024
3.0.765 74 12/24/2024
3.0.764 39 12/24/2024
3.0.763 58 12/24/2024
3.0.762 60 12/24/2024
3.0.761 76 12/24/2024
3.0.760 80 12/24/2024
3.0.759 41 12/24/2024
3.0.758 34 12/24/2024
3.0.757 85 12/24/2024
3.0.756 36 12/24/2024
3.0.755 80 12/24/2024
3.0.754 50 12/23/2024
3.0.753 128 12/23/2024
3.0.752 65 12/23/2024
3.0.751 150 12/23/2024
3.0.750 134 12/23/2024
3.0.749 64 12/23/2024
3.0.748 62 12/23/2024
3.0.747 187 12/23/2024
3.0.746 63 12/23/2024
3.0.745 88 12/23/2024
3.0.744 65 12/23/2024
3.0.743 114 12/22/2024
3.0.742 149 12/22/2024
3.0.741 62 12/22/2024
3.0.740 147 12/22/2024
3.0.739 176 12/22/2024
3.0.738 177 12/22/2024
3.0.737 73 12/22/2024
3.0.736 104 12/22/2024
3.0.735 62 12/22/2024
3.0.734 140 12/22/2024
3.0.733 63 12/22/2024
3.0.732 67 12/22/2024
3.0.731 143 12/21/2024
3.0.730 64 12/21/2024
3.0.729 81 12/21/2024
3.0.728 75 12/21/2024
3.0.727 99 12/21/2024
3.0.726 69 12/21/2024
3.0.725 168 12/21/2024
3.0.724 60 12/21/2024
3.0.723 105 12/21/2024
3.0.722 74 12/21/2024
3.0.721 88 12/21/2024
3.0.720 70 12/21/2024
3.0.719 121 12/21/2024
3.0.718 108 12/21/2024
3.0.717 67 12/21/2024
3.0.716 187 12/20/2024
3.0.715 69 12/20/2024
3.0.714 76 12/20/2024
3.0.713 118 12/20/2024
3.0.712 134 12/20/2024
3.0.711 142 12/20/2024
3.0.710 114 12/20/2024
3.0.709 139 12/20/2024
3.0.708 144 12/19/2024
3.0.707 146 12/19/2024
3.0.706 119 12/19/2024
3.0.705 62 12/19/2024
3.0.704 121 12/19/2024
3.0.703 81 12/18/2024
3.0.702 65 12/18/2024
3.0.701 126 12/18/2024
3.0.700 167 12/17/2024
3.0.699 126 12/17/2024
3.0.698 100 12/17/2024
3.0.697 102 12/16/2024
3.0.696 73 12/16/2024
3.0.695 145 12/16/2024
3.0.694 224 12/10/2024
3.0.693 136 12/10/2024
3.0.692 144 12/10/2024
3.0.691 90 12/10/2024
3.0.690 133 12/9/2024
3.0.689 61 12/9/2024
3.0.688 141 12/9/2024
3.0.687 119 12/9/2024
3.0.686 54 12/9/2024
3.0.685 128 12/9/2024
3.0.684 104 12/9/2024
3.0.683 191 12/7/2024
3.0.682 89 12/6/2024
3.0.681 98 12/6/2024
3.0.680 106 12/6/2024
3.0.679 66 12/6/2024
3.0.677 119 12/6/2024
3.0.676 124 12/6/2024
3.0.675 209 12/6/2024
3.0.674 78 12/6/2024
3.0.673 112 12/6/2024
3.0.672 170 12/6/2024
3.0.671 71 12/6/2024
3.0.670 146 12/6/2024
3.0.669 140 12/6/2024
3.0.668 72 12/6/2024
3.0.667 114 12/6/2024
3.0.666 79 12/6/2024
3.0.665 72 12/6/2024
3.0.664 130 12/6/2024
3.0.663 168 12/6/2024
3.0.662 71 12/6/2024
3.0.661 122 12/5/2024
3.0.660 145 12/5/2024
3.0.659 205 12/5/2024
3.0.658 74 12/5/2024
3.0.657 94 12/5/2024
3.0.656 75 12/5/2024
3.0.655 139 12/5/2024
3.0.654 117 12/5/2024
3.0.653 131 12/5/2024
3.0.652 75 12/5/2024
3.0.651 157 12/5/2024
3.0.650 73 12/5/2024
3.0.649 147 12/4/2024
3.0.648 68 12/4/2024
3.0.647 100 12/4/2024
3.0.646 72 12/4/2024
3.0.645 138 12/4/2024
3.0.644 141 12/4/2024
3.0.643 68 12/4/2024
3.0.642 173 12/4/2024
3.0.641 80 12/4/2024
3.0.640 134 12/4/2024
3.0.639 116 12/3/2024
3.0.638 146 12/3/2024
3.0.637 74 12/3/2024
3.0.636 122 12/3/2024
3.0.635 75 12/3/2024
3.0.634 141 12/3/2024
3.0.633 71 12/3/2024
3.0.632 142 12/3/2024
3.0.631 69 12/3/2024
3.0.630 110 12/3/2024
3.0.629 70 12/3/2024
3.0.628 116 12/3/2024
3.0.627 66 12/3/2024
3.0.626 69 12/2/2024
3.0.625 162 12/2/2024
3.0.624 132 12/2/2024
3.0.623 84 12/2/2024
3.0.622 67 12/2/2024
3.0.621 140 12/2/2024
3.0.620 113 12/2/2024
3.0.619 72 12/2/2024
3.0.618 147 12/1/2024
3.0.617 74 12/1/2024
3.0.616 155 12/1/2024
3.0.615 67 12/1/2024
3.0.614 121 12/1/2024
3.0.613 66 12/1/2024
3.0.612 224 11/29/2024
3.0.611 88 11/29/2024
3.0.610 138 11/29/2024
3.0.609 74 11/29/2024
3.0.608 195 11/21/2024
3.0.607 143 11/21/2024
3.0.606 80 11/21/2024
3.0.605 175 11/20/2024
3.0.604 148 11/20/2024
3.0.603 153 11/20/2024
3.0.602 111 11/20/2024
3.0.601 111 11/20/2024
3.0.600 77 11/20/2024
3.0.598 147 11/20/2024
3.0.597 84 11/20/2024
3.0.595 151 11/19/2024
3.0.594 123 11/19/2024
3.0.593 80 11/19/2024
3.0.592 127 11/19/2024
3.0.591 76 11/19/2024
3.0.590 73 11/19/2024
3.0.589 214 11/19/2024
3.0.588 68 11/19/2024
3.0.587 168 11/19/2024
3.0.586 70 11/19/2024
3.0.585 77 11/19/2024
3.0.584 114 11/19/2024
3.0.583 194 11/15/2024
3.0.582 125 11/14/2024
3.0.581 76 11/14/2024
3.0.580 79 11/14/2024
3.0.579 116 11/14/2024
3.0.578 84 11/14/2024
3.0.577 145 11/14/2024
3.0.576 79 11/14/2024
3.0.575 179 11/14/2024
3.0.574 156 11/14/2024
3.0.573 74 11/14/2024
3.0.572 181 11/14/2024
3.0.571 77 11/14/2024
3.0.570 114 11/14/2024
3.0.569 81 11/14/2024
3.0.568 148 11/14/2024
3.0.567 75 11/14/2024
3.0.566 127 11/14/2024
3.0.565 79 11/14/2024
2.1.564 238 11/13/2024
2.1.563 126 11/13/2024
2.1.562 168 11/13/2024
2.1.561 79 11/13/2024
2.1.560 129 11/13/2024
2.1.559 82 11/13/2024
2.1.558 183 11/13/2024
2.1.557 78 11/13/2024
2.1.556 156 11/12/2024
2.1.555 75 11/12/2024
2.1.554 560 11/9/2024
2.1.553 98 11/9/2024
2.1.552 173 11/9/2024
2.1.551 140 11/9/2024
2.1.550 78 11/9/2024
2.1.549 178 11/9/2024
2.1.548 135 11/8/2024
2.1.547 77 11/8/2024
2.1.546 99 11/8/2024
2.1.545 92 11/8/2024
2.1.544 78 11/8/2024
2.1.543 213 11/8/2024
2.1.542 80 11/8/2024
2.1.541 79 11/8/2024
2.1.540 171 11/8/2024
2.1.539 77 11/8/2024
2.1.538 168 11/8/2024
2.1.537 76 11/8/2024
2.1.536 224 11/6/2024
2.1.535 299 11/1/2024
2.1.534 175 11/1/2024
2.1.533 75 11/1/2024
2.1.532 254 10/29/2024
2.1.531 131 10/29/2024
2.1.530 111 10/29/2024
2.1.529 149 10/29/2024
2.1.527 215 10/29/2024
2.1.526 167 10/29/2024
2.1.525 170 10/29/2024
2.1.524 211 10/28/2024
2.1.523 75 10/28/2024
2.1.522 368 10/26/2024
2.1.521 115 10/26/2024
2.1.520 140 10/26/2024
2.1.519 248 10/22/2024
2.1.518 92 10/22/2024
2.1.517 197 10/22/2024
2.1.516 81 10/22/2024
2.1.515 152 10/22/2024
2.1.514 67 10/22/2024
2.1.513 168 10/22/2024
2.1.512 266 10/18/2024
2.1.511 137 10/17/2024
2.1.510 84 10/17/2024
2.1.509 166 10/17/2024
2.1.508 225 10/15/2024
2.1.507 117 10/15/2024
2.1.506 79 10/15/2024
2.1.505 111 10/14/2024
2.1.504 197 10/12/2024
2.1.503 113 10/12/2024
2.1.502 134 10/11/2024
2.1.501 107 10/11/2024
2.1.500 115 10/11/2024
2.1.499 86 10/11/2024
2.1.498 169 10/9/2024
2.1.497 118 10/9/2024
2.1.496 131 10/9/2024
2.1.495 88 10/9/2024
2.1.493 111 10/9/2024
2.1.492 106 10/8/2024
2.1.491 127 10/8/2024
2.1.490 100 10/8/2024
2.1.489 205 10/8/2024
2.1.488 88 10/8/2024
2.1.487 114 10/8/2024
2.1.486 87 10/8/2024
2.1.485 263 10/7/2024
2.1.484 136 10/3/2024
2.1.483 80 10/3/2024
2.1.482 107 10/3/2024
2.1.481 107 10/3/2024
2.1.480 80 10/3/2024
2.1.479 100 10/3/2024
2.1.478 77 10/3/2024
2.1.477 109 10/3/2024
2.1.476 121 10/2/2024
2.1.475 110 10/2/2024
2.1.474 98 10/2/2024
2.1.473 80 10/2/2024
2.1.472 112 10/2/2024
2.1.471 90 10/2/2024
2.1.470 113 10/1/2024
2.1.469 200 10/1/2024
2.1.468 108 10/1/2024
2.1.467 76 10/1/2024
2.1.466 100 10/1/2024
2.1.465 82 10/1/2024
2.1.464 120 10/1/2024
2.1.463 103 9/30/2024
2.1.462 114 9/29/2024
2.1.461 112 9/29/2024
2.1.460 128 9/29/2024
2.1.459 90 9/29/2024
2.1.458 118 9/29/2024
2.1.457 81 9/29/2024
2.1.456 153 9/27/2024
2.1.455 97 9/27/2024
2.1.454 123 9/27/2024
2.1.453 83 9/27/2024
2.1.452 107 9/27/2024
2.1.451 94 9/27/2024
2.1.450 111 9/27/2024
2.1.449 79 9/27/2024
2.1.448 85 9/27/2024
2.1.447 79 9/27/2024
2.1.446 103 9/27/2024
2.1.445 106 9/26/2024
2.1.444 109 9/26/2024
2.1.443 87 9/26/2024
2.1.442 121 9/26/2024
2.1.441 107 9/26/2024
2.1.440 97 9/26/2024
2.1.439 103 9/26/2024
2.1.438 83 9/26/2024
2.1.437 104 9/26/2024
2.1.436 246 9/26/2024
2.1.435 81 9/26/2024
2.1.434 169 9/23/2024
2.1.433 101 9/23/2024
2.1.432 116 9/23/2024
2.1.431 83 9/23/2024
2.1.430 121 9/23/2024
2.1.429 117 9/23/2024
2.1.428 105 9/23/2024
2.1.427 140 9/23/2024
2.1.426 117 9/23/2024
2.1.425 84 9/23/2024
2.1.424 89 9/23/2024
2.1.423 103 9/23/2024
2.1.422 87 9/23/2024
2.1.421 139 9/23/2024
2.1.420 83 9/23/2024
2.1.419 123 9/18/2024
2.1.418 97 9/18/2024
2.1.417 141 9/18/2024
2.1.416 101 9/18/2024
2.1.415 107 9/18/2024
2.1.414 103 9/17/2024
2.1.413 93 9/17/2024
2.1.412 89 9/17/2024
2.1.411 100 9/17/2024
2.1.410 101 9/17/2024
2.1.409 84 9/17/2024
2.1.408 94 9/17/2024
2.1.407 93 9/17/2024
2.1.406 85 9/17/2024
2.1.405 87 9/17/2024
2.1.404 99 9/17/2024
2.1.403 87 9/17/2024
2.1.402 296 9/17/2024
2.1.401 133 9/16/2024
2.1.400 101 9/16/2024
2.1.399 112 9/16/2024
2.1.398 91 9/16/2024
2.1.397 173 9/12/2024
2.1.396 112 9/12/2024
2.1.395 128 9/12/2024
2.1.394 131 9/12/2024
2.1.393 96 9/12/2024
2.1.392 119 9/12/2024
2.1.391 99 9/11/2024
2.1.390 121 9/11/2024
2.1.389 95 9/11/2024
2.1.388 137 9/11/2024
2.1.387 126 9/11/2024
2.1.386 92 9/11/2024
2.1.385 98 9/11/2024
2.1.383 116 9/11/2024
2.1.382 128 9/11/2024
2.1.381 126 9/11/2024
2.1.380 162 9/11/2024
2.1.379 126 9/10/2024
2.1.378 105 9/10/2024
2.1.377 136 9/10/2024
2.1.376 117 9/10/2024
2.1.375 97 9/10/2024
2.1.374 107 9/10/2024
2.1.373 101 9/10/2024
2.1.372 128 9/10/2024
2.1.371 117 9/10/2024
2.1.370 114 9/10/2024
2.1.369 97 9/10/2024
2.1.368 124 9/9/2024
2.1.367 90 9/9/2024
2.1.366 123 9/9/2024
2.1.365 128 9/9/2024
2.1.363 114 9/9/2024
2.1.362 107 9/9/2024
2.1.361 123 9/9/2024
2.1.360 106 9/9/2024
2.1.358 101 9/9/2024
2.1.357 96 9/9/2024
2.1.356 96 9/9/2024
2.1.355 123 9/9/2024
2.1.354 82 9/9/2024
2.1.353 180 9/7/2024
2.1.352 104 9/7/2024
2.1.351 94 9/7/2024
2.1.350 113 9/7/2024
2.1.349 106 9/6/2024
2.1.348 122 9/6/2024
2.1.347 119 9/6/2024
2.1.346 103 9/6/2024
2.1.345 111 9/6/2024
2.1.344 95 9/6/2024
2.1.343 177 9/5/2024
2.1.342 88 9/5/2024
2.1.341 94 9/5/2024
2.1.340 123 9/5/2024
2.1.339 95 9/5/2024
2.1.338 132 9/5/2024
2.1.337 96 9/5/2024
2.1.336 94 9/5/2024
2.1.335 106 9/5/2024
2.1.334 102 9/5/2024
2.1.333 125 9/5/2024
2.1.332 94 9/5/2024
2.1.331 123 9/4/2024
2.1.330 102 9/4/2024
2.1.329 183 9/4/2024
2.1.328 120 9/3/2024
2.1.327 94 9/3/2024
2.1.326 110 9/3/2024
2.1.325 114 9/3/2024
2.1.324 95 9/3/2024
2.1.323 118 9/3/2024
2.1.322 85 9/3/2024
2.1.321 96 9/3/2024
2.1.320 94 9/3/2024
2.1.319 124 8/29/2024
2.1.318 74 8/29/2024
2.1.317 91 8/29/2024
2.1.316 72 8/29/2024
2.1.315 203 8/26/2024
2.1.314 108 8/26/2024
2.1.313 91 8/26/2024
2.1.312 112 8/26/2024
2.1.311 230 8/21/2024
2.1.310 126 8/21/2024
2.1.309 114 8/21/2024
2.1.308 106 8/21/2024
2.1.307 109 8/21/2024
2.1.306 98 8/21/2024
2.1.305 137 8/20/2024
2.1.304 115 8/20/2024
2.1.303 128 8/20/2024
2.1.302 110 8/20/2024
2.1.301 148 8/20/2024
2.1.300 104 8/20/2024
2.1.299 111 8/20/2024
2.1.298 110 8/20/2024
2.1.297 103 8/20/2024
2.1.296 132 8/20/2024
2.1.295 133 8/20/2024
2.1.294 117 8/19/2024
2.1.293 103 8/19/2024
2.1.292 193 8/15/2024
2.1.291 124 8/15/2024
2.1.290 131 8/15/2024
2.1.289 103 8/15/2024
2.1.288 142 8/14/2024
2.1.287 108 8/14/2024
2.1.286 102 8/14/2024
2.1.285 128 8/13/2024
2.1.284 121 8/7/2024
2.1.283 99 8/7/2024
2.1.282 92 8/7/2024
2.1.281 89 8/7/2024
2.1.280 103 8/6/2024
2.1.279 88 8/6/2024
2.1.278 219 8/1/2024
2.1.277 98 8/1/2024
2.1.276 88 8/1/2024
2.1.275 98 8/1/2024
2.1.274 79 8/1/2024
2.1.273 263 7/25/2024
2.1.272 73 7/25/2024
2.1.271 70 7/25/2024
2.1.270 69 7/25/2024
2.1.269 79 7/25/2024
2.1.268 124 7/25/2024
2.1.267 54 7/25/2024
2.1.266 80 7/25/2024
2.1.265 70 7/25/2024
2.1.264 67 7/25/2024
2.1.263 101 7/24/2024
2.1.262 99 7/24/2024
2.1.260 199 7/20/2024
2.1.259 112 7/20/2024
2.1.258 101 7/20/2024
2.1.257 248 7/14/2024
2.1.256 103 7/14/2024
2.1.255 93 7/14/2024
2.1.254 90 7/14/2024
2.1.253 108 7/14/2024
2.1.252 89 7/14/2024
2.1.251 100 7/14/2024
2.1.250 119 7/13/2024
2.1.249 133 7/10/2024
2.1.248 94 7/10/2024
2.1.247 100 7/10/2024
2.1.246 110 7/10/2024
2.1.245 107 7/10/2024
2.1.244 100 7/10/2024
2.1.243 90 7/10/2024
2.1.242 94 7/10/2024
2.1.241 106 7/10/2024
2.1.240 101 7/10/2024
2.1.239 79 7/10/2024
2.1.238 93 7/10/2024
2.1.237 90 7/10/2024
2.1.236 92 7/10/2024
2.1.235 90 7/10/2024
2.1.234 122 7/10/2024
2.1.232 107 7/10/2024
2.1.231 102 7/10/2024
2.1.230 121 7/9/2024
2.1.229 98 7/9/2024
2.1.227 83 7/9/2024
2.1.226 81 7/9/2024
2.1.225 100 7/9/2024
2.1.224 117 7/9/2024
2.1.223 104 7/9/2024
2.1.222 88 7/9/2024
2.1.221 111 7/9/2024
2.1.220 97 7/9/2024
2.1.219 102 7/9/2024
2.1.218 82 7/9/2024
2.1.217 103 7/9/2024
2.1.216 99 7/9/2024
2.1.215 129 7/9/2024
2.1.214 93 7/9/2024
2.1.213 101 7/8/2024
2.1.212 103 7/8/2024
2.1.211 100 7/8/2024
2.1.210 132 7/8/2024
2.1.209 98 7/8/2024
2.1.208 129 7/8/2024
2.1.207 115 7/8/2024
2.1.206 85 7/8/2024
2.1.205 115 7/8/2024
2.1.204 111 7/7/2024
2.1.203 118 7/7/2024
2.1.202 101 7/7/2024
2.1.201 115 7/7/2024
2.1.200 101 7/7/2024
2.1.199 137 7/7/2024
2.1.198 115 7/7/2024
2.1.197 153 7/3/2024
2.1.196 106 7/3/2024
2.1.195 122 7/3/2024
2.1.194 123 7/3/2024
2.1.193 110 7/3/2024
2.1.192 106 7/3/2024
2.1.191 102 7/3/2024
2.1.190 124 7/3/2024
2.1.189 244 6/27/2024
2.1.188 104 6/27/2024
2.1.187 105 6/27/2024
2.1.186 118 6/22/2024
2.1.185 109 6/22/2024
2.1.184 118 6/22/2024
2.1.183 163 6/16/2024
2.1.182 107 6/15/2024
2.1.181 105 6/15/2024
2.1.180 108 6/15/2024
2.1.179 113 6/15/2024
2.1.178 88 6/15/2024
2.1.177 109 6/15/2024
2.1.176 93 6/15/2024
2.1.175 117 6/15/2024
2.1.174 110 6/15/2024
2.1.173 110 6/14/2024
2.1.172 91 6/14/2024
2.1.171 111 6/14/2024
2.1.170 151 6/4/2024
2.1.169 114 6/4/2024
2.1.168 157 6/2/2024
2.1.167 113 6/1/2024
2.1.166 110 6/1/2024
2.1.165 111 6/1/2024
2.1.164 106 6/1/2024
2.1.163 119 6/1/2024
2.1.162 124 6/1/2024
2.1.161 95 6/1/2024
2.1.160 98 6/1/2024
2.1.159 117 6/1/2024
2.1.158 114 5/31/2024
2.1.157 108 5/31/2024
2.1.156 120 5/31/2024
2.1.155 104 5/31/2024
2.1.154 100 5/31/2024
2.1.153 141 5/29/2024
2.1.152 105 5/29/2024
2.1.151 106 5/29/2024
2.1.150 103 5/29/2024
2.1.149 97 5/29/2024
2.1.148 158 5/28/2024
2.1.147 108 5/28/2024
2.1.146 102 5/28/2024
2.1.145 104 5/28/2024
2.1.144 102 5/28/2024
2.1.143 85 5/28/2024
2.1.142 96 5/27/2024
2.1.141 94 5/27/2024
2.1.140 103 5/27/2024
2.1.139 107 5/27/2024
2.1.138 105 5/27/2024
2.1.137 88 5/27/2024
2.1.136 93 5/26/2024
2.1.135 126 5/26/2024
2.1.134 103 5/26/2024
2.1.133 111 5/26/2024
2.1.132 107 5/26/2024
2.1.131 113 5/26/2024
2.1.130 103 5/26/2024
2.1.129 95 5/26/2024
2.1.128 120 5/25/2024
2.1.127 94 5/25/2024
2.1.126 99 5/25/2024
2.1.125 95 5/25/2024
2.1.124 95 5/25/2024
2.1.123 93 5/25/2024
2.1.122 120 5/25/2024
2.1.121 97 5/25/2024
2.1.120 105 5/25/2024
2.1.119 100 5/25/2024
2.1.118 124 5/25/2024
2.1.117 125 5/23/2024
2.1.116 97 5/23/2024
2.1.115 98 5/23/2024
2.1.114 92 5/23/2024
2.1.113 116 5/23/2024
2.1.112 100 5/23/2024
2.1.111 98 5/23/2024
2.1.110 119 5/23/2024
2.1.109 97 5/23/2024
2.1.108 114 5/22/2024
2.1.107 94 5/22/2024
2.1.106 115 5/22/2024
2.1.105 97 5/22/2024
2.1.104 112 5/22/2024
2.1.103 96 5/22/2024
2.1.102 96 5/22/2024
2.1.101 110 5/22/2024
2.1.100 117 5/18/2024
2.1.99 108 5/18/2024
2.1.98 120 5/18/2024
2.1.97 99 5/18/2024
2.1.96 111 5/18/2024
2.1.95 106 5/18/2024
2.1.94 119 5/17/2024
2.1.93 118 5/17/2024
2.1.92 127 5/17/2024
2.1.91 108 5/17/2024
2.1.90 116 5/17/2024
2.1.89 111 5/17/2024
2.1.88 142 5/16/2024
2.1.87 113 5/16/2024
2.1.86 107 5/16/2024
2.1.85 115 5/15/2024
2.1.84 105 5/15/2024
2.1.83 117 5/15/2024
2.1.82 127 5/15/2024
2.1.81 106 5/15/2024
2.1.80 122 5/13/2024
2.1.79 97 5/13/2024
2.1.78 97 5/13/2024
2.1.77 95 5/13/2024
2.1.76 163 4/30/2024
2.1.75 120 4/30/2024
2.1.74 113 4/30/2024
2.1.73 107 4/30/2024
2.1.72 121 4/30/2024
2.1.71 98 4/29/2024
2.1.70 96 4/29/2024
2.1.69 119 4/29/2024
2.1.68 101 4/29/2024
2.1.67 95 4/29/2024
2.1.66 100 4/29/2024
2.1.65 106 4/28/2024
2.1.64 96 4/28/2024
2.1.63 114 4/28/2024
2.1.62 95 4/28/2024
2.1.61 97 4/28/2024
2.1.60 107 4/28/2024
2.1.59 116 4/28/2024
2.1.58 91 4/28/2024
2.1.57 106 4/28/2024
2.1.56 95 4/28/2024
2.1.55 109 4/28/2024
2.1.54 95 4/28/2024
2.1.53 108 4/28/2024
2.1.52 99 4/28/2024
2.1.51 107 4/27/2024
2.1.50 202 4/20/2024
2.1.49 117 4/20/2024
2.1.48 124 4/19/2024
2.1.47 106 4/19/2024
2.1.46 104 4/19/2024
2.1.45 88 4/19/2024
2.1.44 109 4/19/2024
2.1.43 127 4/19/2024
2.1.42 111 4/19/2024
2.1.41 119 4/18/2024
2.1.40 184 4/13/2024
2.1.39 117 4/13/2024
2.1.38 116 4/13/2024
2.1.37 123 4/13/2024
2.1.36 102 4/13/2024
2.1.35 119 4/12/2024
2.1.34 111 4/12/2024
2.1.33 101 4/12/2024
2.1.32 124 4/12/2024
2.1.31 103 4/12/2024
2.1.30 115 4/12/2024
2.1.29 115 4/12/2024
2.1.28 136 4/12/2024
2.1.27 94 4/12/2024
2.1.26 104 4/12/2024
2.1.25 103 4/12/2024
2.1.24 109 4/12/2024
2.1.23 129 4/11/2024
2.1.22 104 4/11/2024
2.1.21 131 4/10/2024
2.1.20 110 4/10/2024
2.1.19 118 4/10/2024
2.1.18 117 4/10/2024
2.1.17 105 4/10/2024
2.1.16 111 4/10/2024
2.1.15 105 4/10/2024
2.1.14 262 4/3/2024
2.1.13 103 4/2/2024
2.1.12 96 4/2/2024
2.1.11 91 4/2/2024
2.1.10 97 4/2/2024
2.1.9 80 4/2/2024
2.1.8 97 4/1/2024
2.1.7 96 4/1/2024
2.1.6 90 4/1/2024
2.1.5 109 3/31/2024
2.1.4 109 3/30/2024
2.1.3 99 3/30/2024
2.1.2 106 3/27/2024