<?xml version='1.0' encoding='utf-8'?>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.3.13 -->
<!DOCTYPE rfc SYSTEM "rfc2629-xhtml.ent">
<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-taps-interface-15" category="std" obsoletes="" updates="" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.2.1 -->
  <front>
    <title abbrev="TAPS Interface">An Abstract Application Layer Interface to Transport Services</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-taps-interface-15"/>
    <author initials="B." surname="Trammell" fullname="Brian Trammell" role="editor">
      <organization>Google Switzerland GmbH</organization>
      <address>
        <postal>
          <street>Gustav-Gull-Platz 1</street>
          <city>8004 Zurich</city>
          <country>Switzerland</country>
        </postal>
        <email>ietf@trammell.ch</email>
      </address>
    </author>
    <author initials="M." surname="Welzl" fullname="Michael Welzl" role="editor">
      <organization>University of Oslo</organization>
      <address>
        <postal>
          <street>PO Box 1080 Blindern</street>
          <city>0316  Oslo</city>
          <country>Norway</country>
        </postal>
        <email>michawe@ifi.uio.no</email>
      </address>
    </author>
    <author initials="T." surname="Enghardt" fullname="Theresa Enghardt">
      <organization>Netflix</organization>
      <address>
        <postal>
          <street>121 Albright Way</street>
          <city>Los Gatos, CA 95032</city>
          <country>United States of America</country>
        </postal>
        <email>ietf@tenghardt.net</email>
      </address>
    </author>
    <author initials="G." surname="Fairhurst" fullname="Godred Fairhurst">
      <organization>University of Aberdeen</organization>
      <address>
        <postal>
          <street>Fraser Noble Building</street>
          <city>Aberdeen, AB24 3UE</city>
          <country>Scotland</country>
        </postal>
        <email>gorry@erg.abdn.ac.uk</email>
        <uri>http://www.erg.abdn.ac.uk/</uri>
      </address>
    </author>
    <author initials="M." surname="Kuehlewind" fullname="Mirja Kuehlewind">
      <organization>Ericsson</organization>
      <address>
        <postal>
          <street>Ericsson-Allee 1</street>
          <city>Herzogenrath</city>
          <country>Germany</country>
        </postal>
        <email>mirja.kuehlewind@ericsson.com</email>
      </address>
    </author>
    <author initials="C." surname="Perkins" fullname="Colin Perkins">
      <organization>University of Glasgow</organization>
      <address>
        <postal>
          <street>School of Computing Science</street>
          <city>Glasgow  G12 8QQ</city>
          <country>United Kingdom</country>
        </postal>
        <email>csp@csperkins.org</email>
      </address>
    </author>
    <author initials="P." surname="Tiesel" fullname="Philipp S. Tiesel">
      <organization>SAP SE</organization>
      <address>
        <postal>
          <street>Konrad-Zuse-Ring 10</street>
          <city>14469 Potsdam</city>
          <country>Germany</country>
        </postal>
        <email>philipp@tiesel.net</email>
      </address>
    </author>
    <author initials="T." surname="Pauly" fullname="Tommy Pauly">
      <organization>Apple Inc.</organization>
      <address>
        <postal>
          <street>One Apple Park Way</street>
          <city>Cupertino, California 95014</city>
          <country>United States of America</country>
        </postal>
        <email>tpauly@apple.com</email>
      </address>
    </author>
    <date year="2022" month="March" day="07"/>
    <workgroup>TAPS Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document describes an abstract application programming interface, API, to the transport
layer that enables the selection of transport protocols and
network paths dynamically at runtime. This API enables faster deployment
of new protocols and protocol features without requiring changes to the
applications. The specified API follows the Transport Services architecture
by providing asynchronous, atomic transmission of messages. It is intended to replace the
BSD sockets API as the common interface to the
transport layer, in an environment where endpoints could select from 
multiple interfaces and potential transport protocols.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction" numbered="true" toc="default">
      <name>Introduction</name>
      <t>This document specifies an abstract application programming interface (API) that specifies the interface component of
the high-level Transport Services architecture defined in
<xref target="I-D.ietf-taps-arch" format="default"/>. A Transport Services system supports
asynchronous, atomic transmission of messages over transport protocols and
network paths dynamically selected at runtime, in environments where an endpoint
selects from multiple interfaces and potential transport protocols.</t>
      <t>Applications that adopt this API will benefit from a wide set of
transport features that can evolve over time. This protocol-independent API ensures that the system
providing the API can optimize its behavior based on the application
requirements and network conditions, without requiring changes to the
applications.  This flexibility enables faster deployment of new features and
protocols, and can support applications by offering racing and fallback
mechanisms, which otherwise need to be separately implemented in each application.</t>
      <t>The Transport Services system derives specific path and protocol selection
properties and supported transport features from the analysis provided in
<xref target="RFC8095" format="default"/>, <xref target="RFC8923" format="default"/>, and
<xref target="RFC8922" format="default"/>. The Transport Services API enables an implementation
to dynamically choose a transport protocol rather
than statically binding applications to a protocol at 
compile time. The Transport Services API also provides
applications with a way to override transport selection and instantiate a specific stack,
e.g., to support servers wishing to listen to a specific protocol. However, forcing a
choice to use a specific transport stack is discouraged for general use, because it can reduce portability.</t>
      <section anchor="notation" numbered="true" toc="default">
        <name>Terminology and Notation</name>
        <t>The Transport Services API is described in terms of</t>
        <ul spacing="normal">
          <li>Objects with which an application can interact;</li>
          <li>Actions the application can perform on these Objects;</li>
          <li>Events, which an Object can send to an application to be processed aynchronously; and</li>
          <li>Parameters associated with these Actions and Events.</li>
        </ul>
        <t>The following notations, which can be combined, are used in this document:</t>
        <ul spacing="normal">
          <li>An Action that creates an Object:</li>
        </ul>
        <artwork name="" type="" align="left" alt=""><![CDATA[
      Object := Action()
]]></artwork>
        <ul spacing="normal">
          <li>An Action that creates an array of Objects:</li>
        </ul>
        <artwork name="" type="" align="left" alt=""><![CDATA[
      []Object := Action()
]]></artwork>
        <ul spacing="normal">
          <li>An Action that is performed on an Object:</li>
        </ul>
        <artwork name="" type="" align="left" alt=""><![CDATA[
      Object.Action()
]]></artwork>
        <ul spacing="normal">
          <li>An Object sends an Event:</li>
        </ul>
        <artwork name="" type="" align="left" alt=""><![CDATA[
      Object -> Event<>
]]></artwork>
        <ul spacing="normal">
          <li>An Action takes a set of Parameters; an Event contains a set of Parameters.
Action and Event parameters whose names are suffixed with a question mark are optional.</li>
        </ul>
        <artwork name="" type="" align="left" alt=""><![CDATA[
      Action(param0, param1?, ...) / Event<param0, param1, ...>
]]></artwork>
        <t>Objects that are passed as parameters to Actions use call-by-value behavior.
Actions associated with no Object are Actions on the API; they are equivalent to Actions on a per-application global context.</t>
        <t>Events are sent to the application or application-supplied code (e.g. framers, 
see <xref target="framing" format="default"/>) for processing; the details of event processing 
are platform- and implementation-specific.</t>
        <t>We also make use of the following basic types:</t>
        <ul spacing="normal">
          <li>Boolean: Instances take the value <tt>true</tt> or <tt>false</tt>.</li>
          <li>Integer: Instances take positive or negative integer values.</li>
          <li>Numeric: Instances take positive or negative real number values.</li>
          <li>Enumeration: A family of types in which each instance takes one of a fixed,
predefined set of values specific to a given enumerated type.</li>
          <li>Tuple: An ordered grouping of multiple value types, represented as a
comma-separated list in parentheses, e.g., <tt>(Enumeration, Preference)</tt>.
Instances take a sequence of values each valid for the corresponding value
type.</li>
          <li>Array: Denoted []Type, an instance takes a value for each of zero or more
elements in a sequence of the given Type. An array may be of fixed or
variable length.</li>
          <li>Collection: An unordered grouping of one or more values of the same type.</li>
        </ul>
        <t>For guidance on how these abstract concepts may be implemented in languages
in accordance with native design patterns and language and platform features,
see <xref target="implmapping" format="default"/>.</t>
      </section>
      <section anchor="specification-of-requirements" numbered="true" toc="default">
        <name>Specification of Requirements</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
"SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in BCP 14 <xref target="RFC2119" format="default"/> <xref target="RFC8174" format="default"/>
when, and only when, they appear in all capitals, as shown here.</t>
      </section>
    </section>
    <section anchor="principles" numbered="true" toc="default">
      <name>Overview of the API Design</name>
      <t>The design of the API specified in this document is based on a set of
principles, themselves an elaboration on the architectural design principles
defined in <xref target="I-D.ietf-taps-arch" format="default"/>. The API defined in this document
provides:</t>
      <ul spacing="normal">
        <li>A Transport Services system
can offer a variety of transport protocols, independent
of the Protocol Stacks that will be used at
runtime. All common features of these protocol
stacks are made available to the application in a
transport-independent way to the degree possible.
This enables applications written to a single API
to make use of transport protocols in terms of the features 
they provide.</li>
        <li>A unified API to datagram and stream-oriented transports, allowing
use of a common API for connection establishment and closing.</li>
        <li>Message-orientation, as opposed to stream-orientation, using
application-assisted framing and deframing where the underlying transport
does not provide these.</li>
        <li>Asynchronous Connection establishment, transmission, and reception. 
This allows concurrent operations during establishment and event-driven
application interactions with the transport layer;</li>
        <li>Selection between alternate network paths, using additional information about the 
networks over which a connection can operate (e.g. Provisioning Domain (PvD) 
information <xref target="RFC7556" format="default"/>) where available.</li>
        <li>Explicit support for transport-specific features to be applied, should that
particular transport be part of a chosen Protocol Stack.</li>
        <li>Explicit support for security properties as first-order transport features.</li>
        <li>Explicit support for configuration of cryptographic identities and transport 
security parameters persistent across multiple Connections.</li>
        <li>Explicit support for multistreaming and multipath transport protocols, and
the grouping of related Connections into Connection Groups through "cloning"
of Connections (see <xref target="groups" format="default"/>). This function allows applications to take full advantage of new
transport protocols supporting these features.</li>
      </ul>
    </section>
    <section anchor="api-summary" numbered="true" toc="default">
      <name>API Summary</name>
      <t>An application primarily interacts with this API through two Objects:
Preconnections and Connections. A Preconnection object (<xref target="pre-establishment" format="default"/>) 
represents a set of properties and constraints on the selection and configuration of
paths and protocols to establish a Connection with an Endpoint. A Connection object 
represents an instance of a transport Protocol Stack on which data can be sent to and/or
received from a Remote Endpoint (i.e., a logical connection that, depending on the 
kind of transport, can be bi-directional or unidirectional, and that can use a stream 
protocol or a datagram protocol). Connections are presented consistently to the 
application, irrespective of whether the underlying transport is connection-less or 
connection-oriented. Connections can be created from Preconnections in three ways:</t>
      <ul spacing="normal">
        <li>by initiating the Preconnection (i.e., actively opening, as in a client; <xref target="initiate" format="default"/>),</li>
        <li>through listening on the Preconnection (i.e., passively opening, as in a server <xref target="listen" format="default"/>),</li>
        <li>or rendezvousing on the Preconnection (i.e., peer to peer establishment; <xref target="rendezvous" format="default"/>).</li>
      </ul>
      <t>Once a Connection is established, data can be sent and received on it in the form of
Messages. The API supports the preservation of message boundaries both
via explicit Protocol Stack support, and via application support through a
Message Framer that finds message boundaries in a stream. Messages are
received asynchronously through event handlers registered by the application.
Errors and other notifications also happen asynchronously on the Connection.
It is not necessary for an application to handle all Events; some Events may
have implementation-specific default handlers. The application should not
assume that ignoring Events (e.g., Errors) is always safe.</t>
      <section anchor="usage-examples" numbered="true" toc="default">
        <name>Usage Examples</name>
        <t>The following usage examples illustrate how an application might use the
Transport Services API to:</t>
        <ul spacing="normal">
          <li>Act as a server, by listening for incoming connections, receiving requests,
and sending responses, see <xref target="server-example" format="default"/>.</li>
          <li>Act as a client, by connecting to a Remote Endpoint using Initiate, sending
requests, and receiving responses, see <xref target="client-example" format="default"/>.</li>
          <li>Act as a peer, by connecting to a Remote Endpoint using Rendezvous while
simultaneously waiting for incoming Connections, sending Messages, and
receiving Messages, see <xref target="peer-example" format="default"/>.</li>
        </ul>
        <t>The examples in this section presume that a transport protocol is available
between the Local and Remote Endpoints that provides Reliable Data Transfer, Preservation of
Data Ordering, and Preservation of Message Boundaries. In this case, the
application can choose to receive only complete messages.</t>
        <t>If none of the available transport protocols provides Preservation of Message
Boundaries, but there is a transport protocol that provides a reliable ordered
byte stream, an application could receive this byte stream as partial
Messages and transform it into application-layer Messages.  Alternatively,
an application might provide a Message Framer, which can transform a
sequence of Messages into a byte stream and vice versa (<xref target="framing" format="default"/>).</t>
        <section anchor="server-example" numbered="true" toc="default">
          <name>Server Example</name>
          <t>This is an example of how an application might listen for incoming Connections
using the Transport Services API, and receive a request, and send a response.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
LocalSpecifier := NewLocalEndpoint()
LocalSpecifier.WithInterface("any")
LocalSpecifier.WithService("https")

TransportProperties := NewTransportProperties()
TransportProperties.Require(preserve-msg-boundaries)
// Reliable Data Transfer and Preserve Order are Required by default

SecurityParameters := NewSecurityParameters()
SecurityParameters.Set(identity, myIdentity)
SecurityParameters.Set(key-pair, myPrivateKey, myPublicKey)

// Specifying a Remote Endpoint is optional when using Listen()
Preconnection := NewPreconnection(LocalSpecifier,
                                  TransportProperties,
                                  SecurityParameters)

Listener := Preconnection.Listen()

Listener -> ConnectionReceived<Connection>

// Only receive complete messages in a Conn.Received handler
Connection.Receive()

Connection -> Received<messageDataRequest, messageContext>

//---- Receive event handler begin ----
Connection.Send(messageDataResponse)
Connection.Close()

// Stop listening for incoming Connections
// (this example supports only one Connection)
Listener.Stop()
//---- Receive event handler end ----

]]></artwork>
        </section>
        <section anchor="client-example" numbered="true" toc="default">
          <name>Client Example</name>
          <t>This is an example of how an application might open two Connections to a remote application
using the Transport Services API, and send a request as well as receive a response on each of them.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
RemoteSpecifier := NewRemoteEndpoint()
RemoteSpecifier.WithHostname("example.com")
RemoteSpecifier.WithService("https")

TransportProperties := NewTransportProperties()
TransportProperties.Require(preserve-msg-boundaries)
// Reliable Data Transfer and Preserve Order are Required by default

SecurityParameters := NewSecurityParameters()
TrustCallback := NewCallback({
  // Verify identity of the Remote Endpoint, return the result
})
SecurityParameters.SetTrustVerificationCallback(TrustCallback)

// Specifying a local endpoint is optional when using Initiate()
Preconnection := NewPreconnection(RemoteSpecifier,
                                  TransportProperties,
                                  SecurityParameters)

Connection := Preconnection.Initiate()
Connection2 := Connection.Clone()

Connection -> Ready<>
Connection2 -> Ready<>

//---- Ready event handler for any Connection C begin ----
C.Send(messageDataRequest)

// Only receive complete messages
C.Receive()
//---- Ready event handler for any Connection C end ----

Connection -> Received<messageDataResponse, messageContext>
Connection2 -> Received<messageDataResponse, messageContext>

// Close the Connection in a Receive event handler
Connection.Close()
Connection2.Close()
]]></artwork>
          <t>Preconnections are reusable after being used to initiate a Connection. Hence, for example, after the Connections were closed,
the following would be correct:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
//.. carry out adjustments to the Preconnection, if desire
Connection := Preconnection.Initiate()
]]></artwork>
        </section>
        <section anchor="peer-example" numbered="true" toc="default">
          <name>Peer Example</name>
          <t>This is an example of how an application might establish a connection with a
peer using Rendezvous(), send a Message, and receive a Message.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
// Configure local candidates: a port on the Local Endpoint
// and via a STUN server
HostCandidate := NewLocalEndpoint()
HostCandidate.WithPort(9876)

StunCandidate := NewLocalEndpoint()
StunCandidate.WithStunServer(address, port, credentials)

LocalCandidates = [HostCandidate, StunCandidate]

// Configure transport and security properties
TransportProperties := ...
SecurityParameters  := ...

Preconnection := NewPreconnection(LocalCandidates,
                                  [], // No remote candidates yet
                                  TransportProperties,
                                  SecurityParameters)

// Resolve the LocalCandidates. The Preconnection.Resolve() call 
// resolves both local and remote candidates but, since the remote
// candidates have not yet been specified, the ResolvedRemote list
// returned will be empty and is not used.
ResolvedLocal, ResolvedRemote = Preconnection.Resolve()

// ...Send the ResolvedLocal list to peer via signalling channel
// ...Receive a list of RemoteCandidates from peer via
//    signalling channel

Preconnection.AddRemote(RemoteCandidates)
Preconnection.Rendezvous()

Preconnection -> RendezvousDone<Connection>

//---- RendezvousDone event handler begin ----
Connection.Send(messageDataRequest)
Connection.Receive()
//---- RendezvousDone event handler end ----

Connection -> Received<messageDataResponse, messageContext>

// If new remote endpoint candidates are received from the peer over
// the signalling channel, for example if using Trickle ICE, then add
// them to the Connection:
Connection.AddRemote(NewRemoteCandidates)

// On a PathChange<> events, resolve the local endpoints to see if a
// new local endpoint has become available and, if so, send to the peer
// as a new candidate and add to the connection:
Connection -> PathChange<>

//---- PathChange event handler begin ----
ResolvedLocal, ResolvedRemote = Preconnection.Resolve()
if ResolvedLocal has changed:
  // ...Send the ResolvedLocal list to peer via signalling channel
  // Add the new local endpoints to the connection:
  Connection.AddLocal(ResolvedLocal)
//---- PathChange event handler end ----


// Close the Connection in a Receive event handler
Connection.Close()
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="transport-properties" numbered="true" toc="default">
      <name>Transport Properties</name>
      <t>Each application using the Transport Services API declares its preferences
for how the Transport Services system should operate. This is done by using Transport Properties, as defined in
<xref target="I-D.ietf-taps-arch" format="default"/>, at each stage of the lifetime of a connection.</t>
      <t>Transport Properties are divided into Selection, Connection, and Message
Properties. Selection Properties (see <xref target="selection-props" format="default"/>) can only be set during pre-establishment. They are only used to specify which paths and protocol stacks can be used and are preferred by the application. 
Although Connection Properties (see <xref target="connection-props" format="default"/>) can be set during pre-establishment, they may be changed later. They are used to inform decisions made during establishment and to fine-tune the established connection. Calling Initiate on a Preconnection creates an outbound Connection or a Listener, and the Selection Properties remain readable from the Connection or Listener, but become immutable.</t>
      <t>The behavior of the selected protocol stack(s) when
sending Messages is controlled by Message Properties (see <xref target="message-props" format="default"/>).</t>
      <t>Selection Properties can be set on Preconnections, and the effect of 
Selection Properties can be queried on Connections and Messages. 
Connection Properties can be set on Connections and Preconnections; 
when set on Preconnections, they act as an initial default for the
resulting Connections. Message Properties can be set on Messages, 
Connections, and Preconnections; when set on the latter two, they act as 
an initial default for the Messages sent over those Connections,</t>
      <t>Note that configuring Connection Properties and Message Properties on
Preconnections is preferred over setting them later. Early specification of
Connection Properties allows their use as additional input to the selection
process. Protocol Specific Properties, which enable configuration of specialized
features of a specific protocol, see Section 3.2 of <xref target="I-D.ietf-taps-arch" format="default"/>, are not
used as an input to the selection process, but only support configuration if
the respective protocol has been selected.</t>
      <section anchor="property-names" numbered="true" toc="default">
        <name>Transport Property Names</name>
        <t>Transport Properties are referred to by property names. For the purposes of this document, these names are
alphanumeric strings in which words may be separated by hyphens. Specifically, the following characters are allowed: lowercase letters <tt>a-z</tt>, uppercase letters <tt>A-Z</tt>, digits <tt>0-9</tt>, the hyphen <tt>-</tt>, and the underscore <tt>_</tt>.
These names serve two purposes:</t>
        <ul spacing="normal">
          <li>Allowing different components of a Transport Services implementation to pass Transport
Properties, e.g., between a language frontend and a policy manager,
or as a representation of properties retrieved from a file or other storage.</li>
          <li>Making the code of different Transport Services implementations look similar. While individual programming languages may preclude strict adherence to the aforementioned naming convention (for instance, by prohibiting the use of hyphens in symbols), users interacting with multiple implementations will still benefit from the consistency resulting from the use of visually similar symbols.</li>
        </ul>
        <t>Transport Property Names are hierarchically organized in the
form [&lt;Namespace&gt;.]&lt;PropertyName&gt;.</t>
        <ul spacing="normal">
          <li>The Namespace component MUST be empty for well-known, generic properties, i.e., for
properties that are not specific to a protocol and are defined in an RFC.</li>
          <li>Protocol Specific Properties MUST use the protocol acronym as the Namespace, e.g.,
<tt>tcp</tt> for TCP specific Transport Properties. For IETF protocols, property
names under these namespaces SHOULD be defined in an RFC.</li>
          <li>Vendor or implementation specific properties MUST use a string identifying
the vendor or implementation as the Namespace.</li>
        </ul>
        <t>Namespaces for each of the keywords provided in the IANA protocol numbers registry 
(see https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml) are reserved
for Protocol Specific Properties and MUST NOT be used for vendor or implementation-specific properties. 
Avoid using any of the terms listed as keywords in the protocol numbers registry as any part of a vendor- or
implementation-specific property name.</t>
      </section>
      <section anchor="property-types" numbered="true" toc="default">
        <name>Transport Property Types</name>
        <t>Each Transport Property has a one of the basic types described in <xref target="notation" format="default"/>.</t>
        <t>Most Selection Properties (see <xref target="selection-props" format="default"/>) are of the Enumeration type, 
and use the Preference Enumeration, which takes one of five possible values
(Prohibit, Avoid, Ignore,  Prefer, or Require) denoting the level of preference
for a given property during protocol selection.</t>
      </section>
    </section>
    <section anchor="scope-of-interface-defn" numbered="true" toc="default">
      <name>Scope of the API Definition</name>
      <t>This document defines a language- and platform-independent API of a
Transport Services system. Given the wide variety of languages and language
conventions used to write applications that use the transport layer to connect
to other applications over the Internet, this independence makes this API
necessarily abstract.</t>
      <t>There is no interoperability benefit in tightly defining how the API is
presented to application programmers across diverse platforms. However,
maintaining the "shape" of the abstract API across different platforms reduces
the effort for programmers who learn to use the Transport Services API to then
apply their knowledge to another platform.</t>
      <t>We therefore make the following recommendations:</t>
      <ul spacing="normal">
        <li>Actions, Events, and Errors in implementations of the Transport Services API SHOULD use
the names given for them in the document, subject to capitalization,
punctuation, and other typographic conventions in the language of the
implementation, unless the implementation itself uses different names for
substantially equivalent objects for networking by convention.</li>
        <li>Transport Services systems SHOULD implement each Selection Property,
Connection Property, and Message Context Property specified in this document. 
The Transport Services API SHOULD be implemented even when in a specific implementation/platform it
will always result in no operation, e.g. there is no action when the API
specifies a Property that is not available in a transport protocol implemented
on a specific platform. For example, if TCP is the only underlying transport protocol, 
the Message Property <tt>msgOrdered</tt> can be implemented (trivially, as a no-op) as 
disabling the requirement for ordering will not have any effect on delivery order 
for Connections over TCP. Similarly, the <tt>msg-lifetime</tt> Message Property can be 
implemented but ignored, as the description of this Property states that "it is not 
guaranteed that a Message will not be sent when its Lifetime has expired".</li>
        <li>Implementations may use other representations for Transport Property Names,
e.g., by providing constants, but should provide a straight-forward mapping
between their representation and the property names specified here.</li>
      </ul>
    </section>
    <section anchor="pre-establishment" numbered="true" toc="default">
      <name>Pre-Establishment Phase</name>
      <t>The Pre-Establishment phase allows applications to specify properties for
the Connections that they are about to make, or to query the API about potential
Connections they could make.</t>
      <t>A Preconnection Object represents a potential Connection. It is a passive Object
(a data structure) that merely maintains the state that
describes the properties of a Connection that might exist in the future.  This state
comprises Local Endpoint and Remote Endpoint Objects that denote the endpoints
of the potential Connection (see <xref target="endpointspec" format="default"/>), the Selection Properties
(see <xref target="selection-props" format="default"/>), any preconfigured Connection Properties
(<xref target="connection-props" format="default"/>), and the security parameters (see
<xref target="security-parameters" format="default"/>):</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
   Preconnection := NewPreconnection([]LocalEndpoint,
                                     []RemoteEndpoint,
                                     TransportProperties,
                                     SecurityParameters)
]]></artwork>
      <t>At least one Local Endpoint MUST be specified if the Preconnection is used to Listen()
for incoming Connections, but the list of Local Endpoints MAY be empty if
the Preconnection is used to Initiate()
connections. If no Local Endpoint is specified, the Transport Services system will
assign an ephemeral local port to the Connection on the appropriate interface(s).
At least one Remote Endpoint MUST be specified if the Preconnection is used
to Initiate() Connections, but the list of Remote Endpoints MAY be empty if 
the Preconnection is used to Listen() for incoming Connections.
At least one Local Endpoint and one Remote Endpoint MUST be specified if a
peer-to-peer Rendezvous() is to occur based on the Preconnection.</t>
      <t>If more than one Local Endpoint is specified on a Preconnection, then all
the Local Endpoints on the Preconnection MUST represent the same host. For
example, they might correspond to different interfaces on a multi-homed
host, of they might correspond to local interfaces and a STUN server that
can be resolved to a server reflexive address for a Preconnection used to
make a peer-to-peer Rendezvous().</t>
      <t>If more than one Remote Endpoint is specified on the Preconnection, then
all the Remote Endpoints on the Preconnection SHOULD represent the same
service. For example, the Remote Endpoints might represent various network
interfaces of a host, or a server reflexive address that can be used to
reach a host, or a set of hosts that provide equivalent local balanced
service.</t>
      <t>In most cases, it is expected that a single Remote Endpoint will be
specified by name, and a later call to  Initiate() on the Preconnection
(see <xref target="initiate" format="default"/>) will internally resolve that name to a list of concrete
endpoints. Specifying multiple Remote Endpoints on a Preconnection allows
applications to override this for more detailed control.</t>
      <t>If Message Framers are used (see <xref target="framing" format="default"/>), they MUST be added to the
Preconnection during pre-establishment.</t>
      <section anchor="endpointspec" numbered="true" toc="default">
        <name>Specifying Endpoints</name>
        <t>The transport services API uses the Local Endpoint and Remote Endpoint Objects
to refer to the endpoints of a transport connection. Endpoints can be created
as either Remote or Local:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
RemoteSpecifier := NewRemoteEndpoint()
LocalSpecifier := NewLocalEndpoint()
]]></artwork>
        <t>A single Endpoint Object represents the identity of a network host. That endpoint
can be more or less specific depending on which identifiers are set. For example,
an Endpoint that only specifies a hostname may in fact end up corresponding
to several different IP addresses on different hosts.</t>
        <t>An Endpoint Object can be configured with the following identifiers:</t>
        <ul spacing="normal">
          <li>Hostname (string):</li>
        </ul>
        <artwork name="" type="" align="left" alt=""><![CDATA[
RemoteSpecifier.WithHostname("example.com")
]]></artwork>
        <ul spacing="normal">
          <li>Port (a 16-bit integer):</li>
        </ul>
        <artwork name="" type="" align="left" alt=""><![CDATA[
RemoteSpecifier.WithPort(443)
]]></artwork>
        <ul spacing="normal">
          <li>Service (an identifier that maps to a port; either a the name of a well-known service, or a DNS SRV service name to be resolved):</li>
        </ul>
        <artwork name="" type="" align="left" alt=""><![CDATA[
RemoteSpecifier.WithService("https")
]]></artwork>
        <ul spacing="normal">
          <li>IP address (IPv4 or IPv6 address):</li>
        </ul>
        <artwork name="" type="" align="left" alt=""><![CDATA[
RemoteSpecifier.WithIPv4Address(192.0.2.21)
]]></artwork>
        <artwork name="" type="" align="left" alt=""><![CDATA[
RemoteSpecifier.WithIPv6Address(2001:db8:4920:e29d:a420:7461:7073:0a)
]]></artwork>
        <ul spacing="normal">
          <li>Interface name (string), e.g., to qualify link-local or multicast addresses (see <xref target="ifspec" format="default"/> for details):</li>
        </ul>
        <artwork name="" type="" align="left" alt=""><![CDATA[
LocalSpecifier.WithInterface("en0")
]]></artwork>
        <t>Note that an IPv6 address specified with a scope (e.g. <tt>2001:db8:4920:e29d:a420:7461:7073:0a%en0</tt>) 
is equivalent to <tt>WithIPv6Address</tt> with an unscoped address and <tt>WithInterface </tt> together.</t>
        <t>An Endpoint cannot have multiple identifiers of a same type set. That is,
an endpoint cannot have two IP addresses specified. Two separate IP addresses
are represented as two Endpoint Objects. If a Preconnection specifies a Remote
Endpoint with a specific IP address set, it will only establish Connections to
that IP address. If, on the other hand, the Remote Endpoint specifies a hostname
but no addresses, the Connection can perform name resolution and attempt
using any address derived from the original hostname of the Remote Endpoint.
Note that multiple Remote Endpoints can be added to a Preconnection, as discussed
in <xref target="add-endpoints" format="default"/>.</t>
        <t>The Transport Services system resolves names internally, when the Initiate(),
Listen(), or Rendezvous() method is called to establish a Connection. Privacy
considerations for the timing of this resolution are given in <xref target="privacy-security" format="default"/>.</t>
        <t>The Resolve() action on a Preconnection can be used by the application to force
early binding when required, for example with some Network Address Translator
(NAT) traversal protocols (see <xref target="rendezvous" format="default"/>).</t>
        <section anchor="using-multicast-endpoints" numbered="true" toc="default">
          <name>Using Multicast Endpoints</name>
          <t>Specifying a multicast group address on a Local Endpoint will indicate to the Transport
Services system that the resulting connection will be used to receive multicast messages. The
Remote Endpoint can be used to filter incoming multicast from specific senders. Such
a Preconnection will only support calling Listen(), not Initiate(). Calling Listen()
will cause the Transport Services system to register for receiving multicast, such
as issuing an IGMP join <xref target="RFC3376" format="default"/> or using MLD for IPV6 <xref target="RFC4604" format="default"/>. Any Connections
that are accepted from this Listener are receive-only.</t>
          <t>Similarly, specifying a multicast group address on the Remote Endpoint will indicate that the
resulting connection will be used to send multicast messages, and that the Preconnection will
support Initiate() but not Listen(). Any Connections created this way are send-only.</t>
          <t>A Rendezvous() call on Preconnections containing group addresses results in an
EstablishmentError as described in <xref target="rendezvous" format="default"/>.</t>
          <t>See <xref target="multicast-examples" format="default"/> for more examples.</t>
        </section>
        <section anchor="ifspec" numbered="true" toc="default">
          <name>Constraining Interfaces for Endpoints</name>
          <t>Note that this API has multiple ways to constrain and prioritize endpoint candidates based on the network interface:</t>
          <ul spacing="normal">
            <li>Specifying an interface on a RemoteEndpoint qualifies the scope of the remote endpoint, e.g., for link-local addresses.</li>
            <li>Specifying an interface on a LocalEndpoint explicitly binds all candidates derived from this endpoint to use the specified interface.</li>
            <li>Specifying an interface using the <tt>interface</tt> Selection Property (<xref target="prop-interface" format="default"/>) or indirectly via the <tt>pvd</tt> Selection Property (<xref target="prop-pvd" format="default"/>) influences the selection among the available candidates.</li>
          </ul>
          <t>While specifying an interface on an endpoint restricts the candidates available for connection establishment in the Pre-Establishment Phase, the Selection Properties prioritize and constrain the connection establishment.</t>
        </section>
        <section anchor="endpoint-aliases" numbered="true" toc="default">
          <name>Endpoint Aliases</name>
          <t>An Endpoint can have an alternative definition when using different protocols.
For example, a server that supports both TLS/TCP and QUIC may be accessible
on two different port numbers depending on which protocol is used.</t>
          <t>To support this, Endpoint Objects can specify "aliases". An Endpoint can have
multiple aliases set.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
RemoteSpecifier.AddAlias(AlternateRemoteSpecifier)
]]></artwork>
          <t>In order to scope an alias to a specific transport protocol, an Endpoint can
specify a protocol identifier.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
RemoteSpecifier.WithProtocol(QUIC)
]]></artwork>
          <t>The following example shows a case where "example.com" has a server
running on port 443, with an alternate port of 8443 for QUIC.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
RemoteSpecifier := NewRemoteEndpoint()
RemoteSpecifier.WithHostname("example.com")
RemoteSpecifier.WithPort(443)

QUICRemoteSpecifier := NewRemoteEndpoint()
QUICRemoteSpecifier.WithHostname("example.com")
QUICRemoteSpecifier.WithPort(8443)
QUICRemoteSpecifier.WithProtocol(QUIC)

RemoteSpecifier.AddAlias(QUICRemoteSpecifier)
]]></artwork>
        </section>
        <section anchor="endpoint-examples" numbered="true" toc="default">
          <name>Endpoint Examples</name>
          <t>The following examples of Endpoints show common usage patterns.</t>
          <t>Specify a Remote Endpoint using a hostname and service name:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
RemoteSpecifier := NewRemoteEndpoint()
RemoteSpecifier.WithHostname("example.com")
RemoteSpecifier.WithService("https")
]]></artwork>
          <t>Specify a Remote Endpoint using an IPv6 address and remote port:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
RemoteSpecifier := NewRemoteEndpoint()
RemoteSpecifier.WithIPv6Address(2001:db8:4920:e29d:a420:7461:7073:0a)
RemoteSpecifier.WithPort(443)
]]></artwork>
          <t>Specify a Remote Endpoint using an IPv4 address and remote port:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
RemoteSpecifier := NewRemoteEndpoint()
RemoteSpecifier.WithIPv4Address(192.0.2.21)
RemoteSpecifier.WithPort(443)
]]></artwork>
          <t>Specify a Local Endpoint using a local interface name and local port:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
LocalSpecifier := NewLocalEndpoint()
LocalSpecifier.WithInterface("en0")
LocalSpecifier.WithPort(443)
]]></artwork>
          <t>As an alternative to specifying an interface name for the Local Endpoint, an application
can express more fine-grained preferences using the <tt>Interface Instance or Type</tt>
Selection Property, see <xref target="prop-interface" format="default"/>. However, if the application specifies Selection
Properties that are inconsistent with the Local Endpoint, this will result in an Error once the
application attempts to open a Connection.</t>
          <t>Specify a Local Endpoint using a STUN server:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
LocalSpecifier := NewLocalEndpoint()
LocalSpecifier.WithStunServer(address, port, credentials)
]]></artwork>
        </section>
        <section anchor="multicast-examples" numbered="true" toc="default">
          <name>Multicast Examples</name>
          <t>Specify a Local Endpoint using an Any-Source Multicast group to join on a named local interface:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
LocalSpecifier := NewLocalEndpoint()
LocalSpecifier.WithIPv4Address(233.252.0.0)
LocalSpecifier.WithInterface("en0")
]]></artwork>
          <t>Source-Specific Multicast requires setting both a Local and Remote Endpoint:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
LocalSpecifier := NewLocalEndpoint()
LocalSpecifier.WithIPv4Address(232.1.1.1)
LocalSpecifier.WithInterface("en0")

RemoteSpecifier := NewRemoteEndpoint()
RemoteSpecifier.WithIPv4Address(192.0.2.22)
]]></artwork>
          <t>One common pattern for multicast is to both send and receive multicast. For such
cases, an application can set up both a Listener and a Connection. The Listener
is only used to accept Connections that receive inbound multicast. The initiated
Connection is only used to send multicast.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
// Prepare multicast Listener
LocalMulticastSpecifier := NewLocalEndpoint()
LocalMulticastSpecifier.WithIPv4Address(233.252.0.0)
LocalMulticastSpecifier.WithPort(5353)
LocalMulticastSpecifier.WithInterface("en0")

TransportProperties := NewTransportProperties()
TransportProperties.Require(preserve-msg-boundaries)
// Reliable Data Transfer and Preserve Order are Required by default
                                  
// Specifying a Remote Endpoint is optional when using Listen()
Preconnection := NewPreconnection(LocalMulticastSpecifier,
                                  TransportProperties,
                                  SecurityParameters)

MulticastListener := Preconnection.Listen()

// Handle inbound messages sent to the multicast group
MulticastListener -> ConnectionReceived<MulticastReceiverConnection>
MulticastReceiverConnection.Receive()
MulticastReceiverConnection -> Received<messageDataRequest, messageContext>

// Prepare Connection to send multicast
LocalSpecifier := NewLocalEndpoint()
LocalSpecifier.WithPort(5353)
LocalSpecifier.WithInterface("en0")
RemoteMulticastSpecifier := NewRemoteEndpoint()
RemoteMulticastSpecifier.WithIPv4Address(233.252.0.0)
RemoteMulticastSpecifier.WithPort(5353)
RemoteMulticastSpecifier.WithInterface("en0")

Preconnection2 := NewPreconnection(LocalSpecifier,
                                   RemoteMulticastSpecifier,
                                   TransportProperties,
                                   SecurityParameters)
                                   
// Send outbound messages to the multicast group
MulticastSenderConnection := Preconnection.Initiate()
MulticastSenderConnection.Send(messageData)
]]></artwork>
        </section>
      </section>
      <section anchor="selection-props" numbered="true" toc="default">
        <name>Specifying Transport Properties</name>
        <t>A Preconnection Object holds properties reflecting the application's
requirements and preferences for the transport. These include Selection
Properties for selecting protocol stacks and paths, as well as Connection
Properties and Message Properties for configuration of the detailed operation
of the selected Protocol Stacks on a per-Connection and Message level.</t>
        <t>The protocol(s) and path(s) selected as candidates during establishment are
