Soenneker.SmartEnum.Abbreviated 3.0.608

Prefix Reserved
dotnet add package Soenneker.SmartEnum.Abbreviated --version 3.0.608                
NuGet\Install-Package Soenneker.SmartEnum.Abbreviated -Version 3.0.608                
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.608" />                
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.608                
#r "nuget: Soenneker.SmartEnum.Abbreviated, 3.0.608"                
#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.608

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

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.608 27 11/21/2024
3.0.607 50 11/21/2024
3.0.606 22 11/21/2024
3.0.605 86 11/20/2024
3.0.604 83 11/20/2024
3.0.603 87 11/20/2024
3.0.602 62 11/20/2024
3.0.601 59 11/20/2024
3.0.600 32 11/20/2024
3.0.598 87 11/20/2024
3.0.597 29 11/20/2024
3.0.595 91 11/19/2024
3.0.594 67 11/19/2024
3.0.593 27 11/19/2024
3.0.592 83 11/19/2024
3.0.591 30 11/19/2024
3.0.590 30 11/19/2024
3.0.589 156 11/19/2024
3.0.588 27 11/19/2024
3.0.587 109 11/19/2024
3.0.586 28 11/19/2024
3.0.585 32 11/19/2024
3.0.584 56 11/19/2024
3.0.583 181 11/15/2024
3.0.582 110 11/14/2024
3.0.581 61 11/14/2024
3.0.580 66 11/14/2024
3.0.579 103 11/14/2024
3.0.578 69 11/14/2024
3.0.577 130 11/14/2024
3.0.576 66 11/14/2024
3.0.575 166 11/14/2024
3.0.574 143 11/14/2024
3.0.573 59 11/14/2024
3.0.572 164 11/14/2024
3.0.571 58 11/14/2024
3.0.570 95 11/14/2024
3.0.569 60 11/14/2024
3.0.568 129 11/14/2024
3.0.567 58 11/14/2024
3.0.566 110 11/14/2024
3.0.565 62 11/14/2024
2.1.564 216 11/13/2024
2.1.563 109 11/13/2024
2.1.562 149 11/13/2024
2.1.561 60 11/13/2024
2.1.560 112 11/13/2024
2.1.559 65 11/13/2024
2.1.558 166 11/13/2024
2.1.557 59 11/13/2024
2.1.556 137 11/12/2024
2.1.555 56 11/12/2024
2.1.554 325 11/9/2024
2.1.553 82 11/9/2024
2.1.552 156 11/9/2024
2.1.551 125 11/9/2024
2.1.550 63 11/9/2024
2.1.549 161 11/9/2024
2.1.548 119 11/8/2024
2.1.547 60 11/8/2024
2.1.546 84 11/8/2024
2.1.545 77 11/8/2024
2.1.544 63 11/8/2024
2.1.543 198 11/8/2024
2.1.542 63 11/8/2024
2.1.541 64 11/8/2024
2.1.540 156 11/8/2024
2.1.539 62 11/8/2024
2.1.538 149 11/8/2024
2.1.537 62 11/8/2024
2.1.536 207 11/6/2024
2.1.535 284 11/1/2024
2.1.534 160 11/1/2024
2.1.533 59 11/1/2024
2.1.532 241 10/29/2024
2.1.531 118 10/29/2024
2.1.530 96 10/29/2024
2.1.529 139 10/29/2024
2.1.527 198 10/29/2024
2.1.526 154 10/29/2024
2.1.525 155 10/29/2024
2.1.524 201 10/28/2024
2.1.523 62 10/28/2024
2.1.522 352 10/26/2024
2.1.521 104 10/26/2024
2.1.520 127 10/26/2024
2.1.519 241 10/22/2024
2.1.518 82 10/22/2024
2.1.517 189 10/22/2024
2.1.516 72 10/22/2024
2.1.515 146 10/22/2024
2.1.514 59 10/22/2024
2.1.513 157 10/22/2024
2.1.512 257 10/18/2024
2.1.511 127 10/17/2024
2.1.510 73 10/17/2024
2.1.509 157 10/17/2024
2.1.508 213 10/15/2024
2.1.507 105 10/15/2024
2.1.506 71 10/15/2024
2.1.505 103 10/14/2024
2.1.504 188 10/12/2024
2.1.503 105 10/12/2024
2.1.502 123 10/11/2024
2.1.501 99 10/11/2024
2.1.500 107 10/11/2024
2.1.499 76 10/11/2024
2.1.498 157 10/9/2024
2.1.497 110 10/9/2024
2.1.496 121 10/9/2024
2.1.495 75 10/9/2024
2.1.493 103 10/9/2024
2.1.492 98 10/8/2024
2.1.491 119 10/8/2024
2.1.490 89 10/8/2024
2.1.489 195 10/8/2024
2.1.488 80 10/8/2024
2.1.487 104 10/8/2024
2.1.486 77 10/8/2024
2.1.485 254 10/7/2024
2.1.484 128 10/3/2024
2.1.483 72 10/3/2024
2.1.482 99 10/3/2024
2.1.481 97 10/3/2024
2.1.480 72 10/3/2024
2.1.479 92 10/3/2024
2.1.478 67 10/3/2024
2.1.477 101 10/3/2024
2.1.476 109 10/2/2024
2.1.475 98 10/2/2024
2.1.474 82 10/2/2024
2.1.473 72 10/2/2024
2.1.472 104 10/2/2024
2.1.471 80 10/2/2024
2.1.470 101 10/1/2024
2.1.469 190 10/1/2024
2.1.468 100 10/1/2024
2.1.467 68 10/1/2024
2.1.466 92 10/1/2024
2.1.465 71 10/1/2024
2.1.464 112 10/1/2024
2.1.463 91 9/30/2024
2.1.462 106 9/29/2024
2.1.461 102 9/29/2024
2.1.460 116 9/29/2024
2.1.459 78 9/29/2024
2.1.458 110 9/29/2024
2.1.457 71 9/29/2024
2.1.456 143 9/27/2024
2.1.455 89 9/27/2024
2.1.454 111 9/27/2024
2.1.453 75 9/27/2024
2.1.452 99 9/27/2024
2.1.451 82 9/27/2024
2.1.450 103 9/27/2024
2.1.449 69 9/27/2024
2.1.448 77 9/27/2024
2.1.447 69 9/27/2024
2.1.446 93 9/27/2024
2.1.445 98 9/26/2024
2.1.444 101 9/26/2024
2.1.443 77 9/26/2024
2.1.442 113 9/26/2024
2.1.441 97 9/26/2024
2.1.440 89 9/26/2024
2.1.439 93 9/26/2024
2.1.438 75 9/26/2024
2.1.437 86 9/26/2024
2.1.436 233 9/26/2024
2.1.435 71 9/26/2024
2.1.434 157 9/23/2024
2.1.433 91 9/23/2024
2.1.432 104 9/23/2024
2.1.431 75 9/23/2024
2.1.430 111 9/23/2024
2.1.429 107 9/23/2024
2.1.428 92 9/23/2024
2.1.427 126 9/23/2024
2.1.426 107 9/23/2024
2.1.425 69 9/23/2024
2.1.424 81 9/23/2024
2.1.423 93 9/23/2024
2.1.422 77 9/23/2024
2.1.421 131 9/23/2024
2.1.420 75 9/23/2024
2.1.419 115 9/18/2024
2.1.418 89 9/18/2024
2.1.417 133 9/18/2024
2.1.416 93 9/18/2024
2.1.415 99 9/18/2024
2.1.414 95 9/17/2024
2.1.413 85 9/17/2024
2.1.412 81 9/17/2024
2.1.411 92 9/17/2024
2.1.410 93 9/17/2024
2.1.409 76 9/17/2024
2.1.408 86 9/17/2024
2.1.407 85 9/17/2024
2.1.406 77 9/17/2024
2.1.405 77 9/17/2024
2.1.404 89 9/17/2024
2.1.403 76 9/17/2024
2.1.402 288 9/17/2024
2.1.401 122 9/16/2024
2.1.400 91 9/16/2024
2.1.399 104 9/16/2024
2.1.398 80 9/16/2024
2.1.397 165 9/12/2024
2.1.396 104 9/12/2024
2.1.395 120 9/12/2024
2.1.394 123 9/12/2024
2.1.393 88 9/12/2024
2.1.392 111 9/12/2024
2.1.391 91 9/11/2024
2.1.390 113 9/11/2024
2.1.389 87 9/11/2024
2.1.388 129 9/11/2024
2.1.387 118 9/11/2024
2.1.386 84 9/11/2024
2.1.385 90 9/11/2024
2.1.383 108 9/11/2024
2.1.382 120 9/11/2024
2.1.381 118 9/11/2024
2.1.380 154 9/11/2024
2.1.379 116 9/10/2024
2.1.378 95 9/10/2024
2.1.377 128 9/10/2024
2.1.376 109 9/10/2024
2.1.375 89 9/10/2024
2.1.374 99 9/10/2024
2.1.373 91 9/10/2024
2.1.372 120 9/10/2024
2.1.371 107 9/10/2024
2.1.370 106 9/10/2024
2.1.369 87 9/10/2024
2.1.368 116 9/9/2024
2.1.367 82 9/9/2024
2.1.366 113 9/9/2024
2.1.365 120 9/9/2024
2.1.363 106 9/9/2024
2.1.362 99 9/9/2024
2.1.361 113 9/9/2024
2.1.360 91 9/9/2024
2.1.358 93 9/9/2024
2.1.357 88 9/9/2024
2.1.356 88 9/9/2024
2.1.355 115 9/9/2024
2.1.354 74 9/9/2024
2.1.353 172 9/7/2024
2.1.352 94 9/7/2024
2.1.351 86 9/7/2024
2.1.350 103 9/7/2024
2.1.349 98 9/6/2024
2.1.348 112 9/6/2024
2.1.347 109 9/6/2024
2.1.346 95 9/6/2024
2.1.345 103 9/6/2024
2.1.344 87 9/6/2024
2.1.343 169 9/5/2024
2.1.342 80 9/5/2024
2.1.341 86 9/5/2024
2.1.340 115 9/5/2024
2.1.339 87 9/5/2024
2.1.338 122 9/5/2024
2.1.337 86 9/5/2024
2.1.336 86 9/5/2024
2.1.335 98 9/5/2024
2.1.334 94 9/5/2024
2.1.333 109 9/5/2024
2.1.332 86 9/5/2024
2.1.331 113 9/4/2024
2.1.330 92 9/4/2024
2.1.329 175 9/4/2024
2.1.328 110 9/3/2024
2.1.327 86 9/3/2024
2.1.326 100 9/3/2024
2.1.325 104 9/3/2024
2.1.324 87 9/3/2024
2.1.323 110 9/3/2024
2.1.322 77 9/3/2024
2.1.321 88 9/3/2024
2.1.320 86 9/3/2024
2.1.319 116 8/29/2024
2.1.318 66 8/29/2024
2.1.317 83 8/29/2024
2.1.316 64 8/29/2024
2.1.315 195 8/26/2024
2.1.314 100 8/26/2024
2.1.313 83 8/26/2024
2.1.312 104 8/26/2024
2.1.311 222 8/21/2024
2.1.310 118 8/21/2024
2.1.309 106 8/21/2024
2.1.308 98 8/21/2024
2.1.307 99 8/21/2024
2.1.306 88 8/21/2024
2.1.305 129 8/20/2024
2.1.304 107 8/20/2024
2.1.303 120 8/20/2024
2.1.302 102 8/20/2024
2.1.301 140 8/20/2024
2.1.300 96 8/20/2024
2.1.299 103 8/20/2024
2.1.298 100 8/20/2024
2.1.297 95 8/20/2024
2.1.296 122 8/20/2024
2.1.295 125 8/20/2024
2.1.294 107 8/19/2024
2.1.293 95 8/19/2024
2.1.292 185 8/15/2024
2.1.291 114 8/15/2024
2.1.290 123 8/15/2024
2.1.289 95 8/15/2024
2.1.288 131 8/14/2024
2.1.287 100 8/14/2024
2.1.286 94 8/14/2024
2.1.285 120 8/13/2024
2.1.284 111 8/7/2024
2.1.283 89 8/7/2024
2.1.282 83 8/7/2024
2.1.281 81 8/7/2024
2.1.280 94 8/6/2024
2.1.279 80 8/6/2024
2.1.278 211 8/1/2024
2.1.277 85 8/1/2024
2.1.276 78 8/1/2024
2.1.275 89 8/1/2024
2.1.274 72 8/1/2024
2.1.273 255 7/25/2024
2.1.272 69 7/25/2024
2.1.271 65 7/25/2024
2.1.270 59 7/25/2024
2.1.269 71 7/25/2024
2.1.268 118 7/25/2024
2.1.267 48 7/25/2024
2.1.266 73 7/25/2024
2.1.265 55 7/25/2024
2.1.264 52 7/25/2024
2.1.263 93 7/24/2024
2.1.262 93 7/24/2024
2.1.260 191 7/20/2024
2.1.259 102 7/20/2024
2.1.258 91 7/20/2024
2.1.257 238 7/14/2024
2.1.256 95 7/14/2024
2.1.255 85 7/14/2024
2.1.254 78 7/14/2024
2.1.253 100 7/14/2024
2.1.252 81 7/14/2024
2.1.251 92 7/14/2024
2.1.250 109 7/13/2024
2.1.249 125 7/10/2024
2.1.248 86 7/10/2024
2.1.247 90 7/10/2024
2.1.246 98 7/10/2024
2.1.245 99 7/10/2024
2.1.244 92 7/10/2024
2.1.243 82 7/10/2024
2.1.242 86 7/10/2024
2.1.241 96 7/10/2024
2.1.240 91 7/10/2024
2.1.239 67 7/10/2024
2.1.238 79 7/10/2024
2.1.237 82 7/10/2024
2.1.236 84 7/10/2024
2.1.235 82 7/10/2024
2.1.234 112 7/10/2024
2.1.232 99 7/10/2024
2.1.231 86 7/10/2024
2.1.230 113 7/9/2024
2.1.229 86 7/9/2024
2.1.227 73 7/9/2024
2.1.226 69 7/9/2024
2.1.225 90 7/9/2024
2.1.224 107 7/9/2024
2.1.223 96 7/9/2024
2.1.222 80 7/9/2024
2.1.221 101 7/9/2024
2.1.220 87 7/9/2024
2.1.219 94 7/9/2024
2.1.218 72 7/9/2024
2.1.217 92 7/9/2024
2.1.216 87 7/9/2024
2.1.215 120 7/9/2024
2.1.214 86 7/9/2024
2.1.213 91 7/8/2024
2.1.212 95 7/8/2024
2.1.211 90 7/8/2024
2.1.210 120 7/8/2024
2.1.209 90 7/8/2024
2.1.208 121 7/8/2024
2.1.207 105 7/8/2024
2.1.206 77 7/8/2024
2.1.205 105 7/8/2024
2.1.204 98 7/7/2024
2.1.203 109 7/7/2024
2.1.202 90 7/7/2024
2.1.201 104 7/7/2024
2.1.200 92 7/7/2024
2.1.199 126 7/7/2024
2.1.198 106 7/7/2024
2.1.197 144 7/3/2024
2.1.196 96 7/3/2024
2.1.195 111 7/3/2024
2.1.194 113 7/3/2024
2.1.193 102 7/3/2024
2.1.192 98 7/3/2024
2.1.191 92 7/3/2024
2.1.190 108 7/3/2024
2.1.189 234 6/27/2024
2.1.188 94 6/27/2024
2.1.187 97 6/27/2024
2.1.186 108 6/22/2024
2.1.185 99 6/22/2024
2.1.184 103 6/22/2024
2.1.183 153 6/16/2024
2.1.182 97 6/15/2024
2.1.181 95 6/15/2024
2.1.180 100 6/15/2024
2.1.179 101 6/15/2024
2.1.178 80 6/15/2024
2.1.177 100 6/15/2024
2.1.176 85 6/15/2024
2.1.175 107 6/15/2024
2.1.174 100 6/15/2024
2.1.173 101 6/14/2024
2.1.172 83 6/14/2024
2.1.171 101 6/14/2024
2.1.170 143 6/4/2024
2.1.169 106 6/4/2024
2.1.168 147 6/2/2024
2.1.167 105 6/1/2024
2.1.166 100 6/1/2024
2.1.165 99 6/1/2024
2.1.164 93 6/1/2024
2.1.163 111 6/1/2024
2.1.162 114 6/1/2024
2.1.161 87 6/1/2024
2.1.160 88 6/1/2024
2.1.159 107 6/1/2024
2.1.158 104 5/31/2024
2.1.157 100 5/31/2024
2.1.156 108 5/31/2024
2.1.155 96 5/31/2024
2.1.154 92 5/31/2024
2.1.153 133 5/29/2024
2.1.152 97 5/29/2024
2.1.151 97 5/29/2024
2.1.150 94 5/29/2024
2.1.149 89 5/29/2024
2.1.148 148 5/28/2024
2.1.147 93 5/28/2024
2.1.146 92 5/28/2024
2.1.145 92 5/28/2024
2.1.144 94 5/28/2024
2.1.143 77 5/28/2024
2.1.142 86 5/27/2024
2.1.141 84 5/27/2024
2.1.140 92 5/27/2024
2.1.139 97 5/27/2024
2.1.138 97 5/27/2024
2.1.137 80 5/27/2024
2.1.136 85 5/26/2024
2.1.135 118 5/26/2024
2.1.134 93 5/26/2024
2.1.133 101 5/26/2024
2.1.132 99 5/26/2024
2.1.131 101 5/26/2024
2.1.130 90 5/26/2024
2.1.129 87 5/26/2024
2.1.128 112 5/25/2024
2.1.127 84 5/25/2024
2.1.126 91 5/25/2024
2.1.125 87 5/25/2024
2.1.124 87 5/25/2024
2.1.123 83 5/25/2024
2.1.122 110 5/25/2024
2.1.121 89 5/25/2024
2.1.120 97 5/25/2024
2.1.119 89 5/25/2024
2.1.118 113 5/25/2024
2.1.117 117 5/23/2024
2.1.116 87 5/23/2024
2.1.115 90 5/23/2024
2.1.114 82 5/23/2024
2.1.113 106 5/23/2024
2.1.112 88 5/23/2024
2.1.111 87 5/23/2024
2.1.110 111 5/23/2024
2.1.109 87 5/23/2024
2.1.108 104 5/22/2024
2.1.107 86 5/22/2024
2.1.106 105 5/22/2024
2.1.105 87 5/22/2024
2.1.104 100 5/22/2024
2.1.103 85 5/22/2024
2.1.102 84 5/22/2024
2.1.101 100 5/22/2024
2.1.100 109 5/18/2024
2.1.99 100 5/18/2024
2.1.98 110 5/18/2024
2.1.97 91 5/18/2024
2.1.96 99 5/18/2024
2.1.95 98 5/18/2024
2.1.94 109 5/17/2024
2.1.93 108 5/17/2024
2.1.92 117 5/17/2024
2.1.91 98 5/17/2024
2.1.90 108 5/17/2024
2.1.89 103 5/17/2024
2.1.88 134 5/16/2024
2.1.87 103 5/16/2024
2.1.86 97 5/16/2024
2.1.85 107 5/15/2024
2.1.84 97 5/15/2024
2.1.83 107 5/15/2024
2.1.82 119 5/15/2024
2.1.81 96 5/15/2024
2.1.80 114 5/13/2024
2.1.79 89 5/13/2024
2.1.78 87 5/13/2024
2.1.77 87 5/13/2024
2.1.76 157 4/30/2024
2.1.75 112 4/30/2024
2.1.74 107 4/30/2024
2.1.73 101 4/30/2024
2.1.72 115 4/30/2024
2.1.71 92 4/29/2024
2.1.70 84 4/29/2024
2.1.69 113 4/29/2024
2.1.68 93 4/29/2024
2.1.67 89 4/29/2024
2.1.66 93 4/29/2024
2.1.65 93 4/28/2024
2.1.64 85 4/28/2024
2.1.63 103 4/28/2024
2.1.62 86 4/28/2024
2.1.61 90 4/28/2024
2.1.60 98 4/28/2024
2.1.59 109 4/28/2024
2.1.58 82 4/28/2024
2.1.57 99 4/28/2024
2.1.56 87 4/28/2024
2.1.55 103 4/28/2024
2.1.54 87 4/28/2024
2.1.53 102 4/28/2024
2.1.52 91 4/28/2024
2.1.51 99 4/27/2024
2.1.50 196 4/20/2024
2.1.49 111 4/20/2024
2.1.48 116 4/19/2024
2.1.47 94 4/19/2024
2.1.46 98 4/19/2024
2.1.45 82 4/19/2024
2.1.44 101 4/19/2024
2.1.43 121 4/19/2024
2.1.42 99 4/19/2024
2.1.41 107 4/18/2024
2.1.40 174 4/13/2024
2.1.39 111 4/13/2024
2.1.38 110 4/13/2024
2.1.37 107 4/13/2024
2.1.36 94 4/13/2024
2.1.35 111 4/12/2024
2.1.34 103 4/12/2024
2.1.33 89 4/12/2024
2.1.32 116 4/12/2024
2.1.31 97 4/12/2024
2.1.30 109 4/12/2024
2.1.29 105 4/12/2024
2.1.28 128 4/12/2024
2.1.27 86 4/12/2024
2.1.26 98 4/12/2024
2.1.25 97 4/12/2024
2.1.24 101 4/12/2024
2.1.23 123 4/11/2024
2.1.22 98 4/11/2024
2.1.21 125 4/10/2024
2.1.20 104 4/10/2024
2.1.19 104 4/10/2024
2.1.18 109 4/10/2024
2.1.17 97 4/10/2024
2.1.16 105 4/10/2024
2.1.15 99 4/10/2024
2.1.14 256 4/3/2024
2.1.13 95 4/2/2024
2.1.12 90 4/2/2024
2.1.11 85 4/2/2024
2.1.10 91 4/2/2024
2.1.9 74 4/2/2024
2.1.8 91 4/1/2024
2.1.7 88 4/1/2024
2.1.6 84 4/1/2024
2.1.5 103 3/31/2024
2.1.4 103 3/30/2024
2.1.3 91 3/30/2024
2.1.2 100 3/27/2024