Soenneker.Twilio.RestClient 2.1.719

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

// Install Soenneker.Twilio.RestClient as a Cake Tool
#tool nuget:?package=Soenneker.Twilio.RestClient&version=2.1.719                

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.Twilio.RestClient

An async thread-safe singleton for a Twilio RestClient

Installation

dotnet add package Soenneker.Twilio.RestClient

Why?

This library provides a singleton of a TwilioRestClient.

Internally it implements an HttpClient singleton. This HttpClient has less overhead than new instances of HttpClient and IHttpClientFactory all while correctly handling connection pooling for DNS changes.

See soenneker.utils.httpclientcache for more information.

Usage

  1. Register ITwilioRestClientUtil with DI.
public static async Task Main(string[] args)
{
    ...
    builder.Services.AddTwilioRestClientUtilAsSingleton();
}
  1. Inject ITwilioRestClientUtil via constructor, and retrieve a TwilioRestClient.
public class TestClass
{
    ITwilioRestClientUtil _twilioRestClientUtil;

    public TestClass(ITwilioRestClientUtil twilioRestClientUtil)
    {
        _twilioRestClientUtil = twilioRestClientUtil;
    }

    public async ValueTask SendMessage()
    {
        var message = await MessageResource.CreateAsync(
            new PhoneNumber("+11234567890"),
            from: new PhoneNumber("+10987654321"),
            body: "Hello World!",
            client: await _twilioRestClientUtil.Get()
        );

        Console.WriteLine(message.Sid);
    }
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.1029 10 9/27/2024
2.1.1028 14 9/27/2024
2.1.1027 20 9/27/2024
2.1.1026 16 9/27/2024
2.1.1025 26 9/27/2024
2.1.1023 23 9/27/2024
2.1.1022 23 9/27/2024
2.1.1021 29 9/27/2024
2.1.1020 22 9/27/2024
2.1.1019 32 9/27/2024
2.1.1018 27 9/27/2024
2.1.1017 25 9/27/2024
2.1.1016 25 9/27/2024
2.1.1015 21 9/27/2024
2.1.1014 19 9/27/2024
2.1.1013 29 9/27/2024
2.1.1012 33 9/27/2024
2.1.1011 25 9/27/2024
2.1.1010 36 9/27/2024
2.1.1009 28 9/27/2024
2.1.1008 39 9/26/2024
2.1.1007 36 9/26/2024
2.1.1006 29 9/26/2024
2.1.1005 39 9/26/2024
2.1.1004 34 9/26/2024
2.1.1003 34 9/26/2024
2.1.1002 39 9/26/2024
2.1.1001 31 9/26/2024
2.1.1000 27 9/26/2024
2.1.999 37 9/26/2024
2.1.998 32 9/26/2024
2.1.997 29 9/26/2024
2.1.996 33 9/26/2024
2.1.995 29 9/26/2024
2.1.994 35 9/26/2024
2.1.993 31 9/26/2024
2.1.992 23 9/26/2024
2.1.991 39 9/26/2024
2.1.990 34 9/26/2024
2.1.989 32 9/26/2024
2.1.988 35 9/26/2024
2.1.987 30 9/25/2024
2.1.986 65 9/24/2024
2.1.985 67 9/23/2024
2.1.984 69 9/23/2024
2.1.983 60 9/23/2024
2.1.982 60 9/23/2024
2.1.981 59 9/23/2024
2.1.980 67 9/23/2024
2.1.979 61 9/23/2024
2.1.978 63 9/23/2024
2.1.977 64 9/23/2024
2.1.976 69 9/23/2024
2.1.975 67 9/23/2024
2.1.974 68 9/23/2024
2.1.973 58 9/23/2024
2.1.972 58 9/23/2024
2.1.971 55 9/23/2024
2.1.970 52 9/23/2024
2.1.969 48 9/23/2024
2.1.968 49 9/23/2024
2.1.967 69 9/23/2024
2.1.966 49 9/23/2024
2.1.965 58 9/23/2024
2.1.964 70 9/23/2024
2.1.963 57 9/23/2024
2.1.962 61 9/23/2024
2.1.961 68 9/23/2024
2.1.960 55 9/23/2024
2.1.959 66 9/23/2024
2.1.958 76 9/23/2024
2.1.957 80 9/23/2024
2.1.956 72 9/19/2024
2.1.955 65 9/18/2024
2.1.954 67 9/18/2024
2.1.953 73 9/18/2024
2.1.952 81 9/18/2024
2.1.951 81 9/18/2024
2.1.950 92 9/18/2024
2.1.949 74 9/18/2024
2.1.948 76 9/18/2024
2.1.947 87 9/17/2024
2.1.945 82 9/17/2024
2.1.944 71 9/17/2024
2.1.943 69 9/17/2024
2.1.942 85 9/17/2024
2.1.941 71 9/17/2024
2.1.940 80 9/17/2024
2.1.939 76 9/17/2024
2.1.937 77 9/17/2024
2.1.936 75 9/17/2024
2.1.935 83 9/17/2024
2.1.934 79 9/17/2024
2.1.933 73 9/17/2024
2.1.932 78 9/17/2024
2.1.931 74 9/17/2024
2.1.930 82 9/17/2024
2.1.929 84 9/17/2024
2.1.928 74 9/17/2024
2.1.927 77 9/17/2024
2.1.926 84 9/17/2024
2.1.925 73 9/17/2024
2.1.924 86 9/17/2024
2.1.923 70 9/17/2024
2.1.922 66 9/17/2024
2.1.921 74 9/17/2024
2.1.920 77 9/17/2024
2.1.919 80 9/17/2024
2.1.918 75 9/16/2024
2.1.917 84 9/16/2024
2.1.916 81 9/16/2024
2.1.915 87 9/16/2024
2.1.914 64 9/16/2024
2.1.913 76 9/16/2024
2.1.912 85 9/16/2024
2.1.911 89 9/12/2024
2.1.910 83 9/12/2024
2.1.909 87 9/12/2024
2.1.908 82 9/12/2024
2.1.907 82 9/12/2024
2.1.906 84 9/12/2024
2.1.905 88 9/12/2024
2.1.904 91 9/12/2024
2.1.903 84 9/12/2024
2.1.902 85 9/12/2024
2.1.901 89 9/12/2024
2.1.900 87 9/12/2024
2.1.899 92 9/12/2024
2.1.898 86 9/11/2024
2.1.897 91 9/11/2024
2.1.896 100 9/11/2024
2.1.895 93 9/11/2024
2.1.894 96 9/11/2024
2.1.893 96 9/11/2024
2.1.892 92 9/11/2024
2.1.891 90 9/11/2024
2.1.890 95 9/11/2024
2.1.889 91 9/11/2024
2.1.888 84 9/11/2024
2.1.887 86 9/11/2024
2.1.886 87 9/11/2024
2.1.885 85 9/11/2024
2.1.884 83 9/11/2024
2.1.883 80 9/11/2024
2.1.882 98 9/11/2024
2.1.881 95 9/11/2024
2.1.880 87 9/11/2024
2.1.879 88 9/10/2024
2.1.878 81 9/10/2024
2.1.877 93 9/10/2024
2.1.876 78 9/10/2024
2.1.875 73 9/10/2024
2.1.874 81 9/10/2024
2.1.873 82 9/10/2024
2.1.872 80 9/10/2024
2.1.871 80 9/10/2024
2.1.870 82 9/10/2024
2.1.869 78 9/10/2024
2.1.868 78 9/10/2024
2.1.867 83 9/10/2024
2.1.866 78 9/10/2024
2.1.865 81 9/9/2024
2.1.864 75 9/9/2024
2.1.863 75 9/9/2024
2.1.862 79 9/9/2024
2.1.861 77 9/9/2024
2.1.860 83 9/9/2024
2.1.859 86 9/9/2024
2.1.858 86 9/9/2024
2.1.857 97 9/9/2024
2.1.856 81 9/9/2024
2.1.855 86 9/9/2024
2.1.854 79 9/9/2024
2.1.853 78 9/9/2024
2.1.852 78 9/9/2024
2.1.851 84 9/9/2024
2.1.850 93 9/9/2024
2.1.845 85 9/9/2024
2.1.843 78 9/9/2024
2.1.842 89 9/9/2024
2.1.841 82 9/9/2024
2.1.840 85 9/7/2024
2.1.839 87 9/7/2024
2.1.838 87 9/7/2024
2.1.837 87 9/7/2024
2.1.836 97 9/7/2024
2.1.835 90 9/7/2024
2.1.834 81 9/7/2024
2.1.833 89 9/7/2024
2.1.832 84 9/6/2024
2.1.831 90 9/6/2024
2.1.830 79 9/6/2024
2.1.829 80 9/6/2024
2.1.828 82 9/6/2024
2.1.827 89 9/6/2024
2.1.826 82 9/6/2024
2.1.825 90 9/6/2024
2.1.824 87 9/6/2024
2.1.823 82 9/6/2024
2.1.822 93 9/6/2024
2.1.821 87 9/6/2024
2.1.820 88 9/5/2024
2.1.819 83 9/5/2024
2.1.818 83 9/5/2024
2.1.817 76 9/5/2024
2.1.816 85 9/5/2024
2.1.815 86 9/5/2024
2.1.814 83 9/5/2024
2.1.813 81 9/5/2024
2.1.812 98 9/5/2024
2.1.811 81 9/5/2024
2.1.810 83 9/5/2024
2.1.809 84 9/5/2024
2.1.808 82 9/5/2024
2.1.807 90 9/5/2024
2.1.806 78 9/5/2024
2.1.805 81 9/5/2024
2.1.804 82 9/5/2024
2.1.803 75 9/5/2024
2.1.802 79 9/5/2024
2.1.801 83 9/5/2024
2.1.800 90 9/5/2024
2.1.799 82 9/5/2024
2.1.798 76 9/5/2024
2.1.797 84 9/5/2024
2.1.796 102 9/5/2024
2.1.795 88 9/4/2024
2.1.794 87 9/4/2024
2.1.793 82 9/4/2024
2.1.792 85 9/4/2024
2.1.791 79 9/4/2024
2.1.790 79 9/4/2024
2.1.789 81 9/4/2024
2.1.788 82 9/4/2024
2.1.787 74 9/3/2024
2.1.786 78 9/3/2024
2.1.785 84 9/3/2024
2.1.784 75 9/3/2024
2.1.783 71 9/3/2024
2.1.782 81 9/3/2024
2.1.781 82 9/3/2024
2.1.780 80 9/3/2024
2.1.779 82 9/3/2024
2.1.778 82 9/3/2024
2.1.777 75 9/3/2024
2.1.776 74 9/3/2024
2.1.775 82 9/3/2024
2.1.774 72 9/3/2024
2.1.773 72 9/3/2024
2.1.772 82 9/3/2024
2.1.771 72 9/3/2024
2.1.770 90 8/30/2024
2.1.769 82 8/29/2024
2.1.768 85 8/29/2024
2.1.767 85 8/29/2024
2.1.766 80 8/29/2024
2.1.765 83 8/29/2024
2.1.764 81 8/29/2024
2.1.763 79 8/29/2024
2.1.762 78 8/29/2024
2.1.761 92 8/26/2024
2.1.760 89 8/26/2024
2.1.759 87 8/26/2024
2.1.758 90 8/26/2024
2.1.757 86 8/26/2024
2.1.756 91 8/26/2024
2.1.755 102 8/26/2024
2.1.754 84 8/26/2024
2.1.753 94 8/26/2024
2.1.752 116 8/21/2024
2.1.750 98 8/21/2024
2.1.749 103 8/21/2024
2.1.748 91 8/21/2024
2.1.747 92 8/21/2024
2.1.746 88 8/21/2024
2.1.745 112 8/21/2024
2.1.744 98 8/21/2024
2.1.743 100 8/21/2024
2.1.742 107 8/21/2024
2.1.741 105 8/21/2024
2.1.740 105 8/20/2024
2.1.739 101 8/20/2024
2.1.738 98 8/20/2024
2.1.737 97 8/20/2024
2.1.736 98 8/20/2024
2.1.735 97 8/20/2024
2.1.734 103 8/20/2024
2.1.733 99 8/20/2024
2.1.732 100 8/20/2024
2.1.731 102 8/20/2024
2.1.730 92 8/20/2024
2.1.729 96 8/20/2024
2.1.728 110 8/20/2024
2.1.727 106 8/20/2024
2.1.726 109 8/20/2024
2.1.725 109 8/20/2024
2.1.723 99 8/20/2024
2.1.722 111 8/19/2024
2.1.721 98 8/19/2024
2.1.720 101 8/19/2024
2.1.719 103 8/15/2024
2.1.718 97 8/15/2024
2.1.717 97 8/15/2024
2.1.716 103 8/15/2024
2.1.715 116 8/15/2024
2.1.714 100 8/15/2024
2.1.713 97 8/15/2024
2.1.712 100 8/15/2024
2.1.711 85 8/15/2024
2.1.710 95 8/15/2024
2.1.709 95 8/15/2024
2.1.708 103 8/14/2024
2.1.707 96 8/14/2024
2.1.706 97 8/14/2024
2.1.705 105 8/14/2024
2.1.704 98 8/13/2024
2.1.703 99 8/13/2024
2.1.702 105 8/13/2024
2.1.701 82 8/7/2024
2.1.700 86 8/7/2024
2.1.699 82 8/7/2024
2.1.698 89 8/7/2024
2.1.697 84 8/7/2024
2.1.696 91 8/7/2024
2.1.695 84 8/7/2024
2.1.694 83 8/7/2024
2.1.693 70 8/6/2024
2.1.692 69 8/6/2024
2.1.691 64 8/6/2024
2.1.690 60 8/6/2024
2.1.689 65 8/6/2024
2.1.688 61 8/6/2024
2.1.687 80 8/1/2024
2.1.686 95 8/1/2024
2.1.685 84 8/1/2024
2.1.684 81 8/1/2024
2.1.683 79 8/1/2024
2.1.682 75 8/1/2024
2.1.681 77 8/1/2024
2.1.680 79 8/1/2024
2.1.679 81 8/1/2024
2.1.678 58 7/25/2024
2.1.677 58 7/25/2024
2.1.676 58 7/25/2024
2.1.675 64 7/25/2024
2.1.674 64 7/25/2024
2.1.673 59 7/25/2024
2.1.672 67 7/25/2024
2.1.671 65 7/25/2024
2.1.670 48 7/25/2024
2.1.669 66 7/25/2024
2.1.668 67 7/24/2024
2.1.667 64 7/24/2024
2.1.666 62 7/24/2024
2.1.665 54 7/24/2024
2.1.664 52 7/24/2024
2.1.663 100 7/20/2024
2.1.660 80 7/20/2024
2.1.659 73 7/20/2024
2.1.658 83 7/20/2024
2.1.657 85 7/20/2024
2.1.656 85 7/20/2024
2.1.655 85 7/14/2024
2.1.654 86 7/14/2024
2.1.653 75 7/14/2024
2.1.652 79 7/14/2024
2.1.651 75 7/14/2024
2.1.650 80 7/14/2024
2.1.649 77 7/14/2024
2.1.648 85 7/14/2024
2.1.647 80 7/14/2024
2.1.646 79 7/14/2024
2.1.645 79 7/14/2024
2.1.644 77 7/14/2024
2.1.643 75 7/14/2024
2.1.642 70 7/14/2024
2.1.641 73 7/14/2024
2.1.640 88 7/11/2024
2.1.639 92 7/11/2024
2.1.638 79 7/10/2024
2.1.637 106 7/10/2024
2.1.636 89 7/10/2024
2.1.634 87 7/10/2024
2.1.633 91 7/10/2024
2.1.632 94 7/10/2024
2.1.631 85 7/10/2024
2.1.630 98 7/10/2024
2.1.629 95 7/10/2024
2.1.628 83 7/10/2024
2.1.627 84 7/10/2024
2.1.626 94 7/10/2024
2.1.625 90 7/10/2024
2.1.624 86 7/10/2024
2.1.623 78 7/10/2024
2.1.620 97 7/10/2024
2.1.619 80 7/10/2024
2.1.618 96 7/10/2024
2.1.617 95 7/9/2024
2.1.616 77 7/9/2024
2.1.613 81 7/9/2024
2.1.612 74 7/9/2024
2.1.611 84 7/9/2024
2.1.610 85 7/9/2024
2.1.609 72 7/9/2024
2.1.608 73 7/9/2024
2.1.607 73 7/9/2024
2.1.606 84 7/9/2024
2.1.605 92 7/9/2024
2.1.604 91 7/9/2024
2.1.603 67 7/9/2024
2.1.602 85 7/9/2024
2.1.601 99 7/9/2024
2.1.600 88 7/9/2024
2.1.599 94 7/9/2024
2.1.598 92 7/9/2024
2.1.597 93 7/9/2024
2.1.596 85 7/9/2024
2.1.595 88 7/9/2024
2.1.594 82 7/9/2024
2.1.593 91 7/9/2024
2.1.592 101 7/9/2024
2.1.591 101 7/9/2024
2.1.590 95 7/9/2024
2.1.588 82 7/8/2024
2.1.587 86 7/8/2024
2.1.586 89 7/8/2024
2.1.585 99 7/8/2024
2.1.584 98 7/8/2024
2.1.583 82 7/8/2024
2.1.582 101 7/8/2024
2.1.581 87 7/8/2024
2.1.580 86 7/8/2024
2.1.579 84 7/8/2024
2.1.578 91 7/8/2024
2.1.577 99 7/8/2024
2.1.576 102 7/8/2024
2.1.575 91 7/8/2024
2.1.574 96 7/8/2024
2.1.573 90 7/8/2024
2.1.572 102 7/8/2024
2.1.571 100 7/7/2024
2.1.570 87 7/7/2024
2.1.569 83 7/7/2024
2.1.568 87 7/7/2024
2.1.567 88 7/7/2024
2.1.566 98 7/7/2024
2.1.565 101 7/7/2024
2.1.564 85 7/7/2024
2.1.563 104 7/7/2024
2.1.562 106 7/7/2024
2.1.561 96 7/5/2024
2.1.560 103 7/4/2024
2.1.559 94 7/3/2024
2.1.558 102 7/3/2024
2.1.557 92 7/3/2024
2.1.556 92 7/3/2024
2.1.555 104 7/3/2024
2.1.554 93 7/3/2024
2.1.553 102 7/3/2024
2.1.552 89 7/3/2024
2.1.551 103 7/3/2024
2.1.550 101 7/3/2024
2.1.549 96 7/3/2024
2.1.548 102 7/3/2024
2.1.547 92 7/3/2024
2.1.546 92 7/3/2024
2.1.545 90 7/3/2024
2.1.544 101 7/2/2024
2.1.543 90 7/2/2024
2.1.542 95 6/30/2024
2.1.541 96 6/30/2024
2.1.540 92 6/28/2024
2.1.539 104 6/28/2024
2.1.538 101 6/27/2024
2.1.537 96 6/27/2024
2.1.536 100 6/27/2024
2.1.535 99 6/27/2024
2.1.534 96 6/27/2024
2.1.533 89 6/27/2024
2.1.532 104 6/27/2024
2.1.531 91 6/22/2024
2.1.530 92 6/22/2024
2.1.529 93 6/22/2024
2.1.528 105 6/22/2024
2.1.527 99 6/22/2024
2.1.526 105 6/22/2024
2.1.525 93 6/22/2024
2.1.524 100 6/22/2024
2.1.523 100 6/18/2024
2.1.522 99 6/16/2024
2.1.521 114 6/16/2024
2.1.520 101 6/16/2024
2.1.519 105 6/15/2024
2.1.518 102 6/15/2024
2.1.517 102 6/15/2024
2.1.516 101 6/15/2024
2.1.515 97 6/15/2024
2.1.514 101 6/15/2024
2.1.513 92 6/15/2024
2.1.512 111 6/15/2024
2.1.511 97 6/15/2024
2.1.510 101 6/15/2024
2.1.509 97 6/15/2024
2.1.508 100 6/15/2024
2.1.507 92 6/15/2024
2.1.506 94 6/15/2024
2.1.505 100 6/15/2024
2.1.504 109 6/15/2024
2.1.503 96 6/15/2024
2.1.502 108 6/14/2024
2.1.501 87 6/14/2024
2.1.500 99 6/14/2024
2.1.499 97 6/14/2024
2.1.498 87 6/6/2024
2.1.497 87 6/4/2024
2.1.496 85 6/4/2024
2.1.495 101 6/4/2024
2.1.494 97 6/2/2024
2.1.493 92 6/2/2024
2.1.492 91 6/2/2024
2.1.491 89 6/2/2024
2.1.490 96 6/2/2024
2.1.489 94 6/1/2024
2.1.488 92 6/1/2024
2.1.487 83 6/1/2024
2.1.486 85 6/1/2024
2.1.485 88 6/1/2024
2.1.484 87 6/1/2024
2.1.483 83 6/1/2024
2.1.482 87 6/1/2024
2.1.481 83 6/1/2024
2.1.480 80 6/1/2024
2.1.479 87 6/1/2024
2.1.478 95 6/1/2024
2.1.477 88 6/1/2024
2.1.476 91 6/1/2024
2.1.475 89 6/1/2024
2.1.474 87 6/1/2024
2.1.473 88 6/1/2024
2.1.472 92 5/31/2024
2.1.471 87 5/31/2024
2.1.470 82 5/31/2024
2.1.469 97 5/31/2024
2.1.468 93 5/31/2024
2.1.467 79 5/31/2024
2.1.466 76 5/31/2024
2.1.465 90 5/31/2024
2.1.464 89 5/31/2024
2.1.463 87 5/31/2024
2.1.462 86 5/31/2024
2.1.461 87 5/29/2024
2.1.460 101 5/29/2024
2.1.459 95 5/29/2024
2.1.458 95 5/29/2024
2.1.457 95 5/29/2024
2.1.456 98 5/29/2024
2.1.455 99 5/29/2024
2.1.454 96 5/29/2024
2.1.453 82 5/28/2024
2.1.452 92 5/28/2024
2.1.451 84 5/28/2024
2.1.450 90 5/28/2024
2.1.449 99 5/28/2024
2.1.448 89 5/28/2024
2.1.447 93 5/28/2024
2.1.446 89 5/28/2024
2.1.445 91 5/28/2024
2.1.444 91 5/28/2024
2.1.443 89 5/28/2024
2.1.442 91 5/28/2024
2.1.441 97 5/27/2024
2.1.440 82 5/27/2024
2.1.439 82 5/27/2024
2.1.438 89 5/27/2024
2.1.437 96 5/27/2024
2.1.436 93 5/27/2024
2.1.435 95 5/27/2024
2.1.434 90 5/27/2024
2.1.433 93 5/27/2024
2.1.432 96 5/27/2024
2.1.431 91 5/27/2024
2.1.430 95 5/26/2024
2.1.429 91 5/26/2024
2.1.428 98 5/26/2024
2.1.427 95 5/26/2024
2.1.426 101 5/26/2024
2.1.425 98 5/26/2024
2.1.424 95 5/26/2024
2.1.423 94 5/26/2024
2.1.422 103 5/26/2024
2.1.421 95 5/26/2024
2.1.420 112 5/26/2024
2.1.419 106 5/26/2024
2.1.418 103 5/26/2024
2.1.417 103 5/26/2024
2.1.416 95 5/26/2024
2.1.415 105 5/26/2024
2.1.414 106 5/25/2024
2.1.413 89 5/25/2024
2.1.412 92 5/25/2024
2.1.411 108 5/25/2024
2.1.410 93 5/25/2024
2.1.409 100 5/25/2024
2.1.408 104 5/25/2024
2.1.407 96 5/25/2024
2.1.406 103 5/25/2024
2.1.405 100 5/25/2024
2.1.404 100 5/25/2024
2.1.403 101 5/25/2024
2.1.402 90 5/25/2024
2.1.401 96 5/25/2024
2.1.400 100 5/25/2024
2.1.399 96 5/25/2024
2.1.398 102 5/25/2024
2.1.397 99 5/25/2024
2.1.396 105 5/24/2024
2.1.395 108 5/23/2024
2.1.394 101 5/23/2024
2.1.393 98 5/23/2024
2.1.392 102 5/23/2024
2.1.391 98 5/23/2024
2.1.390 92 5/23/2024
2.1.389 92 5/23/2024
2.1.388 83 5/23/2024
2.1.387 84 5/23/2024
2.1.386 100 5/23/2024
2.1.385 102 5/23/2024
2.1.384 98 5/23/2024
2.1.383 95 5/23/2024
2.1.382 90 5/23/2024
2.1.381 101 5/23/2024
2.1.380 95 5/23/2024
2.1.379 98 5/23/2024
2.1.378 96 5/23/2024
2.1.377 92 5/22/2024
2.1.376 103 5/22/2024
2.1.375 106 5/22/2024
2.1.374 102 5/22/2024
2.1.373 107 5/22/2024
2.1.372 101 5/22/2024
2.1.371 102 5/22/2024
2.1.370 94 5/22/2024
2.1.369 97 5/22/2024
2.1.368 94 5/22/2024
2.1.367 83 5/22/2024
2.1.366 102 5/19/2024
2.1.365 91 5/18/2024
2.1.364 92 5/18/2024
2.1.363 74 5/18/2024
2.1.362 88 5/18/2024
2.1.361 85 5/18/2024
2.1.360 90 5/18/2024
2.1.359 84 5/18/2024
2.1.358 89 5/18/2024
2.1.357 98 5/18/2024
2.1.356 96 5/17/2024
2.1.355 89 5/17/2024
2.1.354 93 5/17/2024
2.1.353 102 5/17/2024
2.1.352 93 5/17/2024
2.1.351 91 5/17/2024
2.1.350 89 5/17/2024
2.1.349 100 5/17/2024
2.1.348 96 5/16/2024
2.1.347 91 5/16/2024
2.1.346 91 5/16/2024
2.1.345 90 5/16/2024
2.1.344 94 5/16/2024
2.1.343 78 5/16/2024
2.1.342 75 5/16/2024
2.1.341 97 5/15/2024
2.1.340 91 5/15/2024
2.1.339 60 5/15/2024
2.1.338 51 5/15/2024
2.1.337 108 5/15/2024
2.1.336 101 5/14/2024
2.1.335 89 5/13/2024
2.1.334 84 5/13/2024
2.1.333 95 5/13/2024
2.1.332 83 5/13/2024
2.1.331 101 5/13/2024
2.1.330 87 5/13/2024
2.1.329 87 5/13/2024
2.1.328 93 5/13/2024
2.1.327 84 5/13/2024
2.1.326 76 5/3/2024
2.1.325 74 5/3/2024
2.1.324 117 4/30/2024
2.1.323 103 4/30/2024
2.1.322 104 4/30/2024
2.1.321 92 4/30/2024
2.1.320 99 4/30/2024
2.1.319 104 4/30/2024
2.1.318 107 4/30/2024
2.1.317 109 4/30/2024
2.1.316 98 4/30/2024
2.1.315 101 4/30/2024
2.1.314 94 4/30/2024
2.1.313 97 4/29/2024
2.1.312 97 4/29/2024
2.1.311 93 4/29/2024
2.1.310 104 4/29/2024
2.1.309 93 4/29/2024
2.1.308 98 4/29/2024
2.1.307 83 4/29/2024
2.1.306 99 4/29/2024
2.1.305 90 4/29/2024
2.1.304 98 4/29/2024
2.1.303 97 4/28/2024
2.1.302 99 4/28/2024
2.1.301 87 4/28/2024
2.1.300 105 4/28/2024
2.1.299 107 4/28/2024
2.1.298 91 4/28/2024
2.1.297 90 4/28/2024
2.1.296 94 4/28/2024
2.1.295 89 4/28/2024
2.1.294 93 4/28/2024
2.1.293 98 4/28/2024
2.1.292 88 4/28/2024
2.1.291 90 4/28/2024
2.1.290 86 4/28/2024
2.1.289 97 4/28/2024
2.1.288 100 4/28/2024
2.1.287 81 4/28/2024
2.1.286 89 4/28/2024
2.1.285 102 4/28/2024
2.1.284 89 4/28/2024
2.1.283 102 4/28/2024
2.1.282 93 4/28/2024
2.1.281 108 4/28/2024
2.1.280 95 4/28/2024
2.1.279 91 4/28/2024
2.1.278 84 4/28/2024
2.1.277 107 4/27/2024
2.1.276 92 4/27/2024
2.1.275 102 4/20/2024
2.1.274 103 4/20/2024
2.1.273 105 4/20/2024
2.1.272 99 4/20/2024
2.1.271 103 4/20/2024
2.1.270 111 4/19/2024
2.1.269 95 4/19/2024
2.1.268 93 4/19/2024
2.1.267 96 4/19/2024
2.1.266 88 4/19/2024
2.1.265 91 4/19/2024
2.1.264 105 4/19/2024
2.1.263 102 4/19/2024
2.1.262 91 4/19/2024
2.1.261 94 4/19/2024
2.1.260 107 4/19/2024
2.1.259 98 4/18/2024
2.1.258 98 4/18/2024
2.1.257 98 4/15/2024
2.1.256 109 4/14/2024
2.1.255 97 4/13/2024
2.1.254 98 4/13/2024
2.1.253 104 4/13/2024
2.1.252 106 4/13/2024
2.1.251 93 4/13/2024
2.1.250 100 4/12/2024
2.1.249 110 4/12/2024
2.1.248 97 4/12/2024
2.1.247 86 4/12/2024
2.1.246 97 4/12/2024
2.1.245 89 4/12/2024
2.1.244 100 4/12/2024
2.1.243 88 4/12/2024
2.1.242 82 4/12/2024
2.1.241 94 4/12/2024
2.1.240 89 4/12/2024
2.1.239 98 4/12/2024
2.1.238 99 4/12/2024
2.1.237 101 4/12/2024
2.1.236 100 4/12/2024
2.1.235 101 4/12/2024
2.1.234 97 4/12/2024
2.1.233 83 4/12/2024
2.1.232 104 4/12/2024
2.1.231 117 4/12/2024
2.1.230 92 4/12/2024
2.1.229 91 4/12/2024
2.1.228 89 4/11/2024
2.1.227 89 4/10/2024
2.1.226 99 4/10/2024
2.1.225 95 4/10/2024
2.1.224 83 4/10/2024
2.1.223 92 4/10/2024
2.1.222 86 4/10/2024
2.1.221 83 4/10/2024
2.1.220 89 4/10/2024
2.1.219 78 4/10/2024
2.1.218 86 4/10/2024
2.1.217 90 4/10/2024
2.1.216 102 4/4/2024
2.1.215 94 4/3/2024
2.1.214 121 4/2/2024
2.1.213 102 4/2/2024
2.1.212 105 4/2/2024
2.1.211 97 4/2/2024
2.1.210 85 4/2/2024
2.1.209 110 4/2/2024
2.1.208 105 4/2/2024
2.1.207 104 4/1/2024
2.1.206 94 4/1/2024
2.1.205 96 4/1/2024
2.1.204 110 4/1/2024
2.1.203 116 4/1/2024
2.1.202 107 3/30/2024
2.1.201 102 3/29/2024
2.1.200 103 3/29/2024
2.1.199 103 3/29/2024
2.1.198 95 3/29/2024
2.1.197 102 3/29/2024
2.1.196 102 3/25/2024
2.1.195 109 3/25/2024
2.1.194 119 3/25/2024
2.1.193 99 3/25/2024
2.1.192 86 3/25/2024
2.1.191 107 3/25/2024
2.1.190 107 3/25/2024
2.1.189 105 3/25/2024
2.1.188 109 3/25/2024
2.1.187 118 3/25/2024
2.1.186 110 3/25/2024
2.1.185 103 3/25/2024
2.1.184 122 3/21/2024
2.1.183 116 3/21/2024
2.1.182 98 3/21/2024
2.1.181 109 3/21/2024
2.1.180 117 3/20/2024
2.1.179 115 3/20/2024
2.1.178 113 3/20/2024
2.1.177 121 3/20/2024
2.1.176 102 3/19/2024
2.1.175 101 3/19/2024
2.1.174 123 3/19/2024
2.1.173 114 3/19/2024
2.1.172 104 3/19/2024
2.1.171 99 3/19/2024
2.1.170 109 3/19/2024
2.1.169 122 3/19/2024
2.1.168 114 3/19/2024
2.1.167 110 3/19/2024
2.1.166 111 3/19/2024
2.1.165 118 3/19/2024
2.1.164 111 3/19/2024
2.1.163 112 3/19/2024
2.1.162 109 3/19/2024
2.1.161 117 3/19/2024
2.1.160 101 3/18/2024
2.1.159 108 3/18/2024
2.1.158 114 3/16/2024
2.1.157 126 3/16/2024
2.1.156 130 3/16/2024
2.1.155 114 3/16/2024
2.1.154 132 3/16/2024
2.1.153 120 3/16/2024
2.1.152 119 3/15/2024
2.1.151 108 3/15/2024
2.1.150 114 3/15/2024
2.1.149 111 3/14/2024
2.1.148 114 3/13/2024
2.1.147 113 3/13/2024
2.1.146 103 3/13/2024
2.1.145 133 3/13/2024
2.1.144 118 3/13/2024
2.1.143 113 3/13/2024
2.1.142 106 3/13/2024
2.1.141 110 3/13/2024
2.1.140 110 3/13/2024
2.1.139 117 3/13/2024
2.1.138 112 3/13/2024
2.1.137 115 3/13/2024
2.1.136 111 3/13/2024
2.1.135 119 3/13/2024
2.1.134 117 3/13/2024
2.1.133 132 3/13/2024
2.1.132 110 3/13/2024
2.1.131 133 3/13/2024
2.1.130 125 3/13/2024
2.1.129 104 3/13/2024
2.1.128 124 3/13/2024
2.1.127 123 3/13/2024
2.1.126 134 3/12/2024
2.1.125 114 3/12/2024
2.1.124 127 3/12/2024
2.1.123 127 3/12/2024
2.1.122 125 3/12/2024
2.1.121 114 3/12/2024
2.1.120 109 3/12/2024
2.1.119 120 3/12/2024
2.1.118 128 3/12/2024
2.1.117 121 3/12/2024
2.1.116 115 3/11/2024
2.1.115 122 3/11/2024
2.1.114 115 3/11/2024
2.1.113 121 3/11/2024
2.1.112 117 3/11/2024
2.1.111 111 3/11/2024
2.1.110 122 3/11/2024
2.1.109 102 3/11/2024
2.1.108 108 3/11/2024
2.1.107 107 3/11/2024
2.1.106 101 3/11/2024
2.1.105 106 3/11/2024
2.1.104 121 3/10/2024
2.1.103 132 3/10/2024
2.1.102 119 3/10/2024
2.1.101 125 3/10/2024
2.1.100 122 3/10/2024
2.1.99 128 3/10/2024
2.1.98 126 3/9/2024
2.1.97 132 3/8/2024
2.1.96 121 3/8/2024
2.1.95 125 3/8/2024
2.1.94 120 3/8/2024
2.1.93 122 3/8/2024
2.1.92 118 3/8/2024
2.1.91 117 3/8/2024
2.1.90 112 3/8/2024
2.1.89 116 3/8/2024
2.1.88 124 3/8/2024
2.1.87 124 3/8/2024
2.1.86 114 3/8/2024
2.1.85 113 3/8/2024
2.1.84 130 3/8/2024
2.1.83 128 3/8/2024
2.1.82 117 3/8/2024
2.1.81 118 3/6/2024
2.1.80 124 3/6/2024
2.1.79 142 3/6/2024
2.1.78 119 3/6/2024
2.1.77 125 3/6/2024
2.1.76 113 3/6/2024
2.1.75 118 3/6/2024
2.1.74 115 3/4/2024
2.1.73 122 3/4/2024
2.1.72 112 3/4/2024
2.1.71 113 3/4/2024
2.1.70 115 3/4/2024
2.1.69 115 3/4/2024
2.1.68 119 3/4/2024
2.1.67 108 3/4/2024
2.1.66 118 3/4/2024
2.1.65 106 3/4/2024
2.1.64 112 3/4/2024
2.1.63 116 3/4/2024
2.1.62 115 3/4/2024
2.1.61 117 3/4/2024
2.1.60 122 3/3/2024
2.1.59 114 3/3/2024
2.1.58 121 3/3/2024
2.1.57 114 3/3/2024
2.1.56 118 3/3/2024
2.1.55 103 3/3/2024
2.1.54 114 3/3/2024
2.1.53 108 3/3/2024
2.1.52 110 3/2/2024
2.1.51 111 3/2/2024
2.1.50 123 3/2/2024
2.1.49 103 3/2/2024
2.1.48 118 3/2/2024
2.1.47 104 3/2/2024
2.1.46 108 3/2/2024
2.1.45 109 3/2/2024
2.1.44 95 3/2/2024
2.1.43 114 3/2/2024
2.1.42 108 3/2/2024
2.1.41 100 3/2/2024
2.1.40 113 3/2/2024
2.1.39 129 3/2/2024
2.1.38 117 3/2/2024
2.1.37 109 3/2/2024
2.1.36 125 3/2/2024
2.1.35 125 3/1/2024
2.1.34 104 2/29/2024
2.1.33 107 2/29/2024
2.1.32 105 2/29/2024
2.1.31 94 2/29/2024
2.1.30 111 2/29/2024
2.1.29 104 2/29/2024
2.1.28 104 2/29/2024
2.1.27 102 2/29/2024
2.1.26 98 2/29/2024
2.1.25 99 2/29/2024
2.1.24 106 2/29/2024
2.1.23 101 2/29/2024
2.1.22 104 2/29/2024
2.1.21 98 2/29/2024
2.1.20 105 2/29/2024
2.1.19 113 2/29/2024
2.1.18 116 2/29/2024
2.1.17 120 2/27/2024
2.1.16 104 2/27/2024
2.1.15 110 2/26/2024
2.1.14 99 2/26/2024
2.1.13 102 2/26/2024
2.1.12 98 2/26/2024
2.1.11 106 2/26/2024
2.1.10 116 2/26/2024
2.1.9 114 2/26/2024
2.1.8 105 2/26/2024
2.1.7 104 2/26/2024
2.1.6 112 2/26/2024
2.1.5 115 2/25/2024
2.1.4 114 2/25/2024
2.1.3 113 2/25/2024
2.1.2 115 2/24/2024
2.1.1 112 2/24/2024