determined and configured using these properties. Since there could be paths
over which some transport protocols are unable to operate, or remote endpoints
that support only specific network addresses or transports, transport protocol
selection is necessarily tied to path selection. This may involve choosing
between multiple local interfaces that are connected to different access
networks.</t>
        <t>When additional information (such as Provisioning Domain (PvD) information 

Path information can include network segment PMTU, set of supported DSCPs, 
expected usage, cost, etc. The usage of this information by the Transport 
Services System is generally independent of the specific mechanism/protocol 
used to receive the information (e.g. zero-conf, DHCP, or IPv6 RA).<xref target="RFC7556" format="default"/>) is available about the networks over which an endpoint can operate,
this can inform the selection between alternate network paths.</t>
        <t>Most Selection Properties are represented as Preferences, which can
take one of five values:</t>
        <table anchor="tab-pref-levels" align="center">
          <name>Selection Property Preference Levels</name>
          <thead>
            <tr>
              <th align="left">Preference</th>
              <th align="left">Effect</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Require</td>
              <td align="left">Select only protocols/paths providing the property, fail otherwise</td>
            </tr>
            <tr>
              <td align="left">Prefer</td>
              <td align="left">Prefer protocols/paths providing the property, proceed otherwise</td>
            </tr>
            <tr>
              <td align="left">Ignore</td>
              <td align="left">No preference</td>
            </tr>
            <tr>
              <td align="left">Avoid</td>
              <td align="left">Prefer protocols/paths not providing the property, proceed otherwise</td>
            </tr>
            <tr>
              <td align="left">Prohibit</td>
              <td align="left">Select only protocols/paths not providing the property, fail otherwise</td>
            </tr>
          </tbody>
        </table>
        <t>The implementation MUST ensure an outcome that is consistent with all application
requirements expressed using Require and Prohibit. While preferences
expressed using Prefer and Avoid influence protocol and path selection as well,
outcomes can vary given the same Selection Properties, because the available
protocols and paths can differ across systems and contexts. However,
implementations are RECOMMENDED to seek to provide a consistent outcome
to an application, given the same set of Selection Properties.</t>
        <t>Note that application preferences can conflict with each other. For
example, if an application indicates a preference for a specific path by
specifying an interface, but also a preference for a protocol, a situation
might occur in which the preferred protocol is not available on the preferred
path. In such cases, applications can expect properties that determine path
selection to be prioritized over properties that determine protocol selection.
The transport system SHOULD determine the preferred path first, regardless of
protocol preferences. This ordering is chosen to provide consistency across
implementations, based on the fact that it is more common for the use of a
given network path to determine cost to the user (i.e., an interface type
preference might be based on a user's preference to avoid being charged
more for a cellular data plan).</t>
        <t>Selection and Connection Properties, as well as defaults for Message
Properties, can be added to a Preconnection to configure the selection process
and to further configure the eventually selected protocol stack(s). They are
collected into a TransportProperties object to be passed into a Preconnection
object:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
TransportProperties := NewTransportProperties()
]]></artwork>
        <t>Individual properties are then set on the TransportProperties Object.
Setting a Transport Property to a value overrides the previous value of this Transport Property.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
TransportProperties.Set(property, value)
]]></artwork>
        <t>To aid readability, implementations MAY provide additional convenience functions to simplify use of Selection Properties: see <xref target="preference-conv" format="default"/> for examples.
In addition, implementations MAY provide a mechanism to create TransportProperties objects that are preconfigured for common use cases as outlined in <xref target="property-profiles" format="default"/>.</t>
        <t>Transport Properties for an established connection can be queried via the Connection object, as outlined in <xref target="introspection" format="default"/>.</t>
        <t>A Connection gets its Transport Properties either by being explicitly configured
via a Preconnection, by configuration after establishment, or by inheriting them
from an antecedent via cloning; see <xref target="groups" format="default"/> for more.</t>
        <t><xref target="connection-props" format="default"/> provides a list of Connection Properties, while Selection
Properties are listed in the subsections below. Many properties are
only considered during establishment, and can not be changed after a Connection
is established; however, they can still be queried. The return type of a queried
Selection Property is Boolean, where <tt>true</tt> means that the Selection Property
has been applied and <tt>false</tt> means that the Selection Property has not
been applied. Note that <tt>true</tt> does not mean that a request has been honored.
For example, if <tt>Congestion control</tt> was
requested with preference level <tt>Prefer</tt>, but congestion control could not
be supported, querying the <tt>congestionControl</tt> property yields the
value <tt>false</tt>. If the preference level <tt>Avoid</tt> was used for <tt>Congestion control</tt>,
and, as requested, the Connection is not congestion controlled, querying
the <tt>congestionControl</tt> property also yields the value <tt>false</tt>.</t>
        <t>An implementation of the Transport Services API must provide sensible defaults for Selection
Properties. The default values for each property below represent a
configuration that can be implemented over TCP. If these default values are used
and TCP is not supported by a Transport Services system, then an application using the
default set of Properties might not succeed in establishing a connection. Using
the same default values for independent Transport Services implementations can be beneficial
when applications are ported between different implementations/platforms, even if this
default could lead to a connection failure when TCP is not available. If default
values other than those suggested below are used, it is RECOMMENDED to clearly
document any differences.</t>
        <section anchor="prop-reliable" numbered="true" toc="default">
          <name>Reliable Data Transfer (Connection)</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  reliability</dd>
            <dt>Type:</dt>
            <dd>
  Preference</dd>
            <dt>Default:</dt>
            <dd>
  Require</dd>
          </dl>
          <t>This property specifies whether the application needs to use a transport
protocol that ensures that all data is received at the Remote Endpoint without
corruption. When reliable data transfer is enabled, this
also entails being notified when a Connection is closed or aborted.</t>
        </section>
        <section anchor="prop-boundaries" numbered="true" toc="default">
          <name>Preservation of Message Boundaries</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  preserveMsgBoundaries</dd>
            <dt>Type:</dt>
            <dd>
  Preference</dd>
            <dt>Default:</dt>
            <dd>
  Ignore</dd>
          </dl>
          <t>This property specifies whether the application needs or prefers to use a transport
protocol that preserves message boundaries.</t>
        </section>
        <section anchor="prop-partially-reliable" numbered="true" toc="default">
          <name>Configure Per-Message Reliability</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  perMsgReliability</dd>
            <dt>Type:</dt>
            <dd>
  Preference</dd>
            <dt>Default:</dt>
            <dd>
  Ignore</dd>
          </dl>
          <t>This property specifies whether an application considers it useful to specify different
reliability requirements for individual Messages in a Connection.</t>
        </section>
        <section anchor="prop-ordering" numbered="true" toc="default">
          <name>Preservation of Data Ordering</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  preserveOrder</dd>
            <dt>Type:</dt>
            <dd>
  Preference</dd>
            <dt>Default:</dt>
            <dd>
  Require</dd>
          </dl>
          <t>This property specifies whether the application wishes to use a transport
protocol that can ensure that data is received by the application on the other
end in the same order as it was sent.</t>
        </section>
        <section anchor="prop-0rtt" numbered="true" toc="default">
          <name>Use 0-RTT Session Establishment with a Safely Replayable Message</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  zeroRttMsg</dd>
            <dt>Type:</dt>
            <dd>
  Preference</dd>
            <dt>Default:</dt>
            <dd>
  Ignore</dd>
          </dl>
          <t>This property specifies whether an application would like to supply a Message to
the transport protocol before Connection establishment that will then be
reliably transferred to the other side before or during Connection
establishment. This Message can potentially be received multiple times (i.e., 
multiple copies of the message data may be passed to the Remote Endpoint). 
See also <xref target="msg-safelyreplayable" format="default"/>.</t>
        </section>
        <section anchor="prop-multistream" numbered="true" toc="default">
          <name>Multistream Connections in Group</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  multistreaming</dd>
            <dt>Type:</dt>
            <dd>
  Preference</dd>
            <dt>Default:</dt>
            <dd>
  Prefer</dd>
          </dl>
          <t>This property specifies that the application would prefer multiple Connections
within a Connection Group to be provided by streams of a single underlying
transport connection where possible.</t>
        </section>
        <section anchor="prop-checksum-control-send" numbered="true" toc="default">
          <name>Full Checksum Coverage on Sending</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  fullChecksumSend</dd>
            <dt>Type:</dt>
            <dd>
  Preference</dd>
            <dt>Default:</dt>
            <dd>
  Require</dd>
          </dl>
          <t>This property specifies the application's need for protection against
corruption for all data transmitted on this Connection. Disabling this property could enable
later control of the sender checksum coverage (see <xref target="msg-checksum" format="default"/>).</t>
        </section>
        <section anchor="prop-checksum-control-receive" numbered="true" toc="default">
          <name>Full Checksum Coverage on Receiving</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  fullChecksumRecv</dd>
            <dt>Type:</dt>
            <dd>
  Preference</dd>
            <dt>Default:</dt>
            <dd>
  Require</dd>
          </dl>
          <t>This property specifies the application's need for protection against
corruption for all data received on this Connection. Disabling this property could enable
later control of the required minimum receiver checksum coverage (see <xref target="conn-recv-checksum" format="default"/>).</t>
        </section>
        <section anchor="prop-cc" numbered="true" toc="default">
          <name>Congestion control</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  congestionControl</dd>
            <dt>Type:</dt>
            <dd>
  Preference</dd>
            <dt>Default:</dt>
            <dd>
  Require</dd>
          </dl>
          <t>This property specifies whether the application would like the Connection to be
congestion controlled or not. Note that if a Connection is not congestion
controlled, an application using such a Connection SHOULD itself perform
congestion control in accordance with <xref target="RFC2914" format="default"/> or use a circuit breaker in
accordance with <xref target="RFC8084" format="default"/>, whichever is appropriate. Also note that reliability
is usually combined with congestion control in protocol implementations,
rendering "reliable but not congestion controlled" a request that is unlikely to
succeed. If the Connection is congestion controlled, performing additional congestion control
in the application can have negative performance implications.</t>
        </section>
        <section anchor="keep-alive" numbered="true" toc="default">
          <name>Keep alive</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  keepAlive</dd>
            <dt>Type:</dt>
            <dd>
  Preference</dd>
            <dt>Default:</dt>
            <dd>
  Ignore</dd>
          </dl>
          <t>This property specifies whether the application would like the Connection to send
keep-alive packets or not. Note that if a Connection determines that keep-alive
packets are being sent, the applicaton should itself avoid generating additional keep alive
messages. Note that when supported, the system will use the default period
for generation of the keep alive-packets. (See also <xref target="keep-alive-timeout" format="default"/>).</t>
        </section>
        <section anchor="prop-interface" numbered="true" toc="default">
          <name>Interface Instance or Type</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  interface</dd>
            <dt>Type:</dt>
            <dd>
  Collection of (Preference, Enumeration)</dd>
            <dt>Default:</dt>
            <dd>
  Empty (not setting a preference for any interface)</dd>
          </dl>
          <t>This property allows the application to select any specific network interfaces
or categories of interfaces it wants to <tt>Require</tt>, <tt>Prohibit</tt>, <tt>Prefer</tt>, or
<tt>Avoid</tt>. Note that marking a specific interface as <tt>Require</tt> strictly limits path
selection to that single interface, and often leads to less flexible and resilient
connection establishment.</t>
          <t>In contrast to other Selection Properties, this property is a tuple of an
(Enumerated) interface identifier and a preference, and can either be
implemented directly as such, or for making one preference available for each
interface and interface type available on the system.</t>
          <t>The set of valid interface types is implementation- and system-specific. For
example, on a mobile device, there may be <tt>Wi-Fi</tt> and <tt>Cellular</tt> interface types
available; whereas on a desktop computer,  <tt>Wi-Fi</tt> and <tt>Wired
Ethernet</tt> interface types might be available. An implementation should provide all types
that are supported on the local system, to allow
applications to be written generically. For example, if a single implementation
is used on both mobile devices and desktop devices, it should define the
<tt>Cellular</tt> interface type for both systems, since an application might wish to
always prohibit cellular.</t>
          <t>The set of interface types is expected to change over time as new access
technologies become available. The taxonomy of interface types on a given
Transport Services system is implementation-specific.</t>
          <t>Interface types should not be treated as a proxy for properties of interfaces
such as metered or unmetered network access. If an application needs to prohibit
metered interfaces, this should be specified via Provisioning Domain attributes
(see <xref target="prop-pvd" format="default"/>) or another specific property.</t>
          <t>Note that this property is not used to specify an interface scope for a particular endpoint. <xref target="ifspec" format="default"/> provides details about how to qualify endpoint candidates on a per-interface basis.</t>
        </section>
        <section anchor="prop-pvd" numbered="true" toc="default">
          <name>Provisioning Domain Instance or Type</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  pvd</dd>
            <dt>Type:</dt>
            <dd>
  Collection of (Preference, Enumeration)</dd>
            <dt>Default:</dt>
            <dd>
  Empty (not setting a preference for any PvD)</dd>
          </dl>
          <t>Similar to interface instances and types (see <xref target="prop-interface" format="default"/>), this property
allows the application to control path selection by selecting which specific
Provisioning Domain (PvD) or categories of PVDs it wants to
<tt>Require</tt>, <tt>Prohibit</tt>, <tt>Prefer</tt>, or <tt>Avoid</tt>. Provisioning Domains define
consistent sets of network properties that may be more specific than network
interfaces <xref target="RFC7556" format="default"/>.</t>
          <t>As with interface instances and types, this property is a tuple of an (Enumerated)
PvD identifier and a preference, and can either be implemented directly as such,
or for making one preference available for each interface and interface type
available on the system.</t>
          <t>The identification of a specific PvD is
implementation- and system-specific, because there is currently no portable standard
format for a PvD identifier. For example, this identifier might be a string name
or an integer. As with requiring specific interfaces, requiring a specific PvD
strictly limits the path selection.</t>
          <t>Categories or types of PvDs are also defined to be implementation- and
system-specific. These can be useful to identify a service that is provided by a
PvD. For example, if an application wants to use a PvD that provides a
Voice-Over-IP service on a Cellular network, it can use the relevant PvD type to
require a PvD that provides this service, without needing to look up a
particular instance. While this does restrict path selection, it is broader than
requiring specific PvD instances or interface instances, and should be preferred
over these options.</t>
        </section>
        <section anchor="use-temporary-local-address" numbered="true" toc="default">
          <name>Use Temporary Local Address</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  useTemporaryLocalAddress</dd>
            <dt>Type:</dt>
            <dd>
  Preference</dd>
            <dt>Default:</dt>
            <dd>
  Avoid for Listeners and Rendezvous Connections. Prefer for other Connections.</dd>
          </dl>
          <t>This property allows the application to express a preference for the use of
temporary local addresses, sometimes called "privacy" addresses <xref target="RFC8981" format="default"/>.
Temporary addresses are generally used to prevent linking connections over time
when a stable address, sometimes called "permanent" address, is not needed.
There are some caveats to note when specifying this property. First, if an
application Requires the use of temporary addresses, the resulting Connection
cannot use IPv4, because temporary addresses do not exist in IPv4. Second,
temporary local addresses might involve trading off privacy for performance.
For instance, temporary addresses can interfere with resumption mechanisms
that some protocols rely on to reduce initial latency.</t>
        </section>
        <section anchor="multipath-mode" numbered="true" toc="default">
          <name>Multipath Transport</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  multipath</dd>
            <dt>Type:</dt>
            <dd>
  Enumeration</dd>
            <dt>Default:</dt>
            <dd>
  Disabled for connections created through initiate and rendezvous, Passive for listeners</dd>
          </dl>
          <t>This property specifies whether and how applications want to take advantage of
transferring data across multiple paths between the same end hosts.
Using multiple paths allows connections to migrate between interfaces or aggregate bandwidth
as availability and performance properties change.
Possible values are:</t>
          <dl newline="false" spacing="normal">
            <dt>Disabled:</dt>
            <dd>
  The connection will not use multiple paths once established, even if the chosen transport supports using multiple paths.</dd>
            <dt>Active:</dt>
            <dd>
  The connection will negotiate the use of multiple paths if the chosen transport supports this.</dd>
            <dt>Passive:</dt>
            <dd>
  The connection will support the use of multiple paths if the Remote Endpoint requests it.</dd>
          </dl>
          <t>The policy for using multiple paths is specified using the separate <tt>multipath-policy</tt> property, see <xref target="multipath-policy" format="default"/> below.
To enable the peer endpoint to initiate additional paths towards a local address other than the one initially used, it is necessary to set the Alternative Addresses property (see <xref target="altaddr" format="default"/> below).</t>
          <t>Setting this property to "Active", can have privacy implications: It enables the transport to establish connectivity using alternate paths that might result in users being linkable across the multiple paths, even if the Advertisement of Alternative Addresses property (see <xref target="altaddr" format="default"/> below) is set to false.</t>
          <t>Note that Multipath Transport has no corresponding Selection Property of type Preference.
Enumeration values other than "Disabled" are interpreted as a preference for choosing protocols that can make use of multiple paths.
The "Disabled" value implies a requirement not to use multiple paths in parallel but does not prevent choosing a protocol that is capable of using multiple paths, e.g., it does not prevent choosing TCP, but prevents sending the <tt>MP_CAPABLE</tt> option in the TCP handshake.</t>
        </section>
        <section anchor="altaddr" numbered="true" toc="default">
          <name>Advertisement of Alternative Addresses</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  advertises-altaddr</dd>
            <dt>Type:</dt>
            <dd>
  Boolean</dd>
            <dt>Default:</dt>
            <dd>
  False</dd>
          </dl>
          <t>This property specifies whether alternative addresses, e.g., of other interfaces, should be advertised to the
peer endpoint by the protocol stack. Advertising these addresses enables the peer-endpoint to establish additional connectivity, e.g., for connection migration or using multiple paths.</t>
          <t>Note that this can have privacy implications because it might result in users being linkable across the multiple paths.
Also, note that setting this to false does not prevent the local Transport Services system from <em>establishing</em> connectivity using alternate paths (see <xref target="multipath-mode" format="default"/> above); it only prevents <em>proactive advertisement</em> of addresses.</t>
        </section>
        <section anchor="direction-of-communication" numbered="true" toc="default">
          <name>Direction of communication</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  direction</dd>
            <dt>Type:</dt>
            <dd>
  Enumeration</dd>
            <dt>Default:</dt>
            <dd>
  Bidirectional</dd>
          </dl>
          <t>This property specifies whether an application wants to use the connection for sending and/or receiving data.  Possible values are:</t>
          <dl newline="false" spacing="normal">
            <dt>Bidirectional:</dt>
            <dd>
  The connection must support sending and receiving data</dd>
            <dt>Unidirectional send:</dt>
            <dd>
  The connection must support sending data, and the application cannot use the connection to receive any data</dd>
            <dt>Unidirectional receive:</dt>
            <dd>
  The connection must support receiving data, and the application cannot use the connection to send any data</dd>
          </dl>
          <t>Since unidirectional communication can be
supported by transports offering bidirectional communication, specifying
unidirectional communication may cause a transport stack that supports
bidirectional communication to be selected.</t>
        </section>
        <section anchor="prop-soft-error" numbered="true" toc="default">
          <name>Notification of ICMP soft error message arrival</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  softErrorNotify</dd>
            <dt>Type:</dt>
            <dd>
  Preference</dd>
            <dt>Default:</dt>
            <dd>
  Ignore</dd>
          </dl>
          <t>This property specifies whether an application considers it useful to be
informed when an ICMP error message arrives that does not force termination of a
connection. When set to true, received ICMP errors are available as
SoftErrors, see <xref target="soft-errors" format="default"/>. Note that even if a protocol supporting this property is selected,
not all ICMP errors will necessarily be delivered, so applications cannot rely
upon receiving them <xref target="RFC8085" format="default"/>.</t>
        </section>
        <section anchor="active-read-before-send" numbered="true" toc="default">
          <name>Initiating side is not the first to write</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  activeReadBeforeSend</dd>
            <dt>Type:</dt>
            <dd>
  Preference</dd>
            <dt>Default:</dt>
            <dd>
  Ignore</dd>
          </dl>
          <t>The most common client-server communication pattern involves the
client actively opening a connection, then sending data to the server. The
server listens (passive open), reads, and then answers. This property
specifies whether an application wants to diverge from this pattern - either
by actively opening with Initiate(), immediately followed by reading, or passively opening with Listen(),
immediately followed by writing. This property is ignored when establishing
connections using Rendezvous().
Requiring this property limits the choice of mappings to underlying protocols,
which can reduce
efficiency. For example, it prevents the Transport Services system from mapping
Connections to SCTP streams, where
the first transmitted data takes the role of an&nbsp;active open signal <xref target="I-D.ietf-taps-impl" format="default"/>.</t>
        </section>
      </section>
      <section anchor="security-parameters" numbered="true" toc="default">
        <name>Specifying Security Parameters and Callbacks</name>
        <t>Most security parameters, e.g., TLS ciphersuites, local identity and private key, etc.,
may be configured statically. Others are dynamically configured during connection establishment.
Security parameters and callbacks are partitioned based on their place in the lifetime
of connection establishment. Similar to Transport Properties, both parameters and callbacks
are inherited during cloning (see <xref target="groups" format="default"/>).</t>
        <section anchor="specifying-security-parameters-on-a-pre-connection" numbered="true" toc="default">
          <name>Specifying Security Parameters on a Pre-Connection</name>
          <t>Common security parameters such as TLS ciphersuites are known to implementations. Clients should
use common safe defaults for these values whenever possible. However, as discussed in
<xref target="RFC8922" format="default"/>, many transport security protocols require specific
security parameters and constraints from the client at the time of configuration and
actively during a handshake. These configuration parameters need to be specified in the
pre-connection phase and are created as follows:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
SecurityParameters := NewSecurityParameters()
]]></artwork>
          <t>Security configuration parameters and sample usage follow:</t>
          <ul spacing="normal">
            <li>Local identity and private keys: Used to perform private key operations and prove one's
identity to the Remote Endpoint. (Note, if private keys are not available, e.g., since they are
stored in hardware security modules (HSMs), handshake callbacks must be used. See below for details.)</li>
          </ul>
          <artwork name="" type="" align="left" alt=""><![CDATA[
SecurityParameters.Set(identity, myIdentity)
SecurityParameters.Set(key-pair, myPrivateKey, myPublicKey)
]]></artwork>
          <ul spacing="normal">
            <li>Supported algorithms: Used to restrict what parameters are used by underlying transport security protocols.
When not specified, these algorithms should use known and safe defaults for the system. Parameters include:
ciphersuites, supported groups, and signature algorithms. These parameters take a collection of supported algorithms as parameter.</li>
          </ul>
          <artwork name="" type="" align="left" alt=""><![CDATA[
SecurityParameters.Set(supported-group, "secp256r1")
SecurityParameters.Set(ciphersuite, "TLS_AES_128_GCM_SHA256")
SecurityParameters.Set(signature-algorithm, "ecdsa_secp256r1_sha256")
]]></artwork>
          <ul spacing="normal">
            <li>Pre-Shared Key import: Used to install pre-shared keying material established
out-of-band. Each pre-shared keying material is associated with some identity that typically identifies
its use or has some protocol-specific meaning to the Remote Endpoint.</li>
          </ul>
          <artwork name="" type="" align="left" alt=""><![CDATA[
SecurityParameters.Set(pre-shared-key, key, identity)
]]></artwork>
          <ul spacing="normal">
            <li>Session cache management: Used to tune session cache capacity, lifetime, and
other policies.</li>
          </ul>
          <artwork name="" type="" align="left" alt=""><![CDATA[
SecurityParameters.Set(max-cached-sessions, 16)
SecurityParameters.Set(cached-session-lifetime-seconds, 3600)
]]></artwork>
          <t>Connections that use Transport Services SHOULD use security in general. However, for
compatibility with endpoints that do not support transport security protocols (such
as a TCP endpoint that does not support TLS), applications can initialize their
security parameters to indicate that security can be disabled, or can be opportunistic.
If security is disabled, the Transport Services system will not attempt to add
transport security automatically. If security is opportunistic, it will allow
Connections without transport security, but will still attempt to use security if
available.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
SecurityParameters := NewDisabledSecurityParameters()

SecurityParameters := NewOpportunisticSecurityParameters()
]]></artwork>
          <t>Representation of Security Parameters in implementations should parallel 
that chosen for Transport Property names as sugggested in <xref target="scope-of-interface-defn" format="default"/>.</t>
        </section>
        <section anchor="connection-establishment-callbacks" numbered="true" toc="default">
          <name>Connection Establishment Callbacks</name>
          <t>Security decisions, especially pertaining to trust, are not static. Once configured,
parameters may also be supplied during connection establishment. These are best
handled as client-provided callbacks. 
Callbacks block the progress of the connection establishment, which distinguishes them from other Events in the transport system. How callbacks and events are implemented is specific to each implementation.
Security handshake callbacks that may be invoked during connection establishment include:</t>
          <ul spacing="normal">
            <li>Trust verification callback: Invoked when a Remote Endpoint's trust must be verified before the
handshake protocol can continue. For example, the application could verify an X.509 certificate
as described in <xref target="RFC5280" format="default"/>.</li>
          </ul>
          <artwork name="" type="" align="left" alt=""><![CDATA[
TrustCallback := NewCallback({
  // Handle trust, return the result
})
SecurityParameters.SetTrustVerificationCallback(trustCallback)
]]></artwork>
          <ul spacing="normal">
            <li>Identity challenge callback: Invoked when a private key operation is required, e.g., when
local authentication is requested by a Remote Endpoint.</li>
          </ul>
          <artwork name="" type="" align="left" alt=""><![CDATA[
ChallengeCallback := NewCallback({
  // Handle challenge
})
SecurityParameters.SetIdentityChallengeCallback(challengeCallback)
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="establishment" numbered="true" toc="default">
      <name>Establishing Connections</name>
      <t>Before a Connection can be used for data transfer, it needs to be established.
Establishment ends the pre-establishment phase; all transport properties and
cryptographic parameter specification must be complete before establishment,
as these will be used to select candidate Paths and Protocol Stacks
for the Connection. Establishment may be active, using the Initiate() Action;
passive, using the Listen() Action; or simultaneous for peer-to-peer, using
the Rendezvous() Action. These Actions are described in the subsections below.</t>
      <section anchor="initiate" numbered="true" toc="default">
        <name>Active Open: Initiate</name>
        <t>Active open is the Action of establishing a Connection to a Remote Endpoint presumed
to be listening for incoming Connection requests. Active open is used by clients in
client-server interactions. Active open is supported by the Transport Services API through the
Initiate Action:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Connection := Preconnection.Initiate(timeout?)
]]></artwork>
        <t>The timeout parameter specifies how long to wait before aborting Active open.
Before calling Initiate, the caller must have populated a Preconnection
Object with a Remote Endpoint specifier, optionally a Local Endpoint
specifier (if not specified, the system will attempt to determine a
suitable Local Endpoint), as well as all properties
necessary for candidate selection.</t>
        <t>The Initiate() Action returns a Connection object. Once Initiate() has been
called, any changes to the Preconnection MUST NOT have any effect on the
Connection. However, the Preconnection can be reused, e.g., to Initiate
another Connection.</t>
        <t>Once Initiate is called, the candidate Protocol Stack(s) may cause one or more
candidate transport-layer connections to be created to the specified Remote 
Endpoint. The caller may immediately begin sending Messages on the Connection
(see <xref target="sending" format="default"/>) after calling Initiate(); note that any data marked <tt>Safely Replayable</tt> that is sent
while the Connection is being established may be sent multiple times or on
multiple candidates.</t>
        <t>The following Events may be sent by the Connection after Initiate() is called:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Connection -> Ready<>
]]></artwork>
        <t>The Ready Event occurs after Initiate has established a transport-layer
connection on at least one usable candidate Protocol Stack over at least one
candidate Path. No Receive Events (see <xref target="receiving" format="default"/>) will occur before
the Ready Event for Connections established using Initiate.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Connection -> EstablishmentError<reason?>
]]></artwork>
        <t>An EstablishmentError occurs either when the set of transport properties and security
parameters cannot be fulfilled on a Connection for initiation (e.g., the set of
available Paths and/or Protocol Stacks meeting the constraints is empty) or
reconciled with the Local and/or Remote Endpoints; when the remote specifier
cannot be resolved; or when no transport-layer connection can be established to
the Remote Endpoint (e.g., because the Remote Endpoint is not accepting
connections, the application is prohibited from opening a Connection by the
operating system, or the establishment attempt has timed out for any other reason).</t>
        <t>Connection establishment
and transmission of the first message can be combined in a single action <xref target="initiate-and-send" format="default"/>.</t>
      </section>
      <section anchor="listen" numbered="true" toc="default">
        <name>Passive Open: Listen</name>
        <t>Passive open is the Action of waiting for Connections from Remote Endpoints,
commonly used by servers in client-server interactions. Passive open is
supported by the Transport Services API through the Listen Action and returns a Listener object:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Listener := Preconnection.Listen()
]]></artwork>
        <t>Before calling Listen, the caller must have initialized the Preconnection
during the pre-establishment phase with a Local Endpoint specifier, as well
as all properties necessary for Protocol Stack selection. A Remote Endpoint
may optionally be specified, to constrain what Connections are accepted.</t>
        <t>The Listen() Action returns a Listener object. Once Listen() has been called,
any changes to the Preconnection MUST NOT have any effect on the Listener. The
Preconnection can be disposed of or reused, e.g., to create another Listener.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Listener.Stop()
]]></artwork>
        <t>Listening continues until the global context shuts down, or until the Stop
action is performed on the Listener object.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Listener -> ConnectionReceived<Connection>
]]></artwork>
        <t>The ConnectionReceived Event occurs when a Remote Endpoint has established a
transport-layer connection to this Listener (for Connection-oriented
transport protocols), or when the first Message has been received from the
Remote Endpoint (for Connectionless protocols), causing a new Connection to be
created. The resulting Connection is contained within the ConnectionReceived
Event, and is ready to use as soon as it is passed to the application via the
event.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Listener.SetNewConnectionLimit(value)
]]></artwork>
        <t>If the caller wants to rate-limit the number of inbound Connections that will be delivered,
it can set a cap using SetNewConnectionLimit(). This mechanism allows a server to
protect itself from being drained of resources. Each time a new Connection is delivered
by the ConnectionReceived Event, the value is automatically decremented. Once the
value reaches zero, no further Connections will be delivered until the caller sets the
limit to a higher value. By default, this value is Infinite. The caller is also able to reset
the value to Infinite at any point.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Listener -> EstablishmentError<reason?>
]]></artwork>
        <t>An EstablishmentError occurs either when the Properties and Security Parameters of the Preconnection cannot be fulfilled for listening or cannot be reconciled with the Local Endpoint (and/or Remote Endpoint, if specified), when the Local Endpoint (or Remote Endpoint, if specified) cannot
be resolved, or when the application is prohibited from listening by policy.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Listener -> Stopped<>
]]></artwork>
        <t>A Stopped Event occurs after the Listener has stopped listening.</t>
      </section>
      <section anchor="rendezvous" numbered="true" toc="default">
        <name>Peer-to-Peer Establishment: Rendezvous</name>
        <t>Simultaneous peer-to-peer Connection establishment is supported by the
Rendezvous() Action:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Preconnection.Rendezvous()
]]></artwork>
        <t>A Preconnection Object used in a Rendezvous() MUST have both the
Local Endpoint candidates and the Remote Endpoint candidates specified,
along with the transport properties and security parameters needed for
Protocol Stack selection, before the Rendezvous() Action is initiated.</t>
        <t>The Rendezvous() Action listens on the Local Endpoint
candidates for an incoming Connection from the Remote Endpoint candidates,
while also simultaneously trying to establish a Connection from the Local
Endpoint candidates to the Remote Endpoint candidates.</t>
        <t>If there are multiple Local Endpoints or Remote Endpoints configured, then
initiating a Rendezvous() action will systematically probe the reachability
of those endpoint candidates following an approach such as that used in
Interactive Connectivity Establishment (ICE) <xref target="RFC8445" format="default"/>.</t>
        <t>If the endpoints are suspected to be behind a NAT, Rendezvous() can be
initiated using Local Endpoints that support a method of discovering NAT
bindings such as Session Traversal Utilities for NAT (STUN) <xref target="RFC8489" format="default"/> or
Traversal Using Relays around NAT (TURN) <xref target="RFC8656" format="default"/>.  In this case, the
Local Endpoint will resolve to a mixture of local and server reflexive
addresses. The Resolve() action on the Preconnection can be used to
discover these bindings:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
[]LocalEndpoint, []RemoteEndpoint := Preconnection.Resolve()
]]></artwork>
        <t>The Resolve() call returns lists of Local Endpoints and Remote Endpoints,
that represent the concrete addresses, local and server reflexive, on which
a Rendezvous() for the Preconnection will listen for incoming Connections,
and to which it will attempt to establish connections.</t>
        <t>Note that the set of LocalEndpoints returned by Resolve() might or might not 
contain information about all possible local interfaces; it is valid only
for a Rendezvous happening at the same time as the resolution. Care should
be taken in using these values in any other context.</t>
        <t>An application that uses Rendezvous() to establish a peer-to-peer connection
in the presence of NATs will configure the Preconnection object with at least
one a Local Endpoint that supports NAT binding discovery. It will then Resolve()
the Preconnection, and pass the resulting list of Local Endpoint candidates to
the peer via a signalling protocol, for example as part of an ICE <xref target="RFC5245" format="default"/>
exchange within SIP <xref target="RFC3261" format="default"/> or WebRTC <xref target="RFC7478" format="default"/>.  The peer will then,
via the same signalling channel, return the Remote Endpoint candidates.
The set of Remote Endpoint candidates are then configured onto the Preconnection:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Preconnection.AddRemote([]RemoteEndpoint)
]]></artwork>
        <t>The Rendezvous() Action can be initiated once both the Local Endpoint
candidates and the Remote Endpoint candidates retrieved from the peer via
the signalling channel have been added to the Preconnection.</t>
        <t>If successful, the Rendezvous() Action returns a Connection object via a
RendezvousDone&lt;&gt; Event:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Preconnection -> RendezvousDone<Connection>
]]></artwork>
        <t>The RendezvousDone&lt;&gt; Event occurs when a Connection is established with the
Remote Endpoint. For Connection-oriented transports, this occurs when the
transport-layer connection is established; for Connectionless transports,
it occurs when the first Message is received from the Remote Endpoint. The
resulting Connection is contained within the RendezvousDone&lt;&gt; Event, and is
ready to use as soon as it is passed to the application via the Event.
Changes made to a Preconnection after Rendezvous() has been called do
not have any effect on existing Connections.</t>
        <t>An EstablishmentError occurs either when the Properties and Security
Parameters of the Preconnection cannot be fulfilled for rendezvous or
cannot be reconciled with the Local and/or Remote Endpoints, when the Local
Endpoint or Remote Endpoint cannot be resolved, when no transport-layer
connection can be established to the Remote Endpoint, or when the
application is prohibited from rendezvous by policy:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Preconnection -> EstablishmentError<reason?>
]]></artwork>
      </section>
      <section anchor="groups" numbered="true" toc="default">
        <name>Connection Groups</name>
        <t>Connection Groups can be created using the Clone Action:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Connection := Connection.Clone(framer?)
]]></artwork>
        <t>Calling Clone on a Connection yields a Connection Group containing two Connections: the parent
Connection on which Clone was called, and a resulting cloned Connection.
The new Connection is actively openend, and it will send a Ready Event or an EstablishmentError Event.
Calling Clone on any of these Connections adds another Connection to
the Connection Group. Connections in a Connection Group share all
Connection Properties except <tt>Connection Priority</tt> (see <xref target="conn-priority" format="default"/>),
and these Connection Properties are entangled: Changing one of the
Connection Properties on one Connection in the Connection Group
automatically changes the Connection Property for all others. For example, changing
<tt>Timeout for aborting Connection</tt> (see
<xref target="conn-timeout" format="default"/>) on one Connection in a Connection Group will automatically
make the same change to this Connection Property for all other Connections in the Connection Group.
Like all other Properties, <tt>Connection Priority</tt> is copied 
to the new Connection when calling Clone(), but in this case, a later change to the 
<tt>Connection Priority</tt> on one Connection does not change it on the
other Connections in the same Connection Group.</t>
        <t>Message Properties set on a Connection also apply only to that Connection.</t>
        <t>A new Connection created by Clone can have a Message Framer assigned via the optional
<tt>framer</tt> parameter of the Clone Action. If this parameter is not supplied, the
stack of Message Framers associated with a Connection is copied to 
the cloned Connection when calling Clone. Then, a cloned Connection 
has the same stack of Message Framers as the Connection from which they
are Cloned, but these Framers may internally maintain per-Connection state.</t>
        <t>It is also possible to check which Connections belong to the same Connection Group.
Calling GroupedConnections() on a specific Connection returns a set of all Connections
in the same group.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
[]Connection := Connection.GroupedConnections()
]]></artwork>
        <t>Connections will belong to the same group if the application previously called Clone.
Passive Connections can also be added to the same group - e.g., when a Listener
receives a new Connection that is just a new stream of an already active multi-streaming
protocol instance.</t>
        <t>If the underlying protocol supports multi-streaming, it is natural to use this
functionality to implement Clone. In that case, Connections in a Connection Group are
multiplexed together, giving them similar treatment not only inside endpoints,
but also across the end-to-end Internet path.</t>
        <t>Note that calling Clone() can result in on-the-wire signaling, e.g., to open a new
transport connection, depending on the underlying Protocol Stack. When Clone() leads to
the opening of multiple such connections,
the Transport Services system will ensure consistency of
Connection Properties by uniformly applying them to all underlying connections
in a group. Even in such a case, there are possibilities for a Transport Services system
to implement prioritization within a Connection Group <xref target="TCP-COUPLING" format="default"/> <xref target="RFC8699" format="default"/>.</t>
        <t>Attempts to clone a Connection can result in a CloneError:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Connection -> CloneError<reason?>
]]></artwork>
        <t>The <tt>Connection Priority</tt> Connection Property operates on Connections in a Connection Group
using the same approach as in <xref target="msg-priority" format="default"/>: when allocating available network
capacity among Connections in a Connection Group, sends on Connections with
higher Priority values will be prioritized over sends on Connections that have
lower Priority values. Capacity will be shared among these Connections according to
the Connection Group Transmission Scheduler property (<xref target="conn-scheduler" format="default"/>). 
See <xref target="priority-in-taps" format="default"/> for more.</t>
      </section>
      <section anchor="add-endpoints" numbered="true" toc="default">
        <name>Adding and Removing Endpoints on a Connection</name>
        <t>Transport protocols that are explicitly multipath aware are expected to automatically
manage the set of Remote Endpoints that they are communicating with, and the paths to
those endpoints. A <tt>PathChange&lt;&gt;</tt> event, described in <xref target="conn-path-change" format="default"/>, will be
generated when the path changes.</t>
        <t>In some cases, however, it is necessary to explicitly indicate to a Connection that
a new remote endpoint has become available for use, or to indicate that some remote
endpoint is no longer available. This is most common in the case of peer to peer
connections using Trickle ICE <xref target="RFC8838" format="default"/>.</t>
        <t>The <tt>AddRemote()</tt> action can be used to add one or more new remote endpoints
to a Connection:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Connection.AddRemote([]RemoteEndpoint)
]]></artwork>
        <t>Endpoints that are already known to the Connection are ignored. A call to
