Soenneker.Utils.MemoryStream 3.0.1281

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Utils.MemoryStream --version 3.0.1281
                    
NuGet\Install-Package Soenneker.Utils.MemoryStream -Version 3.0.1281
                    
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.MemoryStream" Version="3.0.1281" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.MemoryStream" Version="3.0.1281" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Utils.MemoryStream" />
                    
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.Utils.MemoryStream --version 3.0.1281
                    
#r "nuget: Soenneker.Utils.MemoryStream, 3.0.1281"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Soenneker.Utils.MemoryStream@3.0.1281
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Utils.MemoryStream&version=3.0.1281
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.MemoryStream&version=3.0.1281
                    
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.Utils.MemoryStream

An easy modern MemoryStream utility

A library for management and simple access of RecyclableMemoryStreamManager

Installation

dotnet add package Soenneker.Utils.MemoryStream

Usage

  1. Register the interop within DI (Program.cs).
public static async Task Main(string[] args)
{
    ...
    builder.Services.AddMemoryStreamUtil();
}
  1. Inject IMemoryStreamUtil wherever you need MemoryStream services

  2. Retrieve a fresh MemoryStream from

Example:

public class TestClass{

    IMemoryStreamUtil _memoryStreamUtil;

    public TestClass(IMemoryStreamUtil memoryStreamUtil)
    {
        _memoryStreamUtil = memoryStreamUtil;
    }

    public async ValueTask<MemoryStream> ReadFileIntoMemoryStream(string path)
    {
        MemoryStream memoryStream = await _memoryStreamUtil.Get(); // .GetSync() is also available

        FileStream fileStream = File.OpenRead(path);

        await fileStream.CopyToAsync(memoryStream);
    
        return memoryStream;
    }
}
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 (7)

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

Package Downloads
Soenneker.Utils.File

A utility library encapsulating asynchronous file IO operations

Soenneker.Cosmos.Serializer

A fast, lightweight JSON (de)serializer for Azure Cosmos DB

Soenneker.Blob.Download

A utility library for Azure Blob download operations

Soenneker.Blob.Upload

A utility library for Azure Blob upload operations

Soenneker.Zelos.Database

