Soenneker.SmartEnum.Abbreviated 3.0.1179

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