<tt>AddRemote()</tt> makes the new remote endpoints available to the connection,
but whether the Connection makes use of those endpoints will depend on the
underlying transport protocol.</t>
        <t>Similarly, the <tt>RemoveRemote()</tt> action can be used to tell a connection to
stop using one or more remote endpoints:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Connection.RemoveRemote([]RemoteEndpoint)
]]></artwork>
        <t>Removing all known remote endpoints can have the effect of aborting the
connection. The effect of removing the active remote endpoint(s) depends
on the underlying transport: multipath aware transports might be able to
switch to a new path if other reachable remote endpoints exist, or the
connection might abort.</t>
        <t>Similarly, the <tt>AddLocal()</tt> and <tt>RemoveLocal()</tt> actions can be used to add
and remove local endpoints to/from a Connection.</t>
      </section>
    </section>
    <section anchor="introspection" numbered="true" toc="default">
      <name>Managing Connections</name>
      <t>During pre-establishment and after establishment, connections can be configured and queried using Connection
Properties, and asynchronous information may be available about the state of the
connection via Soft Errors.</t>
      <t>Connection Properties represent the configuration and state of the selected
Protocol Stack(s) backing a Connection. These Connection Properties may be
Generic, applying regardless of transport protocol, or Specific, applicable to a
single implementation of a single transport protocol stack. Generic Connection
Properties are defined in <xref target="connection-props" format="default"/> below.</t>
      <t>Protocol Specific Properties are defined in a transport- and 
implementation-specific way to
permit more specialized protocol features to be used. 
Too much reliance by an application on Protocol Specific Properties can significantly reduce the flexibility 
of a transport services implementation to make appropriate
selection and configuration choices. Therefore, it is RECOMMENDED that
Protocol Properties are used for properties common across different protocols and that
Protocol Specific Properties are only used where specific protocols or properties are necessary.</t>
      <t>The application can set and query Connection Properties on a per-Connection
basis. Connection Properties that are not read-only can be set during
pre-establishment (see <xref target="selection-props" format="default"/>), as well as on connections directly using
the SetProperty action:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
Connection.SetProperty(property, value)
]]></artwork>
      <t>Note that changing one of the Connection Properties on one Connection in a Connection Group
will also change it for all other Connections of that group; see further <xref target="groups" format="default"/>.</t>
      <t>At any point, the application can query Connection Properties.</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
ConnectionProperties := Connection.GetProperties()
value := ConnectionProperties.Get(property)
if ConnectionProperties.Has(boolean_or_preference_property) then ...
]]></artwork>
      <t>Depending on the status of the connection, the queried Connection
Properties will include different information:</t>
      <ul spacing="normal">
        <li>The connection state, which can be one of the following:
Establishing, Established, Closing, or Closed.</li>
        <li>Whether the connection can be used to send data. A connection can not be used
for sending if the connection was created with the Selection Property
<tt>Direction of Communication</tt> set to <tt>unidirectional receive</tt> or if a Message
marked as <tt>Final</tt> was sent over this connection. See also <xref target="msg-final" format="default"/>.</li>
        <li>Whether the connection can be used to receive data. A connection cannot be
used for reading if the connection was created with the Selection Property
<tt>Direction of Communication</tt> set to <tt>unidirectional send</tt> or if a Message
marked as <tt>Final</tt> was received. See <xref target="receiving-final-messages" format="default"/>. The latter
is only supported by certain transport protocols, e.g., by TCP as half-closed
connection.</li>
        <li>For Connections that are Established, Closing, or Closed: 
Connection Properties (<xref target="connection-props" format="default"/>) of the
actual protocols that were selected and instantiated, and Selection
Properties that the application specified on the Preconnection. 
Selection Properties of type <tt>Preference</tt> will be exposed as boolean values 
indicating whether or not the property applies to the selected transport. 
Note that the instantiated protocol stack might not match all
Protocol Selection Properties that the application specified on the
Preconnection.</li>
        <li>For Connections that are Established: information concerning the 
path(s) used by the Protocol Stack. This can be derived from local PVD information, 
measurements by the Protocol Stack, or other sources.
For example, a TAPS system that is configured to receive and process PVD information 
<xref target="RFC7556" format="default"/> could also provide network configuration information for the chosen path(s).</li>
      </ul>
      <section anchor="connection-props" numbered="true" toc="default">
        <name>Generic Connection Properties</name>
        <t>Generic Connection Properties are defined independent of the chosen protocol stack
and therefore available on all Connections.</t>
        <t>Many Connection Properties have a corresponding Selection Property that
enables applications to express their preference for protocols providing a supporting transport feature.</t>
        <section anchor="conn-recv-checksum" numbered="true" toc="default">
          <name>Required Minimum Corruption Protection Coverage for Receiving</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  recvChecksumLen</dd>
            <dt>Type:</dt>
            <dd>
  Integer or <tt>Full Coverage</tt></dd>
            <dt>Default:</dt>
            <dd>
              <tt>Full Coverage</tt></dd>
          </dl>
          <t>If this property is an Integer, it specifies the minimum number of bytes in a received
message that need to be covered by a checksum. 
A receiving endpoint will not forward messages that have less coverage 
to the application. The application is responsible for handling
any corruption within the non-protected part of the message <xref target="RFC8085" format="default"/>.
A special value of 0 means that a received packet may also have a zero checksum field.</t>
        </section>
        <section anchor="conn-priority" numbered="true" toc="default">
          <name>Connection Priority</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  connPriority</dd>
            <dt>Type:</dt>
            <dd>
  Integer (non-negative)</dd>
            <dt>Default:</dt>
            <dd>
  100</dd>
          </dl>
          <t>This Property is a non-negative integer representing the
priority of this Connection 
relative to other Connections in the same
Connection Group. A higher value reflects a higher priority. It has no effect
on Connections not part of a Connection
Group. As noted in <xref target="groups" format="default"/>, this property is not entangled when Connections
are cloned, i.e., changing the Priority on one Connection in a Connection Group 
does not change it on the other Connections in the same Connection Group. 
No guarantees of a specific behavior regarding Connection Priority are given;
a Transport Services system may ignore this property. See <xref target="priority-in-taps" format="default"/> for more details.</t>
        </section>
        <section anchor="conn-timeout" numbered="true" toc="default">
          <name>Timeout for Aborting Connection</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  connTimeout</dd>
            <dt>Type:</dt>
            <dd>
  Numeric or <tt>Disabled</tt></dd>
            <dt>Default:</dt>
            <dd>
              <tt>Disabled</tt></dd>
          </dl>
          <t>If this property is Numeric, it specifies how long to wait before deciding that an active Connection has
failed when trying to reliably deliver data to the Remote Endpoint. Adjusting this Property
will only take effect when the underlying stack supports reliability. If this property has the enumerated
value <tt>Disabled</tt>, it means that no timeout is scheduled.</t>
        </section>
        <section anchor="keep-alive-timeout" numbered="true" toc="default">
          <name>Timeout for keep alive packets</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  keepAliveTimeout</dd>
            <dt>Type:</dt>
            <dd>
  Numeric or <tt>Disabled</tt></dd>
            <dt>Default:</dt>
            <dd>
  Implementation-defined</dd>
          </dl>
          <t>A Transport Services API can request a protocol that supports sending keep alive packets <xref target="keep-alive" format="default"/>.
If this property is an Integer, it specifies the maximum length of time an idle connection (one for which no transport
packets have been sent) should wait before 
the Local Endpoint sends a keep-alive packet to the Remote Endpoint. Adjusting this Property
will only take effect when the underlying stack supports sending keep-alive packets. 
Guidance on setting this value for datagram transports is 
provided in <xref target="RFC8085" format="default"/>.
A value greater than the connection timeout (<xref target="conn-timeout" format="default"/>) or the enumerated value <tt>Disabled</tt> will disable the sending of keep-alive packets.</t>
        </section>
        <section anchor="conn-scheduler" numbered="true" toc="default">
          <name>Connection Group Transmission Scheduler</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  connScheduler</dd>
            <dt>Type:</dt>
            <dd>
  Enumeration</dd>
            <dt>Default:</dt>
            <dd>
  Weighted Fair Queueing (see Section 3.6 in <xref target="RFC8260" format="default"/>)</dd>
          </dl>
          <t>This property specifies which scheduler should be used among Connections within
a Connection Group, see <xref target="groups" format="default"/>. The set of schedulers can
be taken from <xref target="RFC8260" format="default"/>.</t>
        </section>
        <section anchor="prop-cap-profile" numbered="true" toc="default">
          <name>Capacity Profile</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  connCapacityProfile</dd>
            <dt>Type:</dt>
            <dd>
  Enumeration</dd>
            <dt>Default:</dt>
            <dd>
  Default Profile (Best Effort)</dd>
          </dl>
          <t>This property specifies the desired network treatment for traffic sent by the
application and the tradeoffs the application is prepared to make in path and
protocol selection to receive that desired treatment. When the capacity profile
is set to a value other than Default, z Transport Services system SHOULD select paths
and configure protocols to optimize the tradeoff between delay, delay variation, and
efficient use of the available capacity based on the capacity profile specified. How this is realized
is implementation-specific. The Capacity Profile MAY also be used
to set markings on the wire for Protocol Stacks supporting this. 
Recommendations for use with DSCP are provided below for each profile; note that
when a Connection is multiplexed, the guidelines in Section 6 of <xref target="RFC7657" format="default"/> apply.</t>
          <t>The following values are valid for the Capacity Profile:</t>
          <dl newline="false" spacing="normal">
            <dt>Default:</dt>
            <dd>
  The application provides no information about its expected capacity
  profile. Transport Services implementations that
  map the requested capacity profile onto per-connection DSCP signaling 
  SHOULD assign the DSCP Default Forwarding <xref target="RFC2474" format="default"/> Per Hop Behaviour (PHB).</dd>
            <dt>Scavenger:</dt>
            <dd>
  The application is not interactive. It expects to send
  and/or receive data without any urgency. This can, for example, be used to
  select protocol stacks with scavenger transmission control and/or to assign
  the traffic to a lower-effort service. Transport Services implementations that
  map the requested capacity profile onto per-connection DSCP signaling
  SHOULD assign the DSCP Less than Best Effort
  <xref target="RFC8622" format="default"/> PHB.</dd>
            <dt>Low Latency/Interactive:</dt>
            <dd>
  The application is interactive, and prefers loss to
  latency. Response time should be optimized at the expense of delay variation
  and efficient use of the available capacity when sending on this connection. This can be
  used by the system to disable the coalescing of multiple small Messages into
  larger packets (Nagle's algorithm); to prefer immediate acknowledgment from
  the peer endpoint when supported by the underlying transport; and so on.
  Transport Services implementations that map the requested capacity profile onto per-connection DSCP signaling without multiplexing SHOULD assign a DSCP Assured Forwarding (AF41,AF42,AF43,AF44) <xref target="RFC2597" format="default"/> PHB. Inelastic traffic that is expected to conform to the configured network service rate could be mapped to the DSCP Expedited Forwarding <xref target="RFC3246" format="default"/> or <xref target="RFC5865" format="default"/> PHBs.</dd>
            <dt>Low Latency/Non-Interactive:</dt>
            <dd>
  The application prefers loss to latency, but is
  not interactive. Response time should be optimized at the expense of delay
  variation and efficient use of the available capacity when sending on this connection. Transport
  system implementations that map the requested capacity profile onto
  per-connection DSCP signaling without multiplexing SHOULD assign a DSCP
  Assured Forwarding (AF21,AF22,AF23,AF24) <xref target="RFC2597" format="default"/> PHB.</dd>
            <dt>Constant-Rate Streaming:</dt>
            <dd>
  The application expects to send/receive data at a
  constant rate after Connection establishment. Delay and delay variation should
  be minimized at the expense of efficient use of the available capacity. 
  This implies that the Connection might fail if the Path is unable to maintain the desired rate.
  A transport can interpret this capacity profile as preferring a circuit
  breaker <xref target="RFC8084" format="default"/> to a rate-adaptive congestion controller. Transport
  system implementations that map the requested capacity profile onto
  per-connection DSCP signaling without multiplexing SHOULD assign a DSCP
  Assured Forwarding (AF31,AF32,AF33,AF34) <xref target="RFC2597" format="default"/> PHB.</dd>
            <dt>Capacity-Seeking:</dt>
            <dd>
  The application expects to send/receive data at the
  maximum rate allowed by its congestion controller over a relatively long
  period of time. Transport Services implementations that map the requested
  capacity profile onto per-connection DSCP signaling without multiplexing
  SHOULD assign a DSCP Assured Forwarding (AF11,AF12,AF13,AF14) <xref target="RFC2597" format="default"/> PHB
  per Section 4.8 of <xref target="RFC4594" format="default"/>.</dd>
          </dl>
          <t>The Capacity Profile for a selected protocol stack may be modified on a
per-Message basis using the Transmission Profile Message Property; see
<xref target="send-profile" format="default"/>.</t>
        </section>
        <section anchor="multipath-policy" numbered="true" toc="default">
          <name>Policy for using Multipath Transports</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  multipath-policy</dd>
            <dt>Type:</dt>
            <dd>
  Enumeration</dd>
            <dt>Default:</dt>
            <dd>
  Handover</dd>
          </dl>
          <t>This property specifies the local policy for transferring data across multiple paths between the same end hosts if Multipath Transport is not set to Disabled (see <xref target="multipath-mode" format="default"/>). Possible values are:</t>
          <dl newline="false" spacing="normal">
            <dt>Handover:</dt>
            <dd>
  The connection ought only to attempt to migrate between different paths when the original path is lost or becomes unusable. The thresholds used to declare a path unusable are implementation specific.</dd>
            <dt>Interactive:</dt>
            <dd>
  The connection ought only to attempt to minimize the latency for interactive traffic patterns by transmitting data across multiple paths when this is beneficial.
The goal of minimizing the latency will be balanced against the cost of each of these paths. Depending on the cost of the
lower-latency path, the scheduling might choose to use a higher-latency path. Traffic can be scheduled such that data may be transmitted
on multiple paths in parallel to achieve a lower latency. The specific scheduling algorithm is implementation-specific.</dd>
            <dt>Aggregate:</dt>
            <dd>
  The connection ought to attempt to use multiple paths in parallel to maximize available capacity and possibly overcome the capacity limitations of the individual paths. The actual strategy is implementation specific.</dd>
          </dl>
          <t>Note that this is a local choice - the Remote Endpoint can choose a different policy.</t>
        </section>
        <section anchor="bounds-on-send-or-receive-rate" numbered="true" toc="default">
          <name>Bounds on Send or Receive Rate</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  minSendRate / minRecvRate / maxSendRate / maxRecvRate</dd>
            <dt>Type:</dt>
            <dd>
  Numeric or <tt>Unlimited</tt> / Numeric or <tt>Unlimited</tt> / Numeric or <tt>Unlimited</tt> / Numeric or <tt>Unlimited</tt></dd>
            <dt>Default:</dt>
            <dd>
              <tt>Unlimited</tt> / <tt>Unlimited</tt> / <tt>Unlimited</tt> / <tt>Unlimited</tt></dd>
          </dl>
          <t>Integer values of this property specify an upper-bound rate that a transfer is not expected to
exceed (even if flow control and congestion control allow higher rates), and/or a
lower-bound rate below which the application does not deem
it will be useful. These are specified in bits per second. 
The enumerated value <tt>Unlimited</tt> indicates that no bound is specified.</t>
        </section>
        <section anchor="group-connection-limit" numbered="true" toc="default">
          <name>Group Connection Limit</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  groupConnLimit</dd>
            <dt>Type:</dt>
            <dd>
  Numeric or <tt>Unlimited</tt></dd>
            <dt>Default:</dt>
            <dd>
              <tt>Unlimited</tt></dd>
          </dl>
          <t>If this property is an Integer, it controls the number of Connections that can be accepted from
a peer as new members of the Connection's group. Similar to SetNewConnectionLimit(),
this limits the number of ConnectionReceived Events that will occur, but constrained
to the group of the Connection associated with this property. For a multi-streaming transport,
this limits the number of allowed streams.</t>
        </section>
        <section anchor="isolate-session" numbered="true" toc="default">
          <name>Isolate Session</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  isolateSession</dd>
            <dt>Type:</dt>
            <dd>
  Boolean</dd>
            <dt>Default:</dt>
            <dd>
  false</dd>
          </dl>
          <t>When set to true, this property will initiate new Connections using as little
cached information (such as session tickets or cookies) as possible from
previous connections that are not in the same Connection Group. Any state generated by this
Connection will only be shared with Connections in the same Connection Group. Cloned Connections
will use saved state from within the Connection Group.
This is used for separating Connection Contexts as specified in <xref target="I-D.ietf-taps-arch" format="default"/>.</t>
          <t>Note that this does not guarantee no leakage of information, as
implementations may not be able to fully isolate all caches (e.g. RTT
estimates). Note that this property may degrade connection performance.</t>
        </section>
        <section anchor="read-only-conn-prop" numbered="true" toc="default">
          <name>Read-only Connection Properties</name>
          <t>The following generic Connection Properties are read-only, i.e. they cannot be changed by an application.</t>
          <section anchor="size-safelyreplayable" numbered="true" toc="default">
            <name>Maximum Message Size Concurrent with Connection Establishment</name>
            <dl newline="false" spacing="normal">
              <dt>Name:</dt>
              <dd>
  zeroRttMsgMaxLen</dd>
              <dt>Type:</dt>
              <dd>
  Integer</dd>
            </dl>
            <t>This property represents the maximum Message size that can be sent
before or during Connection establishment, see also <xref target="msg-safelyreplayable" format="default"/>.
It is specified as the number of bytes.</t>
          </section>
          <section anchor="conn-max-msg-notfrag" numbered="true" toc="default">
            <name>Maximum Message Size Before Fragmentation or Segmentation</name>
            <dl newline="false" spacing="normal">
              <dt>Name:</dt>
              <dd>
  singularTransmissionMsgMaxLen</dd>
              <dt>Type:</dt>
              <dd>
  Integer</dd>
            </dl>
            <t>This property, if applicable, represents the maximum Message size that can be
sent without incurring network-layer fragmentation at the sender. 
It is specified as the number of bytes. It exposes a value to the application
based on the Maximum Packet Size (MPS) as described in Datagram PLPMTUD <xref target="RFC8899" format="default"/>.
This can allow a sending stack to avoid unwanted fragmentation at the 
network-layer or segmentation by the transport layer.</t>
          </section>
          <section anchor="conn-max-msg-send" numbered="true" toc="default">
            <name>Maximum Message Size on Send</name>
            <dl newline="false" spacing="normal">
              <dt>Name:</dt>
              <dd>
  sendMsgMaxLen</dd>
              <dt>Type:</dt>
              <dd>
  Integer</dd>
            </dl>
            <t>This property represents the maximum Message size that an application can send.
It is specified as the nummber of bytes.</t>
          </section>
          <section anchor="conn-max-msg-recv" numbered="true" toc="default">
            <name>Maximum Message Size on Receive</name>
            <dl newline="false" spacing="normal">
              <dt>Name:</dt>
              <dd>
  recvMsgMaxLen</dd>
              <dt>Type:</dt>
              <dd>
  Integer</dd>
            </dl>
            <t>This numeric property represents the maximum Message size that an application can receive.
It specified as the number of bytes.</t>
          </section>
        </section>
      </section>
      <section anchor="tcp-uto" numbered="true" toc="default">
        <name>TCP-specific Properties: User Timeout Option (UTO)</name>
        <t>These properties specify configurations for the User Timeout Option (UTO), 
in the case that TCP becomes the chosen transport protocol. 
Implementation is optional and useful only if TCP is implemented in the Transport Services system.</t>
        <t>These TCP-specific properties are included here because the feature <tt>Suggest
timeout to the peer</tt> is part of the minimal set of transport services
<xref target="RFC8923" format="default"/>, where this feature was categorized as "functional".
This means that when an Transport Services implementation offers this feature, 
the Transport Services API has to expose an interface to the application. Otherwise, the implementation might
violate assumptions by the application, which could cause the application to
fail.</t>
        <t>All of the below properties are optional (e.g., it is possible to specify <tt>User Timeout Enabled</tt> as true,
but not specify an Advertised User Timeout value; in this case, the TCP default will be used).
These properties reflect the API extension specified in Section 3 of <xref target="RFC5482" format="default"/>.</t>
        <section anchor="advertised-user-timeout" numbered="true" toc="default">
          <name>Advertised User Timeout</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  tcp.userTimeoutValue</dd>
            <dt>Type:</dt>
            <dd>
  Integer</dd>
            <dt>Default:</dt>
            <dd>
  the TCP default</dd>
          </dl>
          <t>This time value is advertised via the TCP User Timeout Option (UTO) <xref target="RFC5482" format="default"/> at the Remote Endpoint
to adapt its own <tt>Timeout for aborting Connection</tt> (see <xref target="conn-timeout" format="default"/>) value.</t>
        </section>
        <section anchor="user-timeout-enabled" numbered="true" toc="default">
          <name>User Timeout Enabled</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  tcp.userTimeoutEnabled</dd>
            <dt>Type:</dt>
            <dd>
  Boolean</dd>
            <dt>Default:</dt>
            <dd>
  false</dd>
          </dl>
          <t>This property controls whether the UTO option is enabled for a
connection. This applies to both sending and receiving.</t>
        </section>
        <section anchor="timeout-changeable" numbered="true" toc="default">
          <name>Timeout Changeable</name>
          <dl newline="false" spacing="normal">
            <dt>Name:</dt>
            <dd>
  tcp.userTimeoutChangeable</dd>
            <dt>Type:</dt>
            <dd>
  Boolean</dd>
            <dt>Default:</dt>
            <dd>
  true</dd>
          </dl>
          <t>This property controls whether the <tt>Timeout for aborting Connection</tt> (see <xref target="conn-timeout" format="default"/>)
may be changed
based on a UTO option received from the remote peer. This boolean becomes false when
<tt>Timeout for aborting Connection</tt> (see <xref target="conn-timeout" format="default"/>) is used.</t>
        </section>
      </section>
      <section anchor="connection-lifecycle-events" numbered="true" toc="default">
        <name>Connection Lifecycle Events</name>
        <t>During the lifetime of a connection there are events that can occur when configured.</t>
        <section anchor="soft-errors" numbered="true" toc="default">
          <name>Soft Errors</name>
          <t>Asynchronous introspection is also possible, via the SoftError Event. This event
informs the application about the receipt and contents of an ICMP error message related to the Connection. This will only happen if the underlying protocol stack supports access to soft errors; however, even if the underlying stack supports it, there
is no guarantee that a soft error will be signaled.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
Connection -> SoftError<>
]]></artwork>
        </section>
        <section anchor="conn-path-change" numbered="true" toc="default">
          <name>Path change</name>
          <t>This event notifies the application when at least one of the paths underlying a Connection has changed. Changes occur
on a single path when the PMTU changes as well as when multiple paths are used
and paths are added or removed, the set of local endpoints changes, or a handover has been performed.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
Connection -> PathChange<>
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="datatransfer" numbered="true" toc="default">
      <name>Data Transfer</name>
      <t>Data is sent and received as Messages, which allows the application
to communicate the boundaries of the data being transferred.</t>
      <section anchor="msg" numbered="true" toc="default">
        <name>Messages and Framers</name>
        <t>Each Message has an optional Message Context, which allows to add Message Properties, identify Send Events related to a specific Message or to inspect meta-data related to the Message sent. Framers can be used to extend or modify the message data with additional information that can be processed at the receiver to detect message boundaries.</t>
        <section anchor="msg-ctx" numbered="true" toc="default">
          <name>Message Contexts</name>
          <t>Using the MessageContext object, the application can set and retrieve meta-data of the message, including Message Properties (see <xref target="message-props" format="default"/>) and framing meta-data (see <xref target="framing-meta" format="default"/>).
Therefore, a MessageContext object can be passed to the Send action and is returned by each Send and Receive related event.</t>
          <t>Message Properties can be set and queried using the Message Context:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
MessageContext.add(property, value)
PropertyValue := MessageContext.get(property)
]]></artwork>
          <t>These Message Properties may be generic properties or Protocol Specific Properties.</t>
          <t>For MessageContexts returned by send Events (see <xref target="send-events" format="default"/>) and receive Events (see <xref target="receive-events" format="default"/>), the application can query information about the Local and Remote Endpoint:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
RemoteEndpoint := MessageContext.GetRemoteEndpoint()
LocalEndpoint := MessageContext.GetLocalEndpoint()
]]></artwork>
        </section>
        <section anchor="framing" numbered="true" toc="default">
          <name>Message Framers</name>
          <t>Although most applications communicate over a network using well-formed
Messages, the boundaries and metadata of the Messages are often not
directly communicated by the transport protocol itself. For example,
HTTP applications send and receive HTTP messages over a byte-stream
transport, requiring that the boundaries of HTTP messages be parsed 
from the stream of bytes.</t>
          <t>Message Framers allow extending a Connection's Protocol Stack to define
how to encapsulate or encode outbound Messages, and how to decapsulate
or decode inbound data into Messages. Message Framers allow message
boundaries to be preserved when using a Connection object, even when
using byte-stream transports. This is designed based on the fact
that many of the current application protocols evolved over TCP, which
does not provide message boundary preservation, and since many of these
protocols require message boundaries to function, each application layer
protocol has defined its own framing.</t>
          <t>To use a Message Framer, the application adds it to its Preconnection object.
Then, the Message Framer can intercept all calls to Send() or Receive()
on a Connection to add Message semantics, in addition to interacting with
the setup and teardown of the Connection. A Framer can start sending data
before the application sends data if the framing protocol requires a prefix
or handshake (see <xref target="RFC8229" format="default"/> for an example of such a framing protocol).</t>
          <figure anchor="fig-framer-stack">
            <name>Protocol Stack showing a Message Framer</name>
            <artwork name="" type="" align="left" alt=""><![CDATA[
  Initiate()   Send()   Receive()   Close()
      |          |         ^          |
      |          |         |          |
 +----v----------v---------+----------v-----+
 |                Connection                |
 +----+----------+---------^----------+-----+
      |          |         |          |
      |      +-----------------+      |
      |      |    Messages     |      |
      |      +-----------------+      |
      |          |         |          |
 +----v----------v---------+----------v-----+
 |                Framer(s)                 |
 +----+----------+---------^----------+-----+
      |          |         |          |
      |      +-----------------+      |
      |      |   Byte-stream   |      |
      |      +-----------------+      |
      |          |         |          |
 +----v----------v---------+----------v-----+
 |         Transport Protocol Stack         |
 +------------------------------------------+
]]></artwork>
          </figure>
          <t>Note that while Message Framers add the most value when placed above
a protocol that otherwise does not preserve message boundaries, they can
also be used with datagram- or message-based protocols. In these cases,
they add an additional transformation to further encode or encapsulate,
and can potentially support packing multiple application-layer Messages
into individual transport datagrams.</t>
          <t>The API to implement a Message Framer can vary depending on the implementation;
guidance on implementing Message Framers can be found in <xref target="I-D.ietf-taps-impl" format="default"/>.</t>
          <section anchor="adding-message-framers-to-pre-connections" numbered="true" toc="default">
            <name>Adding Message Framers to Pre-Connections</name>
            <t>The Message Framer object can be added to one or more Preconnections
to run on top of transport protocols. Multiple Framers may be added to a Preconnection;
in this case, the Framers operate as a framing stack, i.e. the last one added runs 
first when framing outbound messages, and last when parsing inbound data.</t>
            <t>The following example adds a basic HTTP Message Framer to a Preconnection:</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
framer := NewHTTPMessageFramer()
Preconnection.AddFramer(framer)
]]></artwork>
            <t>Since Message Framers pass from Preconnection to Listener or Connection, addition of
Framers must happen before any operation that may result in the creation of a Connection.</t>
          </section>
          <section anchor="framing-meta" numbered="true" toc="default">
            <name>Framing Meta-Data</name>
            <t>When sending Messages, applications can add Framer-specific
properties to a MessageContext (<xref target="msg-ctx" format="default"/>).
In order to set these properties, the <tt>add</tt> and <tt>get</tt> actions
on the MessageContext. To avoid naming conflicts, the property
names SHOULD be prefixed with a namespace referencing the
framer implementation or the protocol it implements as described
in <xref target="property-names" format="default"/>.</t>
            <t>This mechanism can be used, for example, to set the type of a Message for a TLV format.
The namespace of values is custom for each unique Message Framer.</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
messageContext := NewMessageContext()
messageContext.add(framer, key, value)
Connection.Send(messageData, messageContext)
]]></artwork>
            <t>When an application receives a MessageContext in a Receive event,
it can also look to see if a value was set by a specific Message Framer.</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
messageContext.get(framer, key) -> value
]]></artwork>
            <t>For example, if an HTTP Message Framer is used, the values could correspond
to HTTP headers:</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
httpFramer := NewHTTPMessageFramer()
...
messageContext := NewMessageContext()
messageContext.add(httpFramer, "accept", "text/html")
]]></artwork>
          </section>
        </section>
        <section anchor="message-props" numbered="true" toc="default">
          <name>Message Properties</name>
          <t>Applications needing to annotate the Messages they send with extra information
(for example, to control how data is scheduled and processed by the transport protocols supporting the
Connection) can include this information in the Message Context passed to the Send Action. For other uses of the message context, see <xref target="msg-ctx" format="default"/>.</t>
          <t>Message Properties are per-Message, not per-Send if partial Messages
are sent (<xref target="send-partial" format="default"/>). All data blocks associated with a single Message
share properties specified in the Message Contexts. For example, it would not
make sense to have the beginning of a Message expire, but allow the end of a
Message to still be sent.</t>
          <t>A MessageContext object contains metadata for the Messages to be sent or received.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
messageData := "hello"
messageContext := NewMessageContext()
messageContext.add(parameter, value)
Connection.Send(messageData, messageContext)
]]></artwork>
          <t>The simpler form of Send, which does not take any messageContext, is equivalent to passing a default MessageContext without adding any Message Properties.</t>
          <t>If an application wants to override Message Properties for a specific message,
it can acquire an empty MessageContext Object and add all desired Message
Properties to that Object. It can then reuse the same messageContext Object
for sending multiple Messages with the same properties.</t>
          <t>Properties can be added to a MessageContext object only before the context is used
for sending. Once a MessageContext has been used with a Send call, further modifications
to the MessageContext object do not have any effect on this Send call. Message Properties
that are not added to a MessageContext object before using the context for sending will either
take a specific default value or be configured based on Selection or Connection Properties
of the Connection that is associated with the Send call.
This initialization behavior is defined per Message Property below.</t>
          <t>The Message Properties could be inconsistent with the properties of the Protocol Stacks
underlying the Connection on which a given Message is sent. For example,
a Protocol Stack must be able to provide ordering if the msgOrdered
property of a Message is enabled. Sending a Message with Message Properties
inconsistent with the Selection Properties of the Connection yields an error.</t>
          <t>If a Message Property contradicts a Connection Property, and 
if this per-Message behavior can be supported, it overrides the Connection 
Property for the specific Message. For example, if 
<tt>Reliable Data Transfer (Connection)</tt> is set to <tt>Require</tt> and a protocol 
with configurable per-Message reliability is used, setting 
<tt>Reliable Data Transfer (Message)</tt> to <tt>false</tt> for a particular Message will 
allow this Message to be sent without any reliability guarantees. Changing 
the Reliable Data Transfer property on Messages is only possible for 
Connections that were established enabling the Selection Property 
<tt>Configure Per-Message Reliability</tt>.</t>
          <t>The following Message Properties are supported:</t>
          <section anchor="msg-lifetime" numbered="true" toc="default">
            <name>Lifetime</name>
            <dl newline="false" spacing="normal">
              <dt>Name:</dt>
              <dd>
  msgLifetime</dd>
              <dt>Type:</dt>
              <dd>
  Numeric</dd>
              <dt>Default:</dt>
              <dd>
  infinite</dd>
            </dl>
            <t>The Lifetime specifies how long a particular Message can wait to be sent to the
Remote Endpoint before it is irrelevant and no longer needs to be
(re-)transmitted. This is a hint to the Transport Services implementation - it is not guaranteed
that a Message will not be sent when its Lifetime has expired.</t>
            <t>Setting a Message's Lifetime to infinite indicates that the application does
not wish to apply a time constraint on the transmission of the Message, but it does not express a need for
reliable delivery; reliability is adjustable per Message via the <tt>Reliable Data Transfer (Message)</tt>
property (see <xref target="msg-reliable-message" format="default"/>). The type and units of Lifetime are implementation-specific.</t>
          </section>
          <section anchor="msg-priority" numbered="true" toc="default">
            <name>Priority</name>
            <dl newline="false" spacing="normal">
              <dt>Name:</dt>
              <dd>
  msgPriority</dd>
              <dt>Type:</dt>
              <dd>
  Integer (non-negative)</dd>
              <dt>Default:</dt>
              <dd>
  100</dd>
            </dl>
            <t>This property specifies the priority of a Message, relative to other Messages sent over the
same Connection.</t>
            <t>A Message with Priority 0 will yield to a Message with Priority 1, which will
yield to a Message with Priority 2, and so on. Priorities may be used as a
sender-side scheduling construct only, or be used to specify priorities on the
wire for Protocol Stacks supporting prioritization.</t>
            <t>Note that this property is not a per-message override of the Connection Priority
- see <xref target="conn-priority" format="default"/>. The Priority properties may interact, but can be used
independently and be realized by different mechanisms; see <xref target="priority-in-taps" format="default"/>.</t>
          </section>
          <section anchor="msg-ordered" numbered="true" toc="default">
            <name>Ordered</name>
            <dl newline="false" spacing="normal">
              <dt>Name:</dt>
              <dd>
  msgOrdered</dd>
              <dt>Type:</dt>
              <dd>
  Boolean</dd>
              <dt>Default:</dt>
              <dd>
  the queried Boolean value of the Selection Property <tt>preserveOrder</tt> (<xref target="prop-ordering" format="default"/>)</dd>
            </dl>
            <t>The order in which Messages were submitted for transmission via the Send Action will be preserved on delivery via Receive&lt;&gt; events for all Messages on a Connection that have this Message Property set to true.</t>
            <t>If false, the Message is delivered to the receiving application without preserving the ordering.
This property is used for protocols that support preservation of data ordering,
see <xref target="prop-ordering" format="default"/>, but allow out-of-order delivery for certain messages, e.g., by multiplexing independent messages onto
different streams.</t>
            <t>If it is not configured by the application before sending, this property's default value
will be based on the Selection Property <tt>preserveOrder</tt> of the Connection
associated with the Send Action.</t>
          </section>
          <section anchor="msg-safelyreplayable" numbered="true" toc="default">
            <name>Safely Replayable</name>
            <dl newline="false" spacing="normal">
              <dt>Name:</dt>
              <dd>
  safelyReplayable</dd>
              <dt>Type:</dt>
              <dd>
  Boolean</dd>
              <dt>Default:</dt>
              <dd>
  false</dd>
            </dl>
            <t>If true, Safely Replayable specifies that a Message is safe to send to the Remote Endpoint
more than once for a single Send Action. It marks the data as safe for
certain 0-RTT establishment techniques, where retransmission of the 0-RTT data
may cause the remote application to receive the Message multiple times.</t>
            <t>For protocols that do not protect against duplicated messages,
e.g., UDP, all messages need to be marked as <tt>Safely Replayable</tt>.
To enable protocol selection to choose such a protocol,
<tt>Safely Replayable</tt> needs to be added to the TransportProperties passed to the
Preconnection. If such a protocol was chosen, disabling <tt>Safely Replayable</tt> on
individual messages MUST result in a SendError.</t>
          </section>
          <section anchor="msg-final" numbered="true" toc="default">
            <name>Final</name>
            <dl newline="false" spacing="normal">
              <dt>Name:</dt>
              <dd>
  final</dd>
              <dt>Type:</dt>
              <dd>
  Boolean</dd>
              <dt>Default:</dt>
              <dd>
  false</dd>
            </dl>
            <t>If true, this indicates a Message is the last that
the application will send on a Connection. This allows underlying protocols
to indicate to the Remote Endpoint that the Connection has been effectively
closed in the sending direction. For example, TCP-based Connections can
send a FIN once a Message marked as Final has been completely sent,
indicated by marking endOfMessage. Protocols that do not support signalling
the end of a Connection in a given direction will ignore this property.</t>
            <t>A Final Message must always be sorted to the end of a list of Messages.
The Final property overrides Priority and any other property that would re-order
Messages. If another Message is sent after a Message marked as Final has already
been sent on a Connection, the Send Action for the new Message will cause a SendError Event.</t>
          </section>
          <section anchor="msg-checksum" numbered="true" toc="default">
            <name>Sending Corruption Protection Length</name>
            <dl newline="false" spacing="normal">
              <dt>Name:</dt>
              <dd>
  msgChecksumLen</dd>
              <dt>Type:</dt>
              <dd>
  Integer or <tt>Full Coverage</tt></dd>
              <dt>Default:</dt>
              <dd>
                <tt>Full Coverage</tt></dd>
            </dl>
            <t>If this property is an Integer, it specifies the minimum length of the section of a sent Message,
starting from byte 0, that the application requires to be delivered without
corruption due to lower layer errors. It is used to specify options for simple
integrity protection via checksums. A value of 0 means that no checksum
needs to be calculated, and the enumerated value <tt>Full Coverage</tt> means
that the entire Message needs to be protected by a checksum. Only <tt>Full Coverage</tt> is
guaranteed, any other requests are advisory, which may result in <tt>Full Coverage</tt> being applied.</t>
          </section>
          <section anchor="msg-reliable-message" numbered="true" toc="default">
            <name>Reliable Data Transfer (Message)</name>
            <dl newline="false" spacing="normal">
              <dt>Name:</dt>
              <dd>
  msgReliable</dd>
              <dt>Type:</dt>
              <dd>
  Boolean</dd>
              <dt>Default:</dt>
              <dd>
  the queried Boolean value of the Selection Property <tt>reliability</tt> (<xref target="prop-reliable" format="default"/>)</dd>
            </dl>
            <t>When true, this property specifies that a Message should be sent in such a way
that the transport protocol ensures all data is received on the other side
without corruption. Changing the <tt>Reliable Data Transfer</tt> property on Messages
is only possible for Connections that were established enabling the Selection Property <tt>Configure Per-Message Reliability</tt>.
When this is not the case, changing <tt>msgReliable</tt> will generate an error.</t>
            <t>Disabling this property indicates that the Transport Services system may disable retransmissions
or other reliability mechanisms for this particular Message, but such disabling is not guaranteed.</t>
            <t>If it is not configured by the application before sending, this property's default value
will be based on the Selection Property <tt>reliability</tt> of the Connection
associated with the Send Action.</t>
          </section>
          <section anchor="send-profile" numbered="true" toc="default">
            <name>Message Capacity Profile Override</name>
            <dl newline="false" spacing="normal">
              <dt>Name:</dt>
              <dd>
  msgCapacityProfile</dd>
              <dt>Type:</dt>
              <dd>
  Enumeration</dd>
              <dt>Default:</dt>
              <dd>
  inherited from the Connection Property <tt>connCapacityProfile</tt> (<xref target="prop-cap-profile" format="default"/>)</dd>
            </dl>
            <t>This enumerated property specifies the application's preferred tradeoffs for
