Soenneker.Blazor.DataTables 3.0.641

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

// Install Soenneker.Blazor.DataTables as a Cake Tool
#tool nuget:?package=Soenneker.Blazor.DataTables&version=3.0.641                

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.DataTables

A Blazor interop library for DataTables

This library simplifies the integration of DataTables into Blazor applications, providing access to options, events, etc. A demo project showcasing common usages is included.

Diligence was taken to align the Blazor API with JS. Refer to the DataTables documentation for details. This is a work-in-progress; contribution is welcomed.

Installation

dotnet add package Soenneker.Blazor.DataTables

Add the following to your Startup.cs file

public void ConfigureServices(IServiceCollection services)
{
    services.AddDataTables();
}

Usage

@using Soenneker.Blazor.DataTables

<DataTable Options="_options">
    <thead>
        <tr>
            <th>Name</th>
            <th>Position</th>
            <th>Office</th>
            <th>Age</th>
            <th>Start date</th>
            <th>Salary</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>John Doe</td>
            <td>Developer</td>
            <td>London</td>
            <td>28</td>
            <td>2017/04/25</td>
            <td>$320,800</td>
        </tr>
    </tbody>
</DataTable>

@code{

    private readonly DataTableOptions _options_ = new()
    {
        Searching = true,
        LengthChange = false,
        Info = false,
        Paging = false,
        Order = [new object[] {0, "asc"}]
    };
}
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.677 34 11/21/2024
3.0.676 34 11/21/2024
3.0.675 37 11/21/2024
3.0.674 39 11/21/2024
3.0.673 33 11/21/2024
3.0.672 35 11/21/2024
3.0.671 40 11/21/2024
3.0.670 36 11/21/2024
3.0.669 32 11/21/2024
3.0.668 34 11/21/2024
3.0.667 30 11/21/2024
3.0.666 32 11/20/2024
3.0.665 35 11/20/2024
3.0.664 35 11/20/2024
3.0.663 37 11/20/2024
3.0.662 37 11/20/2024
3.0.661 38 11/20/2024
3.0.660 34 11/20/2024
3.0.659 36 11/20/2024
3.0.658 38 11/20/2024
3.0.657 45 11/20/2024
3.0.656 60 11/20/2024
3.0.655 53 11/20/2024
3.0.654 56 11/20/2024
3.0.653 54 11/20/2024
3.0.651 55 11/20/2024
3.0.650 54 11/20/2024
3.0.649 63 11/20/2024
3.0.648 55 11/20/2024
3.0.647 64 11/20/2024
3.0.646 58 11/20/2024
3.0.645 58 11/20/2024
3.0.644 54 11/20/2024
3.0.643 59 11/20/2024
3.0.642 61 11/20/2024
3.0.641 67 11/19/2024
3.0.640 64 11/19/2024
3.0.639 64 11/19/2024
3.0.638 58 11/19/2024
3.0.637 60 11/19/2024
3.0.636 62 11/19/2024
3.0.635 63 11/19/2024
3.0.634 56 11/19/2024
3.0.633 58 11/19/2024
3.0.632 56 11/19/2024
3.0.631 59 11/19/2024
3.0.630 60 11/19/2024
3.0.629 69 11/19/2024
3.0.628 63 11/19/2024
3.0.627 61 11/19/2024
3.0.626 56 11/19/2024
3.0.625 51 11/19/2024
3.0.624 68 11/19/2024
3.0.623 79 11/18/2024
3.0.622 77 11/15/2024
3.0.621 75 11/15/2024
3.0.620 65 11/15/2024
3.0.619 66 11/15/2024
3.0.618 66 11/15/2024
3.0.617 63 11/15/2024
3.0.616 81 11/15/2024
3.0.615 66 11/15/2024
3.0.614 70 11/14/2024
3.0.613 64 11/14/2024
3.0.612 69 11/14/2024
3.0.611 65 11/14/2024
3.0.610 69 11/14/2024
3.0.609 79 11/14/2024
3.0.608 67 11/14/2024
3.0.607 67 11/14/2024
3.0.606 62 11/14/2024
3.0.604 65 11/14/2024
3.0.603 66 11/14/2024
3.0.602 67 11/14/2024
3.0.601 61 11/14/2024
3.0.600 62 11/14/2024
3.0.599 63 11/14/2024
3.0.598 69 11/14/2024
3.0.597 67 11/14/2024
3.0.596 67 11/14/2024
3.0.595 74 11/14/2024
3.0.594 77 11/14/2024
3.0.593 63 11/14/2024
3.0.592 67 11/14/2024
3.0.591 67 11/14/2024
3.0.590 65 11/14/2024
3.0.589 63 11/14/2024
3.0.588 63 11/14/2024
3.0.587 68 11/14/2024
3.0.586 69 11/14/2024
3.0.585 63 11/14/2024
3.0.584 66 11/14/2024
3.0.583 72 11/14/2024
3.0.582 67 11/14/2024
3.0.581 62 11/14/2024
3.0.580 66 11/14/2024
3.0.579 62 11/14/2024
3.0.578 64 11/14/2024
3.0.577 76 11/14/2024
3.0.576 73 11/14/2024
2.1.575 72 11/13/2024
2.1.574 75 11/13/2024
2.1.573 70 11/13/2024
2.1.572 75 11/13/2024
2.1.571 66 11/13/2024
2.1.570 67 11/13/2024
2.1.569 73 11/13/2024
2.1.568 63 11/13/2024
2.1.567 64 11/13/2024
2.1.566 61 11/13/2024
2.1.565 64 11/13/2024
2.1.564 67 11/13/2024
2.1.563 60 11/13/2024
2.1.562 65 11/13/2024
2.1.561 75 11/13/2024
2.1.560 66 11/13/2024
2.1.559 67 11/13/2024
2.1.558 64 11/13/2024
2.1.557 66 11/13/2024
2.1.556 67 11/12/2024
2.1.555 69 11/12/2024
2.1.554 71 11/12/2024
2.1.553 71 11/12/2024
2.1.552 77 11/10/2024
2.1.551 81 11/9/2024
2.1.550 76 11/9/2024
2.1.549 77 11/9/2024
2.1.548 75 11/9/2024
2.1.547 73 11/9/2024
2.1.546 76 11/9/2024
2.1.545 77 11/9/2024
2.1.544 71 11/9/2024
2.1.543 72 11/9/2024
2.1.542 77 11/9/2024
2.1.541 74 11/9/2024
2.1.540 72 11/9/2024
2.1.539 74 11/9/2024
2.1.538 75 11/9/2024
2.1.537 78 11/9/2024
2.1.536 75 11/9/2024
2.1.535 68 11/9/2024
2.1.534 75 11/8/2024
2.1.533 73 11/8/2024
2.1.532 70 11/8/2024
2.1.531 68 11/8/2024
2.1.530 67 11/8/2024
2.1.529 78 11/8/2024
2.1.528 71 11/8/2024
2.1.527 71 11/8/2024
2.1.526 79 11/8/2024
2.1.525 70 11/8/2024
2.1.524 70 11/8/2024
2.1.523 79 11/8/2024
2.1.522 68 11/8/2024
2.1.521 69 11/8/2024
2.1.520 68 11/8/2024
2.1.519 68 11/8/2024
2.1.518 68 11/8/2024
2.1.517 76 11/8/2024
2.1.516 67 11/8/2024
2.1.515 66 11/7/2024
2.1.514 68 11/7/2024
2.1.513 64 11/6/2024
2.1.512 67 11/6/2024
2.1.511 73 11/6/2024
2.1.510 67 11/6/2024
2.1.509 71 11/2/2024
2.1.508 73 11/1/2024
2.1.507 71 11/1/2024
2.1.506 77 11/1/2024
2.1.505 64 11/1/2024
2.1.504 66 11/1/2024
2.1.503 67 11/1/2024
2.1.502 66 11/1/2024
2.1.501 71 11/1/2024
2.1.500 79 11/1/2024
2.1.499 72 11/1/2024
2.1.498 66 11/1/2024
2.1.497 64 10/31/2024
2.1.496 79 10/29/2024
2.1.495 63 10/29/2024
2.1.494 73 10/29/2024
2.1.493 70 10/29/2024
2.1.492 69 10/29/2024
2.1.491 64 10/29/2024
2.1.490 71 10/29/2024
2.1.489 72 10/29/2024
2.1.488 74 10/29/2024
2.1.487 70 10/29/2024
2.1.486 60 10/29/2024
2.1.485 62 10/29/2024
2.1.484 69 10/29/2024
2.1.483 72 10/29/2024
2.1.481 67 10/29/2024
2.1.480 62 10/29/2024
2.1.479 72 10/29/2024
2.1.478 64 10/29/2024
2.1.477 66 10/29/2024
2.1.476 69 10/29/2024
2.1.475 73 10/29/2024
2.1.474 68 10/29/2024
2.1.473 68 10/29/2024
2.1.472 68 10/29/2024
2.1.471 64 10/29/2024
2.1.470 67 10/29/2024
2.1.469 66 10/29/2024
2.1.468 74 10/29/2024
2.1.467 63 10/29/2024
2.1.466 66 10/29/2024
2.1.465 64 10/28/2024
2.1.464 61 10/28/2024
2.1.463 74 10/28/2024
2.1.462 72 10/28/2024
2.1.461 88 10/28/2024
2.1.460 74 10/26/2024
2.1.459 70 10/26/2024
2.1.458 71 10/26/2024
2.1.457 75 10/26/2024
2.1.456 76 10/26/2024
2.1.455 73 10/26/2024
2.1.454 71 10/26/2024
2.1.453 73 10/26/2024
2.1.452 79 10/26/2024
2.1.451 64 10/26/2024
2.1.450 81 10/23/2024
2.1.449 70 10/23/2024
2.1.448 70 10/22/2024
2.1.447 70 10/22/2024
2.1.446 71 10/22/2024
2.1.445 66 10/22/2024
2.1.444 65 10/22/2024
2.1.443 60 10/22/2024
2.1.442 67 10/22/2024
2.1.441 70 10/22/2024
2.1.440 72 10/22/2024
2.1.439 68 10/22/2024
2.1.438 74 10/22/2024
2.1.437 69 10/22/2024
2.1.436 77 10/22/2024
2.1.435 70 10/22/2024
2.1.434 67 10/22/2024
2.1.433 66 10/22/2024
2.1.432 63 10/22/2024
2.1.431 58 10/22/2024
2.1.430 70 10/22/2024
2.1.429 69 10/22/2024
2.1.428 64 10/22/2024
2.1.427 107 10/18/2024
2.1.426 107 10/18/2024
2.1.425 108 10/18/2024
2.1.424 106 10/18/2024
2.1.423 105 10/18/2024
2.1.422 106 10/18/2024
2.1.421 103 10/18/2024
2.1.420 102 10/18/2024
2.1.419 72 10/17/2024
2.1.418 76 10/17/2024
2.1.417 70 10/17/2024
2.1.416 70 10/17/2024
2.1.415 78 10/17/2024
2.1.414 74 10/17/2024
2.1.413 72 10/17/2024
2.1.412 76 10/15/2024
2.1.411 75 10/15/2024
2.1.410 69 10/15/2024
2.1.409 71 10/15/2024
2.1.408 72 10/15/2024
2.1.407 69 10/15/2024
2.1.406 70 10/15/2024
2.1.405 71 10/15/2024
2.1.404 78 10/15/2024
2.1.403 74 10/15/2024
2.1.402 69 10/15/2024
2.1.401 77 10/14/2024
2.1.400 68 10/14/2024
2.1.399 67 10/14/2024
2.1.398 73 10/14/2024
2.1.397 78 10/13/2024
2.1.396 74 10/13/2024
2.1.395 82 10/13/2024
2.1.394 80 10/12/2024
2.1.393 82 10/12/2024
2.1.392 77 10/12/2024
2.1.391 84 10/12/2024
2.1.390 77 10/12/2024
2.1.389 73 10/12/2024
2.1.388 77 10/12/2024
2.1.387 72 10/12/2024
2.1.386 80 10/12/2024
2.1.385 79 10/12/2024
2.1.384 82 10/11/2024
2.1.383 73 10/11/2024
2.1.382 76 10/11/2024
2.1.381 92 10/11/2024
2.1.380 78 10/11/2024
2.1.379 74 10/11/2024
2.1.378 84 10/11/2024
2.1.377 82 10/9/2024
2.1.376 76 10/9/2024
2.1.375 76 10/9/2024
2.1.374 84 10/9/2024
2.1.373 78 10/9/2024
2.1.372 78 10/9/2024
2.1.371 73 10/9/2024
2.1.370 90 10/9/2024
2.1.369 77 10/9/2024
2.1.368 75 10/9/2024
2.1.367 77 10/9/2024
2.1.366 74 10/9/2024
2.1.365 78 10/9/2024
2.1.364 73 10/9/2024
2.1.362 71 10/9/2024
2.1.361 74 10/9/2024
2.1.360 76 10/9/2024
2.1.359 74 10/9/2024
2.1.358 76 10/8/2024
2.1.357 77 10/8/2024
2.1.356 84 10/8/2024
2.1.355 78 10/8/2024
2.1.354 85 10/8/2024
2.1.353 80 10/8/2024
2.1.352 77 10/8/2024
2.1.351 80 10/8/2024
2.1.350 78 10/8/2024
2.1.349 83 10/8/2024
2.1.348 70 10/8/2024
2.1.347 76 10/8/2024
2.1.346 82 10/8/2024
2.1.345 76 10/8/2024
2.1.344 79 10/8/2024
2.1.343 79 10/8/2024
2.1.342 88 10/7/2024
2.1.341 77 10/4/2024
2.1.340 79 10/4/2024
2.1.339 82 10/3/2024
2.1.338 83 10/3/2024
2.1.337 85 10/3/2024
2.1.336 94 10/3/2024
2.1.335 82 10/3/2024
2.1.334 79 10/3/2024
2.1.333 80 10/3/2024
2.1.332 80 10/3/2024
2.1.331 70 10/3/2024
2.1.330 67 10/3/2024
2.1.329 84 10/3/2024
2.1.328 81 10/3/2024
2.1.327 85 10/3/2024
2.1.326 70 10/3/2024
2.1.325 68 10/3/2024
2.1.324 85 10/3/2024
2.1.323 75 10/3/2024
2.1.322 75 10/3/2024
2.1.321 81 10/3/2024
2.1.320 79 10/3/2024
2.1.319 78 10/3/2024
2.1.318 73 10/3/2024
2.1.317 84 10/2/2024
2.1.316 76 10/2/2024
2.1.315 79 10/2/2024
2.1.314 86 10/2/2024
2.1.313 78 10/2/2024
2.1.312 72 10/2/2024
2.1.311 85 10/2/2024
2.1.310 82 10/2/2024
2.1.309 78 10/2/2024
2.1.308 85 10/2/2024
2.1.307 75 10/2/2024
2.1.306 74 10/2/2024
2.1.305 75 10/2/2024
2.1.304 82 10/2/2024
2.1.303 82 10/2/2024
2.1.302 87 10/2/2024
2.1.301 79 10/2/2024
2.1.300 86 10/2/2024
2.1.299 86 10/2/2024
2.1.298 83 10/2/2024
2.1.297 76 10/2/2024
2.1.296 88 10/2/2024
2.1.295 94 10/2/2024
2.1.294 87 10/2/2024
2.1.293 77 10/1/2024
2.1.292 91 10/1/2024
2.1.291 83 10/1/2024
2.1.290 83 10/1/2024
2.1.289 84 10/1/2024
2.1.288 86 10/1/2024
2.1.287 82 10/1/2024
2.1.286 86 10/1/2024
2.1.285 75 10/1/2024
2.1.284 83 10/1/2024
2.1.283 75 10/1/2024
2.1.282 80 10/1/2024
2.1.281 101 10/1/2024
2.1.280 79 10/1/2024
2.1.279 82 10/1/2024
2.1.278 88 10/1/2024
2.1.277 100 9/30/2024
2.1.276 88 9/30/2024
2.1.275 70 9/30/2024
2.1.274 90 9/30/2024
2.1.273 93 9/30/2024
2.1.272 79 9/30/2024
2.1.271 86 9/29/2024
2.1.270 76 9/29/2024
2.1.269 81 9/29/2024
2.1.268 80 9/29/2024
2.1.267 89 9/29/2024
2.1.266 75 9/29/2024
2.1.265 79 9/29/2024
2.1.264 86 9/29/2024
2.1.263 86 9/29/2024
2.1.262 74 9/29/2024
2.1.261 93 9/29/2024
2.1.259 88 9/29/2024
2.1.258 79 9/29/2024
2.1.257 82 9/29/2024
2.1.256 75 9/29/2024
2.1.255 72 9/29/2024
2.1.254 78 9/28/2024
2.1.253 87 9/28/2024
2.1.252 83 9/27/2024
2.1.251 96 9/27/2024
2.1.250 82 9/27/2024
2.1.249 78 9/27/2024
2.1.248 83 9/27/2024
2.1.247 92 9/27/2024
2.1.246 95 9/27/2024
2.1.245 77 9/27/2024
2.1.244 89 9/27/2024
2.1.243 80 9/27/2024
2.1.242 77 9/27/2024
2.1.241 76 9/27/2024
2.1.240 87 9/27/2024
2.1.239 72 9/27/2024
2.1.238 83 9/27/2024
2.1.237 90 9/27/2024
2.1.236 93 9/27/2024
2.1.235 87 9/27/2024
2.1.234 74 9/27/2024
2.1.233 74 9/27/2024
2.1.232 86 9/27/2024
2.1.231 85 9/27/2024
2.1.230 76 9/27/2024
2.1.229 96 9/27/2024
2.1.228 74 9/27/2024
2.1.227 85 9/27/2024
2.1.226 81 9/27/2024
2.1.225 89 9/27/2024
2.1.224 73 9/27/2024
2.1.223 91 9/26/2024
2.1.222 77 9/26/2024
2.1.221 74 9/26/2024
2.1.220 84 9/26/2024
2.1.219 80 9/26/2024
2.1.218 79 9/26/2024
2.1.217 87 9/26/2024
2.1.216 85 9/26/2024
2.1.215 81 9/26/2024
2.1.214 83 9/26/2024
2.1.213 84 9/26/2024
2.1.211 81 9/26/2024
2.1.210 78 9/26/2024
2.1.209 90 9/26/2024
2.1.208 84 9/26/2024
2.1.207 99 9/26/2024
2.1.206 88 9/26/2024
2.1.204 85 9/26/2024
2.1.203 76 9/26/2024
2.1.202 79 9/26/2024
2.1.201 90 9/26/2024
2.1.200 78 9/26/2024
2.1.199 93 9/26/2024
2.1.198 80 9/26/2024
2.1.197 75 9/25/2024
2.1.196 78 9/24/2024
2.1.195 73 9/24/2024
2.1.194 79 9/24/2024
2.1.193 76 9/24/2024
2.1.192 79 9/23/2024
2.1.191 74 9/23/2024
2.1.190 78 9/23/2024
2.1.189 75 9/23/2024
2.1.188 78 9/23/2024
2.1.187 73 9/23/2024
2.1.186 87 9/23/2024
2.1.185 82 9/23/2024
2.1.184 75 9/23/2024
2.1.183 78 9/23/2024
2.1.182 86 9/23/2024
2.1.181 77 9/23/2024
2.1.180 69 9/23/2024
2.1.179 77 9/23/2024
2.1.178 77 9/23/2024
2.1.177 79 9/23/2024
2.1.176 80 9/23/2024
2.1.175 74 9/23/2024
2.1.174 74 9/23/2024
2.1.173 77 9/23/2024
2.1.172 75 9/23/2024
2.1.171 80 9/23/2024
2.1.170 78 9/23/2024
2.1.169 76 9/23/2024
2.1.168 76 9/23/2024
2.1.167 72 9/23/2024
2.1.166 80 9/23/2024
2.1.165 78 9/23/2024
2.1.164 72 9/23/2024
2.1.163 59 9/23/2024
2.1.162 77 9/23/2024
2.1.161 69 9/23/2024
2.1.160 79 9/23/2024
2.1.159 71 9/23/2024
2.1.158 80 9/23/2024
2.1.157 77 9/23/2024
2.1.156 77 9/23/2024
2.1.155 86 9/23/2024
2.1.154 72 9/23/2024
2.1.153 77 9/23/2024
2.1.152 79 9/23/2024
2.1.151 77 9/23/2024
2.1.150 89 9/22/2024
2.1.149 80 9/19/2024
2.1.148 72 9/19/2024
2.1.147 73 9/18/2024
2.1.146 83 9/18/2024
2.1.145 84 9/18/2024
2.1.144 74 9/18/2024
2.1.143 88 9/18/2024
2.1.142 86 9/18/2024
2.1.141 92 9/18/2024
2.1.140 93 9/18/2024
2.1.139 87 9/18/2024
2.1.138 88 9/18/2024
2.1.137 91 9/18/2024
2.1.136 88 9/18/2024
2.1.135 94 9/18/2024
2.1.134 90 9/18/2024
2.1.133 86 9/18/2024
2.1.132 96 9/18/2024
2.1.131 90 9/18/2024
2.1.130 96 9/18/2024
2.1.129 92 9/17/2024
2.1.128 90 9/17/2024
2.1.127 94 9/17/2024
2.1.126 97 9/17/2024
2.1.124 90 9/17/2024
2.1.123 86 9/17/2024
2.1.122 98 9/17/2024
2.1.121 92 9/17/2024
2.1.120 97 9/17/2024
2.1.119 98 9/17/2024
2.1.118 93 9/17/2024
2.1.117 100 9/17/2024
2.1.116 85 9/17/2024
2.1.115 100 9/17/2024
2.1.114 90 9/17/2024
2.1.113 88 9/17/2024
2.1.112 87 9/17/2024
2.1.111 88 9/17/2024
2.1.110 91 9/17/2024
2.1.109 101 9/17/2024
2.1.108 110 9/17/2024
2.1.107 73 9/17/2024
2.1.106 77 9/17/2024
2.1.105 86 9/17/2024
2.1.104 79 9/17/2024
2.1.103 101 9/16/2024
2.1.102 89 9/16/2024
2.1.101 87 9/16/2024
2.1.100 94 9/16/2024
2.1.99 88 9/16/2024
2.1.98 134 9/16/2024
2.1.97 89 9/16/2024
2.1.96 100 9/16/2024
2.1.95 95 9/16/2024
2.1.94 95 9/16/2024
2.1.93 107 9/13/2024
2.1.92 97 9/13/2024
2.1.91 108 9/12/2024
2.1.90 97 9/12/2024
2.1.89 103 9/12/2024
2.1.88 102 9/12/2024
2.1.87 103 9/12/2024
2.1.86 97 9/12/2024
2.1.85 95 9/12/2024
2.1.84 84 9/12/2024
2.1.83 89 9/12/2024
2.1.82 126 9/12/2024
2.1.81 102 9/12/2024
2.1.80 101 9/12/2024
2.1.79 105 9/12/2024
2.1.78 98 9/12/2024
2.1.77 106 9/12/2024
2.1.76 107 9/11/2024
2.1.75 86 9/11/2024
2.1.74 108 9/11/2024
2.1.73 109 9/11/2024
2.1.72 109 9/11/2024
2.1.71 110 9/11/2024
2.1.70 98 9/11/2024
2.1.69 102 9/11/2024
2.1.68 95 9/11/2024
2.1.67 110 9/11/2024
2.1.66 108 9/11/2024
2.1.65 104 9/11/2024
2.1.64 101 9/11/2024
2.1.63 108 9/11/2024
2.1.62 99 9/11/2024
2.1.61 106 9/11/2024
2.1.60 115 9/11/2024
2.1.59 105 9/11/2024
2.1.58 86 9/11/2024
2.1.57 93 9/11/2024
2.1.56 96 9/11/2024
2.1.55 107 9/11/2024
2.1.54 101 9/11/2024
2.1.53 105 9/11/2024
2.1.52 95 9/11/2024
2.1.51 95 9/10/2024
2.1.50 98 9/10/2024
2.1.49 84 9/10/2024
2.1.48 77 9/10/2024
2.1.47 83 9/10/2024
2.1.46 95 9/10/2024
2.1.45 95 9/10/2024
2.1.44 99 9/10/2024
2.1.43 77 9/10/2024
2.1.42 75 9/10/2024
2.1.41 100 9/10/2024
2.1.40 73 9/10/2024
2.1.39 97 9/10/2024
2.1.38 89 9/10/2024
2.1.37 91 9/10/2024
2.1.36 92 9/10/2024
2.1.35 100 9/10/2024
2.1.34 99 9/10/2024
2.1.33 94 9/10/2024
2.1.30 90 9/10/2024
2.1.29 92 9/10/2024
2.1.28 93 9/10/2024
2.1.27 80 9/10/2024
2.1.25 97 9/9/2024
2.1.24 90 9/9/2024
2.1.23 75 9/9/2024
2.1.22 74 9/9/2024
2.1.21 91 9/9/2024
2.1.20 78 9/9/2024
2.1.19 72 9/9/2024
2.1.18 78 9/9/2024
2.1.16 74 9/9/2024
2.1.15 79 9/9/2024
2.1.13 98 9/9/2024
2.1.12 82 9/9/2024
2.1.11 101 9/9/2024
2.1.10 82 9/9/2024
2.1.9 77 9/9/2024
2.1.8 104 9/9/2024
2.1.7 96 9/9/2024
2.1.6 88 9/8/2024