Soenneker.Utils.MemoryStream 2.0.1

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 2.0.1
                    
NuGet\Install-Package Soenneker.Utils.MemoryStream -Version 2.0.1
                    
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="2.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.MemoryStream" Version="2.0.1" />
                    
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 2.0.1
                    
#r "nuget: Soenneker.Utils.MemoryStream, 2.0.1"
                    
#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.Utils.MemoryStream&version=2.0.1
                    
Install Soenneker.Utils.MemoryStream as a Cake Addin
#tool nuget:?package=Soenneker.Utils.MemoryStream&version=2.0.1
                    
Install Soenneker.Utils.MemoryStream 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

Install-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 net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  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.1248 1,008 5/27/2025
3.0.1247 108 5/27/2025
3.0.1246 417 5/27/2025
3.0.1245 121 5/27/2025
3.0.1244 241 5/27/2025
3.0.1243 2,421 5/25/2025
3.0.1242 1,678 5/23/2025
3.0.1241 437 5/23/2025
3.0.1240 116 5/23/2025
3.0.1239 862 5/22/2025
3.0.1238 129 5/22/2025
3.0.1237 510 5/22/2025
3.0.1236 3,707 5/14/2025
3.0.1235 315 5/13/2025
3.0.1234 2,734 5/8/2025
3.0.1233 581 5/8/2025
3.0.1232 134 5/8/2025
3.0.1231 646 5/7/2025
3.0.1230 135 5/7/2025
3.0.1229 303 5/7/2025
3.0.1228 2,689 5/5/2025
3.0.1227 1,069 5/5/2025
3.0.1226 425 5/5/2025
3.0.1225 129 5/5/2025
3.0.1224 283 5/5/2025
3.0.1223 128 5/5/2025
3.0.1222 379 5/5/2025
3.0.1221 130 5/5/2025
3.0.1220 3,916 4/27/2025
3.0.1219 821 4/26/2025
3.0.1218 2,026 4/9/2025
3.0.1217 742 4/9/2025
3.0.1216 160 4/9/2025
3.0.1215 685 4/8/2025
3.0.1214 260 4/8/2025
3.0.1213 946 4/8/2025
3.0.1212 664 4/8/2025
3.0.1211 517 4/8/2025
3.0.1210 1,027 4/8/2025
3.0.1209 2,132 4/8/2025
3.0.1208 950 4/8/2025
3.0.1207 2,058 4/7/2025
3.0.1206 1,403 4/7/2025
3.0.1205 2,518 4/7/2025
3.0.1204 825 4/7/2025
3.0.1203 445 4/7/2025
3.0.1202 872 4/6/2025
3.0.1201 148 4/6/2025
3.0.1200 313 4/6/2025
3.0.1199 519 4/6/2025
3.0.1198 126 4/6/2025
3.0.1197 749 4/6/2025
3.0.1196 105 4/6/2025
3.0.1195 695 4/6/2025
3.0.1194 93 4/6/2025
3.0.1193 92 4/6/2025
3.0.1192 1,034 4/5/2025
3.0.1191 397 4/5/2025
3.0.1190 533 4/5/2025
3.0.1189 76 4/5/2025
3.0.1188 87 4/4/2025
3.0.1187 581 4/4/2025
3.0.1186 10,978 4/1/2025
3.0.1185 604 4/1/2025
3.0.1184 2,733 3/31/2025
3.0.1183 1,251 3/31/2025
3.0.1182 1,951 3/29/2025
3.0.1181 421 3/29/2025
3.0.1180 3,158 3/25/2025
3.0.1179 2,729 3/21/2025
3.0.1178 4,316 3/15/2025
3.0.1177 2,387 3/12/2025
3.0.1176 690 3/11/2025
3.0.1175 625 3/11/2025
3.0.1174 560 3/11/2025
3.0.1173 995 3/11/2025
3.0.1172 159 3/11/2025
3.0.1171 1,423 3/11/2025
3.0.1170 153 3/11/2025
3.0.1169 5,724 3/2/2025
3.0.1168 287 3/2/2025
3.0.1167 1,141 3/1/2025
3.0.1166 666 3/1/2025
3.0.1165 626 3/1/2025
3.0.1164 211 3/1/2025
3.0.1163 98 3/1/2025
3.0.1162 1,013 3/1/2025
3.0.1161 91 3/1/2025
3.0.1160 396 3/1/2025
3.0.1159 84 3/1/2025
3.0.1158 683 3/1/2025
3.0.1157 86 3/1/2025
3.0.1156 3,338 2/25/2025
3.0.1155 665 2/25/2025
3.0.1154 684 2/25/2025
3.0.1153 1,054 2/24/2025
3.0.1152 85 2/24/2025
3.0.1151 2,291 2/23/2025
3.0.1150 3,663 2/22/2025
3.0.1149 112 2/22/2025
3.0.1148 872 2/22/2025
3.0.1147 818 2/21/2025
3.0.1146 1,546 2/21/2025
3.0.1145 2,876 2/19/2025
3.0.1144 1,086 2/18/2025
3.0.1143 1,113 2/18/2025
3.0.1142 1,138 2/18/2025
3.0.1141 105 2/18/2025
3.0.1140 2,699 2/14/2025
3.0.1139 957 2/13/2025
3.0.1138 2,197 2/12/2025
3.0.1137 474 2/12/2025
3.0.1136 354 2/12/2025
3.0.1135 238 2/11/2025
3.0.1134 108 2/11/2025
3.0.1133 351 2/11/2025
3.0.1132 363 2/11/2025
3.0.1131 101 2/11/2025
3.0.1130 1,655 2/11/2025
3.0.1129 111 2/11/2025
3.0.1128 1,062 2/11/2025
3.0.1127 555 2/11/2025
3.0.1126 102 2/11/2025
3.0.1125 1,158 2/10/2025
3.0.1124 339 2/10/2025
3.0.1123 382 2/10/2025
3.0.1122 473 2/10/2025
3.0.1121 100 2/10/2025
3.0.1120 651 2/10/2025
3.0.1119 679 2/9/2025
3.0.1118 754 2/9/2025
3.0.1117 875 2/8/2025
3.0.1116 280 2/8/2025
3.0.1115 578 2/7/2025
3.0.1114 107 2/7/2025
3.0.1113 194 2/7/2025
3.0.1112 648 2/7/2025
3.0.1111 1,662 2/7/2025
3.0.1110 99 2/7/2025
3.0.1109 476 2/7/2025
3.0.1108 228 2/7/2025
3.0.1107 108 2/7/2025
3.0.1106 97 2/7/2025
3.0.1105 102 2/7/2025
3.0.1104 98 2/7/2025
3.0.1103 3,988 2/5/2025
3.0.1102 251 2/5/2025
3.0.1101 653 2/5/2025
3.0.1100 118 2/5/2025
3.0.1099 650 2/5/2025
3.0.1098 489 2/5/2025
3.0.1097 13,830 1/28/2025
3.0.1096 1,048 1/28/2025
3.0.1095 4,711 1/27/2025
3.0.1094 89 1/27/2025
3.0.1093 2,220 1/27/2025
3.0.1092 5,706 1/26/2025
3.0.1091 152 1/26/2025
3.0.1090 1,691 1/25/2025
3.0.1089 95 1/25/2025
3.0.1088 1,428 1/25/2025
3.0.1087 2,018 1/25/2025
3.0.1086 463 1/25/2025
3.0.1085 5,614 1/24/2025
3.0.1084 5,462 1/24/2025
3.0.1083 2,464 1/24/2025
3.0.1082 2,612 1/24/2025
3.0.1081 89 1/24/2025
3.0.1080 386 1/24/2025
3.0.1079 98 1/24/2025
3.0.1078 2,961 1/23/2025
3.0.1077 639 1/23/2025
3.0.1076 5,487 1/21/2025
3.0.1075 1,187 1/21/2025
3.0.1074 1,230 1/21/2025
3.0.1073 620 1/21/2025
3.0.1072 1,562 1/21/2025
3.0.1071 3,554 1/21/2025
3.0.1070 3,010 1/21/2025
3.0.1069 108 1/21/2025
3.0.1068 198 1/20/2025
3.0.1067 206 1/20/2025
3.0.1066 91 1/20/2025
3.0.1065 409 1/20/2025
3.0.1064 2,820 1/20/2025
3.0.1063 95 1/20/2025
3.0.1062 3,141 1/20/2025
3.0.1061 93 1/20/2025
3.0.1060 1,109 1/20/2025
3.0.1059 6,830 1/19/2025
3.0.1058 843 1/19/2025
3.0.1057 213 1/19/2025
3.0.1056 232 1/18/2025
3.0.1055 923 1/18/2025
3.0.1054 203 1/18/2025
3.0.1053 3,059 1/18/2025
3.0.1052 647 1/17/2025
3.0.1051 575 1/17/2025
3.0.1050 775 1/17/2025
3.0.1049 365 1/17/2025
3.0.1048 178 1/16/2025
3.0.1047 12,105 1/16/2025
3.0.1046 1,571 1/16/2025
3.0.1045 2,193 1/16/2025
3.0.1044 2,052 1/16/2025
3.0.1043 468 1/16/2025
3.0.1042 310 1/15/2025
3.0.1041 3,438 1/15/2025
3.0.1040 354 1/15/2025
3.0.1039 597 1/15/2025
3.0.1038 2,979 1/15/2025
3.0.1037 86 1/15/2025
3.0.1036 238 1/15/2025
3.0.1035 671 1/15/2025
3.0.1034 569 1/15/2025
3.0.1033 67 1/15/2025
3.0.1032 1,489 1/15/2025
3.0.1031 63 1/15/2025
3.0.1030 618 1/14/2025
3.0.1029 175 1/14/2025
3.0.1028 79 1/14/2025
3.0.1027 1,895 1/14/2025
3.0.1026 8,257 1/13/2025
3.0.1025 2,853 1/13/2025
3.0.1024 181 1/12/2025
3.0.1023 4,427 1/11/2025
3.0.1022 949 1/11/2025
3.0.1021 707 1/11/2025
3.0.1020 173 1/10/2025
3.0.1019 96 1/10/2025
3.0.1018 2,686 1/10/2025
3.0.1017 240 1/10/2025
3.0.1016 91 1/10/2025
3.0.1015 1,621 1/10/2025
3.0.1014 92 1/10/2025
3.0.1013 4,576 1/8/2025
3.0.1012 2,087 1/3/2025
3.0.1011 1,043 1/3/2025
3.0.1010 2,486 1/2/2025
3.0.1009 114 1/2/2025
3.0.1008 121 1/2/2025
3.0.1007 1,371 1/2/2025
3.0.1006 113 1/2/2025
3.0.1005 112 1/2/2025
3.0.1004 709 1/1/2025
3.0.1003 197 1/1/2025
3.0.1002 194 1/1/2025
3.0.1001 211 1/1/2025
3.0.1000 113 1/1/2025
3.0.999 4,989 12/31/2024
3.0.998 106 12/31/2024
3.0.997 660 12/31/2024
3.0.995 3,720 12/31/2024
3.0.994 919 12/31/2024
3.0.993 3,769 12/31/2024
3.0.992 275 12/31/2024
3.0.991 471 12/31/2024
3.0.990 3,606 12/31/2024
3.0.989 96 12/31/2024
3.0.988 104 12/31/2024
3.0.987 103 12/31/2024
3.0.986 2,710 12/31/2024
3.0.985 6,716 12/28/2024
3.0.984 1,590 12/27/2024
3.0.983 6,477 12/24/2024
3.0.982 351 12/24/2024
3.0.981 336 12/24/2024
3.0.980 616 12/24/2024
3.0.979 1,400 12/24/2024
3.0.978 94 12/24/2024
3.0.977 337 12/24/2024
3.0.976 177 12/24/2024
3.0.975 406 12/23/2024
3.0.974 424 12/23/2024
3.0.973 172 12/23/2024
3.0.972 338 12/23/2024
3.0.971 337 12/23/2024
3.0.970 490 12/22/2024
3.0.969 9,002 12/22/2024
3.0.968 5,408 12/22/2024
3.0.967 1,062 12/22/2024
3.0.966 95 12/22/2024
3.0.965 4,670 12/22/2024
3.0.964 96 12/22/2024
3.0.963 526 12/21/2024
3.0.962 101 12/21/2024
3.0.961 94 12/21/2024
3.0.960 1,547 12/21/2024
3.0.959 93 12/21/2024
3.0.958 2,669 12/21/2024
3.0.957 1,598 12/21/2024
3.0.956 100 12/21/2024
3.0.955 1,241 12/21/2024
3.0.954 1,771 12/21/2024
3.0.953 97 12/21/2024
3.0.952 234 12/21/2024
3.0.951 549 12/20/2024
3.0.950 98 12/20/2024
3.0.949 145 12/20/2024
3.0.948 95 12/20/2024
3.0.947 2,012 12/20/2024
3.0.946 1,505 12/20/2024
3.0.945 1,146 12/20/2024
3.0.944 4,339 12/20/2024
3.0.943 161 12/19/2024
3.0.942 97 12/19/2024
3.0.941 100 12/19/2024
3.0.939 6,554 12/17/2024
3.0.937 257 12/17/2024
3.0.936 111 12/17/2024
3.0.935 881 12/17/2024
3.0.934 284 12/17/2024
3.0.933 92 12/17/2024
3.0.932 131 12/16/2024
3.0.931 101 12/16/2024
3.0.930 891 12/16/2024
3.0.929 5,100 12/10/2024
3.0.928 93 12/10/2024
3.0.927 1,226 12/9/2024
3.0.926 99 12/9/2024
3.0.925 2,399 12/9/2024
3.0.924 341 12/9/2024
3.0.923 392 12/9/2024
3.0.922 100 12/9/2024
3.0.921 5,813 12/6/2024
3.0.920 101 12/6/2024
3.0.919 741 12/6/2024
3.0.918 2,051 12/6/2024
3.0.917 2,602 12/6/2024
3.0.916 1,083 12/6/2024
3.0.914 1,918 12/6/2024
3.0.913 105 12/6/2024
3.0.912 105 12/6/2024
3.0.911 4,689 12/5/2024
3.0.910 107 12/5/2024
3.0.909 216 12/5/2024
3.0.908 104 12/5/2024
3.0.907 3,708 12/5/2024
3.0.906 1,803 12/5/2024
3.0.905 191 12/5/2024
3.0.904 105 12/5/2024
3.0.903 897 12/5/2024
3.0.902 104 12/5/2024
3.0.901 2,421 12/4/2024
3.0.900 102 12/4/2024
3.0.899 101 12/4/2024
3.0.898 1,784 12/4/2024
3.0.897 103 12/4/2024
3.0.896 108 12/4/2024
3.0.895 1,426 12/4/2024
3.0.894 102 12/4/2024
3.0.893 100 12/4/2024
3.0.892 842 12/4/2024
3.0.891 1,904 12/4/2024
3.0.890 2,199 12/3/2024
3.0.889 107 12/3/2024
3.0.888 106 12/3/2024
3.0.887 992 12/3/2024
3.0.886 107 12/3/2024
3.0.885 1,457 12/3/2024
3.0.884 109 12/3/2024
3.0.883 2,565 12/3/2024
3.0.882 288 12/3/2024
3.0.881 98 12/3/2024
3.0.880 1,155 12/3/2024
3.0.879 99 12/3/2024
3.0.878 98 12/3/2024
3.0.877 2,355 12/2/2024
3.0.876 791 12/2/2024
3.0.875 105 12/2/2024
3.0.874 2,715 12/2/2024
3.0.873 101 12/2/2024
3.0.872 468 12/1/2024
3.0.871 106 12/1/2024
3.0.870 113 12/1/2024
3.0.869 2,539 12/1/2024
3.0.868 118 12/1/2024
3.0.867 98 12/1/2024
3.0.866 3,995 12/1/2024
3.0.865 740 12/1/2024
3.0.864 2,740 11/29/2024
3.0.863 344 11/29/2024
3.0.862 4,324 11/20/2024
3.0.861 103 11/20/2024
3.0.860 3,861 11/20/2024
3.0.859 278 11/20/2024
3.0.858 117 11/20/2024
3.0.857 106 11/20/2024
3.0.856 353 11/20/2024
3.0.855 298 11/20/2024
3.0.854 357 11/20/2024
3.0.853 350 11/19/2024
3.0.852 99 11/19/2024
3.0.851 100 11/19/2024
3.0.850 755 11/19/2024
3.0.849 97 11/19/2024
3.0.848 2,808 11/19/2024
3.0.847 567 11/19/2024
3.0.846 92 11/19/2024
3.0.845 2,483 11/19/2024
3.0.844 95 11/19/2024
3.0.843 92 11/19/2024
3.0.842 7,249 11/14/2024
3.0.841 157 11/14/2024
3.0.840 975 11/14/2024
3.0.839 898 11/14/2024
3.0.838 100 11/14/2024
3.0.837 813 11/14/2024
3.0.836 98 11/14/2024
3.0.835 2,618 11/14/2024
3.0.834 104 11/14/2024
3.0.833 104 11/14/2024
3.0.832 671 11/14/2024
3.0.831 101 11/14/2024
3.0.830 106 11/14/2024
3.0.829 114 11/14/2024
3.0.828 108 11/14/2024
3.0.827 109 11/14/2024
2.1.826 1,918 11/13/2024
2.1.825 8,890 11/13/2024
2.1.824 105 11/13/2024
2.1.823 1,098 11/13/2024
2.1.822 106 11/13/2024
2.1.821 1,167 11/12/2024
2.1.820 105 11/12/2024
2.1.819 954 11/12/2024
2.1.818 6,957 11/9/2024
2.1.817 420 11/9/2024
2.1.816 116 11/9/2024
2.1.815 109 11/9/2024
2.1.814 1,280 11/9/2024
2.1.813 724 11/8/2024
2.1.812 98 11/8/2024
2.1.811 1,115 11/8/2024
2.1.810 103 11/8/2024
2.1.809 144 11/8/2024
2.1.808 103 11/8/2024
2.1.807 257 11/8/2024
2.1.806 3,095 11/8/2024
2.1.805 98 11/8/2024
2.1.804 3,530 11/8/2024
2.1.803 102 11/8/2024
2.1.802 11,440 11/1/2024
2.1.801 584 10/31/2024
2.1.800 4,532 10/29/2024
2.1.799 386 10/29/2024
2.1.798 884 10/29/2024
2.1.797 141 10/29/2024
2.1.796 1,640 10/29/2024
2.1.795 97 10/29/2024
2.1.794 6,139 10/28/2024
2.1.793 101 10/28/2024
2.1.792 2,130 10/28/2024
2.1.791 4,304 10/26/2024
2.1.790 103 10/26/2024
2.1.789 4,367 10/22/2024
2.1.788 906 10/22/2024
2.1.787 625 10/22/2024
2.1.786 109 10/22/2024
2.1.785 99 10/22/2024
2.1.784 2,543 10/22/2024
2.1.783 5,296 10/17/2024
2.1.782 2,024 10/17/2024
2.1.781 3,293 10/15/2024
2.1.780 473 10/14/2024
2.1.779 106 10/14/2024
2.1.778 5,288 10/11/2024
2.1.777 1,985 10/11/2024
2.1.776 99 10/11/2024
2.1.775 1,555 10/11/2024
2.1.774 5,631 10/9/2024
2.1.773 1,755 10/9/2024
2.1.772 454 10/8/2024
2.1.771 107 10/8/2024
2.1.770 1,512 10/8/2024
2.1.769 114 10/8/2024
2.1.768 4,365 10/8/2024
2.1.767 412 10/8/2024
2.1.766 7,341 10/3/2024
2.1.765 97 10/3/2024
2.1.764 1,581 10/3/2024
2.1.763 616 10/3/2024
2.1.762 102 10/3/2024
2.1.761 6,042 10/2/2024
2.1.760 469 10/2/2024
2.1.759 1,677 10/2/2024
2.1.758 119 10/2/2024
2.1.757 3,748 10/1/2024
2.1.756 3,838 10/1/2024
2.1.755 96 10/1/2024
2.1.754 569 10/1/2024
2.1.753 3,275 10/1/2024
2.1.752 273 10/1/2024
2.1.751 422 9/30/2024
2.1.750 2,638 9/30/2024
2.1.749 2,895 9/29/2024
2.1.748 1,753 9/29/2024
2.1.747 98 9/29/2024
2.1.746 496 9/29/2024
2.1.745 1,081 9/29/2024
2.1.744 103 9/29/2024
2.1.743 4,768 9/27/2024
2.1.742 534 9/27/2024
2.1.741 2,256 9/27/2024
2.1.740 103 9/27/2024
2.1.739 335 9/27/2024
2.1.738 547 9/27/2024
2.1.737 125 9/27/2024
2.1.736 100 9/27/2024
2.1.735 4,516 9/27/2024
2.1.734 3,672 9/26/2024
2.1.733 379 9/26/2024
2.1.732 5,967 9/26/2024
2.1.731 144 9/26/2024
2.1.730 1,404 9/26/2024
2.1.729 2,140 9/26/2024
2.1.728 6,975 9/23/2024
2.1.727 475 9/23/2024
2.1.726 778 9/23/2024
2.1.725 959 9/23/2024
2.1.724 1,061 9/23/2024
2.1.723 112 9/23/2024
2.1.722 3,537 9/23/2024
2.1.721 103 9/23/2024
2.1.720 3,080 9/23/2024
2.1.719 112 9/23/2024
2.1.718 752 9/23/2024
2.1.717 109 9/23/2024
2.1.716 105 9/23/2024
2.1.715 874 9/23/2024
2.1.714 100 9/23/2024
2.1.713 110 9/23/2024
2.1.712 2,756 9/23/2024
2.1.711 103 9/23/2024
2.1.710 6,482 9/18/2024
2.1.709 972 9/17/2024
2.1.708 770 9/17/2024
2.1.707 112 9/17/2024
2.1.706 429 9/17/2024
2.1.705 1,012 9/17/2024
2.1.704 238 9/17/2024
2.1.703 2,022 9/17/2024
2.1.702 117 9/17/2024
2.1.701 2,768 9/17/2024
2.1.700 1,978 9/17/2024
2.1.699 1,146 9/17/2024
2.1.698 1,908 9/17/2024
2.1.697 10,104 9/16/2024
2.1.696 115 9/16/2024
2.1.695 4,146 9/12/2024
2.1.694 118 9/12/2024
2.1.693 1,003 9/11/2024
2.1.692 198 9/11/2024
2.1.690 5,393 9/11/2024
2.1.689 331 9/11/2024
2.1.688 1,682 9/11/2024
2.1.687 3,291 9/11/2024
2.1.686 7,907 9/10/2024
2.1.685 392 9/10/2024
2.1.684 631 9/10/2024
2.1.683 428 9/10/2024
2.1.682 116 9/10/2024
2.1.681 612 9/9/2024
2.1.680 117 9/9/2024
2.1.679 335 9/9/2024
2.1.678 3,408 9/9/2024
2.1.677 104 9/9/2024
2.1.676 768 9/9/2024
2.1.675 143 9/9/2024
2.1.674 549 9/9/2024
2.1.673 3,638 9/9/2024
2.1.672 116 9/9/2024
2.1.671 241 9/9/2024
2.1.670 117 9/9/2024
2.1.669 108 9/9/2024
2.1.668 10,581 9/7/2024
2.1.667 1,829 9/6/2024
2.1.666 4,702 9/6/2024
2.1.665 113 9/6/2024
2.1.664 1,851 9/5/2024
2.1.663 1,104 9/5/2024
2.1.662 101 9/5/2024
2.1.661 112 9/5/2024
2.1.660 2,095 9/5/2024
2.1.659 2,369 9/5/2024
2.1.658 125 9/5/2024
2.1.657 116 9/5/2024
2.1.656 573 9/5/2024
2.1.655 119 9/5/2024
2.1.654 122 9/5/2024
2.1.653 4,496 9/5/2024
2.1.652 122 9/5/2024
2.1.651 3,587 9/4/2024
2.1.650 3,801 9/4/2024
2.1.649 4,110 9/3/2024
2.1.648 119 9/3/2024
2.1.647 3,025 9/3/2024
2.1.646 106 9/3/2024
2.1.645 2,184 9/3/2024
2.1.644 1,429 9/3/2024
2.1.643 94 9/3/2024
2.1.642 4,717 8/29/2024
2.1.641 106 8/29/2024
2.1.640 4,561 8/26/2024
2.1.639 1,142 8/26/2024
2.1.638 4,221 8/21/2024
2.1.637 242 8/21/2024
2.1.636 1,482 8/21/2024
2.1.635 137 8/21/2024
2.1.634 997 8/20/2024
2.1.633 129 8/20/2024
2.1.632 144 8/20/2024
2.1.631 2,088 8/20/2024
2.1.630 1,140 8/20/2024
2.1.629 122 8/20/2024
2.1.628 108 8/20/2024
2.1.627 118 8/20/2024
2.1.626 2,393 8/20/2024
2.1.625 123 8/20/2024
2.1.624 4,380 8/20/2024
2.1.623 2,184 8/19/2024
2.1.622 4,738 8/15/2024
2.1.621 662 8/15/2024
2.1.620 5,982 8/13/2024
2.1.619 592 8/13/2024
2.1.618 4,848 8/7/2024
2.1.617 411 8/6/2024
2.1.616 2,923 8/6/2024
2.1.615 92 8/6/2024
2.1.614 3,589 8/1/2024
2.1.613 494 8/1/2024
2.1.611 329 8/1/2024
2.1.610 288 8/1/2024
2.1.609 6,648 7/25/2024
2.1.608 274 7/25/2024
2.1.607 500 7/25/2024
2.1.606 105 7/25/2024
2.1.605 684 7/25/2024
2.1.604 88 7/25/2024
2.1.603 156 7/24/2024
2.1.602 399 7/24/2024
2.1.601 225 7/24/2024
2.1.600 1,046 7/24/2024
2.1.599 2,495 7/24/2024
2.1.598 1,833 7/20/2024
2.1.597 4,049 7/20/2024
2.1.596 5,657 7/14/2024
2.1.595 107 7/14/2024
2.1.594 2,887 7/14/2024
2.1.593 88 7/14/2024
2.1.592 468 7/14/2024
2.1.591 3,869 7/10/2024
2.1.590 273 7/10/2024
2.1.589 630 7/10/2024
2.1.588 89 7/10/2024
2.1.587 2,125 7/10/2024
2.1.586 85 7/10/2024
2.1.585 80 7/10/2024
2.1.584 78 7/10/2024
2.1.583 1,032 7/10/2024
2.1.582 83 7/10/2024
2.1.581 154 7/10/2024
2.1.580 96 7/10/2024
2.1.579 92 7/10/2024
2.1.578 944 7/10/2024
2.1.577 96 7/10/2024
2.1.576 858 7/10/2024
2.1.575 102 7/10/2024
2.1.574 95 7/10/2024
2.1.573 535 7/9/2024
2.1.572 103 7/9/2024
2.1.569 800 7/9/2024
2.1.568 84 7/9/2024
2.1.567 713 7/9/2024
2.1.566 95 7/9/2024
2.1.565 4,773 7/9/2024
2.1.564 99 7/9/2024
2.1.563 104 7/9/2024
2.1.562 4,876 7/9/2024
2.1.561 93 7/9/2024
2.1.560 97 7/9/2024
2.1.559 1,407 7/9/2024
2.1.558 381 7/9/2024
2.1.557 109 7/9/2024
2.1.556 2,639 7/8/2024
2.1.555 100 7/8/2024
2.1.554 99 7/8/2024
2.1.553 520 7/8/2024
2.1.552 99 7/8/2024
2.1.551 89 7/8/2024
2.1.550 5,306 7/8/2024
2.1.549 101 7/8/2024
2.1.548 180 7/8/2024
2.1.547 2,235 7/7/2024
2.1.546 1,708 7/7/2024
2.1.545 102 7/7/2024
2.1.544 546 7/7/2024
2.1.543 94 7/7/2024
2.1.542 1,034 7/7/2024
2.1.541 290 7/7/2024
2.1.540 103 7/7/2024
2.1.539 98 7/7/2024
2.1.538 1,562 7/7/2024
2.1.537 5,934 7/4/2024
2.1.536 964 7/3/2024
2.1.535 1,688 7/3/2024
2.1.534 2,058 7/3/2024
2.1.533 99 7/3/2024
2.1.532 675 7/3/2024
2.1.531 2,543 7/3/2024
2.1.530 674 7/3/2024
2.1.529 2,249 6/30/2024
2.1.528 1,518 6/28/2024
2.1.527 5,051 6/22/2024
2.1.526 111 6/22/2024
2.1.525 6,100 6/15/2024
2.1.524 101 6/15/2024
2.1.523 2,125 6/15/2024
2.1.522 3,498 6/14/2024
2.1.521 111 6/14/2024
2.1.520 1,711 6/14/2024
2.1.519 2,218 6/12/2024
2.1.518 4,373 6/1/2024
2.1.517 518 6/1/2024
2.1.516 881 6/1/2024
2.1.515 468 6/1/2024
2.1.514 113 6/1/2024
2.1.513 1,634 6/1/2024
2.1.512 4,389 5/31/2024
2.1.511 115 5/31/2024
2.1.510 3,882 5/29/2024
2.1.509 106 5/29/2024
2.1.508 4,653 5/28/2024
2.1.507 92 5/28/2024
2.1.506 2,739 5/27/2024
2.1.505 91 5/27/2024
2.1.504 89 5/27/2024
2.1.503 1,251 5/27/2024
2.1.502 3,240 5/26/2024
2.1.501 93 5/26/2024
2.1.500 4,657 5/26/2024
2.1.499 96 5/26/2024
2.1.498 1,206 5/26/2024
2.1.497 221 5/25/2024
2.1.496 97 5/25/2024
2.1.495 1,257 5/25/2024
2.1.494 104 5/25/2024
2.1.493 101 5/25/2024
2.1.492 96 5/25/2024
2.1.491 1,912 5/25/2024
2.1.490 98 5/25/2024
2.1.489 103 5/25/2024
2.1.488 1,112 5/25/2024
2.1.487 93 5/25/2024
2.1.486 105 5/25/2024
2.1.485 991 5/25/2024
2.1.484 103 5/25/2024
2.1.483 100 5/25/2024
2.1.482 6,213 5/23/2024
2.1.481 476 5/23/2024
2.1.480 1,664 5/23/2024
2.1.479 100 5/23/2024
2.1.478 1,246 5/23/2024
2.1.477 93 5/23/2024
2.1.476 108 5/22/2024
2.1.475 103 5/22/2024
2.1.474 97 5/22/2024
2.1.473 1,731 5/22/2024
2.1.472 101 5/22/2024
2.1.471 101 5/22/2024
2.1.470 994 5/22/2024
2.1.469 101 5/22/2024
2.1.468 3,997 5/22/2024
2.1.467 3,586 5/18/2024
2.1.466 149 5/18/2024
2.1.465 1,001 5/17/2024
2.1.464 119 5/17/2024
2.1.463 1,725 5/17/2024
2.1.462 124 5/17/2024
2.1.461 123 5/17/2024
2.1.460 3,248 5/16/2024
2.1.459 210 5/16/2024
2.1.458 119 5/16/2024
2.1.457 1,562 5/15/2024
2.1.456 1,221 5/15/2024
2.1.455 125 5/15/2024
2.1.454 5,169 5/13/2024
2.1.453 92 5/13/2024
2.1.452 3,261 5/3/2024
2.1.451 2,938 4/30/2024
2.1.450 399 4/29/2024
2.1.449 1,599 4/29/2024
2.1.448 122 4/29/2024
2.1.447 3,307 4/29/2024
2.1.446 121 4/28/2024
2.1.445 118 4/28/2024
2.1.444 495 4/28/2024
2.1.443 128 4/28/2024
2.1.442 1,667 4/28/2024
2.1.441 119 4/28/2024
2.1.440 110 4/28/2024
2.1.439 3,304 4/28/2024
2.1.438 117 4/28/2024
2.1.437 1,677 4/28/2024
2.1.436 127 4/28/2024
2.1.435 125 4/28/2024
2.1.434 467 4/28/2024
2.1.433 117 4/28/2024
2.1.432 113 4/28/2024
2.1.431 2,603 4/27/2024
2.1.430 125 4/27/2024
2.1.429 6,268 4/19/2024
2.1.428 121 4/19/2024
2.1.427 3,512 4/19/2024
2.1.426 883 4/18/2024
2.1.425 3,732 4/15/2024
2.1.424 2,440 4/12/2024
2.1.423 1,810 4/12/2024
2.1.422 1,500 4/12/2024
2.1.421 114 4/12/2024
2.1.420 1,961 4/12/2024
2.1.419 136 4/12/2024
2.1.418 713 4/12/2024
2.1.417 601 4/11/2024
2.1.416 8,816 4/10/2024
2.1.415 119 4/10/2024
2.1.414 2,168 4/9/2024
2.1.413 3,575 4/2/2024
2.1.412 129 4/2/2024
2.1.411 341 4/1/2024
2.1.410 119 4/1/2024
2.1.409 243 4/1/2024
2.1.408 5,702 3/29/2024
2.1.407 1,214 3/29/2024
2.1.406 3,054 3/25/2024
2.1.405 131 3/25/2024
2.1.404 822 3/25/2024
2.1.403 1,458 3/25/2024
2.1.402 3,724 3/20/2024
2.1.401 133 3/20/2024
2.1.400 3,678 3/19/2024
2.1.399 138 3/19/2024
2.1.398 1,692 3/19/2024
2.1.397 139 3/19/2024
2.1.396 1,331 3/19/2024
2.1.395 1,432 3/18/2024
2.1.394 961 3/18/2024
2.1.393 4,135 3/15/2024
2.1.392 134 3/15/2024
2.1.391 3,609 3/13/2024
2.1.390 573 3/13/2024
2.1.389 438 3/13/2024
2.1.388 133 3/13/2024
2.1.387 1,560 3/13/2024
2.1.386 346 3/13/2024
2.1.385 141 3/13/2024
2.1.384 140 3/13/2024
2.1.383 2,823 3/13/2024
2.1.382 136 3/13/2024
2.1.381 220 3/12/2024
2.1.380 129 3/12/2024
2.1.379 2,775 3/12/2024
2.1.378 131 3/12/2024
2.1.377 4,025 3/11/2024
2.1.376 362 3/11/2024
2.1.375 3,339 3/11/2024
2.1.374 213 3/11/2024
2.1.373 2,867 3/10/2024
2.1.372 1,391 3/10/2024
2.1.371 3,277 3/8/2024
2.1.370 143 3/8/2024
2.1.369 1,834 3/8/2024
2.1.368 1,328 3/8/2024
2.1.367 123 3/8/2024
2.1.366 2,041 3/8/2024
2.1.365 2,048 3/6/2024
2.1.364 401 3/6/2024
2.1.363 3,563 3/4/2024
2.1.362 135 3/4/2024
2.1.361 1,741 3/4/2024
2.1.360 135 3/4/2024
2.1.359 2,292 3/3/2024
2.1.358 2,164 3/3/2024
2.1.357 213 3/2/2024
2.1.356 139 3/2/2024
2.1.355 1,912 3/2/2024
2.1.354 137 3/2/2024
2.1.353 14,113 2/25/2024
2.1.352 1,236 2/25/2024
2.1.351 130 2/25/2024
2.1.350 448 2/25/2024
2.1.349 1,850 2/25/2024
2.1.348 1,720 2/23/2024
2.1.347 546 2/23/2024
2.1.346 3,737 2/22/2024
2.1.345 123 2/22/2024
2.1.344 792 2/22/2024
2.1.343 204 2/22/2024
2.1.342 133 2/22/2024
2.1.341 2,199 2/21/2024
2.1.340 130 2/21/2024
2.1.339 1,977 2/21/2024
2.1.338 135 2/21/2024
2.1.337 127 2/21/2024
2.1.336 135 2/21/2024
2.1.335 1,927 2/21/2024
2.1.334 727 2/21/2024
2.1.333 121 2/21/2024
2.1.332 119 2/21/2024
2.1.331 1,735 2/21/2024
2.1.330 1,932 2/21/2024
2.1.329 126 2/21/2024
2.1.328 124 2/21/2024
2.1.327 141 2/21/2024
2.1.326 2,547 2/20/2024
2.1.325 128 2/20/2024
2.1.324 2,145 2/20/2024
2.1.323 128 2/20/2024
2.1.322 1,998 2/20/2024
2.1.321 126 2/20/2024
2.1.320 126 2/20/2024
2.1.319 895 2/20/2024
2.1.318 305 2/19/2024
2.1.317 3,314 2/19/2024
2.1.316 130 2/19/2024
2.1.315 2,242 2/19/2024
2.1.314 2,487 2/17/2024
2.1.313 126 2/17/2024
2.1.312 1,449 2/17/2024
2.1.311 122 2/17/2024
2.1.310 299 2/17/2024
2.1.309 856 2/16/2024
2.1.308 117 2/16/2024
2.1.307 118 2/16/2024
2.1.306 167 2/16/2024
2.1.305 122 2/16/2024
2.1.304 2,099 2/16/2024
2.1.303 121 2/16/2024
2.1.302 2,660 2/16/2024
2.1.301 123 2/16/2024
2.1.300 127 2/16/2024
2.1.299 259 2/16/2024
2.1.298 133 2/16/2024
2.1.297 1,295 2/16/2024
2.1.296 123 2/16/2024
2.1.295 3,657 2/14/2024
2.1.294 1,536 2/13/2024
2.1.293 123 2/13/2024
2.1.292 1,454 2/13/2024
2.1.291 1,743 2/13/2024
2.1.290 973 2/13/2024
2.1.289 130 2/13/2024
2.1.288 1,905 2/13/2024
2.1.287 1,199 2/13/2024
2.1.286 137 2/13/2024
2.1.285 3,200 2/12/2024
2.1.284 131 2/12/2024
2.1.283 1,823 2/11/2024
2.1.282 2,084 2/11/2024
2.1.281 131 2/11/2024
2.1.280 1,970 2/11/2024
2.1.279 1,348 2/11/2024
2.1.278 3,568 2/10/2024
2.1.277 359 2/10/2024
2.1.276 132 2/10/2024
2.1.275 1,170 2/9/2024
2.1.274 2,961 2/9/2024
2.1.273 131 2/9/2024
2.1.272 2,325 2/9/2024
2.1.271 654 2/9/2024
2.1.270 151 2/8/2024
2.1.269 126 2/8/2024
2.1.268 3,315 2/8/2024
2.1.267 138 2/8/2024
2.1.266 598 2/8/2024
2.1.265 7,737 2/8/2024
2.1.264 1,419 2/8/2024
2.1.263 138 2/8/2024
2.1.262 4,150 2/7/2024
2.1.261 141 2/7/2024
2.1.260 881 2/7/2024
2.1.259 2,004 2/7/2024
2.1.258 607 2/7/2024
2.1.257 140 2/7/2024
2.1.256 141 2/7/2024
2.1.255 243 2/7/2024
2.1.254 129 2/7/2024
2.1.253 130 2/7/2024
2.1.252 641 2/6/2024
2.1.251 131 2/6/2024
2.1.250 1,001 2/6/2024
2.1.249 137 2/6/2024
2.1.248 136 2/6/2024
2.1.247 145 2/6/2024
2.1.246 6,231 2/5/2024
2.1.245 223 2/5/2024
2.1.244 1,615 2/4/2024
2.1.243 1,869 2/4/2024
2.1.242 692 2/4/2024
2.1.241 3,361 2/2/2024
2.1.240 129 2/2/2024
2.1.239 4,405 1/31/2024
2.1.238 126 1/31/2024
2.1.237 4,565 1/29/2024
2.1.236 118 1/29/2024
2.1.235 2,025 1/29/2024
2.1.234 119 1/29/2024
2.1.233 1,044 1/29/2024
2.1.232 122 1/29/2024
2.1.231 1,712 1/28/2024
2.1.230 1,929 1/28/2024
2.1.229 127 1/28/2024
2.1.228 1,245 1/28/2024
2.1.227 1,969 1/28/2024
2.1.226 127 1/28/2024
2.1.225 2,021 1/28/2024
2.1.224 123 1/28/2024
2.1.223 446 1/28/2024
2.1.222 1,824 1/27/2024
2.1.221 123 1/27/2024
2.1.220 386 1/27/2024
2.1.219 3,215 1/27/2024
2.1.218 985 1/27/2024
2.1.217 120 1/27/2024
2.1.216 649 1/27/2024
2.1.215 121 1/27/2024
2.1.214 3,990 1/27/2024
2.1.213 1,926 1/27/2024
2.1.212 131 1/27/2024
2.1.211 1,145 1/26/2024
2.1.210 119 1/26/2024
2.1.209 1,096 1/26/2024
2.1.208 121 1/26/2024
2.1.207 814 1/26/2024
2.1.206 498 1/26/2024
2.1.205 3,293 1/26/2024
2.1.204 118 1/26/2024
2.1.203 2,090 1/26/2024
2.1.202 115 1/26/2024
2.1.201 2,469 1/25/2024
2.1.200 114 1/25/2024
2.1.199 1,863 1/25/2024
2.1.198 289 1/25/2024
2.1.197 122 1/25/2024
2.1.196 4,650 1/25/2024
2.1.195 118 1/25/2024
2.1.194 4,724 1/19/2024
2.1.193 128 1/19/2024
2.1.192 4,053 1/16/2024
2.1.191 1,767 1/15/2024
2.1.190 134 1/15/2024
2.1.189 356 1/15/2024
2.1.188 129 1/15/2024
2.1.187 132 1/15/2024
2.1.186 2,170 1/15/2024
2.1.185 140 1/15/2024
2.1.184 1,934 1/15/2024
2.1.183 133 1/15/2024
2.1.182 132 1/15/2024
2.1.181 3,619 1/15/2024
2.1.180 144 1/15/2024
2.1.179 3,472 1/14/2024
2.1.178 140 1/14/2024
2.1.177 4,676 1/13/2024
2.1.176 152 1/13/2024
2.1.175 3,326 1/12/2024
2.1.174 130 1/12/2024
2.1.173 3,900 1/11/2024
2.1.172 537 1/11/2024
2.1.171 4,928 1/7/2024
2.1.170 145 1/7/2024
2.1.169 1,254 1/7/2024
2.1.168 3,112 1/5/2024
2.1.167 1,559 1/5/2024
2.1.166 136 1/5/2024
2.1.165 113 1/5/2024
2.1.164 128 1/5/2024
2.1.163 1,827 1/5/2024
2.1.162 131 1/5/2024
2.1.161 135 1/5/2024
2.1.160 133 1/5/2024
2.1.159 5,275 1/3/2024
2.1.158 2,932 1/1/2024
2.1.157 155 1/1/2024
2.1.156 1,595 1/1/2024
2.1.155 2,391 12/28/2023
2.1.154 733 12/28/2023
2.1.153 161 12/28/2023
2.1.152 237 12/28/2023
2.1.151 148 12/28/2023
2.1.150 154 12/28/2023
2.1.149 2,924 12/28/2023
2.1.148 154 12/28/2023
2.1.147 859 12/28/2023
2.1.146 146 12/28/2023
2.1.145 148 12/28/2023
2.1.144 836 12/27/2023
2.1.143 157 12/27/2023
2.1.142 2,311 12/27/2023
2.1.141 159 12/27/2023
2.1.140 4,647 12/25/2023
2.1.139 151 12/25/2023
2.1.138 1,655 12/25/2023
2.1.137 2,196 12/25/2023
2.1.136 138 12/25/2023
2.1.135 142 12/25/2023
2.1.134 1,659 12/25/2023
2.1.133 152 12/25/2023
2.1.132 143 12/25/2023
2.1.131 243 12/25/2023
2.1.130 157 12/25/2023
2.1.129 5,042 12/24/2023
2.1.128 1,577 12/24/2023
2.1.127 523 12/24/2023
2.1.126 2,204 12/23/2023
2.1.125 1,552 12/23/2023
2.1.124 634 12/23/2023
2.1.123 146 12/23/2023
2.1.122 133 12/23/2023
2.1.121 361 12/23/2023
2.1.120 143 12/23/2023
2.1.119 142 12/23/2023
2.1.118 140 12/23/2023
2.1.117 946 12/23/2023
2.1.116 144 12/23/2023
2.1.115 1,500 12/23/2023
2.1.114 149 12/23/2023
2.1.113 6,900 12/19/2023
2.1.112 127 12/19/2023
2.1.111 885 12/19/2023
2.1.110 136 12/19/2023
2.1.109 1,496 12/19/2023
2.1.108 368 12/18/2023
2.1.107 2,557 12/13/2023
2.1.106 942 12/12/2023
2.1.105 1,134 12/11/2023
2.1.104 1,301 12/11/2023
2.1.103 352 12/11/2023
2.1.102 500 12/11/2023
2.1.101 297 12/10/2023
2.1.100 133 12/10/2023
2.1.99 160 12/10/2023
2.1.98 162 12/10/2023
2.1.97 4,714 12/10/2023
2.1.96 3,289 12/10/2023
2.1.95 1,042 12/9/2023
2.1.94 1,050 12/9/2023
2.1.93 1,584 12/9/2023
2.1.92 170 12/9/2023
2.1.91 156 12/9/2023
2.1.90 137 12/9/2023
2.1.89 144 12/9/2023
2.1.88 1,275 12/9/2023
2.1.87 144 12/9/2023
2.1.86 3,417 12/9/2023
2.1.85 150 12/9/2023
2.1.84 5,213 12/6/2023
2.1.83 661 12/6/2023
2.1.82 963 12/6/2023
2.1.81 145 12/6/2023
2.1.80 2,276 12/6/2023
2.1.79 665 12/5/2023
2.1.78 1,244 12/5/2023
2.1.77 734 12/5/2023
2.1.76 1,251 12/5/2023
2.1.75 1,385 12/5/2023
2.1.74 378 12/5/2023
2.1.73 248 12/4/2023
2.1.72 161 12/4/2023
2.1.71 145 12/4/2023
2.1.70 3,746 12/4/2023
2.1.69 165 12/4/2023
2.1.68 840 12/4/2023
2.1.67 155 12/4/2023
2.1.66 3,943 12/4/2023
2.1.65 2,266 11/27/2023
2.1.64 591 11/27/2023
2.1.63 2,480 11/23/2023
2.1.62 148 11/23/2023
2.1.61 620 11/23/2023
2.1.60 692 11/23/2023
2.1.59 146 11/23/2023
2.1.58 1,549 11/23/2023
2.1.57 155 11/23/2023
2.1.56 152 11/23/2023
2.1.55 139 11/23/2023
2.1.54 1,570 11/23/2023
2.1.53 159 11/23/2023
2.1.52 4,303 11/20/2023
2.1.51 151 11/20/2023
2.1.50 2,742 11/20/2023
2.1.49 142 11/20/2023
2.1.48 139 11/20/2023
2.1.47 1,964 11/20/2023
2.1.46 2,165 11/19/2023
2.1.45 133 11/19/2023
2.1.44 1,848 11/19/2023
2.1.43 276 11/19/2023
2.1.42 138 11/19/2023
2.1.41 148 11/19/2023
2.1.40 147 11/19/2023
2.1.39 3,380 11/19/2023
2.1.38 125 11/19/2023
2.1.37 3,647 11/18/2023
2.1.36 143 11/18/2023
2.1.35 153 11/18/2023
2.1.34 2,918 11/18/2023
2.1.33 148 11/18/2023
2.1.32 151 11/18/2023
2.1.31 521 11/18/2023
2.1.30 140 11/18/2023
2.1.29 124 11/18/2023
2.1.28 145 11/18/2023
2.1.27 1,408 11/17/2023
2.1.26 127 11/17/2023
2.1.25 1,691 11/17/2023
2.1.24 143 11/17/2023
2.1.23 152 11/17/2023
2.1.22 316 11/17/2023
2.1.21 148 11/17/2023
2.1.20 146 11/17/2023
2.1.19 3,201 11/17/2023
2.1.18 141 11/17/2023
2.1.17 1,360 11/17/2023
2.1.16 150 11/17/2023
2.1.15 1,333 11/17/2023
2.1.14 146 11/17/2023
2.1.13 142 11/17/2023
2.1.12 861 11/17/2023
2.1.11 138 11/17/2023
2.1.10 113 11/17/2023
2.1.9 2,537 11/17/2023
2.1.8 554 11/17/2023
2.1.7 146 11/17/2023
2.1.6 1,140 11/16/2023
2.1.5 142 11/16/2023
2.0.196 2,298 11/15/2023
2.0.195 145 11/15/2023
2.0.194 147 11/15/2023
2.0.193 150 11/15/2023
2.0.4 134 11/16/2023
2.0.3 135 11/16/2023
2.0.2 141 11/16/2023
2.0.1 140 11/16/2023
1.0.192 1,741 11/14/2023
1.0.191 147 11/14/2023
1.0.190 4,671 11/13/2023
1.0.189 141 11/13/2023
1.0.188 1,116 11/10/2023
1.0.187 126 11/10/2023
1.0.186 113 11/10/2023
1.0.185 2,337 11/9/2023
1.0.184 144 11/9/2023
1.0.183 128 11/9/2023
1.0.182 151 11/9/2023
1.0.181 3,915 11/8/2023
1.0.180 1,385 11/7/2023
1.0.179 148 11/7/2023
1.0.178 2,164 11/6/2023
1.0.177 128 11/6/2023
1.0.176 142 11/6/2023
1.0.175 2,067 11/3/2023
1.0.174 137 11/3/2023
1.0.173 151 11/3/2023
1.0.172 2,570 11/2/2023
1.0.171 147 11/2/2023
1.0.170 158 11/2/2023
1.0.169 1,924 11/1/2023
1.0.168 139 11/1/2023
1.0.167 7,897 10/27/2023
1.0.166 1,983 10/26/2023
1.0.165 3,883 10/20/2023
1.0.164 2,331 10/19/2023
1.0.163 136 10/19/2023
1.0.162 1,826 10/18/2023
1.0.161 158 10/18/2023
1.0.160 149 10/18/2023
1.0.159 2,237 10/17/2023
1.0.158 154 10/17/2023
1.0.157 164 10/17/2023
1.0.156 3,035 10/16/2023
1.0.155 156 10/16/2023
1.0.154 162 10/16/2023
1.0.153 3,039 10/13/2023
1.0.152 166 10/13/2023
1.0.151 153 10/13/2023
1.0.150 1,952 10/12/2023
1.0.149 6,530 9/20/2023
1.0.148 1,615 9/19/2023
1.0.147 148 9/19/2023
1.0.146 148 9/19/2023
1.0.145 4,329 9/18/2023
1.0.144 159 9/18/2023
1.0.143 135 9/18/2023
1.0.142 2,240 9/15/2023
1.0.141 2,202 9/14/2023
1.0.140 3,775 9/1/2023
1.0.139 2,787 8/31/2023
1.0.138 160 8/31/2023
1.0.137 2,080 8/30/2023
1.0.136 183 8/30/2023
1.0.135 180 8/30/2023
1.0.134 1,731 8/29/2023
1.0.133 187 8/29/2023
1.0.132 3,902 8/28/2023
1.0.131 177 8/28/2023
1.0.130 2,553 8/25/2023
1.0.129 187 8/25/2023
1.0.128 165 8/25/2023
1.0.127 3,570 8/24/2023
1.0.126 188 8/24/2023
1.0.125 3,809 8/22/2023
1.0.124 1,760 8/21/2023
1.0.123 185 8/21/2023
1.0.122 1,965 8/18/2023
1.0.121 176 8/18/2023
1.0.120 161 8/18/2023
1.0.119 2,670 8/17/2023
1.0.118 153 8/17/2023
1.0.117 178 8/17/2023
1.0.116 147 8/17/2023
1.0.115 7,782 8/11/2023
1.0.114 2,398 8/10/2023
1.0.113 180 8/10/2023
1.0.112 3,230 8/9/2023
1.0.111 206 8/9/2023
1.0.110 1,476 8/8/2023
1.0.109 214 8/8/2023
1.0.108 186 8/8/2023
1.0.107 3,753 8/7/2023
1.0.106 197 8/7/2023
1.0.105 184 8/7/2023
1.0.104 200 8/7/2023
1.0.103 7,341 7/14/2023
1.0.102 2,468 7/13/2023
1.0.101 2,451 7/12/2023
1.0.100 2,242 7/11/2023
1.0.99 198 7/11/2023
1.0.98 3,116 7/10/2023
1.0.97 205 7/10/2023
1.0.96 196 7/10/2023
1.0.95 2,672 7/7/2023
1.0.94 198 7/7/2023
1.0.93 206 7/7/2023
1.0.92 6,341 7/3/2023
1.0.91 2,743 6/30/2023
1.0.90 2,792 6/29/2023
1.0.89 217 6/29/2023
1.0.88 206 6/29/2023
1.0.87 2,375 6/28/2023
1.0.86 201 6/28/2023
1.0.85 210 6/28/2023
1.0.84 4,653 6/27/2023
1.0.83 198 6/27/2023
1.0.82 3,361 6/26/2023
1.0.81 204 6/26/2023
1.0.80 4,348 6/23/2023
1.0.79 3,054 6/22/2023
1.0.78 2,350 6/21/2023
1.0.77 3,817 6/19/2023
1.0.76 3,572 6/15/2023
1.0.75 195 6/15/2023
1.0.74 2,121 6/14/2023
1.0.73 6,343 6/12/2023
1.0.72 2,132 6/9/2023
1.0.71 214 6/9/2023
1.0.70 3,570 6/8/2023
1.0.69 201 6/8/2023
1.0.68 199 6/8/2023
1.0.67 4,574 6/7/2023
1.0.66 213 6/7/2023
1.0.65 201 6/7/2023
1.0.64 200 6/7/2023
1.0.63 2,645 6/6/2023
1.0.62 219 6/6/2023
1.0.61 213 6/6/2023
1.0.60 20,658 5/30/2023
1.0.59 212 5/30/2023
1.0.58 216 5/30/2023
1.0.57 4,825 5/29/2023
1.0.56 208 5/29/2023
1.0.55 220 5/29/2023
1.0.54 3,998 5/26/2023
1.0.53 215 5/26/2023
1.0.52 230 5/26/2023
1.0.51 6,438 5/25/2023
1.0.50 209 5/25/2023
1.0.49 212 5/25/2023
1.0.48 2,889 5/24/2023
1.0.46 216 5/24/2023
1.0.45 217 5/24/2023
1.0.43 3,595 5/23/2023
1.0.42 5,594 5/22/2023
1.0.41 228 5/22/2023
1.0.40 5,619 5/18/2023
1.0.39 3,758 5/17/2023
1.0.38 191 5/17/2023
1.0.37 270 5/17/2023
1.0.36 10,736 4/25/2023
1.0.35 1,359 4/24/2023
1.0.34 1,955 4/21/2023
1.0.33 246 4/21/2023
1.0.32 1,766 4/20/2023
1.0.31 2,381 4/19/2023
1.0.30 1,083 4/18/2023
1.0.29 1,715 4/17/2023
1.0.28 1,249 4/14/2023
1.0.27 1,238 4/13/2023
1.0.26 1,257 4/12/2023
1.0.25 1,565 4/11/2023
1.0.24 318 4/11/2023
1.0.23 1,721 4/10/2023
1.0.22 2,499 4/4/2023
1.0.21 231 4/4/2023
1.0.20 1,017 4/3/2023
1.0.19 265 4/3/2023
1.0.18 279 4/3/2023
1.0.17 270 4/3/2023
1.0.16 255 4/3/2023
1.0.15 261 4/3/2023
1.0.14 265 4/3/2023
1.0.13 256 4/3/2023
1.0.12 253 4/3/2023
1.0.11 2,103 3/23/2023
1.0.10 591 3/13/2023
1.0.9 348 3/12/2023
1.0.8 282 3/11/2023
1.0.7 274 3/10/2023
1.0.5 457 2/22/2023
1.0.4 505 2/19/2023
1.0.3 489 2/18/2023
1.0.1 419 2/12/2023