sending this Message; it is a per-Message override of the Capacity Profile
connection property (see <xref target="prop-cap-profile" format="default"/>).
If it is not configured by the application before sending, this property's default value
will be based on the Connection Property <tt>connCapacityProfile</tt> of the Connection
associated with the Send Action.</t>
          </section>
          <section anchor="send-singular" numbered="true" toc="default">
            <name>No Network-Layer Fragmentation</name>
            <dl newline="false" spacing="normal">
              <dt>Name:</dt>
              <dd>
  noFragmentation</dd>
              <dt>Type:</dt>
              <dd>
  Boolean</dd>
              <dt>Default:</dt>
              <dd>
  false</dd>
            </dl>
            <t>This property specifies that a message should be sent and received 
without network-layer fragmentation, if possible. It can be used
to avoid network layer fragmentation when transport segmentation is prefered.</t>
            <t>This only takes effect when the transport uses a network layer that supports this functionality.
When it does take effect, setting this property to
true will cause the sender to avoid network-layer source frgementation.
When using IPv4, this will result in the Don't Fragment bit being set in the IP header.</t>
            <t>Attempts to send a message with this property that result in a size greater than the
transport's current estimate of its maximum packet size (<tt>singularTransmissionMsgMaxLen</tt>)
can result in transport segmentation when permitted, or in a <tt>SendError</tt>.</t>
            <t>Note: noSegmentation should be used when it is desired to only send a message within
a single network packet.</t>
          </section>
          <section anchor="no-transport-fragmentation" numbered="true" toc="default">
            <name>No Segmentation</name>
            <dl newline="false" spacing="normal">
              <dt>Name:</dt>
              <dd>
  noSegmentation</dd>
              <dt>Type:</dt>
              <dd>
  Boolean</dd>
              <dt>Default:</dt>
              <dd>
  false</dd>
            </dl>
            <t>When set to true, this property requests the transport layer
to not provide segmentation of messages larger than the
maximum size permitted by the network layer, and also
to avoid network-layer source fragmentation of messages. 
When running over IPv4, setting this property to
true can result in a sending endpount setting the 
Don't Fragment bit in the IPv4 header of packets generated by the
transport layer.  An
attempt to send a message that results in a size greater than the
transport's current estimate of its maximum packet size (singularTransmissionMsgMaxLen)
will result in a SendError.
This only takes effect when the transport and network layer
support this functionality.</t>
          </section>
        </section>
      </section>
      <section anchor="sending" numbered="true" toc="default">
        <name>Sending Data</name>
        <t>Once a Connection has been established, it can be used for sending Messages.
By default, Send enqueues a complete Message,
and takes optional per-Message properties (see <xref target="send-basic" format="default"/>). All Send actions
are asynchronous, and deliver Events (see <xref target="send-events" format="default"/>). Sending partial
Messages for streaming large data is also supported (see <xref target="send-partial" format="default"/>).</t>
        <t>Messages are sent on a Connection using the Send action:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Connection.Send(messageData, messageContext?, endOfMessage?)
]]></artwork>
        <t>where messageData is the data object to send, and messageContext allows
adding Message Properties, identifying Send Events related to a specific
Message or inspecting meta-data related to the Message sent (see <xref target="msg-ctx" format="default"/>).</t>
        <t>The optional endOfMessage parameter supports partial sending and is described in
<xref target="send-partial" format="default"/>.</t>
        <section anchor="send-basic" numbered="true" toc="default">
          <name>Basic Sending</name>
          <t>The most basic form of sending on a connection involves enqueuing a single Data
block as a complete Message with default Message Properties.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
messageData := "hello"
Connection.Send(messageData)
]]></artwork>
          <t>The interpretation of a Message to be sent is dependent on the implementation, and
on the constraints on the Protocol Stacks implied by the Connection's transport properties.
For example, a Message may be a single datagram for UDP Connections; or an HTTP
Request for HTTP Connections.</t>
          <t>Some transport protocols can deliver arbitrarily sized Messages, but other
protocols constrain the maximum Message size. Applications can query the
Connection Property "Maximum Message size on send" (<xref target="conn-max-msg-send" format="default"/>) to determine the maximum size
allowed for a single Message. If a Message is too large to fit in the Maximum Message
Size for the Connection, the Send will fail with a SendError event (<xref target="send-error" format="default"/>). For
example, it is invalid to send a Message over a UDP connection that is larger than
the available datagram sending size.</t>
        </section>
        <section anchor="send-events" numbered="true" toc="default">
          <name>Send Events</name>
          <t>Like all Actions in Transport Services API, the Send Action is asynchronous. There are
several Events that can be delivered in response to Sending a Message.
Exactly one Event (Sent, Expired, or SendError) will be delivered in response
to each call to Send.</t>
          <t>Note that if partial Sends are used (<xref target="send-partial" format="default"/>), there will still be exactly
one Send Event delivered for each call to Send. For example, if a Message
expired while two requests to Send data for that Message are outstanding,
there will be two Expired events delivered.</t>
          <t>The Transport Services API should allow the application to correlate which Send Action resulted
in a particular Send Event. The manner in which this correlation is indicated
is implementation-specific.</t>
          <section anchor="sent" numbered="true" toc="default">
            <name>Sent</name>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Connection -> Sent<messageContext>
]]></artwork>
            <t>The Sent Event occurs when a previous Send Action has completed, i.e., when
the data derived from the Message has been passed down or through the
underlying Protocol Stack and is no longer the responsibility of
the Transport Services API. The exact disposition of the Message (i.e.,
whether it has actually been transmitted, moved into a buffer on the network
interface, moved into a kernel buffer, and so on) when the Sent Event occurs
is implementation-specific. The Sent Event contains a reference to the Message
Context of the Message to which it applies.</t>
            <t>Sent Events allow an application to obtain an understanding of the amount
of buffering it creates. That is, if an application calls the Send Action multiple
times without waiting for a Sent Event, it has created more buffer inside the
Transport Services system than an application that always waits for the Sent Event before
calling the next Send Action.</t>
          </section>
          <section anchor="expired" numbered="true" toc="default">
            <name>Expired</name>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Connection -> Expired<messageContext>
]]></artwork>
            <t>The Expired Event occurs when a previous Send Action expired before completion;
i.e. when the Message was not sent before its Lifetime (see <xref target="msg-lifetime" format="default"/>)
expired. This is separate from SendError, as it is an expected behavior for
partially reliable transports. The Expired Event contains a reference to the
Message Context of the Message to which it applies.</t>
          </section>
          <section anchor="send-error" numbered="true" toc="default">
            <name>SendError</name>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Connection -> SendError<messageContext, reason?>
]]></artwork>
            <t>A SendError occurs when a Message was not sent due to an error condition:
an attempt to send a Message which is too large for the system and
Protocol Stack to handle, some failure of the underlying Protocol Stack, or a
set of Message Properties not consistent with the Connection's transport
properties. The SendError contains a reference to the Message Context of the
Message to which it applies.</t>
          </section>
        </section>
        <section anchor="send-partial" numbered="true" toc="default">
          <name>Partial Sends</name>
          <t>It is not always possible for an application to send all data associated with
a Message in a single Send Action. The Message data may be too large for
the application to hold in memory at one time, or the length of the Message
may be unknown or unbounded.</t>
          <t>Partial Message sending is supported by passing an endOfMessage boolean
parameter to the Send Action. This value is always true by default, and
the simpler forms of Send are equivalent to passing true for endOfMessage.</t>
          <t>The following example sends a Message in two separate calls to Send.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
messageContext := NewMessageContext()
messageContext.add(parameter, value)

messageData := "hel"
endOfMessage := false
Connection.Send(messageData, messageContext, endOfMessage)

messageData := "lo"
endOfMessage := true
Connection.Send(messageData, messageContext, endOfMessage)
]]></artwork>
          <t>All data sent with the same MessageContext object will be treated as belonging
to the same Message, and will constitute an in-order series until the
endOfMessage is marked.</t>
        </section>
        <section anchor="send-batching" numbered="true" toc="default">
          <name>Batching Sends</name>
          <t>To reduce the overhead of sending multiple small Messages on a Connection, the
application could batch several Send Actions together. This provides a hint to
the system that the sending of these Messages ought to be coalesced when possible,
and that sending any of the batched Messages can be delayed until the last Message
in the batch is enqueued.</t>
          <t>The semantics for starting and ending a batch can be implementation-specific, but need
to allow multiple Send Actions to be enqueued.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
Connection.StartBatch()
Connection.Send(messageData)
Connection.Send(messageData)
Connection.EndBatch()
]]></artwork>
        </section>
        <section anchor="initiate-and-send" numbered="true" toc="default">
          <name>Send on Active Open: InitiateWithSend</name>
          <t>For application-layer protocols where the Connection initiator also sends the
first message, the InitiateWithSend() action combines Connection initiation with
a first Message sent:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
Connection := Preconnection.InitiateWithSend(messageData, messageContext?, timeout?)
]]></artwork>
          <t>Whenever possible, a messageContext should be provided to declare the Message passed to InitiateWithSend
as <tt>Safely Replayable</tt>. This allows the Transport Services system to make use of 0-RTT establishment in case this is supported
by the available protocol stacks. When the selected stack(s) do not support transmitting data upon connection
establishment, InitiateWithSend is identical to Initiate() followed by Send().</t>
          <t>Neither partial sends nor send batching are supported by InitiateWithSend().</t>
          <t>The Events that may be sent after InitiateWithSend() are equivalent to those
that would be sent by an invocation of Initiate() followed immediately by an
invocation of Send(), with the caveat that a send failure that occurs because
the Connection could not be established will not result in a
SendError separate from the EstablishmentError signaling the failure of Connection
establishment.</t>
        </section>
        <section anchor="priority-in-taps" numbered="true" toc="default">
          <name>Priority and the Transport Services API</name>
          <t>The Transport Services API provides two properties to allow a sender 
to signal the relative priority of data transmission: the Priority Message 
Property <xref target="msg-priority" format="default"/>, and the Connection Priority Connection Property 
<xref target="conn-priority" format="default"/>. These properties are designed to allow the expression 
and implementation of a wide variety of approaches to transmission priority in 
the transport and application layer, including those which do not appear on
the wire (affecting only sender-side transmission scheduling) as well as those
that do (e.g. <xref target="I-D.ietf-httpbis-priority" format="default"/>.</t>
          <t>A Transport Services system gives no guarantees about how its expression of
relative priorities will be realized. However, the Transport Services system will
seek to ensure that performance of relatively-prioritized connections and
messages is not worse with respect to those connections and messages than
an equivalent configuration in which all prioritization properties are left 
at their defaults.</t>
          <t>The Transport Services API does order Connection Priority over 
the Priority Message Property. In the absense of other externalities
(e.g., transport-layer flow control), a priority 1 Message on a priority 0
Connection will be sent before a priority 0 Message on a priority 1 
Connection in the same group.</t>
        </section>
      </section>
      <section anchor="receiving" numbered="true" toc="default">
        <name>Receiving Data</name>
        <t>Once a Connection is established, it can be used for receiving data (unless the
<tt>Direction of Communication</tt> property is set to <tt>unidirectional send</tt>). As with
sending, the data is received in Messages. Receiving is an asynchronous
operation, in which each call to Receive enqueues a request to receive new
data from the connection. Once data has been received, or an error is encountered,
an event will be delivered to complete any pending Receive requests (see <xref target="receive-events" format="default"/>).
If Messages arrive at the Transport Services system before Receive requests are issued,
ensuing Receive requests will first operate on these Messages before awaiting any further Messages.</t>
        <section anchor="enqueuing-receives" numbered="true" toc="default">
          <name>Enqueuing Receives</name>
          <t>Receive takes two parameters to specify the length of data that an application
is willing to receive, both of which are optional and have default values if not
specified.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
Connection.Receive(minIncompleteLength?, maxLength?)
]]></artwork>
          <t>By default, Receive will try to deliver complete Messages in a single event (<xref target="receive-complete" format="default"/>).</t>
          <t>The application can set a minIncompleteLength value to indicate the smallest partial
Message data size in bytes that should be delivered in response to this Receive. By default,
this value is infinite, which means that only complete Messages should be delivered (see <xref target="receive-partial" format="default"/>
and <xref target="framing" format="default"/> for more information on how this is accomplished).
If this value is set to some smaller value, the associated receive event will be triggered
only when at least that many bytes are available, or the Message is complete with fewer
bytes, or the system needs to free up memory. Applications should always
check the length of the data delivered to the receive event and not assume
it will be as long as minIncompleteLength in the case of shorter complete Messages
or memory issues.</t>
          <t>The maxLength argument indicates the maximum size of a Message in bytes
that the application is currently prepared to receive. The default
value for maxLength is infinite. If an incoming Message is larger than the
minimum of this size and the maximum Message size on receive for
the Connection's Protocol Stack, it will be delivered via ReceivedPartial
events (<xref target="receive-partial" format="default"/>).</t>
          <t>Note that maxLength does not guarantee that the application will receive that many
bytes if they are available; the Transport Services API could return ReceivedPartial events with less
data than maxLength according to implementation constraints. Note also that maxLength
and minIncompleteLength are intended only to manage buffering, and are not interpreted
as a receiver preference for message reordering.</t>
        </section>
        <section anchor="receive-events" numbered="true" toc="default">
          <name>Receive Events</name>
          <t>Each call to Receive will be paired with a single Receive Event, which can be a success
or an error. This allows an application to provide backpressure to the transport stack
when it is temporarily not ready to receive messages.</t>
          <t>The Transport Services API should allow the application to correlate which call to Receive resulted
in a particular Receive Event. The manner in which this correlation is indicated
is implementation-specific.</t>
          <section anchor="receive-complete" numbered="true" toc="default">
            <name>Received</name>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Connection -> Received<messageData, messageContext>
]]></artwork>
            <t>A Received event indicates the delivery of a complete Message.
It contains two objects, the received bytes as messageData, and the metadata and properties of the received Message as messageContext.</t>
            <t>The messageData object provides access to the bytes that were received for this Message, along with the length of the byte array.
The messageContext is provided to enable retrieving metadata about the message and referring to the message. The messageContext object ist described in <xref target="msg-ctx" format="default"/>.</t>
            <t>See <xref target="framing" format="default"/> for handling Message framing in situations where the Protocol
Stack only provides a byte-stream transport.</t>
          </section>
          <section anchor="receive-partial" numbered="true" toc="default">
            <name>ReceivedPartial</name>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Connection -> ReceivedPartial<messageData, messageContext, endOfMessage>
]]></artwork>
            <t>If a complete Message cannot be delivered in one event, one part of the Message
can be delivered with a ReceivedPartial event. To continue to receive more
of the same Message, the application must invoke Receive again.</t>
            <t>Multiple invocations of ReceivedPartial deliver data for the same Message by
passing the same MessageContext, until the endOfMessage flag is delivered or a
ReceiveError occurs. All partial blocks of a single Message are delivered in
order without gaps. This event does not support delivering discontiguous partial
Messages. If, for example, Message A is divided into three pieces (A1, A2, A3) and
Message B is divided into three pieces (B1, B2, B3), and preserveOrder is not Required, 
the ReceivedPartial may deliver them in a sequence like this: A1, B1, B2, A2, A3, B3, 
because the messageContext allows the application to identify the pieces as belonging 
to Message A and B, respectively. However, a sequence like: A1, A3 will never occur.</t>
            <t>If the minIncompleteLength in the Receive request was set to be infinite (indicating
a request to receive only complete Messages), the ReceivedPartial event may still be
delivered if one of the following conditions is true:</t>
            <ul spacing="normal">
              <li>the underlying Protocol Stack supports message boundary preservation, and
the size of the Message is larger than the buffers available for a single
message;</li>
              <li>the underlying Protocol Stack does not support message boundary
preservation, and the Message Framer (see <xref target="framing" format="default"/>) cannot determine
the end of the message using the buffer space it has available; or</li>
              <li>the underlying Protocol Stack does not support message boundary
preservation, and no Message Framer was supplied by the application</li>
            </ul>
            <t>Note that in the absence of message boundary preservation or
a Message Framer, all bytes received on the Connection will be represented as one
large Message of indeterminate length.</t>
            <t>In the following example, an application only wants to receive up to 1000 bytes
at a time from a Connection. If a 1500-byte message arrives, it would receive
the message in two separate ReceivedPartial events.</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Connection.Receive(1, 1000)

// Receive first 1000 bytes, message is incomplete
Connection -> ReceivedPartial<messageData(1000 bytes), messageContext, false>

Connection.Receive(1, 1000)

// Receive last 500 bytes, message is now complete
Connection -> ReceivedPartial<messageData(500 bytes), messageContext, true>
]]></artwork>
          </section>
          <section anchor="receive-error" numbered="true" toc="default">
            <name>ReceiveError</name>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Connection -> ReceiveError<messageContext, reason?>
]]></artwork>
            <t>A ReceiveError occurs when data is received by the underlying Protocol Stack
that cannot be fully retrieved or parsed, and when it is useful for the application
to be notified of such errors. For example, a ReceiveError can
indicate that a Message (identified via the MessageContext)
that was being partially received previously, but had not
completed, encountered an error and will not be completed. This can be useful
for an application, which may want to use this error as a hint to remove
previously received Message parts from memory. As another example,
if an incoming Message does not fulfill the Required Minimum Corruption
Protection Coverage for Receiving property (see <xref target="conn-recv-checksum" format="default"/>),
an application can use this error as a hint to inform the peer application
to adjust the Sending Corruption Protection Length property (see <xref target="msg-checksum" format="default"/>).</t>
            <t>In contrast, internal protocol reception errors (e.g., loss causing retransmissions
in TCP) are not signalled by this Event. Conditions that irrevocably lead to
the termination of the Connection are signaled using ConnectionError
(see <xref target="termination" format="default"/>).</t>
          </section>
        </section>
        <section anchor="recv-meta" numbered="true" toc="default">
          <name>Receive Message Properties</name>
          <t>Each Message Context may contain metadata from protocols in the Protocol Stack;
which metadata is available is Protocol Stack dependent. These are exposed through additional read-only Message Properties that can be queried from the MessageContext object (see <xref target="msg-ctx" format="default"/>) passed by the receive event.
The following metadata values are supported:</t>
          <section anchor="receive-ecn" numbered="true" toc="default">
            <name>UDP(-Lite)-specific Property: ECN</name>
            <t>When available, Message metadata carries the value of the Explicit Congestion
Notification (ECN) field. This information can be used for logging and debugging, 
and for building applications that need access to information about
the transport internals for their own operation. This property is specific to UDP
and UDP-Lite because these protocols do not implement congestion control,
and hence expose this functionality to the application (see <xref target="RFC8293" format="default"/>, 
following the guidance in <xref target="RFC8085" format="default"/>)</t>
          </section>
          <section anchor="receive-early" numbered="true" toc="default">
            <name>Early Data</name>
            <t>In some cases it can be valuable to know whether data was read as part of early
data transfer (before connection establishment has finished). This is useful if
applications need to treat early data separately,
e.g., if early data has different security properties than data sent after
connection establishment. In the case of TLS 1.3, client early data can be replayed
maliciously (see <xref target="RFC8446" format="default"/>). Thus, receivers might wish to perform additional
checks for early data to ensure it is safely replayable. If TLS 1.3 is available
and the recipient Message was sent as part of early data, the corresponding metadata carries
a flag indicating as such. If early data is enabled, applications should check this metadata
field for Messages received during connection establishment and respond accordingly.</t>
          </section>
          <section anchor="receiving-final-messages" numbered="true" toc="default">
            <name>Receiving Final Messages</name>
            <t>The Message Context can indicate whether or not this Message is
the Final Message on a Connection. For any Message that is marked as Final,
the application can assume that there will be no more Messages received on the
Connection once the Message has been completely delivered. This corresponds
to the Final property that may be marked on a sent Message, see <xref target="msg-final" format="default"/>.</t>
            <t>Some transport protocols and peers do not support signaling of the Final property.
Applications therefore should not rely on receiving a Message marked Final to know
that the sending endpoint is done sending on a connection.</t>
            <t>Any calls to Receive once the Final Message has been delivered will result in errors.</t>
          </section>
        </section>
      </section>
    </section>
    <section anchor="termination" numbered="true" toc="default">
      <name>Connection Termination</name>
      <t>A Connection can be terminated i) by the Local Endpoint (i.e., the application calls the Close, CloseGroup, Abort or AbortGroup Action), ii) by the Remote Endpoint (i.e., the remote application calls the Close, CloseGroup, Abort or AbortGroup Action), or iii) because of an error (e.g., a timeout). A local call of the Close Action will
cause the Connection to either send a Closed Event or a ConnectionError Event, and a local call of
the CloseGroup Action will cause all of the Connections in the group to either send a Closed Event
or a ConnectionError Event. A local call of the Abort Action will cause the Connection to send
a ConnectionError Event, indicating local Abort as a reason, and a local call of the AbortGroup Action
will cause all of the Connections in the group to send a ConnectionError Event, indicating local Abort
as a reason.</t>
      <t>Remote Action calls map to Events similar to local calls (e.g., a remote Close causes the
Connection to either send a Closed Event or a ConnectionError Event), but, different from local Action calls,
it is not guaranteed that such Events will indeed be invoked. When an application needs to free resources
associated with a Connection, it should therefore not rely on the invocation of such Events due to
termination calls from the Remote Endpoint, but instead use the local termination Actions.</t>
      <t>Close terminates a Connection after satisfying all the requirements that were
specified regarding the delivery of Messages that the application has already
given to the Transport Services system. Upon successfully satisfying all these
requirements, the Connection will send the Closed Event. For example, if reliable delivery was requested
for a Message handed over before calling Close, the Closed Event will signify
that this Message has indeed been delivered. This Action does not affect any other Connection
in the same Connection Group.</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
Connection.Close()
]]></artwork>
      <t>The Closed Event informs the application that a Close Action has successfully
completed, or that the Remote Endpoint has closed the Connection.
There is no guarantee that a remote Close will be signaled.</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
Connection -> Closed<>
]]></artwork>
      <t>Abort terminates a Connection without delivering any remaining Messages. This action does
not affect any other Connection that is entangled with this one in a Connection Group.
When the Abort Action has finished, the Connection will send a ConnectionError Event,
indicating local Abort as a reason.</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
Connection.Abort()
]]></artwork>
      <t>CloseGroup gracefully terminates a Connection and any other Connections in the
same Connection Group. For example, all of the Connections in a
group might be streams of a single session for a multistreaming protocol; closing the entire
group will close the underlying session. See also <xref target="groups" format="default"/>. All Connections in the group
will send a Closed Event when the CloseGroup Action was successful.
As with Close, any Messages
remaining to be processed on a Connection will be handled prior to closing.</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
Connection.CloseGroup()
]]></artwork>
      <t>AbortGroup terminates a Connection and any other Connections that are
in the same Connection Group without delivering any remaining Messages.
When the AbortGroup Action has finished, all Connections in the group will 
send a ConnectionError Event, indicating local Abort as a reason.</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
Connection.AbortGroup()
]]></artwork>
      <t>A ConnectionError informs the application that: 1) data could not be delivered to the
peer after a timeout, 
or 2) the Connection has been aborted (e.g., because the peer has called Abort).
There is no guarantee that an Abort from the peer will be signaled.</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
Connection -> ConnectionError<reason?>
]]></artwork>
    </section>
    <section anchor="connection-state-and-ordering-of-operations-and-events" numbered="true" toc="default">
      <name>Connection State and Ordering of Operations and Events</name>
      <t>This Transport Services API is designed to be independent of an implementation's
concurrency model.  The details of how exactly actions are handled, and how
events are dispatched, are implementation dependent.</t>
      <t>Each transition of connection state is associated with one of more events:</t>
      <ul spacing="normal">
        <li>Ready&lt;&gt; occurs when a Connection created with Initiate() or
InitiateWithSend() transitions to Established state.</li>
        <li>ConnectionReceived&lt;&gt; occurs when a Connection created with Listen()
transitions to Established state.</li>
        <li>RendezvousDone&lt;&gt; occurs when a Connection created with Rendezvous()
transitions to Established state.</li>
        <li>Closed&lt;&gt; occurs when a Connection transitions to Closed state without error.</li>
        <li>EstablishmentError&lt;&gt; occurs when a Connection created with Initiate() transitions
from Establishing state to Closed state due to an error.</li>
        <li>ConnectionError&lt;&gt; occurs when a Connection transitions to Closed state due to
an error in all other circumstances.</li>
      </ul>
      <t>The following diagram shows the possible states of a Connection and the
events that occur upon a transition from one state to another.</t>
      <figure anchor="fig-connstates">
        <name>Connection State Diagram</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
              (*)                               (**)
Establishing -----> Established -----> Closing ------> Closed
     |                                                   ^
     |                                                   |
     +---------------------------------------------------+
                  EstablishmentError<>

(*) Ready<>, ConnectionReceived<>, RendezvousDone<>
(**) Closed<>, ConnectionError<>

]]></artwork>
      </figure>
      <t>The Transport Services API  provides the following guarantees about the ordering of
 operations:</t>
      <ul spacing="normal">
        <li>Sent&lt;&gt; events will occur on a Connection in the order in which the Messages
were sent (i.e., delivered to the kernel or to the network interface,
depending on implementation).</li>
        <li>Received&lt;&gt; will never occur on a Connection before it is Established; i.e.
before a Ready&lt;&gt; event on that Connection, or a ConnectionReceived&lt;&gt; or
RendezvousDone&lt;&gt; containing that Connection.</li>
        <li>No events will occur on a Connection after it is Closed; i.e., after a
Closed&lt;&gt; event, an EstablishmentError&lt;&gt; or ConnectionError&lt;&gt; will not occur on that connection. To
ensure this ordering, Closed&lt;&gt; will not occur on a Connection while other
events on the Connection are still locally outstanding (i.e., known to the
Transport Services API and waiting to be dealt with by the application).</li>
      </ul>
    </section>
    <section anchor="iana-considerations" numbered="true" toc="default">
      <name>IANA Considerations</name>
      <t>RFC-EDITOR: Please remove this section before publication.</t>
      <t>This document has no Actions for IANA.
Later versions of this document may create IANA registries for generic transport property names and transport property namespaces (see <xref target="property-names" format="default"/>).</t>
    </section>
    <section anchor="privacy-security" numbered="true" toc="default">
      <name>Privacy and Security Considerations</name>
      <t>This document describes a generic API for interacting with a Transport Services system.
Part of this API includes configuration details for transport security protocols, as discussed
in <xref target="security-parameters" format="default"/>. It does not recommend use (or disuse) of specific
algorithms or protocols. Any API-compatible transport security protocol ought to work in a Transport Services system.
Security considerations for these protocols are discussed in the respective specifications.</t>
      <t>The described API is used to exchange information between an application and the Transport Services system. While
it is not necessarily expected that both systems are implemented by the same authority, it is expected
that the Transport Services system implementation is either provided as a library that is selected by the application
from a trusted party, or that it is part of the operating system that the application also relies on for
other tasks.</t>
      <t>In either case, the Transport Services API is an internal interface that is used to change information locally between two systems.
However, as the Transport Services system is responsible for network communication, it is in the position to
potentially share any information provided by the application with the network or another communication peer. 
Most of the information provided over the Transport Services API are useful to configure and select protocols and paths
and are not necessarily privacy sensitive. Still, some information could be privacy sensitive because
it might reveal usage characteristics and habits of the user of an application.</t>
      <t>Of course any communication over a network reveals usage characteristics, as all
packets, as well as their timing and size, are part of the network-visible wire image <xref target="RFC8546" format="default"/>. However,
the selection of a protocol and its configuration also impacts which information is visible, potentially in
clear text, and which other entities can access it. In most cases, information provided for protocol and path selection
should not directly translate to information that can be observed by network devices on the path. 
However, there might be specific configuration
information that is intended for path exposure, e.g., a DiffServ codepoint setting, that is either provided
directly by the application or indirectly configured for a traffic profile.</t>
      <t>Applications should be aware that communication attempts can lead to more than one connection establishment.
This is the case, for example, when the Transport Services system also executes name resolution, when support mechanisms such as
TURN or ICE are used to establish connectivity, if protocols or paths are raised, or if a path fails and 
fallback or re-establishment is supported in the Transport Services system.</t>
      <t>Applications should also take care to not assume that all data received using the Transport Services API is always
complete or well-formed. Specifically, messages that are received partially <xref target="receive-partial" format="default"/> could be a source
of truncation attacks if applications do not distinguish between partial messages and complete messages.</t>
      <t>The Transport Services API explicitly does not require the application to resolve names, though there is
a tradeoff between early and late binding of addresses to names. Early binding
allows the API implementation to reduce connection setup latency, at the cost
of potentially limited scope for alternate path discovery during Connection
establishment, as well as potential additional information leakage about
application interest when used with a resolution method (such as DNS without
TLS) which does not protect query confidentiality.</t>
      <t>These communication activities are not different from what is used today. However, 
the goal of a Transport Services system is to support
such mechanisms as a generic service within the transport layer. This enables applications to more dynamically
benefit from innovations and new protocols in the transport, although it reduces transparency of the 
underlying communication actions to the application itself. The Transport Services API is designed such that protocol and path selection
can be limited to a small and controlled set if required by the application for functional or security purposes. Further,
A Transport Services system should provide an interface to poll information about which protocol and path is currently in use as
well as provide logging about the communication events of each connection.</t>
    </section>
    <section anchor="acknowledgements" numbered="true" toc="default">
      <name>Acknowledgements</name>
      <t>This work has received funding from the European Union's Horizon 2020 research and
innovation programme under grant agreements No. 644334 (NEAT) and No. 688421 (MAMI).</t>
      <t>This work has been supported by Leibniz Prize project funds of DFG - German
Research Foundation: Gottfried Wilhelm Leibniz-Preis 2011 (FKZ FE 570/4-1).</t>
      <t>This work has been supported by the UK Engineering and Physical Sciences
Research Council under grant EP/R04144X/1.</t>
      <t>This work has been supported by the Research Council of Norway under its "Toppforsk"
programme through the "OCARINA" project.</t>
      <t>Thanks to Stuart Cheshire, Josh Graessley, David Schinazi, and Eric Kinnear for
