Soenneker.Blazor.Utils.ResourceLoader 3.0.1461

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

A Blazor JavaScript interop for dynamically loading scripts, styles, and modules

Overview

The ResourceLoader class is designed to manage the loading and initialization of scripts, styles, and JavaScript modules in a Blazor application. It provides methods to asynchronously load scripts and styles, wait for variables to be available, and manage the lifecycle of JavaScript modules.

It ensures that each resource is only loaded once (through this interop), even with multiple concurrent calls.

Table of Contents

Installation

dotnet add package Soenneker.Blazor.Utils.ResourceLoader

Usage

Loading Scripts

To load a script, use the LoadScript method. It injects the file into the DOM.

await resourceLoader.LoadScript("https://example.com/script.js");

LoadScriptAndWaitForVariable is also available. It waits for a specified JavaScript variable to be available:

await resourceLoader.LoadScriptAndWaitForVariable("https://example.com/script.js", "variableName");

Loading Styles

To load a style, use the LoadStyle method. It injects the file into the DOM.

await resourceLoader.LoadStyle("https://example.com/style.css");

Importing Modules

To import a JavaScript module, use the ImportModule method:

var module = await resourceLoader.ImportModule("moduleName");

You probably want ImportModuleAndWaitUntilAvailable, as that waits until the module is loaded, and accessible:

// 'ResourceLoader' is the name of the export class
var module = await resourceLoader.ImportModuleAndWaitUntilAvailable("Soenneker.Blazor.Utils.ResourceLoader/resourceloader.js", "ResourceLoader");

Waiting for Variables

To wait for a JavaScript variable to be available, use the WaitForVariable method:

await resourceLoader.WaitForVariable("variableName");

Disposing Modules

Be sure to dispose of a module after you're done interacting with it. To dispose of a JavaScript module, use the DisposeModule method:

await resourceLoader.DisposeModule("moduleName");
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 (18)

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

Package Downloads
Soenneker.Blazor.TomSelect

A Blazor interop library for the select user control library, Tom Select

Soenneker.Blazor.FilePond

A Blazor interop library for the file upload library FilePond

Soenneker.Blazor.Clarity

A small Blazor interop library that sets up Microsoft Clarity

Soenneker.Blazor.Masonry

A lightweight, responsive **Blazor** component for Masonry (the cascading grid layout library) — perfect for image grids, cards, and dynamic content.

Soenneker.Blazor.LogJson

