Soenneker.SmartEnum.Abbreviated 3.0.1153

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