Soenneker.Blazor.Utils.ResourceLoader 2.1.297

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

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