Soenneker.SmartEnum.Abbreviated 3.0.1081

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.1081
                    
NuGet\Install-Package Soenneker.SmartEnum.Abbreviated -Version 3.0.1081
                    
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.1081" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.SmartEnum.Abbreviated" Version="3.0.1081" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.SmartEnum.Abbreviated" />
                    
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.SmartEnum.Abbreviated --version 3.0.1081
                    
#r "nuget: Soenneker.SmartEnum.Abbreviated, 3.0.1081"
                    
#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.SmartEnum.Abbreviated@3.0.1081
                    
#: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.SmartEnum.Abbreviated&version=3.0.1081
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.SmartEnum.Abbreviated&version=3.0.1081
                    
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.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.  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 (2)

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

Package Downloads
Soenneker.SmartEnum.AbbreviatedDescriptive

A derivative of AbbreviatedSmartEnum adding support for descriptions

Soenneker.Json.Converters.AbbreviatedSmartEnum

A System.Text.Json AbbreviatedSmartEnum converter

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.1214 383 9/16/2025
3.0.1213 207 9/10/2025
3.0.1212 214 9/9/2025
3.0.1211 188 9/9/2025
3.0.1210 203 9/9/2025
3.0.1209 255 9/3/2025
3.0.1208 174 9/3/2025
3.0.1207 218 9/3/2025
3.0.1206 201 9/3/2025
3.0.1205 162 9/3/2025
3.0.1204 210 9/3/2025
3.0.1203 246 8/17/2025
3.0.1202 183 8/16/2025
3.0.1201 223 8/11/2025
3.0.1200 204 8/11/2025
3.0.1199 197 8/11/2025
3.0.1198 187 8/11/2025
3.0.1197 149 8/11/2025
3.0.1196 223 8/11/2025
3.0.1195 228 8/11/2025
3.0.1194 210 8/11/2025
3.0.1193 304 8/5/2025
3.0.1192 236 8/5/2025
3.0.1191 152 7/29/2025
3.0.1190 131 7/29/2025
3.0.1189 725 7/9/2025
3.0.1188 207 7/8/2025
3.0.1187 215 7/8/2025
3.0.1186 527 6/28/2025
3.0.1185 136 6/28/2025
3.0.1184 157 6/27/2025
3.0.1183 90 6/27/2025
3.0.1182 148 6/27/2025
3.0.1181 302 6/25/2025
3.0.1180 219 6/24/2025
3.0.1179 647 6/11/2025
3.0.1178 362 6/11/2025
3.0.1177 373 6/11/2025
3.0.1176 353 6/10/2025
3.0.1175 451 6/2/2025
3.0.1174 227 6/2/2025
3.0.1173 340 5/27/2025
3.0.1172 203 5/27/2025
3.0.1171 235 5/27/2025
3.0.1170 178 5/27/2025
3.0.1169 239 5/27/2025
3.0.1168 239 5/25/2025
3.0.1167 169 5/25/2025
3.0.1166 216 5/23/2025
3.0.1165 214 5/23/2025
3.0.1164 231 5/23/2025
3.0.1163 207 5/22/2025
3.0.1162 183 5/22/2025
3.0.1161 207 5/22/2025
3.0.1160 421 5/14/2025
3.0.1159 291 5/14/2025
3.0.1158 299 5/13/2025
3.0.1157 361 5/8/2025
3.0.1156 235 5/8/2025
3.0.1155 228 5/8/2025
3.0.1154 220 5/7/2025
3.0.1153 178 5/7/2025
3.0.1152 177 5/7/2025
3.0.1151 334 5/5/2025
3.0.1150 207 5/5/2025
3.0.1149 179 5/5/2025
3.0.1148 211 5/5/2025
3.0.1147 225 5/5/2025
3.0.1146 263 5/5/2025
3.0.1145 204 5/5/2025
3.0.1144 203 5/5/2025
3.0.1143 196 5/5/2025
3.0.1142 175 5/5/2025
3.0.1141 209 5/5/2025
3.0.1140 174 5/5/2025
3.0.1139 445 4/27/2025
3.0.1138 193 4/27/2025
3.0.1137 177 4/26/2025
3.0.1136 176 4/26/2025
3.0.1135 588 4/9/2025
3.0.1134 266 4/9/2025
3.0.1133 258 4/8/2025
3.0.1132 197 4/8/2025
3.0.1131 245 4/8/2025
3.0.1130 193 4/8/2025
3.0.1128 283 4/8/2025
3.0.1127 336 4/8/2025
3.0.1126 258 4/8/2025
3.0.1125 324 4/8/2025
3.0.1124 202 4/8/2025
3.0.1123 260 4/8/2025
3.0.1122 194 4/8/2025
3.0.1121 298 4/8/2025
3.0.1120 338 4/7/2025
3.0.1119 317 4/7/2025
3.0.1118 346 4/7/2025
3.0.1117 304 4/7/2025
3.0.1116 265 4/7/2025
3.0.1115 267 4/7/2025
3.0.1114 270 4/7/2025
3.0.1113 254 4/6/2025
3.0.1112 193 4/6/2025
3.0.1111 248 4/6/2025
3.0.1110 196 4/6/2025
3.0.1109 246 4/6/2025
3.0.1108 194 4/6/2025
3.0.1107 242 4/6/2025
3.0.1106 177 4/6/2025
3.0.1105 264 4/6/2025
3.0.1104 174 4/6/2025
3.0.1103 167 4/6/2025
3.0.1102 245 4/6/2025
3.0.1101 142 4/6/2025
3.0.1100 139 4/6/2025
3.0.1099 148 4/6/2025
3.0.1098 146 4/6/2025
3.0.1097 146 4/6/2025
3.0.1096 126 4/6/2025
3.0.1095 288 4/5/2025
3.0.1094 176 4/5/2025
3.0.1093 218 4/5/2025
3.0.1092 206 4/5/2025
3.0.1091 205 4/5/2025
3.0.1090 222 4/5/2025
3.0.1089 104 4/5/2025
3.0.1088 126 4/5/2025
3.0.1087 139 4/4/2025
3.0.1086 449 4/4/2025
3.0.1085 303 4/1/2025
3.0.1084 309 4/1/2025
3.0.1083 268 3/31/2025
3.0.1082 328 3/30/2025
3.0.1081 177 3/29/2025
3.0.1080 625 3/25/2025
3.0.1079 575 3/25/2025
3.0.1078 229 3/21/2025
3.0.1077 298 3/18/2025
3.0.1076 287 3/18/2025
3.0.1075 176 3/15/2025
3.0.1074 144 3/15/2025
3.0.1073 317 3/12/2025
3.0.1072 283 3/12/2025
3.0.1071 193 3/12/2025
3.0.1070 275 3/11/2025
3.0.1069 295 3/11/2025
3.0.1068 181 3/11/2025
3.0.1067 277 3/11/2025
3.0.1066 275 3/11/2025
3.0.1065 201 3/11/2025
3.0.1064 280 3/11/2025
3.0.1063 177 3/11/2025
3.0.1062 317 3/7/2025
3.0.1061 327 3/7/2025
3.0.1060 339 3/2/2025
3.0.1059 277 3/2/2025
3.0.1058 158 3/2/2025
3.0.1057 178 3/2/2025
3.0.1056 216 3/1/2025
3.0.1055 191 3/1/2025
3.0.1054 136 3/1/2025
3.0.1053 138 3/1/2025
3.0.1052 134 3/1/2025
3.0.1051 129 3/1/2025
3.0.1050 192 3/1/2025
3.0.1049 118 3/1/2025
3.0.1048 127 3/1/2025
3.0.1047 130 3/1/2025
3.0.1046 183 3/1/2025
3.0.1045 121 3/1/2025
3.0.1044 260 2/25/2025
3.0.1043 218 2/25/2025
3.0.1042 129 2/25/2025
3.0.1041 242 2/25/2025
3.0.1040 219 2/25/2025
3.0.1039 138 2/25/2025
3.0.1038 133 2/25/2025
3.0.1037 222 2/24/2025
3.0.1036 129 2/24/2025
3.0.1035 150 2/24/2025
3.0.1034 210 2/23/2025
3.0.1033 136 2/23/2025
3.0.1032 187 2/22/2025
3.0.1031 140 2/22/2025
3.0.1030 249 2/22/2025
3.0.1029 175 2/22/2025
3.0.1028 140 2/22/2025
3.0.1027 288 2/22/2025
3.0.1026 164 2/22/2025
3.0.1025 133 2/22/2025
3.0.1024 148 2/21/2025
3.0.1023 142 2/21/2025
3.0.1022 301 2/21/2025
3.0.1021 176 2/21/2025
3.0.1020 135 2/21/2025
3.0.1019 409 2/19/2025
3.0.1018 217 2/19/2025
3.0.1017 190 2/19/2025
3.0.1016 143 2/19/2025
3.0.1015 232 2/18/2025
3.0.1014 137 2/18/2025
3.0.1013 411 2/18/2025
3.0.1012 123 2/18/2025
3.0.1011 135 2/18/2025
3.0.1010 147 2/18/2025
3.0.1009 372 2/14/2025
3.0.1008 250 2/14/2025
3.0.1007 140 2/14/2025
3.0.1006 139 2/14/2025
3.0.1005 270 2/13/2025
3.0.1004 275 2/12/2025
3.0.1003 132 2/12/2025
3.0.1002 266 2/12/2025
3.0.1001 195 2/12/2025
3.0.1000 129 2/12/2025
3.0.999 224 2/12/2025
3.0.998 118 2/12/2025
3.0.997 228 2/12/2025
3.0.996 151 2/12/2025
3.0.995 181 2/12/2025
3.0.994 210 2/11/2025
3.0.993 140 2/11/2025
3.0.992 264 2/11/2025
3.0.991 137 2/11/2025
3.0.990 235 2/11/2025
3.0.989 143 2/11/2025
3.0.988 346 2/11/2025
3.0.987 175 2/11/2025
3.0.986 149 2/11/2025
3.0.985 151 2/11/2025
3.0.984 274 2/10/2025
3.0.983 143 2/10/2025
3.0.982 272 2/10/2025
3.0.981 141 2/10/2025
3.0.980 150 2/10/2025
3.0.979 134 2/10/2025
3.0.978 137 2/10/2025
3.0.977 207 2/9/2025
3.0.976 136 2/9/2025
3.0.975 276 2/9/2025
3.0.974 264 2/8/2025
3.0.973 139 2/8/2025
3.0.972 263 2/8/2025
3.0.971 122 2/8/2025
3.0.970 182 2/8/2025
3.0.969 217 2/8/2025
3.0.968 144 2/8/2025
3.0.967 215 2/7/2025
3.0.966 152 2/7/2025
3.0.965 119 2/7/2025
3.0.964 216 2/7/2025
3.0.963 129 2/7/2025
3.0.962 166 2/7/2025
3.0.961 123 2/7/2025
3.0.960 298 2/7/2025
3.0.959 137 2/7/2025
3.0.958 132 2/7/2025
3.0.957 129 2/7/2025
3.0.956 141 2/7/2025
3.0.955 211 2/7/2025
3.0.954 146 2/7/2025
3.0.953 339 2/6/2025
3.0.952 330 2/5/2025
3.0.951 230 2/5/2025
3.0.950 193 2/5/2025
3.0.949 274 2/5/2025
3.0.948 264 2/5/2025
3.0.947 126 2/5/2025
3.0.946 262 2/5/2025
3.0.945 218 2/4/2025
3.0.944 326 1/28/2025
3.0.943 192 1/28/2025
3.0.942 204 1/28/2025
3.0.941 125 1/28/2025
3.0.940 183 1/28/2025
3.0.939 157 1/28/2025
3.0.938 265 1/27/2025
3.0.937 163 1/27/2025
3.0.936 113 1/27/2025
3.0.935 145 1/27/2025
3.0.934 126 1/27/2025
3.0.933 387 1/26/2025
3.0.932 170 1/26/2025
3.0.931 182 1/26/2025
3.0.930 130 1/26/2025
3.0.929 236 1/26/2025
3.0.928 339 1/25/2025
3.0.927 119 1/25/2025
3.0.926 161 1/25/2025
3.0.925 141 1/25/2025
3.0.924 157 1/25/2025
3.0.923 142 1/25/2025
3.0.921 158 1/25/2025
3.0.920 277 1/25/2025
3.0.919 131 1/25/2025
3.0.918 196 1/24/2025
3.0.917 218 1/24/2025
3.0.916 218 1/24/2025
3.0.915 132 1/24/2025
3.0.914 126 1/24/2025
3.0.913 266 1/24/2025
3.0.912 124 1/24/2025
3.0.911 120 1/24/2025
3.0.910 252 1/24/2025
3.0.909 136 1/24/2025
3.0.908 152 1/23/2025
3.0.907 121 1/23/2025
3.0.906 124 1/23/2025
3.0.905 152 1/23/2025
3.0.904 134 1/23/2025
3.0.903 370 1/22/2025
3.0.902 167 1/21/2025
3.0.901 189 1/21/2025
3.0.900 231 1/21/2025
3.0.899 134 1/21/2025
3.0.898 185 1/21/2025
3.0.897 131 1/21/2025
3.0.896 223 1/21/2025
3.0.895 213 1/21/2025
3.0.894 205 1/21/2025
3.0.893 154 1/21/2025
3.0.892 231 1/21/2025
3.0.891 164 1/21/2025
3.0.890 123 1/21/2025
3.0.889 135 1/21/2025
3.0.888 251 1/21/2025
3.0.887 115 1/21/2025
3.0.886 200 1/20/2025
3.0.885 128 1/20/2025
3.0.884 227 1/20/2025
3.0.883 128 1/20/2025
3.0.882 135 1/20/2025
3.0.881 136 1/20/2025
3.0.880 183 1/20/2025
3.0.879 134 1/20/2025
3.0.878 461 1/20/2025
3.0.877 141 1/20/2025
3.0.876 251 1/20/2025
3.0.875 119 1/20/2025
3.0.874 139 1/20/2025
3.0.873 125 1/20/2025
3.0.872 290 1/20/2025
3.0.871 133 1/20/2025
3.0.870 244 1/19/2025
3.0.869 111 1/19/2025
3.0.868 184 1/19/2025
3.0.867 222 1/19/2025
3.0.866 127 1/19/2025
3.0.865 203 1/19/2025
3.0.864 127 1/19/2025
3.0.863 885 1/16/2025
3.0.862 187 1/16/2025
3.0.861 130 1/16/2025
3.0.860 279 1/16/2025
3.0.859 124 1/16/2025
3.0.858 139 1/16/2025
3.0.857 140 1/16/2025
3.0.856 225 1/15/2025
3.0.855 129 1/15/2025
3.0.854 268 1/15/2025
3.0.853 124 1/15/2025
3.0.852 176 1/15/2025
3.0.851 135 1/15/2025
3.0.850 198 1/15/2025
3.0.849 193 1/15/2025
3.0.848 107 1/15/2025
3.0.847 218 1/15/2025
3.0.846 125 1/15/2025
3.0.845 108 1/15/2025
3.0.844 194 1/15/2025
3.0.843 90 1/15/2025
3.0.842 149 1/15/2025
3.0.841 110 1/14/2025
3.0.840 106 1/14/2025
3.0.839 199 1/14/2025
3.0.838 98 1/14/2025
3.0.837 172 1/14/2025
3.0.836 111 1/14/2025
3.0.835 219 1/14/2025
3.0.834 117 1/14/2025
3.0.833 228 1/13/2025
3.0.832 208 1/13/2025
3.0.831 264 1/13/2025
3.0.830 134 1/13/2025
3.0.829 112 1/13/2025
3.0.828 191 1/13/2025
3.0.827 100 1/13/2025
3.0.826 351 1/11/2025
3.0.825 201 1/11/2025
3.0.824 130 1/11/2025
3.0.823 205 1/11/2025
3.0.822 234 1/11/2025
3.0.821 132 1/11/2025
3.0.820 217 1/10/2025
3.0.819 190 1/10/2025
3.0.818 129 1/10/2025
3.0.817 241 1/10/2025
3.0.816 124 1/10/2025
3.0.815 132 1/10/2025
3.0.814 240 1/10/2025
3.0.813 142 1/10/2025
3.0.812 628 1/3/2025
3.0.811 162 1/3/2025
3.0.810 274 1/3/2025
3.0.809 141 1/3/2025
3.0.808 224 1/3/2025
3.0.807 136 1/3/2025
3.0.806 217 1/2/2025
3.0.805 152 1/2/2025
3.0.804 233 1/2/2025
3.0.803 139 1/2/2025
3.0.802 239 1/2/2025
3.0.801 147 1/2/2025
3.0.800 135 1/2/2025
3.0.799 144 1/2/2025
3.0.798 134 1/2/2025
3.0.797 746 1/1/2025
3.0.796 143 1/1/2025
3.0.795 147 12/31/2024
3.0.794 146 12/31/2024
3.0.793 134 12/31/2024
3.0.792 147 12/31/2024
3.0.791 206 12/31/2024
3.0.790 209 12/31/2024
3.0.789 145 12/31/2024
3.0.788 215 12/31/2024
3.0.787 175 12/31/2024
3.0.786 182 12/31/2024
3.0.785 144 12/31/2024
3.0.784 356 12/31/2024
3.0.783 158 12/31/2024
3.0.782 161 12/31/2024
3.0.781 156 12/31/2024
3.0.780 235 12/31/2024
3.0.779 127 12/31/2024
3.0.778 262 12/31/2024
3.0.777 129 12/31/2024
3.0.776 296 12/31/2024
3.0.775 144 12/31/2024
3.0.774 314 12/28/2024
3.0.773 218 12/28/2024
3.0.772 162 12/27/2024
3.0.771 220 12/27/2024
3.0.770 139 12/27/2024
3.0.769 209 12/27/2024
3.0.768 269 12/24/2024
3.0.767 249 12/24/2024
3.0.766 146 12/24/2024
3.0.765 201 12/24/2024
3.0.764 150 12/24/2024
3.0.763 168 12/24/2024
3.0.762 148 12/24/2024
3.0.761 203 12/24/2024
3.0.760 208 12/24/2024
3.0.759 144 12/24/2024
3.0.758 127 12/24/2024
3.0.757 209 12/24/2024
3.0.756 119 12/24/2024
3.0.755 174 12/24/2024
3.0.754 134 12/23/2024
3.0.753 229 12/23/2024
3.0.752 133 12/23/2024
3.0.751 247 12/23/2024
3.0.750 225 12/23/2024
3.0.749 106 12/23/2024
3.0.748 119 12/23/2024
3.0.747 285 12/23/2024
3.0.746 130 12/23/2024
3.0.745 157 12/23/2024
3.0.744 138 12/23/2024
3.0.743 183 12/22/2024
3.0.742 242 12/22/2024
3.0.741 131 12/22/2024
3.0.740 224 12/22/2024
3.0.739 250 12/22/2024
3.0.738 282 12/22/2024
3.0.737 142 12/22/2024
3.0.736 184 12/22/2024
3.0.735 128 12/22/2024
3.0.734 239 12/22/2024
3.0.733 138 12/22/2024
3.0.732 132 12/22/2024
3.0.731 235 12/21/2024
3.0.730 136 12/21/2024
3.0.729 134 12/21/2024
3.0.728 130 12/21/2024
3.0.727 166 12/21/2024
3.0.726 142 12/21/2024
3.0.725 281 12/21/2024
3.0.724 136 12/21/2024
3.0.723 190 12/21/2024
3.0.722 137 12/21/2024
3.0.721 158 12/21/2024
3.0.720 139 12/21/2024
3.0.719 228 12/21/2024
3.0.718 192 12/21/2024
3.0.717 152 12/21/2024
3.0.716 278 12/20/2024
3.0.715 133 12/20/2024
3.0.714 155 12/20/2024
3.0.713 194 12/20/2024
3.0.712 234 12/20/2024
3.0.711 238 12/20/2024
3.0.710 208 12/20/2024
3.0.709 233 12/20/2024
3.0.708 223 12/19/2024
3.0.707 246 12/19/2024
3.0.706 212 12/19/2024
3.0.705 127 12/19/2024
3.0.704 211 12/19/2024
3.0.703 145 12/18/2024
3.0.702 116 12/18/2024
3.0.701 214 12/18/2024
3.0.700 244 12/17/2024
3.0.699 212 12/17/2024
3.0.698 170 12/17/2024
3.0.697 165 12/16/2024
3.0.696 138 12/16/2024
3.0.695 245 12/16/2024
3.0.694 307 12/10/2024
3.0.693 230 12/10/2024
3.0.692 217 12/10/2024
3.0.691 160 12/10/2024
3.0.690 227 12/9/2024
3.0.689 130 12/9/2024
3.0.688 227 12/9/2024
3.0.687 184 12/9/2024
3.0.686 121 12/9/2024
3.0.685 216 12/9/2024
3.0.684 174 12/9/2024
3.0.683 274 12/7/2024
3.0.682 155 12/6/2024
3.0.681 180 12/6/2024
3.0.680 171 12/6/2024
3.0.679 125 12/6/2024
3.0.677 198 12/6/2024
3.0.676 201 12/6/2024
3.0.675 331 12/6/2024
3.0.674 148 12/6/2024
3.0.673 188 12/6/2024
3.0.672 262 12/6/2024
3.0.671 130 12/6/2024
3.0.670 216 12/6/2024
3.0.669 224 12/6/2024
3.0.668 142 12/6/2024
3.0.667 193 12/6/2024
3.0.666 134 12/6/2024
3.0.665 118 12/6/2024
3.0.664 202 12/6/2024
3.0.663 267 12/6/2024
3.0.662 135 12/6/2024
3.0.661 187 12/5/2024
3.0.660 215 12/5/2024
3.0.659 314 12/5/2024
3.0.658 145 12/5/2024
3.0.657 158 12/5/2024
3.0.656 144 12/5/2024
3.0.655 204 12/5/2024
3.0.654 203 12/5/2024
3.0.653 205 12/5/2024
3.0.652 146 12/5/2024
3.0.651 250 12/5/2024
3.0.650 128 12/5/2024
3.0.649 240 12/4/2024
3.0.648 137 12/4/2024
3.0.647 157 12/4/2024
3.0.646 137 12/4/2024
3.0.645 235 12/4/2024
3.0.644 224 12/4/2024
3.0.643 130 12/4/2024
3.0.642 301 12/4/2024
3.0.641 150 12/4/2024
3.0.640 226 12/4/2024
3.0.639 170 12/3/2024
3.0.638 238 12/3/2024
3.0.637 134 12/3/2024
3.0.636 209 12/3/2024
3.0.635 153 12/3/2024
3.0.634 227 12/3/2024
3.0.633 140 12/3/2024
3.0.632 227 12/3/2024
3.0.631 118 12/3/2024
3.0.630 213 12/3/2024
3.0.629 139 12/3/2024
3.0.628 194 12/3/2024
3.0.627 129 12/3/2024
3.0.626 133 12/2/2024
3.0.625 265 12/2/2024
3.0.624 232 12/2/2024
3.0.623 151 12/2/2024
3.0.622 110 12/2/2024
3.0.621 230 12/2/2024
3.0.620 176 12/2/2024
3.0.619 116 12/2/2024
3.0.618 220 12/1/2024
3.0.617 141 12/1/2024
3.0.616 269 12/1/2024
3.0.615 134 12/1/2024
3.0.614 200 12/1/2024
3.0.613 112 12/1/2024
3.0.612 345 11/29/2024
3.0.611 143 11/29/2024
3.0.610 223 11/29/2024
3.0.609 126 11/29/2024
3.0.608 279 11/21/2024
3.0.607 212 11/21/2024
3.0.606 127 11/21/2024
3.0.605 294 11/20/2024
3.0.604 231 11/20/2024
3.0.603 239 11/20/2024
3.0.602 178 11/20/2024
3.0.601 182 11/20/2024
3.0.600 141 11/20/2024
3.0.598 216 11/20/2024
3.0.597 145 11/20/2024
3.0.595 229 11/19/2024
3.0.594 205 11/19/2024
3.0.593 145 11/19/2024
3.0.592 223 11/19/2024
3.0.591 136 11/19/2024
3.0.590 138 11/19/2024
3.0.589 299 11/19/2024
3.0.588 135 11/19/2024
3.0.587 244 11/19/2024
3.0.586 109 11/19/2024
3.0.585 128 11/19/2024
3.0.584 178 11/19/2024
3.0.583 279 11/15/2024
3.0.582 204 11/14/2024
3.0.581 131 11/14/2024
3.0.580 133 11/14/2024
3.0.579 187 11/14/2024
3.0.578 144 11/14/2024
3.0.577 224 11/14/2024
3.0.576 135 11/14/2024
3.0.575 254 11/14/2024
3.0.574 248 11/14/2024
3.0.573 118 11/14/2024
3.0.572 265 11/14/2024
3.0.571 143 11/14/2024
3.0.570 191 11/14/2024
3.0.569 148 11/14/2024
3.0.568 242 11/14/2024
3.0.567 146 11/14/2024
3.0.566 203 11/14/2024
3.0.565 146 11/14/2024
2.1.564 339 11/13/2024
2.1.563 213 11/13/2024
2.1.562 259 11/13/2024
2.1.561 137 11/13/2024
2.1.560 198 11/13/2024
2.1.559 138 11/13/2024
2.1.558 274 11/13/2024
2.1.557 136 11/13/2024
2.1.556 242 11/12/2024
2.1.555 145 11/12/2024
2.1.554 632 11/9/2024
2.1.553 168 11/9/2024
2.1.552 257 11/9/2024
2.1.551 208 11/9/2024
2.1.550 139 11/9/2024
2.1.549 280 11/9/2024
2.1.548 227 11/8/2024
2.1.547 143 11/8/2024
2.1.546 160 11/8/2024
2.1.545 141 11/8/2024
2.1.544 151 11/8/2024
2.1.543 293 11/8/2024
2.1.542 127 11/8/2024
2.1.541 130 11/8/2024
2.1.540 248 11/8/2024
2.1.539 125 11/8/2024
2.1.538 247 11/8/2024
2.1.537 133 11/8/2024
2.1.536 324 11/6/2024
2.1.535 395 11/1/2024
2.1.534 266 11/1/2024
2.1.533 135 11/1/2024
2.1.532 358 10/29/2024
2.1.531 196 10/29/2024
2.1.530 191 10/29/2024
2.1.529 240 10/29/2024
2.1.527 329 10/29/2024
2.1.526 276 10/29/2024
2.1.525 273 10/29/2024
2.1.524 326 10/28/2024
2.1.523 135 10/28/2024
2.1.522 438 10/26/2024
2.1.521 172 10/26/2024
2.1.520 224 10/26/2024
2.1.519 338 10/22/2024
2.1.518 138 10/22/2024
2.1.517 294 10/22/2024
2.1.516 138 10/22/2024
2.1.515 247 10/22/2024
2.1.514 121 10/22/2024
2.1.513 262 10/22/2024
2.1.512 362 10/18/2024
2.1.511 220 10/17/2024
2.1.510 124 10/17/2024
2.1.509 243 10/17/2024
2.1.508 319 10/15/2024
2.1.507 176 10/15/2024
2.1.506 138 10/15/2024
2.1.505 169 10/14/2024
2.1.504 302 10/12/2024
2.1.503 154 10/12/2024
2.1.502 202 10/11/2024
2.1.501 191 10/11/2024
2.1.500 169 10/11/2024
2.1.499 126 10/11/2024
2.1.498 240 10/9/2024
2.1.497 186 10/9/2024
2.1.496 215 10/9/2024
2.1.495 148 10/9/2024
2.1.493 170 10/9/2024
2.1.492 160 10/8/2024
2.1.491 194 10/8/2024
2.1.490 149 10/8/2024
2.1.489 286 10/8/2024
2.1.488 146 10/8/2024
2.1.487 164 10/8/2024
2.1.486 129 10/8/2024
2.1.485 331 10/7/2024
2.1.484 194 10/3/2024
2.1.483 140 10/3/2024
2.1.482 162 10/3/2024
2.1.481 138 10/3/2024
2.1.480 135 10/3/2024
2.1.479 154 10/3/2024
2.1.478 109 10/3/2024
2.1.477 154 10/3/2024
2.1.476 179 10/2/2024
2.1.475 148 10/2/2024
2.1.474 131 10/2/2024
2.1.473 127 10/2/2024
2.1.472 166 10/2/2024
2.1.471 134 10/2/2024
2.1.470 156 10/1/2024
2.1.469 245 10/1/2024
2.1.468 161 10/1/2024
2.1.467 134 10/1/2024
2.1.466 157 10/1/2024
2.1.465 134 10/1/2024
2.1.464 182 10/1/2024
2.1.463 166 9/30/2024
2.1.462 166 9/29/2024
2.1.461 174 9/29/2024
2.1.460 184 9/29/2024
2.1.459 145 9/29/2024
2.1.458 162 9/29/2024
2.1.457 127 9/29/2024
2.1.456 214 9/27/2024
2.1.455 140 9/27/2024
2.1.454 166 9/27/2024
2.1.453 122 9/27/2024
2.1.452 169 9/27/2024
2.1.451 136 9/27/2024
2.1.450 178 9/27/2024
2.1.449 128 9/27/2024
2.1.448 136 9/27/2024
2.1.447 137 9/27/2024
2.1.446 168 9/27/2024
2.1.445 175 9/26/2024
2.1.444 168 9/26/2024
2.1.443 140 9/26/2024
2.1.442 186 9/26/2024
2.1.441 161 9/26/2024
2.1.440 157 9/26/2024
2.1.439 123 9/26/2024
2.1.438 151 9/26/2024
2.1.437 157 9/26/2024
2.1.436 291 9/26/2024
2.1.435 146 9/26/2024
2.1.434 223 9/23/2024
2.1.433 141 9/23/2024
2.1.432 167 9/23/2024
2.1.431 141 9/23/2024
2.1.430 178 9/23/2024
2.1.429 179 9/23/2024
2.1.428 164 9/23/2024
2.1.427 196 9/23/2024
2.1.426 185 9/23/2024
2.1.425 140 9/23/2024
2.1.424 148 9/23/2024
2.1.423 152 9/23/2024
2.1.422 142 9/23/2024
2.1.421 182 9/23/2024
2.1.420 138 9/23/2024
2.1.419 179 9/18/2024
2.1.418 161 9/18/2024
2.1.417 199 9/18/2024
2.1.416 158 9/18/2024
2.1.415 161 9/18/2024
2.1.414 156 9/17/2024
2.1.413 151 9/17/2024
2.1.412 142 9/17/2024
2.1.411 156 9/17/2024
2.1.410 158 9/17/2024
2.1.409 136 9/17/2024
2.1.408 151 9/17/2024
2.1.407 150 9/17/2024
2.1.406 147 9/17/2024
2.1.405 148 9/17/2024
2.1.404 161 9/17/2024
2.1.403 149 9/17/2024
2.1.402 345 9/17/2024
2.1.401 176 9/16/2024
2.1.400 150 9/16/2024
2.1.399 162 9/16/2024
2.1.398 145 9/16/2024
2.1.397 223 9/12/2024
2.1.396 166 9/12/2024
2.1.395 176 9/12/2024
2.1.394 169 9/12/2024
2.1.393 152 9/12/2024
2.1.392 163 9/12/2024
2.1.391 143 9/11/2024
2.1.390 183 9/11/2024
2.1.389 153 9/11/2024
2.1.388 175 9/11/2024
2.1.387 170 9/11/2024
2.1.386 126 9/11/2024
2.1.385 147 9/11/2024
2.1.383 177 9/11/2024
2.1.382 193 9/11/2024
2.1.381 178 9/11/2024
2.1.380 212 9/11/2024
2.1.379 147 9/10/2024
2.1.378 165 9/10/2024
2.1.377 188 9/10/2024
2.1.376 165 9/10/2024
2.1.375 146 9/10/2024
2.1.374 166 9/10/2024
2.1.373 147 9/10/2024
2.1.372 176 9/10/2024
2.1.371 169 9/10/2024
2.1.370 151 9/10/2024
2.1.369 155 9/10/2024
2.1.368 178 9/9/2024
2.1.367 132 9/9/2024
2.1.366 164 9/9/2024
2.1.365 173 9/9/2024
2.1.363 160 9/9/2024
2.1.362 171 9/9/2024
2.1.361 180 9/9/2024
2.1.360 170 9/9/2024
2.1.358 168 9/9/2024
2.1.357 160 9/9/2024
2.1.356 140 9/9/2024
2.1.355 185 9/9/2024
2.1.354 142 9/9/2024
2.1.353 235 9/7/2024
2.1.352 136 9/7/2024
2.1.351 143 9/7/2024
2.1.350 154 9/7/2024
2.1.349 158 9/6/2024
2.1.348 177 9/6/2024
2.1.347 179 9/6/2024
2.1.346 162 9/6/2024
2.1.345 159 9/6/2024
2.1.344 155 9/6/2024
2.1.343 225 9/5/2024
2.1.342 132 9/5/2024
2.1.341 155 9/5/2024
2.1.340 183 9/5/2024
2.1.339 158 9/5/2024
2.1.338 189 9/5/2024
2.1.337 143 9/5/2024
2.1.336 146 9/5/2024
2.1.335 136 9/5/2024
2.1.334 154 9/5/2024
2.1.333 168 9/5/2024
2.1.332 151 9/5/2024
2.1.331 172 9/4/2024
2.1.330 164 9/4/2024
2.1.329 242 9/4/2024
2.1.328 151 9/3/2024
2.1.327 151 9/3/2024
2.1.326 152 9/3/2024
2.1.325 165 9/3/2024
2.1.324 149 9/3/2024
2.1.323 157 9/3/2024
2.1.322 128 9/3/2024
2.1.321 141 9/3/2024
2.1.320 125 9/3/2024
2.1.319 180 8/29/2024
2.1.318 127 8/29/2024
2.1.317 141 8/29/2024
2.1.316 111 8/29/2024
2.1.315 267 8/26/2024
2.1.314 158 8/26/2024
2.1.313 150 8/26/2024
2.1.312 169 8/26/2024
2.1.311 288 8/21/2024
2.1.310 179 8/21/2024
2.1.309 163 8/21/2024
2.1.308 159 8/21/2024
2.1.307 166 8/21/2024
2.1.306 149 8/21/2024
2.1.305 191 8/20/2024
2.1.304 168 8/20/2024
2.1.303 183 8/20/2024
2.1.302 165 8/20/2024
2.1.301 209 8/20/2024
2.1.300 159 8/20/2024
2.1.299 159 8/20/2024
2.1.298 165 8/20/2024
2.1.297 154 8/20/2024
2.1.296 178 8/20/2024
2.1.295 172 8/20/2024
2.1.294 157 8/19/2024
2.1.293 149 8/19/2024
2.1.292 252 8/15/2024
2.1.291 160 8/15/2024
2.1.290 178 8/15/2024
2.1.289 160 8/15/2024
2.1.288 187 8/14/2024
2.1.287 158 8/14/2024
2.1.286 156 8/14/2024
2.1.285 167 8/13/2024
2.1.284 172 8/7/2024
2.1.283 154 8/7/2024
2.1.282 138 8/7/2024
2.1.281 128 8/7/2024
2.1.280 160 8/6/2024
2.1.279 139 8/6/2024
2.1.278 275 8/1/2024
2.1.277 147 8/1/2024
2.1.276 142 8/1/2024
2.1.275 157 8/1/2024
2.1.274 124 8/1/2024
2.1.273 317 7/25/2024
2.1.272 134 7/25/2024
2.1.271 99 7/25/2024
2.1.270 126 7/25/2024
2.1.269 132 7/25/2024
2.1.268 164 7/25/2024
2.1.267 105 7/25/2024
2.1.266 138 7/25/2024
2.1.265 133 7/25/2024
2.1.264 110 7/25/2024
2.1.263 154 7/24/2024
2.1.262 141 7/24/2024
2.1.260 254 7/20/2024
2.1.259 175 7/20/2024
2.1.258 159 7/20/2024
2.1.257 279 7/14/2024
2.1.256 156 7/14/2024
2.1.255 135 7/14/2024
2.1.254 139 7/14/2024
2.1.253 164 7/14/2024
2.1.252 139 7/14/2024
2.1.251 151 7/14/2024
2.1.250 184 7/13/2024
2.1.249 191 7/10/2024
2.1.248 150 7/10/2024
2.1.247 152 7/10/2024
2.1.246 168 7/10/2024
2.1.245 160 7/10/2024
2.1.244 147 7/10/2024
2.1.243 146 7/10/2024
2.1.242 158 7/10/2024
2.1.241 139 7/10/2024
2.1.240 152 7/10/2024
2.1.239 129 7/10/2024
2.1.238 134 7/10/2024
2.1.237 122 7/10/2024
2.1.236 149 7/10/2024
2.1.235 151 7/10/2024
2.1.234 162 7/10/2024
2.1.232 157 7/10/2024
2.1.231 149 7/10/2024
2.1.230 178 7/9/2024
2.1.229 145 7/9/2024
2.1.227 122 7/9/2024
2.1.226 119 7/9/2024
2.1.225 140 7/9/2024
2.1.224 170 7/9/2024
2.1.223 136 7/9/2024
2.1.222 130 7/9/2024
2.1.221 175 7/9/2024
2.1.220 151 7/9/2024
2.1.219 156 7/9/2024
2.1.218 124 7/9/2024
2.1.217 142 7/9/2024
2.1.216 128 7/9/2024
2.1.215 172 7/9/2024
2.1.214 152 7/9/2024
2.1.213 164 7/8/2024
2.1.212 167 7/8/2024
2.1.211 156 7/8/2024
2.1.210 193 7/8/2024
2.1.209 153 7/8/2024
2.1.208 174 7/8/2024
2.1.207 156 7/8/2024
2.1.206 127 7/8/2024
2.1.205 154 7/8/2024
2.1.204 167 7/7/2024
2.1.203 159 7/7/2024
2.1.202 157 7/7/2024
2.1.201 172 7/7/2024
2.1.200 151 7/7/2024
2.1.199 176 7/7/2024
2.1.198 170 7/7/2024
2.1.197 210 7/3/2024
2.1.196 153 7/3/2024
2.1.195 169 7/3/2024
2.1.194 179 7/3/2024
2.1.193 165 7/3/2024
2.1.192 133 7/3/2024
2.1.191 155 7/3/2024
2.1.190 178 7/3/2024
2.1.189 302 6/27/2024
2.1.188 163 6/27/2024
2.1.187 144 6/27/2024
2.1.186 162 6/22/2024
2.1.185 149 6/22/2024
2.1.184 156 6/22/2024
2.1.183 215 6/16/2024
2.1.182 137 6/15/2024
2.1.181 153 6/15/2024
2.1.180 139 6/15/2024
2.1.179 169 6/15/2024
2.1.178 139 6/15/2024
2.1.177 153 6/15/2024
2.1.176 134 6/15/2024
2.1.175 186 6/15/2024
2.1.174 164 6/15/2024
2.1.173 141 6/14/2024
2.1.172 122 6/14/2024
2.1.171 154 6/14/2024
2.1.170 193 6/4/2024
2.1.169 162 6/4/2024
2.1.168 191 6/2/2024
2.1.167 157 6/1/2024
2.1.166 164 6/1/2024
2.1.165 150 6/1/2024
2.1.164 154 6/1/2024
2.1.163 177 6/1/2024
2.1.162 164 6/1/2024
2.1.161 126 6/1/2024
2.1.160 149 6/1/2024
2.1.159 166 6/1/2024
2.1.158 155 5/31/2024
2.1.157 157 5/31/2024
2.1.156 179 5/31/2024
2.1.155 147 5/31/2024
2.1.154 157 5/31/2024
2.1.153 181 5/29/2024
2.1.152 167 5/29/2024
2.1.151 156 5/29/2024
2.1.150 157 5/29/2024
2.1.149 156 5/29/2024
2.1.148 199 5/28/2024
2.1.147 143 5/28/2024
2.1.146 157 5/28/2024
2.1.145 155 5/28/2024
2.1.144 146 5/28/2024
2.1.143 132 5/28/2024
2.1.142 144 5/27/2024
2.1.141 152 5/27/2024
2.1.140 161 5/27/2024
2.1.139 145 5/27/2024
2.1.138 151 5/27/2024
2.1.137 144 5/27/2024
2.1.136 157 5/26/2024
2.1.135 172 5/26/2024
2.1.134 154 5/26/2024
2.1.133 154 5/26/2024
2.1.132 160 5/26/2024
2.1.131 157 5/26/2024
2.1.130 162 5/26/2024
2.1.129 154 5/26/2024
2.1.128 176 5/25/2024
2.1.127 152 5/25/2024
2.1.126 153 5/25/2024
2.1.125 136 5/25/2024
2.1.124 146 5/25/2024
2.1.123 151 5/25/2024
2.1.122 163 5/25/2024
2.1.121 153 5/25/2024
2.1.120 156 5/25/2024
2.1.119 157 5/25/2024
2.1.118 178 5/25/2024
2.1.117 185 5/23/2024
2.1.116 151 5/23/2024
2.1.115 148 5/23/2024
2.1.114 147 5/23/2024
2.1.113 163 5/23/2024
2.1.112 128 5/23/2024
2.1.111 146 5/23/2024
2.1.110 167 5/23/2024
2.1.109 150 5/23/2024
2.1.108 155 5/22/2024
2.1.107 144 5/22/2024
2.1.106 177 5/22/2024
2.1.105 152 5/22/2024
2.1.104 151 5/22/2024
2.1.103 133 5/22/2024
2.1.102 146 5/22/2024
2.1.101 141 5/22/2024
2.1.100 163 5/18/2024
2.1.99 168 5/18/2024
2.1.98 175 5/18/2024
2.1.97 152 5/18/2024
2.1.96 172 5/18/2024
2.1.95 152 5/18/2024
2.1.94 178 5/17/2024
2.1.93 170 5/17/2024
2.1.92 176 5/17/2024
2.1.91 148 5/17/2024
2.1.90 163 5/17/2024
2.1.89 155 5/17/2024
2.1.88 185 5/16/2024
2.1.87 163 5/16/2024
2.1.86 148 5/16/2024
2.1.85 173 5/15/2024
2.1.84 147 5/15/2024
2.1.83 164 5/15/2024
2.1.82 185 5/15/2024
2.1.81 148 5/15/2024
2.1.80 176 5/13/2024
2.1.79 161 5/13/2024
2.1.78 151 5/13/2024
2.1.77 136 5/13/2024
2.1.76 214 4/30/2024
2.1.75 169 4/30/2024
2.1.74 170 4/30/2024
2.1.73 162 4/30/2024
2.1.72 173 4/30/2024
2.1.71 155 4/29/2024
2.1.70 146 4/29/2024
2.1.69 171 4/29/2024
2.1.68 135 4/29/2024
2.1.67 136 4/29/2024
2.1.66 146 4/29/2024
2.1.65 160 4/28/2024
2.1.64 137 4/28/2024
2.1.63 151 4/28/2024
2.1.62 154 4/28/2024
2.1.61 149 4/28/2024
2.1.60 155 4/28/2024
2.1.59 176 4/28/2024
2.1.58 145 4/28/2024
2.1.57 139 4/28/2024
2.1.56 144 4/28/2024
2.1.55 168 4/28/2024
2.1.54 137 4/28/2024
2.1.53 147 4/28/2024
2.1.52 143 4/28/2024
2.1.51 149 4/27/2024
2.1.50 247 4/20/2024
2.1.49 168 4/20/2024
2.1.48 178 4/19/2024
2.1.47 169 4/19/2024
2.1.46 152 4/19/2024
2.1.45 149 4/19/2024
2.1.44 145 4/19/2024
2.1.43 170 4/19/2024
2.1.42 156 4/19/2024
2.1.41 161 4/18/2024
2.1.40 224 4/13/2024
2.1.39 168 4/13/2024
2.1.38 175 4/13/2024
2.1.37 190 4/13/2024
2.1.36 158 4/13/2024
2.1.35 170 4/12/2024
2.1.34 165 4/12/2024
2.1.33 162 4/12/2024
2.1.32 186 4/12/2024
2.1.31 144 4/12/2024
2.1.30 178 4/12/2024
2.1.29 170 4/12/2024
2.1.28 194 4/12/2024
2.1.27 145 4/12/2024
2.1.26 140 4/12/2024
2.1.25 158 4/12/2024
2.1.24 158 4/12/2024
2.1.23 187 4/11/2024
2.1.22 150 4/11/2024
2.1.21 184 4/10/2024
2.1.20 167 4/10/2024
2.1.19 169 4/10/2024
2.1.18 163 4/10/2024
2.1.17 151 4/10/2024
2.1.16 167 4/10/2024
2.1.15 145 4/10/2024
2.1.14 315 4/3/2024
2.1.13 148 4/2/2024
2.1.12 142 4/2/2024
2.1.11 136 4/2/2024
2.1.10 157 4/2/2024
2.1.9 121 4/2/2024
2.1.8 146 4/1/2024
2.1.7 142 4/1/2024
2.1.6 142 4/1/2024
2.1.5 157 3/31/2024
2.1.4 155 3/30/2024
2.1.3 136 3/30/2024
2.1.2 156 3/27/2024