A Blazor interop library that logs JSON (like HTTP requests/responses) within the browser

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.1467 0 5/28/2025
3.0.1466 0 5/27/2025
3.0.1465 3 5/27/2025
3.0.1464 62 5/27/2025
3.0.1463 105 5/27/2025
3.0.1462 288 5/27/2025
3.0.1461 897 5/23/2025
3.0.1460 343 5/23/2025
3.0.1459 229 5/23/2025
3.0.1458 398 5/22/2025
3.0.1457 306 5/22/2025
3.0.1456 741 5/18/2025
3.0.1455 296 5/18/2025
3.0.1454 362 5/18/2025
3.0.1453 660 5/14/2025
3.0.1452 387 5/14/2025
3.0.1451 1,684 5/8/2025
3.0.1450 332 5/8/2025
3.0.1449 328 5/8/2025
3.0.1448 326 5/8/2025
3.0.1447 508 5/7/2025
3.0.1446 439 5/7/2025
3.0.1445 1,173 5/5/2025
3.0.1444 353 5/5/2025
3.0.1443 126 5/5/2025
3.0.1442 236 5/5/2025
3.0.1441 282 5/5/2025
3.0.1440 455 5/5/2025
3.0.1439 421 5/5/2025
3.0.1438 916 5/5/2025
3.0.1437 2,386 4/9/2025
3.0.1436 423 4/9/2025
3.0.1435 296 4/9/2025
3.0.1434 273 4/8/2025
3.0.1433 350 4/8/2025
3.0.1432 142 4/8/2025
3.0.1431 144 4/8/2025
3.0.1430 594 4/8/2025
3.0.1429 411 4/8/2025
3.0.1428 217 4/8/2025
3.0.1427 205 4/8/2025
3.0.1426 193 4/8/2025
3.0.1425 203 4/8/2025
3.0.1424 202 4/8/2025
3.0.1423 203 4/8/2025
3.0.1422 209 4/8/2025
3.0.1421 159 4/7/2025
3.0.1420 187 4/7/2025
3.0.1419 146 4/7/2025
3.0.1418 248 4/7/2025
3.0.1417 2,181 4/7/2025
3.0.1416 154 4/7/2025
3.0.1415 898 4/7/2025
3.0.1414 146 4/7/2025
3.0.1413 172 4/7/2025
3.0.1412 152 4/7/2025
3.0.1411 748 4/7/2025
3.0.1410 158 4/7/2025
3.0.1409 172 4/7/2025
3.0.1408 149 4/7/2025
3.0.1407 409 4/7/2025
3.0.1406 144 4/7/2025
3.0.1405 410 4/7/2025
3.0.1404 540 4/7/2025
3.0.1403 327 4/7/2025
3.0.1402 369 4/7/2025
3.0.1401 392 4/7/2025
3.0.1400 328 4/6/2025
3.0.1399 287 4/6/2025
3.0.1398 231 4/6/2025
3.0.1397 273 4/6/2025
3.0.1396 492 4/6/2025
3.0.1395 366 4/6/2025
3.0.1394 158 4/6/2025
3.0.1393 200 4/6/2025
3.0.1392 92 4/6/2025
3.0.1391 502 4/6/2025
3.0.1390 97 4/6/2025
3.0.1389 565 4/5/2025
3.0.1388 477 4/5/2025
3.0.1387 158 4/5/2025
3.0.1386 129 4/5/2025
3.0.1385 151 4/5/2025
3.0.1384 197 4/5/2025
3.0.1383 155 4/5/2025
3.0.1382 97 4/5/2025
3.0.1381 251 4/5/2025
3.0.1380 83 4/5/2025
3.0.1379 99 4/5/2025
3.0.1378 112 4/5/2025
3.0.1377 1,177 4/4/2025
3.0.1376 136 4/4/2025
3.0.1375 2,062 4/4/2025
3.0.1374 206 4/4/2025
3.0.1373 407 4/4/2025
3.0.1372 143 4/4/2025
3.0.1371 431 4/3/2025
3.0.1370 573 4/1/2025
3.0.1369 236 4/1/2025
3.0.1368 238 4/1/2025
3.0.1367 137 4/1/2025
3.0.1366 280 4/1/2025
3.0.1365 136 4/1/2025
3.0.1364 374 4/1/2025
3.0.1363 511 4/1/2025
3.0.1362 474 4/1/2025
3.0.1361 241 4/1/2025
3.0.1360 289 4/1/2025
3.0.1359 223 4/1/2025
3.0.1358 376 4/1/2025
3.0.1357 136 4/1/2025
3.0.1356 292 3/31/2025
3.0.1355 132 3/31/2025
3.0.1354 414 3/31/2025
3.0.1353 137 3/31/2025
3.0.1352 577 3/31/2025
3.0.1351 488 3/31/2025
3.0.1350 492 3/29/2025
3.0.1349 201 3/29/2025
3.0.1348 205 3/29/2025
3.0.1347 233 3/29/2025
3.0.1346 75 3/29/2025
3.0.1345 219 3/29/2025
3.0.1344 78 3/29/2025
3.0.1343 720 3/27/2025
3.0.1342 794 3/26/2025
3.0.1341 597 3/25/2025
3.0.1340 554 3/25/2025
3.0.1339 452 3/25/2025
3.0.1338 622 3/25/2025
3.0.1337 450 3/25/2025
3.0.1336 705 3/25/2025
3.0.1335 464 3/25/2025
3.0.1334 1,040 3/22/2025
3.0.1333 211 3/21/2025
3.0.1332 219 3/21/2025
3.0.1331 86 3/21/2025
3.0.1330 283 3/21/2025
3.0.1329 100 3/21/2025
3.0.1328 254 3/21/2025
3.0.1327 421 3/21/2025
3.0.1326 560 3/18/2025
3.0.1325 282 3/18/2025
3.0.1324 229 3/18/2025
3.0.1323 263 3/18/2025
3.0.1322 212 3/18/2025
3.0.1321 134 3/18/2025
3.0.1320 505 3/18/2025
3.0.1319 258 3/18/2025
3.0.1318 129 3/18/2025
3.0.1317 348 3/18/2025
3.0.1316 132 3/18/2025
3.0.1315 514 3/15/2025
3.0.1314 148 3/15/2025
3.0.1313 167 3/15/2025
3.0.1312 58 3/15/2025
3.0.1311 222 3/15/2025
3.0.1310 59 3/15/2025
3.0.1309 357 3/15/2025
3.0.1308 97 3/15/2025
3.0.1307 57 3/15/2025
3.0.1306 860 3/12/2025
3.0.1305 292 3/12/2025
3.0.1304 281 3/12/2025
3.0.1303 143 3/12/2025
3.0.1302 258 3/12/2025
3.0.1301 214 3/12/2025
3.0.1300 392 3/12/2025
3.0.1299 151 3/12/2025
3.0.1298 416 3/12/2025
3.0.1297 187 3/12/2025
3.0.1296 148 3/12/2025
3.0.1295 409 3/11/2025
3.0.1294 162 3/11/2025
3.0.1293 511 3/11/2025
3.0.1292 157 3/11/2025
3.0.1291 526 3/11/2025
3.0.1290 162 3/11/2025
3.0.1289 154 3/11/2025
3.0.1288 638 3/11/2025
3.0.1287 155 3/11/2025
3.0.1286 439 3/11/2025
3.0.1285 625 3/11/2025
3.0.1284 163 3/11/2025
3.0.1283 478 3/11/2025
3.0.1282 161 3/11/2025
3.0.1281 585 3/7/2025
3.0.1280 377 3/7/2025
3.0.1279 302 3/7/2025
3.0.1278 199 3/7/2025
3.0.1277 393 3/7/2025
3.0.1276 197 3/7/2025
3.0.1275 455 3/7/2025
3.0.1274 385 3/7/2025
3.0.1273 460 3/7/2025
3.0.1272 603 3/2/2025
3.0.1271 202 3/2/2025
3.0.1270 303 3/2/2025
3.0.1269 105 3/2/2025
3.0.1268 230 3/2/2025
3.0.1267 144 3/2/2025
3.0.1266 300 3/2/2025
3.0.1265 89 3/2/2025
3.0.1264 489 3/2/2025
3.0.1263 92 3/2/2025
3.0.1262 503 3/2/2025
3.0.1261 90 3/2/2025
3.0.1260 231 3/2/2025
3.0.1259 88 3/2/2025
3.0.1258 510 3/1/2025
3.0.1257 323 3/1/2025
3.0.1256 90 3/1/2025
3.0.1255 315 3/1/2025
3.0.1254 126 3/1/2025
3.0.1253 93 3/1/2025
3.0.1252 190 3/1/2025
3.0.1251 93 3/1/2025
3.0.1250 509 3/1/2025
3.0.1249 83 3/1/2025
3.0.1248 85 3/1/2025
3.0.1247 687 3/1/2025
3.0.1246 88 3/1/2025
3.0.1245 701 2/26/2025
3.0.1244 135 2/26/2025
3.0.1243 89 2/26/2025
3.0.1242 200 2/26/2025
3.0.1241 78 2/26/2025
3.0.1240 295 2/25/2025
3.0.1239 77 2/25/2025
3.0.1238 270 2/25/2025
3.0.1237 81 2/25/2025
3.0.1236 473 2/25/2025
3.0.1235 83 2/25/2025
3.0.1234 421 2/25/2025
3.0.1233 78 2/25/2025
3.0.1232 269 2/25/2025
3.0.1231 365 2/24/2025
3.0.1230 714 2/23/2025
3.0.1229 354 2/23/2025
3.0.1228 99 2/23/2025
3.0.1227 163 2/23/2025
3.0.1226 85 2/23/2025
3.0.1225 247 2/22/2025
3.0.1224 88 2/22/2025
3.0.1223 440 2/22/2025
3.0.1222 87 2/22/2025
3.0.1221 186 2/22/2025
3.0.1220 598 2/22/2025
3.0.1219 237 2/22/2025
3.0.1218 89 2/22/2025
3.0.1217 194 2/22/2025
3.0.1216 82 2/22/2025
3.0.1215 403 2/22/2025
3.0.1214 184 2/22/2025
3.0.1213 197 2/22/2025
3.0.1212 292 2/22/2025
3.0.1211 86 2/22/2025
3.0.1210 231 2/22/2025
3.0.1209 273 2/22/2025
3.0.1208 264 2/21/2025
3.0.1207 82 2/21/2025
3.0.1206 86 2/21/2025
3.0.1205 388 2/21/2025
3.0.1204 87 2/21/2025
3.0.1203 232 2/21/2025
3.0.1202 89 2/21/2025
3.0.1201 276 2/21/2025
3.0.1200 945 2/19/2025
3.0.1199 302 2/19/2025
3.0.1198 92 2/19/2025
3.0.1197 178 2/19/2025
3.0.1196 93 2/19/2025
3.0.1195 157 2/19/2025
3.0.1194 94 2/19/2025
3.0.1193 190 2/19/2025
3.0.1192 92 2/19/2025
3.0.1191 215 2/19/2025
3.0.1190 86 2/19/2025
3.0.1189 272 2/19/2025
3.0.1188 228 2/18/2025
3.0.1187 89 2/18/2025
3.0.1186 657 2/18/2025
3.0.1185 118 2/18/2025
3.0.1184 100 2/18/2025
3.0.1183 628 2/18/2025
3.0.1182 88 2/18/2025
3.0.1181 265 2/18/2025
3.0.1180 87 2/18/2025
3.0.1179 713 2/16/2025
3.0.1178 421 2/14/2025
3.0.1177 207 2/14/2025
3.0.1176 92 2/14/2025
3.0.1175 257 2/14/2025
3.0.1174 193 2/14/2025
3.0.1173 91 2/14/2025
3.0.1172 650 2/13/2025
3.0.1171 94 2/13/2025
3.0.1170 206 2/13/2025
3.0.1169 778 2/13/2025
3.0.1168 330 2/12/2025
3.0.1167 212 2/12/2025
3.0.1166 263 2/12/2025
3.0.1165 93 2/12/2025
3.0.1164 190 2/12/2025
3.0.1163 96 2/12/2025
3.0.1162 417 2/12/2025
3.0.1161 103 2/12/2025
3.0.1160 184 2/12/2025
3.0.1159 93 2/12/2025
3.0.1158 279 2/12/2025
3.0.1157 94 2/12/2025
3.0.1156 316 2/12/2025
3.0.1155 94 2/12/2025
3.0.1154 292 2/12/2025
3.0.1153 86 2/12/2025
3.0.1152 244 2/12/2025
3.0.1151 83 2/12/2025
3.0.1150 323 2/11/2025
3.0.1149 90 2/11/2025
3.0.1148 455 2/11/2025
3.0.1147 440 2/11/2025
3.0.1146 87 2/11/2025
3.0.1145 92 2/11/2025
3.0.1144 375 2/11/2025
3.0.1143 94 2/11/2025
3.0.1142 257 2/11/2025
3.0.1141 728 2/11/2025
3.0.1140 98 2/11/2025
3.0.1139 256 2/11/2025
3.0.1138 91 2/11/2025
3.0.1137 204 2/11/2025
3.0.1136 93 2/11/2025
3.0.1135 199 2/11/2025
3.0.1134 87 2/11/2025
3.0.1133 272 2/10/2025
3.0.1132 91 2/10/2025
3.0.1131 185 2/10/2025
3.0.1130 92 2/10/2025
3.0.1129 417 2/10/2025
3.0.1128 92 2/10/2025
3.0.1127 90 2/10/2025
3.0.1126 202 2/10/2025
3.0.1125 308 2/10/2025
3.0.1124 389 2/10/2025
3.0.1123 157 2/9/2025
3.0.1122 437 2/9/2025
3.0.1121 142 2/9/2025
3.0.1120 92 2/9/2025
3.0.1119 377 2/9/2025
3.0.1118 91 2/9/2025
3.0.1117 1,097 2/7/2025
3.0.1116 89 2/7/2025
3.0.1115 407 2/7/2025
3.0.1114 81 2/7/2025
3.0.1113 287 2/7/2025
3.0.1112 260 2/7/2025
3.0.1111 88 2/7/2025
3.0.1110 238 2/7/2025
3.0.1109 95 2/7/2025
3.0.1108 187 2/7/2025
3.0.1107 137 2/7/2025
3.0.1106 1,003 2/7/2025
3.0.1105 173 2/7/2025
3.0.1104 211 2/7/2025
3.0.1103 82 2/7/2025
3.0.1102 155 2/6/2025
3.0.1101 705 2/5/2025
3.0.1100 279 2/5/2025
3.0.1099 115 2/5/2025
3.0.1098 211 2/5/2025
3.0.1097 95 2/5/2025
3.0.1096 198 2/5/2025
3.0.1095 348 2/5/2025
3.0.1094 251 2/5/2025
3.0.1093 91 2/5/2025
3.0.1092 132 2/5/2025
3.0.1091 82 2/5/2025
3.0.1090 324 2/5/2025
3.0.1089 80 2/5/2025
3.0.1088 166 2/5/2025
3.0.1087 86 2/5/2025
3.0.1086 96 2/5/2025
3.0.1085 248 2/5/2025
3.0.1084 89 2/5/2025
3.0.1083 286 2/5/2025
3.0.1082 171 2/5/2025
3.0.1081 456 2/5/2025
3.0.1080 77 2/5/2025
3.0.1079 168 2/5/2025
3.0.1078 937 1/28/2025
3.0.1077 135 1/28/2025
3.0.1076 167 1/28/2025
3.0.1075 81 1/28/2025
3.0.1074 170 1/28/2025
3.0.1073 80 1/28/2025
3.0.1072 157 1/28/2025
3.0.1071 86 1/28/2025
3.0.1070 231 1/28/2025
3.0.1069 79 1/28/2025
3.0.1068 230 1/28/2025
3.0.1067 64 1/28/2025
3.0.1066 279 1/28/2025
3.0.1065 73 1/28/2025
3.0.1064 243 1/28/2025
3.0.1063 75 1/28/2025
3.0.1062 193 1/28/2025
3.0.1061 349 1/28/2025
3.0.1060 78 1/28/2025
3.0.1059 382 1/28/2025
3.0.1058 79 1/28/2025
3.0.1057 195 1/27/2025
3.0.1056 75 1/27/2025
3.0.1055 304 1/27/2025
3.0.1054 227 1/27/2025
3.0.1053 247 1/27/2025
3.0.1052 74 1/27/2025
3.0.1051 164 1/27/2025
3.0.1050 593 1/26/2025
3.0.1049 174 1/26/2025
3.0.1048 204 1/26/2025
3.0.1047 236 1/26/2025
3.0.1046 79 1/26/2025
3.0.1045 149 1/26/2025
3.0.1044 87 1/26/2025
3.0.1043 231 1/26/2025
3.0.1042 82 1/26/2025
3.0.1041 89 1/26/2025
3.0.1040 81 1/26/2025
3.0.1039 268 1/26/2025
3.0.1038 79 1/26/2025
3.0.1037 261 1/26/2025
3.0.1036 83 1/26/2025
3.0.1035 335 1/26/2025
3.0.1034 83 1/26/2025
3.0.1033 281 1/25/2025
3.0.1032 387 1/25/2025
3.0.1031 86 1/25/2025
3.0.1030 363 1/25/2025
3.0.1029 78 1/25/2025
3.0.1028 269 1/25/2025
3.0.1027 83 1/25/2025
3.0.1026 78 1/25/2025
3.0.1025 469 1/25/2025
3.0.1024 80 1/25/2025
3.0.1023 209 1/25/2025
3.0.1022 601 1/24/2025
3.0.1021 196 1/24/2025
3.0.1020 212 1/24/2025
3.0.1019 119 1/24/2025
3.0.1018 73 1/24/2025
3.0.1017 153 1/24/2025
3.0.1016 73 1/24/2025
3.0.1015 475 1/24/2025
3.0.1014 76 1/24/2025
3.0.1013 137 1/24/2025
3.0.1012 77 1/24/2025
3.0.1011 285 1/24/2025
3.0.1010 73 1/24/2025
3.0.1009 694 1/23/2025
3.0.1008 171 1/23/2025
3.0.1007 192 1/23/2025
3.0.1006 174 1/23/2025
3.0.1005 73 1/23/2025
3.0.1004 140 1/23/2025
3.0.1003 506 1/22/2025
3.0.1002 251 1/22/2025
3.0.1001 151 1/22/2025
3.0.1000 85 1/22/2025
3.0.999 81 1/22/2025
3.0.998 206 1/22/2025
3.0.997 445 1/21/2025
3.0.996 171 1/21/2025
3.0.995 88 1/21/2025
3.0.994 349 1/21/2025
3.0.993 340 1/21/2025
3.0.992 326 1/21/2025
3.0.991 87 1/21/2025
3.0.990 545 1/21/2025
3.0.989 83 1/21/2025
3.0.988 529 1/21/2025
3.0.987 128 1/20/2025
3.0.986 139 1/20/2025
3.0.985 79 1/20/2025
3.0.984 348 1/20/2025
3.0.983 75 1/20/2025
3.0.982 400 1/20/2025
3.0.981 80 1/20/2025
3.0.980 512 1/20/2025
3.0.979 79 1/20/2025
3.0.978 315 1/20/2025
3.0.977 77 1/20/2025
3.0.976 82 1/20/2025
3.0.975 278 1/19/2025
3.0.974 84 1/19/2025
3.0.973 467 1/19/2025
3.0.972 73 1/19/2025
3.0.971 219 1/19/2025
3.0.970 83 1/19/2025
3.0.969 490 1/19/2025
3.0.968 70 1/19/2025
3.0.967 221 1/19/2025
3.0.966 76 1/19/2025
3.0.965 72 1/19/2025
3.0.964 476 1/19/2025
3.0.963 71 1/19/2025
3.0.962 314 1/18/2025
3.0.961 82 1/18/2025
3.0.960 112 1/18/2025
3.0.959 160 1/18/2025
3.0.958 95 1/18/2025
3.0.957 340 1/18/2025
3.0.956 272 1/18/2025
3.0.955 110 1/18/2025
3.0.954 73 1/18/2025
3.0.953 285 1/17/2025
3.0.952 151 1/17/2025
3.0.951 71 1/17/2025
3.0.950 116 1/17/2025
3.0.949 107 1/17/2025
3.0.948 165 1/17/2025
3.0.947 73 1/17/2025
3.0.946 357 1/17/2025
3.0.945 95 1/17/2025
3.0.944 80 1/17/2025
3.0.943 529 1/17/2025
3.0.942 74 1/17/2025
3.0.941 320 1/16/2025
3.0.940 76 1/16/2025
3.0.939 224 1/16/2025
3.0.938 254 1/16/2025
3.0.937 261 1/16/2025
3.0.936 110 1/16/2025
3.0.935 106 1/16/2025
3.0.934 415 1/16/2025
3.0.933 72 1/16/2025
3.0.932 107 1/16/2025
3.0.931 156 1/16/2025
3.0.930 77 1/16/2025
3.0.929 280 1/16/2025
3.0.928 208 1/16/2025
3.0.927 172 1/16/2025
3.0.926 467 1/15/2025
3.0.925 75 1/15/2025
3.0.924 108 1/15/2025
3.0.923 74 1/15/2025
3.0.922 156 1/15/2025
3.0.921 276 1/15/2025
3.0.920 77 1/15/2025
3.0.919 153 1/15/2025
3.0.918 304 1/15/2025
3.0.917 197 1/15/2025
3.0.916 74 1/15/2025
3.0.915 296 1/15/2025
3.0.914 172 1/15/2025
3.0.913 71 1/15/2025
3.0.912 216 1/15/2025
3.0.911 60 1/15/2025
3.0.910 194 1/15/2025
3.0.909 54 1/15/2025
3.0.908 126 1/15/2025
3.0.907 36 1/15/2025
3.0.906 39 1/15/2025
3.0.905 254 1/14/2025
3.0.904 906 1/14/2025
3.0.903 53 1/14/2025
3.0.902 330 1/14/2025
3.0.901 58 1/14/2025
3.0.900 300 1/14/2025
3.0.899 184 1/14/2025
3.0.898 261 1/13/2025
3.0.897 164 1/13/2025
3.0.896 68 1/13/2025
3.0.895 226 1/13/2025
3.0.894 63 1/13/2025
3.0.893 177 1/13/2025
3.0.892 79 1/13/2025
3.0.891 73 1/13/2025
3.0.890 249 1/13/2025
3.0.889 67 1/13/2025
3.0.888 249 1/13/2025
3.0.887 63 1/13/2025
3.0.886 213 1/12/2025
3.0.885 386 1/12/2025
3.0.884 185 1/11/2025
3.0.883 75 1/11/2025
3.0.882 185 1/11/2025
3.0.881 83 1/11/2025
3.0.880 74 1/11/2025
3.0.879 228 1/11/2025
3.0.878 339 1/11/2025
3.0.877 78 1/11/2025
3.0.876 144 1/11/2025
3.0.875 72 1/11/2025
3.0.874 217 1/10/2025
3.0.873 82 1/10/2025
3.0.872 431 1/10/2025
3.0.871 82 1/10/2025
3.0.870 200 1/10/2025
3.0.869 82 1/10/2025
3.0.868 88 1/10/2025
3.0.867 674 1/8/2025
3.0.866 365 1/3/2025
3.0.865 298 1/3/2025
3.0.864 110 1/3/2025
3.0.863 278 1/3/2025
3.0.862 108 1/3/2025
3.0.861 297 1/3/2025
3.0.860 153 1/3/2025
3.0.859 109 1/3/2025
3.0.858 405 1/3/2025
3.0.857 129 1/3/2025
3.0.856 83 1/3/2025
3.0.855 307 1/2/2025
3.0.854 85 1/2/2025
3.0.853 257 1/2/2025
3.0.852 94 1/2/2025
3.0.851 86 1/2/2025
3.0.850 88 1/2/2025
3.0.849 326 1/2/2025
3.0.848 732 1/2/2025
3.0.847 93 1/2/2025
3.0.846 229 1/1/2025
3.0.845 87 1/1/2025
3.0.844 238 1/1/2025
3.0.843 102 1/1/2025
3.0.842 218 1/1/2025
3.0.841 236 1/1/2025
3.0.840 93 1/1/2025
3.0.839 330 1/1/2025
3.0.838 99 1/1/2025
3.0.837 96 1/1/2025
3.0.836 289 1/1/2025
3.0.835 116 1/1/2025
3.0.834 266 1/1/2025
3.0.833 89 1/1/2025
3.0.832 237 12/31/2024
3.0.831 87 12/31/2024
3.0.830 96 12/31/2024
3.0.829 147 12/31/2024
3.0.828 96 12/31/2024
3.0.827 88 12/31/2024
3.0.826 229 12/31/2024
3.0.825 207 12/31/2024
3.0.824 201 12/31/2024
3.0.823 162 12/31/2024
3.0.822 107 12/31/2024
3.0.821 540 12/31/2024
3.0.820 111 12/31/2024
3.0.819 552 12/31/2024
3.0.818 95 12/31/2024
3.0.817 142 12/31/2024
3.0.816 81 12/31/2024
3.0.815 502 12/31/2024
3.0.814 268 12/31/2024
3.0.813 76 12/31/2024
3.0.812 250 12/31/2024
3.0.811 86 12/31/2024
3.0.810 77 12/31/2024
3.0.809 88 12/31/2024
3.0.808 814 12/28/2024
3.0.807 161 12/28/2024
3.0.806 163 12/28/2024
3.0.805 86 12/28/2024
3.0.804 305 12/28/2024
3.0.803 88 12/28/2024
3.0.802 180 12/28/2024
3.0.801 79 12/28/2024
3.0.800 495 12/27/2024
3.0.799 153 12/27/2024
3.0.798 88 12/27/2024
3.0.797 601 12/25/2024
3.0.796 156 12/25/2024
3.0.795 184 12/25/2024
3.0.794 138 12/24/2024
3.0.793 300 12/24/2024
3.0.792 82 12/24/2024
3.0.791 138 12/24/2024
3.0.790 392 12/24/2024
3.0.789 78 12/24/2024
3.0.788 236 12/24/2024
3.0.787 84 12/24/2024
3.0.786 349 12/24/2024
3.0.785 74 12/24/2024
3.0.784 292 12/24/2024
3.0.783 80 12/24/2024
3.0.782 384 12/24/2024
3.0.781 155 12/24/2024
3.0.780 266 12/24/2024
3.0.779 81 12/24/2024
3.0.778 77 12/24/2024
3.0.777 82 12/24/2024
3.0.776 79 12/24/2024
3.0.775 287 12/24/2024
3.0.774 81 12/24/2024
3.0.773 239 12/23/2024
3.0.772 85 12/23/2024
3.0.771 244 12/23/2024
3.0.770 85 12/23/2024
3.0.769 120 12/23/2024
3.0.768 248 12/23/2024
3.0.767 83 12/23/2024
3.0.766 332 12/23/2024
3.0.765 86 12/23/2024
3.0.764 241 12/23/2024
3.0.763 163 12/23/2024
3.0.762 92 12/23/2024
3.0.761 434 12/23/2024
3.0.760 145 12/22/2024
3.0.759 85 12/22/2024
3.0.758 267 12/22/2024
3.0.757 101 12/22/2024
3.0.756 238 12/22/2024
3.0.755 92 12/22/2024
3.0.754 185 12/22/2024
3.0.753 304 12/22/2024
3.0.752 85 12/22/2024
3.0.751 270 12/22/2024
3.0.750 89 12/22/2024
3.0.749 409 12/22/2024
3.0.748 112 12/22/2024
3.0.747 82 12/22/2024
3.0.746 287 12/21/2024
3.0.745 161 12/21/2024
3.0.744 86 12/21/2024
3.0.743 159 12/21/2024
3.0.742 86 12/21/2024
3.0.741 172 12/21/2024
3.0.740 91 12/21/2024
3.0.739 142 12/21/2024
3.0.738 87 12/21/2024
3.0.737 370 12/21/2024
3.0.736 137 12/21/2024
3.0.735 84 12/21/2024
3.0.734 377 12/21/2024
3.0.733 87 12/21/2024
3.0.732 88 12/21/2024
3.0.731 198 12/20/2024
3.0.730 84 12/20/2024
3.0.729 197 12/20/2024
3.0.728 120 12/20/2024
3.0.727 172 12/20/2024
3.0.726 89 12/20/2024
3.0.725 154 12/20/2024
3.0.724 85 12/20/2024
3.0.723 330 12/20/2024
3.0.722 85 12/20/2024
3.0.721 312 12/19/2024
3.0.720 122 12/19/2024
3.0.719 79 12/19/2024
3.0.718 212 12/19/2024
3.0.717 212 12/19/2024
3.0.716 80 12/19/2024
3.0.715 270 12/19/2024
3.0.714 82 12/19/2024
3.0.713 202 12/18/2024
3.0.712 1,863 12/17/2024
3.0.711 189 12/17/2024
3.0.709 251 12/17/2024
3.0.708 218 12/17/2024
3.0.707 193 12/17/2024
3.0.706 227 12/16/2024
3.0.705 173 12/16/2024
3.0.704 97 12/16/2024
3.0.703 492 12/10/2024
3.0.702 206 12/10/2024
3.0.701 88 12/10/2024
3.0.700 177 12/10/2024
3.0.699 269 12/10/2024
3.0.698 152 12/9/2024
3.0.697 84 12/9/2024
3.0.696 315 12/9/2024
3.0.695 87 12/9/2024
3.0.694 421 12/9/2024
3.0.693 243 12/9/2024
3.0.692 80 12/9/2024
3.0.691 222 12/9/2024
3.0.690 77 12/9/2024
3.0.689 273 12/9/2024
3.0.688 456 12/7/2024
3.0.687 184 12/7/2024
3.0.686 189 12/6/2024
3.0.685 91 12/6/2024
3.0.684 190 12/6/2024
3.0.683 90 12/6/2024
3.0.682 126 12/6/2024
3.0.681 181 12/6/2024
3.0.680 266 12/6/2024
3.0.679 93 12/6/2024
3.0.678 233 12/6/2024
3.0.677 201 12/6/2024
3.0.676 89 12/6/2024
3.0.675 206 12/6/2024
3.0.674 91 12/6/2024
3.0.673 189 12/6/2024
3.0.672 236 12/6/2024
3.0.671 173 12/6/2024
3.0.670 282 12/6/2024
3.0.669 92 12/6/2024
3.0.668 252 12/6/2024
3.0.667 96 12/6/2024
3.0.666 298 12/6/2024
3.0.665 90 12/6/2024
3.0.664 120 12/6/2024
3.0.663 187 12/6/2024
3.0.662 89 12/6/2024
3.0.661 226 12/6/2024
3.0.660 96 12/6/2024
3.0.659 223 12/6/2024
3.0.658 208 12/5/2024
3.0.657 95 12/5/2024
3.0.656 266 12/5/2024
3.0.655 91 12/5/2024
3.0.654 303 12/5/2024
3.0.653 99 12/5/2024
3.0.652 1,072 12/5/2024
3.0.651 301 12/5/2024
3.0.650 331 12/5/2024
3.0.649 398 12/5/2024
3.0.648 431 12/4/2024
3.0.647 156 12/4/2024
3.0.646 426 12/4/2024
3.0.645 210 12/4/2024
3.0.644 398 12/4/2024
3.0.643 184 12/4/2024
3.0.642 278 12/3/2024
3.0.641 444 12/3/2024
3.0.640 92 12/3/2024
3.0.639 136 12/3/2024
3.0.638 86 12/3/2024
3.0.637 415 12/3/2024
3.0.636 85 12/3/2024
3.0.635 501 12/3/2024
3.0.634 190 12/3/2024
3.0.633 85 12/3/2024
3.0.632 148 12/2/2024
3.0.631 282 12/2/2024
3.0.630 170 12/2/2024
3.0.629 85 12/2/2024
3.0.628 245 12/2/2024
3.0.627 222 12/2/2024
3.0.626 93 12/2/2024
3.0.625 415 12/2/2024
3.0.624 152 12/2/2024
3.0.623 96 12/2/2024
3.0.622 279 12/2/2024
3.0.621 87 12/2/2024
3.0.620 195 12/1/2024
3.0.619 149 12/1/2024
3.0.618 94 12/1/2024
3.0.617 689 12/1/2024
3.0.616 146 12/1/2024
3.0.615 282 12/1/2024
3.0.614 406 11/29/2024
3.0.613 144 11/29/2024
3.0.612 227 11/29/2024
3.0.611 92 11/29/2024
3.0.610 143 11/29/2024
3.0.609 228 11/29/2024
3.0.608 90 11/29/2024
3.0.607 366 11/29/2024
3.0.606 451 11/21/2024
3.0.605 234 11/21/2024
3.0.604 162 11/21/2024
3.0.603 100 11/21/2024
3.0.602 210 11/21/2024
3.0.601 87 11/21/2024
3.0.600 704 11/20/2024
3.0.599 108 11/20/2024
3.0.598 299 11/20/2024
3.0.597 186 11/20/2024
3.0.596 156 11/20/2024
3.0.595 201 11/20/2024
3.0.594 343 11/20/2024
3.0.593 330 11/20/2024
3.0.592 90 11/20/2024
3.0.591 274 11/20/2024
3.0.590 306 11/19/2024
3.0.589 104 11/19/2024
3.0.588 204 11/19/2024
3.0.587 95 11/19/2024
3.0.586 82 11/19/2024
3.0.585 435 11/19/2024
3.0.584 336 11/19/2024
3.0.583 310 11/19/2024
3.0.582 269 11/19/2024
3.0.581 83 11/19/2024
3.0.580 86 11/19/2024
3.0.579 651 11/15/2024
3.0.578 116 11/15/2024
3.0.577 244 11/15/2024
3.0.576 83 11/15/2024
3.0.575 156 11/14/2024
3.0.574 85 11/14/2024
3.0.573 224 11/14/2024
3.0.572 90 11/14/2024
3.0.571 167 11/14/2024
3.0.570 96 11/14/2024
3.0.569 274 11/14/2024
3.0.568 98 11/14/2024
3.0.567 276 11/14/2024
3.0.566 303 11/14/2024
3.0.565 96 11/14/2024
3.0.564 240 11/14/2024
3.0.563 214 11/14/2024
3.0.561 486 11/14/2024
3.0.560 90 11/14/2024
3.0.559 301 11/14/2024
3.0.558 176 11/14/2024
3.0.557 90 11/14/2024
3.0.556 182 11/14/2024
3.0.555 96 11/14/2024
3.0.554 188 11/14/2024
3.0.553 94 11/14/2024
3.0.552 202 11/14/2024
2.1.551 2,020 11/13/2024
2.1.550 331 11/13/2024
2.1.549 317 11/13/2024
2.1.548 225 11/13/2024
2.1.547 409 11/13/2024
2.1.546 85 11/13/2024
2.1.545 259 11/13/2024
2.1.544 92 11/13/2024
2.1.543 698 11/12/2024
2.1.542 93 11/12/2024
2.1.541 1,187 11/9/2024
2.1.540 274 11/9/2024
2.1.539 90 11/9/2024
2.1.538 241 11/9/2024
2.1.537 88 11/9/2024
2.1.536 498 11/9/2024
2.1.535 90 11/9/2024
2.1.534 579 11/8/2024
2.1.533 94 11/8/2024
2.1.532 346 11/8/2024
2.1.531 191 11/8/2024
2.1.530 92 11/8/2024
2.1.529 324 11/8/2024
2.1.528 89 11/8/2024
2.1.527 623 11/8/2024
2.1.526 471 11/8/2024
2.1.525 96 11/8/2024
2.1.524 228 11/8/2024
2.1.523 808 11/6/2024
2.1.522 251 11/6/2024
2.1.521 562 11/1/2024
2.1.520 313 11/1/2024
2.1.519 264 11/1/2024
2.1.518 96 11/1/2024
2.1.517 399 11/1/2024
2.1.516 94 11/1/2024
2.1.515 273 11/1/2024
2.1.514 606 10/29/2024
2.1.513 175 10/29/2024
2.1.512 164 10/29/2024
2.1.511 94 10/29/2024
2.1.510 84 10/29/2024
2.1.509 486 10/29/2024
2.1.508 283 10/29/2024
2.1.507 88 10/29/2024
2.1.506 402 10/29/2024
2.1.505 86 10/29/2024
2.1.504 89 10/29/2024
2.1.503 231 10/29/2024
2.1.502 88 10/29/2024
2.1.501 646 10/29/2024
2.1.500 504 10/29/2024
2.1.499 87 10/29/2024
2.1.498 549 10/28/2024
2.1.497 86 10/28/2024
2.1.496 925 10/26/2024
2.1.495 159 10/26/2024
2.1.494 204 10/26/2024
2.1.493 91 10/26/2024
2.1.492 1,045 10/22/2024
2.1.491 259 10/22/2024
2.1.490 87 10/22/2024
2.1.489 308 10/22/2024
2.1.488 85 10/22/2024
2.1.487 489 10/22/2024
2.1.486 111 10/22/2024
2.1.485 422 10/22/2024
2.1.484 79 10/22/2024
2.1.483 496 10/22/2024
2.1.482 982 10/18/2024
2.1.481 403 10/17/2024
2.1.480 93 10/17/2024
2.1.479 327 10/17/2024
2.1.478 92 10/17/2024
2.1.477 1,018 10/15/2024
2.1.476 248 10/15/2024
2.1.475 340 10/15/2024
2.1.474 91 10/15/2024
2.1.473 584 10/14/2024
2.1.472 531 10/12/2024
2.1.471 190 10/12/2024
2.1.470 219 10/12/2024
2.1.469 94 10/12/2024
2.1.468 294 10/12/2024
2.1.467 106 10/12/2024
2.1.466 389 10/11/2024
2.1.465 95 10/11/2024
2.1.464 365 10/11/2024
2.1.463 99 10/11/2024
2.1.462 697 10/9/2024
2.1.461 188 10/9/2024
2.1.460 177 10/9/2024
2.1.459 96 10/9/2024
2.1.458 390 10/9/2024
2.1.457 98 10/9/2024
2.1.456 322 10/9/2024
2.1.455 96 10/9/2024
2.1.454 177 10/9/2024
2.1.453 197 10/9/2024
2.1.452 99 10/9/2024
2.1.451 544 10/8/2024
2.1.450 98 10/8/2024
2.1.449 518 10/8/2024
2.1.448 236 10/8/2024
2.1.447 96 10/8/2024
2.1.446 400 10/8/2024
2.1.445 104 10/8/2024
2.1.444 254 10/8/2024
2.1.443 135 10/8/2024
2.1.442 95 10/8/2024
2.1.441 527 10/8/2024
2.1.440 90 10/8/2024
2.1.439 608 10/3/2024
2.1.438 171 10/3/2024
2.1.437 287 10/3/2024
2.1.436 100 10/3/2024
2.1.435 289 10/3/2024
2.1.434 269 10/3/2024
2.1.433 100 10/3/2024
2.1.432 185 10/3/2024
2.1.431 189 10/3/2024
2.1.430 94 10/3/2024
2.1.429 347 10/3/2024
2.1.428 651 10/2/2024
2.1.427 112 10/2/2024
2.1.426 187 10/2/2024
2.1.425 102 10/2/2024
2.1.424 192 10/2/2024
2.1.423 269 10/2/2024
2.1.422 200 10/2/2024
2.1.421 112 10/2/2024
2.1.420 331 10/2/2024
2.1.419 97 10/2/2024
2.1.418 514 10/2/2024
2.1.417 105 10/2/2024
2.1.416 262 10/1/2024
2.1.415 416 10/1/2024
2.1.414 98 10/1/2024
2.1.413 196 10/1/2024
2.1.412 99 10/1/2024
2.1.411 396 10/1/2024
2.1.410 111 10/1/2024
2.1.409 396 10/1/2024
2.1.408 98 10/1/2024
2.1.407 452 9/29/2024
2.1.406 220 9/29/2024
2.1.405 148 9/29/2024
2.1.404 249 9/29/2024
2.1.403 92 9/29/2024
2.1.402 230 9/29/2024
2.1.401 230 9/29/2024
2.1.400 91 9/29/2024
2.1.399 366 9/29/2024
2.1.398 97 9/29/2024
2.1.397 536 9/27/2024
2.1.396 223 9/27/2024
2.1.395 242 9/27/2024
2.1.394 91 9/27/2024
2.1.393 203 9/27/2024
2.1.392 95 9/27/2024
2.1.391 348 9/27/2024
2.1.390 231 9/27/2024
2.1.389 90 9/27/2024
2.1.388 466 9/27/2024
2.1.387 97 9/27/2024
2.1.386 221 9/27/2024
2.1.385 153 9/27/2024
2.1.384 94 9/27/2024
2.1.383 524 9/27/2024
2.1.382 190 9/27/2024
2.1.381 219 9/26/2024
2.1.380 104 9/26/2024
2.1.379 264 9/26/2024
2.1.378 258 9/26/2024
2.1.377 108 9/26/2024
2.1.376 342 9/26/2024
2.1.375 182 9/26/2024
2.1.374 176 9/26/2024
2.1.373 110 9/26/2024
2.1.372 455 9/26/2024
2.1.371 103 9/26/2024
2.1.370 258 9/26/2024
2.1.369 259 9/26/2024
2.1.368 177 9/26/2024
2.1.367 173 9/26/2024
2.1.366 101 9/26/2024
2.1.365 218 9/26/2024
2.1.364 659 9/24/2024
2.1.363 197 9/23/2024
2.1.362 110 9/23/2024
2.1.361 78 9/23/2024
2.1.360 190 9/23/2024
2.1.359 209 9/23/2024
2.1.358 80 9/23/2024
2.1.357 271 9/23/2024
2.1.356 194 9/23/2024
2.1.355 91 9/23/2024
2.1.354 176 9/23/2024
2.1.353 454 9/23/2024
2.1.352 79 9/23/2024
2.1.351 86 9/23/2024
2.1.350 453 9/23/2024
2.1.349 89 9/23/2024
2.1.348 256 9/23/2024
2.1.347 176 9/23/2024
2.1.346 416 9/23/2024
2.1.345 87 9/23/2024
2.1.344 126 9/23/2024
2.1.343 357 9/23/2024
2.1.342 95 9/23/2024
2.1.341 219 9/23/2024
2.1.340 89 9/23/2024
2.1.339 164 9/23/2024
2.1.338 73 9/23/2024
2.1.337 892 9/18/2024
2.1.336 80 9/18/2024
2.1.335 201 9/18/2024
2.1.334 162 9/18/2024
2.1.333 92 9/18/2024
2.1.332 307 9/18/2024
2.1.331 255 9/18/2024
2.1.330 100 9/18/2024
2.1.329 227 9/18/2024
2.1.328 107 9/18/2024
2.1.327 242 9/18/2024
2.1.326 111 9/18/2024
2.1.325 133 9/17/2024
2.1.324 115 9/17/2024
2.1.323 108 9/17/2024
2.1.322 203 9/17/2024
2.1.321 227 9/17/2024
2.1.320 90 9/17/2024
2.1.319 249 9/17/2024
2.1.318 115 9/17/2024
2.1.317 106 9/17/2024
2.1.316 249 9/17/2024
2.1.315 119 9/17/2024
2.1.314 274 9/17/2024
2.1.313 111 9/17/2024
2.1.312 258 9/17/2024
2.1.311 106 9/17/2024
2.1.310 270 9/17/2024
2.1.309 171 9/17/2024
2.1.308 194 9/17/2024
2.1.307 557 9/17/2024
2.1.306 116 9/17/2024
2.1.305 353 9/16/2024
2.1.304 273 9/16/2024
2.1.303 208 9/16/2024
2.1.302 205 9/16/2024
2.1.301 98 9/16/2024
2.1.300 241 9/16/2024
2.1.299 896 9/12/2024
2.1.298 233 9/12/2024
2.1.297 108 9/12/2024
2.1.296 264 9/12/2024
2.1.295 100 9/12/2024
2.1.294 358 9/12/2024
2.1.293 112 9/12/2024
2.1.292 238 9/12/2024
2.1.291 239 9/12/2024
2.1.290 129 9/12/2024
2.1.289 277 9/12/2024
2.1.288 125 9/12/2024
2.1.287 247 9/11/2024
2.1.286 110 9/11/2024
2.1.285 218 9/11/2024
2.1.284 116 9/11/2024
2.1.282 436 9/11/2024
2.1.281 123 9/11/2024
2.1.280 344 9/11/2024
2.1.279 116 9/11/2024
2.1.278 372 9/11/2024
2.1.277 370 9/11/2024
2.1.276 112 9/11/2024
2.1.275 253 9/11/2024
2.1.274 548 9/11/2024
2.1.273 206 9/10/2024
2.1.272 109 9/10/2024
2.1.271 213 9/10/2024
2.1.270 442 9/10/2024
2.1.269 140 9/10/2024
2.1.268 256 9/10/2024
2.1.267 113 9/10/2024
2.1.266 353 9/10/2024
2.1.265 292 9/10/2024
2.1.263 342 9/10/2024
2.1.262 174 9/10/2024
2.1.261 114 9/9/2024
2.1.260 359 9/9/2024
2.1.259 299 9/9/2024
2.1.258 292 9/9/2024
2.1.257 405 9/9/2024
2.1.255 277 9/9/2024
2.1.254 107 9/9/2024
2.1.253 275 9/9/2024
2.1.252 97 9/9/2024
2.1.251 691 9/7/2024
2.1.250 307 9/7/2024
2.1.249 117 9/7/2024
2.1.248 117 9/7/2024
2.1.247 305 9/7/2024
2.1.246 101 9/7/2024
2.1.245 382 9/6/2024
2.1.244 170 9/6/2024
2.1.243 114 9/6/2024
2.1.242 284 9/6/2024
2.1.241 116 9/6/2024
2.1.240 377 9/6/2024
2.1.239 146 9/6/2024
2.1.238 193 9/6/2024
2.1.237 109 9/6/2024
2.1.236 402 9/5/2024
2.1.235 135 9/5/2024
2.1.234 111 9/5/2024
2.1.233 226 9/5/2024
2.1.232 97 9/5/2024
2.1.231 350 9/5/2024
2.1.230 97 9/5/2024
2.1.229 213 9/5/2024
2.1.228 118 9/5/2024
2.1.227 120 9/5/2024
2.1.226 670 9/5/2024
2.1.225 114 9/5/2024
2.1.224 200 9/5/2024
2.1.223 112 9/5/2024
2.1.222 694 9/4/2024
2.1.221 117 9/4/2024
2.1.220 365 9/4/2024
2.1.219 237 9/4/2024
2.1.218 124 9/4/2024
2.1.217 177 9/4/2024
2.1.216 201 9/3/2024
2.1.215 121 9/3/2024
2.1.214 309 9/3/2024
2.1.213 93 9/3/2024
2.1.212 303 9/3/2024
2.1.211 117 9/3/2024
2.1.210 318 9/3/2024
2.1.209 104 9/3/2024
2.1.207 347 9/3/2024
2.1.206 649 8/29/2024
2.1.205 108 8/29/2024
2.1.204 197 8/29/2024
2.1.203 109 8/29/2024
2.1.202 323 8/29/2024
2.1.201 482 8/26/2024
2.1.200 197 8/26/2024
2.1.199 214 8/26/2024
2.1.197 177 8/26/2024
2.1.196 460 8/26/2024
2.1.195 122 8/26/2024
2.1.194 412 8/21/2024
2.1.193 224 8/21/2024
2.1.192 133 8/21/2024
2.1.191 294 8/21/2024
2.1.190 129 8/21/2024
2.1.189 345 8/21/2024
2.1.188 111 8/21/2024
2.1.187 284 8/21/2024
2.1.186 107 8/21/2024
2.1.185 349 8/20/2024
2.1.184 120 8/20/2024
2.1.183 373 8/20/2024
2.1.182 127 8/20/2024
2.1.181 349 8/20/2024
2.1.180 110 8/20/2024
2.1.179 298 8/20/2024
2.1.178 451 8/20/2024
2.1.177 232 8/19/2024
2.1.176 117 8/19/2024
2.1.175 426 8/15/2024
2.1.174 186 8/15/2024
2.1.173 178 8/15/2024
2.1.172 121 8/15/2024
2.1.171 213 8/15/2024
2.1.170 188 8/15/2024
2.1.169 270 8/15/2024
2.1.168 103 8/15/2024
2.1.167 346 8/15/2024
2.1.166 425 8/14/2024
2.1.165 277 8/14/2024
2.1.164 139 8/14/2024
2.1.163 251 8/14/2024
2.1.162 118 8/14/2024
2.1.161 223 8/13/2024
2.1.160 389 8/13/2024
2.1.159 458 8/7/2024
2.1.158 185 8/7/2024
2.1.157 160 8/7/2024
2.1.156 186 8/7/2024
2.1.155 95 8/7/2024
2.1.154 211 8/7/2024
2.1.153 85 8/7/2024
2.1.152 207 8/6/2024
2.1.151 94 8/6/2024
2.1.150 182 8/6/2024
2.1.149 574 8/1/2024
2.1.148 233 8/1/2024
2.1.147 99 8/1/2024
2.1.146 206 8/1/2024
2.1.145 91 8/1/2024
2.1.144 154 8/1/2024
2.1.143 102 8/1/2024
2.1.142 289 8/1/2024
2.1.141 107 8/1/2024
2.1.140 118 8/1/2024
2.1.139 97 8/1/2024
2.1.138 174 8/1/2024
2.1.137 523 7/25/2024
2.1.136 222 7/25/2024
2.1.135 118 7/25/2024
2.1.134 130 7/25/2024
2.1.133 144 7/25/2024
2.1.132 64 7/25/2024
2.1.131 163 7/25/2024
2.1.130 73 7/25/2024
2.1.129 133 7/25/2024
2.1.128 77 7/25/2024
2.1.127 159 7/25/2024
2.1.126 113 7/25/2024
2.1.125 81 7/25/2024
2.1.124 168 7/25/2024
2.1.123 161 7/25/2024
2.1.122 73 7/25/2024
2.1.121 170 7/24/2024
2.1.120 149 7/24/2024
2.1.119 148 7/24/2024
2.1.118 956 7/20/2024
2.1.117 145 7/20/2024
2.1.116 119 7/20/2024
2.1.115 118 7/20/2024
2.1.114 114 7/20/2024
2.1.113 181 7/20/2024
2.1.112 111 7/20/2024
2.1.111 188 7/20/2024
2.1.110 552 7/17/2024
2.1.109 177 7/17/2024
2.1.108 150 7/17/2024
2.1.107 279 7/14/2024
2.1.106 100 7/14/2024
2.1.105 235 7/14/2024
2.1.104 242 7/14/2024
2.1.103 98 7/14/2024
2.1.102 101 7/14/2024
2.1.101 320 7/14/2024
2.1.100 107 7/14/2024
2.1.99 228 7/14/2024
2.1.98 396 7/11/2024
2.1.97 229 7/10/2024
2.1.96 126 7/10/2024
2.1.95 279 7/10/2024
2.1.94 335 7/10/2024
2.1.93 109 7/10/2024
2.1.92 127 7/10/2024
2.1.91 159 7/10/2024
2.1.90 187 7/10/2024
2.1.89 146 7/10/2024
2.1.88 90 7/10/2024
2.1.87 188 7/10/2024
2.1.86 84 7/10/2024
2.1.85 161 7/10/2024
2.1.84 102 7/10/2024
2.1.83 138 7/10/2024
2.1.82 102 7/10/2024
2.1.81 144 7/10/2024
2.1.80 104 7/10/2024
2.1.79 185 7/10/2024
2.1.78 109 7/10/2024
2.1.77 176 7/9/2024
2.1.75 143 7/9/2024
2.1.74 90 7/9/2024
2.1.73 196 7/9/2024
2.1.72 95 7/9/2024
2.1.71 771 7/9/2024
2.1.70 88 7/9/2024
2.1.69 7,794 7/9/2024
2.1.68 205 7/9/2024
2.1.67 95 7/9/2024
2.1.66 368 7/9/2024
2.1.65 116 7/9/2024
2.1.64 367 7/9/2024
2.1.63 190 7/9/2024
2.1.62 120 7/9/2024
2.1.61 121 7/8/2024
2.1.60 445 7/8/2024
2.1.59 125 7/8/2024
2.1.58 102 7/8/2024
2.1.57 197 7/8/2024
2.1.56 274 7/8/2024
2.1.55 291 7/8/2024
2.1.54 143 7/8/2024
2.1.53 229 7/8/2024
2.1.52 113 7/8/2024
2.1.51 335 7/8/2024
2.1.50 100 7/8/2024
2.1.49 233 7/7/2024
2.1.48 228 7/7/2024
2.1.47 108 7/7/2024
2.1.46 156 7/7/2024
2.1.45 194 7/7/2024
2.1.44 113 7/7/2024
2.1.43 384 7/7/2024
2.1.42 210 7/7/2024
2.1.41 411 7/5/2024
2.1.40 302 7/4/2024
2.1.39 309 7/3/2024
2.1.38 209 7/3/2024
2.1.37 179 7/3/2024
2.1.36 195 7/3/2024
2.1.35 187 7/3/2024
2.1.34 224 7/3/2024
2.1.33 110 7/3/2024
2.1.32 222 7/3/2024
2.1.31 112 7/3/2024
2.1.30 181 7/3/2024
2.1.29 359 7/3/2024
2.1.28 111 7/3/2024
2.1.27 281 7/3/2024
2.1.26 208 7/3/2024
2.1.25 95 7/3/2024
2.1.24 407 7/3/2024
2.1.23 289 6/30/2024
2.1.22 209 6/30/2024
2.1.21 131 6/30/2024
2.1.20 109 6/30/2024
2.1.19 125 6/30/2024
2.1.18 113 6/30/2024
2.1.17 164 6/30/2024
2.1.16 182 6/30/2024
2.1.15 180 6/29/2024
2.1.14 109 6/29/2024
2.1.13 127 6/29/2024
2.1.12 122 6/29/2024
2.1.11 120 6/29/2024
2.1.10 119 6/29/2024
2.1.9 124 6/29/2024
2.1.8 204 6/28/2024
2.1.7 429 6/27/2024
2.1.6 340 6/27/2024
2.1.5 313 6/24/2024
2.1.4 130 6/24/2024
2.1.3 116 6/24/2024
2.1.2 126 6/24/2024
2.1.1 131 6/24/2024