their implementation and design efforts, including Happy Eyeballs, that heavily
influenced this work. Thanks to Laurent Chuat and Jason Lee for initial work on
the Post Sockets interface, from which this work has evolved. Thanks to
Maximilian Franke for asking good questions based on implementation experience
and for contributing text, e.g., on multicast.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="I-D.ietf-taps-arch" target="https://www.ietf.org/archive/id/draft-ietf-taps-arch-12.txt">
          <front>
            <title>An Architecture for Transport Services</title>
            <author fullname="Tommy Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Brian Trammell">
              <organization>Google Switzerland GmbH</organization>
            </author>
            <author fullname="Anna Brunstrom">
              <organization>Karlstad University</organization>
            </author>
            <author fullname="Godred Fairhurst">
              <organization>University of Aberdeen</organization>
            </author>
            <author fullname="Colin Perkins">
              <organization>University of Glasgow</organization>
            </author>
            <date month="January" day="3" year="2022"/>
            <abstract>
              <t>   This document describes an architecture for exposing transport
   protocol features to applications for network communication, a
   Transport Services system.  The Transport Services Application
   Programming Interface (API) is based on an asynchronous, event-driven
   interaction pattern.  This API uses messages for representing data
   transfer to applications, and describes how implementations can use
   multiple IP addresses, multiple protocols, and multiple paths, and
   provide multiple application streams.  This document further defines
   common terminology and concepts to be used in definitions of a
   Transport Service API and a Transport Services implementation.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-taps-arch-12"/>
        </reference>
        <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author initials="S." surname="Bradner" fullname="S. Bradner">
              <organization/>
            </author>
            <date year="1997" month="March"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174" target="https://www.rfc-editor.org/info/rfc8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author initials="B." surname="Leiba" fullname="B. Leiba">
              <organization/>
            </author>
            <date year="2017" month="May"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC2914" target="https://www.rfc-editor.org/info/rfc2914">
          <front>
            <title>Congestion Control Principles</title>
            <author initials="S." surname="Floyd" fullname="S. Floyd">
              <organization/>
            </author>
            <date year="2000" month="September"/>
            <abstract>
              <t>The goal of this document is to explain the need for congestion control in the Internet, and to discuss what constitutes correct congestion control.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="41"/>
          <seriesInfo name="RFC" value="2914"/>
          <seriesInfo name="DOI" value="10.17487/RFC2914"/>
        </reference>
        <reference anchor="RFC8084" target="https://www.rfc-editor.org/info/rfc8084">
          <front>
            <title>Network Transport Circuit Breakers</title>
            <author initials="G." surname="Fairhurst" fullname="G. Fairhurst">
              <organization/>
            </author>
            <date year="2017" month="March"/>
            <abstract>
              <t>This document explains what is meant by the term "network transport                          Circuit Breaker".  It describes the need for Circuit Breakers (CBs) for network tunnels and applications when using non-congestion- controlled traffic and explains where CBs are, and are not, needed. It also defines requirements for building a CB and the expected outcomes of using a CB within the Internet.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="208"/>
          <seriesInfo name="RFC" value="8084"/>
          <seriesInfo name="DOI" value="10.17487/RFC8084"/>
        </reference>
        <reference anchor="RFC8981" target="https://www.rfc-editor.org/info/rfc8981">
          <front>
            <title>Temporary Address Extensions for Stateless Address Autoconfiguration in IPv6</title>
            <author initials="F." surname="Gont" fullname="F. Gont">
              <organization/>
            </author>
            <author initials="S." surname="Krishnan" fullname="S. Krishnan">
              <organization/>
            </author>
            <author initials="T." surname="Narten" fullname="T. Narten">
              <organization/>
            </author>
            <author initials="R." surname="Draves" fullname="R. Draves">
              <organization/>
            </author>
            <date year="2021" month="February"/>
            <abstract>
              <t>This document describes an extension to IPv6 Stateless Address Autoconfiguration that causes hosts to generate temporary addresses with randomized interface identifiers for each prefix advertised with autoconfiguration enabled. Changing addresses over time limits the window of time during which eavesdroppers and other information collectors may trivially perform address-based network-activity correlation when the same address is employed for multiple transactions by the same host. Additionally, it reduces the window of exposure of a host as being accessible via an address that becomes revealed as a result of active communication. This document obsoletes RFC 4941.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8981"/>
          <seriesInfo name="DOI" value="10.17487/RFC8981"/>
        </reference>
        <reference anchor="RFC8085" target="https://www.rfc-editor.org/info/rfc8085">
          <front>
            <title>UDP Usage Guidelines</title>
            <author initials="L." surname="Eggert" fullname="L. Eggert">
              <organization/>
            </author>
            <author initials="G." surname="Fairhurst" fullname="G. Fairhurst">
              <organization/>
            </author>
            <author initials="G." surname="Shepherd" fullname="G. Shepherd">
              <organization/>
            </author>
            <date year="2017" month="March"/>
            <abstract>
              <t>The User Datagram Protocol (UDP) provides a minimal message-passing transport that has no inherent congestion control mechanisms.  This document provides guidelines on the use of UDP for the designers of applications, tunnels, and other protocols that use UDP.  Congestion control guidelines are a primary focus, but the document also provides guidance on other topics, including message sizes, reliability, checksums, middlebox traversal, the use of Explicit Congestion Notification (ECN), Differentiated Services Code Points (DSCPs), and ports.</t>
              <t>Because congestion control is critical to the stable operation of the Internet, applications and other protocols that choose to use UDP as an Internet transport must employ mechanisms to prevent congestion collapse and to establish some degree of fairness with concurrent traffic.  They may also need to implement additional mechanisms, depending on how they use UDP.</t>
              <t>Some guidance is also applicable to the design of other protocols (e.g., protocols layered directly on IP or via IP-based tunnels), especially when these protocols do not themselves provide congestion control.</t>
              <t>This document obsoletes RFC 5405 and adds guidelines for multicast UDP usage.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="145"/>
          <seriesInfo name="RFC" value="8085"/>
          <seriesInfo name="DOI" value="10.17487/RFC8085"/>
        </reference>
        <reference anchor="RFC8446" target="https://www.rfc-editor.org/info/rfc8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author initials="E." surname="Rescorla" fullname="E. Rescorla">
              <organization/>
            </author>
            <date year="2018" month="August"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC8303" target="https://www.rfc-editor.org/info/rfc8303">
          <front>
            <title>On the Usage of Transport Features Provided by IETF Transport Protocols</title>
            <author initials="M." surname="Welzl" fullname="M. Welzl">
              <organization/>
            </author>
            <author initials="M." surname="Tuexen" fullname="M. Tuexen">
              <organization/>
            </author>
            <author initials="N." surname="Khademi" fullname="N. Khademi">
              <organization/>
            </author>
            <date year="2018" month="February"/>
            <abstract>
              <t>This document describes how the transport protocols Transmission Control Protocol (TCP), MultiPath TCP (MPTCP), Stream Control Transmission Protocol (SCTP), User Datagram Protocol (UDP), and Lightweight User Datagram Protocol (UDP-Lite) expose services to applications and how an application can configure and use the features that make up these services.  It also discusses the service provided by the Low Extra Delay Background Transport (LEDBAT) congestion control mechanism.  The description results in a set of transport abstractions that can be exported in a transport services (TAPS) API.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8303"/>
          <seriesInfo name="DOI" value="10.17487/RFC8303"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="I-D.ietf-taps-impl" target="https://www.ietf.org/archive/id/draft-ietf-taps-impl-11.txt">
          <front>
            <title>Implementing Interfaces to Transport Services</title>
            <author fullname="Anna Brunstrom">
              <organization>Karlstad University</organization>
            </author>
            <author fullname="Tommy Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Theresa Enghardt">
              <organization>Netflix</organization>
            </author>
            <author fullname="Philipp S. Tiesel">
              <organization>SAP SE</organization>
            </author>
            <author fullname="Michael Welzl">
              <organization>University of Oslo</organization>
            </author>
            <date month="January" day="9" year="2022"/>
            <abstract>
              <t>   The Transport Services system enables applications to use transport
   protocols flexibly for network communication and defines a protocol-
   independent Transport Services Application Programming Interface
   (API) that is based on an asynchronous, event-driven interaction
   pattern.  This document serves as a guide to implementation on how to
   build such a system.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-taps-impl-11"/>
        </reference>
        <reference anchor="RFC7556" target="https://www.rfc-editor.org/info/rfc7556">
          <front>
            <title>Multiple Provisioning Domain Architecture</title>
            <author initials="D." surname="Anipko" fullname="D. Anipko" role="editor">
              <organization/>
            </author>
            <date year="2015" month="June"/>
            <abstract>
              <t>This document is a product of the work of the Multiple Interfaces Architecture Design team.  It outlines a solution framework for some of the issues experienced by nodes that can be attached to multiple networks simultaneously.  The framework defines the concept of a Provisioning Domain (PvD), which is a consistent set of network configuration information.  PvD-aware nodes learn PvD-specific information from the networks they are attached to and/or other sources.  PvDs are used to enable separation and configuration consistency in the presence of multiple concurrent connections.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7556"/>
          <seriesInfo name="DOI" value="10.17487/RFC7556"/>
        </reference>
        <reference anchor="TCP-COUPLING">
          <front>
            <title>ctrlTCP: Reducing Latency through Coupled, Heterogeneous Multi-Flow TCP Congestion Control</title>
            <author initials="S." surname="Islam" fullname="Safiqul Islam">
              <organization/>
            </author>
            <author initials="M." surname="Welzl" fullname="Michael Welzl">
              <organization/>
            </author>
            <author initials="K." surname="Hiorth" fullname="Kristian Hiorth">
              <organization/>
            </author>
            <author initials="D." surname="Hayes" fullname="David Hayes">
              <organization/>
            </author>
            <author initials="G." surname="Armitage" fullname="Grenville Armitage">
              <organization/>
            </author>
            <author initials="S." surname="Gjessing" fullname="Stein Gjessing">
              <organization/>
            </author>
            <date year="2018"/>
          </front>
          <seriesInfo name="IEEE INFOCOM Global Internet Symposium (GI) workshop (GI 2018)" value=""/>
        </reference>
        <reference anchor="RFC8095" target="https://www.rfc-editor.org/info/rfc8095">
          <front>
            <title>Services Provided by IETF Transport Protocols and Congestion Control Mechanisms</title>
            <author initials="G." surname="Fairhurst" fullname="G. Fairhurst" role="editor">
              <organization/>
            </author>
            <author initials="B." surname="Trammell" fullname="B. Trammell" role="editor">
              <organization/>
            </author>
            <author initials="M." surname="Kuehlewind" fullname="M. Kuehlewind" role="editor">
              <organization/>
            </author>
            <date year="2017" month="March"/>
            <abstract>
              <t>This document describes, surveys, and classifies the protocol mechanisms provided by existing IETF protocols, as background for determining a common set of transport services.  It examines the Transmission Control Protocol (TCP), Multipath TCP, the Stream Control Transmission Protocol (SCTP), the User Datagram Protocol (UDP), UDP-Lite, the Datagram Congestion Control Protocol (DCCP), the Internet Control Message Protocol (ICMP), the Real-Time Transport Protocol (RTP), File Delivery over Unidirectional Transport / Asynchronous Layered Coding (FLUTE/ALC) for Reliable Multicast, NACK- Oriented Reliable Multicast (NORM), Transport Layer Security (TLS), Datagram TLS (DTLS), and the Hypertext Transport Protocol (HTTP), when HTTP is used as a pseudotransport.  This survey provides background for the definition of transport services within the TAPS working group.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8095"/>
          <seriesInfo name="DOI" value="10.17487/RFC8095"/>
        </reference>
        <reference anchor="RFC8923" target="https://www.rfc-editor.org/info/rfc8923">
          <front>
            <title>A Minimal Set of Transport Services for End Systems</title>
            <author initials="M." surname="Welzl" fullname="M. Welzl">
              <organization/>
            </author>
            <author initials="S." surname="Gjessing" fullname="S. Gjessing">
              <organization/>
            </author>
            <date year="2020" month="October"/>
            <abstract>
              <t>This document recommends a minimal set of Transport Services offered by end systems and gives guidance on choosing among the available mechanisms and protocols. It is based on the set of transport features in RFC 8303.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8923"/>
          <seriesInfo name="DOI" value="10.17487/RFC8923"/>
        </reference>
        <reference anchor="RFC8922" target="https://www.rfc-editor.org/info/rfc8922">
          <front>
            <title>A Survey of the Interaction between Security Protocols and Transport Services</title>
            <author initials="T." surname="Enghardt" fullname="T. Enghardt">
              <organization/>
            </author>
            <author initials="T." surname="Pauly" fullname="T. Pauly">
              <organization/>
            </author>
            <author initials="C." surname="Perkins" fullname="C. Perkins">
              <organization/>
            </author>
            <author initials="K." surname="Rose" fullname="K. Rose">
              <organization/>
            </author>
            <author initials="C." surname="Wood" fullname="C. Wood">
              <organization/>
            </author>
            <date year="2020" month="October"/>
            <abstract>
              <t>This document provides a survey of commonly used or notable network security protocols, with a focus on how they interact and integrate with applications and transport protocols. Its goal is to supplement efforts to define and catalog Transport Services by describing the interfaces required to add security protocols. This survey is not limited to protocols developed within the scope or context of the IETF, and those included represent a superset of features a Transport Services system may need to support.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8922"/>
          <seriesInfo name="DOI" value="10.17487/RFC8922"/>
        </reference>
        <reference anchor="RFC3376" target="https://www.rfc-editor.org/info/rfc3376">
          <front>
            <title>Internet Group Management Protocol, Version 3</title>
            <author initials="B." surname="Cain" fullname="B. Cain">
              <organization/>
            </author>
            <author initials="S." surname="Deering" fullname="S. Deering">
              <organization/>
            </author>
            <author initials="I." surname="Kouvelas" fullname="I. Kouvelas">
              <organization/>
            </author>
            <author initials="B." surname="Fenner" fullname="B. Fenner">
              <organization/>
            </author>
            <author initials="A." surname="Thyagarajan" fullname="A. Thyagarajan">
              <organization/>
            </author>
            <date year="2002" month="October"/>
          </front>
          <seriesInfo name="RFC" value="3376"/>
          <seriesInfo name="DOI" value="10.17487/RFC3376"/>
        </reference>
        <reference anchor="RFC4604" target="https://www.rfc-editor.org/info/rfc4604">
          <front>
            <title>Using Internet Group Management Protocol Version 3 (IGMPv3) and Multicast Listener Discovery Protocol Version 2 (MLDv2) for Source-Specific Multicast</title>
            <author initials="H." surname="Holbrook" fullname="H. Holbrook">
              <organization/>
            </author>
            <author initials="B." surname="Cain" fullname="B. Cain">
              <organization/>
            </author>
            <author initials="B." surname="Haberman" fullname="B. Haberman">
              <organization/>
            </author>
            <date year="2006" month="August"/>
            <abstract>
              <t>The Internet Group Management Protocol Version 3 (IGMPv3) and the Multicast Listener Discovery Protocol Version 2 (MLDv2) are protocols that allow a host to inform its neighboring routers of its desire to receive IPv4 and IPv6 multicast transmissions, respectively. Source-specific multicast (SSM) is a form of multicast in which a receiver is required to specify both the network-layer address of the source and the multicast destination address in order to receive the multicast transmission.  This document defines the notion of an "SSM-aware" router and host, and clarifies and (in some cases) modifies the behavior of IGMPv3 and MLDv2 on SSM-aware routers and hosts to accommodate source-specific multicast.  This document updates the IGMPv3 and MLDv2 specifications.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4604"/>
          <seriesInfo name="DOI" value="10.17487/RFC4604"/>
        </reference>
        <reference anchor="RFC5280" target="https://www.rfc-editor.org/info/rfc5280">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author initials="D." surname="Cooper" fullname="D. Cooper">
              <organization/>
            </author>
            <author initials="S." surname="Santesson" fullname="S. Santesson">
              <organization/>
            </author>
            <author initials="S." surname="Farrell" fullname="S. Farrell">
              <organization/>
            </author>
            <author initials="S." surname="Boeyen" fullname="S. Boeyen">
              <organization/>
            </author>
            <author initials="R." surname="Housley" fullname="R. Housley">
              <organization/>
            </author>
            <author initials="W." surname="Polk" fullname="W. Polk">
              <organization/>
            </author>
            <date year="2008" month="May"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet.  An overview of this approach and model is provided as an introduction.  The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms.  Standard certificate extensions are described and two Internet-specific extensions are defined.  A set of required certificate extensions is specified.  The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions.  An algorithm for X.509 certification path validation is described.  An ASN.1 module and examples are provided in the appendices.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5280"/>
          <seriesInfo name="DOI" value="10.17487/RFC5280"/>
        </reference>
        <reference anchor="RFC8445" target="https://www.rfc-editor.org/info/rfc8445">
          <front>
            <title>Interactive Connectivity Establishment (ICE): A Protocol for Network Address Translator (NAT) Traversal</title>
            <author initials="A." surname="Keranen" fullname="A. Keranen">
              <organization/>
            </author>
            <author initials="C." surname="Holmberg" fullname="C. Holmberg">
              <organization/>
            </author>
            <author initials="J." surname="Rosenberg" fullname="J. Rosenberg">
              <organization/>
            </author>
            <date year="2018" month="July"/>
            <abstract>
              <t>This document describes a protocol for Network Address Translator (NAT) traversal for UDP-based communication.  This protocol is called Interactive Connectivity Establishment (ICE).  ICE makes use of the Session Traversal Utilities for NAT (STUN) protocol and its extension, Traversal Using Relay NAT (TURN).</t>
              <t>This document obsoletes RFC 5245.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8445"/>
          <seriesInfo name="DOI" value="10.17487/RFC8445"/>
        </reference>
        <reference anchor="RFC8489" target="https://www.rfc-editor.org/info/rfc8489">
          <front>
            <title>Session Traversal Utilities for NAT (STUN)</title>
            <author initials="M." surname="Petit-Huguenin" fullname="M. Petit-Huguenin">
              <organization/>
            </author>
            <author initials="G." surname="Salgueiro" fullname="G. Salgueiro">
              <organization/>
            </author>
            <author initials="J." surname="Rosenberg" fullname="J. Rosenberg">
              <organization/>
            </author>
            <author initials="D." surname="Wing" fullname="D. Wing">
              <organization/>
            </author>
            <author initials="R." surname="Mahy" fullname="R. Mahy">
              <organization/>
            </author>
            <author initials="P." surname="Matthews" fullname="P. Matthews">
              <organization/>
            </author>
            <date year="2020" month="February"/>
            <abstract>
              <t>Session Traversal Utilities for NAT (STUN) is a protocol that serves as a tool for other protocols in dealing with NAT traversal.  It can be used by an endpoint to determine the IP address and port allocated to it by a NAT.  It can also be used to check connectivity between two endpoints and as a keep-alive protocol to maintain NAT bindings. STUN works with many existing NATs and does not require any special behavior from them.</t>
              <t>STUN is not a NAT traversal solution by itself.  Rather, it is a tool to be used in the context of a NAT traversal solution.</t>
              <t>This document obsoletes RFC 5389.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8489"/>
          <seriesInfo name="DOI" value="10.17487/RFC8489"/>
        </reference>
        <reference anchor="RFC8656" target="https://www.rfc-editor.org/info/rfc8656">
          <front>
            <title>Traversal Using Relays around NAT (TURN): Relay Extensions to Session Traversal Utilities for NAT (STUN)</title>
            <author initials="T." surname="Reddy" fullname="T. Reddy" role="editor">
              <organization/>
            </author>
            <author initials="A." surname="Johnston" fullname="A. Johnston" role="editor">
              <organization/>
            </author>
            <author initials="P." surname="Matthews" fullname="P. Matthews">
              <organization/>
            </author>
            <author initials="J." surname="Rosenberg" fullname="J. Rosenberg">
              <organization/>
            </author>
            <date year="2020" month="February"/>
            <abstract>
              <t>If a host is located behind a NAT, it can be impossible for that host to communicate directly with other hosts (peers) in certain situations. In these situations, it is necessary for the host to use the services of an intermediate node that acts as a communication relay. This specification defines a protocol, called "Traversal Using Relays around NAT" (TURN), that allows the host to control the operation of the relay and to exchange packets with its peers using the relay. TURN differs from other relay control protocols in that it allows a client to communicate with multiple peers using a single relay address.</t>
              <t>The TURN protocol was designed to be used as part of the Interactive Connectivity Establishment (ICE) approach to NAT traversal, though it can also be used without ICE.</t>
              <t>This document obsoletes RFCs 5766 and 6156.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8656"/>
          <seriesInfo name="DOI" value="10.17487/RFC8656"/>
        </reference>
        <reference anchor="RFC5245" target="https://www.rfc-editor.org/info/rfc5245">
          <front>
            <title>Interactive Connectivity Establishment (ICE): A Protocol for Network Address Translator (NAT) Traversal for Offer/Answer Protocols</title>
            <author initials="J." surname="Rosenberg" fullname="J. Rosenberg">
              <organization/>
            </author>
            <date year="2010" month="April"/>
            <abstract>
              <t>This document describes a protocol for Network Address Translator (NAT) traversal for UDP-based multimedia sessions established with the offer/answer model.  This protocol is called Interactive Connectivity Establishment (ICE).  ICE makes use of the Session Traversal Utilities for NAT (STUN) protocol and its extension, Traversal Using Relay NAT (TURN).  ICE can be used by any protocol utilizing the offer/answer model, such as the Session Initiation Protocol (SIP).  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5245"/>
          <seriesInfo name="DOI" value="10.17487/RFC5245"/>
        </reference>
        <reference anchor="RFC3261" target="https://www.rfc-editor.org/info/rfc3261">
          <front>
            <title>SIP: Session Initiation Protocol</title>
            <author initials="J." surname="Rosenberg" fullname="J. Rosenberg">
              <organization/>
            </author>
            <author initials="H." surname="Schulzrinne" fullname="H. Schulzrinne">
              <organization/>
            </author>
            <author initials="G." surname="Camarillo" fullname="G. Camarillo">
              <organization/>
            </author>
            <author initials="A." surname="Johnston" fullname="A. Johnston">
              <organization/>
            </author>
            <author initials="J." surname="Peterson" fullname="J. Peterson">
              <organization/>
            </author>
            <author initials="R." surname="Sparks" fullname="R. Sparks">
              <organization/>
            </author>
            <author initials="M." surname="Handley" fullname="M. Handley">
              <organization/>
            </author>
            <author initials="E." surname="Schooler" fullname="E. Schooler">
              <organization/>
            </author>
            <date year="2002" month="June"/>
            <abstract>
              <t>This document describes Session Initiation Protocol (SIP), an application-layer control (signaling) protocol for creating, modifying, and terminating sessions with one or more participants.  These sessions include Internet telephone calls, multimedia distribution, and multimedia conferences.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3261"/>
          <seriesInfo name="DOI" value="10.17487/RFC3261"/>
        </reference>
        <reference anchor="RFC7478" target="https://www.rfc-editor.org/info/rfc7478">
          <front>
            <title>Web Real-Time Communication Use Cases and Requirements</title>
            <author initials="C." surname="Holmberg" fullname="C. Holmberg">
              <organization/>
            </author>
            <author initials="S." surname="Hakansson" fullname="S. Hakansson">
              <organization/>
            </author>
            <author initials="G." surname="Eriksson" fullname="G. Eriksson">
              <organization/>
            </author>
            <date year="2015" month="March"/>
            <abstract>
              <t>This document describes web-based real-time communication use cases. Requirements on the browser functionality are derived from the use cases.</t>
              <t>This document was developed in an initial phase of the work with rather minor updates at later stages.  It has not really served as a tool in deciding features or scope for the WG's efforts so far.  It is being published to record the early conclusions of the WG.  It will not be used as a set of rigid guidelines that specifications and implementations will be held to in the future.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7478"/>
          <seriesInfo name="DOI" value="10.17487/RFC7478"/>
        </reference>
        <reference anchor="RFC8699" target="https://www.rfc-editor.org/info/rfc8699">
          <front>
            <title>Coupled Congestion Control for RTP Media</title>
            <author initials="S." surname="Islam" fullname="S. Islam">
              <organization/>
            </author>
            <author initials="M." surname="Welzl" fullname="M. Welzl">
              <organization/>
            </author>
            <author initials="S." surname="Gjessing" fullname="S. Gjessing">
              <organization/>
            </author>
            <date year="2020" month="January"/>
            <abstract>
              <t>When multiple congestion-controlled Real-time Transport Protocol (RTP) sessions traverse the same network bottleneck, combining their controls can improve the total on-the-wire behavior in terms of delay, loss, and fairness. This document describes such a method for flows that have the same sender, in a way that is as flexible and simple as possible while minimizing the number of changes needed to existing RTP applications. This document also specifies how to apply the method for the Network-Assisted Dynamic Adaptation (NADA) congestion control algorithm and provides suggestions on how to apply it to other congestion control algorithms.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8699"/>
          <seriesInfo name="DOI" value="10.17487/RFC8699"/>
        </reference>
        <reference anchor="RFC8838" target="https://www.rfc-editor.org/info/rfc8838">
          <front>
            <title>Trickle ICE: Incremental Provisioning of Candidates for the Interactive Connectivity Establishment (ICE) Protocol</title>
            <author initials="E." surname="Ivov" fullname="E. Ivov">
              <organization/>
            </author>
            <author initials="J." surname="Uberti" fullname="J. Uberti">
              <organization/>
            </author>
            <author initials="P." surname="Saint-Andre" fullname="P. Saint-Andre">
              <organization/>
            </author>
            <date year="2021" month="January"/>
            <abstract>
              <t>This document describes "Trickle ICE", an extension to the Interactive Connectivity Establishment (ICE) protocol that enables ICE agents to begin connectivity checks while they are still gathering candidates, by incrementally exchanging candidates over time instead of all at once. This method can considerably accelerate the process of establishing a communication session.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8838"/>
          <seriesInfo name="DOI" value="10.17487/RFC8838"/>
        </reference>
        <reference anchor="RFC8260" target="https://www.rfc-editor.org/info/rfc8260">
          <front>
            <title>Stream Schedulers and User Message Interleaving for the Stream Control Transmission Protocol</title>
            <author initials="R." surname="Stewart" fullname="R. Stewart">
              <organization/>
            </author>
            <author initials="M." surname="Tuexen" fullname="M. Tuexen">
              <organization/>
            </author>
            <author initials="S." surname="Loreto" fullname="S. Loreto">
              <organization/>
            </author>
            <author initials="R." surname="Seggelmann" fullname="R. Seggelmann">
              <organization/>
            </author>
            <date year="2017" month="November"/>
            <abstract>
              <t>The Stream Control Transmission Protocol (SCTP) is a message-oriented transport protocol supporting arbitrarily large user messages.  This document adds a new chunk to SCTP for carrying payload data.  This allows a sender to interleave different user messages that would otherwise result in head-of-line blocking at the sender.  The interleaving of user messages is required for WebRTC data channels.</t>
              <t>Whenever an SCTP sender is allowed to send user data, it may choose from multiple outgoing SCTP streams.  Multiple ways for performing this selection, called stream schedulers, are defined in this document.  A stream scheduler can choose to either implement, or not implement, user message interleaving.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8260"/>
          <seriesInfo name="DOI" value="10.17487/RFC8260"/>
        </reference>
        <reference anchor="RFC7657" target="https://www.rfc-editor.org/info/rfc7657">
          <front>
            <title>Differentiated Services (Diffserv) and Real-Time Communication</title>
            <author initials="D." surname="Black" fullname="D. Black" role="editor">
              <organization/>
            </author>
            <author initials="P." surname="Jones" fullname="P. Jones">
              <organization/>
            </author>
            <date year="2015" month="November"/>
            <abstract>
              <t>This memo describes the interaction between Differentiated Services (Diffserv) network quality-of-service (QoS) functionality and real- time network communication, including communication based on the Real-time Transport Protocol (RTP).  Diffserv is based on network nodes applying different forwarding treatments to packets whose IP headers are marked with different Diffserv Codepoints (DSCPs). WebRTC applications, as well as some conferencing applications, have begun using the Session Description Protocol (SDP) bundle negotiation mechanism to send multiple traffic streams with different QoS requirements using the same network 5-tuple.  The results of using multiple DSCPs to obtain different QoS treatments within a single network 5-tuple have transport protocol interactions, particularly with congestion control functionality (e.g., reordering).  In addition, DSCP markings may be changed or removed between the traffic source and destination.  This memo covers the implications of these Diffserv aspects for real-time network communication, including WebRTC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7657"/>
          <seriesInfo name="DOI" value="10.17487/RFC7657"/>
        </reference>
        <reference anchor="RFC2474" target="https://www.rfc-editor.org/info/rfc2474">
          <front>
            <title>Definition of the Differentiated Services Field (DS Field) in the IPv4 and IPv6 Headers</title>
            <author initials="K." surname="Nichols" fullname="K. Nichols">
              <organization/>
            </author>
            <author initials="S." surname="Blake" fullname="S. Blake">
              <organization/>
            </author>
            <author initials="F." surname="Baker" fullname="F. Baker">
              <organization/>
            </author>
            <author initials="D." surname="Black" fullname="D. Black">
              <organization/>
            </author>
            <date year="1998" month="December"/>
            <abstract>
              <t>This document defines the IP header field, called the DS (for differentiated services) field.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2474"/>
          <seriesInfo name="DOI" value="10.17487/RFC2474"/>
        </reference>
        <reference anchor="RFC8622" target="https://www.rfc-editor.org/info/rfc8622">
          <front>
            <title>A Lower-Effort Per-Hop Behavior (LE PHB) for Differentiated Services</title>
            <author initials="R." surname="Bless" fullname="R. Bless">
              <organization/>
            </author>
            <date year="2019" month="June"/>
            <abstract>
              <t>This document specifies properties and characteristics of a Lower- Effort Per-Hop Behavior (LE PHB).  The primary objective of this LE PHB is to protect Best-Effort (BE) traffic (packets forwarded with the default PHB) from LE traffic in congestion situations, i.e., when resources become scarce, BE traffic has precedence over LE traffic and may preempt it.  Alternatively, packets forwarded by the LE PHB can be associated with a scavenger service class, i.e., they scavenge otherwise-unused resources only.  There are numerous uses for this PHB, e.g., for background traffic of low precedence, such as bulk data transfers with low priority in time, non-time-critical backups, larger software updates, web search engines while gathering information from web servers and so on.  This document recommends a standard Differentiated Services Code Point (DSCP) value for the LE PHB.</t>
              <t>This specification obsoletes RFC 3662 and updates the DSCP recommended in RFCs 4594 and 8325 to use the DSCP assigned in this specification.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8622"/>
          <seriesInfo name="DOI" value="10.17487/RFC8622"/>
        </reference>
        <reference anchor="RFC2597" target="https://www.rfc-editor.org/info/rfc2597">
          <front>
            <title>Assured Forwarding PHB Group</title>
            <author initials="J." surname="Heinanen" fullname="J. Heinanen">
              <organization/>
            </author>
            <author initials="F." surname="Baker" fullname="F. Baker">
              <organization/>
            </author>
            <author initials="W." surname="Weiss" fullname="W. Weiss">
              <organization/>
            </author>
            <author initials="J." surname="Wroclawski" fullname="J. Wroclawski">
              <organization/>
            </author>
            <date year="1999" month="June"/>
            <abstract>
              <t>This document defines a general use Differentiated Services (DS) Per-Hop-Behavior (PHB) Group called Assured Forwarding (AF). [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2597"/>
          <seriesInfo name="DOI" value="10.17487/RFC2597"/>
        </reference>
        <reference anchor="RFC3246" target="https://www.rfc-editor.org/info/rfc3246">
          <front>
            <title>An Expedited Forwarding PHB (Per-Hop Behavior)</title>
            <author initials="B." surname="Davie" fullname="B. Davie">
              <organization/>
            </author>
            <author initials="A." surname="Charny" fullname="A. Charny">
              <organization/>
            </author>
            <author initials="J.C.R." surname="Bennet" fullname="J.C.R. Bennet">
              <organization/>
            </author>
            <author initials="K." surname="Benson" fullname="K. Benson">
              <organization/>
            </author>
            <author initials="J.Y." surname="Le Boudec" fullname="J.Y. Le Boudec">
              <organization/>
            </author>
            <author initials="W." surname="Courtney" fullname="W. Courtney">
              <organization/>
            </author>
            <author initials="S." surname="Davari" fullname="S. Davari">
              <organization/>
            </author>
            <author initials="V." surname="Firoiu" fullname="V. Firoiu">
              <organization/>
            </author>
            <author initials="D." surname="Stiliadis" fullname="D. Stiliadis">
              <organization/>
            </author>
            <date year="2002" month="March"/>
            <abstract>
              <t>This document defines a PHB (per-hop behavior) called Expedited Forwarding (EF).  The PHB is a basic building block in the Differentiated Services architecture.  EF is intended to provide a building block for low delay, low jitter and low loss services by ensuring that the EF aggregate is served at a certain configured rate. This document obsoletes RFC 2598.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3246"/>
          <seriesInfo name="DOI" value="10.17487/RFC3246"/>
        </reference>
        <reference anchor="RFC5865" target="https://www.rfc-editor.org/info/rfc5865">
          <front>
            <title>A Differentiated Services Code Point (DSCP) for Capacity-Admitted Traffic</title>
            <author initials="F." surname="Baker" fullname="F. Baker">
              <organization/>
            </author>
            <author initials="J." surname="Polk" fullname="J. Polk">
              <organization/>
            </author>
            <author initials="M." surname="Dolly" fullname="M. Dolly">
              <organization/>
            </author>
            <date year="2010" month="May"/>
            <abstract>
              <t>This document requests one Differentiated Services Code Point (DSCP) from the Internet Assigned Numbers Authority (IANA) for a class of real-time traffic.  This traffic class conforms to the Expedited Forwarding Per-Hop Behavior.  This traffic is also admitted by the network using a Call Admission Control (CAC) procedure involving authentication, authorization, and capacity admission.  This differs from a real-time traffic class that conforms to the Expedited Forwarding Per-Hop Behavior but is not subject to capacity admission or subject to very coarse capacity admission.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5865"/>
          <seriesInfo name="DOI" value="10.17487/RFC5865"/>
        </reference>
        <reference anchor="RFC4594" target="https://www.rfc-editor.org/info/rfc4594">
          <front>
            <title>Configuration Guidelines for DiffServ Service Classes</title>
            <author initials="J." surname="Babiarz" fullname="J. Babiarz">
              <organization/>
            </author>
            <author initials="K." surname="Chan" fullname="K. Chan">
              <organization/>
            </author>
            <author initials="F." surname="Baker" fullname="F. Baker">
              <organization/>
            </author>
            <date year="2006" month="August"/>
            <abstract>
              <t>This document describes service classes configured with Diffserv and recommends how they can be used and how to construct them using Differentiated Services Code Points (DSCPs), traffic conditioners, Per-Hop Behaviors (PHBs), and Active Queue Management (AQM) mechanisms.  There is no intrinsic requirement that particular DSCPs, traffic conditioners, PHBs, and AQM be used for a certain service class, but as a policy and for interoperability it is useful to apply them consistently.  This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4594"/>
          <seriesInfo name="DOI" value="10.17487/RFC4594"/>
        </reference>
        <reference anchor="RFC8899" target="https://www.rfc-editor.org/info/rfc8899">
          <front>
            <title>Packetization Layer Path MTU Discovery for Datagram Transports</title>
            <author initials="G." surname="Fairhurst" fullname="G. Fairhurst">
              <organization/>
            </author>
            <author initials="T." surname="Jones" fullname="T. Jones">
              <organization/>
            </author>
            <author initials="M." surname="Tüxen" fullname="M. Tüxen">
              <organization/>
            </author>
            <author initials="I." surname="Rüngeler" fullname="I. Rüngeler">
              <organization/>
            </author>
            <author initials="T." surname="Völker" fullname="T. Völker">
              <organization/>
            </author>
            <date year="2020" month="September"/>
            <abstract>
              <t>This document specifies Datagram Packetization Layer Path MTU Discovery (DPLPMTUD). This is a robust method for Path MTU Discovery (PMTUD) for datagram Packetization Layers (PLs). It allows a PL, or a datagram application that uses a PL, to discover whether a network path can support the current size of datagram.  This can be used to detect and reduce the message size when a sender encounters a packet black hole. It can also probe a network path to discover whether the maximum packet size can be increased.  This provides functionality for datagram transports that is equivalent to the PLPMTUD specification for TCP, specified in RFC 4821, which it updates. It also updates the UDP Usage Guidelines to refer to this method for use with UDP datagrams and updates SCTP.</t>
              <t>The document provides implementation notes for incorporating Datagram PMTUD into IETF datagram transports or applications that use datagram transports.</t>
              <t>This specification updates RFC 4960, RFC 4821, RFC 6951, RFC 8085, and RFC 8261.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8899"/>
          <seriesInfo name="DOI" value="10.17487/RFC8899"/>
        </reference>
        <reference anchor="RFC5482" target="https://www.rfc-editor.org/info/rfc5482">
          <front>
            <title>TCP User Timeout Option</title>
            <author initials="L." surname="Eggert" fullname="L. Eggert">
              <organization/>
            </author>
            <author initials="F." surname="Gont" fullname="F. Gont">
              <organization/>
            </author>
            <date year="2009" month="March"/>
            <abstract>
              <t>The TCP user timeout controls how long transmitted data may remain unacknowledged before a connection is forcefully closed.  It is a local, per-connection parameter.  This document specifies a new TCP option -- the TCP User Timeout Option -- that allows one end of a TCP connection to advertise its current user timeout value.  This information provides advice to the other end of the TCP connection to adapt its user timeout accordingly.  Increasing the user timeouts on both ends of a TCP connection allows it to survive extended periods without end-to-end connectivity.  Decreasing the user timeouts allows busy servers to explicitly notify their clients that they will maintain the connection state only for a short time without connectivity.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5482"/>
          <seriesInfo name="DOI" value="10.17487/RFC5482"/>
        </reference>
        <reference anchor="RFC8229" target="https://www.rfc-editor.org/info/rfc8229">
          <front>
            <title>TCP Encapsulation of IKE and IPsec Packets</title>
            <author initials="T." surname="Pauly" fullname="T. Pauly">
              <organization/>
            </author>
            <author initials="S." surname="Touati" fullname="S. Touati">
              <organization/>
            </author>
            <author initials="R." surname="Mantha" fullname="R. Mantha">
              <organization/>
            </author>
            <date year="2017" month="August"/>
            <abstract>
              <t>This document describes a method to transport Internet Key Exchange Protocol (IKE) and IPsec packets over a TCP connection for traversing network middleboxes that may block IKE negotiation over UDP.  This method, referred to as "TCP encapsulation", involves sending both IKE packets for Security Association establishment and Encapsulating Security Payload (ESP) packets over a TCP connection.  This method is intended to be used as a fallback option when IKE cannot be negotiated over UDP.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8229"/>
          <seriesInfo name="DOI" value="10.17487/RFC8229"/>
        </reference>
        <reference anchor="I-D.ietf-httpbis-priority" target="https://www.ietf.org/archive/id/draft-ietf-httpbis-priority-12.txt">
          <front>
            <title>Extensible Prioritization Scheme for HTTP</title>
            <author fullname="Kazuho Oku">
              <organization>Fastly</organization>
            </author>
            <author fullname="Lucas Pardue">
              <organization>Cloudflare</organization>
            </author>
            <date month="January" day="17" year="2022"/>
            <abstract>
              <t>   This document describes a scheme that allows an HTTP client to
   communicate its preferences for how the upstream server prioritizes
   responses to its requests, and also allows a server to hint to a
   downstream intermediary how its responses should be prioritized when
   they are forwarded.  This document defines the Priority header field
   for communicating the initial priority in an HTTP version-independent
   manner, as well as HTTP/2 and HTTP/3 frames for reprioritizing
   responses.  These share a common format structure that is designed to
   provide future extensibility.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-priority-12"/>
        </reference>
        <reference anchor="RFC8293" target="https://www.rfc-editor.org/info/rfc8293">
          <front>
            <title>A Framework for Multicast in Network Virtualization over Layer 3</title>
            <author initials="A." surname="Ghanwani" fullname="A. Ghanwani">
              <organization/>
            </author>
            <author initials="L." surname="Dunbar" fullname="L. Dunbar">
              <organization/>
            </author>
            <author initials="M." surname="McBride" fullname="M. McBride">
              <organization/>
            </author>
            <author initials="V." surname="Bannai" fullname="V. Bannai">
              <organization/>
            </author>
            <author initials="R." surname="Krishnan" fullname="R. Krishnan">
              <organization/>
            </author>
            <date year="2018" month="January"/>
            <abstract>
              <t>This document provides a framework for supporting multicast traffic in a network that uses Network Virtualization over Layer 3 (NVO3). Both infrastructure multicast and application-specific multicast are discussed.  It describes the various mechanisms that can be used for delivering such traffic as well as the data plane and control plane considerations for each of the mechanisms.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8293"/>
          <seriesInfo name="DOI" value="10.17487/RFC8293"/>
        </reference>
        <reference anchor="RFC8546" target="https://www.rfc-editor.org/info/rfc8546">
          <front>
            <title>The Wire Image of a Network Protocol</title>
            <author initials="B." surname="Trammell" fullname="B. Trammell">
              <organization/>
            </author>
            <author initials="M." surname="Kuehlewind" fullname="M. Kuehlewind">
              <organization/>
            </author>
            <date year="2019" month="April"/>
            <abstract>
              <t>This document defines the wire image, an abstraction of the information available to an on-path non-participant in a networking protocol.  This abstraction is intended to shed light on the implications that increased encryption has for network functions that use the wire image.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8546"/>
          <seriesInfo name="DOI" value="10.17487/RFC8546"/>
        </reference>
      </references>
    </references>
    <section anchor="implmapping" numbered="true" toc="default">
      <name>Implementation Mapping</name>
      <t>The way the concepts from this abstract API map into concrete APIs in a
given language on a given platform largely depends on the features and norms of
the language and the platform. Actions could be implemented as functions or
method calls, for instance, and Events could be implemented via event queues,
handler functions or classes, communicating sequential processes, or other
asynchronous calling conventions.</t>
      <section anchor="types" numbered="true" toc="default">
        <name>Types</name>
        <t>The basic types mentioned in <xref target="notation" format="default"/> typically have natural
correspondences in practical programming languages, perhaps constrained by
implementation-specific limitations. For example:</t>
        <ul spacing="normal">
          <li>An Integer can typically be represented in C by an <tt>int</tt> or <tt>long</tt>, subject
to the underlying platform's ranges for each.</li>
          <li>In C, a Tuple may be represented as a <tt>struct</tt> with one member for each of
the value types in the ordered grouping. In Python, by contrast, a Tuple may
be represented natively as a <tt>tuple</tt>, a sequence of dynamically-typed
elements.</li>
          <li>A Collection may be represented as a <tt>std::set</tt> in C++ or as a <tt>set</tt> in
Python. In C, it may be represented as an array or as a higher-level data
structure with appropriate accessors defined.</li>
        </ul>
        <t>The objects described in <xref target="notation" format="default"/> can similarly be represented in
different ways depending on which programming language is used. Objects
like Preconnections, Connections, and Listeners can be long-lived, and
benefit from using object-oriented constructs. Note that in C, these
objects may need to provide a way to release or free their underlying
memory when the application is done using them. For example, since a
Preconnection can be used to initiate multiple Connections, it is the
responsibility of the application to clean up the Preconnection memory
if necessary.</t>
      </section>
      <section anchor="events-and-errors" numbered="true" toc="default">
        <name>Events and Errors</name>
        <t>This specification treats Events and Errors similarly. Errors, just as any
other Events, may occur asynchronously in network applications. However,
implementations of this API may report Errors synchronously,
according to the error handling idioms of the implementation
platform, where they can be immediately detected, such as by generating an
exception when attempting to initiate a connection with inconsistent
Transport Properties. An error can provide an optional reason to the
application with further details about why the error occurred.</t>
      </section>
      <section anchor="time-duration" numbered="true" toc="default">
        <name>Time Duration</name>
        <t>Time duration types are implementation-specific.
For instance, it could be a number of seconds, number of milliseconds, or a <tt>struct timeval</tt> in C or a user-defined <tt>Duration</tt> class in C++.</t>
      </section>
    </section>
    <section anchor="convenience-functions" numbered="true" toc="default">
      <name>Convenience Functions</name>
      <section anchor="preference-conv" numbered="true" toc="default">
        <name>Adding Preference Properties</name>
        <t>As Selection Properties of type <tt>Preference</tt> will be set on a TransportProperties 
object quite frequently, implementations can provide special actions 
for adding each preference level i.e, <tt>TransportProperties.Set(some_property, avoid)</tt> 
is equivalent to <tt>TransportProperties.Avoid(some_property)</tt>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
TransportProperties.Require(property)
TransportProperties.Prefer(property)
TransportProperties.Ignore(property)
TransportProperties.Avoid(property)
TransportProperties.Prohibit(property)
]]></artwork>
      </section>
      <section anchor="property-profiles" numbered="true" toc="default">
        <name>Transport Property Profiles</name>
        <t>To ease the use of the Transport Services API specified by this document, implementations
can provide a mechanism to create Transport Property objects (see <xref target="selection-props" format="default"/>) 
that are pre-configured with frequently used sets of properties; the following are 
in common use in current applications:</t>
        <section anchor="reliable-inorder-stream" numbered="true" toc="default">
          <name>reliable-inorder-stream</name>
          <t>This profile provides reliable, in-order transport service with
congestion control.
TCP is an example of a protocol that provides this service.
It should consist of the following properties:</t>
          <table anchor="tabrio" align="center">
            <name>reliable-inorder-stream preferences</name>
            <thead>
              <tr>
                <th align="left">Property</th>
                <th align="left">Value</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">reliability</td>
                <td align="left">require</td>
              </tr>
              <tr>
                <td align="left">preserveOrder</td>
                <td align="left">require</td>
              </tr>
              <tr>
                <td align="left">congestionControl</td>
                <td align="left">require</td>
              </tr>
              <tr>
                <td align="left">preserveMsgBoundaries</td>
                <td align="left">ignore</td>
              </tr>
            </tbody>
          </table>
        </section>
        <section anchor="reliable-message" numbered="true" toc="default">
          <name>reliable-message</name>
          <t>This profile provides message-preserving, reliable, in-order
transport service with congestion control.
SCTP is an example of a protocol that provides this service.
It should consist of the following properties:</t>
          <table anchor="tabrm" align="center">
            <name>reliable-message preferences</name>
            <thead>
              <tr>
                <th align="left">Property</th>
                <th align="left">Value</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">reliability</td>
                <td align="left">require</td>
              </tr>
              <tr>
                <td align="left">preserveOrder</td>
                <td align="left">require</td>
              </tr>
              <tr>
                <td align="left">congestionControl</td>
                <td align="left">require</td>
              </tr>
              <tr>
                <td align="left">preserveMsgBoundaries</td>
                <td align="left">require</td>
              </tr>
            </tbody>
          </table>
        </section>
        <section anchor="unreliable-datagram" numbered="true" toc="default">
          <name>unreliable-datagram</name>
          <t>This profile provides a datagram transport service without any
reliability guarantee.
An example of a protocol that provides this service is UDP.
It consists of the following properties:</t>
          <table anchor="tabud" align="center">
            <name>unreliable-datagram preferences</name>
            <thead>
              <tr>
                <th align="left">Property</th>
                <th align="left">Value</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">reliability</td>
                <td align="left">avoid</td>
              </tr>
              <tr>
                <td align="left">preserveOrder</td>
                <td align="left">avoid</td>
              </tr>
              <tr>
                <td align="left">congestionControl</td>
                <td align="left">ignore</td>
              </tr>
              <tr>
                <td align="left">preserveMsgBoundaries</td>
                <td align="left">require</td>
              </tr>
              <tr>
                <td align="left">safely replayable</td>
                <td align="left">true</td>
              </tr>
            </tbody>
          </table>
          <t>Applications that choose this Transport Property Profile would
