Soenneker.Blazor.TomSelect 2.1.671

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

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

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

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

This library simplifies the integration of Tom Select into Blazor applications, providing access to options, methods, plugins, and events. A demo project showcasing common usages is included.

Diligence was taken to align the Blazor API with JS. Refer to the Tom Select documentation for details.

Installation

dotnet add package Soenneker.Blazor.TomSelect

Add the following to your Startup.cs file

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

Usage

@using Soenneker.Blazor.TomSelect

<TomSelect
    TItem="Country" TType="string" OnItemAdd="OnItemAdd"
    Data="@_countries"
    TextField="@(item => item.Name)"
    ValueField="@(item => item.Id.ToString())" @ref="_tomSelect" Items="_selectedCountries">
</TomSelect>

@code{
    private TomSelect<Country, string> _tomSelect = default!;

    private List<Country>? _selectedCountries;
    private List<Country>? _countries;

    protected override async Task OnInitializedAsync()
    {
        _countries = await Http.GetFromJsonAsync<List<Country>>("sample-data/countries.json");
    }

    private void OnItemAdd((string str, TomSelectOption obj) result)
    {
        Logger.LogInformation("OnItemAdd fired: Value: {value}", str);
    }

    private void LogSelectedItems()
    {
        foreach (Country item in _tomSelect.Items)
        {
            Logger.LogInformation("Selected item: {0}", item.Name);
        }
    }
}

