Soenneker.Blazor.Utils.ResourceLoader 2.1.515

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

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