avoid the additional latency that could be introduced
by retransmission or reordering in a transport protocol.</t>
          <t>Applications that choose this Transport Property Profile to reduce latency
should also consider setting an appropriate Capacity Profile Property,
see <xref target="prop-cap-profile" format="default"/> and might benefit from controlling checksum
coverage, see <xref target="prop-checksum-control-send" format="default"/> and <xref target="prop-checksum-control-receive" format="default"/>.</t>
        </section>
      </section>
    </section>
    <section anchor="relationship-to-the-minimal-set-of-transport-services-for-end-systems" numbered="true" toc="default">
      <name>Relationship to the Minimal Set of Transport Services for End Systems</name>
      <t><xref target="RFC8923" format="default"/> identifies a minimal set of transport services that end systems should offer. These services make all non-security-related transport features of TCP, MPTCP, UDP, UDP-Lite, SCTP and LEDBAT available that 1) require interaction with the application, and 2) do not get in the way of a possible implementation over TCP (or, with limitations, UDP). The following text explains how this minimal set is reflected in the present API. For brevity, it is based on the list in Section 4.1 of <xref target="RFC8923" format="default"/>, updated according to the discussion in Section 5 of <xref target="RFC8923" format="default"/>. The present API covers all elements of this section.
This list is a subset of the transport features in Appendix A of <xref target="RFC8923" format="default"/>, which refers to the primitives in "pass 2" (Section 4) of <xref target="RFC8303" format="default"/> for further details on the implementation with TCP, MPTCP, UDP, UDP-Lite, SCTP and LEDBAT.</t>
      <ul spacing="normal">
        <li>Connect:
<tt>Initiate</tt> Action (<xref target="initiate" format="default"/>).</li>
        <li>Listen:
<tt>Listen</tt> Action (<xref target="listen" format="default"/>).</li>
        <li>Specify number of attempts and/or timeout for the first establishment message:
<tt>timeout</tt> parameter of <tt>Initiate</tt> (<xref target="initiate" format="default"/>) or <tt>InitiateWithSend</tt> Action (<xref target="initiate-and-send" format="default"/>).</li>
        <li>Disable MPTCP:
<tt>multipath</tt> Property (<xref target="multipath-mode" format="default"/>).</li>
        <li>Hand over a message to reliably transfer (possibly multiple times) before connection establishment:
<tt>InitiateWithSend</tt> Action (<xref target="initiate-and-send" format="default"/>).</li>
        <li>Change timeout for aborting connection (using retransmit limit or time value):
<tt>connTimeout</tt> property, using a time value (<xref target="conn-timeout" format="default"/>).</li>
        <li>Timeout event when data could not be delivered for too long:
<tt>ConnectionError</tt> Event (<xref target="termination" format="default"/>).</li>
        <li>Suggest timeout to the peer:
See "TCP-specific Properties: User Timeout Option (UTO)" (<xref target="tcp-uto" format="default"/>).</li>
        <li>Notification of ICMP error message arrival:
<tt>softErrorNotify</tt> (<xref target="prop-soft-error" format="default"/>) and <tt>SoftError</tt> Event (<xref target="soft-errors" format="default"/>).</li>
        <li>Choose a scheduler to operate between streams of an association:
<tt>connScheduler</tt> property (<xref target="conn-scheduler" format="default"/>).</li>
        <li>Configure priority or weight for a scheduler:
<tt>connPriority</tt> property (<xref target="conn-priority" format="default"/>).</li>
        <li>"Specify checksum coverage used by the sender" and "Disable checksum when sending":
<tt>msgChecksumLen</tt> property (<xref target="msg-checksum" format="default"/>) and <tt>fullChecksumSend</tt> property (<xref target="prop-checksum-control-send" format="default"/>).</li>
        <li>"Specify minimum checksum coverage required by receiver" and "Disable checksum requirement when receiving":
<tt>recvChecksumLen</tt> property (<xref target="conn-recv-checksum" format="default"/>) and <tt>fullChecksumRecv</tt> property (<xref target="prop-checksum-control-receive" format="default"/>).</li>
        <li>"Specify DF field":
<tt>noFragmentation</tt> property (<xref target="send-singular" format="default"/>).</li>
        <li>Get max. transport-message size that may be sent using a non-fragmented IP packet from the configured interface:
<tt>singularTransmissionMsgMaxLen</tt> property (<xref target="conn-max-msg-notfrag" format="default"/>).</li>
        <li>Get max. transport-message size that may be received from the configured interface:
<tt>recvMsgMaxLen</tt> property (<xref target="conn-max-msg-recv" format="default"/>).</li>
        <li>Obtain ECN field:
This is a read-only Message Property of the MessageContext object (see "UDP(-Lite)-specific Property: ECN" <xref target="receive-ecn" format="default"/>).</li>
        <li>"Specify DSCP field", "Disable Nagle algorithm", "Enable and configure a <tt>Low Extra Delay Background Transfer</tt>":
as suggested in Section 5.5 of <xref target="RFC8923" format="default"/>, these transport features are collectively offered via the <tt>connCapacityProfile</tt> property (<xref target="prop-cap-profile" format="default"/>). Per-Message control ("Request not to bundle messages") is offered via the <tt>msgCapacityProfile</tt> property (<xref target="send-profile" format="default"/>).</li>
        <li>Close after reliably delivering all remaining data, causing an event informing the application on the other side:
this is offered by the <tt>Close</tt> Action with slightly changed semantics in line with the discussion in Section 5.2 of <xref target="RFC8923" format="default"/> (<xref target="termination" format="default"/>).</li>
        <li>"Abort without delivering remaining data, causing an event informing the application on the other side" and "Abort without delivering remaining data, not causing an event informing the application on the other side":
this is offered by the <tt>Abort</tt> action without promising that this is signaled to the other side. If it is, a <tt>ConnectionError</tt> Event will be invoked at the peer (<xref target="termination" format="default"/>).</li>
        <li>"Reliably transfer data, with congestion control", "Reliably transfer a message, with congestion control" and "Unreliably transfer a message":
data is transferred via the <tt>Send</tt> action (<xref target="sending" format="default"/>). Reliability is controlled via the <tt>reliability</tt> (<xref target="prop-reliable" format="default"/>) property and the <tt>msgReliable</tt> Message Property (<xref target="msg-reliable-message" format="default"/>). Transmitting data as a message or without delimiters is controlled via Message Framers (<xref target="framing" format="default"/>). The choice of congestion control is provided via the <tt>congestionControl</tt> property (<xref target="prop-cc" format="default"/>).</li>
        <li>Configurable Message Reliability:
the <tt>msgLifetime</tt> Message Property implements a time-based way to configure message reliability (<xref target="msg-lifetime" format="default"/>).</li>
        <li>"Ordered message delivery (potentially slower than unordered)" and "Unordered message delivery (potentially faster than ordered)":
these two transport features are controlled via the Message Property <tt>msgOrdered</tt> (<xref target="msg-ordered" format="default"/>).</li>
        <li>Request not to delay the acknowledgement (SACK) of a message:
should the protocol support it, this is one of the transport features the Transport Services system can apply when an application uses the <tt>connCapacityProfile</tt> Property (<xref target="prop-cap-profile" format="default"/>) or the <tt>msgCapacityProfile</tt> Message Property (<xref target="send-profile" format="default"/>) with value <tt>Low Latency/Interactive</tt>.</li>
        <li>Receive data (with no message delimiting):
<tt>Receive</tt> Action (<xref target="receiving" format="default"/>) and <tt>Received</tt> Event (<xref target="receive-complete" format="default"/>).</li>
        <li>Receive a message:
<tt>Receive</tt> Action (<xref target="receiving" format="default"/>) and <tt>Received</tt> Event (<xref target="receive-complete" format="default"/>), using Message Framers (<xref target="framing" format="default"/>).</li>
        <li>Information about partial message arrival:
<tt>Receive</tt> Action (<xref target="receiving" format="default"/>) and <tt>ReceivedPartial</tt> Event (<xref target="receive-partial" format="default"/>).</li>
        <li>Notification of send failures:
<tt>Expired</tt> Event (<xref target="expired" format="default"/>) and <tt>SendError</tt> Event (<xref target="send-error" format="default"/>).</li>
        <li>Notification that the stack has no more user data to send:
applications can obtain this information via the <tt>Sent</tt> Event (<xref target="sent" format="default"/>).</li>
        <li>Notification to a receiver that a partial message delivery has been aborted:
