Soenneker.Utils.HttpClientCache 3.0.1239

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

// Install Soenneker.Utils.HttpClientCache as a Cake Tool
#tool nuget:?package=Soenneker.Utils.HttpClientCache&version=3.0.1239                

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.Utils.HttpClientCache

Providing thread-safe singleton HttpClients

Why?

'Long-lived' HttpClient static/singleton instances is the recommended use pattern in .NET. Avoid the unnecessary overhead of IHttpClientFactory, and definitely avoid creating a new HttpClient instance per request.

HttpClientCache provides a thread-safe singleton HttpClient instance per key via dependency injection. HttpClients are created lazily, and disposed on application shutdown (or manually if you want).

See Guidelines for using HttpClient

Installation

dotnet add package Soenneker.Utils.HttpClientCache

Usage

  1. Register IHttpClientCache within DI (Program.cs).
public static async Task Main(string[] args)
{
    ...
    builder.Services.AddHttpClientCache();
}
  1. Inject IHttpClientCache via constructor, and retrieve a fresh HttpClient.

Example:

public class TestClass
{
    IHttpClientCache _httpClientCache;

    public TestClass(IHttpClientCache httpClientCache)
    {
        _httpClientCache = httpClientCache;
    }

    public async ValueTask<string> GetGoogleSource()
    {
        HttpClient httpClient = await _httpClientCache.Get(nameof(TestClass));

        var response = await httpClient.GetAsync("https://www.google.com");
        response.EnsureSuccessStatusCode();

        var responseString = await response.Content.ReadAsStringAsync();
        return responseString;
    }
}
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (25)

Showing the top 5 NuGet packages that depend on Soenneker.Utils.HttpClientCache:

Package Downloads
Soenneker.Cosmos.Client

A utility library for Azure Cosmos client accessibility

Soenneker.Blob.Container

A utility library for Azure Blob storage container operations

Soenneker.Validators.Email.Disposable.Online

A validation module checking for disposable email addresses via online sources

Soenneker.Queue.Client

A utility library for Azure Queue (Storage) client accessibility

Soenneker.Blob.Service

