Soenneker.Twilio.RestClient 2.1.977

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.977                
NuGet\Install-Package Soenneker.Twilio.RestClient -Version 2.1.977                
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.977" />                
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.977                
#r "nuget: Soenneker.Twilio.RestClient, 2.1.977"                
#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.977

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

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 0 9/27/2024
2.1.1028 0 9/27/2024
2.1.1027 0 9/27/2024
2.1.1026 0 9/27/2024
2.1.1025 0 9/27/2024
2.1.1023 0 9/27/2024
2.1.1022 0 9/27/2024
2.1.1021 0 9/27/2024
2.1.1020 0 9/27/2024
2.1.1019 0 9/27/2024
2.1.1018 0 9/27/2024
2.1.1017 0 9/27/2024
2.1.1016 8 9/27/2024
2.1.1015 4 9/27/2024
2.1.1014 5 9/27/2024
2.1.1013 24 9/27/2024
2.1.1012 22 9/27/2024
2.1.1011 20 9/27/2024
2.1.1010 29 9/27/2024
2.1.1009 23 9/27/2024
2.1.1008 37 9/26/2024
2.1.1007 34 9/26/2024
2.1.1006 27 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 36 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 67 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 49 9/23/2024
2.1.978 61 9/23/2024
2.1.977 53 9/23/2024
2.1.976 66 9/23/2024
2.1.975 63 9/23/2024
2.1.974 67 9/23/2024
2.1.973 58 9/23/2024
2.1.972 58 9/23/2024
2.1.971 52 9/23/2024
2.1.970 51 9/23/2024
2.1.969 48 9/23/2024
2.1.968 49 9/23/2024
2.1.967 63 9/23/2024
2.1.966 49 9/23/2024
2.1.965 58 9/23/2024
2.1.964 66 9/23/2024
2.1.963 57 9/23/2024
2.1.962 60 9/23/2024
2.1.961 68 9/23/2024
2.1.960 54 9/23/2024
2.1.959 65 9/23/2024
2.1.958 66 9/23/2024
2.1.957 69 9/23/2024
2.1.956 71 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 68 9/18/2024
2.1.951 81 9/18/2024
2.1.950 83 9/18/2024
2.1.949 74 9/18/2024
2.1.948 63 9/18/2024
2.1.947 83 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 84 9/17/2024
2.1.941 70 9/17/2024
2.1.940 77 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 80 9/17/2024
2.1.934 79 9/17/2024
2.1.933 72 9/17/2024
2.1.932 76 9/17/2024
2.1.931 74 9/17/2024
2.1.930 82 9/17/2024
2.1.929 78 9/17/2024
2.1.928 73 9/17/2024
2.1.927 77 9/17/2024
2.1.926 84 9/17/2024
2.1.925 60 9/17/2024
2.1.924 77 9/17/2024
2.1.923 69 9/17/2024
2.1.922 66 9/17/2024
2.1.921 72 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 80 9/16/2024
2.1.916 78 9/16/2024
2.1.915 86 9/16/2024
2.1.914 64 9/16/2024
2.1.913 76 9/16/2024
2.1.912 84 9/16/2024
2.1.911 88 9/12/2024
2.1.910 72 9/12/2024
2.1.909 87 9/12/2024
2.1.908 69 9/12/2024
2.1.907 82 9/12/2024
2.1.906 83 9/12/2024
2.1.905 88 9/12/2024
2.1.904 90 9/12/2024
2.1.903 83 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 89 9/12/2024
2.1.898 86 9/11/2024
2.1.897 91 9/11/2024
2.1.896 98 9/11/2024
2.1.895 92 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 94 9/11/2024
2.1.889 90 9/11/2024
2.1.888 75 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 86 9/11/2024
2.1.879 88 9/10/2024
2.1.878 80 9/10/2024
2.1.877 91 9/10/2024
2.1.876 78 9/10/2024
2.1.875 72 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 77 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 83 9/9/2024
2.1.858 85 9/9/2024
2.1.857 92 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 65 9/9/2024
2.1.851 82 9/9/2024
2.1.850 93 9/9/2024
2.1.845 83 9/9/2024
2.1.843 78 9/9/2024
2.1.842 85 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 70 9/7/2024
2.1.837 84 9/7/2024
2.1.836 91 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 81 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 87 9/5/2024
2.1.819 82 9/5/2024
2.1.818 83 9/5/2024
2.1.817 74 9/5/2024
2.1.816 83 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 76 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 81 9/5/2024
2.1.803 75 9/5/2024
2.1.802 77 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 99 9/5/2024
2.1.795 85 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 79 9/4/2024
2.1.788 72 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 74 9/3/2024
2.1.779 78 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 81 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 82 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 83 8/26/2024
2.1.759 86 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 91 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 90 8/21/2024
2.1.747 92 8/21/2024
2.1.746 82 8/21/2024
2.1.745 96 8/21/2024
2.1.744 85 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 95 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 87 8/20/2024
2.1.732 85 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 102 8/20/2024
2.1.727 106 8/20/2024
2.1.726 109 8/20/2024
2.1.725 108 8/20/2024
2.1.723 99 8/20/2024
2.1.722 109 8/19/2024
2.1.721 97 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 95 8/14/2024
2.1.706 96 8/14/2024
2.1.705 105 8/14/2024
2.1.704 98 8/13/2024
2.1.703 95 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 68 8/7/2024
2.1.696 91 8/7/2024
2.1.695 67 8/7/2024
2.1.694 67 8/7/2024
2.1.693 70 8/6/2024
2.1.692 69 8/6/2024
2.1.691 63 8/6/2024
2.1.690 58 8/6/2024
2.1.689 52 8/6/2024
2.1.688 61 8/6/2024
2.1.687 80 8/1/2024
2.1.686 82 8/1/2024
2.1.685 84 8/1/2024
2.1.684 81 8/1/2024
2.1.683 77 8/1/2024
2.1.682 75 8/1/2024
2.1.681 66 8/1/2024
2.1.680 79 8/1/2024
2.1.679 74 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 59 7/25/2024
2.1.673 57 7/25/2024
2.1.672 67 7/25/2024
2.1.671 60 7/25/2024
2.1.670 48 7/25/2024
2.1.669 66 7/25/2024
2.1.668 65 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 50 7/24/2024
2.1.663 96 7/20/2024
2.1.660 80 7/20/2024
2.1.659 73 7/20/2024
2.1.658 80 7/20/2024
2.1.657 85 7/20/2024
2.1.656 85 7/20/2024
2.1.655 82 7/14/2024
2.1.654 86 7/14/2024
2.1.653 75 7/14/2024
2.1.652 78 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 80 7/14/2024
2.1.647 80 7/14/2024
2.1.646 77 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 69 7/14/2024
2.1.641 63 7/14/2024
2.1.640 79 7/11/2024
2.1.639 87 7/11/2024
2.1.638 79 7/10/2024
2.1.637 96 7/10/2024
2.1.636 74 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 80 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 88 7/10/2024
2.1.624 86 7/10/2024
2.1.623 78 7/10/2024
2.1.620 94 7/10/2024
2.1.619 80 7/10/2024
2.1.618 93 7/10/2024
2.1.617 91 7/9/2024
2.1.616 76 7/9/2024
2.1.613 80 7/9/2024
2.1.612 74 7/9/2024
2.1.611 82 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 92 7/9/2024
2.1.598 92 7/9/2024
2.1.597 85 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 92 7/9/2024
2.1.588 81 7/8/2024
2.1.587 85 7/8/2024
2.1.586 89 7/8/2024
2.1.585 99 7/8/2024
2.1.584 97 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 85 7/8/2024
2.1.579 83 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 85 7/7/2024
2.1.569 83 7/7/2024
2.1.568 85 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 96 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 90 7/3/2024
2.1.556 80 7/3/2024
2.1.555 104 7/3/2024
2.1.554 93 7/3/2024
2.1.553 100 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 101 7/3/2024
2.1.547 92 7/3/2024
2.1.546 88 7/3/2024
2.1.545 90 7/3/2024
2.1.544 98 7/2/2024
2.1.543 90 7/2/2024
2.1.542 93 6/30/2024
2.1.541 96 6/30/2024
2.1.540 76 6/28/2024
2.1.539 98 6/28/2024
2.1.538 101 6/27/2024
2.1.537 84 6/27/2024
2.1.536 84 6/27/2024
2.1.535 83 6/27/2024
2.1.534 95 6/27/2024
2.1.533 79 6/27/2024
2.1.532 95 6/27/2024
2.1.531 86 6/22/2024
2.1.530 92 6/22/2024
2.1.529 92 6/22/2024
2.1.528 105 6/22/2024
2.1.527 99 6/22/2024
2.1.526 99 6/22/2024
2.1.525 93 6/22/2024
2.1.524 88 6/22/2024
2.1.523 100 6/18/2024
2.1.522 86 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 106 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 91 6/15/2024
2.1.506 94 6/15/2024
2.1.505 100 6/15/2024
2.1.504 100 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 81 6/6/2024
2.1.497 87 6/4/2024
2.1.496 85 6/4/2024
2.1.495 98 6/4/2024
2.1.494 97 6/2/2024
2.1.493 91 6/2/2024
2.1.492 79 6/2/2024
2.1.491 89 6/2/2024
2.1.490 92 6/2/2024
2.1.489 94 6/1/2024
2.1.488 92 6/1/2024
2.1.487 70 6/1/2024
2.1.486 85 6/1/2024
2.1.485 88 6/1/2024
2.1.484 83 6/1/2024
2.1.483 81 6/1/2024
2.1.482 86 6/1/2024
2.1.481 82 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 77 6/1/2024
2.1.476 91 6/1/2024
2.1.475 89 6/1/2024
2.1.474 72 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 85 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 93 5/29/2024
2.1.458 95 5/29/2024
2.1.457 95 5/29/2024
2.1.456 95 5/29/2024
2.1.455 99 5/29/2024
2.1.454 96 5/29/2024
2.1.453 70 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 75 5/27/2024
2.1.439 82 5/27/2024
2.1.438 87 5/27/2024
2.1.437 94 5/27/2024
2.1.436 82 5/27/2024
2.1.435 95 5/27/2024
2.1.434 88 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 93 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 103 5/26/2024
2.1.418 103 5/26/2024
2.1.417 103 5/26/2024
2.1.416 94 5/26/2024
2.1.415 105 5/26/2024
2.1.414 98 5/25/2024
2.1.413 77 5/25/2024
2.1.412 92 5/25/2024
2.1.411 96 5/25/2024
2.1.410 81 5/25/2024
2.1.409 98 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 97 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 96 5/25/2024
2.1.396 102 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 81 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 86 5/23/2024
2.1.385 85 5/23/2024
2.1.384 96 5/23/2024
2.1.383 95 5/23/2024
2.1.382 78 5/23/2024
2.1.381 101 5/23/2024
2.1.380 95 5/23/2024
2.1.379 93 5/23/2024
2.1.378 85 5/23/2024
2.1.377 92 5/22/2024
2.1.376 103 5/22/2024
2.1.375 102 5/22/2024
2.1.374 102 5/22/2024
2.1.373 107 5/22/2024
2.1.372 100 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 91 5/22/2024
2.1.367 83 5/22/2024
2.1.366 93 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 83 5/18/2024
2.1.360 86 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 92 5/17/2024
2.1.351 91 5/17/2024
2.1.350 81 5/17/2024
2.1.349 95 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 77 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 76 5/13/2024
2.1.334 71 5/13/2024
2.1.333 95 5/13/2024
2.1.332 74 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 65 5/3/2024
2.1.325 74 5/3/2024
2.1.324 117 4/30/2024
2.1.323 89 4/30/2024
2.1.322 88 4/30/2024
2.1.321 90 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 95 4/30/2024
2.1.316 98 4/30/2024
2.1.315 100 4/30/2024
2.1.314 93 4/30/2024
2.1.313 95 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 97 4/29/2024
2.1.307 83 4/29/2024
2.1.306 98 4/29/2024
2.1.305 90 4/29/2024
2.1.304 86 4/29/2024
2.1.303 95 4/28/2024
2.1.302 94 4/28/2024
2.1.301 87 4/28/2024
2.1.300 104 4/28/2024
2.1.299 104 4/28/2024
2.1.298 90 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 88 4/28/2024
2.1.290 84 4/28/2024
2.1.289 94 4/28/2024
2.1.288 100 4/28/2024
2.1.287 81 4/28/2024
2.1.286 87 4/28/2024
2.1.285 102 4/28/2024
2.1.284 88 4/28/2024
2.1.283 98 4/28/2024
2.1.282 92 4/28/2024
2.1.281 108 4/28/2024
2.1.280 94 4/28/2024
2.1.279 90 4/28/2024
2.1.278 82 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 101 4/20/2024
2.1.270 101 4/19/2024
2.1.269 95 4/19/2024
2.1.268 92 4/19/2024
2.1.267 94 4/19/2024
2.1.266 87 4/19/2024
2.1.265 85 4/19/2024
2.1.264 100 4/19/2024
2.1.263 101 4/19/2024
2.1.262 91 4/19/2024
2.1.261 91 4/19/2024
2.1.260 92 4/19/2024
2.1.259 84 4/18/2024
2.1.258 98 4/18/2024
2.1.257 98 4/15/2024
2.1.256 108 4/14/2024
2.1.255 97 4/13/2024
2.1.254 98 4/13/2024
2.1.253 99 4/13/2024
2.1.252 106 4/13/2024
2.1.251 93 4/13/2024
2.1.250 98 4/12/2024
2.1.249 110 4/12/2024
2.1.248 97 4/12/2024
2.1.247 81 4/12/2024
2.1.246 90 4/12/2024
2.1.245 89 4/12/2024
2.1.244 100 4/12/2024
2.1.243 87 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 98 4/12/2024
2.1.237 101 4/12/2024
2.1.236 98 4/12/2024
2.1.235 101 4/12/2024
2.1.234 97 4/12/2024
2.1.233 79 4/12/2024
2.1.232 103 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 88 4/11/2024
2.1.227 88 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 90 4/10/2024
2.1.222 83 4/10/2024
2.1.221 71 4/10/2024
2.1.220 89 4/10/2024
2.1.219 78 4/10/2024
2.1.218 85 4/10/2024
2.1.217 90 4/10/2024
2.1.216 102 4/4/2024
2.1.215 90 4/3/2024
2.1.214 109 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 83 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 92 4/1/2024
2.1.205 95 4/1/2024
2.1.204 110 4/1/2024
2.1.203 115 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 102 3/29/2024
2.1.198 95 3/29/2024
2.1.197 102 3/29/2024
2.1.196 100 3/25/2024
2.1.195 109 3/25/2024
2.1.194 106 3/25/2024
2.1.193 99 3/25/2024
2.1.192 85 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 97 3/21/2024
2.1.181 109 3/21/2024
2.1.180 116 3/20/2024
2.1.179 111 3/20/2024
2.1.178 113 3/20/2024
2.1.177 115 3/20/2024
2.1.176 102 3/19/2024
2.1.175 98 3/19/2024
2.1.174 116 3/19/2024
2.1.173 111 3/19/2024
2.1.172 103 3/19/2024
2.1.171 99 3/19/2024
2.1.170 106 3/19/2024
2.1.169 116 3/19/2024
2.1.168 113 3/19/2024
2.1.167 107 3/19/2024
2.1.166 109 3/19/2024
2.1.165 118 3/19/2024
2.1.164 110 3/19/2024
2.1.163 111 3/19/2024
2.1.162 109 3/19/2024
2.1.161 109 3/19/2024
2.1.160 101 3/18/2024
2.1.159 106 3/18/2024
2.1.158 104 3/16/2024
2.1.157 123 3/16/2024
2.1.156 120 3/16/2024
2.1.155 114 3/16/2024
2.1.154 129 3/16/2024
2.1.153 118 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 110 3/14/2024
2.1.148 104 3/13/2024
2.1.147 103 3/13/2024
2.1.146 87 3/13/2024
2.1.145 120 3/13/2024
2.1.144 102 3/13/2024
2.1.143 111 3/13/2024
2.1.142 106 3/13/2024
2.1.141 93 3/13/2024
2.1.140 110 3/13/2024
2.1.139 116 3/13/2024
2.1.138 112 3/13/2024
2.1.137 115 3/13/2024
2.1.136 99 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 109 3/13/2024
2.1.131 125 3/13/2024
2.1.130 125 3/13/2024
2.1.129 103 3/13/2024
2.1.128 121 3/13/2024
2.1.127 118 3/13/2024
2.1.126 125 3/12/2024
2.1.125 114 3/12/2024
2.1.124 127 3/12/2024
2.1.123 126 3/12/2024
2.1.122 125 3/12/2024
2.1.121 113 3/12/2024
2.1.120 107 3/12/2024
2.1.119 120 3/12/2024
2.1.118 128 3/12/2024
2.1.117 114 3/12/2024
2.1.116 113 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 106 3/11/2024
2.1.107 106 3/11/2024
2.1.106 97 3/11/2024
2.1.105 106 3/11/2024
2.1.104 121 3/10/2024
2.1.103 131 3/10/2024
2.1.102 119 3/10/2024
2.1.101 124 3/10/2024
2.1.100 120 3/10/2024
2.1.99 127 3/10/2024
2.1.98 125 3/9/2024
2.1.97 122 3/8/2024
2.1.96 120 3/8/2024
2.1.95 121 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 113 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 102 3/8/2024
2.1.85 113 3/8/2024
2.1.84 124 3/8/2024
2.1.83 125 3/8/2024
2.1.82 117 3/8/2024
2.1.81 118 3/6/2024
2.1.80 117 3/6/2024
2.1.79 120 3/6/2024
2.1.78 118 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 109 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 111 3/4/2024
2.1.65 106 3/4/2024
2.1.64 99 3/4/2024
2.1.63 116 3/4/2024
2.1.62 115 3/4/2024
2.1.61 111 3/4/2024
2.1.60 110 3/3/2024
2.1.59 114 3/3/2024
2.1.58 121 3/3/2024
2.1.57 113 3/3/2024
2.1.56 115 3/3/2024
2.1.55 100 3/3/2024
2.1.54 114 3/3/2024
2.1.53 107 3/3/2024
2.1.52 110 3/2/2024
2.1.51 111 3/2/2024
2.1.50 112 3/2/2024
2.1.49 99 3/2/2024
2.1.48 117 3/2/2024
2.1.47 93 3/2/2024
2.1.46 108 3/2/2024
2.1.45 105 3/2/2024
2.1.44 95 3/2/2024
2.1.43 112 3/2/2024
2.1.42 106 3/2/2024
2.1.41 88 3/2/2024
2.1.40 110 3/2/2024
2.1.39 128 3/2/2024
2.1.38 114 3/2/2024
2.1.37 109 3/2/2024
2.1.36 121 3/2/2024
2.1.35 115 3/1/2024
2.1.34 102 2/29/2024
2.1.33 105 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 99 2/29/2024
2.1.28 103 2/29/2024
2.1.27 102 2/29/2024
2.1.26 96 2/29/2024
2.1.25 99 2/29/2024
2.1.24 101 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 107 2/29/2024
2.1.18 111 2/29/2024
2.1.17 116 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 95 2/26/2024
2.1.11 106 2/26/2024
2.1.10 111 2/26/2024
2.1.9 108 2/26/2024
2.1.8 104 2/26/2024
2.1.7 104 2/26/2024
2.1.6 106 2/26/2024
2.1.5 115 2/25/2024
2.1.4 114 2/25/2024
2.1.3 99 2/25/2024
2.1.2 113 2/24/2024
2.1.1 112 2/24/2024