Soenneker.Validators.ExpiringKey 3.0.1236

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Validators.ExpiringKey --version 3.0.1236
                    
NuGet\Install-Package Soenneker.Validators.ExpiringKey -Version 3.0.1236
                    
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.Validators.ExpiringKey" Version="3.0.1236" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Validators.ExpiringKey" Version="3.0.1236" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Validators.ExpiringKey" />
                    
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.Validators.ExpiringKey --version 3.0.1236
                    
#r "nuget: Soenneker.Validators.ExpiringKey, 3.0.1236"
                    
#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.Validators.ExpiringKey&version=3.0.1236
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Validators.ExpiringKey&version=3.0.1236
                    
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.Validators.ExpiringKey

A validation module that checks for keys, stores them, expires them after an amount of time

Ideal for caching, session management, and more.

🚀 Features

  • Validate Key: Check if a key exists.
  • Add Key: Add a key with an expiration time.
  • Validate and Add: Validate if a key exists and add it if not.
  • Remove Key: Remove a key.

Installation

dotnet add package Soenneker.Validators.ExpiringKey

💻 Usage

IExpiringKeyValidator can be registered within DI, and injected:

public static async Task Main(string[] args)
{
    ...
    builder.Services.AddExpiringKeyValidatorAsSingleton();
}

or it can be initialized manually: new ExpiringKeyValidator().

Validate Key

Check if a key is present.

bool Validate(string key)

Add Key

Add a key with an expiration time.

void Add(string key, int expirationTimeMilliseconds)

Validate and Add Key

Validate a key and add it if it doesn't exist.

bool ValidateAndAdd(string key, int expirationTimeMilliseconds) // true if doesn't exist, false if it does

Remove Key

Remove a key.

void Remove(string key)

Example

var validator = new ExpiringKeyValidator();
validator.Add("key1", 5000); // 5 seconds

var invalid = validator.Validate("key1"); // false, key exists

await Task.Delay(7000); // wait 7 seconds