A utility library for Azure Blob storage service client operations

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.1254 328 1/3/2025
3.0.1253 389 1/3/2025
3.0.1252 95 1/3/2025
3.0.1251 428 1/3/2025
3.0.1250 166 1/3/2025
3.0.1249 41 1/3/2025
3.0.1248 263 1/3/2025
3.0.1247 43 1/3/2025
3.0.1246 514 1/2/2025
3.0.1245 44 1/2/2025
3.0.1244 432 1/2/2025
3.0.1243 49 1/2/2025
3.0.1242 580 1/2/2025
3.0.1241 53 1/2/2025
3.0.1240 201 1/2/2025
3.0.1239 995 1/1/2025
3.0.1238 179 1/1/2025
3.0.1237 252 1/1/2025
3.0.1236 54 1/1/2025
3.0.1235 424 1/1/2025
3.0.1234 53 1/1/2025
3.0.1233 817 1/1/2025
3.0.1232 56 1/1/2025
3.0.1231 373 12/31/2024
3.0.1230 62 12/31/2024
3.0.1229 838 12/31/2024
3.0.1228 342 12/31/2024
3.0.1227 353 12/31/2024
3.0.1226 571 12/31/2024
3.0.1225 1,563 12/31/2024
3.0.1224 67 12/31/2024
3.0.1223 729 12/31/2024
3.0.1222 80 12/31/2024
3.0.1221 999 12/31/2024
3.0.1220 59 12/31/2024
3.0.1219 672 12/31/2024
3.0.1218 535 12/31/2024
3.0.1217 65 12/31/2024
3.0.1216 1,272 12/31/2024
3.0.1215 76 12/31/2024
3.0.1214 83 12/31/2024
3.0.1213 4,753 12/28/2024
3.0.1212 425 12/28/2024
3.0.1211 819 12/28/2024
3.0.1210 426 12/28/2024
3.0.1209 848 12/28/2024
3.0.1208 731 12/27/2024
3.0.1207 801 12/27/2024
3.0.1206 77 12/27/2024
3.0.1205 1,293 12/27/2024
3.0.1204 2,945 12/24/2024
3.0.1203 306 12/24/2024
3.0.1202 857 12/24/2024
3.0.1201 754 12/24/2024
3.0.1200 794 12/24/2024
3.0.1199 643 12/24/2024
3.0.1198 79 12/24/2024
3.0.1197 462 12/24/2024
3.0.1196 1,242 12/24/2024
3.0.1195 313 12/24/2024
3.0.1194 362 12/24/2024
3.0.1193 925 12/24/2024
3.0.1192 223 12/24/2024
3.0.1191 947 12/24/2024
3.0.1190 75 12/24/2024
3.0.1189 598 12/24/2024
3.0.1188 640 12/23/2024
3.0.1187 76 12/23/2024
3.0.1186 2,437 12/23/2024
3.0.1185 75 12/23/2024
3.0.1184 836 12/23/2024
3.0.1183 74 12/23/2024
3.0.1182 688 12/23/2024
3.0.1181 246 12/23/2024
3.0.1180 70 12/23/2024
3.0.1179 935 12/23/2024
3.0.1178 81 12/23/2024
3.0.1177 1,812 12/23/2024
3.0.1176 76 12/23/2024
3.0.1175 300 12/23/2024
3.0.1174 69 12/23/2024
3.0.1173 1,560 12/22/2024
3.0.1172 1,035 12/22/2024
3.0.1171 1,095 12/22/2024
3.0.1170 73 12/22/2024
3.0.1169 814 12/22/2024
3.0.1168 608 12/22/2024
3.0.1167 77 12/22/2024
3.0.1166 1,958 12/22/2024
3.0.1165 79 12/22/2024
3.0.1164 2,121 12/22/2024
3.0.1163 80 12/22/2024
3.0.1162 642 12/22/2024
3.0.1161 467 12/21/2024
3.0.1160 73 12/21/2024
3.0.1159 835 12/21/2024
3.0.1158 68 12/21/2024
3.0.1157 1,710 12/21/2024
3.0.1156 1,775 12/21/2024
3.0.1155 80 12/21/2024
3.0.1154 965 12/21/2024
3.0.1153 78 12/21/2024
3.0.1152 1,013 12/21/2024
3.0.1151 82 12/21/2024
3.0.1150 835 12/21/2024
3.0.1149 78 12/21/2024
3.0.1148 1,254 12/21/2024
3.0.1147 173 12/20/2024
3.0.1146 73 12/20/2024
3.0.1145 1,516 12/20/2024
3.0.1144 76 12/20/2024
3.0.1143 1,525 12/20/2024
3.0.1142 651 12/20/2024
3.0.1141 80 12/20/2024
3.0.1140 577 12/20/2024
3.0.1139 513 12/20/2024
3.0.1138 78 12/20/2024
3.0.1137 1,058 12/20/2024
3.0.1136 1,320 12/19/2024
3.0.1135 502 12/19/2024
3.0.1134 542 12/19/2024
3.0.1133 79 12/19/2024
3.0.1132 756 12/19/2024
3.0.1131 509 12/19/2024
3.0.1130 71 12/19/2024
3.0.1129 538 12/18/2024
3.0.1128 432 12/18/2024
3.0.1127 3,165 12/17/2024
3.0.1126 868 12/17/2024
3.0.1125 1,610 12/16/2024
3.0.1124 563 12/16/2024
3.0.1123 2,697 12/10/2024
3.0.1122 673 12/10/2024
3.0.1121 762 12/10/2024
3.0.1120 285 12/10/2024
3.0.1119 81 12/10/2024
3.0.1118 1,034 12/9/2024
3.0.1117 900 12/9/2024
3.0.1116 590 12/9/2024
3.0.1115 1,188 12/9/2024
3.0.1114 323 12/9/2024
3.0.1113 72 12/9/2024
3.0.1112 1,388 12/9/2024
3.0.1111 859 12/9/2024
3.0.1110 77 12/9/2024
3.0.1109 1,784 12/7/2024
3.0.1108 292 12/7/2024
3.0.1107 503 12/6/2024
3.0.1106 664 12/6/2024
3.0.1105 208 12/6/2024
3.0.1104 638 12/6/2024
3.0.1103 83 12/6/2024
3.0.1102 958 12/6/2024
3.0.1100 2,592 12/6/2024
3.0.1099 1,294 12/6/2024
3.0.1098 204 12/6/2024
3.0.1097 974 12/6/2024
3.0.1096 225 12/6/2024
3.0.1095 93 12/6/2024
3.0.1094 1,582 12/6/2024
3.0.1093 78 12/6/2024
3.0.1092 1,181 12/6/2024
3.0.1091 90 12/6/2024
3.0.1090 858 12/6/2024
3.0.1089 87 12/6/2024
3.0.1088 1,519 12/5/2024
3.0.1087 727 12/5/2024
3.0.1086 1,029 12/5/2024
3.0.1085 2,431 12/5/2024
3.0.1084 491 12/5/2024
3.0.1083 84 12/5/2024
3.0.1082 1,251 12/5/2024
3.0.1081 80 12/5/2024
3.0.1080 1,040 12/5/2024
3.0.1079 78 12/5/2024
3.0.1078 879 12/5/2024
3.0.1077 433 12/5/2024
3.0.1076 91 12/5/2024
3.0.1075 717 12/5/2024
3.0.1074 93 12/5/2024
3.0.1073 1,206 12/4/2024
3.0.1072 491 12/4/2024
3.0.1071 80 12/4/2024
3.0.1070 1,046 12/4/2024
3.0.1069 95 12/4/2024
3.0.1068 300 12/4/2024
3.0.1067 842 12/4/2024
3.0.1066 108 12/4/2024
3.0.1065 978 12/4/2024
3.0.1064 87 12/4/2024
3.0.1063 492 12/4/2024
3.0.1062 1,054 12/4/2024
3.0.1061 800 12/3/2024
3.0.1060 88 12/3/2024
3.0.1059 375 12/3/2024
3.0.1058 81 12/3/2024
3.0.1057 326 12/3/2024
3.0.1056 1,170 12/3/2024
3.0.1055 88 12/3/2024
3.0.1054 1,166 12/3/2024
3.0.1053 828 12/3/2024
3.0.1052 85 12/3/2024
3.0.1051 1,316 12/3/2024
3.0.1050 359 12/3/2024
3.0.1049 80 12/3/2024
3.0.1048 1,166 12/2/2024
3.0.1047 1,363 12/2/2024
3.0.1046 755 12/2/2024
3.0.1045 935 12/2/2024
3.0.1044 496 12/2/2024
3.0.1043 75 12/2/2024
3.0.1042 1,542 12/2/2024
3.0.1041 94 12/2/2024
3.0.1040 581 12/2/2024
3.0.1039 525 12/1/2024
3.0.1038 88 12/1/2024
3.0.1037 1,152 12/1/2024
3.0.1036 85 12/1/2024
3.0.1035 2,395 12/1/2024
3.0.1034 245 12/1/2024
3.0.1033 532 12/1/2024
3.0.1032 570 12/1/2024
3.0.1031 1,776 11/29/2024
3.0.1030 175 11/29/2024
3.0.1029 597 11/29/2024
3.0.1028 995 11/29/2024
3.0.1027 82 11/29/2024
3.0.1026 2,063 11/21/2024
3.0.1025 704 11/21/2024
3.0.1024 478 11/21/2024
3.0.1023 767 11/20/2024
3.0.1022 1,883 11/20/2024
3.0.1021 652 11/20/2024
3.0.1020 183 11/20/2024
3.0.1019 147 11/20/2024
3.0.1018 222 11/20/2024
3.0.1017 82 11/20/2024
3.0.1016 146 11/20/2024
3.0.1015 80 11/20/2024
3.0.1014 1,472 11/20/2024
3.0.1013 519 11/20/2024
3.0.1012 85 11/20/2024
3.0.1011 646 11/20/2024
3.0.1010 641 11/20/2024
3.0.1009 121 11/19/2024
3.0.1008 807 11/19/2024
3.0.1007 80 11/19/2024
3.0.1006 1,919 11/19/2024
3.0.1005 76 11/19/2024
3.0.1004 86 11/19/2024
3.0.1003 879 11/19/2024
3.0.1002 75 11/19/2024
3.0.1001 3,233 11/19/2024
3.0.1000 80 11/19/2024
3.0.999 3,143 11/15/2024
3.0.998 520 11/15/2024
3.0.997 727 11/14/2024
3.0.996 126 11/14/2024
3.0.995 78 11/14/2024
3.0.993 1,123 11/14/2024
3.0.992 86 11/14/2024
3.0.991 1,035 11/14/2024
3.0.990 113 11/14/2024
3.0.989 2,325 11/14/2024
3.0.988 89 11/14/2024
3.0.987 1,962 11/14/2024
3.0.986 94 11/14/2024
3.0.985 1,258 11/14/2024
3.0.984 332 11/14/2024
3.0.983 84 11/14/2024
3.0.982 758 11/14/2024
2.1.981 1,721 11/13/2024
2.1.980 2,097 11/13/2024
2.1.979 677 11/13/2024
2.1.978 760 11/13/2024
2.1.977 1,245 11/13/2024
2.1.976 85 11/13/2024
2.1.975 1,234 11/13/2024
2.1.974 93 11/13/2024
2.1.973 977 11/13/2024
2.1.972 333 11/12/2024
2.1.971 88 11/12/2024
2.1.970 1,828 11/12/2024
2.1.969 3,581 11/9/2024
2.1.968 825 11/9/2024
2.1.967 837 11/9/2024
2.1.966 93 11/9/2024
2.1.965 550 11/9/2024
2.1.964 109 11/9/2024
2.1.963 88 11/9/2024
2.1.962 992 11/8/2024
2.1.961 82 11/8/2024
2.1.960 248 11/8/2024
2.1.959 91 11/8/2024
2.1.958 94 11/8/2024
2.1.957 1,249 11/8/2024
2.1.956 3,240 11/8/2024
2.1.955 1,921 11/8/2024
2.1.954 84 11/8/2024
2.1.953 771 11/8/2024
2.1.952 4,133 11/6/2024
2.1.951 1,747 11/5/2024
2.1.950 1,446 11/1/2024
2.1.949 259 11/1/2024
2.1.948 1,215 11/1/2024
2.1.947 595 11/1/2024
2.1.946 2,472 10/29/2024
2.1.945 508 10/29/2024
2.1.944 80 10/29/2024
2.1.943 517 10/29/2024
2.1.942 620 10/29/2024
2.1.941 1,021 10/29/2024
2.1.939 1,633 10/29/2024
2.1.938 290 10/29/2024
2.1.937 79 10/29/2024
2.1.936 2,613 10/29/2024
2.1.935 77 10/29/2024
2.1.934 615 10/28/2024
2.1.933 1,230 10/28/2024
2.1.932 2,004 10/26/2024
2.1.931 239 10/26/2024
2.1.930 741 10/26/2024
2.1.929 963 10/26/2024
2.1.928 2,942 10/22/2024
2.1.927 647 10/22/2024
2.1.926 1,123 10/22/2024
2.1.925 506 10/22/2024
2.1.924 355 10/22/2024
2.1.923 798 10/22/2024
2.1.922 606 10/22/2024
2.1.921 77 10/22/2024
2.1.920 1,026 10/22/2024
2.1.919 2,056 10/18/2024
2.1.918 423 10/18/2024
2.1.917 684 10/17/2024
2.1.916 1,206 10/17/2024
2.1.915 79 10/17/2024
2.1.914 1,541 10/15/2024
2.1.913 526 10/15/2024
2.1.912 338 10/15/2024
2.1.911 775 10/15/2024
2.1.910 587 10/14/2024
2.1.909 83 10/14/2024
2.1.908 2,157 10/12/2024
2.1.907 452 10/12/2024
2.1.906 766 10/12/2024
2.1.905 754 10/11/2024
2.1.904 85 10/11/2024
2.1.903 1,243 10/11/2024
2.1.902 87 10/11/2024
2.1.901 1,967 10/9/2024
2.1.900 491 10/9/2024
2.1.899 1,191 10/9/2024
2.1.898 827 10/9/2024
2.1.897 806 10/9/2024
2.1.896 275 10/9/2024
2.1.895 87 10/9/2024
2.1.894 544 10/8/2024
2.1.893 864 10/8/2024
2.1.892 155 10/8/2024
2.1.891 1,108 10/8/2024
2.1.890 1,782 10/8/2024
2.1.889 90 10/8/2024
2.1.888 1,409 10/8/2024
2.1.887 1,451 10/4/2024
2.1.886 829 10/3/2024
2.1.885 927 10/3/2024
2.1.884 269 10/3/2024
2.1.883 605 10/3/2024
2.1.882 82 10/3/2024
2.1.881 960 10/3/2024
2.1.880 86 10/3/2024
2.1.879 535 10/3/2024
2.1.878 1,086 10/3/2024
2.1.877 404 10/3/2024
2.1.876 1,301 10/2/2024
2.1.875 648 10/2/2024
2.1.874 431 10/2/2024
2.1.873 972 10/2/2024
2.1.872 81 10/2/2024
2.1.871 90 10/2/2024
2.1.870 1,106 10/2/2024
2.1.869 539 10/2/2024
2.1.868 80 10/2/2024
2.1.867 343 10/2/2024
2.1.866 1,168 10/2/2024
2.1.865 109 10/2/2024
2.1.864 1,729 10/1/2024
2.1.863 736 10/1/2024
2.1.862 568 10/1/2024
2.1.861 905 10/1/2024
2.1.860 82 10/1/2024
2.1.859 660 10/1/2024
2.1.858 317 10/1/2024
2.1.857 83 10/1/2024
2.1.856 767 10/1/2024
2.1.855 92 10/1/2024
2.1.854 2,581 9/29/2024
2.1.853 269 9/29/2024
2.1.852 389 9/29/2024
2.1.851 700 9/29/2024
2.1.850 449 9/29/2024
2.1.849 810 9/29/2024
2.1.848 77 9/29/2024
2.1.847 550 9/29/2024
2.1.846 109 9/29/2024
2.1.845 988 9/29/2024
2.1.844 81 9/29/2024
2.1.843 2,160 9/27/2024
2.1.842 513 9/27/2024
2.1.841 637 9/27/2024
2.1.839 486 9/27/2024
2.1.838 90 9/27/2024
2.1.837 2,026 9/27/2024
2.1.836 832 9/27/2024
2.1.835 82 9/27/2024
2.1.834 1,107 9/27/2024
2.1.833 277 9/27/2024
2.1.832 99 9/27/2024
2.1.831 1,652 9/27/2024
2.1.830 438 9/27/2024
2.1.829 1,076 9/26/2024
2.1.828 1,231 9/26/2024
2.1.827 82 9/26/2024
2.1.826 1,342 9/26/2024
2.1.825 92 9/26/2024
2.1.824 616 9/26/2024
2.1.823 83 9/26/2024
2.1.822 373 9/26/2024
2.1.821 460 9/26/2024
2.1.820 1,151 9/26/2024
2.1.819 86 9/26/2024
2.1.818 1,472 9/26/2024
2.1.817 1,827 9/25/2024
2.1.816 1,548 9/23/2024
2.1.815 192 9/23/2024
2.1.814 419 9/23/2024
2.1.813 97 9/23/2024
2.1.812 671 9/23/2024
2.1.811 107 9/23/2024
2.1.810 637 9/23/2024
2.1.809 90 9/23/2024
2.1.808 676 9/23/2024
2.1.807 859 9/23/2024
2.1.806 95 9/23/2024
2.1.805 2,243 9/23/2024
2.1.804 1,049 9/23/2024
2.1.803 90 9/23/2024
2.1.802 1,184 9/23/2024
2.1.801 87 9/23/2024
2.1.800 1,181 9/23/2024
2.1.799 81 9/23/2024
2.1.798 613 9/23/2024
2.1.797 84 9/23/2024
2.1.796 3,120 9/18/2024
2.1.795 481 9/18/2024
2.1.794 743 9/18/2024
2.1.793 491 9/18/2024
2.1.792 580 9/18/2024
2.1.791 154 9/18/2024
2.1.790 423 9/17/2024
2.1.789 99 9/17/2024
2.1.788 596 9/17/2024
2.1.787 100 9/17/2024
2.1.786 653 9/17/2024
2.1.785 150 9/17/2024
2.1.784 1,186 9/17/2024
2.1.783 549 9/17/2024
2.1.782 839 9/17/2024
2.1.781 100 9/17/2024
2.1.780 122 9/17/2024
2.1.779 100 9/17/2024
2.1.778 1,160 9/17/2024
2.1.777 487 9/17/2024
2.1.776 512 9/17/2024
2.1.775 99 9/17/2024
2.1.774 1,267 9/17/2024
2.1.773 4,450 9/16/2024
2.1.772 609 9/16/2024
2.1.771 385 9/16/2024
2.1.770 681 9/16/2024
2.1.769 622 9/16/2024
2.1.768 1,971 9/12/2024
2.1.767 497 9/12/2024
2.1.766 585 9/12/2024
2.1.765 1,123 9/12/2024
2.1.764 666 9/12/2024
2.1.763 105 9/12/2024
2.1.762 1,146 9/11/2024
2.1.761 557 9/11/2024
2.1.760 904 9/11/2024
2.1.759 101 9/11/2024
2.1.757 2,085 9/11/2024
2.1.756 615 9/11/2024
2.1.754 298 9/11/2024
2.1.753 368 9/11/2024
2.1.752 373 9/11/2024
2.1.751 639 9/11/2024
2.1.750 111 9/11/2024
2.1.749 1,490 9/11/2024
2.1.748 3,338 9/10/2024
2.1.747 1,770 9/10/2024
2.1.746 309 9/10/2024
2.1.745 244 9/10/2024
2.1.744 575 9/10/2024
2.1.743 96 9/10/2024
2.1.742 644 9/10/2024
2.1.741 98 9/10/2024
2.1.740 813 9/10/2024
2.1.738 316 9/10/2024
2.1.737 1,228 9/9/2024
2.1.736 93 9/9/2024
2.1.734 1,278 9/9/2024
2.1.733 96 9/9/2024
2.1.730 2,044 9/9/2024
2.1.729 94 9/9/2024
2.1.728 1,745 9/9/2024
2.1.727 2,078 9/9/2024
2.1.726 2,738 9/7/2024
2.1.725 603 9/7/2024
2.1.724 718 9/7/2024
2.1.723 969 9/6/2024
2.1.722 1,538 9/6/2024
2.1.721 929 9/6/2024
2.1.720 196 9/6/2024
2.1.719 910 9/6/2024
2.1.718 121 9/6/2024
2.1.717 433 9/6/2024
2.1.716 1,471 9/5/2024
2.1.715 97 9/5/2024
2.1.714 679 9/5/2024
2.1.713 102 9/5/2024
2.1.712 973 9/5/2024
2.1.711 249 9/5/2024
2.1.710 102 9/5/2024
2.1.709 2,804 9/5/2024
2.1.708 729 9/5/2024
2.1.707 105 9/5/2024
2.1.706 791 9/5/2024
2.1.705 1,115 9/5/2024
2.1.704 679 9/4/2024
2.1.703 102 9/4/2024
2.1.702 600 9/4/2024
2.1.701 98 9/4/2024
2.1.700 2,583 9/4/2024
2.1.699 416 9/4/2024
2.1.698 838 9/4/2024
2.1.697 661 9/3/2024
2.1.696 300 9/3/2024
2.1.695 102 9/3/2024
2.1.694 1,550 9/3/2024
2.1.693 1,689 9/3/2024
2.1.692 389 9/3/2024
2.1.691 697 9/3/2024
2.1.690 95 9/3/2024
2.1.689 955 9/3/2024
2.1.688 91 9/3/2024
2.1.687 429 9/3/2024
2.1.686 2,821 8/30/2024
2.1.685 285 8/29/2024
2.1.684 555 8/29/2024
2.1.683 1,031 8/29/2024
2.1.682 606 8/29/2024
2.1.681 90 8/29/2024
2.1.680 1,527 8/26/2024
2.1.679 557 8/26/2024
2.1.678 467 8/26/2024
2.1.677 1,363 8/26/2024
2.1.676 112 8/26/2024
2.1.675 1,432 8/21/2024
2.1.674 987 8/21/2024
2.1.673 614 8/21/2024
2.1.672 712 8/21/2024
2.1.671 120 8/21/2024
2.1.670 494 8/21/2024
2.1.669 123 8/21/2024
2.1.668 1,367 8/20/2024
2.1.667 129 8/20/2024
2.1.666 1,256 8/20/2024
2.1.665 114 8/20/2024
2.1.664 338 8/20/2024
2.1.663 1,200 8/20/2024
2.1.662 107 8/20/2024
2.1.661 329 8/20/2024
2.1.660 108 8/20/2024
2.1.659 1,396 8/20/2024
2.1.658 1,646 8/20/2024
2.1.657 903 8/19/2024
2.1.656 116 8/19/2024
2.1.655 1,789 8/15/2024
2.1.654 488 8/15/2024
2.1.653 510 8/15/2024
2.1.652 614 8/15/2024
2.1.651 770 8/15/2024
2.1.650 936 8/15/2024
2.1.649 2,359 8/14/2024
2.1.648 115 8/14/2024
2.1.647 763 8/14/2024
2.1.646 447 8/14/2024
2.1.645 218 8/13/2024
2.1.644 2,352 8/7/2024
2.1.643 274 8/7/2024
2.1.642 649 8/7/2024
2.1.641 392 8/7/2024
2.1.640 1,406 8/6/2024
2.1.639 165 8/6/2024
2.1.638 84 8/6/2024
2.1.637 882 8/6/2024
2.1.636 1,277 8/1/2024
2.1.635 600 8/1/2024
2.1.634 453 8/1/2024
2.1.633 268 8/1/2024
2.1.632 76 8/1/2024
2.1.631 637 8/1/2024
2.1.630 76 8/1/2024
2.1.629 863 8/1/2024
2.1.628 2,348 7/25/2024
2.1.627 353 7/25/2024
2.1.626 580 7/25/2024
2.1.625 627 7/25/2024
2.1.624 76 7/25/2024
2.1.623 445 7/25/2024
2.1.622 232 7/25/2024
2.1.621 293 7/25/2024
2.1.620 519 7/25/2024
2.1.619 152 7/24/2024
2.1.618 474 7/24/2024
2.1.617 182 7/24/2024
2.1.616 314 7/24/2024
2.1.615 4,242 7/20/2024
2.1.614 80 7/20/2024
2.1.612 507 7/20/2024
2.1.611 648 7/20/2024
2.1.610 543 7/20/2024
2.1.609 2,094 7/14/2024
2.1.608 440 7/14/2024
2.1.607 432 7/14/2024
2.1.606 843 7/14/2024
2.1.605 465 7/14/2024
2.1.604 87 7/14/2024
2.1.603 1,101 7/14/2024
2.1.602 207 7/14/2024
2.1.601 79 7/14/2024
2.1.600 2,059 7/10/2024
2.1.599 226 7/10/2024
2.1.598 207 7/10/2024
2.1.597 198 7/10/2024
2.1.596 181 7/10/2024
2.1.594 384 7/10/2024
2.1.593 1,063 7/10/2024
2.1.592 81 7/10/2024
2.1.591 695 7/10/2024
2.1.590 113 7/10/2024
2.1.589 80 7/10/2024
2.1.588 1,569 7/10/2024
2.1.587 68 7/10/2024
2.1.586 581 7/10/2024
2.1.585 87 7/10/2024
2.1.584 84 7/10/2024
2.1.583 91 7/10/2024
2.1.581 281 7/10/2024
2.1.580 86 7/10/2024
2.1.579 1,136 7/9/2024
2.1.578 79 7/9/2024
2.1.576 973 7/9/2024
2.1.575 81 7/9/2024
2.1.574 166 7/9/2024
2.1.573 2,926 7/9/2024
2.1.572 84 7/9/2024
2.1.571 818 7/9/2024
2.1.570 1,388 7/9/2024
2.1.569 151 7/9/2024
2.1.568 1,082 7/9/2024
2.1.567 958 7/9/2024
2.1.566 84 7/9/2024
2.1.565 714 7/9/2024
2.1.564 89 7/9/2024
2.1.563 978 7/9/2024
2.1.562 87 7/9/2024
2.1.560 606 7/8/2024
2.1.559 1,409 7/8/2024
2.1.558 97 7/8/2024
2.1.557 900 7/8/2024
2.1.556 1,212 7/8/2024
2.1.555 208 7/8/2024
2.1.554 898 7/8/2024
2.1.553 220 7/8/2024
2.1.552 98 7/8/2024
2.1.551 1,035 7/8/2024
2.1.550 746 7/7/2024
2.1.549 85 7/7/2024
2.1.548 638 7/7/2024
2.1.547 97 7/7/2024
2.1.546 203 7/7/2024
2.1.545 96 7/7/2024
2.1.544 1,108 7/7/2024
2.1.543 93 7/7/2024
2.1.542 1,106 7/7/2024
2.1.541 560 7/7/2024
2.1.540 2,103 7/5/2024
2.1.539 1,109 7/4/2024
2.1.538 1,055 7/3/2024
2.1.537 667 7/3/2024
2.1.536 461 7/3/2024
2.1.535 314 7/3/2024
2.1.534 1,306 7/3/2024
2.1.533 129 7/3/2024
2.1.532 1,082 7/3/2024
2.1.531 82 7/3/2024
2.1.530 746 7/3/2024
2.1.529 1,296 7/2/2024
2.1.528 1,258 6/30/2024
2.1.527 1,228 6/28/2024
2.1.526 585 6/27/2024
2.1.525 664 6/27/2024
2.1.524 755 6/27/2024
2.1.523 1,223 6/22/2024
2.1.522 883 6/22/2024
2.1.521 756 6/22/2024
2.1.520 103 6/22/2024
2.1.519 1,405 6/16/2024
2.1.518 518 6/16/2024
2.1.517 517 6/15/2024
2.1.516 875 6/15/2024
2.1.515 436 6/15/2024
2.1.514 446 6/15/2024
2.1.513 98 6/15/2024
2.1.512 1,339 6/15/2024
2.1.511 96 6/15/2024
2.1.510 1,073 6/15/2024
2.1.509 918 6/15/2024
2.1.508 438 6/14/2024
2.1.507 92 6/14/2024
2.1.506 3,144 6/4/2024
2.1.505 1,229 6/2/2024
2.1.504 180 6/2/2024
2.1.503 308 6/2/2024
2.1.502 307 6/1/2024
2.1.501 363 6/1/2024
2.1.500 654 6/1/2024
2.1.499 97 6/1/2024
2.1.498 812 6/1/2024
2.1.497 234 6/1/2024
2.1.496 102 6/1/2024
2.1.495 904 6/1/2024
2.1.494 96 6/1/2024
2.1.493 2,159 5/31/2024
2.1.492 604 5/31/2024
2.1.491 402 5/31/2024
2.1.490 600 5/31/2024
2.1.489 363 5/31/2024
2.1.488 823 5/31/2024
2.1.487 1,292 5/29/2024
2.1.486 503 5/29/2024
2.1.485 711 5/29/2024
2.1.484 606 5/29/2024
2.1.483 99 5/29/2024
2.1.482 1,424 5/28/2024
2.1.481 415 5/28/2024
2.1.480 418 5/28/2024
2.1.479 453 5/28/2024
2.1.478 75 5/28/2024
2.1.477 983 5/28/2024
2.1.476 75 5/28/2024
2.1.475 347 5/28/2024
2.1.474 1,311 5/27/2024
2.1.473 1,285 5/27/2024
2.1.472 488 5/27/2024
2.1.471 535 5/27/2024
2.1.470 902 5/26/2024
2.1.469 84 5/26/2024
2.1.468 1,229 5/26/2024
2.1.467 151 5/26/2024
2.1.466 413 5/26/2024
2.1.465 674 5/26/2024
2.1.464 1,099 5/26/2024
2.1.463 84 5/26/2024
2.1.462 725 5/26/2024
2.1.461 89 5/26/2024
2.1.460 246 5/25/2024
2.1.459 353 5/25/2024
2.1.458 85 5/25/2024
2.1.457 1,135 5/25/2024
2.1.456 88 5/25/2024
2.1.455 1,125 5/25/2024
2.1.454 90 5/25/2024
2.1.453 1,452 5/25/2024
2.1.452 121 5/25/2024
2.1.451 568 5/25/2024
2.1.450 83 5/25/2024
2.1.449 476 5/25/2024
2.1.448 1,867 5/23/2024
2.1.447 591 5/23/2024
2.1.446 646 5/23/2024
2.1.445 70 5/23/2024
2.1.444 686 5/23/2024
2.1.443 93 5/23/2024
2.1.442 604 5/23/2024
2.1.441 87 5/23/2024
2.1.440 915 5/23/2024
2.1.439 96 5/23/2024
2.1.438 646 5/22/2024
2.1.437 901 5/22/2024
2.1.436 92 5/22/2024
2.1.435 650 5/22/2024
2.1.434 98 5/22/2024
2.1.433 95 5/22/2024
2.1.432 1,060 5/22/2024
2.1.431 716 5/22/2024
2.1.430 1,225 5/19/2024
2.1.429 480 5/18/2024
2.1.428 516 5/18/2024
2.1.427 575 5/18/2024
2.1.426 381 5/18/2024
2.1.425 114 5/18/2024
2.1.424 827 5/17/2024
2.1.423 110 5/17/2024
2.1.422 529 5/17/2024
2.1.421 1,431 5/17/2024
2.1.420 108 5/17/2024
2.1.419 921 5/16/2024
2.1.418 428 5/16/2024
2.1.417 761 5/16/2024
2.1.416 114 5/16/2024
2.1.415 759 5/15/2024
2.1.414 102 5/15/2024
2.1.413 807 5/15/2024
2.1.412 1,373 5/14/2024
2.1.411 114 5/14/2024
2.1.410 1,610 5/13/2024
2.1.409 616 5/13/2024
2.1.408 490 5/13/2024
2.1.407 378 5/13/2024
2.1.406 84 5/13/2024
2.1.405 1,855 5/3/2024
2.1.404 887 4/30/2024
2.1.403 194 4/30/2024
2.1.402 468 4/30/2024
2.1.401 529 4/30/2024
2.1.400 734 4/30/2024
2.1.399 657 4/30/2024
2.1.398 461 4/29/2024
2.1.397 347 4/29/2024
2.1.396 107 4/29/2024
2.1.395 1,501 4/29/2024
2.1.394 498 4/29/2024
2.1.393 1,060 4/29/2024
2.1.392 298 4/28/2024
2.1.391 106 4/28/2024
2.1.390 826 4/28/2024
2.1.389 121 4/28/2024
2.1.388 916 4/28/2024
2.1.387 597 4/28/2024
2.1.386 110 4/28/2024
2.1.385 925 4/28/2024
2.1.384 104 4/28/2024
2.1.383 635 4/28/2024
2.1.382 104 4/28/2024
2.1.381 1,555 4/28/2024
2.1.380 823 4/27/2024
2.1.379 112 4/27/2024
2.1.378 111 4/27/2024
2.1.377 2,076 4/20/2024
2.1.376 793 4/20/2024
2.1.375 698 4/19/2024
2.1.374 361 4/19/2024
2.1.373 102 4/19/2024
2.1.372 1,355 4/19/2024
2.1.371 698 4/19/2024
2.1.370 684 4/19/2024
2.1.369 475 4/19/2024
2.1.368 160 4/18/2024
2.1.367 108 4/18/2024
2.1.366 1,493 4/15/2024
2.1.365 581 4/14/2024
2.1.364 672 4/13/2024
2.1.363 766 4/12/2024
2.1.362 108 4/12/2024
2.1.361 605 4/12/2024
2.1.360 346 4/12/2024
2.1.359 591 4/12/2024
2.1.358 110 4/12/2024
2.1.357 942 4/12/2024
2.1.356 125 4/12/2024
2.1.355 1,000 4/12/2024
2.1.354 114 4/12/2024
2.1.353 399 4/11/2024
2.1.352 595 4/11/2024
2.1.351 104 4/11/2024
2.1.350 813 4/10/2024
2.1.349 108 4/10/2024
2.1.348 791 4/9/2024
2.1.347 104 4/9/2024
2.1.346 1,683 4/2/2024
2.1.345 287 4/2/2024
2.1.344 394 4/1/2024
2.1.343 163 4/1/2024
2.1.342 1,084 3/29/2024
2.1.341 110 3/29/2024
2.1.340 890 3/25/2024
2.1.339 97 3/25/2024
2.1.338 771 3/25/2024
2.1.337 1,074 3/20/2024
2.1.336 116 3/20/2024
2.1.335 1,210 3/19/2024
2.1.334 117 3/19/2024
2.1.333 429 3/19/2024
2.1.332 440 3/19/2024
2.1.331 739 3/18/2024
2.1.330 108 3/18/2024
2.1.329 719 3/18/2024
2.1.328 740 3/16/2024
2.1.327 433 3/15/2024
2.1.326 912 3/13/2024
2.1.325 518 3/13/2024
2.1.324 155 3/13/2024
2.1.323 139 3/13/2024
2.1.322 712 3/13/2024
2.1.321 121 3/13/2024
2.1.320 410 3/13/2024
2.1.319 110 3/13/2024
2.1.318 109 3/13/2024
2.1.317 423 3/12/2024
2.1.316 116 3/12/2024
2.1.315 488 3/12/2024
2.1.314 596 3/12/2024
2.1.313 643 3/12/2024
2.1.312 426 3/11/2024
2.1.311 870 3/11/2024
2.1.310 381 3/11/2024
2.1.309 678 3/10/2024
2.1.308 113 3/10/2024
2.1.307 872 3/8/2024
2.1.306 253 3/8/2024
2.1.305 559 3/8/2024
2.1.304 116 3/8/2024
2.1.303 578 3/8/2024
2.1.302 106 3/8/2024
2.1.301 1,022 3/6/2024
2.1.300 123 3/6/2024
2.1.299 902 3/4/2024
2.1.298 540 3/4/2024
2.1.297 441 3/4/2024
2.1.296 133 3/4/2024
2.1.295 1,168 3/3/2024
2.1.294 252 3/2/2024
2.1.293 598 3/2/2024
2.1.292 116 3/2/2024
2.1.291 1,948 2/29/2024
2.1.290 412 2/29/2024
2.1.289 107 2/29/2024
2.1.288 245 2/29/2024
2.1.287 106 2/29/2024
2.1.286 682 2/29/2024
2.1.285 1,212 2/26/2024
2.1.284 117 2/26/2024
2.1.283 527 2/25/2024
2.1.282 184 2/25/2024
2.1.281 801 2/23/2024
2.1.280 471 2/23/2024
2.1.279 459 2/22/2024
2.1.278 229 2/22/2024
2.1.277 331 2/22/2024
2.1.276 115 2/22/2024
2.1.275 231 2/21/2024
2.1.274 120 2/21/2024
2.1.273 523 2/21/2024
2.1.272 133 2/21/2024
2.1.271 119 2/21/2024
2.1.270 541 2/21/2024
2.1.269 313 2/21/2024
2.1.268 120 2/21/2024
2.1.267 263 2/21/2024
2.1.266 108 2/21/2024
2.1.265 291 2/21/2024
2.1.264 109 2/21/2024
2.1.263 399 2/21/2024
2.1.262 539 2/20/2024
2.1.261 324 2/20/2024
2.1.260 143 2/20/2024
2.1.259 226 2/20/2024
2.1.258 455 2/20/2024
2.1.257 252 2/20/2024
2.1.256 321 2/19/2024
2.1.255 470 2/19/2024
2.1.254 102 2/19/2024
2.1.253 719 2/17/2024
2.1.252 106 2/17/2024
2.1.251 306 2/17/2024
2.1.250 432 2/16/2024
2.1.249 100 2/16/2024
2.1.248 337 2/16/2024
2.1.247 304 2/16/2024
2.1.246 111 2/16/2024
2.1.245 376 2/16/2024
2.1.244 106 2/16/2024
2.1.243 110 2/16/2024
2.1.242 378 2/16/2024
2.1.241 116 2/16/2024
2.1.240 1,002 2/13/2024
2.1.239 119 2/13/2024
2.1.238 604 2/13/2024
2.1.237 441 2/13/2024
2.1.236 209 2/13/2024
2.1.235 105 2/13/2024
2.1.234 176 2/13/2024
2.1.233 450 2/13/2024
2.1.232 119 2/13/2024
2.1.231 563 2/12/2024
2.1.230 387 2/12/2024
2.1.229 137 2/11/2024
2.1.228 122 2/11/2024
2.1.227 552 2/11/2024
2.1.226 290 2/11/2024
2.1.225 351 2/11/2024
2.1.224 244 2/11/2024
2.1.223 905 2/10/2024
2.1.222 200 2/10/2024
2.1.221 279 2/9/2024
2.1.220 304 2/9/2024
2.1.219 489 2/9/2024
2.1.218 358 2/9/2024
2.1.217 459 2/9/2024
2.1.216 118 2/9/2024
2.1.215 328 2/8/2024
2.1.214 431 2/8/2024
2.1.213 125 2/8/2024
2.1.212 337 2/8/2024
2.1.211 172 2/8/2024
2.1.210 549 2/8/2024
2.1.209 148 2/8/2024
2.1.208 655 2/7/2024
2.1.207 146 2/7/2024
2.1.206 153 2/7/2024
2.1.205 433 2/7/2024
2.1.204 298 2/7/2024
2.1.203 113 2/7/2024
2.1.202 290 2/7/2024
2.1.201 125 2/7/2024
2.1.200 440 2/6/2024
2.1.199 121 2/6/2024
2.1.198 849 2/5/2024
2.1.197 114 2/5/2024
2.1.196 535 2/4/2024
2.1.195 188 2/4/2024
2.1.194 751 2/2/2024
2.1.193 117 2/2/2024
2.1.192 678 1/31/2024
2.1.191 121 1/31/2024
2.1.190 532 1/30/2024
2.1.189 460 1/29/2024
2.1.188 364 1/29/2024
2.1.187 110 1/29/2024
2.1.186 111 1/29/2024
2.1.185 424 1/29/2024
2.1.184 281 1/29/2024
2.1.183 100 1/29/2024
2.1.182 294 1/28/2024
2.1.181 116 1/28/2024
2.1.180 234 1/28/2024
2.1.179 419 1/28/2024
2.1.178 114 1/28/2024
2.1.177 237 1/28/2024
2.1.176 282 1/28/2024
2.1.175 109 1/28/2024
2.1.174 757 1/28/2024
2.1.173 173 1/27/2024
2.1.172 110 1/27/2024
2.1.171 492 1/27/2024
2.1.170 110 1/27/2024
2.1.169 213 1/27/2024
2.1.168 119 1/27/2024
2.1.167 459 1/27/2024
2.1.166 109 1/27/2024
2.1.165 479 1/27/2024
2.1.164 110 1/27/2024
2.1.163 216 1/27/2024
2.1.162 130 1/26/2024
2.1.161 102 1/26/2024
2.1.160 670 1/26/2024
2.1.159 119 1/26/2024
2.1.158 464 1/26/2024
2.1.157 102 1/26/2024
2.1.156 222 1/26/2024
2.1.155 217 1/26/2024
2.1.154 106 1/26/2024
2.1.153 175 1/26/2024
2.1.152 102 1/26/2024
2.1.151 624 1/25/2024
2.1.150 120 1/25/2024
2.1.149 317 1/25/2024
2.1.148 112 1/25/2024
2.1.147 618 1/25/2024
2.1.146 189 1/25/2024
2.1.145 114 1/25/2024
2.1.144 322 1/25/2024
2.1.143 746 1/19/2024
2.1.142 118 1/19/2024
2.1.141 636 1/15/2024
2.1.140 150 1/15/2024
2.1.139 132 1/15/2024
2.1.138 608 1/15/2024
2.1.137 134 1/15/2024
2.1.136 269 1/15/2024
2.1.135 135 1/15/2024
2.1.134 452 1/15/2024
2.1.133 267 1/15/2024
2.1.132 773 1/14/2024
2.1.131 114 1/14/2024
2.1.130 602 1/13/2024
2.1.129 114 1/13/2024
2.1.128 608 1/12/2024
2.1.127 141 1/12/2024
2.1.126 578 1/11/2024
2.1.125 417 1/11/2024
2.1.124 742 1/8/2024
2.1.123 312 1/7/2024
2.1.122 536 1/5/2024
2.1.121 279 1/5/2024
2.1.120 121 1/5/2024
2.1.119 440 1/5/2024
2.1.118 469 1/5/2024
2.1.117 129 1/5/2024
2.1.116 648 1/3/2024
2.1.115 159 1/3/2024
2.1.114 427 1/1/2024
2.1.113 177 1/1/2024
2.1.112 754 12/30/2023
2.1.111 293 12/28/2023
2.1.110 207 12/28/2023
2.1.109 265 12/28/2023
2.1.108 238 12/28/2023
2.1.107 147 12/28/2023
2.1.106 537 12/28/2023
2.1.105 204 12/27/2023
2.1.104 131 12/27/2023
2.1.103 158 12/27/2023
2.1.102 126 12/27/2023
2.1.101 693 12/25/2023
2.1.100 118 12/25/2023
2.1.99 259 12/25/2023
2.1.98 133 12/25/2023
2.1.97 427 12/25/2023
2.1.96 315 12/25/2023
2.1.95 181 12/25/2023
2.1.94 126 12/25/2023
2.1.93 157 12/25/2023
2.1.92 151 12/25/2023
2.1.91 640 12/24/2023
2.1.90 221 12/24/2023
2.1.89 385 12/23/2023
2.1.88 176 12/23/2023
2.1.87 129 12/23/2023
2.1.86 251 12/23/2023
2.1.85 130 12/23/2023
2.1.84 431 12/23/2023
2.1.83 128 12/23/2023
2.1.82 426 12/23/2023
2.1.81 132 12/23/2023
2.1.80 256 12/23/2023
2.1.79 537 12/19/2023
2.1.78 124 12/19/2023
2.1.77 214 12/19/2023
2.1.76 941 12/11/2023
2.1.75 265 12/11/2023
2.1.74 281 12/10/2023
2.1.73 215 12/10/2023
2.1.72 153 12/10/2023
2.1.71 509 12/10/2023
2.1.70 173 12/9/2023
2.1.69 253 12/9/2023
2.1.68 265 12/9/2023
2.1.67 156 12/9/2023
2.1.66 167 12/9/2023
2.1.65 215 12/9/2023
2.1.64 130 12/9/2023
2.1.63 345 12/9/2023
2.1.62 522 12/6/2023
2.1.61 216 12/6/2023
2.1.60 254 12/6/2023
2.1.59 170 12/6/2023
2.1.58 282 12/5/2023
2.1.57 267 12/5/2023
2.1.56 186 12/5/2023
2.1.55 214 12/5/2023
2.1.54 205 12/5/2023
2.1.53 153 12/5/2023
2.1.52 227 12/5/2023
2.1.51 159 12/4/2023
2.1.50 138 12/4/2023
2.1.49 426 12/4/2023
2.1.48 136 12/4/2023
2.1.47 134 12/4/2023
2.1.46 385 11/28/2023
2.1.45 163 11/27/2023
2.1.44 206 11/27/2023
2.1.43 147 11/26/2023
2.1.42 248 11/23/2023
2.1.41 138 11/23/2023
2.1.40 329 11/23/2023
2.1.39 285 11/23/2023
2.1.38 219 11/23/2023
2.1.37 151 11/23/2023
2.1.36 171 11/23/2023
2.1.35 426 11/22/2023
2.1.34 194 11/20/2023
2.1.33 212 11/20/2023
2.1.32 277 11/20/2023
2.1.31 141 11/20/2023
2.1.30 303 11/19/2023
2.1.29 130 11/19/2023
2.1.28 170 11/19/2023
2.1.27 147 11/19/2023
2.1.26 243 11/19/2023
2.1.25 142 11/19/2023
2.1.24 158 11/19/2023
2.1.23 134 11/19/2023
2.1.22 137 11/19/2023
2.1.21 320 11/18/2023
2.1.20 154 11/18/2023
2.1.19 156 11/18/2023
2.1.18 135 11/18/2023
2.1.17 132 11/18/2023
2.1.16 145 11/17/2023
2.1.15 135 11/17/2023
2.1.14 141 11/17/2023
2.1.13 149 11/17/2023
2.1.12 167 11/17/2023
2.1.11 122 11/17/2023
2.1.10 138 11/17/2023
2.1.9 142 11/17/2023
2.1.8 155 11/17/2023
2.1.7 145 11/17/2023
2.1.6 168 11/17/2023
2.1.5 144 11/17/2023
2.1.4 145 11/16/2023
2.1.3 141 11/16/2023
2.0.37 838 11/15/2023
2.0.36 139 11/15/2023
2.0.35 144 11/15/2023
2.0.34 140 11/15/2023
1.0.33 144 11/14/2023
1.0.32 134 11/14/2023
1.0.31 350 11/13/2023
1.0.30 135 11/13/2023
1.0.29 172 11/10/2023
1.0.28 136 11/10/2023
1.0.27 139 11/9/2023
1.0.26 134 11/9/2023
1.0.25 135 11/9/2023
1.0.24 136 11/7/2023
1.0.23 131 11/7/2023
1.0.22 129 11/6/2023
1.0.21 138 11/6/2023
1.0.20 157 11/3/2023
1.0.19 147 11/3/2023
1.0.18 156 11/2/2023
1.0.17 145 11/2/2023
1.0.16 154 11/1/2023
1.0.15 143 11/1/2023
1.0.14 183 10/26/2023
1.0.13 157 10/26/2023
1.0.12 173 10/19/2023
1.0.11 172 10/19/2023
1.0.10 173 10/18/2023
1.0.9 170 10/18/2023
1.0.8 167 10/17/2023
1.0.7 156 10/17/2023
1.0.6 189 10/16/2023
1.0.5 183 10/16/2023
1.0.4 183 10/13/2023
1.0.3 176 10/13/2023
1.0.2 175 10/12/2023
1.0.1 198 10/1/2023