<tt>ReceiveError</tt> Event (<xref target="receive-error" format="default"/>).</li>
        <li>Notification of Excessive Retransmissions (early warning below abortion threshold):
 <tt>SoftError</tt> Event (<xref target="soft-errors" format="default"/>).</li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
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
ELc7FtfIsLAdFD4spTBNEqtvfCdMfOkNU0Nuze1+Kku6EXZx1kX5jFmSYMbH
y9PF4aJEQ1xPwlc3u0dN57IcPrrMILaYQKJQlDEyYebWyBvgkyiD/fTVyRcY
h4Bz+NcfXh5pZD/yfY63czXjGZl+kEtqyOOAdcOCInIeujutDdZqiaFCqXuR
SpKJ7/dOzstyh4qt9NYl1CSV90jHGVZnQW6iNd5TTL4ieUM0xJdSLoduEGIM
tPhl3iaF6oYiM/J4kE7nYWKeg4K2ZaBkrJC393AnZGCnkW3FY2Bdku+czLiC
Vh9ZTCToU0AxmnWlYMM08kePHo68Mhpw+RlvY549ged0anAY/1gAqWCucdj5
LXsdeHVnz9vep96fUPdbX4m3aDu9DTSgWcSWAWwDrPVQpLAf4cLFbdcKGAxp
qzV6Jl5+3wq0akyGDB4SjFSfZ2n9zVHCaFluHH5iuTGoG0i4v34Kn2/1uoXB
8XazevR3ndWgAfCzxp4ofEpPiV8x87QVnOKDlrpfBODJ5ryBd5JRH7bpvRmi
inrSBI1YjQXxLFPsWDLygxxH20QyM6U/X+ClTwnBPlnfyl3BoPfSFxJoKIb/
rJ+Xu/HoxIkwZqqiSghAhKLtbVW+RZMtn3ldDpVgheYPhvt01qzJoFIV4irx
giNdoxY4mwg8WKxa7C4jEPIIcPxmOjKO6F9JL7eEYfJ82BhClOF+vDugKd08
iQpVw/FJvW5ghV4n6i4sDOnlpBkgzc3Ss/Nrz4k55Q8ePpw8+BJP+r3bnSk+
7DTysc+yCVMQE1Xr84hJcMy3I1v/pnN5MLmP/+92M/nNGeUDWZ23VaH3rty4
oSgNLRKHotDKtJq92TNdsY+PLDfifx8o/IsOfiAZXWRvbCEPuzV9osCgj9H7
EEFWsN2mHzKpYyorBlkwY8P21Bc/s5ngaduxhSWguYEStaKKZn5V/PBo8zxJ
3Yoo+m/fgtK3fERXxJcPv3x4Q9s9evrfB7705pC/fxQoc39x/9HAoH4Et4Fp
hlX5ngtd+DMRoTeIPTuxYA70MQzz7N+TXxoLMbbjocEH2/HWL4F29ufURg+n
p/oXc+/0qN1wwpgGt3KGLZz7c3nDzq/MiHe33uMOEUk9+I1gyrNtg7jVx780
InjoHN3iM+IpSDgetccfnpvOzQl5XI4ihrIV1XTrVz2oPS/cWV63BbYrDTLf
Gvd/WS84NTrgK8zpU7Vkhjv8d60zSTSKExV0A++Z1CHRxduSdE5wCIMyPNf3
0y5T3Cnqg4spGnDwsEi2pS04MoMV/zivRgLdfGKVxvt7LKTjqOKSKW9uNtd2
S9m34l7VqSCCkk4D/+0bz9vITj6IRtUUboY0uyRNzFaKK2ZBGWuLKOn7RKE5
EcNX0XppFZ0pL0lO2KGqJhTaV2nJVkFcG3EFrsiVIM40NX/aOK6pd2qYUKwm
KoHa79oFUzqmMZkM2a5k+YxKIoZMZc784CixK4qmpEovGBmmSUHeoNqLFPbK
oxyKIglMZjux08qcZL5ngMehap57KPvilh5vLctpX3dRUU5bYsfUBR0sChpH
ufjtcVICp1Kws9g1cUOpUiwDioiD0Ri5MT66+nZbXLAP4fXpDyON2BUCgAV8
dnJ0jFBUPux2zWDJU4ryLbopy+Js4NPQBdunxBgErhZ87CfsQoYPCLSDgmht
/rieXSXAZYGwcGW79IgMmUtd7xQLaXeRgqOwfvoYz9koe/b90fHIR6W9O9zf
CR4wEDQUsABaU//GUZlMiwHAqf/o+Muyv1kEgb9lzzkd8df+9zdqemz+i/74
Nf9x0yq8U2eyQMwUPG/5ghEGQ9qfTc0bZXM4Axy/dF22hRm1LAj/on/ctlWC
uSpmScO+acZWkKbf1OZK+7VrzegN2e5Rh2rJtxu5XxCGiLhxrXe1n6z339zH
g+wu3D9jXIMxXWbAJ8tuUfzznQG/qKHSV/TuHQnITlLGKRS8qFqE+WYYRIIk
1ETk1HSHDmRrnYyEDjFT+ttPaY71SV4TBWuyKKPpd7Ib+Bnvkvfqxmg+8Y2j
QsjIySSY5V5hpcELj01BEYpDDAJhsUKYTKiqZu5elXeoXb6MFFdBc+BFCkCt
xyI1pGAEpE4/P3r7+vXzN8+ePxNY4Pd0jfq0WrP2MiNH6AlZVNU0mZqw/aEZ
TqKI1Ah2IgiKVJIN2OsCwbFoyxmvh0JC4wQiTJOqklLdHDtDmaiBADllJ6Sm
47adb9RfmVrHOW+MqksOtGLcn1lbCryCkyI4lJLlMeP4PClQnXUPx+n1dRW/
SvV9qXQdyQ1qM7MZGmKUx4OdolB5kZDmacQmjsgODnyBSdzx/QD8S5JSwdeu
JBeFL5OZ43pTPW7Epr7ImxmXsp2HeruGAkRw8yn4yAS4IrghTos8xicgJfFR
HEZDaQLMVIivkCdDTJuqmwheWe6YpK0QRNKfnx5KLKroIZ6ar41rfSwYhewM
+TCJnBdhXDl9/DuLeEw2TGI5XLMDcQMvgCLY8UIEOAUWQ+XTKbF6tcirGDI1
LlmdYh2rliT2M9aA+ljDo5tCZyWoSeszXA5ARzqFy103FHUcv07Q04ILtxVd
NsD1uilCydJbJVf/G7JR1h4NhZQaYunyepyDxS+Kxf5zrZ0SOWHB/qyQ1yVI
qkPNs4KNtSnYt5APQSLQuEn28+lYvkDwFSXeyUORlftNTLZOkIrahcueGtLQ
C+i2nAmSMGELjXpgNpg46y+KoPQwVEvJ7FKKwTO8ATaAfiQ5Y0PXw4H3Aupp
QDn7SsL1QqTey6Bn3TCwIOYTuVLM4g66MWpfnG/PVgIJPyiYIeMhgltxoWh3
7L0kZDL4B+JOSvT4kA1GCg8PQ0enGMUagmYTrGm8o/4YSszKYyRWQTOLar1f
FB1jrA+OSvJ+zjfCfEz0XlgMx8Vnkjj6801iRuHKQQksd91wlXHoxYNVLh1D
dSLj6kDzInUN+5guSE1+KlRBZjQbuwlzGwI8sDVSNV9yCzukurvDhiekAQHA
k9g2BC5Sl9J5saivJ9lrRmawHzmpHctR+fD1kOWGY3JxlwVnRSHKedGsu8vF
1cafIpIXO8QZvAMdZ4LNqfTCWrTWVtusJHtLng543/E6/LauF0VOMHRoGDrr
mnVxBscnN5gjA9GPzkP8knQiVqizOQhPt/mcwrUQjtg2McmCkCjjmNUFy0zY
ombral1AP4TLmqBxkihAEBLPYD0v4FU6W5y3epZd52yxLGiTSdA01zAj5Z2x
InDGEuG014oY0HgGwdIxYgwWHwwRPjzS3j3izKYs0MaKsQXMzGXxKHcoiFF2
UKSS0AQC8OPQFDHriYGC/Dx7mTsii/antrDTcDdOg6TlMJcsngvFeSZ63244
tOW6DRneIPsxBGIktAydW6Z9hSVns0nA/PSjpfNr8thzFzMvm5NuAZgCnhNv
TtvrSzOfSfYRoCuChPVWsPPNMJAyi9IKuVAN189w2p1oWYZjsXjJfU3JMFCa
C4ZlDJuXTBkxzqttA2tm7We3QESW9WIYQgQvZ+T7SG2hq1XWQYyOBuwhbtAj
nyFsNCUssZjj14APH7AtkU/NDYq2CxQ0aQRmG7zORTuoPmSZs6DjXRKLQdT6
dn1xweyBCUY3V/EDEgV6uqBEJ+cRLvF60OlNSf2l4JstTu+9cCz3Bed0rEW+
MdOA4hUPpO43iWUgXAB7xx+DscW5Zzwr/FnsH4K86ck/BE7B+sik49CqCuin
1RB8k9keFLaOE8FbAqZnjgy3EKkkpS/Qipl/WxJdsPxH5zBhe71igvyR88Jk
bailTteGEgPw9xkHajniN0gq5aIVaQVxTjmj9TKJxSIVksoVUr7yORGgZHzc
XENe9yKELpjd0OCG1+1F+OLGfWGr4i/dFoLGxHZvsUM6vlYdlFmYRsh5EbXs
uGjGOv93gcx0AaRE/GIzRJYwBViDd59BnLddhF4pe5atUI7Fyc/XC4uf5tmJ
Mwcli6yEwttUezNV5dMIviECoUP7Vo0TsjRqrBigDHr173dSr1EuvAUhkMGI
raxs5UlP6kACp80ZRqgRLwpTWi6H5dA2oCjSKjYHJlsW2b3xu9NTuCxa9HZl
cY6JpDmf5HPEgHtXAKPf0KFX4pNVvdd0nVlR9Ly86zogs78XbXH10kX5noNn
1wQgG6ARKbd6yC0KHIiAYw3LiV21tOQUXErX+3kh1IneS+FxjQdC0WIFKPpI
w4gBkFZJcb0aTjBXHSplZCswHVeA8jvtvZ4I5tiq7Spkl0zrVVl4vFrlG0Qw
kiUjlhUZbsLc9ycZpd4Ri/74EaO+Wtrpxm80KaY+DrXtQDFfRjF7QGgvKIJU
KGEZ3jMEYX5FWeYmouCftxOFV1T6JMH8NqyczRlFak5YhwxeDa6CLH+OgJw4
WMUqYDSWAH/qhhBkRCNTGHBZuO/WQEtHl8X0fbvGpUOYkwuyJJ9IWpKs3FTe
GYtcP8Z4J7OGwD4X2g5++us5VS8whK4tRXTu1Ep5gbCPVgJgo4gKEbQUy7Lr
1IRbtlEU6DOD32rHwUIhCwtOgJlEWfPxG1TDQBcGHsviaT0qIFh9GBLIty/4
O5+mvG3J5eRtWXX4/up/lVX3POK3XXLN9gclpSqX66X2s2MX8ADgwl0N7EVf
1/VLPzWL3NNX/463sLk4LtMIw3NCmu/r18jVQWi19o5y3hNcY/XcWfV8UEvk
UBPbiMJiMza34HQMDIkEoCmQxozyNeiW/vjxv7377ujB1/cfaUY9OQbLZrqG
e/8cuNl7ghlwwx8+uffkEZadIn8Y2q0omiXAQk6yQ7wlKr8AVruhNEr2EEzr
5XlZqZ1meOirHiq1OIIc5YXT7XnH6xea4j64M3eMeUkd0esKtxcv7NqJhu1t
NImqMWxMkYUnTTyymCcvu7Lq0ZdPja2KC07ukdZowcm2Liq2HJE/FsUK8ziv
UJh6D3+M6Q9zOvDHQ/zt76at7DwUyIVdGBiIFNP3aJy++Ux4N5zc2KERp42g
os5KYaulvvzIMHGI8aPlQLC7jcOGumR33vtldAF+IwyNa+YFsx9dLwE41Sew
q8UCVq6sub6L9hcsYaGvscxjku0ZQSrMc4yCG6jPgSNuT7dSzhiyqgIJ+N8C
CRyxl02GtRcoYmSrlexH9PGc0FP3yPTk3Vmp37zahO72U1oKhfZSABl2DdLn
veDBEK7n0D8D7OSibkRyNaF8pJ9I0d0z4fBnI7TtckAI/1vsvHXjxL5q93mZ
czECi9LvVxx0H9+sFPVaINDXkmrZ9lzwHBXJop8JOSBw2DkI7GTQosGSk5zg
MqUCM2amAWtE5XZrpj2ldBMnydlHzcrEcMBJfI8Tfne3RvkW5dPK7emWF7N9
M2EDHyfF2gyVqGdDfUmFswZUD6uACiNcVOQSIocOl2Orq8jgHYMZoA3XmXWv
Zom3vR9SIaVhOPBIbKZXcIbSL6l8ZFKgiLOFqQFfrCgJQCEf/rI+L8k2zYh4
HFkritLZj+X4u/KMvSJH4rg/Szt3ftxPWdrPJZh4VrTvu3pFBcvWHXp94hZ/
RKHKPccu4VD02g0hB8bu2bfEp3D6qKXSsLw3NFivZV05XtabrGs+wT0QUegZ
6+kgVUstNbzN+xUhvC4Uj8wp9jLGfmJeWLTUHOukSyS/kWlWJsQFhshsvnXt
ibA4fY0DqEY4lGmRyla8kmhswftfCnCsNMxOQzJiQhsgsYA4W4vTT+oDYVkF
9IUV1xpaDCL7ZVUv6gvkaGk9dvZzdPmHuqqXm6HOiH4ojmV7yaQBoveEjnwk
blFWVVyWnQAA5RxqVX/YqK5hkPoNh9YIaEqyYNl3XekfPhx8OhXAunT9vUFa
19zpt6EP4WcyzghQG/3JQ7HXeQf8GkTBAMC/MlgudG+JMcbHjoXIigT7x/JR
XKS0inYUHMRYGxJRhnbVKYX0aPT2xCJAeoe2wEBKEDjVdArIkkNAQj4jIXSM
RdBab9rsr8g2+QGXxBg3r2b/GJkBY+M9vBZX6/bXkIyU+QDT6N5wHvl+ctW5
7QKHKhRJaOf5xuShSIqEkITbHtTfE0uO//QsEkjcLQSSzAskAx1p8XpnYjXb
ghGJffxaEuAndxOFlAV8F3R7DeB4m1SECYEMkAa2cxdukisyK1c4WKjPlCiy
nRKF+0yJItslUbjdEoWO2xeSthIiTSwNSxyUKqLIX67aNF036MSAeVU1eUxp
DLjUs7whDWKZdwpFH61gD8cdmXxY3yASaHVNgvjkeCQBFgYhQfaZDTekSPUE
33ZkHsfzdqkYTIEMcXqOc0fmaDR6bc3xey2S3Na+nihLEwOL6XoiGueVBUBE
8RBpFVHBByqnIcjcmmhzpMgBESXxFKhGwQYR3AILSg8TcH+qoYvxW7jexy+P
fZfEklUa0QNHUgsOWBXGBpbpKsdUGmwY2TCh4ks0+0B3fPMpKrO4V+nWJHtd
zfWKEWDPmetGD6/GxEtVM0bf4/LE8a6p5/u8qfOZOMvdAJEQSXrOQP62HsPg
kx1u6xD+rCUTMVRwZa0a6Fg6LZZwHjCmnoEYJPE13E2whv4desW/cYOdg0P9
8UxpbnMrMA8KKxjV+tAsgbkvL22f3l7FVWyV3v0XQpJd5yedAPKNKFOPHTmC
GntHMF3vmOw6scZ9/eQ+svGwhOENwoX1qVMqu2CgKRVWKKv3Mf5kGwRXifPI
WmZSHoBkYGQFWqygwTvhLZGWkFTRKX9KHJCUDpR4p/kVyJl00shIyBaXELcf
3TRwajnInM5rhNXyTsE8TJx311+GkZw+xds03jZBjcZvMd/a8OyB1ZzRcENF
KvxigsnGdTUbbd9N4c6arwg6PCPMzbFiK20qC9nB9sfBbqEY+NBgpl7yxKUV
vt6ul2z/9yGymrCJyx5yTqhMFxMql+kUrIwFVb2ophvrySNmEdQNgZTBX8fL
elakrjsyjvhTaWTF6Fiy28FH4Q5hkDb1+uLSg3iIqUQP7Sg7lppkjGopR/s2
zuEZCdmRVouMn8w4VOllhkya0xWdd+QSOiF6UyQ1x3sNOXfHVKRjT3pB/VDx
AYYpTj4Q1mGnjiXfygsCJtfmjMyGl/nFBWZa4HOYxnU56wg1V8QZDoqgdCJj
RjZyIuumE3ccFx/Gc3kAmyM7grtzGsM++uqBeDKSeRCIkglmtWFdhc/xCLkl
Cti4HlgUlEWnaAjfOgYQLZgazIlPBnRjz8hdELtSCGhbXwHi8Yae0jAo8TGg
SiDlfUHWA1rjYz4077g6UADc8jj1Z2dn4dBxY/CTSetrAyqueQfUTA5qxuj/
QvK7cThYwchisoZDFqzkPLKuxtKLrcdH81jHNqyO81qFhchFo0KF5nRv2PDL
63loAM0OPUvzp1YUvnzRYXc6C06I6bq+rxJavsOEc2cUvCrKXK0j5QBLGvJK
8K0R6CPCZVdiuMIjJaBYAVqSVybUKAzYYpj6o6FreL3y3ckco7tMD098Vg5n
V3hQWy5YCuT2y1aJiKmg+VCgbmTTGGLoHK4dl1kZCuvGyxWF1iBoTZwti94P
uLyjPOWOQLbBfFZY4shbmCLRSDP5zUXlo5yoBtfgMeTsNdMVRynTrlO+gC0D
i0xM5Pv0CFZUQRFEmgW5EX10ukpLfnQGCNXns+YrVifng+dbAZjLXc2eYto5
9ixPKPjKZ/DCcX99/NPR4fHht6+e49lnGVqDtzAaFus/tJdc8hMv71vS08e7
SkHhIs/103YsD8ONLkkF0W3+HRLaLe5eMwAjnfHiwACZdKwuGhQJPyRfWSrm
YhLpFiebTfwiBNiMIEJZPkDF3SxLNDUaIr+uZwsWVdvcHXyDk+FgmNn3bYw7
OZaXSMtfy20mDt3yI+OXby03VX7RJ9HgG9hudKZ0n59sZPpPt2Gie+nFRRLl
JzSGXhX7T3HSkuIuZ+In2OB8KhRk6PsnstMERHM6Ac/IjCRGHEz1WleaYe5J
fabv3Cyzflv6l/PF54chWuNCFwscjIjDpx1O8RdRnQSUOidZNiy1RWMaEGUo
5UJFGdNF0r5zP1S2JXr1ts1hA6EgbRLhoGJjMmODyEEB9UNjkBduGkY8k18w
EME41FEwls46HktEPWKGclH+RwC6QdWOI1POt7dha0q4nZ2hZZdZgK1GR/wt
i0DQ3Y7uxNSmSbmatfCmji2dL49eH4OyOAchiSBSNU40b5A1+YgsfGNMb5hL
A38kYFVq9B8dKo4+aYJ18bkCFc9mYCI+KV45HVW0yTgCJVh9jT9eEhlErsL8
tVEIqwvdiIkzAPu07kRXpVUpPSwe5pKagAQVBo2AIVvbF3lJyOO9HDlKggGV
xQ5E9KUAqHReaG17FM4RBiGBHsBW0DDg1iAEmlOF6Zwh8utLchlIfAppDWQj
RB+zGH3wgBEuAC4VeorR3cQ8e4zpx2MOf05jVvmNd/DCt/T8VnGrgYYKKQXK
Cb1TCqgYS6mA+CQo5qkYZDhNjz+QQaBxZFVUaXqVpHFZtqfR0twRF/GRTtkm
AVecFk/HJvdHlIHtC7gQnbbXVKwnOgfu9vfJDPcUSDuU29AZjsfiX3FoAk+n
RjYjU8QKxA44PPjHYiPg7czZcMTwAbmtZDJpM75ykNvWyDUnByfTJGc17aGc
WitB2KrXHvvFlt19523U8eEw/gkQr8lAP8d6iCt4la9gH50ddI2R81hNYhRz
xRxz3sgelrgOjJS+Jd/RykXStYGhpVGcHJ0ea/C45Og6c3hMrDSTGoj23F1T
q9ft//m/RRgiqGos6I1M+uPL8bNJWXTzcZev2jGKk3pqLZCgwiRmASeRcSaA
l5wT+B2iCvZryAse1kDleZWJT1+dZNNyBTNq13D+4XfBYtMipFIv5wolwffF
hoHCRk6cmCZJv0WnkASYvEVSZhY721T5kn+3b0s6xfY4qpP+mMUVqVOmZEZ0
puDnSLoGb6RsEJmDrKUsFJdzsoU7rt67pUqK8XMPJeiPOFJl24Aca86UXG9m
yGn0Kj9rGr1GDt6wybVUfTOYhg6IkzjnwK5mGuaRbistFtcORSNSHKE7yY6I
p2rshiOQBekknyd5v6ybiWiLnIDiin1+RICMt7X9MESZS389+frBAwxJXqIY
Z4sD62SM6Zv9bd7RPzThqAgOjlALGeo1wbccBfjw3luQBLi3PLOV/cqNdq6u
zOgj0zmF+Iu4Zmoksc7bEHyGUtoK6/qwd73xNYhxiZjztgKF0sdDFSSU/gMF
QvFks3WY5OfjAi4M7sd9UpXcVztPe3uAPj92RUl9SfM0YHMq3mh9RQbG37XO
tzicpDTJ9lCaIleR7Y9WJ8oUVkbVKm4mw9G0Xc3RR7Bdzeyay5/JQoBmukZr
wd73J69buC39hhrmQXqJlG9Dz1AhOcam3Otkf9ueEHiLzhBIefNS/r2/7WWY
G/DlssGXj3m+fyzo0+M1MKAp/BFKBXtdJV+gf767XJp98J7ha3JAm11uQilI
c2vuOmITRs2kKCCl35EaX3zfatpBrsAshAlqgDFoeIZlYYJSeeDiayZoZMwS
xR2N92JHWHS+fz2GZq7s/cmmUeRTO7BueML8d5Od++k/H9OARtkdWLDVgy8f
N/fvbN1XMyf4ALjuT4fPT366/+DJTy+OXv908v0hfL/9az/bsR8xtFJMZ23+
k+/8JyBdbkWrUcP7J0D1MFEgG2TmWPDEEwg5IxcE6TVu+TWgPrJuYW4Qug6N
Ewix8sb1fIxuqkn2nGEatn6IoURtW08Jq9+UCw2nnUxlm5Vc+D7wBRgCeZIo
rg3N2JGb0wePEMCIREwMcY2dGxjGPSZBhf5P6U+mL8TNKbFTmCrGCVfAEPEq
DAvYrStkJvY1tBpP6ayrIEHk6tgMSi4cTujeMbxl/mFMrc3G0jjQ/P3H20kr
enesHWOp2LpCveTh43v3ZFqRuIpbgCs9IOpKKhI+9dygrDTwwNzdcJ4dRj0D
dxdvJUMB+pJQopVbcI3dt/meVg7NyQQeDLiReq9NwUnaH4DcE8cVVr8jIW9Q
JKAzYGt4+pckJmkmDogRBwjSbzX1C6pn22H07cu5WaDWfLFbh/DuV6lNQ6HZ
s5kbWJl83dXLIDEnHUbDCYWnOczb7raGGvV7YBcFO0gJosiMKSaAeQiz20rC
Ioao72ZQHNn+2Vs7ne2izDtFhPGWnSGZuEwj6P0N5d1CHEohjmW8mwbQ3bhe
NIUtXijOCGF4UWww8kTv3hjDPVf5pGmTCxXn1XttzAhlM2BsctYL4nLEF3EE
UuWUjVQYNaOiDytSoEShwBNUppEzNI7qF8XnCe4RYT/dpFPJPcrZWW3nLqn+
BGOdsxXGB+J5QWmSuaBknoNu+F6dNxfsXZ6nZtoEaotV9RnufHWxFrSES9W3
mYE+Z/1cdLUU3pLYktX7QE4QjZ40LhONGrzzU/IMUXxpRCtGsRwSC22ALlqd
3t+8rEHAgdvlFLcyAxYabLXa+EH2UhqUeK3kcvtdy4TgRVNuhdBvCIQAtYow
Zm94FMBWWN510Qs+TWzrdEqoXYqH/z8nX977OpuidkvDLVy/qC/qbF8+eHKP
yJ/BDGF8ShNyvvXPvY8uy0JlEyFsxULzoV3u07Zbjxr/k1k+33Jnu/W3uQre
GDEDJ7+6KLav96DmwhgcWgydVQ1830kQxRotf53HtzVYXowkNSyhHOlobrdO
fvDbF0Yn2mt5b5r+oqUoAneKQ+nQWBRR8Cfn2JAbJ3rakuakFllIILqTfFbI
eRRYNInLReNd73Ezx/HZIbX4Kec8WVgPUzbCTZvNqgN2k68uCTxYlsWf9Dw4
msgihbTfeeiOmB0hgbN+06/fTZmOPnsjO+bgr6pXaMKpsmOT8+MZ+2q2aFsY
mTghU+T7kL586sROa99SG62+g3JKW6LrNa8KjIPlKMSiGXf1GP9XPnYsM5u6
34e+FgPO+VD2n+xy9ph3gwCLbIbkcJ3s7aqoDvz4sQa3/POThoKxZbPkrT70
almCgRanIferQa0oNhIUEyYrts3jpwwbBNsbU7MP4ppkyTBUGZ6KcausXOxs
oPs913Di5OvYY7gdKU+jH5E7+9Xh2YtNx4x1e60ZSSn+F1N+V37qUzz0jHGR
i5rFh+scoQDkAJ+LD8rMZqKnGzkjPtNO+YKg4OCGzw/HNtSr9YLNUwlqr5Sl
EfygdOd0dECNWs9r0S9c6N0liNo8H7A9RLK0kVkD/HPuUOEmt13c9n4EscxK
sLISF8Lb5iz2yzm3KRGnQ0dU7q82Jl6GgBUpzXyjcJiOg65H5K7meE5fnChG
ciYE/jdvT7X49iYruKgEm7KdZTPfG/jRpBlh103BMX18lUGHOjanuXQRxFY0
fA6QWnhFxzDDiAVipZzg66ZKGYwJ68IXnp2PF/mmiCOH+Wj7+GFxzHkLqhCW
C8bCU0OnWFDGeK7Oi4syePo8mJikCxmzuRjg5U3ML2S41/RU7O0/NYE3GmxA
OegwtrMeataZjy1DzcVdSyZHikohkL4GcVguCULATDChqOSpQYSydepxLULB
ZhGdbVvCr0z3PFFDpH6f+yyKKrvls83vvwmciH7grhhjv02aJKq3c8vT/bcZ
8ziiDvPsER24IqP0+WI7tXGmg/3Cxbc0eua1HJ0uiOy2943jfhNH4RoBzC7l
vgyTQ85gBSU7Jb6edcaToYWLhAAKJfg9JpPX1b/IYh5WA+/okkqCHUmrXUhj
3iYXeQXe6oUSHHCO8N+LeckwNwk4Fl+kHBBQS1mdkenRJN15GQjjnBIxKFsW
ha9EZl0wmGeN6aWYf+mIRU2pkldS+ldaTW6R9mlYAKlo5S8MF2YHQgJGBMxI
NLpmI/YOlqPM0e6noMmlt5gsh60FMlCwkmw8VOs08X73la4yJKqjIE1arw9Z
MNvCx9aJZoKRGpLeL9JmUnxMLkY8eMgzqBSeT9tlRs+0h57GbcB4XCKA3dds
7xR9nh3bGoojq+dRgAhuTSADWH4i6HM+GWNokyNG2GDi0z9YgmTZFuRHluw+
+ej+LeIjSjcq/tmjSQuZEs/IsdtSU6gobRhlPTIu7JL+kkG4XyD+6dRk7By6
p5KDL9cZVT64RaFQ4huJAMcPt4hvwUY660sJTowZO7QxFe+SetNGuhMZy/Vk
rCyWsRI2bkrDHaY7R/EERmq0HtWR5IUzg2G/l6UECuSis0jRcqd9BWr7Poj8
5t/3YOYiBrlfK735DjniaFBkm5VAWBS7MOdCfokEJ4UTVH7zLcY0NDnp6pUS
zCuvNqlpCBG0upIAMLOLRX3OMdJYpyhrL9cd5sxdVyPGhdD3sEWXexFGXMAB
hiRdzISohyvThp+MhNF/LxY3hk1mfbHD7bgDaPtgGn58ezFPGWMuNJoRXXTl
sv9if+RvmsAfFe3TU40PNNQwBNe7XuI+CWPIdoK3Dl8NiEXSB7JjmVlrDPTz
JAUADa3LcuWWqSSsK+xohdnvSoYtlIM0pRo9dHUl+LIUqGYhR+39JuUxHJlk
ezRZdGj28n2/wnivPVvtRCDchI35UDlMphpTdBg9rtbLc6Szua+W3HN5qUEn
hE46yepGsSZHH57IcMOD2teKlb5miST+5XKHoMQgWI6KXUbbzJL9rOElhyGi
cIJV7VtxqDK6TLqh6FbSobqezB4fA2b1ki7Txr4jdDE0YgAXdtb5agYNmsDh
7CN2L+YT+GJAsQ8pWTnDAmRfCNMCm5UtQcvNZXmBLVFHk+xbXxNcQA/8aF9W
c7yTikiNw1lQhS+pZIp+n86FWZLiyt9looZZA6vlMb+t1H0cC9mDQVnzYfW7
J3mHhFdKI24yK8Buk4sDqxiWkClmxl+O+6Mw9PT7G7+V8TgjUMds7gY5Nszt
fCOZkwP7g7fIChi/7ob+MKRQRrcKxQnIu74rkSnF+In/G2/ugcUL+Hg35CF/
IhybYEO19tPtyNEDlkA3YGEVeS6W4ex7OvfBOs/rVoXqqGkSLUisoLhD7DrZ
YoM1pLkU6YVjXgkSlcvJeOgp70YdM416Y+J22yS8kfFZDRmkKZhY9AWV2YZe
08jseojAnZnaXAFU+vZhHxG4fWVGYrUhjmQN7YQPvhE3rckzG2yfRueGFn44
miU26/A9KNgL3vITz5gMQ6nOY13EFKfuyhDtn1BUbrOmSb30twhs/LmCn8Cd
oSCwxOuwGMcQvlUwQ3HEOyZ8XfoYVA1EoeDPl6ptXYVbjrLNYsfJ3suj5/vi
dXzy6BGnMIiIEIJPGBOvDVhuVPcEJB00PL05PB3Fs5YcIE9wIgakaxvVy8ba
ZTBxus8xihVtUPgRtO7OSzIhhmhbjSkCHRF1TWj1hw6XT0uNwUfZ3snpD2/C
1J58TYC+znwiYfOLnMIgScihD09/eBc+fExIUBkWp5SMxJbt+ClroD0Wrs73
9bL8QJF1MKOFWmBUtKHC8h8QZzVk5mV8KqmFQDt1NXz5GV+a0wUTV5uulzDJ
P/+FhhrupD//hWnaj72nDftRWJukDgzp12t4yDHohk53l5FkUnOBgB5rISIx
ZU0x89nmvW5fLwKhpBgHl5w19RLGK0Xbwmxtm0erHWnlRo6d8ME/wRfST39n
zBubruoNiNFqt7JSfJuFRZQCqo2pY+REj4iKcDP2Han9muWYFm9/KioDA32i
McYxUJa5mC+BW4gNTMaKSBwKwyiRAvVizeaCIzrwHJuOTCp/T4AbwWMaAtLx
FvUGMFFwuf5VBPsjrKmNtyxh8pGEYGwopa8X21JGPKwxHFSRo6dRlc1482vr
PxN7tkMLeM/aEmULEhuQQ+SZEcaM2ZoW4Yj0+h1J5eLWr6yojVqfb7tUIUZS
WgEuPMiZKwubkDOyBSIl4rYTrDng5z6IBNm5Kz4I8Kbopicvj+WFhw8e32eU
8x+L83enR/LzV4++ekIs71QH4ic9clqbkUsfh6FhH1WxiGJPdl2/p+G47BCg
fHVRk8hSV0NmoUF58HA248b3Uo4X8bW+GKSl0PwFRlAuKhTuEItuIRTCAjVl
YW0Wfre5OllvUUUkpZKBWp22twAYPIAxjWuCFAWVaLRVFtzhXmWaMwL3Mzgt
v/+GNYeDbGCR2X8VvT5ocBpuMjE3xdq6NTSp5JzadzgAa8CmZJKORT+2XWFL
OyxXaRHKARuSaR7NHknjib3K1h3aJh6zvfKzTEzDa6oGJvcrDUzc2gRjq8ga
u8xnxVBhZFYkI0JLrLrZrKZE3AGLLSGGJdcxQgP9FiYE90tNCEGHRYnxNjaE
Lb611FYQlJX+y1nf2Tba5mlzfVEw9rQNEVhkaXA3WBrMEnhTwxCPvZU9iCwI
hp6pWhAaCyQ5L/KXyUN1gUnMQojVOlrgBb4j4MeEW9C7e3OkgkYjfY6EuXI7
qa9WSnoOFDeSE0jDuK4tvR4wE8+pCptlqSKoSldYNCzEqMwIfkcPOyYtFtbG
yjdk34IZpSoXlTSlEivDNcThA6SnD5wlPd295ag2clraInb7zHBhejEtKrKk
CzZJC1wNrCllj6Bwa5fNFmj+gF4mKvYanpaYuLM5iwrnrORXhD52cglHw494
BEYpwmaiO3V2kBF/U+hcnvmW4dCexnEmqa2fJ+Zig7H3Z10ODWnjSxLR0rZJ
TPFUhufOTiU+ba5FHWO+ySsiNaJNyYzhYQ/sBis9duSOsKW8vCeCpPp1bpxK
SgGDZOJeYcGU8I1N/x3eeLoOVxi45ITTJeeEmNzUEjbm8GN2Rhlp8Xkm1ZvM
vIrMDffaX0WfRCPflz6CbOvsaRn7S+BUUDDERtJxsk9swacqfeRz1/IaUYTZ
YbocykOBkfMp96hKodTfd8QjMdkMxM8i1GBXF7E7Yy56ZqIj5U61DFkqBJUm
CdBWBF5ozKFjjBZTf5QH0E9369U15Z2HmRPX6THOgc0nyQqVsoG3qaB3UGi2
jyolXrolmb3Dkw3lolNvM6Y0ZkD6PQXRVQTwhAwBkcxJ00esetMoZqJgpNPL
zvtrvNZPFRQKGJ7cKYa4MHo45PBtoTFl9PRnMTPf7+0zoflMDvNx0BVEW8OD
ar51lrAvhJrZ6LT1Vh4aQT+tTpxkvZlRJwoMaKUYhJ0o2YYsYifvvo93sa3j
EdB8nkipMn0gRojPTzChDE5k+XbAaSyRiX/F6BB+KtUeWTvPFyyUi2GWzM7j
UNExlPRSoGpvjB3A5Qj2iqQdDzCJua75IiBrgVIwX1dTPtKSLO7TdfSwvPT1
wJFH3nyJY3a42s8/0EJeECrLCMtxeJScVqEekBl5wEHiYiWhFgVz88idk8kL
eV1AbIPHaBtCCYds21XBYN2RFS5h+oJYoqBwoB5CS+NrAjkgNZsWy8d9UCwS
7dpgZcpRxvXBWVZIdyV2zQgqko5Daxw55qninzR4jWTZtmFt9OYNiY9S33aq
pRCmKLltkV0oSb1EuyLGiOMV4reGy9nYuUzjA57LySaZERdSau55W7h4UZhX
WUP8jsrvLqI9EeDKn7XK77Yaox8/nh4dj4/e/nD86uWbF58+eTv9119zxQY2
2rZcoJxtffYujAgi5w0igXgwMjc8TlQalM6H5YQhqYhjDFmCvPFAOYNyi8zI
+3nyljPEsGBnEHgPhD0t0CzMPigfTqr1LTSdOsuXdZKaNDiEEWkSveHirjiJ
QtAJe2ASiWnwG4lWs6uiGW6JDiuKIA5RkHqtoQVaRqztSoI8T2BAOaFyjOw4
HFRHmBA16vIEU73XGBcRMGNFcG71EWLGcGVfLLDC4xuXFQEHAd3NJQRfs3Zm
Hj8Q9W5ifMaNmKzyx7tw6XhQTdSAT/shUJmvR1V8wGuuxAITHg8yywmEQx57
z1wqv1dUyHmrtTVUAd4wUErAAxN/dUANVNhjFzsoMZUnO8PIZbYU/f6bM04X
HaWpjayqIZYlS8xUKZP310l9QM0e1P5Ud+I6bwKRTy6iS83MGABTNusVMtPr
JBkK5u34ipa4Z+9xZfNVXIFKEKoLDg/uZbzju9yM882Q4EtZQyhZ21JWJQVt
W1Q2EaNwbrhLZBEmEJjI2KNYX6dNOX0PYwrG/idPHj4h/keMKRi+98/Ujxi7
DFHosYkkQ+vQumTNeizyZgt7Qmes7rMM5NGRkuNKOcYMfIaURd5GrBwUTWrp
Eb+GBm62Tdo3tzhJF7aGp+mbm9V6CTGZM6myCKCK3iDuix7giS/ktNiwNf6M
WENx0950lFAVh1IiAI/G09l9S6fe36Oozy3b5FkWLjZvTG9NvdZI0phYcOfB
EoHrYfwR5D4KrzXaA4ntLP4mXWCWEy9v6/rylV/fgx4PNPiiodwPb75rgYeh
jlaLOE6flfMQsY+hF4v+OrJlWpMBrMGVu6BpD+wwUCmZeml3sWYhL3/4zSgg
8XF0HMCOb4uL16B/1F+QwpnHqr67m71GDt/PNy6xqhcFbMAPcL084zD0fgg6
WSLJgp/gCFiu4/MRvBcOP/vPddEEVP7Qv7MmHGq/3VTTy6au0JxsnduathtQ
QcnbTdcVqsJqjjOrj4YJBA7NGDk0zrUw8m4vxiCGIYva93ihSXwVEiQmeKep
I5reO9wzT8q94AKQoyBsY4GKZrZQFIcevyBiO/E1skS3FSaWu8GSkVKDix/1
m1SsbxnM8CZJevJcU034ohZ/GspHra+WkLnMrJGvfrS1KZuWRsuelgfzNofr
nCpNY8UchPP2tdokscJPaF4QgJPmNDKcmDuta+AK00uup03O2k2KCsq7tH3o
FLkMFw+luFMpMikAQ/48KkvLyDyO1twCwIhik2wNFi0h3KxQ/9uUxhUgPUOW
DMjJcUANhfOpcPPu+dHb16+fv3n2nOtghT1Ilt5jB9jaJixhiCo9K+eEFmvl
TBbwbLPbtjZk+hAmZ1QmUhqLOyeMFRXNRDxJC31TuLjwk82WQ1VrZUdDwVza
ccsHXtxg7N58NqaxCyfDLjkzx/VZok9cXcRnIM52rquIRfq6fAEY4KTovAaY
bxGgzDt7oWaJjdc3xo2+o2L7at3G4u8E46itjQl7uwWfuoRxkDHgKUE2a3R7
wNkkFTyEjw9gosAO7NjpXp6nmVZiRvRLB8/29iUAP3rHNPuCAMt4gfcdCACD
b32ft3vnXMXhp7r5KVTh+Ml/ywEpk8mEt+dZahLCi2U9gNPDK6F35jAjpv0Q
eBtzUs2VCRT031PId7rKFPhH4bUCifig0QOXRRAlo/AXWq2PFlRtg24h/DcF
Cv93tGN5Sbnvdg5oHtVM4PgP09fEq42vwggsoH/ZAzMiJ6n4K7yPvV9xBdo5
i0oYHFkc6zNFIz9bD8Lmn1GFvnlwf0Bzkm6Oxc2/K+HdMxoKCRASWVnaklQM
YSmV6tEgM8ePiPxvu2QK8j+8arxoMDDP0gVr+h++aLhZt18xjXPhBTIJ4bxC
Y0lxJXx3pOMFAXJDcxihgxw6iv6fMm7XgGTjAZXhLcS3yzHGcTEfT4lyoT2z
V7gncZiQuR9uOAMHIPJs4bJ7Q4LSvsqsGfL8db5I7TnXdG+KwCklWNHYz5Fm
I4lgkb2DVtI7LeWnAcahHogURomtTwpSnZdqFp0F/Pgzb20rPnCCJBpCmB2q
nQ93ik0fZCASSoflUnz7UAFyxWWGPA68TNnvJY0tjqC1S5EIsSZQFlghmkMX
C14eEVmGJnmrFaNW4jW7JcEcRNrMFKMEm0qVXGgWlU1UIjQ3WoKVIj/Bqda5
oYSwJsSIsQ54/KdntpMRNrsscjT8Lwl4YbBZImCp5C2pcfBdFFeQZ6eHxyfq
T/DlmoKKF9Uhod1AMS4dEI7H1EwWyDN2XTK4na/LHEu7tg0N3RYAQVk23Ie7
dwd0F7vDH+/2zqBzuz+JdRS2OEgdKDuIiPo0qKQR2B9bJjlxiaI7H+Wf4c7F
735jSTGSx7UMU4TLaUqodgy8HtcKC/yGN4C1V1suwzNTUaa0aoUUDZ1lr8uq
XK6XMIWmWa90YJ2M8QgvRIa1bgQGBJvlnRgDzVyNyVPdrpemiAX+fiQ/vypM
TaGXXISZKn9/t6a15PbPonoWvWc+0sDW3a60OVKdAn4TbuxSZhVyW883nYSw
+3vLKQYDnQgDOE5B4IpCp/MDEj009UC86dfjksISYZVARXYwno+MDAFTXUsN
ZTFbzRdkEqjHVMMhAXPC9q1m6MbkxPmwXyZMtOKT0TH71VhxWhGZa1zC5FA1
b0kNhZfvEVCwMsEQzLqCo1F0AR1TqBuzX/0aZXOMqVMaG/CZKeV4n1YgGvxd
X+tTzB7OrMKynzCY/Yha7t+7J+Vzji15ZPYLLf8dbEVqxtSR8DrFoU6uKRb8
OXqMdwX69KIaUcqzSbyc1TJFe7X+rj1TsoGUH2QjqktcaFSGTOP+rT6hXdEr
atFR9WygVj0V7tVwOPa+2AAP8gpJYEs5KSYhIk3uHV2qW0aZua1hU7tXcyDA
EHTj7GKdAzvrCpZoTBDLeQHEWJLcjGa3JKTaD5vqQMNuVk/dDmc1B/CQUyJe
QBVzdzgIPbw9HwAbxXfYj+LTw6Dxe/FZkI/DUXiD9dhgtsg8FSs44Zvm5yGW
KS0k/HIb3h3C60rlRcoSz5IUwxp9BK2b56UnppDQSca5c8qgp8T3qE5QLxz+
cIZRNKWWsPFaDKNKUfgbWtfExeC9hsZlwHKjj5Lh7smGZ+LUdCk0EKyQEndw
FfAhDQtIa2QYIQZmy25i2rI4jmcDG/2+KFbAIXGlmGWi4II/junHgd3Gh4f4
7Bds+cvYxiqyDkYGbgHV4agIgnXs1fD0y6dK+9BcPoa54A3y+Vdz/oGuZsRV
Bf0V2S6lpgETIbzWQF17yGTmFMmO5g4bG+90OCFfBpn6vqJVWzomA12KuEOR
CnkW5qL32z+MRO0aR0PApIgX63JGtu26iutTMp0qZOxFky+tSwxecB5nmi6D
+LLnry/IfmDqFlvvo1Dy3kBscZMcmiw9NOI25T9FExSD2Xxonj0xYWf4hnDL
ELQR80v/4s0lLH8sUL+ECXyXg0z9r+tiTTAjZAw+kaE8nDwOIM1PHjy+B0uw
q0ofUqgfmqnYSvpgPxaHZTY3HI9jixmxZCgRHb4DUiNDviYpkXaourQaWgPk
OscsfKlcOM1XKCbiT8kq6hfywS1K2PM/fQ973yJneT4HEu12LBgSx6xoSQVR
pTHEC5KS2ORYeMziLkaZLBqqAu/Nino+b3vKP/WMxcNZsCcHTckqJ4EfB7XP
62RGEebiCTJEPzQJ9uMADllcWUkXSk7nKk53vgr0MwVw+XmH6CE1JAQvmYJw
nHUeFdbCVFPE9lIKNvh1AKLrrpEhzjDdfcT/A+NpSrEq4NS1plsXAiCspuun
Zut+9SYcrCsMI99JsAusFXnycEG2+ACZqnvk+frw33yoLtmQpVo62h8JFUBG
QmGdfRi0Nq0UCZz0HQb3wABmolJLbA8bT5+doDmRl5WZZqhUVHC9FhqYQS11
g/mLJiiWjf8XwMBBBqlY51Sm8hiXWlJvH3/5FZb4RY8xGmwS7NFQ3lZyvT0w
drJmBw4+9ucxyw56mqTMjfSLfrp5SfEPElSmO4z2LG5+MkStaYkIWhe0Eq9o
iAHGvUcxlNGLvj1z5dAm+BhdMmLyMeAMBWqS3lFW8x0r2mSIoLV88OirR7CW
x3DWvq9X2besDqxBazz+/lvEaIQmpyAoYHTW8BqJblQGJA3SynhhWvV6oKHX
1iVmg76vE4Jq+bq54EqJauuLErhHFskh8+c8Mj+1UvtHBxxjSMK6dU3tsxCR
19AqQWvCBOZSoCHPKN5yXBArVs/1P3w/t2/nKzZrAW80VwaZGDnKF2vZZbCB
tH+v4FS+yinw+QuDd7J1N81OSoo+Wc5aWJS25dVfcHMTTO9HO4tgJISrW9nr
TIEUkBwq5pcJV2XKyG7LVq9tBdVaE5WioBNvKVa/kBh/1YhbR3LWtM4XRTvt
hZov0WDpgZthUXjiDdKVitB7b/KLRfG7NpT22n9KAYm0YgEQGvQ/DBcDQe+C
L2kQOoTs4iL0PLsU5HMovuspx+fATVYhD7wlaf5GjEaPrefdZJ6NaDXnbw7b
lszkhvHsHX736P4I/s8D/D8P8f88UiCZB19+/ZWQLuhBQChYmSccTTG/20he
vN+xAGCIYFTLvMpGcnwJu08M7+cFlVQN+Sw01ufQ7IySe3ts8uGDR48ZBEJQ
I548/pLHSS6D5JS9gev6xpOWnCo9U5KB18I3Pbb6i08bNObP22982rxamen5
+jV0h7fnb0N50NIw7T1A2nuAtPcAae/BEO059maSl238DunmRLOGhjczue2+
iC45NAGxq5UaZELkaEIjCiVFkZ4Rl8S9SvilIs5kRMVorN+y87fcY/IvcrD1
UlyR6g60Ib/kVkSDlXrWjylEFPFbNfjO5+tZDaWhXD3YDONQ4ZppMH84A53Q
VEoNeSsnRMqfTstmui6RzM5hJ94XehJBQ0cBhm5tQufMZ/mKjG1TDClvO3P1
Lwjv9n87in2IFPsQKfYhUuzDrRQr4xufFMX7X0yq7OpVUxPTaqjCXTKyW39h
BQ4/U7v/YkOWUV6ekhHLkG3dWorqbwCeod/osuqJVjuvq/u4AfdxA+7jBtwf
2ACep9dWHk2eBH3l0ZdfP0JrhGAKp5obZ4B5x3/qz+fg32U98874HOM/x5p8
S/F9BvkhMgF57TDOnN5QXJrjshPenKGmj2PCsRB1D5t97SPJT4PB7ONdH2A+
ZuQLYw9JH91sDMGaU0hCu+0e7O1fhQFq4SfiEkzCHMHpBTnOx1HN3vtJMBLr
skZUNuBnAxP0CdlsllBDnYY9hgnCzhSUBHWsOchBAQUNU+eFc0wi0hChvfMp
6gZHDZgtnTtvjgjRqDQZbyIFmfMC44UkXp+ECQKz4LwcZM5cxYKNBt1lU8Dt
gdAdGl41K6YLSjfhJvT9uIRdFBAypSQjI9x8zryqYHQReUfg5gIMowp7Kwp5
qjh0Q0vZ37DLsjBsSzkvqgJvwHzBMCEXIOiTiM+j0POi49CgnvN8geZjuFEv
cgy0EbGSIcnIsuFxP6hTvKqT4EZ9G1kpa5LaCX4hRS3YHolf8d06vawxkUaB
iMTVGX1JvJMWRwN01ZnCuaZsd+OyMMQ1/LphRd0qXa2yCqUpcaOml4i4pdpv
UPLIiqoOQzNur/RkO6xVzh1eXKBzsdtOKjGV4PR3j5QuJ6SjAYmVFFY+iRu6
kyhBLbLBEVh0bqJ1CwrWuipnazlKgjIpoWmI8N8VF5v+NO2ZsCFaTIC5sCuO
WM/+3//5fw35R7hSIm9+bo+6AhcjS/4WcTfJhndCeVUaUQKtYbx84LtlhS+Q
yPoF/gWvXelf+Qf7LP+gz4adZj9UtE7om/jiN3sQ+1yjD275FzOfCw0OaH3w
QXJjUGIDKNJwhBiZvfFpiKFcoHfsB4USkQAxnGWvoCzueTZHq6axHQ2IPywg
aXAC5TDvj9TOlAsLMKNgS6mHxYjEM+/3nxXF0pUBQB6OxXy9sNVSQ4QenI9z
lMxWlEkMo6Jsj0GPk1lXTc4MfloeY2kwmYX+2Ltk9AECpw90Ry4XfCy/7yao
bVRwq2glWXNJa/RBSr0gRGGRWoKDbS6MnonKBWa5LQv82jOB0MTvWs3lP1FA
hnobPj9iEODNi39tH1QMnG9rAxBaG2v9U60mwuZ7MobTwvfTGFIAmCTc4juS
KRPAi6CB7RqzCvv8mXoaX7b1gvRgwRT+eLfkX7QS+CdPC/JA3gy08C2HyEab
P88XLfCfH9nM0EnZ4SKNv5GIf6nqFaOJqOyb43y6boFluPCOigz2e4qJrAXU
u5IteIh+X9fvQb7cJ5VTZTiiFsVKiavE2ZSZ3ZE3h9VGMuhC3jaZ9MrWRj0F
P3jI4KdNvX2Mz1EK2dOyd50qaudXhWbyMR7PUPkNBcDRtGsfUN+iGzBP42+O
GMOWK1VbPvTx48vxs0lZdHOK8BnnzfSSNIvkfvR8zocmURo4qPaop1BFDRPO
m7cu1RFRxJGcCTVAAH/EXHYhVbTfTrnOBFXPyt6dnjpk3Eti0JMsGZGnNmx5
VlygU9DKKlJnRgBnOBJUE6a2Rd36lKqxxO7Vq09prbyLG8NwfSscW4Y7tzFA
iBwhNusn8/EwMfuVlXnVAk9QdoLugPGQqJEQWwJ+/vFuC++PW6ow2PgCg0bb
w0DGd133ur2AnoaiVlOlzocSxnEtOr6WdYTAxKmEocSkYPwGp+luM55xHIDJ
OukNHYNvuuieU+yqJOp15wpK+avvmvzCZJqiEcD8LaEXMMUxDgW2bA7vm8VD
5rWGK8bq7bdeSaqcEVJgR5+7sq7V/SeHJlEELq3YzgXzdR7N0MN4o1cC5Ixb
rqQ4BeuWEKF8OZVE/nGR21yX/ZgDjGjV914fnxCvjmAznmlIz/Gr49enPzzz
gA8MeOOdQiyp5d6mzUYWVECu6hIrzGCpH5IWBqbs4mUh5mjeEm9NsHPSaxyf
v42GVKJPyIQK1RkagT//DqcrSf3lLFOQHXds6e1PR115HSWZHMa4JyHvN06u
EkHyN5mkmDxpnrfiAJg7FZKwA3c+yH5o4V2NYXzLQeV7P5y+3YdJd9PVeN3V
zPBbn/NT+ponmzjZo/WRCltbHWXOYqDQBDGvS+09JjNjAGkDzmqsvmI2mUAX
kmrDOobgjc2pZavzFr4q99Y4nIlONlqxJNVZcjdnGWVH25qWkmqRnZ2sL1DJ
chpUJ5wCpfczxmU28flo0KEUvKQyqaacO2EGXz94SGA61C3d+dofo84CwdUN
e1Pa7E7AgLsjDMQEtXIoS3WzMRtGRG4+290o24ZbhmGmFGJbC6/M1FWCNQwG
+OUke4uBUtelYIylvZNtyYEUyyJR266XK6Y14VamLZ8cS37FsClRiYKaopbR
rLNY6AawPptssicsKV0qeNoGqFEPwVlE7s8riYjEZUBdgJBoQkFuEnIOZ1fY
FV4V0cd0rTxNAExprYGUpRCY1ahn+5P+4ZR8A/oONwTk3KJqjbmHz4EPdwyW
/i8fPXngzejbxiicLwMeBxxiAqNo5NGfcPTCATPLAo3GlExG2CM5hEMhttCz
IpTiJzt4lRm9XnZpKUyCX8lXHPaE0De3Q9rN+tGwXJqNF2lo63eskLxxK6Uy
vhS92cBiGsHkhU4prEC6p/kkID1lazM1qcaBihAMSCPJTUlUO2N9YbPhvkum
ZF/ZNSs8C7ea1C/dFydGY1EngiSW23XqI/QLJhCyZlkpTYbVW4k2hFjmLeGZ
B4hGVNJJDyb9VTkvppvpQmtsexQfMu7DQzoblPVig7U9HGNhDDIoHHAl7uu4
noZsq4HUQbUI/hoX9Bfc8YcxfI8BFuqh1I78scQGLdA4rx8NybEC3I/NDeg/
tBerTq2SHU1EC5y8Ps5obD59jTyzIeTlKKXvYIbgMjjq6B/EVI0D8nMqp0E8
HVeI1+RpAJ9TW2rSXNJK2QlMpmNMuGAZELNtaDwAHpKblzaoj0vpV1eL/LF7
MwDm+Zw6g7YnZ4z2AK+d4Hy0m8D3vy0XL3chOyzMJPMk60fP1yTTkhFEca42
1avJFxcKN4BC49HRDbYKvZB4ShTexnFtHf2JwXsp+hKRs2a2sHoPRku6ouzo
nFInybfvy1X4gruDi24hDnnV75J2xuLOnLIR0EelNniE3cLHpeBIBHbKcpiG
4Kl0IuVPU72RQsEUqIHlFrJm542m8V9KjAMXRvWOYzncIdQPB6CI1B/vgsIC
I6SCqbauLjIKFXD0d7GJpQNlFME+djmIRJhQjRINqYBiGTbH1OTp6ecKq0i8
BYvB5WOaVHK4vRpETEVnk0BrkFwzY4y8GQ6DhGn50ofn4uhLmak1qVr7jGS9
hzAk2cCGXcwdj1XiFfyuaLJrsn6y6uNp9wFW/gcf2CCvyVtSimcYOUexkrSK
kFmoOKd3JLoIRTn00eXV2c9PAngFto1I7+S99U3L2/JgjA8wMAAFTAWqyodn
4dcxqjZDVJEHHKwyrpJGvmh+h+BUWddWQtC6xwOzMuhOfYA6Sz0ySMFjikc+
AbLoYzFpfMmfFGUo+egiwhdSjOC2F6ASEOK8edQI6FH2Ql8rh1mj/yPuOl67
1hw4D2RVzcYsDOgWa2hU/KL8Gt7dhd7UzxrAd305nFTKlqXuFx5M1vFF0cXv
7O27qKDe8DfRKwonb49g4HtCxSjYLNA6eHHJSKwRyILluBL/pVG3TE14VY35
snCBkSfMGdcBD4s9n4EbU2nIjgr8dM7jh5meZ33Dm5dTuCB2XCvEfX96ehzP
o9VTpDtOr3g0Apka2oPEmxaQz0cUn1Y2Ptu3f/PEjdExb/CYOy9CB/R7tTn1
SiuQ3ZI5dipV/K5NknmY62I6q8MMZWT11TRftWsyAuBSVNN6Bv9ad+zxDVuT
U1jUtYQG6TcOje4FfaOFzmmzMCrefzzp14OgQcvMnVkUxoogA15zpRnQWmHe
iBPK40l+JP2BXzI7YXI4A2YwBp9SgY7ImjwHXuoktNCX78nUCZLk/UiqWHFF
NaaYBECJlss9pOcrfEtyvW10diFzDIW7aWH7bgsXemIy6jUky6XGqBGzfTtY
rnXlSf6STOOC2yKquhxmNM5peFG8V30WRnWMuKY6tjJUMZJuNkFsSyqk+Ahf
qkzEnrgFZ97hjbW3b0JYgA/VSVpYIjO1xRLhjqYoMlVeHmFBSALHJM7TiViL
BRcwybHImxkuQM+BjiATZqygiTSd1+iRtp0pFR3BIlH6M1O/IMeJIOB3QHay
pSRx2IkPThBI2kvMo5RrhDNOH3wtGAh55UtV1nMtHZA2vc8St/yHMb8vxSkO
K5rp0mZhZeHfBNAFa5zRf3/L/H/hn//D/Ljrvb9F7/3TGP67Gvv/wj//Kf3x
n5z9lv8z2538p22bZsI//0f64z/dfsT2J9O4Njf4Hv2Pv43sg1/W3t9xRZme
EUnrf/kV/dYw8P8VVzSY5pObNW37dv/9kz21Hw+yu/PyYsylosbigSy7RfHP
d5Le2kupY57w1zufbDwFV4nvXb4zTvImqY1Nw3TNrhY5Rbee11hWO4GxqNWZ
kJkLjm/pgYtp5CMRnE09ZrVRQRbGWbBBjfk+/v/a+7rlOI5jzft6il7owoA9
A5ESdfYc0isHBII6PKZIBAEdb+zFLhozDaCDg2l4eoYULCvivMa+3j7JVn75
U1nVPQNQtjfOxSrCYQnTXV0/WVlZmV9+aYeelNGhCwDXKwhokLpeL/3Fk2/r
6e7ZGaeqmjIrb+NwdTtS7HcdecVa1JPSIup3QlZtrhOn3yW0qxs+wMJx6NBk
Y+r4euHrpUhBVqxlUDZsBn7A1f2wQE4etHkRrh2Hhf3m76jFjf6KcXtD9A29
rAEJq75RNhJ7HY93xxnc84iK7udXVSsH5Wn2MysBhRFWG67N3t2Ns3mT1ajL
4MuA+S8UpVRfhGF4R1+VEjLkN0qnZ89cfwqdqRbqsuMvxC720RZHKVrsEH3P
zOPbzDzG67yVoh0PrlFnEx+W8B4rQI3CkEjXmPGVoJjf4UjlNsiKgm50b5tP
9Ka8KPr+YFjPWX7hF+Wadwbrs1x7lN/GPSS38GJntJBXlVE8TpL91V0FWzKq
5CVuYzGcYObeSapHJWb3vSsrBOObyCG4rZK1HxL7SpbiB3KywE1oN1P2rxh2
cOlFu58U91TWJjJqi0sH51PA7BfOmX2GD5Ejivw4rwndM+eVAlixCBxKbYP4
ISlqcN2srZSB1mooLuXVuUJPljxSijnEjq+lNXWWhPhz7KUkLfHlKVqWjdX/
w+93FCRWnkOlaRPxKcPSK21fb8rpiT6D1wToFe3IFB/SdCYExclf3Pa33r1Y
pO6nCWM21c5x5GoFrDf/XrGCl6KuNp74sEC9actHQYvCaiwTm2X7500p1uKX
vs1Xk/dPPv9x8+RPwa11JXeiD03ybDnZhJktr5FMTqq8DdlwfxKIgL89uJp4
hayBBk6deFwYiNDfVoFv0XUfeB4bphiWI71m5hTwLQ68xTumA644N9AD8t2j
Te59xoLaIqY0prQkLMfCKssk+AHj7qRzAO/eNHXcPlp85Wa9vnv1kGojBvFf
vY7pC5Nqj4Hge/Hf6Pcvb9a3i70DFxYa8UD+/EXu+Q3hyGsVor0UzjZgMTXu
YLcFGDPwLWGTxs+uau8RDPvlLtGEAnLBzDUqYkk+jmB2l9er4HLxDIsHcjNn
7nROVHEeyjbTUer/HXNLayHTV8agu+lTnEVNxZlGRMSPrsp03C8NNpmU2Thh
8zP+AV+MMkignzYFXJh1EUGjfU1l5CeQj0cAFQ74LDriBhnWTJVom5J1c53l
AUqrTbCnMlJRFCGmbA3IPrkqwZnUIxl73aWSQJfNdbvUwoZJCTY/3bUUIOCa
jgtQAnGSIj1ms0UKYK2hT3bwH20LKXAl7j65VhVdluSz03aqRMwyz9UFDt24
5fZumtitvV+/Ga3U7d+gUulg6HFMrXBY0OScob43h9zs0gJCObJA8mYmgHn8
edPGHqDoTQfZ5iuWwoOK6TSKGi1ddz+iKrgCaaHsCUrKZFMfKUF1PhrlkOxf
1dwalzLdP2OvILmHbu/W92Xv3vFio34Q3ZpQe4sz71WsTzMjB4YYvwVI7oyJ
7OhoUrwXcgxux74TfFkCuz6ZPBmrPlq487MzDD85835cgCUjwrxwMz0p+cjx
fTms3pFxO2jJQtbpWlqz/iJ35MQukZxdLXpdU2/GezXvIGBM4RtlQWt3yZXE
Gj8cWeyQ5Y48OAEy9hSX0xnwq8AlTlsaRmCpT8KkEi2MaquiOpU5xxOxdmbq
+54PM5CUjGWYidS4WZB8EngpF1q31Ehn2+Sqvku37kRGzOWU8tuolyQlQIkH
mlZ3Xade+IihcFbknGdZYbp8dIB4IIrPvLf2eYEpFCGluvQT4ULkUlM0TIAL
hKtPEY/Ed/SnZq6Xkfv8YEi4tENMa+4OwlhHBG18QrZWOMjHfk9M1IA4AGsj
um24OjBW6nnL1MxDubmfSDErTerzrAUqAhqMVs4jnKKqMAf1xC3AbIdZafOW
R/JVFS7eM6NuU+BQ9p1ddFElCsILYXjnW5xzkQXMpGG2qUU/Jsecm+xipSDd
3gt5PXaBvg2s3IUcCzBnZpQd4lY87vegJkJr+Bh/mHtWNd+pxAIt4CN0jMGe
o31LIrlMWl5LkKRcudjXrCh5quDRpCoQLMa61Ua4/ANVChauxlM3re/TCC4G
3pUtZqSJ03NxJLxRICBjSxQX6Ckr+mt9aJC/mgExo8FM+qzhrljDI6zQowtI
Ag+OXbdgfOKEMjNcDgBGTrfxOrVoPtYCkUo1U+kaIrZc2F810wOX9Z9CokQo
YF96BGx9OtWSsT5Hby5HWC6OkofGske2BEUMbWLoEGbzlkzLM9kP1sRv3KPw
tfLsltnJZRyOTL1AH/4UpQunKNFBUm43NWSZtMaanlEB5iADodxaJ/NRK0fU
XNogrkJY6Q4RVu77F+V+r0FzrFrBZkihng/v/3QC7Kf7kn5XSwLhanOujhQk
bSxbhn3aNA7JOzwfA/aDqyqQFcrO9sPfWFNgC4eLLxtQpzUYFgwwjePrS8Vr
Wp2lwPorEB91NrYnLJ44zzJDq3juqd4f6PHw4ONfTRz3nv7ZIZY2UhOoDpwj
N+3p5HfEGSydG7FxJ2KZWZEwSXO4Sw2zDIfHcLfmJeKHebdlTQOuF6gXdrup
jBXOE2GYVg6hnSqss1TaJDnjC1UBJFAvie7JUxhcbZkF03dcNsaDS06ORIlh
rsb+hfRhWFBABVysKpHvjv8rF281vHbD7m9SObrvfJEnnaKRk+xCY2b4wgV5
J8Adrcaf8GGLNUjOBRa/dJFC9avNJSvxRHSk+svg48kV40rLK6qmW5qywhvi
Xfz9t4p51yKG9t0BDsPKsGSmhg3UpeyzlQjrJUeEwMZHL5ILKdWCye7LYrbI
CNRU0Fk7LLSKT1J33M6OjT/D4IAMEQgzaW8SVIaypfE+mNibaXfFP6a5pA9q
ybUUGrI6axnRm6+clPBkxBuXxDoxLcQZTIeuv6kNcrXUNpBrYEGY8Js+v/uF
RG7k8FCPkNyBGghbr3tHWeDmDCnXUeQ051o24o4scv4pvfGoJB8iDAFhxPCD
/tTJbBay9OPTVpBxvG5BuGXHAyG9tWiUuQwzH+hrZtnuE8S8li+Q4aCS8mT6
/vw8T1Sv1lGhIYDRa1YiIZaHhgq/C1gSKdOUmie5N3mGnuNhT9vQvDVkIShE
ttg24tu44ypIRoA133DrjYuEBhb3H1+eTqBCTLZdLShX+nCwOtGSP+/kZuvS
SjybvHAiCRRKn5mEkca8DZz8Kpmh6y4ImTu7CJ5SxZPii5wciqTaiTAH084e
60bcHw4rYHPyw49n5y7wyS6oE7lbc5wTLG68RbhGZtoX+O/P2wzi2FcDOhN9
i4CDqnqQ10KKAruiOAs0CY6TGkZyguA3029u2VPJlC9yYuCkY1cauCMDF6g0
1hMF5mnBzeKWT8nGrNr8NZRwKYzsrV69fsu7OE1Fkk6efOvGrKNG17S2PYfh
ZFDQw8KnT675d1fmczgd3Uh6DHGSEii9vVd/UAWKPU02SKG9GaunRDYvdzvt
bwJnLz7V94AY90wgLctgX4yaByk/htmFGcItpcu+eV9S/Sfgo+/FMLcn+aIP
L1y8eOKYNJg3tlK9zEz5lOQD9tvdi1EviPfkPliJmlIkJwMbSJ1CxBCU3VBZ
Y7qNJ/l2elqJfI1X8nvD5XYkK2VYsy/++T9HyT5XFwibZpagFZg/vWsFwF1p
wEB+EJq6ejIZv2cbmJWVazLlxFoLrprenCk9lD6QgFScCogzsu0HV5zuLvEe
cFwnoNqc3iB0Bch61YnvCbo7XnJvmcrpBX8izOrFDLgwKRzLW6JkRsuXgdsN
NicEwFql49Q3f2dVA4uqh+/ITVa22/YhuVMmblcJz60m7H1s4x6+15tpDp0p
2+SUNk5QnqtQP+RvEIEeOBgywdZG/gGXJOc+SVck7Q2uSFwvZoQPbKtplzjR
ey4Jrod51ItpLUcSRZolEf/2HECTwLtlIXa+8B5d5oNeVZLwO4/qDm/PxahL
NYy6VP92j+qjHKp/8pypWp6YkXVWwvDCSYKUqlJGMx8meGnGUaG/hq683TUE
tT5Dbg33wcAG3vWWvAKi/4UeJPe78rUO0pBsuIF78z/FHSzbGL/6BmZYhZJv
+p36eH7+IqN/zg+0zy1m1S7jurRKtDh0HungZsNKWWn3++JaVjPMaeotHkW3
Jr8x2vhm7upb0UVMjUjvyngha11ngZyBF6yYQscNkbq077wJ+TgO/x/L1OPn
/VcL19uueitcWG9wzuckaCJZSm3mRGvZZU/+CiKPge6/Hdf9WR65KewdxGYI
FqoGNmyEK6clOE1JcByjRpNKnol/6DrjWpIS1PNDGZPVPuwHxQ9TIxsmTMs/
m9ecZG4hoyuiog6s1jWm4eorpohkrqPXXaCT1pvLevMSbLIfvcwfV02Pk3Cd
Qg3yaUYtvD79+ExkGA3n6N+Xcb+uTXSIwlYsGfIryjOvFTZIdx4mibbaBW7x
hySoPEf+1g1OsLKCY8rk/E1vuYDKEgkeynVv7GJS6BIN7V/sZO67OAhMNWYD
HhcLBpI3K3b1IhaAzl7YVeVCnPi0eTJqwaJSokTeNP9xpfD8xf3YZKGConiz
VLZ4eG6PF0yGy25qo5hmkp/tcP/W34X+1SzjfGdw4uO6y/Iws8kltnd1wkjp
Jlt3XVMspi2AquRsu/GtgWC4AzVQboR6/OuHFQ9ytRHsHwWzeHPs3o65DCXe
QrB1bFCOVV9vqjCyoWwbfXwmG4n6pQWsCl5atxuUvLA6ioKSyNkLSXJ7rP+H
bLKde+wgFEol86w9XsUinu4XPKjnZkyzBucwkJQEWZW4CwSHNureSpY7E1k7
Ng6P6Eq+me/u9bif8CHcLP9MFVd7cBmxlypd6nGzxUiNmcQbNS4g5xkPkI9i
eFlHOcHo2tqxGk20HBGYPXaxJySokgByzSvEIzVGamxKu3AB6J6qn/mmHbA3
pMYM/1sGrhJmzo3oeUlX8yDs9A+TzM/3B4GhsqveA2Rb5/wX9J5slonQG2QA
P/aihnq+hXgkUcOgWNBD7DAGD8bhwbRTGTPJDnYYjzXQRBeOTaoQ+RmoDMWb
rA9FZXs+tDanZw3lKir1y3fIhlJhEbORRZJ7gexFzplSwK8rR5ZRerVL5Or3
sksYZCIn3EtkdBMOnFPDyt0jKYs5AjjH9+7ARO+QKAdctopXLuNpBLyFqdOQ
4Wh+INeh7awAtSBdrMRriQ7gul52tKXe/p//+N997gyx4Wbude+n5dQ8nVer
pE3b+seXp95p8aLitHZK6wjvpW46PYdcEPcgoYJQpGMkk4GUpGqcehUPtFW9
asmiATpAFQFf7uEacIwKNjXsJB1hiI1Kr0wTY9qWPGsiXaP2SqrbXqhuSSj3
rPR3RuP7y4GyIEUbY9lknaHXgzLuZxFGCy28LtCg664TtUlZsOmEL3oWQMJr
pW/HnOY4PFHSzSGj2TvO7GeaVQH/DtR6FIvg0x0QZuIqu8k48NdoIg+MYjEr
MAVtZo9xFMpquZhQGUkzLZUw8DldKOpCTp0Q3rQfmPX9KHHmj3OsDiMHADKn
ow5gFiYIDD1x2EX9dlIQBWbe8BZmmlRn7IZI3cNw8lMN5hpKPD3h6T0DWfkJ
Y+MmTB0uK3BgeI7Rb5Adivw3AlnrBzOwj0uXOQNlhTLDjeTKCO2eBP80v6Th
DgfqcJp21x9Lwss6McDf2hwEQQFKwnq0t5xlz29XLlGlTooYJECbNZVPhFck
uP5ecksyiwptsV7KabaFa1euUCnjpoikI4kNrDnshvciw2Yn50dmSM80WYyJ
uq2XSw/zkSKa3LIIn8UYd1X+TtGqNQv/+pdR2sP4w+9zi+PbdAzhbV5KEA8K
jyC4SrjahR8kCAvlsJxzDvWEmXjM3iHgTEYIqquWCAM54M5MLLS0K/BJkZJ1
geQCQS9mRMK5Mt4B8t+K67e72kGkzJMPKSaX713Xa9py1st9jCkog2rLWSNc
+gkJKOrS0Rs6CBSZ+qiO5w6hePTklUtEMMbm4ukPzWrZLOQlhyI8SLeSwfI8
WArevWE5X7VlATeF0RcsySSfhvgUS2e7VqZboHW1bWVzKnKcyMNwCXwLlVui
xdRNahVHb+meSgkkPGz43dec+d1A0eI80CTTnEZtIXV+vEgqkgXc4L2hxghT
jZAmTtHU8YkuKX9xzkwFsm5xrlokQjZhe0QCt9hy3PA9cridvpy4291ysC83
zDj2LxLy03rMoarq6+cvREmO7mx5avvm1mYevb9VJYvbWbZ6C5YF4kswuTRD
uda6iB6g7jDc7j5hKPtfDlT3J0C61JWRmjR28FGtF3XKL1NhLssXIU++nFwL
zW5YNAULWDkRO/aF3Z0+a18YaoDNJbVEYCdtUcn8aLF0BHuu+275B1nDI9do
vnqj8y8Bdw3B0TiZm+F5IHkduG2sER6RNyYtn4Zlnm4YQ1I5IrGiU70nc50s
x83KgiRbNTnzyAYhmx1J2JCgyCBdKWO4swV2pA2m/2TGHqH+imUODy5zdZpZ
URozE9spSKkMIKlZG2Qx3KG25JXQKHMRbgnO0nd0wBna8NwNJqv16JdygOui
xesWsCFvm6gB74mplSw72p8TZYPIASR6YiisfUk17HGCb5jwBNbVaZ6UbUZ7
2+eF7C3Rdpl7FIQsPCTPwlieObRGIrjnqYaH9NI5yUhqIcQuR7jXJGFm+x5N
/kVDMGc9qmsbk0vP9rRfKrJATaFlVHd/KxfFMG16zAuxF7I5jX9l1/pn+Lpy
V9fIZ8jTUX4FpPR/w0dY6elu6LPtjzyPfIrUt2aGvxzpMDTJTATErhu8zqYW
h7bIKdCuN2sprSHg7r4B02K0VNoFFEM2UqI5AUJNy3HW69mNuub65Lfiv/4C
msV4+mxmfNunizD53r33yvC4/e0uCD6uZiEzijjoQ9+q9GrqtgoJ3jVMWdk0
EhhxGWDB6XkDZJhXTYvbph5pjVZkD8e908802mSE9ux8RlDSvIDGsIm+Om+N
uz3X90Q8rJPOuFRVO+LX4JG26tazG52RQopLWRBtNdzkcvnmd+VzW4xo9h0t
G4nxMmWpLk4xsbgWp26U3mTqA0Rjfye5weN/PFnOtT2j6j0TcO4RoLLVu7tm
+dxoIP8UNw8e+PkLLZc4rSkS36CeFMpCDsjOksdMK+M0OTQVDSFXpO9E+5FU
MmXWrW4xhJmKfuwfKIF1tCwv22Vc/GHLmvsRTz9u0vunB057Ujs5Znvw0d0e
fSkq8QdH00PbyFVnqEt/fYq0ym7Kamd78yJhy8tehS04+AxXvRsatabSxx/g
xgH2cSSjoF1qZSixsvUIDoo1MTdbQt3DTXxY/UltfatFj1+IULIANA/rcW/u
sMaGIykK8g3kk3qHEAcRYbvZigLDBy4bDSxD5NhiioMs2EBmF4fNKlW9efIv
tTCUSNEf3p0nFo6DJo8J8sB8WFNSQHAgaG2DKzFSQGJmzv6xEba3t82c/kiO
Bnon5O/wlyfpTJzVH5t6rcgXDF3NcOZv5DuDlNQKxU6eKTkN9JgDEloWrwul
hmRX51c1ajSrECkPAeSu91x3OTjeIhVqX3uM+XZvThVV2iDbb6dvzw4+Ms4K
pjdXBTAuNil+7r44mSQT1WeqQso9GvG5xFrkEVUAiaGA78ApQTJhj0eyKkdB
W2E8yTKvVkViaXzXNrY1XF/IYqYmcT4PCpMRLpbcHx+JzVMScu9i01w0FWAM
l4tksxGlIwwD6ANKal9bATvFSHr4unR319TkOUNbSG3drzkDBME9ga1o+mzW
lZRLe+ALorj9GD/CRV9//vkPRolJfGCXbe/nk67c2xXuNbjafCmaXlj8Kcef
3B5ujrurUEpO2/Rmq2pK62H1r1oWZ7e2RzJy3zQfmMC9t03uCtHSkulHF/dT
S/5t5lnNYroXGRBGrqufulUvcU/yqkrImheqeDeBaBCtoRtc0oMzX8IwObnJ
qM1zkUuhXTRX6yiYMD/blV7i+t0Oe8DZ2GQf20UIOYXRjam7Sjln40L2YOeK
U8igYmLXXwHlQRQqUrYuAZ4E8OfKwVOR97QtnqbA19L//cmg1rMdE8KU6Z7d
0sZTT7CR1YLmOuUApby3rFqBpVia7SgwhUzqByApKU+XC5xsltH6Z+Pv4qWl
KUHHazmGlmp4+cwVJVWJP1tmkxzgF4Q6YQ+uonMnCUfhEfhtAssfunGyk9AH
7oJRjk6SLGZBKuNYTFgaiUL51Mll8ylwLEqPPJ8kiMnEzxbj0K5OJOrNDjlc
W2bkAKdY1ARb5yPfcsvoHqJNgkqgy5NSBKfCLhIq21aGBDBjB42hqEz1INxe
ZHDwFXBI9P2Gek3KZ7QrHEGGza7Mu50SOltPVMrVQU+DU+KthHWCLXBiyA35
VB+CfpShTTjL1SXS+1yi3H/Fx/Ww/msQJKrwNsokTriiX3xPlJevX4mSGJQD
n0Gve4pXEM+fkQQOL4RKw3/bLl8vdXE5myzeQ26BYaN/l5uIh3vpqDHDa0Ik
dIaDKMErfeYstNC9Cog+nqA9o+WSqpFepjLNKbHzRlwWtGEKdJd4cQh40C65
lIk4Bez+tDVijguLjPqwclMR1pnrT/lhLDEqpX/BZhhOztjHiz1koXDYSVbC
SUozIGDkaTIpLqr0Sy2q39FHoUZ5F+ZdFg0IpzlP3Yp/lKobyQe88vyvzsvV
Xl+DqQIjzEvPpXomPN8A7ekdzxy7zpFlE4Sj/6r51KwCXrWHRTNYitvVKk7W
5k4cxwVmxiLo5JENyH0bcSVLoHiUBkKHy6xGay5S2xABok5A1LHMp9SPCqmv
iEwethu6/I1skwAieji/odnU1LCNGCfveiPX6JSxlKN1CnY2EfOUW+b3Vmtg
1wXqwUQx48FrAWo487WSK8sLBM465ARe8mnBdXfrYYPtCLZZEkI7EUV0XG8f
o6WyOzvBLHyQhV/KkE47doQ5kpG5hAWC4DH2RzbbQQZYSYM2GqaiAGQ5vQL+
Va4D2QcszMKvd5/vhxe7LpgzyWOmKmHlMBRWgj1DNlDQA2bpxScqgpVSAhe3
LYfTO6wwanjT8qFD/YyJOFfNpuJPSPNZ3LMvaIkAiobVBaYu9JIGN2zgeqpT
Tb67FBy7yuqDJqaV8IXZk02CWxUmh5RFLA0rI6KpW80TTqdT1qYVnBZGUErP
I3Lj4Eyo3D82jKcp7v8yiiWuYrgmdQXCG46s4DIkKDLaCZaQHR/1/N4bgLfJ
Mvk74ofKudqKIcrm6R8DI1IRdwtrpsJYDFuf//0O96qFsa1x1u25PjUmHanK
m+vpQ4qpWiiXDD6O+ggjvt0J5Lzrq6w/puWU9VhIswu6S2vFIGZ9MRQ9HFwU
TKJPKaJiZW8RqEj2ziemctFKyZqVmqJROM7Mq5eflUjHj+Z7fX/oe3Cc6G+9
E1ooVKTSpcK+eeRWb1C3OOfEUXakKCn3owjZaLyNWCM8nrvg8j7zdS/FaAJU
wB9TWlWDcrLb9UbMhxRx0BMmMNqA86FT7Gq05Fspyqqtk0SnQP12gZa3dsl1
HrcUKX89Jr2kzMTDmtm6FGtnWn/8K/WrjLMPQKWiOkfPIlSOoF3SLtlCN8VF
kCOlgMhioKV+AmUIOZw/JL0Mzh9KsdAIWHJIY++UfdE7SUYw7j8bFy5YmH08
qjtxEcAs7Hq1qK9z/jAgSaQPHiXD2SsaHBDCdya+yODU4i1N6xLYl6Qgsuv6
TssIsuIyW0RDH/Iys9H0WIDrDaGqykwXsteKMhjaiSMMquU9DGjg+oZs7Lu2
oYNl/+jppDr6Kv7va9QhtevVdw+8911877v43ndfH0xE7zk2L3X8CbvtfKLU
r/mKIv9eVjX+fqt5Z/FmThbDgkDWpM2eV9RN/SR3lz4dm5Xwg9cueebL2FFp
xZDpNxmRj+vDS59mkIb33URdl3B/Os9q0WHu69HXEuhAuA+CcyhsK82ui0Xh
9rCaGxwPNsLSfTnkCIMw6lMav59K+djRTY7FUEB2cHJ75UuOJ4SK4b9wLyVw
xvMQfrsbnpUSefSU2F7CMlS8h+UeVNwsi1uIGKa9Czn6DIfYlnzwxYNdHOzC
squxsWG9Td89KTSSl2im1AxR15aeIUMUxiR/eKacMgGPcnkaBQynO0a8P/1j
BrTsyvFAFDd3WX6P93b5hADn9ebAwc71plEMq4SS+cp2TkmOMuLjjhdeanAp
CJ0osYEBaubjvgI/Is88GclsCNGmXBaSnXKR8hsAe0S00ILutM0d/dfTJ0+e
yPUc4VLAU+HPzYnNcI4//ebJkylMLzOW4EHtXVkPaT54qSjBX+MXx+2+waiX
qJ8HIXz5pWkadqmm/k/S53p2AECHPN6e2U9tHQxtG2DFvg2P7h5gOt+Mdm6J
6Mhnd++bHb0jNfat4V/M2FPkrV1Kt4Jv/QsP4m9HjAv2uA1iErLdtm7yoJlC
Yg5ebRixzCXpYctwIWhBp6XLaTw748NmTvkNzWdObJHr0mipWKXZKtL2ssHM
6mVwbtyMN2lfTt9WvDhOdR5rBRa+2eBIdpm9GJLMiCLMidOYQFU3NZfCcQkk
LhqSoiQGzpOZsufFFEthqTgtYYir9SRZpAto828UBCOf8AzoxJr5kWova3eH
10EanRTGM7dnb3R2VvehHXfJmXqP/b2CBx8nPNtd1Q/inUtsc8GxzSmrF5Y/
hbpKnhkAA2K3PyZGul8OEGAqvfu7ZoK92mxyNc2qFDWmNK8UjfsgRd4Ygbnr
Hit2LhvRU2LGkgOuvnQyFelCYgIkupIo7KLre7CSUBdKVihK8zs+PTDPl9At
6haNIxcvynEyj/hIXEUJiLebyygBC8JnCjZSDySXLeQ0CiBG+ARhF3ueFP0V
Wy3I8F07PPrMrTaChIc2+6iVDeFdK3Hr4H9l54ir7ERymmB87Vge8IugARN5
qfWWWTuoIW9JyIo5Af7ppzvwcmoKlyvRSh60KY7jkYH5pEkliivzxQqfwyAv
XbF1onez4MFhAdW2QUqsbrQmxI8vT/enb6LpfmC+MUMJPK9Ojt/602W21FqT
LrqiI7XPzchoEC9XRoB38hNtrKjejymZrccGewstLjt1P37vIB78zcJyZFzE
qQzML7rra0W7zpvLDf5rwjAf+v1y0y7mBb+2kiQSQW/yXPmvwGFUQHt0j1qC
U7tCSXmLsyeYcQr562zG9uMko1fx/zHXlbsc9o0TWoEFpfq5M5spxVswzPgG
9itLYjUk6FC3lleDWcn1f/masFghCQs9bRV34dzCg0/++RuQkHF+Vh3P+BxX
EYWC/vgLlBqCe6hh7HAUJAFaAIhyJypNMoSs0FFKm4Y0srqD0GJIWDMQNlpu
lqmgHPNJ1w+6g3L80RKsxIpor0ImBErQDOw8f1DR92zCxtNb2J3bK/87fcaR
ljfRNCqI/nHzS0h+ICnDtm4bDkfjdudvzqqnh19Pqlm8zSyzrsl8Mm14Mw+3
NW0mPrplbf8LLdmzZ/8k9TGIrUQDHhQ1JAi7VgoR/JRTXhy37CWj2T6bcFds
lzFDeZXYy3F3kH5n+jTo/TP2ob1rHfmqeA9oeoplxzcngjXR2pmZMhPtQjhp
eMbM3wDC8WgHoj9uAK0VjyoK4krcQsO1baoSGKCCMBMWQTfraL5ZiZthXBLZ
v4yOp2DY4j5301ILGXdxUW5azwGuVCn2qu6c2C3mqHTlCNoeOivnQx7QVwP7
7or3KQ9BQT08GaROoQwfYtIWhnS55/FODnzAcLL4YuzvImCg9l6JMc7plLku
xq/JglWmK/iaPYRZRtMtS85fV4KTCcZ/2UW7AedhQ1tnlMrapffmfTnMK6Ri
qpjP8Mawx6sGLAi+CETJA82NitZMsfWM/KoVrhRyhG2hhCF05/I+5WO9N0ec
rEMuMrYa3gOf8UvJNSuKszcIz525+PMX3uijC6XHX7MaM3/HvGoP1Jx50xES
/kRHxlnpg4MsZUQfE0H6hP/ve8IATqqjS1qhKOb4F/xRclfirbpNnypJ2d23
RuoJ/PpPEv4Nn5UTv7tKVz6x62vNxiAkYLRqaA4QI1Wzm77lK5yE5Fl2E0uK
mvMDJNH1mOnjJQ16lakCx/8tEfP8w8E+7MeT8Yi7DjqkrJjdQGTu7lLY3qXx
eeB5HvZkOA89Uk22DdcdGfwRbljwAeQJGZ2S1Ac/JeHzp0Tn4nN6F1zvDoMW
STuaOem8rdG6ABX69ralGDqoyHUUfRI5EXKWLXS/LzX1rxWoAzg+Js5Owi1H
RuO6jAKvA/rhSng94zXtRAEnVAIg3sMaKXRJ0bq55OoUl/0csBW1FkgJ+wGn
a55f2Bo8L2lrr6Zp/fKsFN8/zkAP/sbMs223u0LbSLG1Zb8m01dlmCfIt3Jk
3FC8TqY0i1qTnK7Tx5d6ZkurF5rFAXfLbcryoah8gmvGB65rQesUmAQ7y0dh
R742AVdsKGuNlCDbw+pHSo8SdAv7AYc97pvg+zwZdatDHE1BGc1MybkzqFYn
tw3EpKR2bu0OPsYVUVhMLxvCWSE6v/yidCYaA+2VEas7k4zmyKTWn6hi1MhW
MD8ZJ344MnyXNOTR7m46vhfge+FXRy/3He1a1m2+7Y7EH9kdmh03N2xU25J5
N6YSFI0dp+AaWYibJK9Udw7Tsc1TSvTjmVqyPAFxNJHzaOjZ5rH9Xp3X0OXb
NoqGuF0Am+uD3tbtMuOdFMRVWqLwwBKZLU1YI4rtGXk0GDiFzGC4dpZwmB1v
/jq7YxNsO0XCw2fcUGrwiEqNO/uvV/Ws4Q27VQFlpVGGh19Zr1AGX7jqtx6f
deDDk6+wJBFcLSxDN/SSgsTbGtnLiWNTrfoXkErVdw3qWUjjfJCzns1DGtIy
EXoKYvHnn/EOldoD6GLbcR+ypcp0hy77iJGV7bl4mxDIpaghd3/rQ5JcK8NB
7zWD0kW2mZi+ZM5pNYDn8YRs0SLomQqFs34+XxK07vdOXfYZO7TYOdkU5tun
3rFCUkv419hkj9hN+ewNmt+liZ9XTw/E8eMzVkv8eOCQhZQSkovEpCLj+quD
UnHY5a6+FHZZKdjnsCpoD+qbwwcYx8Futb2UCTF7B42MqO8R7Z1Pye/zUGR+
xzxbc62NORe2lAv4O3XC8o2dbTIhl9+CWBV2cM0WhU3p+EY5npUBR3/Tkw+P
geyz++q2i+twWAl0fV23C+giSogQxkAlEIbXXfYcXyviQwoIBxCr7e+YG2Iy
UrPWRSAkFgJPhZG4OS9Uj9lph8XoBSUDDw1/+HkI03hkR+Pt998WFEv+pi7E
ImjEZW53q1CN5YannsEAP3G51ejbIX01tW9Q2sd24Q24keJuqh73qfc0cX/5
2G36l3EKHv2Z9NrjP6U2yPZPFM3IWcBrpjpPS8hMR1LLf81CuW/GgWBzWsM4
19ZSpS7rTcGnVazag53ZNVC5KFUuN3DJxz5Oi1m7mm1uiTtvZpjzFKGYt0KI
eqPgOWOZQuv9oJ6c+J91tyVyAGZqqP1ewuzAjaaTInFu1lryT4h99//s//ag
2v3P/m9/exCyWZ/SP99mgiR/OhbTZOr+u5nzJ//6wHfG/vmfv/7Vv/Krv5t+
/j+/C8PmxuQ5BJo90UKTUcUwGezhQPNp220yFMxstX5+Xn1x1V5PSUuKjKzb
9aL5b3uDU+UlS9febjoFx6eQyeYgNZ5+7tIhFVKokJUv6Em/TRk1tAcgmaXZ
JrZKUSTZ+c9pa3Op5Ca5MQdZZkK62RmxmFL9J5bO2A4fNuJEzg+iA1GpprNL
FOmg58aLSGeSk/YXIFCNX7PMbz2JGO6pVynvnymcTf7ooMNooOkFHMB2ftYW
hvG2e8TMs03F3WeBeyHUr2JtxQ+b3m/Uk7pFda9GVKihfez7jBBw8ZpzUpZG
e9D2qW5z+vSwmdzuB88w04JXOuwhXhHgAIBsYeGS2ytxDatYMfedGJ7Vtk0C
JJPkOa+lYGK9EFKzIT6TMSHV66O3MJCJ6EJ2SgjvXx1PT16+Pn/3/nl1Srme
jeCWeDb6XNTuNpfaqFYXmnezjcWHo+WqNFZ0SaQvHoY3KNJBEdJW4P3r7EVg
TXDAchdXzTXdK1sp44DiIRTlLxnk76tlvOCwTbrtR8LO9r5oFv00xU+MlQEz
zMd6xsQwZxpuzqeJSWHoqakGpH8ph6+JK3Rj0S7TWl3hDOay9K2m49Q7vHig
OrRZgjENgpOmL0gw1Cy2uu1S9idFzDnMBq5TyiLY0LU1AHqgT01TljvdtF+7
VAQiv7q9pVsbXVz240diG/FfD+Cc1ZoQ9eKauCNuyFXgOL7ipT3eKWPnkewV
+5uxpw47mejfRGfuniJbp1m+TgIeyRAfcgXg0au2T4B+G0qtnmC+cmgaktxm
tKZo8xPKFeaZ2pdR1TdDT/kOqiH12P6JdIdz0i8pIaHnhEFjpYXSAnUAv9bn
15gEVsKFv95EW5cmR6nztZ0U4dzO01DcjehtYcTSZDBcyRft5ape3ZtHzqi8
RsDhAoVerzY9iutF6b5Prk3uos9TknOcrOeCPDCbW3ISkf+ZyQwpm5hN3HXd
f+gZAihd5yqTW8YtywsQgMAE7cC24enijyy96nIVAaC0eZUOQ0oUeYhzDYhf
IR2XDAa1H2ae9CSVQ1D7vJVIUrjriNeWsbL9DRKSl/dZX20NRwoCWpagfhY4
Brk1+B7A83BYhR+63pZs9COdpPZsPcRWirXlFFatIQq6cshTiRSo1zd98MnH
freIgiYjjeaE0t7P6LQVGuEM5pZo9op3jNIszjK7QldxAaNMbDjpLk5rVONR
t/eghGTOjktiaFJ64p4rX+WaIE5XeEeuhA2RIdGy5FMqJSx06vmb/fhHIUxx
kYMU15rk1FQEnFu3t4raoxwa9nr4LaZVxT62LG6gxWpv6WuCSvuGIE4p04m5
PK2IKK6BprpB+rUuTyds0KhOYtd7JT12a0DMFa0QIXrJbZdhtiDGLsbNM2Sd
XhZIdHwOIDDAZRhe2DLICzV8gI2bjAvklTugTKDSqIIDjzCFELnjSXYXcl/1
rXqoaXeJ9DfsK13DecOSLnYgfSpKgefkotpO5m1XKGM2h2HwQex8yc/HcGgE
wCjGnTOpNPT8sr26or0Wm4sXDoSLpIDbJAVRcr0ebMgjygEmjD0wS5VFORIQ
J+mKOi+1SEnax8g7LsHOo/Ri+Q6oteYiTamApNmfBrQfuQ22IvyCQhEV5lfk
Q1ogYLv6hbA2P0Wrgm6wZB4isL3YsM5FCymHygoBc9XnPpz/+P4tTdLr45NU
AIWMBe2ndf4jn8tXTrXJMvKhvqrbXuszYpPRAl/BzCOJDVdxk1wicZlos6YF
K6fnwm4fGPPh+CIxXQTRf85qpjhIZCnii1YeZYOgpZS1HQesMLdoXmLsPymt
KQk4xWvP1ApbUFrHbRYar32ae0oIGeH6SKq9lmKJyFFebZZJzrhY1VWOVBT8
2Zx07PJ6Q0umJ7qm+1qfaCFsHI8jcGgEl03Au2RfIwo/DE10LHtED0b3FNqy
WsgE8YFQW8lh6ySjMalnUFaXrdEs1/M58VUw0yIaPBSYsTwUXLIsFis3AdfG
Me094c16c4dPLWdxucQ+m0UNTPPt9fkinkXgeJ1Fu471xQJ21pqVIqc3Azsg
sE8Xky/oXd1BZ5/wuQGZXdbUH5BeB7B5RpeDvKBeAoRc05TvZGnLE071piMC
J97h1cu3Z+pEDudvzg6MZFIW846TVKSuFzTknDvIxRzPcSkpdB7rAyUqZPnL
AD2fcvtzXvvkY5zJ11294ON4p225toKHASNyOqz2F9aeX5XSrVjUQalOqZZN
uI++AP6Lyp7fRznjrRwuY8tUPgzjaZfL7qOLJC2bT8N8EvsghRVF9Nu1CKFW
aKg5SiT2jK/vM5xj6Vq5z6LJ0iyumI/iEVEszBsTY+6wIcQiUKlHOR6mXmet
gQQDCvqh9vCVKoFRk5w2S8o5qMCQq9fmzYryEigVjynuJjsJRkW3K4mNXnb4
jtPFzbTINw97WFnEh6PN+KZazvyKh6BtTfmKJY+YuzZfGnWUXQlxoncgflEd
zcgVFmeKaz5ruBG21U3t8M9xhqDqEmnwhtw8cYw/LhFWjDtm1f4lfvCrJ189
oT0edSVt6iW5QlQeqdfknb4VWAJBMghpfr1qBNv1tjus/unZs6+/flbtvz05
OgdnAv/1n//52VdPq/0fjn54fXBYdhTR4Iwr+k3TXi7bv5Dj6S9wVCARicaB
2Xj56vtqWn3fEPVqeK/dfYXsaerq8+r7br2+QnLTn9rFTbO41Sanp6smfvur
J09jd1798X9Ur06qb/7rky+fTZ8+pmM0ez/+sTohIoRGkQHz6vTmvgeB9tms
paSYPvXqOPZq1i6yOTs5/fL9k2dPnz37718+feRHB+3FaXjbraLFIC3T9WLv
vLu7izLaf9gLabVcla9q793x0fvXb4/2dFLx+Xr5gctkrDd0BTqOmvimJWv5
37p4yn+/quPpuGjiKfayjnIbBxk1X/2Xlu8eJ6QV/xjlhK4kQlkWb1jFGcn5
UaQoqPwvsRx4VuJ/jZv6vjq5by4ByWQlctPEr0X9GLfdAgwSc/b30UyhWpX0
+k29wXlwfLOpOfPh3yh8H1e8Eddii2OQ7+zMcnxKN6GzjmsvuyJhcqYYq5Ot
SoOSpnP33YA6j+2ijfvoVVzWD3J29x8QjOni2QiQH5TrZS1wmGJayPG0gshY
xhg0YHu5Ydc1U97g0tJJxa1ov9OyTadTcG3Bb523+kOczhZlXOlzt/xfElQi
iWFNs6QMT8OHkgF6ScRocaORYickL5hN6EEiL6O/KhAKYMtFHc1Ay/Dgv91F
gwcpPeAXQBLFHQji5ZJ31dTruFpytklRGKyItaYuQW3q0PzlZrl6v16dss7o
ohDELGFsr6w/R3MnDpox3hYlXHP8hxlpJ4FBE6vsE9VsQfmPsXWnrYHQIqIT
iJoioJjKkeMenhzXUJ1xcul74lb94ouKirRLGg4X213TH6pbfkg5n6IhJMms
9DvbEUyNuqT5pTwqS1aBPqLX7uBfn3H3oBuAJZJ5j12NonhT37lyrVA/YQt7
GZ/g4hL2IDrEFo+W1es4p9dwLi5dLws6itivY2Hpv4jidkHzdUFEMxeTqASR
gEr4h66Ew6l0xMNrRR5HTRmb3RzGr7+OrdIt/3xDzEmSkVOwYNTVRRzlZha/
aQiV2+b2kqsV8YlLQVN8WehXsRY+GhqbAoKLsGv01dP7KH3xOnx577KrXT8Q
ccx6shTKcOnSmp68yHhziEQ3mYtT6gTF4xtelJ7GS0Grhbqedgx3/vx5tKou
MOu/+12lSegX8sfYKg/gUGawXW9rbcnEaNbETXsdhXy6iNuH776xLZ7ezUoY
TsFof7dqgZ+CX4ryyufR9l0SLququNo1U8yVLGdO4kGUy5kFY/IU0g0Btamy
eLIZbAP510vEYfWOexBAsJQVOOl9rF+qsDMgiBK01LCNwjtdMAM1WVCZec9+
AB7jtCPNT53mDRfnShkplSfmeCJ4dJ0VWg3NGzVblXU6fP2ITpJRvAIujg7i
tGmCcK6at6egSEUGl3kqbgtkbPw7EZeHbEayfGj4/xj4kwr3ZBMmlI83BLAv
6oeOXfLJzbkEh8xNsRLCBUG0D+rh5uRGq5EJy4SSxMS+ymJYnHPbDx9OgnUo
f5lUYF6AzN9LAIVfm2A1OODtlTub/Orl9Nc/5y3OlWqfBTOp2SjTdE3RXvnW
JyGjNwWGGDgmY/pr5213aw73/FNBNeckUf7dp8pMqQwK0QHNgLHXG35UargF
S6brMjQ/KUmEUCHDQ6m0qyoKWW14aAKi6dAqg67cp6vyTudHo2Qp/lZmZOCM
0VQcwCBOo7zmGgHW+9q9my8s3UpqiVXnREr0Uv3KAf85V1c9a/4hNNJxeb7K
TA3KPU+OtuUG5wqqjs0ogXTi/nRLLOj2d7iL5WQClDYePayw+ScKn0xFaVYX
2t8LNkpEsWteZBRT2JbxCizmC0Z6NJ8zSY6xz2bMF4mVljBLHyl3kkqV6vFy
mlN4xompLlJTF66wwpotQ1tg96YotGhntahmw6YT+TXLjeHXH5NNDi2xxTh7
hkeD89oR6vJJ1B7GtbgY6cHhWbPep7DX/1LIQ9TWH7t2fnBREWVrXl9otIUj
ejxv4+BCqmSNPS+0M/v28OhTPJUPPPT6OtrOD7XE/Xvoa91N1MFr95jwO1WD
fXlP/0LRCxYSAYpIRKPnWntNrZkLvTFubGPstfwvJYdRoMhACEKmBJJrDmcE
w2JGeqtnpkBbzANFXaasiYMqmO88Cs7UBW1YhZhU8vHWN+yLSTwLLwoEHrVE
4BG6F3Ts9aH/Yk9QdhIw84llh03bJcxJ4VWVI0umNuH99PFJKpfoASPJMRmG
lB2H4fz41Ir5cv3MPEipnjvFFgK0gDZBBKxMBay5h5SHaVri4Kq/pnUYwDqr
f4c1LRDPvz7fiuL0P9GTMgFsMhRtaqyA2ywIN3c9mabqmGfqwTZ/6K+/Y6Y+
UmV4ssWG5BER4HNdX67aToGeW5bZqaueMJ+ZREjUZJsoyM9T6RPilkPxCOPi
McLochjOjs//v3z8o+TDP6nycTsQD6XvG5GLzdKeotsVXV+2iUZd6RNbtANZ
QmTM+tky8PBhOPp8ASC5+fHlqRKGkwD0/+kkAMe7tblLAoond0iA3/ePl4D4
nwMGm9QmaiBXmS7ZzFVWRuSgFJejAdPU7KYziqbtxzpzawYePG5jKW4ocUzF
JajvjGaDYk4oapmzwXH43eDnraU6ZAQnZYj9c7qbwq7Su+AD9Ap7VFiH4I3M
A3Fc39Wz1jWn7U9CgsJOZ/WdWji//MIV2ASQ4i71GrOCQ09I9sJM2AOV74Wb
k1+n8gqXg+WGtz0iYRzQxASi7uEiA/1Ne2cl1YnHENWHoXdHDC4ylE8Ivcu4
uxAExPQvX30dP2+ckz1XH0JjUiZ+oEJkkQj1qlhLmfeO/C5KUmdPo1BqDXj4
0rDBUy7G4FHJ5hqmERyfTqofTvF/Ua9MjLRsUuGYguPl5OV3R+eOOQ/denpg
O80gxR67l5FVUjNfWU3V68a4ecmhwrpPs3vKko0ERyODar9bSVVQ5w5Ffw84
burYzYhLiWAOKKdgdYv8fAPjeCVAUQUwsm+LbGb2yFwSW2bCrlpoAV70Fkzy
hNJGP58dPqWB+NWeVJu7ORfrLt0IggFmCIC18U3ZAg/M9auCsANzZ27JVPIm
5dwTNTU62KPEyKWKWBZDNzmIXYi6gXx3P1VHw1GwKw+qz4LXcW/fAqWIt/eI
p7D6aq/at+k44HbAUfb1k6+lRELpLJDJLNYcq/x4yTwkwm/xfj0PF5oSd6Hp
wfs//6wuEsbZ/1Z8ifFh/hf/6AJ/0QfPpNRaciIYOix24MtupUm4Rl3LRMY5
GErMjfg9efoiVXSjNl2f887CSV8mX44NLJW8lo6/bHvsVcxg/DC7Cev1zUXS
7/F9+/OUklz15X+lyRUgqJpK7PZswRyaiPpk294nNySNsD+oHmDwc+v0WcM6
ZtSzn3RkNxccbfsFbeqalUYl68VRhoPYCXrn3NbEHBT8eu0epl7Rw1P5tHZI
Xtb6ZUabvCWNG1LSdfBdx88XaUIXQhewP0KkGmVxc30Nfn35pG7Fplk9R0GS
vbjUA15PMgKrHwkKrF19x57E/R/P3x3s4Vuzu+lm3el3MpJOKuN8/MOpOPIy
ovB6EUfQd1ec94S37iHAOF7pB2Go/oXxCRdn+qwbZ3qsT2sMq6TWmrcN0ti0
2qKizDwpxNKyoAmTwKt6pi+72py6htawfdIQ36kAMoECYYIIhb++I+1rtdWR
5lOxXW59T7WImhyV2izs79CMCdT+3cNc7en+tVcY98kBlj3a0P31sfz2plnm
vShIiHn2idND3+D95l/ZZTUVo9BSa8PReASRUlFuG48j/uGxGTkejY5IgbcO
bzZGBD0c5Pv4xGMGaXZfMc6Xr5iclvqz7F7FEdoRlTdLszQljUF1rLSZ7xtU
OTt05XR196CYxKAKu+ocst6u5GNxKl+fVoyuz+qyqv/MEBW0FaUH5+5yEO9H
P6DU2sgMxt5NSVKikqLv/ZqOJ+TTA32j1XpMX+g57ci7S1A+Eysx1uG5gavr
7dTLFuHaQbG89yAN8p6vNjtbDkXjLFqkLByTJNtva2KmsSw0+umEa1UJ4E6z
SqqLN9EoPfkpznD1Mtrn99V3cYkpvh2fO5fD9SLKHbhhoPXZTDVL8XBgK0oA
c8y+q3EQc9gaEXDcHxzvPRSa3tPkmja2c/wdLVrdp81qajWg5MK+v/deysCA
tLSrLjcE7DBs8t4BLeCgA6TNdn0fW8x9G0ob7D2cnmumiWeSAZGlMskw1awS
qltVYoYaKmY8r7PB6AMYrHTDfR60/Kl2XxT3BXpykcgKCYa5oLODMhRgsZBT
+7ZeIlMnrmO8wTbpqrTlNnD4VbnGWwyDPeZjGSHT+XsOXxT5o79F6/83fW/7
fKMPF5W7clJfonhErWdZ4PqyEdeLvZS+AO5g3O0IBrLNGNMwmxARKsAcpDdb
1uP9wFDmKdniEiZFMXzFTO/t7/GK/LgcGub2cpxF5UXWH7ONx5ZAbZa3WBjY
3++diw+0vIYYttedFzCZfuo4A4O9bmJFm9FWl8HGLTPQ3mK9lJ5a5rgWY36t
QsaIGD2dulUmloR6XvUjHc8r/KBQa6qOxFfu2U3XMiBoOOtZOUKvQXPX5Zj+
nJX2Jl/RpD9uup8Hnao37VVDBv/IVNmtuZebypQ9FAJSSedNKnea1lPmeSHN
m+i+E7CVvmNsivtZTuei+6R1rzZLAWgdmDx2j2rkqu7X2og1gZHTMfap236U
DeRwMDc0dTKUCx2rfEOHWpxTc5zD0Eo53LvaPzs6/uMBu6nsJp8IRJPbXrOy
Wirho6orFS0bGc7uTLCZZG5qAew8o1tJXLec3qe7T2+tfD168o7tyuIEZp3E
V2NYM2/YNfzla3UGfmwuZJ6Zghobdh+vEYO4E41bsEfQdVye9a4AuxaYja98
IO4WOV74PX3bLdzf8xvqKNitUagjrwcZDUUql7tSf1YHpbTUSD+zotPDWz04
8CibjwQxfvXkp7t2lQ244b+k63t8Y3B9J6nQW/7wO4nHHAVWhJYDiTnITtaa
A9TM87xoAwl/xzeAdVkbxJ9e67w36/F+dL4atLCPlitgWqokzktrUg4/r8S1
ZaZPfiLcHInh+7yMT7XPqXKf6hXsJir8+En8WZi8uDI33WIed8bjnCf/F29f
lYYjagIA

-->

</rfc>