A lightweight, thread-safe asynchronous JSON-based document database

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.1282 465 9/16/2025
3.0.1281 3,083 9/9/2025
3.0.1280 1,028 9/9/2025
3.0.1279 930 9/3/2025
3.0.1278 406 9/3/2025
3.0.1277 140 9/3/2025
3.0.1276 2,342 9/3/2025
3.0.1275 137 9/3/2025
3.0.1274 3,902 8/16/2025
3.0.1273 3,674 8/11/2025
3.0.1272 327 8/11/2025
3.0.1271 123 8/11/2025
3.0.1270 152 8/11/2025
3.0.1269 130 8/11/2025
3.0.1268 124 8/11/2025
3.0.1267 1,097 8/11/2025
3.0.1266 4,199 8/5/2025
3.0.1265 426 8/5/2025
3.0.1264 521 7/29/2025
3.0.1263 4,022 7/9/2025
3.0.1262 823 7/8/2025
3.0.1261 4,211 7/2/2025
3.0.1260 1,174 7/1/2025
3.0.1259 1,967 6/28/2025
3.0.1258 1,153 6/28/2025
3.0.1257 77 6/28/2025
3.0.1256 106 6/27/2025
3.0.1255 76 6/27/2025
3.0.1254 627 6/27/2025
3.0.1253 3,062 6/24/2025
3.0.1252 3,136 6/11/2025
3.0.1251 1,790 6/10/2025
3.0.1250 412 6/10/2025
3.0.1249 2,996 6/2/2025
3.0.1248 1,912 5/27/2025
3.0.1247 159 5/27/2025
3.0.1246 519 5/27/2025
3.0.1245 165 5/27/2025
3.0.1244 294 5/27/2025
3.0.1243 2,900 5/25/2025
3.0.1242 1,742 5/23/2025
3.0.1241 484 5/23/2025
3.0.1240 147 5/23/2025
3.0.1239 916 5/22/2025
3.0.1238 163 5/22/2025
3.0.1237 565 5/22/2025
3.0.1236 3,801 5/14/2025
3.0.1235 349 5/13/2025
3.0.1234 2,823 5/8/2025
3.0.1233 622 5/8/2025
3.0.1232 159 5/8/2025
3.0.1231 698 5/7/2025
3.0.1230 175 5/7/2025
3.0.1229 331 5/7/2025
3.0.1228 2,793 5/5/2025
3.0.1227 1,122 5/5/2025
3.0.1226 461 5/5/2025
3.0.1225 164 5/5/2025
3.0.1224 322 5/5/2025
3.0.1223 159 5/5/2025
3.0.1222 426 5/5/2025
3.0.1221 154 5/5/2025
3.0.1220 4,025 4/27/2025
3.0.1219 864 4/26/2025
3.0.1218 2,076 4/9/2025
3.0.1217 778 4/9/2025
3.0.1216 196 4/9/2025
3.0.1215 721 4/8/2025
3.0.1214 290 4/8/2025
3.0.1213 998 4/8/2025
3.0.1212 701 4/8/2025
3.0.1211 547 4/8/2025
3.0.1210 1,096 4/8/2025
3.0.1209 2,245 4/8/2025
3.0.1208 979 4/8/2025
3.0.1207 2,143 4/7/2025
3.0.1206 1,465 4/7/2025
3.0.1205 2,645 4/7/2025
3.0.1204 876 4/7/2025
3.0.1203 477 4/7/2025
3.0.1202 922 4/6/2025
3.0.1201 177 4/6/2025
3.0.1200 348 4/6/2025
3.0.1199 566 4/6/2025
3.0.1198 151 4/6/2025
3.0.1197 791 4/6/2025
3.0.1196 142 4/6/2025
3.0.1195 739 4/6/2025
3.0.1194 118 4/6/2025
3.0.1193 124 4/6/2025
3.0.1192 1,121 4/5/2025
3.0.1191 439 4/5/2025
3.0.1190 576 4/5/2025
3.0.1189 112 4/5/2025
3.0.1188 117 4/4/2025
3.0.1187 617 4/4/2025
3.0.1186 11,218 4/1/2025
3.0.1185 642 4/1/2025
3.0.1184 2,836 3/31/2025
3.0.1183 1,300 3/31/2025
3.0.1182 2,058 3/29/2025
3.0.1181 453 3/29/2025
3.0.1180 3,286 3/25/2025
3.0.1179 2,848 3/21/2025
3.0.1178 4,548 3/15/2025
3.0.1177 2,514 3/12/2025
3.0.1176 742 3/11/2025
3.0.1175 700 3/11/2025
3.0.1174 619 3/11/2025
3.0.1173 1,050 3/11/2025
3.0.1172 193 3/11/2025
3.0.1171 1,504 3/11/2025
3.0.1170 185 3/11/2025
3.0.1169 5,974 3/2/2025
3.0.1168 330 3/2/2025
3.0.1167 1,205 3/1/2025
3.0.1166 716 3/1/2025
3.0.1165 688 3/1/2025
3.0.1164 244 3/1/2025
3.0.1163 135 3/1/2025
3.0.1162 1,078 3/1/2025
3.0.1161 122 3/1/2025
3.0.1160 428 3/1/2025
3.0.1159 114 3/1/2025
3.0.1158 767 3/1/2025
3.0.1157 120 3/1/2025
3.0.1156 3,506 2/25/2025
3.0.1155 716 2/25/2025
3.0.1154 728 2/25/2025
3.0.1153 1,127 2/24/2025
3.0.1152 111 2/24/2025
3.0.1151 2,414 2/23/2025
3.0.1150 3,861 2/22/2025
3.0.1149 148 2/22/2025
3.0.1148 941 2/22/2025
3.0.1147 866 2/21/2025
3.0.1146 1,644 2/21/2025
3.0.1145 2,992 2/19/2025
3.0.1144 1,158 2/18/2025
3.0.1143 1,166 2/18/2025
3.0.1142 1,199 2/18/2025
3.0.1141 123 2/18/2025
3.0.1140 2,806 2/14/2025
3.0.1139 1,017 2/13/2025
3.0.1138 2,279 2/12/2025
3.0.1137 529 2/12/2025
3.0.1136 400 2/12/2025
3.0.1135 278 2/11/2025
3.0.1134 133 2/11/2025
3.0.1133 401 2/11/2025
3.0.1132 411 2/11/2025
3.0.1131 130 2/11/2025
3.0.1130 1,691 2/11/2025
3.0.1129 142 2/11/2025
3.0.1128 1,120 2/11/2025
3.0.1127 606 2/11/2025
3.0.1126 136 2/11/2025
3.0.1125 1,206 2/10/2025
3.0.1124 387 2/10/2025
3.0.1123 408 2/10/2025
3.0.1122 510 2/10/2025
3.0.1121 128 2/10/2025
3.0.1120 699 2/10/2025
3.0.1119 744 2/9/2025
3.0.1118 810 2/9/2025
3.0.1117 960 2/8/2025
3.0.1116 325 2/8/2025
3.0.1115 620 2/7/2025
3.0.1114 136 2/7/2025
3.0.1113 224 2/7/2025
3.0.1112 696 2/7/2025
3.0.1111 1,696 2/7/2025
3.0.1110 122 2/7/2025
3.0.1109 547 2/7/2025
3.0.1108 254 2/7/2025
3.0.1107 140 2/7/2025
3.0.1106 133 2/7/2025
3.0.1105 127 2/7/2025
3.0.1104 123 2/7/2025
3.0.1103 4,133 2/5/2025
3.0.1102 285 2/5/2025
3.0.1101 705 2/5/2025
3.0.1100 147 2/5/2025
3.0.1099 713 2/5/2025
3.0.1098 548 2/5/2025
3.0.1097 14,206 1/28/2025
3.0.1096 1,113 1/28/2025
3.0.1095 4,894 1/27/2025
3.0.1094 121 1/27/2025
3.0.1093 2,343 1/27/2025
3.0.1092 5,925 1/26/2025
3.0.1091 181 1/26/2025
3.0.1090 1,817 1/25/2025
3.0.1089 123 1/25/2025
3.0.1088 1,517 1/25/2025
3.0.1087 2,085 1/25/2025
3.0.1086 530 1/25/2025
3.0.1085 5,817 1/24/2025
3.0.1084 5,663 1/24/2025
3.0.1083 2,581 1/24/2025
3.0.1082 2,700 1/24/2025
3.0.1081 114 1/24/2025
3.0.1080 414 1/24/2025
3.0.1079 124 1/24/2025
3.0.1078 3,096 1/23/2025
3.0.1077 687 1/23/2025
3.0.1076 5,620 1/21/2025
3.0.1075 1,240 1/21/2025
3.0.1074 1,273 1/21/2025
3.0.1073 689 1/21/2025
3.0.1072 1,637 1/21/2025
3.0.1071 3,749 1/21/2025
3.0.1070 3,149 1/21/2025
3.0.1069 140 1/21/2025
3.0.1068 229 1/20/2025
3.0.1067 228 1/20/2025
3.0.1066 117 1/20/2025
3.0.1065 509 1/20/2025
3.0.1064 2,923 1/20/2025
3.0.1063 125 1/20/2025
3.0.1062 3,220 1/20/2025
3.0.1061 119 1/20/2025
3.0.1060 1,198 1/20/2025
3.0.1059 7,019 1/19/2025
3.0.1058 923 1/19/2025
3.0.1057 249 1/19/2025
3.0.1056 259 1/18/2025
3.0.1055 999 1/18/2025
3.0.1054 234 1/18/2025
3.0.1053 3,100 1/18/2025
3.0.1052 715 1/17/2025
3.0.1051 633 1/17/2025
3.0.1050 848 1/17/2025
3.0.1049 423 1/17/2025
3.0.1048 209 1/16/2025
3.0.1047 12,587 1/16/2025
3.0.1046 1,642 1/16/2025
3.0.1045 2,287 1/16/2025
3.0.1044 2,192 1/16/2025
3.0.1043 505 1/16/2025
3.0.1042 339 1/15/2025
3.0.1041 3,617 1/15/2025
3.0.1040 392 1/15/2025
3.0.1039 617 1/15/2025
3.0.1038 3,084 1/15/2025
3.0.1037 114 1/15/2025
3.0.1036 277 1/15/2025
3.0.1035 719 1/15/2025
3.0.1034 595 1/15/2025
3.0.1033 98 1/15/2025
3.0.1032 1,623 1/15/2025
3.0.1031 87 1/15/2025
3.0.1030 694 1/14/2025
3.0.1029 212 1/14/2025
3.0.1028 112 1/14/2025
3.0.1027 2,029 1/14/2025
3.0.1026 8,525 1/13/2025
3.0.1025 2,950 1/13/2025
3.0.1024 208 1/12/2025
3.0.1023 4,642 1/11/2025
3.0.1022 1,008 1/11/2025
3.0.1021 783 1/11/2025
3.0.1020 191 1/10/2025
3.0.1019 130 1/10/2025
3.0.1018 2,801 1/10/2025
3.0.1017 266 1/10/2025
3.0.1016 122 1/10/2025
3.0.1015 1,672 1/10/2025
3.0.1014 117 1/10/2025
3.0.1013 4,779 1/8/2025
3.0.1012 2,157 1/3/2025
3.0.1011 1,092 1/3/2025
3.0.1010 2,599 1/2/2025
3.0.1009 132 1/2/2025
3.0.1008 151 1/2/2025
3.0.1007 1,469 1/2/2025
3.0.1006 139 1/2/2025
3.0.1005 143 1/2/2025
3.0.1004 746 1/1/2025
3.0.1003 236 1/1/2025
3.0.1002 231 1/1/2025
3.0.1001 251 1/1/2025
3.0.1000 130 1/1/2025
3.0.999 5,196 12/31/2024
3.0.998 133 12/31/2024
3.0.997 695 12/31/2024
3.0.995 3,831 12/31/2024
3.0.994 947 12/31/2024
3.0.993 3,843 12/31/2024
3.0.992 303 12/31/2024
3.0.991 498 12/31/2024
3.0.990 3,738 12/31/2024
3.0.989 121 12/31/2024
3.0.988 128 12/31/2024
3.0.987 118 12/31/2024
3.0.986 2,871 12/31/2024
3.0.985 6,903 12/28/2024
3.0.984 1,701 12/27/2024
3.0.983 6,707 12/24/2024
3.0.982 386 12/24/2024
3.0.981 364 12/24/2024
3.0.980 673 12/24/2024
3.0.979 1,469 12/24/2024
3.0.978 117 12/24/2024
3.0.977 374 12/24/2024
3.0.976 211 12/24/2024
3.0.975 453 12/23/2024
3.0.974 447 12/23/2024
3.0.973 200 12/23/2024
3.0.972 371 12/23/2024
3.0.971 365 12/23/2024
3.0.970 514 12/22/2024
3.0.969 9,286 12/22/2024
3.0.968 5,642 12/22/2024
3.0.967 1,096 12/22/2024
3.0.966 123 12/22/2024
3.0.965 4,851 12/22/2024
3.0.964 122 12/22/2024
3.0.963 562 12/21/2024
3.0.962 123 12/21/2024
3.0.961 131 12/21/2024
3.0.960 1,603 12/21/2024
3.0.959 126 12/21/2024
3.0.958 2,729 12/21/2024
3.0.957 1,648 12/21/2024
3.0.956 127 12/21/2024
3.0.955 1,292 12/21/2024
3.0.954 1,847 12/21/2024
3.0.953 131 12/21/2024
3.0.952 259 12/21/2024
3.0.951 583 12/20/2024
3.0.950 126 12/20/2024
3.0.949 178 12/20/2024
3.0.948 126 12/20/2024
3.0.947 2,071 12/20/2024
3.0.946 1,565 12/20/2024
3.0.945 1,223 12/20/2024
3.0.944 4,550 12/20/2024
3.0.943 196 12/19/2024
3.0.942 127 12/19/2024
3.0.941 121 12/19/2024
3.0.939 6,800 12/17/2024
3.0.937 296 12/17/2024
3.0.936 135 12/17/2024
3.0.935 919 12/17/2024
3.0.934 336 12/17/2024
3.0.933 120 12/17/2024
3.0.932 159 12/16/2024
3.0.931 129 12/16/2024
3.0.930 939 12/16/2024
3.0.929 5,240 12/10/2024
3.0.928 128 12/10/2024
3.0.927 1,281 12/9/2024
3.0.926 125 12/9/2024
3.0.925 2,489 12/9/2024
3.0.924 376 12/9/2024
3.0.923 427 12/9/2024
3.0.922 131 12/9/2024
3.0.921 5,975 12/6/2024
3.0.920 123 12/6/2024
3.0.919 798 12/6/2024
3.0.918 2,130 12/6/2024
3.0.917 2,688 12/6/2024
3.0.916 1,116 12/6/2024
3.0.914 1,972 12/6/2024
3.0.913 131 12/6/2024
3.0.912 136 12/6/2024
3.0.911 4,815 12/5/2024
3.0.910 132 12/5/2024
3.0.909 248 12/5/2024
3.0.908 139 12/5/2024
3.0.907 3,869 12/5/2024
3.0.906 1,836 12/5/2024
3.0.905 223 12/5/2024
3.0.904 132 12/5/2024
3.0.903 940 12/5/2024
3.0.902 139 12/5/2024
3.0.901 2,472 12/4/2024
3.0.900 132 12/4/2024
3.0.899 127 12/4/2024
3.0.898 1,837 12/4/2024
3.0.897 137 12/4/2024
3.0.896 141 12/4/2024
3.0.895 1,475 12/4/2024
3.0.894 137 12/4/2024
3.0.893 129 12/4/2024
3.0.892 869 12/4/2024
3.0.891 1,992 12/4/2024
3.0.890 2,238 12/3/2024
3.0.889 133 12/3/2024
3.0.888 122 12/3/2024
3.0.887 1,076 12/3/2024
3.0.886 138 12/3/2024
3.0.885 1,519 12/3/2024
3.0.884 133 12/3/2024
3.0.883 2,606 12/3/2024
3.0.882 325 12/3/2024
3.0.881 129 12/3/2024
3.0.880 1,209 12/3/2024
3.0.879 116 12/3/2024
3.0.878 125 12/3/2024
3.0.877 2,430 12/2/2024
3.0.876 837 12/2/2024
3.0.875 120 12/2/2024
3.0.874 2,772 12/2/2024
3.0.873 128 12/2/2024
3.0.872 514 12/1/2024
3.0.871 140 12/1/2024
3.0.870 131 12/1/2024
3.0.869 2,598 12/1/2024
3.0.868 142 12/1/2024
3.0.867 129 12/1/2024
3.0.866 4,091 12/1/2024
3.0.865 779 12/1/2024
3.0.864 2,829 11/29/2024
3.0.863 383 11/29/2024
3.0.862 4,476 11/20/2024
3.0.861 132 11/20/2024
3.0.860 3,983 11/20/2024
3.0.859 307 11/20/2024
3.0.858 141 11/20/2024
3.0.857 138 11/20/2024
3.0.856 387 11/20/2024
3.0.855 322 11/20/2024
3.0.854 389 11/20/2024
3.0.853 389 11/19/2024
3.0.852 134 11/19/2024
3.0.851 125 11/19/2024
3.0.850 800 11/19/2024
3.0.849 117 11/19/2024
3.0.848 2,901 11/19/2024
3.0.847 605 11/19/2024
3.0.846 119 11/19/2024
3.0.845 2,579 11/19/2024
3.0.844 118 11/19/2024
3.0.843 115 11/19/2024
3.0.842 7,466 11/14/2024
3.0.841 184 11/14/2024
3.0.840 1,022 11/14/2024
3.0.839 957 11/14/2024
3.0.838 129 11/14/2024
3.0.837 850 11/14/2024
3.0.836 127 11/14/2024
3.0.835 2,727 11/14/2024
3.0.834 140 11/14/2024
3.0.833 131 11/14/2024
3.0.832 705 11/14/2024
3.0.831 126 11/14/2024
3.0.830 134 11/14/2024
3.0.829 151 11/14/2024
3.0.828 136 11/14/2024
3.0.827 137 11/14/2024
2.1.826 1,988 11/13/2024
2.1.825 9,267 11/13/2024
2.1.824 130 11/13/2024
2.1.823 1,143 11/13/2024
2.1.822 147 11/13/2024
2.1.821 1,243 11/12/2024
2.1.820 141 11/12/2024
2.1.819 1,011 11/12/2024
2.1.818 7,117 11/9/2024
2.1.817 449 11/9/2024
2.1.816 143 11/9/2024
2.1.815 135 11/9/2024
2.1.814 1,340 11/9/2024
2.1.813 777 11/8/2024
2.1.812 127 11/8/2024
2.1.811 1,176 11/8/2024
2.1.810 132 11/8/2024
2.1.809 171 11/8/2024
2.1.808 131 11/8/2024
2.1.807 281 11/8/2024
2.1.806 3,181 11/8/2024
2.1.805 132 11/8/2024
2.1.804 3,647 11/8/2024
2.1.803 130 11/8/2024
2.1.802 11,744 11/1/2024
2.1.801 614 10/31/2024
2.1.800 4,629 10/29/2024
2.1.799 413 10/29/2024
2.1.798 941 10/29/2024
2.1.797 167 10/29/2024
2.1.796 1,700 10/29/2024
2.1.795 125 10/29/2024
2.1.794 6,314 10/28/2024
2.1.793 133 10/28/2024
2.1.792 2,217 10/28/2024
2.1.791 4,417 10/26/2024
2.1.790 122 10/26/2024
2.1.789 4,485 10/22/2024
2.1.788 945 10/22/2024
2.1.787 646 10/22/2024
2.1.786 137 10/22/2024
2.1.785 135 10/22/2024
2.1.784 2,618 10/22/2024
2.1.783 5,404 10/17/2024
2.1.782 2,083 10/17/2024
2.1.781 3,333 10/15/2024
2.1.780 497 10/14/2024
2.1.779 129 10/14/2024
2.1.778 5,383 10/11/2024
2.1.777 2,041 10/11/2024
2.1.776 131 10/11/2024
2.1.775 1,608 10/11/2024
2.1.774 5,794 10/9/2024
2.1.773 1,794 10/9/2024
2.1.772 484 10/8/2024
2.1.771 140 10/8/2024
2.1.770 1,573 10/8/2024
2.1.769 141 10/8/2024
2.1.768 4,428 10/8/2024
2.1.767 440 10/8/2024
2.1.766 7,923 10/3/2024
2.1.765 129 10/3/2024
2.1.764 1,628 10/3/2024
2.1.763 668 10/3/2024
2.1.762 142 10/3/2024
2.1.761 6,107 10/2/2024
2.1.760 496 10/2/2024
2.1.759 1,720 10/2/2024
2.1.758 144 10/2/2024
2.1.757 3,846 10/1/2024
2.1.756 3,895 10/1/2024
2.1.755 124 10/1/2024
2.1.754 595 10/1/2024
2.1.753 3,331 10/1/2024
2.1.752 301 10/1/2024
2.1.751 469 9/30/2024
2.1.750 2,704 9/30/2024
2.1.749 2,942 9/29/2024
2.1.748 1,804 9/29/2024
2.1.747 124 9/29/2024
2.1.746 526 9/29/2024
2.1.745 1,138 9/29/2024
2.1.744 135 9/29/2024
2.1.743 4,813 9/27/2024
2.1.742 563 9/27/2024
2.1.741 2,305 9/27/2024
2.1.740 135 9/27/2024
2.1.739 360 9/27/2024
2.1.738 578 9/27/2024
2.1.737 151 9/27/2024
2.1.736 130 9/27/2024
2.1.735 4,581 9/27/2024
2.1.734 3,707 9/26/2024
2.1.733 402 9/26/2024
2.1.732 6,028 9/26/2024
2.1.731 176 9/26/2024
2.1.730 1,436 9/26/2024
2.1.729 2,186 9/26/2024
2.1.728 7,174 9/23/2024
2.1.727 512 9/23/2024
2.1.726 817 9/23/2024
2.1.725 997 9/23/2024
2.1.724 1,104 9/23/2024
2.1.723 143 9/23/2024
2.1.722 3,644 9/23/2024
2.1.721 129 9/23/2024
2.1.720 3,144 9/23/2024
2.1.719 138 9/23/2024
2.1.718 790 9/23/2024
2.1.717 136 9/23/2024
2.1.716 130 9/23/2024
2.1.715 903 9/23/2024
2.1.714 131 9/23/2024
2.1.713 134 9/23/2024
2.1.712 2,838 9/23/2024
2.1.711 131 9/23/2024
2.1.710 6,578 9/18/2024
2.1.709 1,007 9/17/2024
2.1.708 805 9/17/2024
2.1.707 137 9/17/2024
2.1.706 457 9/17/2024
2.1.705 1,059 9/17/2024
2.1.704 258 9/17/2024
2.1.703 2,047 9/17/2024
2.1.702 145 9/17/2024
2.1.701 2,795 9/17/2024
2.1.700 2,085 9/17/2024
2.1.699 1,195 9/17/2024
2.1.698 1,942 9/17/2024
2.1.697 10,279 9/16/2024
2.1.696 138 9/16/2024
2.1.695 4,231 9/12/2024
2.1.694 145 9/12/2024
2.1.693 1,034 9/11/2024
2.1.692 230 9/11/2024
2.1.690 5,448 9/11/2024
2.1.689 358 9/11/2024
2.1.688 1,707 9/11/2024
2.1.687 3,342 9/11/2024
2.1.686 8,048 9/10/2024
2.1.685 415 9/10/2024
2.1.684 664 9/10/2024
2.1.683 456 9/10/2024
2.1.682 130 9/10/2024
2.1.681 642 9/9/2024
2.1.680 141 9/9/2024
2.1.679 360 9/9/2024
2.1.678 3,471 9/9/2024
2.1.677 132 9/9/2024
2.1.676 797 9/9/2024
2.1.675 169 9/9/2024
2.1.674 577 9/9/2024
2.1.673 3,737 9/9/2024
2.1.672 133 9/9/2024
2.1.671 271 9/9/2024
2.1.670 137 9/9/2024
2.1.669 134 9/9/2024
2.1.668 10,687 9/7/2024
2.1.667 1,849 9/6/2024
2.1.666 4,783 9/6/2024
2.1.665 141 9/6/2024
2.1.664 1,889 9/5/2024
2.1.663 1,138 9/5/2024
2.1.662 124 9/5/2024
2.1.661 135 9/5/2024
2.1.660 2,152 9/5/2024
2.1.659 2,440 9/5/2024
2.1.658 147 9/5/2024
2.1.657 136 9/5/2024
2.1.656 602 9/5/2024
2.1.655 147 9/5/2024
2.1.654 156 9/5/2024
2.1.653 4,522 9/5/2024
2.1.652 152 9/5/2024
2.1.651 3,638 9/4/2024
2.1.650 3,910 9/4/2024
2.1.649 4,159 9/3/2024
2.1.648 148 9/3/2024
2.1.647 3,100 9/3/2024
2.1.646 135 9/3/2024
2.1.645 2,223 9/3/2024
2.1.644 1,494 9/3/2024
2.1.643 122 9/3/2024
2.1.642 4,794 8/29/2024
2.1.641 136 8/29/2024
2.1.640 4,615 8/26/2024
2.1.639 1,166 8/26/2024
2.1.638 4,303 8/21/2024
2.1.637 269 8/21/2024
2.1.636 1,535 8/21/2024
2.1.635 162 8/21/2024
2.1.634 1,037 8/20/2024
2.1.633 146 8/20/2024
2.1.632 172 8/20/2024
2.1.631 2,141 8/20/2024
2.1.630 1,184 8/20/2024
2.1.629 148 8/20/2024
2.1.628 129 8/20/2024
2.1.627 157 8/20/2024
2.1.626 2,447 8/20/2024
2.1.625 151 8/20/2024
2.1.624 4,439 8/20/2024
2.1.623 2,225 8/19/2024
2.1.622 4,827 8/15/2024
2.1.621 685 8/15/2024
2.1.620 6,055 8/13/2024
2.1.619 630 8/13/2024
2.1.618 4,926 8/7/2024
2.1.617 440 8/6/2024
2.1.616 2,986 8/6/2024
2.1.615 106 8/6/2024
2.1.614 3,652 8/1/2024
2.1.613 510 8/1/2024
2.1.611 359 8/1/2024
2.1.610 322 8/1/2024
2.1.609 6,754 7/25/2024
2.1.608 296 7/25/2024
2.1.607 529 7/25/2024
2.1.606 141 7/25/2024
2.1.605 715 7/25/2024
2.1.604 120 7/25/2024
2.1.603 189 7/24/2024
2.1.602 427 7/24/2024
2.1.601 256 7/24/2024
2.1.600 1,073 7/24/2024
2.1.599 2,559 7/24/2024
2.1.598 1,874 7/20/2024
2.1.597 4,128 7/20/2024
2.1.596 5,866 7/14/2024
2.1.595 129 7/14/2024
2.1.594 2,936 7/14/2024
2.1.593 117 7/14/2024
2.1.592 495 7/14/2024
2.1.591 3,940 7/10/2024
2.1.590 302 7/10/2024
2.1.589 660 7/10/2024
2.1.588 123 7/10/2024
2.1.587 2,157 7/10/2024
2.1.586 101 7/10/2024
2.1.585 98 7/10/2024
2.1.584 93 7/10/2024
2.1.583 1,072 7/10/2024
2.1.582 106 7/10/2024
2.1.581 179 7/10/2024
2.1.580 121 7/10/2024
2.1.579 122 7/10/2024
2.1.578 1,033 7/10/2024
2.1.577 123 7/10/2024
2.1.576 890 7/10/2024
2.1.575 127 7/10/2024
2.1.574 120 7/10/2024
2.1.573 556 7/9/2024
2.1.572 123 7/9/2024
2.1.569 832 7/9/2024
2.1.568 113 7/9/2024
2.1.567 740 7/9/2024
2.1.566 119 7/9/2024
2.1.565 4,838 7/9/2024
2.1.564 124 7/9/2024
2.1.563 136 7/9/2024
2.1.562 4,957 7/9/2024
2.1.561 117 7/9/2024
2.1.560 122 7/9/2024
2.1.559 1,442 7/9/2024
2.1.558 409 7/9/2024
2.1.557 145 7/9/2024
2.1.556 2,692 7/8/2024
2.1.555 126 7/8/2024
2.1.554 114 7/8/2024
2.1.553 548 7/8/2024
2.1.552 115 7/8/2024
2.1.551 106 7/8/2024
2.1.550 5,368 7/8/2024
2.1.549 129 7/8/2024
2.1.548 201 7/8/2024
2.1.547 2,299 7/7/2024
2.1.546 1,760 7/7/2024
2.1.545 125 7/7/2024
2.1.544 577 7/7/2024
2.1.543 119 7/7/2024
2.1.542 1,051 7/7/2024
2.1.541 316 7/7/2024
2.1.540 128 7/7/2024
2.1.539 130 7/7/2024
2.1.538 1,627 7/7/2024
2.1.537 6,039 7/4/2024
2.1.536 1,005 7/3/2024
2.1.535 1,741 7/3/2024
2.1.534 2,127 7/3/2024
2.1.533 130 7/3/2024
2.1.532 696 7/3/2024
2.1.531 2,604 7/3/2024
2.1.530 713 7/3/2024
2.1.529 2,288 6/30/2024
2.1.528 1,559 6/28/2024
2.1.527 5,150 6/22/2024
2.1.526 147 6/22/2024
2.1.525 6,257 6/15/2024
2.1.524 127 6/15/2024
2.1.523 2,187 6/15/2024
2.1.522 3,555 6/14/2024
2.1.521 140 6/14/2024
2.1.520 1,747 6/14/2024
2.1.519 2,275 6/12/2024
2.1.518 4,463 6/1/2024
2.1.517 545 6/1/2024
2.1.516 904 6/1/2024
2.1.515 485 6/1/2024
2.1.514 142 6/1/2024
2.1.513 1,663 6/1/2024
2.1.512 4,440 5/31/2024
2.1.511 141 5/31/2024
2.1.510 3,949 5/29/2024
2.1.509 132 5/29/2024
2.1.508 4,743 5/28/2024
2.1.507 114 5/28/2024
2.1.506 2,800 5/27/2024
2.1.505 116 5/27/2024
2.1.504 115 5/27/2024
2.1.503 1,288 5/27/2024
2.1.502 3,318 5/26/2024
2.1.501 114 5/26/2024
2.1.500 4,738 5/26/2024
2.1.499 124 5/26/2024
2.1.498 1,261 5/26/2024
2.1.497 258 5/25/2024
2.1.496 125 5/25/2024
2.1.495 1,282 5/25/2024
2.1.494 125 5/25/2024
2.1.493 123 5/25/2024
2.1.492 129 5/25/2024
2.1.491 1,993 5/25/2024
2.1.490 127 5/25/2024
2.1.489 125 5/25/2024
2.1.488 1,159 5/25/2024
2.1.487 109 5/25/2024
2.1.486 134 5/25/2024
2.1.485 1,012 5/25/2024
2.1.484 131 5/25/2024
2.1.483 127 5/25/2024
2.1.482 6,347 5/23/2024
2.1.481 507 5/23/2024
2.1.480 1,719 5/23/2024
2.1.479 128 5/23/2024
2.1.478 1,293 5/23/2024
2.1.477 118 5/23/2024
2.1.476 133 5/22/2024
2.1.475 127 5/22/2024
2.1.474 128 5/22/2024
2.1.473 1,786 5/22/2024
2.1.472 128 5/22/2024
2.1.471 120 5/22/2024
2.1.470 1,019 5/22/2024
2.1.469 130 5/22/2024
2.1.468 4,101 5/22/2024
2.1.467 3,634 5/18/2024
2.1.466 173 5/18/2024
2.1.465 1,031 5/17/2024
2.1.464 146 5/17/2024
2.1.463 1,790 5/17/2024
2.1.462 154 5/17/2024
2.1.461 155 5/17/2024
2.1.460 3,309 5/16/2024
2.1.459 234 5/16/2024
2.1.458 138 5/16/2024
2.1.457 1,606 5/15/2024
2.1.456 1,245 5/15/2024
2.1.455 146 5/15/2024
2.1.454 5,289 5/13/2024
2.1.453 119 5/13/2024
2.1.452 3,344 5/3/2024
2.1.451 3,027 4/30/2024
2.1.450 424 4/29/2024
2.1.449 1,637 4/29/2024
2.1.448 139 4/29/2024
2.1.447 3,392 4/29/2024
2.1.446 150 4/28/2024
2.1.445 143 4/28/2024
2.1.444 514 4/28/2024
2.1.443 155 4/28/2024
2.1.442 1,713 4/28/2024
2.1.441 135 4/28/2024
2.1.440 134 4/28/2024
2.1.439 3,387 4/28/2024
2.1.438 139 4/28/2024
2.1.437 1,723 4/28/2024
2.1.436 152 4/28/2024
2.1.435 149 4/28/2024
2.1.434 492 4/28/2024
2.1.433 141 4/28/2024
2.1.432 138 4/28/2024
2.1.431 2,707 4/27/2024
2.1.430 155 4/27/2024
2.1.429 6,355 4/19/2024
2.1.428 148 4/19/2024
2.1.427 3,584 4/19/2024
2.1.426 924 4/18/2024
2.1.425 3,807 4/15/2024
2.1.424 2,493 4/12/2024
2.1.423 1,850 4/12/2024
2.1.422 1,541 4/12/2024
2.1.421 136 4/12/2024
2.1.420 2,054 4/12/2024
2.1.419 156 4/12/2024
2.1.418 740 4/12/2024
2.1.417 635 4/11/2024
2.1.416 9,243 4/10/2024
2.1.415 143 4/10/2024
2.1.414 2,218 4/9/2024
2.1.413 3,635 4/2/2024
2.1.412 162 4/2/2024
2.1.411 369 4/1/2024
2.1.410 145 4/1/2024
2.1.409 269 4/1/2024
2.1.408 5,809 3/29/2024
2.1.407 1,259 3/29/2024
2.1.406 3,122 3/25/2024
2.1.405 166 3/25/2024
2.1.404 846 3/25/2024
2.1.403 1,488 3/25/2024
2.1.402 3,802 3/20/2024
2.1.401 150 3/20/2024
2.1.400 3,769 3/19/2024
2.1.399 164 3/19/2024
2.1.398 1,736 3/19/2024
2.1.397 172 3/19/2024
2.1.396 1,363 3/19/2024
2.1.395 1,469 3/18/2024
2.1.394 992 3/18/2024
2.1.393 4,231 3/15/2024
2.1.392 158 3/15/2024
2.1.391 3,696 3/13/2024
2.1.390 601 3/13/2024
2.1.389 467 3/13/2024
2.1.388 154 3/13/2024
2.1.387 1,607 3/13/2024
2.1.386 377 3/13/2024
2.1.385 172 3/13/2024
2.1.384 160 3/13/2024
2.1.383 2,881 3/13/2024
2.1.382 162 3/13/2024
2.1.381 244 3/12/2024
2.1.380 160 3/12/2024
2.1.379 2,844 3/12/2024
2.1.378 152 3/12/2024
2.1.377 4,099 3/11/2024
2.1.376 389 3/11/2024
2.1.375 3,398 3/11/2024
2.1.374 237 3/11/2024
2.1.373 2,927 3/10/2024
2.1.372 1,435 3/10/2024
2.1.371 3,361 3/8/2024
2.1.370 172 3/8/2024
2.1.369 1,875 3/8/2024
2.1.368 1,379 3/8/2024
2.1.367 155 3/8/2024
2.1.366 2,098 3/8/2024
2.1.365 2,106 3/6/2024
2.1.364 427 3/6/2024
2.1.363 3,633 3/4/2024
2.1.362 165 3/4/2024
2.1.361 1,778 3/4/2024
2.1.360 162 3/4/2024
2.1.359 2,354 3/3/2024
2.1.358 2,228 3/3/2024
2.1.357 241 3/2/2024
2.1.356 163 3/2/2024
2.1.355 1,955 3/2/2024
2.1.354 169 3/2/2024
2.1.353 14,347 2/25/2024
2.1.352 1,272 2/25/2024
2.1.351 158 2/25/2024
2.1.350 478 2/25/2024
2.1.349 1,898 2/25/2024
2.1.348 1,766 2/23/2024
2.1.347 576 2/23/2024
2.1.346 3,806 2/22/2024
2.1.345 156 2/22/2024
2.1.344 820 2/22/2024
2.1.343 233 2/22/2024
2.1.342 160 2/22/2024
2.1.341 2,253 2/21/2024
2.1.340 157 2/21/2024
2.1.339 2,030 2/21/2024
2.1.338 164 2/21/2024
2.1.337 156 2/21/2024
2.1.336 168 2/21/2024
2.1.335 1,976 2/21/2024
2.1.334 764 2/21/2024
2.1.333 152 2/21/2024
2.1.332 143 2/21/2024
2.1.331 1,789 2/21/2024
2.1.330 1,967 2/21/2024
2.1.329 151 2/21/2024
2.1.328 150 2/21/2024
2.1.327 165 2/21/2024
2.1.326 2,627 2/20/2024
2.1.325 145 2/20/2024
2.1.324 2,206 2/20/2024
2.1.323 158 2/20/2024
2.1.322 2,045 2/20/2024
2.1.321 151 2/20/2024
2.1.320 151 2/20/2024
2.1.319 935 2/20/2024
2.1.318 338 2/19/2024
2.1.317 3,372 2/19/2024
2.1.316 146 2/19/2024
2.1.315 2,294 2/19/2024
2.1.314 2,536 2/17/2024
2.1.313 152 2/17/2024
2.1.312 1,485 2/17/2024
2.1.311 152 2/17/2024
2.1.310 331 2/17/2024
2.1.309 900 2/16/2024
2.1.308 149 2/16/2024
2.1.307 134 2/16/2024
2.1.306 192 2/16/2024
2.1.305 149 2/16/2024
2.1.304 2,142 2/16/2024
2.1.303 151 2/16/2024
2.1.302 2,718 2/16/2024
2.1.301 153 2/16/2024
2.1.300 154 2/16/2024
2.1.299 289 2/16/2024
2.1.298 161 2/16/2024
2.1.297 1,323 2/16/2024
2.1.296 149 2/16/2024
2.1.295 3,739 2/14/2024
2.1.294 1,582 2/13/2024
2.1.293 147 2/13/2024
2.1.292 1,480 2/13/2024
2.1.291 1,798 2/13/2024
2.1.290 1,009 2/13/2024
2.1.289 153 2/13/2024
2.1.288 1,959 2/13/2024
2.1.287 1,243 2/13/2024
2.1.286 163 2/13/2024
2.1.285 3,268 2/12/2024
2.1.284 156 2/12/2024
2.1.283 1,870 2/11/2024
2.1.282 2,135 2/11/2024
2.1.281 161 2/11/2024
2.1.280 2,012 2/11/2024
2.1.279 1,405 2/11/2024
2.1.278 3,644 2/10/2024
2.1.277 389 2/10/2024
2.1.276 153 2/10/2024
2.1.275 1,215 2/9/2024
2.1.274 3,013 2/9/2024
2.1.273 156 2/9/2024
2.1.272 2,379 2/9/2024
2.1.271 682 2/9/2024
2.1.270 177 2/8/2024
2.1.269 153 2/8/2024
2.1.268 3,381 2/8/2024
2.1.267 160 2/8/2024
2.1.266 618 2/8/2024
2.1.265 7,844 2/8/2024
2.1.264 1,448 2/8/2024
2.1.263 165 2/8/2024
2.1.262 4,220 2/7/2024
2.1.261 159 2/7/2024
2.1.260 932 2/7/2024
2.1.259 2,046 2/7/2024
2.1.258 635 2/7/2024
2.1.257 170 2/7/2024
2.1.256 166 2/7/2024
2.1.255 280 2/7/2024
2.1.254 156 2/7/2024
2.1.253 145 2/7/2024
2.1.252 669 2/6/2024
2.1.251 156 2/6/2024
2.1.250 1,023 2/6/2024
2.1.249 156 2/6/2024
2.1.248 165 2/6/2024
2.1.247 168 2/6/2024
2.1.246 6,325 2/5/2024
2.1.245 246 2/5/2024
2.1.244 1,633 2/4/2024
2.1.243 1,924 2/4/2024
2.1.242 721 2/4/2024
2.1.241 3,425 2/2/2024
2.1.240 156 2/2/2024
2.1.239 4,476 1/31/2024
2.1.238 157 1/31/2024
2.1.237 4,625 1/29/2024
2.1.236 143 1/29/2024
2.1.235 2,097 1/29/2024
2.1.234 143 1/29/2024
2.1.233 1,079 1/29/2024
2.1.232 148 1/29/2024
2.1.231 1,740 1/28/2024
2.1.230 1,965 1/28/2024
2.1.229 154 1/28/2024
2.1.228 1,282 1/28/2024
2.1.227 2,046 1/28/2024
2.1.226 150 1/28/2024
2.1.225 2,067 1/28/2024
2.1.224 148 1/28/2024
2.1.223 476 1/28/2024
2.1.222 1,851 1/27/2024
2.1.221 155 1/27/2024
2.1.220 422 1/27/2024
2.1.219 3,285 1/27/2024
2.1.218 1,011 1/27/2024
2.1.217 143 1/27/2024
2.1.216 675 1/27/2024
2.1.215 142 1/27/2024
2.1.214 4,044 1/27/2024
2.1.213 1,983 1/27/2024
2.1.212 157 1/27/2024
2.1.211 1,185 1/26/2024
2.1.210 155 1/26/2024
2.1.209 1,122 1/26/2024
2.1.208 141 1/26/2024
2.1.207 844 1/26/2024
2.1.206 524 1/26/2024
2.1.205 3,367 1/26/2024
2.1.204 143 1/26/2024
2.1.203 2,119 1/26/2024
2.1.202 146 1/26/2024
2.1.201 2,526 1/25/2024
2.1.200 138 1/25/2024
2.1.199 1,921 1/25/2024
2.1.198 313 1/25/2024
2.1.197 151 1/25/2024
2.1.196 4,731 1/25/2024
2.1.195 143 1/25/2024
2.1.194 4,792 1/19/2024
2.1.193 149 1/19/2024
2.1.192 4,119 1/16/2024
2.1.191 1,805 1/15/2024
2.1.190 164 1/15/2024
2.1.189 379 1/15/2024
2.1.188 154 1/15/2024
2.1.187 152 1/15/2024
2.1.186 2,219 1/15/2024
2.1.185 174 1/15/2024
2.1.184 1,995 1/15/2024
2.1.183 162 1/15/2024
2.1.182 157 1/15/2024
2.1.181 3,681 1/15/2024
2.1.180 171 1/15/2024
2.1.179 3,538 1/14/2024
2.1.178 170 1/14/2024
2.1.177 4,757 1/13/2024
2.1.176 177 1/13/2024
2.1.175 3,377 1/12/2024
2.1.174 156 1/12/2024
2.1.173 3,996 1/11/2024
2.1.172 564 1/11/2024
2.1.171 5,007 1/7/2024
2.1.170 173 1/7/2024
2.1.169 1,289 1/7/2024
2.1.168 3,179 1/5/2024
2.1.167 1,592 1/5/2024
2.1.166 161 1/5/2024
2.1.165 139 1/5/2024
2.1.164 154 1/5/2024
2.1.163 1,880 1/5/2024
2.1.162 157 1/5/2024
2.1.161 163 1/5/2024
2.1.160 154 1/5/2024
2.1.159 5,374 1/3/2024
2.1.158 2,984 1/1/2024
2.1.157 179 1/1/2024
2.1.156 1,641 1/1/2024
2.1.155 2,434 12/28/2023
2.1.154 758 12/28/2023
2.1.153 187 12/28/2023
2.1.152 259 12/28/2023
2.1.151 170 12/28/2023
2.1.150 186 12/28/2023
2.1.149 2,986 12/28/2023
2.1.148 178 12/28/2023
2.1.147 909 12/28/2023
2.1.146 173 12/28/2023
2.1.145 170 12/28/2023
2.1.144 857 12/27/2023
2.1.143 184 12/27/2023
2.1.142 2,370 12/27/2023
2.1.141 187 12/27/2023
2.1.140 4,722 12/25/2023
2.1.139 177 12/25/2023
2.1.138 1,705 12/25/2023
2.1.137 2,250 12/25/2023
2.1.136 163 12/25/2023
2.1.135 159 12/25/2023
2.1.134 1,717 12/25/2023
2.1.133 177 12/25/2023
2.1.132 168 12/25/2023
2.1.131 268 12/25/2023
2.1.130 191 12/25/2023
2.1.129 5,106 12/24/2023
2.1.128 1,622 12/24/2023
2.1.127 561 12/24/2023
2.1.126 2,250 12/23/2023
2.1.125 1,586 12/23/2023
2.1.124 660 12/23/2023
2.1.123 173 12/23/2023
2.1.122 162 12/23/2023
2.1.121 393 12/23/2023
2.1.120 168 12/23/2023
2.1.119 164 12/23/2023
2.1.118 168 12/23/2023
2.1.117 969 12/23/2023
2.1.116 170 12/23/2023
2.1.115 1,533 12/23/2023
2.1.114 173 12/23/2023
2.1.113 7,023 12/19/2023
2.1.112 149 12/19/2023
2.1.111 908 12/19/2023
2.1.110 168 12/19/2023
2.1.109 1,555 12/19/2023
2.1.108 394 12/18/2023
2.1.107 2,602 12/13/2023
2.1.106 988 12/12/2023
2.1.105 1,164 12/11/2023
2.1.104 1,339 12/11/2023
2.1.103 378 12/11/2023
2.1.102 529 12/11/2023
2.1.101 326 12/10/2023
2.1.100 148 12/10/2023
2.1.99 182 12/10/2023
2.1.98 190 12/10/2023
2.1.97 4,807 12/10/2023
2.1.96 3,339 12/10/2023
2.1.95 1,068 12/9/2023
2.1.94 1,085 12/9/2023
2.1.93 1,625 12/9/2023
2.1.92 193 12/9/2023
2.1.91 191 12/9/2023
2.1.90 158 12/9/2023
2.1.89 158 12/9/2023
2.1.88 1,312 12/9/2023
2.1.87 171 12/9/2023
2.1.86 3,492 12/9/2023
2.1.85 176 12/9/2023
2.1.84 5,269 12/6/2023
2.1.83 688 12/6/2023
2.1.82 1,002 12/6/2023
2.1.81 168 12/6/2023
2.1.80 2,333 12/6/2023
2.1.79 695 12/5/2023
2.1.78 1,281 12/5/2023
2.1.77 749 12/5/2023
2.1.76 1,278 12/5/2023
2.1.75 1,418 12/5/2023
2.1.74 396 12/5/2023
2.1.73 267 12/4/2023
2.1.72 187 12/4/2023
2.1.71 161 12/4/2023
2.1.70 3,793 12/4/2023
2.1.69 176 12/4/2023
2.1.68 867 12/4/2023
2.1.67 179 12/4/2023
2.1.66 4,016 12/4/2023
2.1.65 2,311 11/27/2023
2.1.64 623 11/27/2023
2.1.63 2,546 11/23/2023
2.1.62 158 11/23/2023
2.1.61 646 11/23/2023
2.1.60 713 11/23/2023
2.1.59 168 11/23/2023
2.1.58 1,585 11/23/2023
2.1.57 173 11/23/2023
2.1.56 173 11/23/2023
2.1.55 161 11/23/2023
2.1.54 1,604 11/23/2023
2.1.53 176 11/23/2023
2.1.52 4,369 11/20/2023
2.1.51 161 11/20/2023
2.1.50 2,767 11/20/2023
2.1.49 163 11/20/2023
2.1.48 161 11/20/2023
2.1.47 2,014 11/20/2023
2.1.46 2,205 11/19/2023
2.1.45 155 11/19/2023
2.1.44 1,876 11/19/2023
2.1.43 306 11/19/2023
2.1.42 150 11/19/2023
2.1.41 166 11/19/2023
2.1.40 170 11/19/2023
2.1.39 3,427 11/19/2023
2.1.38 144 11/19/2023
2.1.37 3,703 11/18/2023
2.1.36 156 11/18/2023
2.1.35 177 11/18/2023
2.1.34 2,963 11/18/2023
2.1.33 169 11/18/2023
2.1.32 171 11/18/2023
2.1.31 548 11/18/2023
2.1.30 162 11/18/2023
2.1.29 149 11/18/2023
2.1.28 168 11/18/2023
2.1.27 1,443 11/17/2023
2.1.26 153 11/17/2023
2.1.25 1,734 11/17/2023
2.1.24 165 11/17/2023
2.1.23 170 11/17/2023
2.1.22 332 11/17/2023
2.1.21 159 11/17/2023
2.1.20 169 11/17/2023
2.1.19 3,251 11/17/2023
2.1.18 157 11/17/2023
2.1.17 1,398 11/17/2023
2.1.16 174 11/17/2023
2.1.15 1,372 11/17/2023
2.1.14 165 11/17/2023
2.1.13 155 11/17/2023
2.1.12 896 11/17/2023
2.1.11 164 11/17/2023
2.1.10 132 11/17/2023
2.1.9 2,580 11/17/2023
2.1.8 572 11/17/2023
2.1.7 159 11/17/2023
2.1.6 1,168 11/16/2023
2.1.5 164 11/16/2023
2.0.196 2,360 11/15/2023
2.0.195 172 11/15/2023
2.0.194 167 11/15/2023
2.0.193 177 11/15/2023
2.0.4 159 11/16/2023
2.0.3 156 11/16/2023
2.0.2 162 11/16/2023
2.0.1 166 11/16/2023
1.0.192 1,770 11/14/2023
1.0.191 167 11/14/2023
1.0.190 4,724 11/13/2023
1.0.189 164 11/13/2023
1.0.188 1,146 11/10/2023
1.0.187 145 11/10/2023
1.0.186 131 11/10/2023
1.0.185 2,361 11/9/2023
1.0.184 163 11/9/2023
1.0.183 139 11/9/2023
1.0.182 171 11/9/2023
1.0.181 3,986 11/8/2023
1.0.180 1,412 11/7/2023
1.0.179 175 11/7/2023
1.0.178 2,204 11/6/2023
1.0.177 153 11/6/2023
1.0.176 178 11/6/2023
1.0.175 2,102 11/3/2023
1.0.174 149 11/3/2023
1.0.173 173 11/3/2023
1.0.172 2,600 11/2/2023
1.0.171 171 11/2/2023
1.0.170 176 11/2/2023
1.0.169 1,962 11/1/2023
1.0.168 166 11/1/2023
1.0.167 7,983 10/27/2023
1.0.166 2,022 10/26/2023
1.0.165 3,919 10/20/2023
1.0.164 2,375 10/19/2023
1.0.163 151 10/19/2023
1.0.162 1,868 10/18/2023
1.0.161 186 10/18/2023
1.0.160 175 10/18/2023
1.0.159 2,285 10/17/2023
1.0.158 182 10/17/2023
1.0.157 193 10/17/2023
1.0.156 3,076 10/16/2023
1.0.155 189 10/16/2023
1.0.154 188 10/16/2023
1.0.153 3,093 10/13/2023
1.0.152 197 10/13/2023
1.0.151 181 10/13/2023
1.0.150 1,986 10/12/2023
1.0.149 6,609 9/20/2023
1.0.148 1,648 9/19/2023
1.0.147 176 9/19/2023
1.0.146 179 9/19/2023
1.0.145 4,377 9/18/2023
1.0.144 192 9/18/2023
1.0.143 164 9/18/2023
1.0.142 2,277 9/15/2023
1.0.141 2,262 9/14/2023
1.0.140 3,829 9/1/2023
1.0.139 2,864 8/31/2023
1.0.138 196 8/31/2023
1.0.137 2,140 8/30/2023
1.0.136 224 8/30/2023
1.0.135 219 8/30/2023
1.0.134 1,791 8/29/2023
1.0.133 227 8/29/2023
1.0.132 3,964 8/28/2023
1.0.131 214 8/28/2023
1.0.130 2,628 8/25/2023
1.0.129 237 8/25/2023
1.0.128 210 8/25/2023
1.0.127 3,639 8/24/2023
1.0.126 232 8/24/2023
1.0.125 3,880 8/22/2023
1.0.124 1,816 8/21/2023
1.0.123 228 8/21/2023
1.0.122 2,026 8/18/2023
1.0.121 214 8/18/2023
1.0.120 204 8/18/2023
1.0.119 2,735 8/17/2023
1.0.118 192 8/17/2023
1.0.117 227 8/17/2023
1.0.116 194 8/17/2023
1.0.115 7,867 8/11/2023
1.0.114 2,448 8/10/2023
1.0.113 226 8/10/2023
1.0.112 3,289 8/9/2023
1.0.111 245 8/9/2023
1.0.110 1,532 8/8/2023
1.0.109 264 8/8/2023
1.0.108 239 8/8/2023
1.0.107 3,826 8/7/2023
1.0.106 240 8/7/2023
1.0.105 228 8/7/2023
1.0.104 243 8/7/2023
1.0.103 7,461 7/14/2023
1.0.102 2,525 7/13/2023
1.0.101 2,509 7/12/2023
1.0.100 2,298 7/11/2023
1.0.99 244 7/11/2023
1.0.98 3,176 7/10/2023
1.0.97 249 7/10/2023
1.0.96 233 7/10/2023
1.0.95 2,719 7/7/2023
1.0.94 259 7/7/2023
1.0.93 253 7/7/2023
1.0.92 6,439 7/3/2023
1.0.91 2,823 6/30/2023
1.0.90 2,869 6/29/2023
1.0.89 262 6/29/2023
1.0.88 253 6/29/2023
1.0.87 2,440 6/28/2023
1.0.86 251 6/28/2023
1.0.85 256 6/28/2023
1.0.84 4,721 6/27/2023
1.0.83 243 6/27/2023
1.0.82 3,442 6/26/2023
1.0.81 260 6/26/2023
1.0.80 4,420 6/23/2023
1.0.79 3,115 6/22/2023
1.0.78 2,417 6/21/2023
1.0.77 3,882 6/19/2023
1.0.76 3,639 6/15/2023
1.0.75 245 6/15/2023
1.0.74 2,182 6/14/2023
1.0.73 6,411 6/12/2023
1.0.72 2,202 6/9/2023
1.0.71 261 6/9/2023
1.0.70 3,632 6/8/2023
1.0.69 246 6/8/2023
1.0.68 241 6/8/2023
1.0.67 4,630 6/7/2023
1.0.66 267 6/7/2023
1.0.65 248 6/7/2023
1.0.64 247 6/7/2023
1.0.63 2,689 6/6/2023
1.0.62 268 6/6/2023
1.0.61 262 6/6/2023
1.0.60 20,818 5/30/2023
1.0.59 259 5/30/2023
1.0.58 261 5/30/2023
1.0.57 4,919 5/29/2023
1.0.56 257 5/29/2023
1.0.55 268 5/29/2023
1.0.54 4,070 5/26/2023
1.0.53 262 5/26/2023
1.0.52 278 5/26/2023
1.0.51 6,510 5/25/2023
1.0.50 257 5/25/2023
1.0.49 254 5/25/2023
1.0.48 2,954 5/24/2023
1.0.46 265 5/24/2023
1.0.45 262 5/24/2023
1.0.43 3,662 5/23/2023
1.0.42 5,675 5/22/2023
1.0.41 276 5/22/2023
1.0.40 5,728 5/18/2023
1.0.39 3,812 5/17/2023
1.0.38 244 5/17/2023
1.0.37 320 5/17/2023
1.0.36 10,858 4/25/2023
1.0.35 1,402 4/24/2023
1.0.34 2,016 4/21/2023
1.0.33 299 4/21/2023
1.0.32 1,819 4/20/2023
1.0.31 2,441 4/19/2023
1.0.30 1,133 4/18/2023
1.0.29 1,764 4/17/2023
1.0.28 1,308 4/14/2023
1.0.27 1,296 4/13/2023
1.0.26 1,310 4/12/2023
1.0.25 1,620 4/11/2023
1.0.24 364 4/11/2023
1.0.23 1,769 4/10/2023
1.0.22 2,566 4/4/2023
1.0.21 282 4/4/2023
1.0.20 1,064 4/3/2023
1.0.19 313 4/3/2023
1.0.18 325 4/3/2023
1.0.17 325 4/3/2023
1.0.16 301 4/3/2023
1.0.15 309 4/3/2023
1.0.14 318 4/3/2023
1.0.13 303 4/3/2023
1.0.12 304 4/3/2023
1.0.11 2,173 3/23/2023
1.0.10 636 3/13/2023
1.0.9 404 3/12/2023
1.0.8 334 3/11/2023
1.0.7 328 3/10/2023
1.0.5 505 2/22/2023
1.0.4 556 2/19/2023
1.0.3 530 2/18/2023
1.0.1 467 2/12/2023