Soenneker.SmartEnum.Abbreviated 3.0.1199

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