var validAfterTime = validator.Validate("key1"); // true, key does not exist
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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.1239 10 6/28/2025
3.0.1238 18 6/27/2025
3.0.1237 26 6/27/2025
3.0.1236 27 6/27/2025
3.0.1235 281 6/11/2025
3.0.1234 137 5/27/2025
3.0.1233 137 5/27/2025
3.0.1232 138 5/27/2025
3.0.1231 127 5/23/2025
3.0.1230 131 5/23/2025
3.0.1229 136 5/22/2025
3.0.1228 217 5/13/2025
3.0.1227 153 5/8/2025
3.0.1226 135 5/7/2025
3.0.1225 138 5/7/2025
3.0.1223 140 5/5/2025
3.0.1222 134 5/5/2025
3.0.1221 132 5/5/2025
3.0.1220 140 5/5/2025
3.0.1219 140 5/5/2025
3.0.1218 154 4/9/2025
3.0.1217 154 4/8/2025
3.0.1216 158 4/8/2025
3.0.1214 147 4/8/2025
3.0.1213 155 4/8/2025
3.0.1212 148 4/8/2025
3.0.1211 149 4/8/2025
3.0.1210 146 4/8/2025
3.0.1209 141 4/8/2025
3.0.1208 136 4/8/2025
3.0.1207 145 4/8/2025
3.0.1206 148 4/8/2025
3.0.1205 146 4/8/2025
3.0.1204 140 4/8/2025
3.0.1203 142 4/8/2025
3.0.1202 148 4/8/2025
3.0.1201 147 4/8/2025
3.0.1200 145 4/7/2025
3.0.1199 139 4/7/2025
3.0.1198 147 4/7/2025
3.0.1197 141 4/7/2025
3.0.1196 142 4/7/2025
3.0.1195 136 4/7/2025
3.0.1194 137 4/7/2025
3.0.1193 147 4/7/2025
3.0.1192 153 4/7/2025
3.0.1191 152 4/7/2025
3.0.1190 148 4/7/2025
3.0.1189 145 4/6/2025
3.0.1188 128 4/6/2025
3.0.1187 131 4/6/2025
3.0.1186 103 4/6/2025
3.0.1185 98 4/6/2025
3.0.1184 93 4/6/2025
3.0.1183 93 4/6/2025
3.0.1182 66 4/5/2025
3.0.1181 80 4/5/2025
3.0.1180 72 4/5/2025
3.0.1179 76 4/5/2025
3.0.1178 81 4/5/2025
3.0.1177 77 4/5/2025
3.0.1176 71 4/5/2025
3.0.1175 75 4/5/2025
3.0.1174 77 4/5/2025
3.0.1173 96 4/4/2025
3.0.1172 133 4/4/2025
3.0.1171 146 4/4/2025
3.0.1170 137 4/4/2025
3.0.1169 145 4/1/2025
3.0.1168 146 4/1/2025
3.0.1167 147 4/1/2025
3.0.1166 143 4/1/2025
3.0.1165 144 4/1/2025
3.0.1164 146 4/1/2025
3.0.1163 153 3/31/2025
3.0.1162 140 3/31/2025
3.0.1161 146 3/31/2025
3.0.1160 147 3/31/2025
3.0.1159 75 3/29/2025
3.0.1158 76 3/29/2025
3.0.1157 82 3/29/2025
3.0.1156 85 3/29/2025
3.0.1155 457 3/25/2025
3.0.1154 464 3/25/2025
3.0.1153 459 3/25/2025
3.0.1152 463 3/25/2025
3.0.1151 463 3/25/2025
3.0.1150 105 3/21/2025
3.0.1149 106 3/21/2025
3.0.1148 120 3/21/2025
3.0.1147 120 3/21/2025
3.0.1146 130 3/21/2025
3.0.1145 133 3/18/2025
3.0.1144 135 3/18/2025
3.0.1143 137 3/18/2025
3.0.1142 133 3/18/2025
3.0.1141 140 3/18/2025
3.0.1140 141 3/18/2025
3.0.1139 68 3/15/2025
3.0.1138 64 3/15/2025
3.0.1137 61 3/15/2025
3.0.1136 65 3/15/2025
3.0.1135 70 3/15/2025
3.0.1134 66 3/15/2025
3.0.1133 76 3/14/2025
3.0.1132 66 3/14/2025
3.0.1131 157 3/12/2025
3.0.1130 154 3/12/2025
3.0.1129 156 3/12/2025
3.0.1128 151 3/12/2025
3.0.1127 149 3/12/2025
3.0.1126 168 3/11/2025
3.0.1125 149 3/11/2025
3.0.1124 150 3/11/2025
3.0.1123 146 3/11/2025
3.0.1122 154 3/11/2025
3.0.1121 156 3/11/2025
3.0.1120 147 3/11/2025
3.0.1119 151 3/11/2025
3.0.1118 211 3/7/2025
3.0.1117 203 3/7/2025
3.0.1116 204 3/7/2025
3.0.1115 207 3/7/2025
3.0.1114 197 3/7/2025
3.0.1113 196 3/7/2025
3.0.1112 104 3/2/2025
3.0.1111 91 3/2/2025
3.0.1110 95 3/2/2025
3.0.1109 89 3/2/2025
3.0.1108 88 3/2/2025
3.0.1107 92 3/2/2025
3.0.1106 84 3/2/2025
3.0.1105 91 3/2/2025
3.0.1104 92 3/2/2025
3.0.1103 90 3/2/2025
3.0.1102 91 3/1/2025
3.0.1101 85 3/1/2025
3.0.1100 90 3/1/2025
3.0.1099 100 3/1/2025
3.0.1098 96 3/1/2025
3.0.1097 96 3/1/2025
3.0.1096 106 3/1/2025
3.0.1095 87 3/1/2025
3.0.1094 89 3/1/2025
3.0.1093 87 3/1/2025
3.0.1092 80 3/1/2025
3.0.1091 89 3/1/2025
3.0.1090 87 3/1/2025
3.0.1089 79 3/1/2025
3.0.1088 96 2/26/2025
3.0.1087 93 2/26/2025
3.0.1086 93 2/25/2025
3.0.1085 93 2/25/2025
3.0.1084 88 2/25/2025
3.0.1083 89 2/25/2025
3.0.1082 97 2/25/2025
3.0.1081 91 2/25/2025
3.0.1080 98 2/25/2025
3.0.1079 83 2/25/2025
3.0.1078 89 2/25/2025
3.0.1077 85 2/25/2025
3.0.1076 90 2/25/2025
3.0.1075 91 2/24/2025
3.0.1074 83 2/24/2025
3.0.1073 113 2/23/2025
3.0.1072 90 2/23/2025
3.0.1071 94 2/23/2025
3.0.1070 88 2/23/2025
3.0.1069 88 2/23/2025
3.0.1068 94 2/23/2025
3.0.1067 92 2/22/2025
3.0.1066 95 2/22/2025
3.0.1065 90 2/22/2025
3.0.1064 92 2/22/2025
3.0.1063 98 2/22/2025
3.0.1062 94 2/22/2025
3.0.1061 88 2/22/2025
3.0.1060 95 2/22/2025
3.0.1059 91 2/22/2025
3.0.1058 87 2/22/2025
3.0.1057 86 2/22/2025
3.0.1056 92 2/22/2025
3.0.1055 92 2/22/2025
3.0.1054 83 2/21/2025
3.0.1053 91 2/21/2025
3.0.1052 97 2/21/2025
3.0.1051 96 2/21/2025
3.0.1050 96 2/21/2025
3.0.1049 102 2/21/2025
3.0.1048 115 2/19/2025
3.0.1047 95 2/19/2025
3.0.1046 98 2/19/2025
3.0.1045 101 2/19/2025
3.0.1044 94 2/19/2025
3.0.1043 102 2/19/2025
3.0.1042 102 2/19/2025
3.0.1041 104 2/19/2025
3.0.1040 96 2/18/2025
3.0.1039 95 2/18/2025
3.0.1038 102 2/18/2025
3.0.1037 92 2/18/2025
3.0.1036 100 2/18/2025
3.0.1035 92 2/18/2025
3.0.1034 110 2/18/2025
3.0.1033 99 2/14/2025
3.0.1032 94 2/14/2025
3.0.1031 106 2/14/2025
3.0.1030 98 2/14/2025
3.0.1029 99 2/14/2025
3.0.1028 93 2/14/2025
3.0.1027 95 2/13/2025
3.0.1026 94 2/13/2025
3.0.1025 107 2/12/2025
3.0.1024 110 2/12/2025
3.0.1023 104 2/12/2025
3.0.1022 106 2/12/2025
3.0.1021 100 2/12/2025
3.0.1020 110 2/12/2025
3.0.1019 103 2/12/2025
3.0.1018 97 2/12/2025
3.0.1017 99 2/12/2025
3.0.1016 100 2/12/2025
3.0.1015 101 2/12/2025
3.0.1014 107 2/12/2025
3.0.1013 103 2/12/2025
3.0.1012 96 2/11/2025
3.0.1011 104 2/11/2025
3.0.1010 108 2/11/2025
3.0.1009 106 2/11/2025
3.0.1008 104 2/11/2025
3.0.1007 92 2/11/2025
3.0.1006 98 2/11/2025
3.0.1005 104 2/11/2025
3.0.1004 97 2/11/2025
3.0.1003 104 2/11/2025
3.0.1002 109 2/11/2025
3.0.1001 104 2/10/2025
3.0.1000 97 2/10/2025
3.0.999 110 2/10/2025
3.0.998 101 2/10/2025
3.0.997 100 2/10/2025
3.0.996 104 2/9/2025
3.0.995 94 2/9/2025
3.0.994 100 2/9/2025
3.0.993 94 2/9/2025
3.0.992 91 2/9/2025
3.0.991 97 2/8/2025
3.0.990 89 2/8/2025
3.0.989 89 2/8/2025
3.0.988 102 2/8/2025
3.0.987 91 2/7/2025
3.0.986 96 2/7/2025
3.0.985 103 2/7/2025
3.0.984 99 2/7/2025
3.0.983 106 2/7/2025
3.0.982 91 2/7/2025
3.0.981 96 2/7/2025
3.0.980 100 2/6/2025
3.0.979 101 2/5/2025
3.0.978 102 2/5/2025
3.0.977 96 2/5/2025
3.0.976 99 2/5/2025
3.0.975 92 2/5/2025
3.0.974 97 2/5/2025
3.0.973 101 2/5/2025
3.0.972 98 2/5/2025
3.0.971 94 2/5/2025
3.0.970 92 2/5/2025
3.0.969 98 2/5/2025
3.0.968 92 2/5/2025
3.0.967 93 2/5/2025
3.0.966 89 2/5/2025
3.0.965 98 2/5/2025
3.0.964 91 2/5/2025
3.0.963 92 2/5/2025
3.0.962 106 1/28/2025
3.0.961 94 1/28/2025
3.0.960 100 1/28/2025
3.0.958 93 1/28/2025
3.0.957 82 1/28/2025
3.0.956 93 1/28/2025
3.0.955 89 1/28/2025
3.0.954 94 1/28/2025
3.0.953 87 1/27/2025
3.0.952 86 1/27/2025
3.0.951 85 1/27/2025
3.0.950 92 1/27/2025
3.0.949 99 1/27/2025
3.0.948 98 1/27/2025
3.0.947 93 1/26/2025
3.0.946 93 1/26/2025
3.0.945 99 1/26/2025
3.0.944 102 1/26/2025
3.0.943 88 1/26/2025
3.0.942 94 1/26/2025
3.0.941 94 1/26/2025
3.0.940 88 1/26/2025
3.0.939 107 1/26/2025
3.0.938 89 1/26/2025
3.0.937 91 1/26/2025
3.0.936 87 1/25/2025
3.0.935 95 1/25/2025
3.0.934 93 1/25/2025
3.0.933 96 1/25/2025
3.0.932 95 1/25/2025
3.0.931 103 1/25/2025
3.0.930 90 1/25/2025
3.0.929 96 1/25/2025
3.0.928 90 1/25/2025
3.0.927 90 1/25/2025
3.0.926 94 1/25/2025
3.0.925 84 1/25/2025
3.0.924 89 1/25/2025
3.0.923 77 1/24/2025
3.0.922 84 1/24/2025
3.0.921 81 1/24/2025
3.0.920 83 1/24/2025
3.0.919 86 1/24/2025
3.0.918 98 1/24/2025
3.0.917 91 1/24/2025
3.0.916 89 1/24/2025
3.0.915 81 1/24/2025
3.0.914 99 1/24/2025
3.0.913 90 1/24/2025
3.0.912 99 1/24/2025
3.0.911 83 1/24/2025
3.0.910 94 1/23/2025
3.0.909 87 1/23/2025
3.0.908 93 1/23/2025
3.0.907 91 1/23/2025
3.0.906 92 1/23/2025
3.0.905 85 1/22/2025
3.0.904 89 1/22/2025
3.0.903 92 1/22/2025
3.0.902 101 1/22/2025
3.0.901 94 1/21/2025
3.0.900 93 1/21/2025
3.0.899 95 1/21/2025
3.0.898 96 1/21/2025
3.0.897 87 1/21/2025
3.0.896 96 1/21/2025
3.0.895 92 1/21/2025
3.0.894 95 1/21/2025
3.0.893 98 1/21/2025
3.0.892 91 1/21/2025
3.0.891 90 1/21/2025
3.0.890 108 1/21/2025
3.0.889 96 1/21/2025
3.0.888 98 1/21/2025
3.0.887 83 1/21/2025
3.0.886 89 1/21/2025
3.0.885 90 1/21/2025
3.0.884 82 1/20/2025
3.0.883 88 1/20/2025
3.0.882 94 1/20/2025
3.0.881 78 1/20/2025
3.0.880 101 1/20/2025
3.0.879 91 1/20/2025
3.0.878 89 1/20/2025
3.0.877 93 1/20/2025
3.0.876 92 1/20/2025
3.0.875 98 1/20/2025
3.0.874 92 1/20/2025
3.0.873 88 1/20/2025
3.0.872 95 1/20/2025
3.0.871 97 1/20/2025
3.0.870 96 1/19/2025
3.0.869 81 1/19/2025
3.0.868 83 1/19/2025
3.0.867 92 1/19/2025
3.0.866 88 1/19/2025
3.0.865 92 1/19/2025
3.0.864 93 1/19/2025
3.0.863 85 1/19/2025
3.0.862 78 1/19/2025
3.0.861 79 1/19/2025
3.0.860 82 1/18/2025
3.0.859 82 1/18/2025
3.0.858 79 1/18/2025
3.0.857 93 1/18/2025
3.0.856 87 1/18/2025
3.0.855 86 1/18/2025
3.0.854 83 1/18/2025
3.0.853 91 1/18/2025
3.0.852 93 1/17/2025
3.0.851 93 1/17/2025
3.0.850 79 1/17/2025
3.0.849 97 1/17/2025
3.0.848 89 1/17/2025
3.0.847 90 1/17/2025
3.0.846 88 1/17/2025
3.0.845 82 1/17/2025
3.0.844 83 1/17/2025
3.0.843 78 1/17/2025
3.0.842 84 1/17/2025
3.0.841 87 1/16/2025
3.0.840 78 1/16/2025
3.0.839 81 1/16/2025
3.0.838 80 1/16/2025
3.0.837 88 1/16/2025
3.0.836 78 1/16/2025
3.0.835 88 1/16/2025
3.0.834 80 1/16/2025
3.0.833 81 1/16/2025
3.0.832 82 1/16/2025
3.0.831 81 1/16/2025
3.0.830 81 1/16/2025
3.0.829 83 1/16/2025
3.0.828 83 1/16/2025
3.0.827 87 1/15/2025
3.0.826 91 1/15/2025
3.0.825 88 1/15/2025
3.0.824 76 1/15/2025
3.0.823 82 1/15/2025
3.0.822 81 1/15/2025
3.0.821 86 1/15/2025
3.0.820 85 1/15/2025
3.0.819 76 1/15/2025
3.0.818 80 1/15/2025
3.0.817 67 1/15/2025
3.0.816 67 1/15/2025
3.0.815 64 1/15/2025
3.0.814 63 1/15/2025
3.0.813 62 1/15/2025
3.0.812 64 1/15/2025
3.0.811 59 1/15/2025
3.0.810 65 1/15/2025
3.0.809 84 1/14/2025
3.0.808 77 1/14/2025
3.0.807 76 1/14/2025
3.0.806 73 1/14/2025
3.0.805 79 1/14/2025
3.0.804 74 1/14/2025
3.0.803 79 1/14/2025
3.0.802 79 1/14/2025
3.0.801 76 1/14/2025
3.0.800 91 1/13/2025
3.0.799 81 1/13/2025
3.0.798 80 1/13/2025
3.0.797 75 1/13/2025
3.0.796 77 1/13/2025
3.0.795 79 1/13/2025
3.0.794 81 1/13/2025
3.0.793 75 1/13/2025
3.0.792 84 1/12/2025
3.0.791 90 1/11/2025
3.0.790 88 1/11/2025
3.0.789 82 1/11/2025
3.0.788 92 1/11/2025
3.0.787 88 1/11/2025
3.0.786 90 1/11/2025
3.0.785 97 1/11/2025
3.0.784 87 1/11/2025
3.0.783 94 1/11/2025
3.0.782 86 1/11/2025
3.0.781 96 1/10/2025
3.0.780 88 1/10/2025
3.0.779 96 1/10/2025
3.0.778 90 1/10/2025
3.0.777 99 1/10/2025
3.0.776 93 1/10/2025
3.0.775 93 1/10/2025
3.0.774 92 1/10/2025
3.0.773 126 1/3/2025
3.0.772 122 1/3/2025
3.0.771 130 1/3/2025
3.0.770 123 1/3/2025
3.0.769 136 1/3/2025
3.0.768 120 1/3/2025
3.0.767 112 1/3/2025
3.0.766 105 1/3/2025
3.0.765 99 1/3/2025
3.0.764 96 1/3/2025
3.0.763 111 1/2/2025
3.0.762 105 1/2/2025
3.0.761 104 1/2/2025
3.0.760 108 1/2/2025
3.0.759 104 1/2/2025
3.0.758 112 1/2/2025
3.0.757 102 1/2/2025
3.0.756 106 1/2/2025
3.0.755 106 1/1/2025
3.0.754 102 1/1/2025
3.0.753 108 1/1/2025
3.0.752 111 1/1/2025
3.0.751 103 12/31/2024
3.0.750 103 12/31/2024
3.0.749 101 12/31/2024
3.0.748 101 12/31/2024
3.0.747 105 12/31/2024
3.0.746 122 12/31/2024
3.0.745 123 12/31/2024
3.0.744 118 12/31/2024
3.0.743 130 12/31/2024
3.0.742 122 12/31/2024
3.0.741 94 12/31/2024
3.0.740 92 12/31/2024
3.0.739 91 12/31/2024
3.0.738 96 12/31/2024
3.0.737 92 12/31/2024
3.0.736 104 12/31/2024
3.0.735 94 12/31/2024
3.0.734 97 12/31/2024
3.0.733 114 12/31/2024
3.0.732 96 12/31/2024
3.0.731 112 12/31/2024
3.0.730 101 12/28/2024
3.0.729 102 12/28/2024
3.0.728 99 12/28/2024
3.0.727 96 12/28/2024
3.0.726 95 12/28/2024
3.0.725 97 12/28/2024
3.0.724 100 12/27/2024
3.0.723 94 12/27/2024
3.0.722 104 12/27/2024
3.0.721 98 12/27/2024
3.0.720 99 12/24/2024
3.0.719 100 12/24/2024
3.0.718 96 12/24/2024
3.0.717 90 12/24/2024
3.0.716 102 12/24/2024
3.0.715 92 12/24/2024
3.0.714 102 12/24/2024
3.0.713 88 12/24/2024
3.0.712 92 12/24/2024
3.0.711 95 12/24/2024
3.0.710 97 12/24/2024
3.0.709 92 12/24/2024
3.0.708 94 12/24/2024
3.0.707 91 12/24/2024
3.0.706 96 12/23/2024
3.0.705 95 12/23/2024
3.0.704 92 12/23/2024
3.0.703 95 12/23/2024
3.0.702 88 12/23/2024
3.0.701 86 12/23/2024
3.0.700 93 12/23/2024
3.0.699 113 12/23/2024
3.0.698 98 12/23/2024
3.0.697 90 12/23/2024
3.0.696 103 12/23/2024
3.0.695 97 12/23/2024
3.0.694 96 12/23/2024
3.0.693 99 12/23/2024
3.0.692 96 12/22/2024
3.0.691 95 12/22/2024
3.0.690 88 12/22/2024
3.0.689 90 12/22/2024
3.0.688 102 12/22/2024
3.0.687 94 12/22/2024
3.0.686 87 12/22/2024
3.0.685 94 12/22/2024
3.0.684 93 12/22/2024
3.0.683 94 12/22/2024
3.0.682 95 12/22/2024
3.0.681 117 12/22/2024
3.0.680 105 12/22/2024
3.0.679 96 12/22/2024
3.0.678 95 12/21/2024
3.0.677 103 12/21/2024
3.0.676 98 12/21/2024
3.0.675 92 12/21/2024
3.0.674 128 12/21/2024
3.0.673 90 12/21/2024
3.0.672 96 12/21/2024
3.0.671 95 12/21/2024
3.0.670 100 12/21/2024
3.0.669 108 12/21/2024
3.0.668 98 12/21/2024
3.0.667 98 12/21/2024
3.0.666 106 12/21/2024
3.0.665 100 12/21/2024
3.0.664 98 12/21/2024
3.0.663 91 12/20/2024
3.0.662 99 12/20/2024
3.0.661 104 12/20/2024
3.0.660 95 12/20/2024
3.0.659 98 12/20/2024
3.0.658 95 12/20/2024
3.0.657 99 12/20/2024
3.0.656 102 12/20/2024
3.0.655 102 12/20/2024
3.0.654 99 12/19/2024
3.0.653 100 12/19/2024
3.0.652 95 12/19/2024
3.0.651 92 12/19/2024
3.0.650 101 12/19/2024
3.0.649 109 12/19/2024
3.0.648 100 12/19/2024
3.0.647 107 12/18/2024
3.0.646 93 12/18/2024
3.0.645 108 12/18/2024
3.0.644 97 12/18/2024
3.0.643 87 12/17/2024
3.0.642 96 12/16/2024
3.0.641 82 12/16/2024
3.0.640 88 12/16/2024
3.0.639 95 12/10/2024
3.0.638 91 12/10/2024
3.0.637 88 12/10/2024
3.0.636 98 12/10/2024
3.0.635 89 12/10/2024
3.0.634 92 12/10/2024
3.0.633 89 12/10/2024
3.0.632 93 12/9/2024
3.0.631 92 12/9/2024
3.0.630 96 12/9/2024
3.0.629 101 12/9/2024
3.0.628 95 12/9/2024
3.0.627 97 12/9/2024
3.0.626 102 12/9/2024
3.0.625 98 12/9/2024
3.0.624 95 12/9/2024
3.0.623 95 12/7/2024
3.0.622 102 12/7/2024
3.0.621 93 12/7/2024
3.0.620 99 12/6/2024
3.0.619 94 12/6/2024
3.0.618 92 12/6/2024
3.0.617 99 12/6/2024
3.0.616 103 12/6/2024
3.0.615 98 12/6/2024
3.0.614 98 12/6/2024
3.0.613 98 12/6/2024
3.0.612 103 12/6/2024
3.0.611 118 12/6/2024
3.0.610 102 12/6/2024
3.0.609 98 12/6/2024
3.0.608 95 12/6/2024
3.0.607 108 12/6/2024
3.0.606 105 12/6/2024
3.0.605 101 12/6/2024
3.0.604 98 12/6/2024
3.0.603 103 12/6/2024
3.0.602 93 12/6/2024
3.0.601 103 12/6/2024
3.0.600 104 12/6/2024
3.0.599 102 12/6/2024
3.0.598 101 12/6/2024
3.0.597 104 12/6/2024
3.0.596 105 12/5/2024
3.0.595 105 12/5/2024
3.0.594 105 12/5/2024
3.0.593 102 12/5/2024
3.0.592 103 12/3/2024
3.0.591 98 12/3/2024
3.0.590 111 12/3/2024
3.0.589 110 12/3/2024
3.0.588 101 12/3/2024
3.0.587 98 12/3/2024
3.0.586 98 12/3/2024
3.0.585 87 12/3/2024
3.0.584 101 12/2/2024
3.0.583 92 12/2/2024
3.0.582 92 12/2/2024
3.0.581 94 12/2/2024
3.0.580 102 12/2/2024
3.0.579 87 12/2/2024
3.0.578 86 12/2/2024
3.0.577 103 12/2/2024
3.0.576 97 12/2/2024
3.0.575 97 12/2/2024
3.0.574 92 12/2/2024
3.0.573 100 12/1/2024
3.0.572 96 12/1/2024
3.0.571 98 12/1/2024
3.0.570 94 12/1/2024
3.0.569 104 12/1/2024
3.0.568 104 12/1/2024
3.0.567 98 12/1/2024
3.0.566 101 12/1/2024
3.0.565 97 11/29/2024
3.0.564 92 11/29/2024
3.0.563 98 11/29/2024
3.0.562 93 11/29/2024
3.0.561 99 11/29/2024
3.0.560 103 11/29/2024
3.0.559 103 11/29/2024
3.0.558 100 11/21/2024
3.0.557 97 11/21/2024
3.0.556 92 11/21/2024
3.0.555 99 11/21/2024
3.0.554 97 11/21/2024
3.0.553 101 11/20/2024
3.0.552 112 11/20/2024
3.0.551 106 11/20/2024
3.0.550 100 11/20/2024
3.0.549 99 11/20/2024
3.0.548 95 11/20/2024
3.0.547 94 11/20/2024
3.0.546 94 11/20/2024
3.0.545 99 11/20/2024
3.0.544 95 11/20/2024
3.0.543 100 11/19/2024
3.0.542 90 11/19/2024
3.0.541 89 11/19/2024
3.0.540 92 11/19/2024
3.0.539 99 11/19/2024
3.0.538 90 11/19/2024
3.0.537 95 11/19/2024
3.0.536 99 11/15/2024
3.0.535 107 11/15/2024
3.0.534 95 11/14/2024
3.0.533 94 11/14/2024
3.0.532 93 11/14/2024
3.0.531 95 11/14/2024
3.0.530 88 11/14/2024
3.0.529 96 11/14/2024
3.0.528 88 11/14/2024
3.0.527 94 11/14/2024
3.0.526 92 11/14/2024
3.0.525 81 11/14/2024
3.0.524 104 11/14/2024
3.0.523 92 11/14/2024
3.0.522 98 11/14/2024
3.0.521 97 11/14/2024
3.0.520 97 11/14/2024
3.0.519 95 11/14/2024
3.0.518 95 11/14/2024
3.0.517 97 11/14/2024
3.0.516 97 11/14/2024
3.0.515 91 11/14/2024
3.0.514 94 11/14/2024
3.0.513 104 11/14/2024
3.0.512 105 11/14/2024
2.1.511 97 11/13/2024
2.1.510 102 11/13/2024
2.1.509 103 11/13/2024
2.1.508 99 11/13/2024
2.1.507 95 11/13/2024
2.1.506 94 11/13/2024
2.1.505 104 11/13/2024
2.1.504 103 11/13/2024
2.1.503 100 11/13/2024
2.1.502 96 11/13/2024
2.1.501 101 11/12/2024
2.1.500 99 11/12/2024
2.1.499 101 11/12/2024
2.1.498 106 11/9/2024
2.1.497 111 11/9/2024
2.1.496 109 11/9/2024
2.1.495 108 11/9/2024
2.1.494 102 11/9/2024
2.1.493 104 11/9/2024
2.1.492 99 11/9/2024
2.1.491 103 11/9/2024
2.1.490 93 11/9/2024
2.1.489 108 11/9/2024
2.1.488 109 11/8/2024
2.1.487 99 11/8/2024
2.1.486 97 11/8/2024
2.1.485 95 11/8/2024
2.1.484 104 11/8/2024
2.1.483 103 11/8/2024
2.1.482 105 11/8/2024
2.1.481 102 11/8/2024
2.1.480 107 11/8/2024
2.1.479 96 11/6/2024
2.1.478 94 11/6/2024
2.1.477 100 11/1/2024
2.1.476 99 11/1/2024
2.1.475 97 11/1/2024
2.1.474 96 11/1/2024
2.1.473 107 10/29/2024
2.1.472 96 10/29/2024
2.1.471 110 10/29/2024
2.1.470 94 10/29/2024
2.1.469 103 10/29/2024
2.1.468 106 10/29/2024
2.1.467 103 10/29/2024
2.1.466 91 10/29/2024
2.1.465 100 10/29/2024
2.1.464 95 10/29/2024
2.1.463 93 10/29/2024
2.1.462 90 10/29/2024
2.1.461 102 10/28/2024
2.1.460 95 10/28/2024
2.1.459 104 10/26/2024
2.1.458 102 10/26/2024
2.1.457 104 10/26/2024
2.1.456 97 10/26/2024
2.1.455 102 10/26/2024
2.1.454 104 10/22/2024
2.1.453 95 10/22/2024
2.1.452 98 10/22/2024
2.1.451 96 10/22/2024
2.1.450 97 10/22/2024
2.1.449 101 10/22/2024
2.1.448 95 10/22/2024
2.1.447 95 10/22/2024
2.1.446 94 10/22/2024
2.1.445 90 10/22/2024
2.1.444 99 10/22/2024
2.1.443 134 10/18/2024
2.1.442 129 10/18/2024
2.1.441 103 10/17/2024
2.1.440 112 10/17/2024
2.1.439 103 10/17/2024
2.1.438 105 10/17/2024
2.1.437 99 10/15/2024
2.1.436 101 10/15/2024
2.1.435 100 10/15/2024
2.1.434 96 10/15/2024
2.1.433 101 10/14/2024
2.1.432 100 10/12/2024
2.1.431 103 10/12/2024
2.1.430 96 10/12/2024
2.1.429 100 10/12/2024
2.1.428 96 10/12/2024
2.1.427 105 10/11/2024
2.1.426 95 10/11/2024
2.1.425 104 10/11/2024
2.1.424 108 10/11/2024
2.1.423 106 10/11/2024
2.1.422 102 10/9/2024
2.1.421 106 10/9/2024
2.1.420 104 10/9/2024
2.1.419 97 10/9/2024
2.1.418 106 10/9/2024
2.1.417 94 10/9/2024
2.1.416 102 10/9/2024
2.1.415 103 10/9/2024
2.1.414 96 10/9/2024
2.1.413 90 10/9/2024
2.1.412 103 10/9/2024
2.1.411 100 10/9/2024
2.1.410 97 10/8/2024
2.1.409 104 10/8/2024
2.1.408 101 10/8/2024
2.1.407 100 10/8/2024
2.1.406 96 10/8/2024
2.1.405 116 10/8/2024
2.1.404 100 10/8/2024
2.1.403 117 10/8/2024
2.1.402 98 10/3/2024
2.1.401 98 10/3/2024
2.1.400 90 10/3/2024
2.1.399 101 10/3/2024
2.1.398 97 10/3/2024
2.1.397 100 10/3/2024
2.1.396 140 10/3/2024
2.1.395 94 10/3/2024
2.1.394 102 10/3/2024
2.1.393 91 10/3/2024
2.1.392 101 10/2/2024
2.1.391 96 10/2/2024
2.1.390 98 10/2/2024
2.1.389 101 10/2/2024
2.1.388 103 10/2/2024
2.1.387 98 10/2/2024
2.1.386 92 10/2/2024
2.1.385 101 10/2/2024
2.1.384 104 10/2/2024
2.1.383 101 10/1/2024
2.1.382 93 10/1/2024
2.1.381 96 10/1/2024
2.1.380 100 10/1/2024
2.1.379 101 10/1/2024
2.1.378 99 10/1/2024
2.1.377 97 10/1/2024
2.1.376 100 10/1/2024
2.1.375 102 10/1/2024
2.1.374 106 9/29/2024
2.1.373 100 9/29/2024
2.1.372 103 9/29/2024
2.1.371 104 9/29/2024
2.1.370 106 9/29/2024
2.1.369 108 9/29/2024
2.1.368 109 9/29/2024
2.1.367 101 9/29/2024
2.1.366 97 9/27/2024
2.1.365 102 9/27/2024
2.1.364 97 9/27/2024
2.1.363 100 9/27/2024
2.1.362 99 9/27/2024
2.1.361 99 9/27/2024
2.1.360 96 9/27/2024
2.1.359 105 9/27/2024
2.1.358 109 9/27/2024
2.1.357 96 9/27/2024
2.1.356 101 9/27/2024
2.1.355 94 9/27/2024
2.1.354 116 9/27/2024
2.1.353 98 9/27/2024
2.1.352 101 9/27/2024
2.1.351 103 9/27/2024
2.1.350 116 9/27/2024
2.1.349 98 9/27/2024
2.1.348 98 9/26/2024
2.1.347 103 9/26/2024
2.1.346 108 9/26/2024
2.1.345 98 9/26/2024
2.1.344 111 9/26/2024
2.1.343 100 9/26/2024
2.1.342 102 9/26/2024
2.1.341 104 9/26/2024
2.1.340 103 9/26/2024
2.1.339 98 9/26/2024
2.1.338 100 9/26/2024
2.1.337 106 9/26/2024
2.1.336 107 9/26/2024
2.1.335 95 9/26/2024
2.1.334 104 9/26/2024
2.1.333 107 9/24/2024
2.1.332 104 9/23/2024
2.1.331 93 9/23/2024
2.1.330 105 9/23/2024
2.1.329 108 9/23/2024
2.1.328 106 9/23/2024
2.1.327 101 9/23/2024
2.1.326 117 9/23/2024
2.1.325 97 9/23/2024
2.1.324 108 9/23/2024
2.1.323 108 9/23/2024
2.1.322 106 9/23/2024
2.1.321 101 9/23/2024
2.1.320 97 9/23/2024
2.1.319 102 9/23/2024
2.1.318 111 9/23/2024
2.1.317 95 9/23/2024
2.1.316 94 9/23/2024
2.1.315 105 9/23/2024
2.1.314 92 9/23/2024
2.1.313 97 9/23/2024
2.1.312 97 9/19/2024
2.1.311 96 9/18/2024
2.1.310 100 9/18/2024
2.1.309 102 9/18/2024
2.1.308 109 9/18/2024
2.1.307 107 9/18/2024
2.1.306 113 9/18/2024
2.1.305 110 9/17/2024
2.1.304 115 9/17/2024
2.1.303 108 9/17/2024
2.1.302 102 9/17/2024
2.1.301 112 9/17/2024
2.1.300 112 9/17/2024
2.1.299 107 9/17/2024
2.1.297 104 9/17/2024
2.1.296 130 9/17/2024
2.1.295 119 9/17/2024
2.1.294 121 9/17/2024
2.1.293 123 9/17/2024
2.1.292 123 9/17/2024
2.1.291 121 9/17/2024
2.1.290 118 9/17/2024
2.1.289 124 9/16/2024
2.1.288 113 9/16/2024
2.1.287 118 9/16/2024
2.1.286 124 9/16/2024
2.1.285 123 9/16/2024
2.1.284 116 9/16/2024
2.1.283 120 9/16/2024
2.1.282 127 9/12/2024
2.1.281 130 9/12/2024
2.1.280 131 9/12/2024
2.1.279 116 9/12/2024
2.1.278 121 9/12/2024
2.1.277 126 9/12/2024
2.1.276 117 9/12/2024
2.1.275 115 9/11/2024
2.1.274 118 9/11/2024
2.1.273 117 9/11/2024
2.1.272 129 9/11/2024
2.1.271 113 9/11/2024
2.1.269 124 9/11/2024
2.1.268 110 9/11/2024
2.1.267 118 9/11/2024
2.1.266 128 9/11/2024
2.1.265 115 9/11/2024
2.1.264 118 9/11/2024
2.1.263 118 9/10/2024
2.1.262 117 9/10/2024
2.1.261 128 9/10/2024
2.1.260 116 9/10/2024
2.1.259 117 9/10/2024
2.1.258 116 9/10/2024
2.1.257 111 9/10/2024
2.1.256 108 9/10/2024
2.1.255 104 9/10/2024
2.1.254 117 9/10/2024
2.1.253 118 9/10/2024
2.1.252 112 9/10/2024
2.1.251 112 9/10/2024
2.1.249 115 9/10/2024
2.1.248 105 9/10/2024
2.1.247 107 9/9/2024
2.1.246 110 9/9/2024
2.1.244 114 9/9/2024
2.1.243 123 9/9/2024
2.1.242 112 9/9/2024
2.1.241 113 9/9/2024
2.1.239 114 9/9/2024
2.1.238 107 9/9/2024
2.1.237 115 9/9/2024
2.1.236 113 9/9/2024
2.1.235 117 9/7/2024
2.1.234 118 9/7/2024
2.1.233 119 9/7/2024
2.1.232 115 9/7/2024
2.1.231 111 9/7/2024
2.1.230 112 9/7/2024
2.1.229 126 9/7/2024
2.1.228 108 9/7/2024
2.1.227 132 9/6/2024
2.1.226 122 9/6/2024
2.1.225 123 9/6/2024
2.1.224 119 9/6/2024
2.1.223 120 9/6/2024
2.1.222 133 9/6/2024
2.1.221 129 9/6/2024
2.1.220 121 9/6/2024
2.1.219 128 9/5/2024
2.1.218 115 9/5/2024
2.1.217 111 9/5/2024
2.1.216 109 9/5/2024
2.1.215 118 9/5/2024
2.1.214 115 9/5/2024
2.1.213 118 9/5/2024
2.1.212 114 9/5/2024
2.1.211 123 9/5/2024
2.1.210 112 9/5/2024
2.1.209 121 9/5/2024
2.1.208 115 9/5/2024
2.1.207 123 9/5/2024
2.1.206 117 9/5/2024
2.1.205 118 9/5/2024
2.1.204 116 9/5/2024
2.1.203 116 9/4/2024
2.1.202 117 9/4/2024
2.1.201 122 9/4/2024
2.1.200 113 9/4/2024
2.1.199 128 9/4/2024
2.1.198 118 9/3/2024
2.1.197 113 9/3/2024
2.1.196 118 9/3/2024
2.1.195 115 9/3/2024
2.1.194 118 9/3/2024
2.1.193 112 9/3/2024
2.1.192 91 9/3/2024
2.1.191 107 9/3/2024
2.1.190 123 9/3/2024
2.1.189 118 9/3/2024
2.1.188 126 9/3/2024
2.1.187 111 9/3/2024
2.1.186 108 9/3/2024
2.1.185 112 8/30/2024
2.1.184 127 8/29/2024
2.1.183 109 8/29/2024
2.1.182 116 8/29/2024
2.1.181 111 8/29/2024
2.1.180 104 8/29/2024
2.1.179 109 8/29/2024
2.1.178 115 8/26/2024
2.1.177 123 8/26/2024
2.1.176 125 8/26/2024
2.1.175 115 8/26/2024
2.1.174 114 8/26/2024
2.1.173 117 8/26/2024
2.1.172 128 8/26/2024
2.1.171 144 8/21/2024
2.1.170 141 8/21/2024
2.1.169 139 8/21/2024
2.1.168 137 8/21/2024
2.1.167 136 8/21/2024
2.1.166 134 8/21/2024
2.1.165 138 8/21/2024
2.1.164 130 8/21/2024
2.1.163 139 8/20/2024
2.1.162 138 8/20/2024
2.1.161 133 8/20/2024
2.1.160 126 8/20/2024
2.1.159 139 8/20/2024
2.1.158 112 8/20/2024
2.1.157 126 8/20/2024
2.1.156 118 8/20/2024
2.1.155 139 8/20/2024
2.1.154 129 8/20/2024
2.1.153 126 8/20/2024
2.1.152 127 8/20/2024
2.1.151 123 8/20/2024
2.1.150 127 8/19/2024
2.1.149 120 8/19/2024
2.1.148 131 8/15/2024
2.1.147 138 8/15/2024
2.1.146 133 8/15/2024
2.1.145 141 8/15/2024
2.1.144 134 8/15/2024
2.1.143 124 8/15/2024
2.1.142 135 8/14/2024
2.1.141 135 8/14/2024
2.1.140 108 8/14/2024
2.1.139 124 8/14/2024
2.1.138 111 8/14/2024
2.1.137 130 8/13/2024
2.1.136 102 8/7/2024
2.1.135 96 8/7/2024
2.1.134 124 8/7/2024
2.1.133 113 8/7/2024
2.1.132 113 8/7/2024
2.1.131 116 8/7/2024
2.1.130 107 8/7/2024
2.1.129 113 8/6/2024
2.1.128 99 8/6/2024
2.1.127 86 8/6/2024
2.1.126 92 8/1/2024
2.1.125 89 8/1/2024
2.1.124 85 8/1/2024
2.1.123 94 8/1/2024
2.1.122 90 8/1/2024
2.1.121 100 8/1/2024
2.1.120 90 8/1/2024
2.1.117 85 7/25/2024
2.1.116 105 7/25/2024
2.1.115 97 7/25/2024
2.1.114 101 7/25/2024
2.1.113 104 7/25/2024
2.1.112 96 7/25/2024
2.1.111 108 7/25/2024
2.1.110 106 7/25/2024
2.1.109 106 7/25/2024
2.1.108 98 7/25/2024
2.1.107 99 7/25/2024
2.1.106 111 7/24/2024
2.1.105 103 7/24/2024
2.1.103 116 7/24/2024
2.1.102 106 7/20/2024
2.1.101 97 7/20/2024
2.1.100 107 7/20/2024
2.1.99 106 7/20/2024
2.1.98 111 7/20/2024
2.1.97 103 7/20/2024
2.1.96 105 7/14/2024
2.1.95 98 7/14/2024
2.1.94 101 7/14/2024
2.1.93 81 7/14/2024
2.1.92 103 7/14/2024
2.1.91 100 7/14/2024
2.1.90 102 7/14/2024
2.1.89 103 7/14/2024
2.1.88 99 7/14/2024
2.1.87 93 7/14/2024
2.1.86 104 7/11/2024
2.1.85 102 7/10/2024
2.1.84 102 7/10/2024
2.1.83 102 7/10/2024
2.1.82 108 7/10/2024
2.1.81 102 7/10/2024
2.1.80 90 7/10/2024
2.1.79 109 7/10/2024
2.1.76 86 7/10/2024
2.1.75 110 7/10/2024
2.1.74 99 7/10/2024
2.1.73 102 7/10/2024
2.1.72 96 7/10/2024
2.1.71 109 7/10/2024
2.1.70 97 7/10/2024
2.1.69 94 7/10/2024
2.1.66 92 7/10/2024
2.1.65 113 7/10/2024
2.1.64 110 7/9/2024
2.1.61 76 7/9/2024
2.1.60 102 7/9/2024
2.1.59 99 7/9/2024
2.1.58 110 7/9/2024
2.1.57 106 7/9/2024
2.1.56 119 7/9/2024
2.1.55 127 7/9/2024
2.1.54 107 7/9/2024
2.1.53 109 7/9/2024
2.1.52 108 7/9/2024
2.1.51 107 7/9/2024
2.1.50 104 7/9/2024
2.1.49 94 7/9/2024
2.1.48 111 7/9/2024
2.1.47 98 7/9/2024
2.1.46 122 7/9/2024
2.1.45 120 7/8/2024
2.1.44 97 7/8/2024
2.1.43 112 7/8/2024
2.1.42 121 7/8/2024
2.1.41 103 7/8/2024
2.1.40 115 7/8/2024
2.1.39 100 7/8/2024
2.1.38 97 7/8/2024
2.1.37 121 7/7/2024
2.1.36 139 7/7/2024
2.1.35 115 7/7/2024
2.1.34 103 7/7/2024
2.1.33 130 7/3/2024
2.1.32 110 7/3/2024
2.1.31 132 7/3/2024
2.1.30 117 7/3/2024
2.1.29 116 7/3/2024
2.1.28 121 7/3/2024
2.1.27 112 7/3/2024
2.1.26 104 7/3/2024
2.1.25 110 7/3/2024
2.1.24 127 6/27/2024
2.1.23 136 6/27/2024
2.1.22 129 6/27/2024
2.1.21 128 6/27/2024
2.1.20 113 6/22/2024
2.1.19 118 6/22/2024
2.1.18 127 6/22/2024
2.1.17 119 6/22/2024
2.1.16 121 6/22/2024
2.1.15 124 6/16/2024
2.1.14 114 6/16/2024
2.1.13 162 6/15/2024
2.1.12 121 6/15/2024
2.1.11 102 6/15/2024
2.1.10 118 6/15/2024
2.1.9 129 6/15/2024
2.1.8 102 6/15/2024
2.1.7 123 6/15/2024
2.1.6 116 6/15/2024
2.1.5 96 6/15/2024
2.1.4 116 6/12/2024
2.1.3 106 6/12/2024