Soenneker.Blazor.Utils.ResourceLoader 3.0.1505

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.1505
                    
NuGet\Install-Package Soenneker.Blazor.Utils.ResourceLoader -Version 3.0.1505
                    
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.1505" />
                    
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.1505" />
                    
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.1505
                    
#r "nuget: Soenneker.Blazor.Utils.ResourceLoader, 3.0.1505"
                    
#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.Blazor.Utils.ResourceLoader@3.0.1505
                    
#: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.Blazor.Utils.ResourceLoader&version=3.0.1505
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Blazor.Utils.ResourceLoader&version=3.0.1505
                    
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.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 (24)

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