Soenneker.Blazor.TomSelect 2.1.714

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.714                
NuGet\Install-Package Soenneker.Blazor.TomSelect -Version 2.1.714                
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.714" />                
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.714                
#r "nuget: Soenneker.Blazor.TomSelect, 2.1.714"                
#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.714

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

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.877 20 7/15/2024
2.1.876 20 7/15/2024
2.1.875 25 7/15/2024
2.1.874 25 7/14/2024
2.1.873 25 7/14/2024
2.1.872 24 7/14/2024
2.1.871 32 7/14/2024
2.1.870 29 7/14/2024
2.1.869 30 7/14/2024
2.1.868 23 7/14/2024
2.1.867 25 7/14/2024
2.1.866 27 7/14/2024
2.1.865 29 7/14/2024
2.1.864 24 7/14/2024
2.1.863 25 7/14/2024
2.1.862 27 7/14/2024
2.1.861 23 7/14/2024
2.1.860 23 7/14/2024
2.1.859 26 7/14/2024
2.1.858 22 7/14/2024
2.1.857 22 7/14/2024
2.1.856 25 7/14/2024
2.1.855 25 7/14/2024
2.1.854 26 7/14/2024
2.1.853 34 7/12/2024
2.1.852 31 7/11/2024
2.1.851 26 7/11/2024
2.1.850 33 7/11/2024
2.1.849 28 7/11/2024
2.1.848 48 7/10/2024
2.1.847 30 7/10/2024
2.1.846 31 7/10/2024
2.1.845 29 7/10/2024
2.1.844 35 7/10/2024
2.1.843 31 7/10/2024
2.1.842 36 7/10/2024
2.1.841 33 7/10/2024
2.1.840 28 7/10/2024
2.1.839 27 7/10/2024
2.1.838 30 7/10/2024
2.1.837 37 7/10/2024
2.1.836 25 7/10/2024
2.1.835 27 7/10/2024
2.1.834 43 7/10/2024
2.1.833 28 7/10/2024
2.1.832 28 7/10/2024
2.1.831 28 7/10/2024
2.1.830 28 7/10/2024
2.1.829 34 7/10/2024
2.1.828 29 7/10/2024
2.1.827 28 7/10/2024
2.1.826 26 7/10/2024
2.1.825 26 7/10/2024
2.1.824 25 7/10/2024
2.1.823 32 7/10/2024
2.1.822 43 7/10/2024
2.1.821 38 7/10/2024
2.1.820 26 7/10/2024
2.1.819 48 7/10/2024
2.1.818 61 7/10/2024
2.1.817 44 7/10/2024
2.1.816 41 7/10/2024
2.1.815 60 7/10/2024
2.1.814 51 7/10/2024
2.1.813 50 7/10/2024
2.1.812 59 7/10/2024
2.1.811 69 7/10/2024
2.1.810 41 7/10/2024
2.1.809 49 7/10/2024
2.1.808 42 7/10/2024
2.1.806 49 7/10/2024
2.1.804 54 7/10/2024
2.1.803 51 7/10/2024
2.1.802 46 7/10/2024
2.1.801 50 7/10/2024
2.1.800 52 7/9/2024
2.1.793 40 7/9/2024
2.1.792 49 7/9/2024
2.1.791 48 7/9/2024
2.1.790 49 7/9/2024
2.1.789 50 7/9/2024
2.1.788 55 7/9/2024
2.1.787 46 7/9/2024
2.1.786 51 7/9/2024
2.1.785 55 7/9/2024
2.1.784 57 7/9/2024
2.1.783 50 7/9/2024
2.1.782 48 7/9/2024
2.1.781 49 7/9/2024
2.1.780 72 7/9/2024
2.1.779 49 7/9/2024
2.1.778 50 7/9/2024
2.1.777 51 7/9/2024
2.1.776 50 7/9/2024
2.1.775 51 7/9/2024
2.1.774 71 7/9/2024
2.1.773 55 7/9/2024
2.1.772 65 7/9/2024
2.1.771 46 7/9/2024
2.1.770 71 7/9/2024
2.1.769 40 7/9/2024
2.1.768 51 7/9/2024
2.1.767 51 7/9/2024
2.1.766 74 7/9/2024
2.1.765 57 7/9/2024
2.1.764 56 7/9/2024
2.1.763 65 7/9/2024
2.1.762 70 7/9/2024
2.1.761 53 7/9/2024
2.1.760 62 7/9/2024
2.1.759 61 7/8/2024
2.1.758 66 7/8/2024
2.1.757 51 7/8/2024
2.1.756 63 7/8/2024
2.1.755 69 7/8/2024
2.1.754 69 7/8/2024
2.1.753 63 7/8/2024
2.1.752 55 7/8/2024
2.1.751 47 7/8/2024
2.1.750 62 7/8/2024
2.1.749 67 7/8/2024
2.1.748 74 7/8/2024
2.1.746 65 7/8/2024
2.1.745 59 7/8/2024
2.1.744 45 7/8/2024
2.1.743 59 7/8/2024
2.1.742 61 7/8/2024
2.1.741 47 7/8/2024
2.1.740 58 7/8/2024
2.1.739 45 7/8/2024
2.1.738 47 7/8/2024
2.1.737 48 7/8/2024
2.1.736 69 7/8/2024
2.1.735 59 7/8/2024
2.1.734 58 7/8/2024
2.1.733 61 7/8/2024
2.1.732 61 7/8/2024
2.1.731 55 7/8/2024
2.1.730 55 7/8/2024
2.1.729 46 7/7/2024
2.1.728 70 7/7/2024
2.1.727 71 7/7/2024
2.1.726 64 7/7/2024
2.1.725 69 7/7/2024
2.1.724 56 7/7/2024
2.1.723 56 7/7/2024
2.1.722 58 7/7/2024
2.1.721 80 7/7/2024
2.1.720 57 7/7/2024
2.1.719 59 7/7/2024
2.1.718 57 7/7/2024
2.1.717 51 7/7/2024
2.1.716 60 7/7/2024
2.1.715 58 7/7/2024
2.1.714 56 7/7/2024
2.1.713 71 7/7/2024
2.1.712 58 7/7/2024
2.1.711 71 7/7/2024
2.1.710 58 7/6/2024
2.1.709 67 7/6/2024
2.1.708 55 7/6/2024
2.1.707 66 7/5/2024
2.1.706 69 7/5/2024
2.1.705 78 7/5/2024
2.1.704 87 7/4/2024
2.1.703 57 7/4/2024
2.1.702 75 7/4/2024
2.1.701 75 7/4/2024
2.1.700 78 7/3/2024
2.1.699 58 7/3/2024
2.1.698 78 7/3/2024
2.1.697 70 7/3/2024
2.1.696 64 7/3/2024
2.1.695 68 7/3/2024
2.1.694 57 7/3/2024
2.1.693 63 7/3/2024
2.1.692 57 7/3/2024
2.1.691 64 7/3/2024
2.1.690 73 7/3/2024
2.1.689 72 7/3/2024
2.1.688 68 7/3/2024
2.1.687 73 7/3/2024
2.1.686 68 7/3/2024
2.1.685 65 7/3/2024
2.1.684 65 7/3/2024
2.1.683 71 7/3/2024
2.1.682 76 7/3/2024
2.1.681 71 7/3/2024
2.1.680 73 7/3/2024
2.1.679 67 7/3/2024
2.1.678 58 7/3/2024
2.1.677 57 7/3/2024
2.1.676 71 7/3/2024
2.1.675 71 7/3/2024
2.1.674 65 7/3/2024
2.1.673 69 7/3/2024
2.1.672 94 7/1/2024
2.1.671 71 7/1/2024
2.1.670 75 6/30/2024
2.1.669 69 6/30/2024
2.1.668 70 6/30/2024
2.1.667 66 6/30/2024
2.1.666 76 6/29/2024
2.1.665 74 6/29/2024
2.1.664 80 6/28/2024
2.1.663 72 6/28/2024
2.1.662 75 6/28/2024
2.1.661 75 6/28/2024
2.1.660 75 6/27/2024
2.1.659 81 6/27/2024
2.1.658 83 6/27/2024
2.1.657 73 6/27/2024
2.1.656 80 6/27/2024
2.1.655 80 6/27/2024
2.1.654 75 6/27/2024
2.1.653 70 6/27/2024
2.1.652 72 6/27/2024
2.1.651 68 6/27/2024
2.1.650 71 6/27/2024
2.1.649 83 6/27/2024
2.1.648 74 6/27/2024
2.1.647 71 6/27/2024
2.1.646 69 6/27/2024
2.1.645 82 6/24/2024
2.1.644 65 6/24/2024
2.1.643 72 6/22/2024
2.1.642 76 6/22/2024
2.1.641 75 6/22/2024
2.1.640 72 6/22/2024
2.1.639 73 6/22/2024
2.1.638 68 6/22/2024
2.1.637 71 6/22/2024
2.1.636 75 6/22/2024
2.1.635 71 6/22/2024
2.1.634 73 6/22/2024
2.1.633 73 6/22/2024
2.1.632 76 6/21/2024
2.1.631 105 6/17/2024
2.1.630 80 6/16/2024
2.1.629 82 6/16/2024
2.1.628 81 6/16/2024
2.1.627 76 6/16/2024
2.1.626 83 6/15/2024
2.1.625 75 6/15/2024
2.1.624 74 6/15/2024
2.1.623 84 6/15/2024
2.1.622 81 6/15/2024
2.1.621 78 6/15/2024
2.1.620 78 6/15/2024
2.1.619 77 6/15/2024
2.1.618 79 6/15/2024
2.1.617 73 6/15/2024
2.1.616 77 6/15/2024
2.1.615 69 6/15/2024
2.1.614 79 6/15/2024
2.1.613 67 6/15/2024
2.1.612 67 6/15/2024
2.1.611 82 6/15/2024
2.1.610 77 6/15/2024
2.1.609 76 6/15/2024
2.1.608 70 6/15/2024
2.1.607 76 6/15/2024
2.1.606 78 6/15/2024
2.1.605 73 6/15/2024
2.1.604 82 6/14/2024
2.1.603 82 6/14/2024
2.1.602 72 6/14/2024
2.1.601 75 6/14/2024
2.1.600 78 6/14/2024
2.1.599 71 6/12/2024
2.1.598 93 6/4/2024
2.1.597 79 6/4/2024
2.1.596 76 6/4/2024
2.1.595 74 6/4/2024
2.1.594 75 6/4/2024
2.1.593 79 6/4/2024
2.1.592 88 6/4/2024
2.1.591 78 6/4/2024
2.1.590 90 6/3/2024
2.1.589 77 6/3/2024
2.1.588 78 6/3/2024
2.1.587 89 6/2/2024
2.1.586 81 6/2/2024
2.1.585 88 6/2/2024
2.1.584 76 6/2/2024
2.1.583 79 6/2/2024
2.1.582 87 6/2/2024
2.1.581 78 6/2/2024
2.1.580 80 6/2/2024
2.1.579 82 6/1/2024
2.1.578 81 6/1/2024
2.1.577 80 6/1/2024
2.1.576 85 6/1/2024
2.1.575 81 6/1/2024
2.1.574 83 6/1/2024
2.1.573 87 6/1/2024
2.1.572 81 6/1/2024
2.1.571 80 6/1/2024
2.1.570 85 6/1/2024
2.1.569 80 6/1/2024
2.1.568 80 6/1/2024
2.1.567 73 6/1/2024
2.1.566 87 6/1/2024
2.1.565 78 6/1/2024
2.1.564 77 6/1/2024
2.1.563 75 6/1/2024
2.1.562 75 6/1/2024
2.1.561 83 6/1/2024
2.1.560 79 6/1/2024
2.1.559 75 6/1/2024
2.1.558 78 6/1/2024
2.1.557 84 5/31/2024
2.1.556 77 5/31/2024
2.1.555 83 5/31/2024
2.1.554 76 5/31/2024
2.1.553 81 5/31/2024
2.1.552 91 5/31/2024
2.1.551 65 5/31/2024
2.1.550 65 5/31/2024
2.1.549 62 5/31/2024
2.1.548 79 5/31/2024
2.1.547 81 5/31/2024
2.1.546 84 5/31/2024
2.1.545 82 5/31/2024
2.1.544 80 5/31/2024
2.1.543 80 5/31/2024
2.1.542 78 5/29/2024
2.1.541 85 5/29/2024
2.1.540 86 5/29/2024
2.1.539 76 5/29/2024
2.1.538 83 5/29/2024
2.1.537 81 5/29/2024
2.1.536 75 5/29/2024
2.1.535 74 5/29/2024
2.1.534 78 5/29/2024
2.1.533 76 5/29/2024
2.1.532 75 5/29/2024
2.1.531 82 5/29/2024
2.1.530 71 5/29/2024
2.1.529 84 5/29/2024
2.1.528 81 5/28/2024
2.1.527 74 5/28/2024
2.1.526 64 5/28/2024
2.1.525 63 5/28/2024
2.1.524 78 5/28/2024
2.1.523 73 5/28/2024
2.1.522 69 5/28/2024
2.1.521 93 5/28/2024
2.1.520 73 5/28/2024
2.1.519 68 5/28/2024
2.1.518 71 5/28/2024
2.1.517 72 5/28/2024
2.1.516 73 5/28/2024
2.1.515 74 5/28/2024
2.1.514 71 5/28/2024
2.1.513 75 5/28/2024
2.1.512 68 5/28/2024
2.1.511 68 5/28/2024
2.1.510 75 5/28/2024
2.1.509 71 5/28/2024
2.1.508 71 5/28/2024
2.1.507 71 5/27/2024
2.1.506 71 5/27/2024
2.1.505 70 5/27/2024
2.1.504 77 5/27/2024
2.1.503 77 5/27/2024
2.1.502 84 5/27/2024
2.1.501 77 5/27/2024
2.1.500 78 5/27/2024
2.1.499 78 5/27/2024
2.1.498 81 5/27/2024
2.1.497 78 5/27/2024
2.1.496 75 5/27/2024
2.1.495 81 5/26/2024
2.1.494 77 5/26/2024
2.1.493 80 5/26/2024
2.1.492 74 5/26/2024
2.1.491 76 5/26/2024
2.1.490 78 5/26/2024
2.1.489 86 5/26/2024
2.1.488 84 5/26/2024
2.1.487 80 5/26/2024
2.1.486 90 5/26/2024
2.1.485 87 5/26/2024
2.1.484 79 5/26/2024
2.1.483 91 5/26/2024
2.1.482 79 5/26/2024
2.1.481 85 5/26/2024
2.1.480 95 5/26/2024
2.1.479 76 5/26/2024
2.1.478 76 5/26/2024
2.1.477 85 5/25/2024
2.1.476 75 5/25/2024
2.1.475 77 5/25/2024
2.1.474 73 5/25/2024
2.1.473 85 5/25/2024
2.1.472 79 5/25/2024
2.1.471 78 5/25/2024
2.1.470 78 5/25/2024
2.1.469 90 5/25/2024
2.1.468 85 5/25/2024
2.1.467 79 5/25/2024
2.1.466 86 5/25/2024
2.1.465 76 5/25/2024
2.1.464 78 5/25/2024
2.1.463 84 5/25/2024
2.1.462 83 5/25/2024
2.1.461 78 5/25/2024
2.1.460 84 5/25/2024
2.1.459 80 5/25/2024
2.1.458 87 5/24/2024
2.1.457 79 5/24/2024
2.1.456 77 5/23/2024
2.1.455 83 5/23/2024
2.1.454 77 5/23/2024
2.1.453 76 5/23/2024
2.1.452 82 5/23/2024
2.1.451 82 5/23/2024
2.1.450 87 5/23/2024
2.1.449 77 5/23/2024
2.1.448 78 5/23/2024
2.1.447 76 5/23/2024
2.1.446 79 5/23/2024
2.1.445 72 5/23/2024
2.1.444 74 5/23/2024
2.1.443 81 5/23/2024
2.1.442 84 5/23/2024
2.1.441 81 5/23/2024
2.1.440 82 5/23/2024
2.1.439 80 5/23/2024
2.1.438 76 5/23/2024
2.1.437 85 5/22/2024
2.1.436 77 5/22/2024
2.1.435 83 5/22/2024
2.1.434 77 5/22/2024
2.1.433 85 5/22/2024
2.1.432 80 5/22/2024
2.1.431 90 5/22/2024
2.1.430 83 5/22/2024
2.1.429 93 5/22/2024
2.1.428 82 5/22/2024
2.1.427 76 5/22/2024
2.1.426 81 5/22/2024
2.1.425 83 5/22/2024
2.1.424 82 5/22/2024
2.1.423 73 5/22/2024
2.1.422 83 5/19/2024
2.1.421 83 5/19/2024
2.1.420 88 5/18/2024
2.1.419 74 5/18/2024
2.1.418 80 5/18/2024
2.1.417 83 5/18/2024
2.1.416 81 5/18/2024
2.1.415 85 5/18/2024
2.1.414 83 5/18/2024
2.1.413 75 5/18/2024
2.1.412 75 5/18/2024
2.1.411 96 5/18/2024
2.1.410 82 5/18/2024
2.1.409 77 5/18/2024
2.1.408 100 5/17/2024
2.1.407 88 5/17/2024
2.1.406 92 5/17/2024
2.1.405 87 5/17/2024
2.1.404 87 5/17/2024
2.1.403 83 5/17/2024
2.1.402 104 5/17/2024
2.1.401 82 5/17/2024
2.1.400 86 5/17/2024
2.1.399 80 5/17/2024
2.1.398 71 5/17/2024
2.1.397 69 5/17/2024
2.1.396 106 5/16/2024
2.1.395 82 5/16/2024
2.1.394 79 5/16/2024
2.1.393 92 5/16/2024
2.1.392 83 5/16/2024
2.1.391 84 5/16/2024
2.1.390 93 5/15/2024
2.1.389 87 5/15/2024
2.1.388 81 5/15/2024
2.1.387 83 5/15/2024
2.1.386 75 5/15/2024
2.1.385 74 5/15/2024
2.1.384 66 5/15/2024
2.1.383 65 5/15/2024
2.1.382 68 5/15/2024
2.1.381 70 5/14/2024
2.1.380 55 5/14/2024
2.1.379 63 5/14/2024
2.1.378 60 5/14/2024
2.1.377 72 5/13/2024
2.1.376 67 5/13/2024
2.1.375 69 5/13/2024
2.1.374 69 5/13/2024
2.1.373 63 5/13/2024
2.1.372 71 5/13/2024
2.1.371 63 5/13/2024
2.1.370 56 5/13/2024
2.1.369 70 5/13/2024
2.1.368 65 5/13/2024
2.1.367 65 5/13/2024
2.1.366 64 5/3/2024
2.1.365 71 5/1/2024
2.1.364 72 5/1/2024
2.1.363 84 4/30/2024
2.1.362 91 4/30/2024
2.1.361 100 4/30/2024
2.1.360 92 4/30/2024
2.1.359 98 4/30/2024
2.1.358 91 4/30/2024
2.1.357 92 4/30/2024
2.1.356 92 4/30/2024
2.1.355 86 4/30/2024
2.1.354 93 4/30/2024
2.1.353 93 4/30/2024
2.1.352 87 4/30/2024
2.1.351 85 4/30/2024
2.1.350 87 4/30/2024
2.1.349 86 4/30/2024
2.1.348 100 4/30/2024
2.1.347 83 4/30/2024
2.1.346 96 4/29/2024
2.1.345 81 4/29/2024
2.1.344 88 4/29/2024
2.1.343 81 4/29/2024
2.1.342 82 4/29/2024
2.1.341 89 4/29/2024
2.1.340 85 4/29/2024
2.1.339 92 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 89 4/28/2024
2.1.332 83 4/28/2024
2.1.331 78 4/28/2024
2.1.330 87 4/28/2024
2.1.329 94 4/28/2024
2.1.328 85 4/28/2024
2.1.327 95 4/28/2024
2.1.326 79 4/28/2024
2.1.325 79 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 93 4/28/2024
2.1.309 80 4/28/2024
2.1.308 86 4/28/2024
2.1.307 88 4/27/2024
2.1.306 78 4/27/2024
2.1.305 82 4/27/2024
2.1.304 93 4/27/2024
2.1.303 88 4/22/2024
2.1.302 97 4/20/2024
2.1.301 88 4/20/2024
2.1.300 90 4/20/2024
2.1.299 93 4/20/2024
2.1.298 80 4/20/2024
2.1.297 84 4/20/2024
2.1.296 78 4/20/2024
2.1.295 82 4/20/2024
2.1.294 81 4/20/2024
2.1.293 85 4/19/2024
2.1.292 84 4/19/2024
2.1.291 88 4/19/2024
2.1.290 76 4/19/2024
2.1.289 80 4/19/2024
2.1.288 75 4/19/2024
2.1.287 77 4/19/2024
2.1.286 87 4/19/2024
2.1.285 83 4/19/2024
2.1.284 85 4/19/2024
2.1.283 84 4/19/2024
2.1.282 76 4/19/2024
2.1.281 83 4/19/2024
2.1.280 79 4/19/2024
2.1.279 82 4/19/2024
2.1.278 80 4/19/2024
2.1.277 75 4/19/2024
2.1.276 79 4/19/2024
2.1.275 83 4/18/2024
2.1.274 71 4/18/2024
2.1.273 110 4/15/2024
2.1.272 97 4/13/2024
2.1.271 81 4/13/2024
2.1.270 85 4/13/2024
2.1.269 70 4/13/2024
2.1.268 73 4/13/2024
2.1.267 75 4/13/2024
2.1.266 82 4/13/2024
2.1.265 80 4/13/2024
2.1.264 74 4/13/2024
2.1.263 79 4/13/2024
2.1.262 78 4/13/2024
2.1.261 80 4/13/2024
2.1.260 74 4/13/2024
2.1.259 74 4/13/2024
2.1.258 79 4/12/2024
2.1.257 61 4/12/2024
2.1.256 77 4/12/2024
2.1.255 76 4/12/2024
2.1.254 73 4/12/2024
2.1.253 70 4/12/2024
2.1.252 75 4/12/2024
2.1.251 72 4/12/2024
2.1.250 67 4/12/2024
2.1.249 79 4/12/2024
2.1.248 72 4/12/2024
2.1.247 71 4/12/2024
2.1.246 73 4/12/2024
2.1.245 77 4/12/2024
2.1.244 75 4/12/2024
2.1.243 79 4/12/2024
2.1.242 79 4/12/2024
2.1.241 76 4/12/2024
2.1.240 78 4/12/2024
2.1.239 86 4/12/2024
2.1.238 78 4/12/2024
2.1.237 79 4/12/2024
2.1.236 81 4/12/2024
2.1.235 81 4/12/2024
2.1.234 78 4/12/2024
2.1.233 72 4/12/2024
2.1.232 80 4/12/2024
2.1.231 171 4/11/2024
2.1.230 83 4/11/2024
2.1.229 86 4/10/2024
2.1.228 79 4/10/2024
2.1.227 79 4/10/2024
2.1.226 75 4/10/2024
2.1.225 72 4/10/2024
2.1.224 75 4/10/2024
2.1.223 74 4/10/2024
2.1.222 60 4/10/2024
2.1.221 62 4/10/2024
2.1.220 69 4/10/2024
2.1.219 75 4/10/2024
2.1.218 73 4/10/2024
2.1.217 74 4/10/2024
2.1.216 70 4/10/2024
2.1.215 68 4/10/2024
2.1.214 71 4/10/2024
2.1.213 83 4/9/2024
2.1.212 79 4/9/2024
2.1.211 82 4/9/2024
2.1.210 77 4/9/2024
2.1.209 91 4/8/2024
2.1.208 124 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 74 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 87 4/2/2024
2.1.194 81 4/2/2024
2.1.193 88 4/2/2024
2.1.192 80 4/2/2024
2.1.191 65 4/2/2024
2.1.190 72 4/2/2024
2.1.189 81 4/1/2024
2.1.188 71 4/1/2024
2.1.187 78 4/1/2024
2.1.186 76 4/1/2024
2.1.185 73 4/1/2024
2.1.184 97 3/30/2024
2.1.183 84 3/30/2024
2.1.182 94 3/30/2024
2.1.181 81 3/30/2024
2.1.180 82 3/29/2024
2.1.179 82 3/29/2024
2.1.178 86 3/29/2024
2.1.177 77 3/29/2024
2.1.176 70 3/27/2024
2.1.175 85 3/26/2024
2.1.174 75 3/26/2024
2.1.173 71 3/25/2024
2.1.172 75 3/25/2024
2.1.171 65 3/25/2024
2.1.170 67 3/25/2024
2.1.169 77 3/25/2024
2.1.168 68 3/25/2024
2.1.167 84 3/25/2024
2.1.166 86 3/25/2024
2.1.165 77 3/25/2024
2.1.164 62 3/25/2024
2.1.163 80 3/25/2024
2.1.162 73 3/25/2024
2.1.161 87 3/24/2024
2.1.160 71 3/23/2024
2.1.159 99 3/21/2024
2.1.158 72 3/21/2024
2.1.157 89 3/21/2024
2.1.156 88 3/21/2024
2.1.155 82 3/21/2024
2.1.154 80 3/21/2024
2.1.153 82 3/21/2024
2.1.152 85 3/21/2024
2.1.151 88 3/21/2024
2.1.150 86 3/20/2024
2.1.149 73 3/20/2024
2.1.148 97 3/20/2024
2.1.147 97 3/20/2024
2.1.146 92 3/20/2024
2.1.145 99 3/20/2024
2.1.144 101 3/20/2024
2.1.143 94 3/20/2024
2.1.142 97 3/20/2024
2.1.141 80 3/19/2024
2.1.140 81 3/19/2024
2.1.139 99 3/19/2024
2.1.138 93 3/19/2024
2.1.137 86 3/19/2024
2.1.136 89 3/19/2024
2.1.135 92 3/19/2024
2.1.134 83 3/19/2024
2.1.133 106 3/19/2024
2.1.132 94 3/19/2024
2.1.131 101 3/19/2024
2.1.130 91 3/19/2024
2.1.129 92 3/19/2024
2.1.128 104 3/19/2024
2.1.127 78 3/19/2024
2.1.126 102 3/19/2024
2.1.125 95 3/18/2024
2.1.124 96 3/18/2024
2.1.123 85 3/18/2024
2.1.122 126 3/18/2024
2.1.121 103 3/16/2024
2.1.120 91 3/16/2024
2.1.119 103 3/16/2024
2.1.118 100 3/16/2024
2.1.117 95 3/16/2024
2.1.116 101 3/16/2024
2.1.115 100 3/16/2024
2.1.114 92 3/16/2024
2.1.113 96 3/16/2024
2.1.112 85 3/15/2024
2.1.111 86 3/15/2024
2.1.110 104 3/15/2024
2.1.109 94 3/15/2024
2.1.108 101 3/14/2024
2.1.107 107 3/14/2024
2.1.106 102 3/14/2024
2.1.105 75 3/14/2024
2.1.104 97 3/14/2024
2.1.103 113 3/13/2024
2.1.102 103 3/13/2024
2.1.101 101 3/13/2024
2.1.100 97 3/13/2024
2.1.99 99 3/13/2024
2.1.98 104 3/13/2024
2.1.97 101 3/13/2024
2.1.96 90 3/13/2024
2.1.95 96 3/13/2024
2.1.94 85 3/13/2024
2.1.93 110 3/13/2024
2.1.92 99 3/13/2024
2.1.91 109 3/13/2024
2.1.90 108 3/13/2024
2.1.89 103 3/13/2024
2.1.88 102 3/13/2024
2.1.87 92 3/13/2024
2.1.86 108 3/13/2024
2.1.85 87 3/13/2024
2.1.84 89 3/13/2024
2.1.83 107 3/13/2024
2.1.82 97 3/13/2024
2.1.81 97 3/13/2024
2.1.80 103 3/12/2024
2.1.79 106 3/12/2024
2.1.78 113 3/12/2024
2.1.77 97 3/12/2024
2.1.76 92 3/12/2024
2.1.75 94 3/12/2024
2.1.74 83 3/12/2024
2.1.73 101 3/12/2024
2.1.72 98 3/12/2024
2.1.71 83 3/12/2024
2.1.70 105 3/12/2024
2.1.69 81 3/12/2024
2.1.68 87 3/12/2024
2.1.67 91 3/12/2024
2.1.66 103 3/12/2024
2.1.65 103 3/11/2024
2.1.64 102 3/11/2024
2.1.63 124 3/11/2024
2.1.62 84 3/11/2024
2.1.61 118 3/11/2024
2.1.60 85 3/11/2024
2.1.59 96 3/11/2024
2.1.58 109 3/11/2024
2.1.57 91 3/11/2024
2.1.56 105 3/11/2024
2.1.55 97 3/11/2024
2.1.54 99 3/11/2024
2.1.53 106 3/11/2024
2.1.52 111 3/10/2024
2.1.51 101 3/10/2024
2.1.50 113 3/10/2024
2.1.49 110 3/10/2024
2.1.48 106 3/10/2024
2.1.47 93 3/10/2024
2.1.46 102 3/10/2024
2.1.45 101 3/10/2024
2.1.44 107 3/10/2024
2.1.43 102 3/10/2024
2.1.42 94 3/10/2024
2.1.41 107 3/9/2024
2.1.40 102 3/9/2024
2.1.39 103 3/9/2024
2.1.38 114 3/9/2024
2.1.37 117 3/9/2024
2.1.36 94 3/9/2024
2.1.35 105 3/8/2024
2.1.34 100 3/8/2024
2.1.33 104 3/8/2024
2.1.32 110 3/8/2024
2.1.31 104 3/8/2024
2.1.30 102 3/8/2024
2.1.29 94 3/8/2024
2.1.28 108 3/8/2024
2.1.27 94 3/8/2024
2.1.26 109 3/8/2024
2.1.25 87 3/8/2024
2.1.24 100 3/8/2024
2.1.23 93 3/8/2024
2.1.22 84 3/8/2024
2.1.21 114 3/8/2024
2.1.20 118 3/7/2024
2.1.19 102 3/7/2024
2.1.18 93 3/7/2024
2.1.17 95 3/6/2024
2.1.16 93 3/6/2024
2.1.15 104 3/6/2024
2.1.14 102 3/6/2024
2.1.13 105 3/6/2024
2.1.12 100 3/6/2024
2.1.11 105 3/6/2024
2.1.10 99 3/6/2024
2.1.9 106 3/6/2024
2.1.8 100 3/6/2024
2.1.7 95 3/6/2024
2.1.6 112 3/6/2024
2.1.5 110 3/6/2024
2.1.4 96 3/5/2024
2.1.3 107 3/5/2024