⚠️ While a lot of the Tom Select library has been implemented, there are features not yet supported. If you need assistance or want to request a new feature, please open an issue or submit a pull request.

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. 
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
2.1.704 0 7/4/2024
2.1.703 0 7/4/2024
2.1.702 31 7/4/2024
2.1.701 45 7/4/2024
2.1.700 42 7/3/2024
2.1.699 39 7/3/2024
2.1.698 44 7/3/2024
2.1.697 44 7/3/2024
2.1.696 36 7/3/2024
2.1.695 41 7/3/2024
2.1.694 39 7/3/2024
2.1.693 37 7/3/2024
2.1.692 40 7/3/2024
2.1.691 37 7/3/2024
2.1.690 46 7/3/2024
2.1.689 39 7/3/2024
2.1.688 38 7/3/2024
2.1.687 46 7/3/2024
2.1.686 39 7/3/2024
2.1.685 45 7/3/2024
2.1.684 36 7/3/2024
2.1.683 42 7/3/2024
2.1.682 42 7/3/2024
2.1.681 52 7/3/2024
2.1.680 54 7/3/2024
2.1.679 48 7/3/2024
2.1.678 51 7/3/2024
2.1.677 50 7/3/2024
2.1.676 64 7/3/2024
2.1.675 64 7/3/2024
2.1.674 58 7/3/2024
2.1.673 62 7/3/2024
2.1.672 81 7/1/2024
2.1.671 66 7/1/2024
2.1.670 68 6/30/2024
2.1.669 62 6/30/2024
2.1.668 63 6/30/2024
2.1.667 59 6/30/2024
2.1.666 69 6/29/2024
2.1.665 67 6/29/2024
2.1.664 73 6/28/2024
2.1.663 67 6/28/2024
2.1.662 70 6/28/2024
2.1.661 69 6/28/2024
2.1.660 69 6/27/2024
2.1.659 75 6/27/2024
2.1.658 77 6/27/2024
2.1.657 67 6/27/2024
2.1.656 74 6/27/2024
2.1.655 75 6/27/2024
2.1.654 70 6/27/2024
2.1.653 65 6/27/2024
2.1.652 67 6/27/2024
2.1.651 63 6/27/2024
2.1.650 65 6/27/2024
2.1.649 77 6/27/2024
2.1.648 68 6/27/2024
2.1.647 65 6/27/2024
2.1.646 63 6/27/2024
2.1.645 77 6/24/2024
2.1.644 60 6/24/2024
2.1.643 67 6/22/2024
2.1.642 71 6/22/2024
2.1.641 70 6/22/2024
2.1.640 67 6/22/2024
2.1.639 69 6/22/2024
2.1.638 64 6/22/2024
2.1.637 67 6/22/2024
2.1.636 71 6/22/2024
2.1.635 67 6/22/2024
2.1.634 69 6/22/2024
2.1.633 69 6/22/2024
2.1.632 73 6/21/2024
2.1.631 102 6/17/2024
2.1.630 76 6/16/2024
2.1.629 79 6/16/2024
2.1.628 78 6/16/2024
2.1.627 73 6/16/2024
2.1.626 80 6/15/2024
2.1.625 71 6/15/2024
2.1.624 71 6/15/2024
2.1.623 81 6/15/2024
2.1.622 78 6/15/2024
2.1.621 75 6/15/2024
2.1.620 75 6/15/2024
2.1.619 74 6/15/2024
2.1.618 76 6/15/2024
2.1.617 70 6/15/2024
2.1.616 74 6/15/2024
2.1.615 66 6/15/2024
2.1.614 76 6/15/2024
2.1.613 64 6/15/2024
2.1.612 64 6/15/2024
2.1.611 79 6/15/2024
2.1.610 74 6/15/2024
2.1.609 73 6/15/2024
2.1.608 67 6/15/2024
2.1.607 73 6/15/2024
2.1.606 75 6/15/2024
2.1.605 70 6/15/2024
2.1.604 79 6/14/2024
2.1.603 79 6/14/2024
2.1.602 69 6/14/2024
2.1.601 72 6/14/2024
2.1.600 75 6/14/2024
2.1.599 70 6/12/2024
2.1.598 90 6/4/2024
2.1.597 76 6/4/2024
2.1.596 73 6/4/2024
2.1.595 71 6/4/2024
2.1.594 72 6/4/2024
2.1.593 76 6/4/2024
2.1.592 85 6/4/2024
2.1.591 75 6/4/2024
2.1.590 89 6/3/2024
2.1.589 76 6/3/2024
2.1.588 77 6/3/2024
2.1.587 88 6/2/2024
2.1.586 80 6/2/2024
2.1.585 87 6/2/2024
2.1.584 75 6/2/2024
2.1.583 78 6/2/2024
2.1.582 86 6/2/2024
2.1.581 77 6/2/2024
2.1.580 79 6/2/2024
2.1.579 81 6/1/2024
2.1.578 80 6/1/2024
2.1.577 79 6/1/2024
2.1.576 84 6/1/2024
2.1.575 80 6/1/2024
2.1.574 82 6/1/2024
2.1.573 86 6/1/2024
2.1.572 80 6/1/2024
2.1.571 79 6/1/2024
2.1.570 84 6/1/2024
2.1.569 79 6/1/2024
2.1.568 79 6/1/2024
2.1.567 72 6/1/2024
2.1.566 86 6/1/2024
2.1.565 77 6/1/2024
2.1.564 76 6/1/2024
2.1.563 74 6/1/2024
2.1.562 74 6/1/2024
2.1.561 82 6/1/2024
2.1.560 78 6/1/2024
2.1.559 74 6/1/2024
2.1.558 77 6/1/2024
2.1.557 83 5/31/2024
2.1.556 76 5/31/2024
2.1.555 82 5/31/2024
2.1.554 75 5/31/2024
2.1.553 80 5/31/2024
2.1.552 90 5/31/2024
2.1.551 64 5/31/2024
2.1.550 64 5/31/2024
2.1.549 61 5/31/2024
2.1.548 78 5/31/2024
2.1.547 80 5/31/2024
2.1.546 83 5/31/2024
2.1.545 81 5/31/2024
2.1.544 79 5/31/2024
2.1.543 79 5/31/2024
2.1.542 77 5/29/2024
2.1.541 84 5/29/2024
2.1.540 85 5/29/2024
2.1.539 75 5/29/2024
2.1.538 82 5/29/2024
2.1.537 80 5/29/2024
2.1.536 74 5/29/2024
2.1.535 73 5/29/2024
2.1.534 77 5/29/2024
2.1.533 75 5/29/2024
2.1.532 74 5/29/2024
2.1.531 81 5/29/2024
2.1.530 70 5/29/2024
2.1.529 83 5/29/2024
2.1.528 80 5/28/2024
2.1.527 73 5/28/2024
2.1.526 63 5/28/2024
2.1.525 62 5/28/2024
2.1.524 77 5/28/2024
2.1.523 72 5/28/2024
2.1.522 68 5/28/2024
2.1.521 92 5/28/2024
2.1.520 72 5/28/2024
2.1.519 67 5/28/2024
2.1.518 70 5/28/2024
2.1.517 71 5/28/2024
2.1.516 72 5/28/2024
2.1.515 73 5/28/2024
2.1.514 70 5/28/2024
2.1.513 74 5/28/2024
2.1.512 67 5/28/2024
2.1.511 67 5/28/2024
2.1.510 74 5/28/2024
2.1.509 70 5/28/2024
2.1.508 70 5/28/2024
2.1.507 70 5/27/2024
2.1.506 69 5/27/2024
2.1.505 69 5/27/2024
2.1.504 76 5/27/2024
2.1.503 76 5/27/2024
2.1.502 83 5/27/2024
2.1.501 76 5/27/2024
2.1.500 77 5/27/2024
2.1.499 77 5/27/2024
2.1.498 80 5/27/2024
2.1.497 77 5/27/2024
2.1.496 74 5/27/2024
2.1.495 80 5/26/2024
2.1.494 76 5/26/2024
2.1.493 79 5/26/2024
2.1.492 73 5/26/2024
2.1.491 75 5/26/2024
2.1.490 77 5/26/2024
2.1.489 85 5/26/2024
2.1.488 83 5/26/2024
2.1.487 79 5/26/2024
2.1.486 89 5/26/2024
2.1.485 86 5/26/2024
2.1.484 78 5/26/2024
2.1.483 90 5/26/2024
2.1.482 78 5/26/2024
2.1.481 84 5/26/2024
2.1.480 94 5/26/2024
2.1.479 75 5/26/2024
2.1.478 75 5/26/2024
2.1.477 84 5/25/2024
2.1.476 74 5/25/2024
2.1.475 76 5/25/2024
2.1.474 72 5/25/2024
2.1.473 84 5/25/2024
2.1.472 78 5/25/2024
2.1.471 77 5/25/2024
2.1.470 77 5/25/2024
2.1.469 89 5/25/2024
2.1.468 84 5/25/2024
2.1.467 78 5/25/2024
2.1.466 85 5/25/2024
2.1.465 75 5/25/2024
2.1.464 77 5/25/2024
2.1.463 83 5/25/2024
2.1.462 82 5/25/2024
2.1.461 77 5/25/2024
2.1.460 83 5/25/2024
2.1.459 79 5/25/2024
2.1.458 86 5/24/2024
2.1.457 78 5/24/2024
2.1.456 76 5/23/2024
2.1.455 82 5/23/2024
2.1.454 76 5/23/2024
2.1.453 75 5/23/2024
2.1.452 81 5/23/2024
2.1.451 81 5/23/2024
2.1.450 86 5/23/2024
2.1.449 76 5/23/2024
2.1.448 77 5/23/2024
2.1.447 75 5/23/2024
2.1.446 78 5/23/2024
2.1.445 71 5/23/2024
2.1.444 73 5/23/2024
2.1.443 80 5/23/2024
2.1.442 83 5/23/2024
2.1.441 80 5/23/2024
2.1.440 81 5/23/2024
2.1.439 79 5/23/2024
2.1.438 75 5/23/2024
2.1.437 84 5/22/2024
2.1.436 76 5/22/2024
2.1.435 82 5/22/2024
2.1.434 76 5/22/2024
2.1.433 83 5/22/2024
2.1.432 79 5/22/2024
2.1.431 89 5/22/2024
2.1.430 82 5/22/2024
2.1.429 92 5/22/2024
2.1.428 81 5/22/2024
2.1.427 75 5/22/2024
2.1.426 80 5/22/2024
2.1.425 82 5/22/2024
2.1.424 81 5/22/2024
2.1.423 72 5/22/2024
2.1.422 82 5/19/2024
2.1.421 82 5/19/2024
2.1.420 87 5/18/2024
2.1.419 73 5/18/2024
2.1.418 79 5/18/2024
2.1.417 82 5/18/2024
2.1.416 80 5/18/2024
2.1.415 84 5/18/2024
2.1.414 82 5/18/2024
2.1.413 74 5/18/2024
2.1.412 74 5/18/2024
2.1.411 95 5/18/2024
2.1.410 81 5/18/2024
2.1.409 76 5/18/2024
2.1.408 99 5/17/2024
2.1.407 87 5/17/2024
2.1.406 91 5/17/2024
2.1.405 86 5/17/2024
2.1.404 86 5/17/2024
2.1.403 82 5/17/2024
2.1.402 103 5/17/2024
2.1.401 81 5/17/2024
2.1.400 85 5/17/2024
2.1.399 79 5/17/2024
2.1.398 70 5/17/2024
2.1.397 68 5/17/2024
2.1.396 105 5/16/2024
2.1.395 81 5/16/2024
2.1.394 78 5/16/2024
2.1.393 91 5/16/2024
2.1.392 82 5/16/2024
2.1.391 83 5/16/2024
2.1.390 92 5/15/2024
2.1.389 86 5/15/2024
2.1.388 80 5/15/2024
2.1.387 82 5/15/2024
2.1.386 74 5/15/2024
2.1.385 73 5/15/2024
2.1.384 65 5/15/2024
2.1.383 64 5/15/2024
2.1.382 67 5/15/2024
2.1.381 69 5/14/2024
2.1.380 54 5/14/2024
2.1.379 62 5/14/2024
2.1.378 59 5/14/2024
2.1.377 71 5/13/2024
2.1.376 66 5/13/2024
2.1.375 68 5/13/2024
2.1.374 68 5/13/2024
2.1.373 62 5/13/2024
2.1.372 70 5/13/2024
2.1.371 62 5/13/2024
2.1.370 55 5/13/2024
2.1.369 69 5/13/2024
2.1.368 64 5/13/2024
2.1.367 64 5/13/2024
2.1.366 63 5/3/2024
2.1.365 70 5/1/2024
2.1.364 69 5/1/2024
2.1.363 83 4/30/2024
2.1.362 88 4/30/2024
2.1.361 97 4/30/2024
2.1.360 89 4/30/2024
2.1.359 95 4/30/2024
2.1.358 88 4/30/2024
2.1.357 90 4/30/2024
2.1.356 90 4/30/2024
2.1.355 84 4/30/2024
2.1.354 91 4/30/2024
2.1.353 91 4/30/2024
2.1.352 85 4/30/2024
2.1.351 83 4/30/2024
2.1.350 85 4/30/2024
2.1.349 84 4/30/2024
2.1.348 98 4/30/2024
2.1.347 81 4/30/2024
2.1.346 94 4/29/2024
2.1.345 79 4/29/2024
2.1.344 86 4/29/2024
2.1.343 79 4/29/2024
2.1.342 80 4/29/2024
2.1.341 87 4/29/2024
2.1.340 85 4/29/2024
2.1.339 86 4/29/2024
2.1.338 85 4/29/2024
2.1.337 85 4/29/2024
2.1.336 80 4/29/2024
2.1.335 84 4/29/2024
2.1.334 88 4/29/2024
2.1.333 88 4/28/2024
2.1.332 82 4/28/2024
2.1.331 78 4/28/2024
2.1.330 85 4/28/2024
2.1.329 92 4/28/2024
2.1.328 83 4/28/2024
2.1.327 93 4/28/2024
2.1.326 77 4/28/2024
2.1.325 77 4/28/2024
2.1.324 79 4/28/2024
2.1.323 93 4/28/2024
2.1.322 83 4/28/2024
2.1.321 79 4/28/2024
2.1.320 91 4/28/2024
2.1.319 87 4/28/2024
2.1.318 81 4/28/2024
2.1.317 78 4/28/2024
2.1.316 76 4/28/2024
2.1.315 84 4/28/2024
2.1.314 91 4/28/2024
2.1.313 78 4/28/2024
2.1.312 88 4/28/2024
2.1.311 89 4/28/2024
2.1.310 92 4/28/2024
2.1.309 80 4/28/2024
2.1.308 86 4/28/2024
2.1.307 86 4/27/2024
2.1.306 76 4/27/2024
2.1.305 80 4/27/2024
2.1.304 91 4/27/2024
2.1.303 86 4/22/2024
2.1.302 95 4/20/2024
2.1.301 86 4/20/2024
2.1.300 88 4/20/2024
2.1.299 91 4/20/2024
2.1.298 78 4/20/2024
2.1.297 82 4/20/2024
2.1.296 76 4/20/2024
2.1.295 80 4/20/2024
2.1.294 79 4/20/2024
2.1.293 83 4/19/2024
2.1.292 82 4/19/2024
2.1.291 86 4/19/2024
2.1.290 74 4/19/2024
2.1.289 78 4/19/2024
2.1.288 73 4/19/2024
2.1.287 75 4/19/2024
2.1.286 85 4/19/2024
2.1.285 81 4/19/2024
2.1.284 83 4/19/2024
2.1.283 82 4/19/2024
2.1.282 74 4/19/2024
2.1.281 81 4/19/2024
2.1.280 77 4/19/2024
2.1.279 80 4/19/2024
2.1.278 78 4/19/2024
2.1.277 73 4/19/2024
2.1.276 77 4/19/2024
2.1.275 81 4/18/2024
2.1.274 69 4/18/2024
2.1.273 108 4/15/2024
2.1.272 95 4/13/2024
2.1.271 79 4/13/2024
2.1.270 77 4/13/2024
2.1.269 68 4/13/2024
2.1.268 71 4/13/2024
2.1.267 73 4/13/2024
2.1.266 80 4/13/2024
2.1.265 78 4/13/2024
2.1.264 72 4/13/2024
2.1.263 77 4/13/2024
2.1.262 76 4/13/2024
2.1.261 78 4/13/2024
2.1.260 72 4/13/2024
2.1.259 72 4/13/2024
2.1.258 77 4/12/2024
2.1.257 59 4/12/2024
2.1.256 75 4/12/2024
2.1.255 74 4/12/2024
2.1.254 71 4/12/2024
2.1.253 68 4/12/2024
2.1.252 73 4/12/2024
2.1.251 70 4/12/2024
2.1.250 65 4/12/2024
2.1.249 77 4/12/2024
2.1.248 70 4/12/2024
2.1.247 69 4/12/2024
2.1.246 71 4/12/2024
2.1.245 75 4/12/2024
2.1.244 73 4/12/2024
2.1.243 77 4/12/2024
2.1.242 77 4/12/2024
2.1.241 74 4/12/2024
2.1.240 76 4/12/2024
2.1.239 83 4/12/2024
2.1.238 76 4/12/2024
2.1.237 77 4/12/2024
2.1.236 79 4/12/2024
2.1.235 79 4/12/2024
2.1.234 76 4/12/2024
2.1.233 70 4/12/2024
2.1.232 78 4/12/2024
2.1.231 148 4/11/2024
2.1.230 81 4/11/2024
2.1.229 84 4/10/2024
2.1.228 77 4/10/2024
2.1.227 77 4/10/2024
2.1.226 73 4/10/2024
2.1.225 70 4/10/2024
2.1.224 73 4/10/2024
2.1.223 72 4/10/2024
2.1.222 58 4/10/2024
2.1.221 60 4/10/2024
2.1.220 67 4/10/2024
2.1.219 73 4/10/2024
2.1.218 71 4/10/2024
2.1.217 72 4/10/2024
2.1.216 68 4/10/2024
2.1.215 66 4/10/2024
2.1.214 69 4/10/2024
2.1.213 81 4/9/2024
2.1.212 77 4/9/2024
2.1.211 80 4/9/2024
2.1.210 75 4/9/2024
2.1.209 91 4/8/2024
2.1.208 122 4/5/2024
2.1.207 72 4/4/2024
2.1.206 85 4/4/2024
2.1.205 77 4/4/2024
2.1.204 97 4/3/2024
2.1.203 83 4/3/2024
2.1.202 78 4/3/2024
2.1.201 76 4/3/2024
2.1.200 82 4/2/2024
2.1.199 73 4/2/2024
2.1.198 89 4/2/2024
2.1.197 86 4/2/2024
2.1.196 60 4/2/2024
2.1.195 85 4/2/2024
2.1.194 81 4/2/2024
2.1.193 88 4/2/2024
2.1.192 78 4/2/2024
2.1.191 65 4/2/2024
2.1.190 71 4/2/2024
2.1.189 79 4/1/2024
2.1.188 69 4/1/2024
2.1.187 76 4/1/2024
2.1.186 74 4/1/2024
2.1.185 71 4/1/2024
2.1.184 95 3/30/2024
2.1.183 82 3/30/2024
2.1.182 92 3/30/2024
2.1.181 79 3/30/2024
2.1.180 80 3/29/2024
2.1.179 80 3/29/2024
2.1.178 84 3/29/2024
2.1.177 75 3/29/2024
2.1.176 68 3/27/2024
2.1.175 83 3/26/2024
2.1.174 73 3/26/2024
2.1.173 69 3/25/2024
2.1.172 73 3/25/2024
2.1.171 63 3/25/2024
2.1.170 65 3/25/2024
2.1.169 75 3/25/2024
2.1.168 66 3/25/2024
2.1.167 82 3/25/2024
2.1.166 84 3/25/2024
2.1.165 75 3/25/2024
2.1.164 60 3/25/2024
2.1.163 78 3/25/2024
2.1.162 71 3/25/2024
2.1.161 85 3/24/2024
2.1.160 69 3/23/2024
2.1.159 97 3/21/2024
2.1.158 70 3/21/2024
2.1.157 87 3/21/2024
2.1.156 86 3/21/2024
2.1.155 80 3/21/2024
2.1.154 78 3/21/2024
2.1.153 80 3/21/2024
2.1.152 83 3/21/2024
2.1.151 86 3/21/2024
2.1.150 84 3/20/2024
2.1.149 71 3/20/2024
2.1.148 95 3/20/2024
2.1.147 95 3/20/2024
2.1.146 90 3/20/2024
2.1.145 97 3/20/2024
2.1.144 99 3/20/2024
2.1.143 92 3/20/2024
2.1.142 95 3/20/2024
2.1.141 78 3/19/2024
2.1.140 79 3/19/2024
2.1.139 97 3/19/2024
2.1.138 91 3/19/2024
2.1.137 84 3/19/2024
2.1.136 87 3/19/2024
2.1.135 90 3/19/2024
2.1.134 81 3/19/2024
2.1.133 104 3/19/2024
2.1.132 92 3/19/2024
2.1.131 99 3/19/2024
2.1.130 89 3/19/2024
2.1.129 90 3/19/2024
2.1.128 102 3/19/2024
2.1.127 76 3/19/2024
2.1.126 100 3/19/2024
2.1.125 93 3/18/2024
2.1.124 94 3/18/2024
2.1.123 83 3/18/2024
2.1.122 124 3/18/2024
2.1.121 101 3/16/2024
2.1.120 89 3/16/2024
2.1.119 101 3/16/2024
2.1.118 98 3/16/2024
2.1.117 93 3/16/2024
2.1.116 99 3/16/2024
2.1.115 98 3/16/2024
2.1.114 90 3/16/2024
2.1.113 94 3/16/2024
2.1.112 83 3/15/2024
2.1.111 84 3/15/2024
2.1.110 102 3/15/2024
2.1.109 92 3/15/2024
2.1.108 96 3/14/2024
2.1.107 102 3/14/2024
2.1.106 97 3/14/2024
2.1.105 70 3/14/2024
2.1.104 92 3/14/2024
2.1.103 107 3/13/2024
2.1.102 98 3/13/2024
2.1.101 96 3/13/2024
2.1.100 92 3/13/2024
2.1.99 94 3/13/2024
2.1.98 99 3/13/2024
2.1.97 96 3/13/2024
2.1.96 86 3/13/2024
2.1.95 92 3/13/2024
2.1.94 81 3/13/2024
2.1.93 107 3/13/2024
2.1.92 95 3/13/2024
2.1.91 105 3/13/2024
2.1.90 104 3/13/2024
2.1.89 99 3/13/2024
2.1.88 98 3/13/2024
2.1.87 88 3/13/2024
2.1.86 104 3/13/2024
2.1.85 84 3/13/2024
2.1.84 85 3/13/2024
2.1.83 102 3/13/2024
2.1.82 92 3/13/2024
2.1.81 91 3/13/2024
2.1.80 98 3/12/2024
2.1.79 100 3/12/2024
2.1.78 107 3/12/2024
2.1.77 91 3/12/2024
2.1.76 86 3/12/2024
2.1.75 90 3/12/2024
2.1.74 79 3/12/2024
2.1.73 97 3/12/2024
2.1.72 98 3/12/2024
2.1.71 82 3/12/2024
2.1.70 101 3/12/2024
2.1.69 77 3/12/2024
2.1.68 83 3/12/2024
2.1.67 87 3/12/2024
2.1.66 99 3/12/2024
2.1.65 99 3/11/2024
2.1.64 98 3/11/2024
2.1.63 120 3/11/2024
2.1.62 80 3/11/2024
2.1.61 108 3/11/2024
2.1.60 81 3/11/2024
2.1.59 92 3/11/2024
2.1.58 103 3/11/2024
2.1.57 85 3/11/2024
2.1.56 99 3/11/2024
2.1.55 91 3/11/2024
2.1.54 93 3/11/2024
2.1.53 101 3/11/2024
2.1.52 105 3/10/2024
2.1.51 96 3/10/2024
2.1.50 108 3/10/2024
2.1.49 104 3/10/2024
2.1.48 101 3/10/2024
2.1.47 87 3/10/2024
2.1.46 97 3/10/2024
2.1.45 95 3/10/2024
2.1.44 102 3/10/2024
2.1.43 97 3/10/2024
2.1.42 89 3/10/2024
2.1.41 101 3/9/2024
2.1.40 97 3/9/2024
2.1.39 99 3/9/2024
2.1.38 108 3/9/2024
2.1.37 112 3/9/2024
2.1.36 88 3/9/2024
2.1.35 101 3/8/2024
2.1.34 95 3/8/2024
2.1.33 98 3/8/2024
2.1.32 104 3/8/2024
2.1.31 100 3/8/2024
2.1.30 98 3/8/2024
2.1.29 90 3/8/2024
2.1.28 102 3/8/2024
2.1.27 88 3/8/2024
2.1.26 107 3/8/2024
2.1.25 85 3/8/2024
2.1.24 98 3/8/2024
2.1.23 90 3/8/2024
2.1.22 81 3/8/2024
2.1.21 110 3/8/2024
2.1.20 115 3/7/2024
2.1.19 100 3/7/2024
2.1.18 91 3/7/2024
2.1.17 94 3/6/2024
2.1.16 86 3/6/2024
2.1.15 102 3/6/2024
2.1.14 100 3/6/2024
2.1.13 102 3/6/2024
2.1.12 97 3/6/2024
2.1.11 99 3/6/2024
2.1.10 96 3/6/2024
2.1.9 101 3/6/2024
2.1.8 96 3/6/2024
2.1.7 91 3/6/2024
2.1.6 109 3/6/2024
2.1.5 106 3/6/2024
2.1.4 91 3/5/2024
2.1.3 102 3/5/2024