<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.14 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-sframe-enc-00" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.13.0 -->
  <front>
    <title abbrev="SFrame">Secure Frame (SFrame)</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-sframe-enc-00"/>
    <author initials="E." surname="Omara" fullname="Emad Omara">
      <organization>Apple</organization>
      <address>
        <email>eomara@apple.com</email>
      </address>
    </author>
    <author initials="J." surname="Uberti" fullname="Justin Uberti">
      <organization>Google</organization>
      <address>
        <email>juberti@google.com</email>
      </address>
    </author>
    <author initials="S." surname="Murillo" fullname="Sergio Garcia Murillo">
      <organization>CoSMo Software</organization>
      <address>
        <email>sergio.garcia.murillo@cosmosoftware.io</email>
      </address>
    </author>
    <author initials="R. L." surname="Barnes" fullname="Richard L. Barnes" role="editor">
      <organization>Cisco</organization>
      <address>
        <email>rlb@ipv.sx</email>
      </address>
    </author>
    <author initials="Y." surname="Fablet" fullname="Youenn Fablet">
      <organization>Apple</organization>
      <address>
        <email>youenn@apple.com</email>
      </address>
    </author>
    <date year="2022" month="July" day="29"/>
    <area>Applications and Real-Time</area>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document describes the Secure Frame (SFrame) end-to-end encryption and authentication mechanism for media frames in a multiparty conference call, in which central media servers (SFUs) can access the media metadata needed to make forwarding decisions without having access to the actual media.
The proposed mechanism differs from other approaches through its use of media frames as the encryptable unit, instead of individual RTP packets, which makes it more bandwidth efficient and also allows use with non-RTP transports.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://sframe-wg.github.io/sframe/draft-ietf-sframe-enc.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-sframe-enc/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Secure Media Frames Working Group mailing list (<eref target="mailto:sframe@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/sframe/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/sframe-wg/sframe"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>Modern multi-party video call systems use Selective Forwarding Unit (SFU) servers to efficiently route RTP streams to call endpoints based on factors such as available bandwidth, desired video size, codec support, and other factors. In order for the SFU to work properly though, it needs to be able to access RTP metadata and RTCP feedback messages, which is not possible if all RTP/RTCP traffic is end-to-end encrypted.</t>
      <t>As such, two layers of encryptions and authentication are required:</t>
      <ol spacing="normal" type="1"><li>Hop-by-hop (HBH) encryption of media, metadata, and feedback messages between the the endpoints and SFU</li>
        <li>End-to-end (E2E) encryption of media between the endpoints</li>
      </ol>
      <t>While DTLS-SRTP can be used as an efficient HBH mechanism, it is inherently point-to-point and therefore not suitable for a SFU context. In addition, given the various scenarios in which video calling occurs, minimizing the bandwidth overhead of end-to-end encryption is also an important goal.</t>
      <t>This document proposes a new end-to-end encryption mechanism known as SFrame, specifically designed to work in group conference calls with SFUs.</t>
      <figure>
        <name>SRTP packet format</name>
        <artwork><![CDATA[
  +-------------------------------+-------------------------------+^+
  |V=2|P|X|  CC   |M|     PT      |       sequence number         | |
  +-------------------------------+-------------------------------+ |
  |                           timestamp                           | |
  +---------------------------------------------------------------+ |
  |           synchronization source (SSRC) identifier            | |
  |=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=| |
  |            contributing source (CSRC) identifiers             | |
  |                               ....                            | |
  +---------------------------------------------------------------+ |
  |                   RTP extension(s) (OPTIONAL)                 | |
+^---------------------+------------------------------------------+ |
| |   payload header   |                                          | |
| +--------------------+     payload  ...                         | |
| |                                                               | |
+^+---------------------------------------------------------------+^+
| :                       authentication tag                      : |
| +---------------------------------------------------------------+ |
|                                                                   |
++ Encrypted Portion                       Authenticated Portion +--+
]]></artwork>
      </figure>
    </section>
    <section anchor="terminology">
      <name>Terminology</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"/> <xref target="RFC8174"/> when, and only when, they appear in all
capitals, as shown here.</t>
      <dl>
        <dt>SFU:</dt>
        <dd>
          <t>Selective Forwarding Unit (AKA RTP Switch)</t>
        </dd>
        <dt>IV:</dt>
        <dd>
          <t>Initialization Vector</t>
        </dd>
        <dt>MAC:</dt>
        <dd>
          <t>Message Authentication Code</t>
        </dd>
        <dt>E2EE:</dt>
        <dd>
          <t>End to End Encryption</t>
        </dd>
        <dt>HBH:</dt>
        <dd>
          <t>Hop By Hop</t>
        </dd>
        <dt>KMS:</dt>
        <dd>
          <t>Key Management System</t>
        </dd>
      </dl>
    </section>
    <section anchor="goals">
      <name>Goals</name>
      <t>SFrame is designed to be a suitable E2EE protection scheme for conference call
media in a broad range of scenarios, as outlined by the following goals:</t>
      <ol spacing="normal" type="1"><li>Provide an secure E2EE mechanism for audio and video in conference calls
that can be used with arbitrary SFU servers.</li>
        <li>Decouple media encryption from key management to allow SFrame to be used
with an arbitrary KMS.</li>
        <li>Minimize packet expansion to allow successful conferencing in as many
network conditions as possible.</li>
        <li>Independence from the underlying transport, including use in non-RTP
transports, e.g., WebTransport.</li>
        <li>When used with RTP and its associated error resilience mechanisms, i.e., RTX
and FEC, require no special handling for RTX and FEC packets.</li>
        <li>Minimize the changes needed in SFU servers.</li>
        <li>Minimize the changes needed in endpoints.</li>
        <li>Work with the most popular audio and video codecs used in conferencing
scenarios.</li>
      </ol>
    </section>
    <section anchor="sframe">
      <name>SFrame</name>
      <t>We propose a frame level encryption mechanism that provides effective end-to-end encryption, is simple to implement, has no dependencies on RTP, and minimizes encryption bandwidth overhead. Because SFrame encrypts the full frame, rather than individual packets, bandwidth overhead is reduced by having a single IV and authentication tag for each media frame.</t>
      <t>Also, because media is encrypted prior to packetization, the encrypted frame is packetized using a generic RTP packetizer instead of codec-dependent packetization mechanisms. With this move to a generic packetizer, media metadata is moved from codec-specific mechanisms to a generic frame RTP header extension which, while visible to the SFU, is authenticated end-to-end. This extension includes metadata needed for SFU routing such as resolution, frame beginning and end markers, etc.</t>
      <t>The generic packetizer splits the E2E encrypted media frame into one or more RTP packets and adds the SFrame header to the beginning of the first packet and an auth tag to the end of the last packet.</t>
      <artwork><![CDATA[
      +-------------------------------------------------------+
      |                                                       |
      |  +----------+      +------------+      +-----------+  |
      |  |          |      |   SFrame   |      |Packetizer |  |       DTLS+SRTP
      |  | Encoder  +----->+    Enc     +----->+           +-------------------------+
 ,+.  |  |          |      |            |      |           |  |   +--+  +--+  +--+   |
 `|'  |  +----------+      +-----+------+      +-----------+  |   |  |  |  |  |  |   |
 /|\  |                          ^                            |   |  |  |  |  |  |   |
  +   |                          |                            |   |  |  |  |  |  |   |
 / \  |                          |                            |   +--+  +--+  +--+   |
Alice |                    +-----+------+                     |   Encrypted Packets  |
      |                    |Key Manager |                     |                      |
      |                    +------------+                     |                      |
      |                         ||                            |                      |
      |                         ||                            |                      |
      |                         ||                            |                      |
      +-------------------------------------------------------+                      |
                                ||                                                   |
                                ||                                                   v
                           +------------+                                      +-----+------+
            E2EE channel   |  Messaging |                                      |   Media    |
              via the      |  Server    |                                      |   Server   |
          Messaging Server |            |                                      |            |
                           +------------+                                      +-----+------+
                                ||                                                   |
                                ||                                                   |
      +-------------------------------------------------------+                      |
      |                         ||                            |                      |
      |                         ||                            |                      |
      |                         ||                            |                      |
      |                    +------------+                     |                      |
      |                    |Key Manager |                     |                      |
 ,+.  |                    +-----+------+                     |   Encrypted Packets  |
 `|'  |                          |                            |   +--+  +--+  +--+   |
 /|\  |                          |                            |   |  |  |  |  |  |   |
  +   |                          v                            |   |  |  |  |  |  |   |
 / \  |  +----------+      +-----+------+      +-----------+  |   |  |  |  |  |  |   |
 Bob  |  |          |      |   SFrame   |      |   De+     |  |   +--+  +--+  +--+   |
      |  | Decoder  +<-----+    Dec     +<-----+Packetizer +<------------------------+
      |  |          |      |            |      |           |  |        DTLS+SRTP
      |  +----------+      +------------+      +-----------+  |
      |                                                       |
      +-------------------------------------------------------+
]]></artwork>
      <t>The E2EE keys used to encrypt the frame are exchanged out of band using a secure E2EE channel.</t>
      <section anchor="sframe-format">
        <name>SFrame Format</name>
        <artwork><![CDATA[
  +------------+------------------------------------------+^+
  |S|LEN|X|KID |         Frame Counter                    | |
+^+------------+------------------------------------------+ |
| |                                                       | |
| |                                                       | |
| |                                                       | |
| |                                                       | |
| |                  Encrypted Frame                      | |
| |                                                       | |
| |                                                       | |
| |                                                       | |
| |                                                       | |
+^+-------------------------------------------------------+^+
| |                 Authentication Tag                    | |
| +-------------------------------------------------------+ |
|                                                           |
|                                                           |
+----+Encrypted Portion            Authenticated Portion+---+
]]></artwork>
      </section>
      <section anchor="sframe-header">
        <name>SFrame Header</name>
        <t>Since each endpoint can send multiple media layers, each frame will have a unique frame counter that will be used to derive the encryption IV. The frame counter must be unique and monotonically increasing to avoid IV reuse.</t>
        <t>As each sender will use their own key for encryption, so the SFrame header will include the key id to allow the receiver to identify the key that needs to be used for decrypting.</t>
        <t>Both the frame counter and the key id are encoded in a variable length format to decrease the overhead.
The length is up to 8 bytes and is represented in 3 bits in the SFrame header: 000 represents a length of 1, 001 a length of 2...
The first byte in the SFrame header is fixed and contains the header metadata with the following format:</t>
        <artwork><![CDATA[
 0 1 2 3 4 5 6 7
+-+-+-+-+-+-+-+-+
|R|LEN  |X|  K  |
+-+-+-+-+-+-+-+-+
SFrame header metadata
]]></artwork>
        <t>Reserved (R): 1 bit
    This field MUST be set to zero on sending, and MUST be ignored by receivers.
Counter Length (LEN): 3 bits
    This field indicates the length of the CTR fields in bytes (1-8).
Extended Key Id Flag (X): 1 bit
     Indicates if the key field contains the key id or the key length.
Key or Key Length: 3 bits
     This field contains the key id (KID) if the X flag is set to 0, or the key length (KLEN) if set to 1.</t>
        <t>If X flag is 0 then the KID is in the range of 0-7 and the frame counter (CTR) is found in the next LEN bytes:</t>
        <artwork><![CDATA[
 0 1 2 3 4 5 6 7
+-+-+-+-+-+-+-+-+---------------------------------+
|R|LEN  |0| KID |    CTR... (length=LEN)          |
+-+-+-+-+-+-+-+-+---------------------------------+
]]></artwork>
        <t>Frame counter byte length (LEN): 3bits
     The frame counter length in bytes (1-8).
Key id (KID): 3 bits
     The key id (0-7).
Frame counter (CTR): (Variable length)
     Frame counter value up to 8 bytes long.</t>
        <t>if X flag is 1 then KLEN is the length of the key (KID), that is found after the SFrame header metadata byte. After the key id (KID), the frame counter (CTR) will be found in the next LEN bytes:</t>
        <artwork><![CDATA[
 0 1 2 3 4 5 6 7
+-+-+-+-+-+-+-+-+---------------------------+---------------------------+
|R|LEN  |1|KLEN |   KID... (length=KLEN)    |    CTR... (length=LEN)    |
+-+-+-+-+-+-+-+-+---------------------------+---------------------------+
]]></artwork>
        <t>Frame counter byte length (LEN): 3bits
     The frame counter length in bytes (1-8).
Key length (KLEN): 3 bits
     The key length in bytes (1-8).
Key id (KID): (Variable length)
     The key id value up to 8 bytes long.
Frame counter (CTR): (Variable length)
     Frame counter value up to 8 bytes long.</t>
      </section>
      <section anchor="encryption-schema">
        <name>Encryption Schema</name>
        <t>SFrame encryption uses an AEAD encryption algorithm and hash function defined by
the ciphersuite in use (see <xref target="ciphersuites"/>).  We will refer to the following
aspects of the AEAD algorithm below:</t>
        <ul spacing="normal">
          <li>
            <tt>AEAD.Encrypt</tt> and <tt>AEAD.Decrypt</tt> - The encryption and decryption functions
for the AEAD.  We follow the convention of RFC 5116 <xref target="RFC5116"/> and consider
the authentication tag part of the ciphertext produced by <tt>AEAD.Encrypt</tt> (as
opposed to a separate field as in SRTP <xref target="RFC3711"/>).</li>
          <li>
            <tt>AEAD.Nk</tt> - The size of a key for the encryption algorithm, in bytes</li>
          <li>
            <tt>AEAD.Nn</tt> - The size of a nonce for the encryption algorithm, in bytes</li>
        </ul>
        <section anchor="key-selection">
          <name>Key Selection</name>
          <t>Each SFrame encryption or decryption operation is premised on a single secret
<tt>base\_key</tt>, which is labeled with an integer KID value signaled in the SFrame
header.</t>
          <t>The sender and receivers need to agree on which key should be used for a given
KID.  The process for provisioning keys and their KID values is beyond the scope
of this specification, but its security properties will bound the assurances
that SFrame provides.  For example, if SFrame is used to provide E2E security
against intermediary media nodes, then SFrame keys MUST be negotiated in a way
that does not make them accessible to these intermediaries.</t>
          <t>For each known KID value, the client stores the corresponding symmetric key
<tt>base\_key</tt>.  For keys that can be used for encryption, the client also stores
the next counter value CTR to be used when encrypting (initially 0).</t>
          <t>When encrypting a frame, the application specifies which KID is to be used, and
the counter is incremented after successful encryption.  When decrypting, the
<tt>base\_key</tt> for decryption is selected from the available keys using the KID
value in the SFrame Header.</t>
          <t>A given key MUST NOT be used for encryption by multiple senders.  Such reuse
would result in multiple encrypted frames being generated with the same (key,
nonce) pair, which harms the protections provided by many AEAD algorithms.
Implementations SHOULD mark each key as usable for encryption or decryption,
never both.</t>
          <t>Note that the set of available keys might change over the lifetime of a
real-time session.  In such cases, the client will need to manage key usage to
avoid media loss due to a key being used to encrypt before all receivers are
able to use it to decrypt.  For example, an application may make decryption-only
keys available immediately, but delay the use of encryption-only keys until (a)
all receivers have acknowledged receipt of the new key or (b) a timeout expires.</t>
        </section>
        <section anchor="key-derivation">
          <name>Key Derivation</name>
          <t>SFrame encrytion and decryption use a key and salt derived from the <tt>base\_key</tt>
associated to a KID.  Given a <tt>base\_key</tt> value, the key and salt are derived
using HKDF <xref target="RFC5869"/> as follows:</t>
          <artwork><![CDATA[
sframe_secret = HKDF-Extract(K, 'SFrame10')
sframe_key = HKDF-Expand(sframe_secret, 'key', AEAD.Nk)
sframe_salt = HKDF-Expand(sframe_secret, 'salt', AEAD.Nn)
]]></artwork>
          <t>The hash function used for HKDF is determined by the ciphersuite in use.</t>
        </section>
        <section anchor="encryption">
          <name>Encryption</name>
          <t>After encoding the frame and before packetizing it, the necessary media metadata
will be moved out of the encoded frame buffer, to be used later in the RTP
generic frame header extension. The encoded frame, the metadata buffer and the
frame counter are passed to SFrame encryptor.</t>
          <t>SFrame encryption uses the AEAD encryption algorithm for the ciphersuite in use.
The key for the encryption is the <tt>sframe\_key</tt> and the nonce is formed by XORing
the <tt>sframe\_salt</tt> with the current counter, encoded as a big-endian integer of
length <tt>AEAD.Nn</tt>.</t>
          <t>The encryptor forms an SFrame header using the S, CTR, and KID values provided.
The encoded header is provided as AAD to the AEAD encryption operation, with any
frame metadata appended.</t>
          <artwork><![CDATA[
def encrypt(S, CTR, KID, frame_metadata, frame):
  sframe_key, sframe_salt = key_store[KID]

  frame_ctr = encode_big_endian(CTR, AEAD.Nn)
  frame_nonce = xor(sframe_salt, frame_ctr)

  header = encode_sframe_header(S, CTR, KID)
  frame_aad = header + frame_metadata

  encrypted_frame = AEAD.Encrypt(sframe_key, frame_nonce, frame_aad, frame)
  return header + encrypted_frame
]]></artwork>
          <t>The encrypted payload is then passed to a generic RTP packetized to construct the RTP packets and encrypt it using SRTP keys for the HBH encryption to the media server.</t>
          <figure>
            <name>Encryption flow</name>
            <artwork><![CDATA[
   +----------------+  +---------------+
   | frame metadata |  |               |
   +-------+--------+  |               |
           |           |     frame     |
           |           |               |
           |           |               |
           |           +-------+-------+
           |                   |
header ----+------------------>| AAD
+-----+                        |
|  S  |                        |
+-----+                        |
| KID +--+--> sframe_key ----->| Key
|     |  |                     |
|     |  +--> sframe_salt -+   |
+-----+                    |   |
| CTR +--------------------+-->| Nonce
|     |                        |
|     |                        |
+-----+                        |
   |                       AEAD.Encrypt
   |                           |
   |                           V
   |                   +-------+-------+
   |                   |               |
   |                   |               |
   |                   |   encrypted   |
   |                   |     frame     |
   |                   |               |
   |                   |               |
   |                   +-------+-------+
   |                           |
   |                  generic RTP packetize
   |                           |
   |                           v
   V
+---------------+      +---------------+     +---------------+
| SFrame header |      |               |     |               |
+---------------+      |               |     |               |
|               |      |  payload 2/N  |     |  payload N/N  |
|  payload 1/N  |      |               |     |               |
|               |      |               |     |               |
+---------------+      +---------------+     +---------------+
]]></artwork>
          </figure>
        </section>
        <section anchor="decryption">
          <name>Decryption</name>
          <t>The receiving clients buffer all packets that belongs to the same frame using the frame beginning and ending marks in the generic RTP frame header extension, and once all packets are available, it passes it to SFrame for decryption.  The KID field in the SFrame header is used to find the right key for the encrypted frame.</t>
          <artwork><![CDATA[
def decrypt(frame_metadata, sframe):
  header, encrypted_frame = split_header(sframe)
  S, CTR, KID = parse_header(header)

  sframe_key, sframe_salt = key_store[KID]

  frame_ctr = encode_big_endian(CTR, AEAD.Nn)
  frame_nonce = xor(sframe_salt, frame_ctr)
  frame_aad = header + frame_metadata

  return AEAD.Decrypt(sframe_key, frame_nonce, frame_aad, encrypted_frame)
]]></artwork>
          <t>For frames that are failed to decrypt because there is key available for the KID in the SFrame header, the client MAY buffer the frame and retry decryption once a key with that KID is received.</t>
        </section>
        <section anchor="duplicate-frames">
          <name>Duplicate Frames</name>
          <t>Unlike messaging application, in video calls, receiving a duplicate frame doesn't necessary mean the client is under a replay attack, there are other reasons that might cause this, for example the sender might just be sending them in case of packet loss. SFrame decryptors use the highest received frame counter to protect against this. It allows only older frame pithing a short interval to support out of order delivery.</t>
        </section>
      </section>
      <section anchor="ciphersuites">
        <name>Ciphersuites</name>
        <t>Each SFrame session uses a single ciphersuite that specifies the following primitives:</t>
        <t>o A hash function used for key derivation and hashing signature inputs</t>
        <t>o An AEAD encryption algorithm <xref target="RFC5116"/> used for frame encryption, optionally
  with a truncated authentication tag</t>
        <t>o [Optional] A signature algorithm</t>
        <t>This document defines the following ciphersuites:</t>
        <table>
          <thead>
            <tr>
              <th align="left">Value</th>
              <th align="left">Name</th>
              <th align="left">Nh</th>
              <th align="left">Nk</th>
              <th align="left">Nn</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0x0001</td>
              <td align="left">AES_CM_128_HMAC_SHA256_8</td>
              <td align="left">32</td>
              <td align="left">16</td>
              <td align="left">12</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0002</td>
              <td align="left">AES_CM_128_HMAC_SHA256_4</td>
              <td align="left">32</td>
              <td align="left">16</td>
              <td align="left">12</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0003</td>
              <td align="left">AES_GCM_128_SHA256</td>
              <td align="left">32</td>
              <td align="left">16</td>
              <td align="left">12</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0004</td>
              <td align="left">AES_GCM_256_SHA512</td>
              <td align="left">64</td>
              <td align="left">32</td>
              <td align="left">12</td>
              <td align="left">RFC XXXX</td>
            </tr>
          </tbody>
        </table>
        <!-- RFC EDITOR: Please replace XXXX above with the RFC number assigned to this
document -->

<t>In the "AES_CM" suites, the length of the authentication tag is indicated by
the last value: "_8" indicates an eight-byte tag and "_4" indicates a
four-byte tag.</t>
        <t>In a session that uses multiple media streams, different ciphersuites might be
configured for different media streams.  For example, in order to conserve
bandwidth, a session might use a ciphersuite with 80-bit tags for video frames
and another ciphersuite with 32-bit tags for audio frames.</t>
        <section anchor="aes-cm-with-sha2">
          <name>AES-CM with SHA2</name>
          <t>In order to allow very short tag sizes, we define a synthetic AEAD function
using the authenticated counter mode of AES together with HMAC for
authentication.  We use an encrypt-then-MAC approach as in SRTP <xref target="RFC3711"/>.</t>
          <t>Before encryption or decryption, encryption and authentication subkeys are
derived from the single AEAD key using HKDF.  The subkeys are derived as
follows, where <tt>Nk</tt> represents the key size for the AES block cipher in use and
<tt>Nh</tt> represents the output size of the hash function:</t>
          <artwork><![CDATA[
def derive_subkeys(sframe_key):
  aead_secret = HKDF-Extract(sframe_key, 'SFrame10 AES CM AEAD')
  enc_key = HKDF-Expand(aead_secret, 'enc', Nk)
  auth_key = HKDF-Expand(aead_secret, 'auth', Nh)
  return enc_key, auth_key
]]></artwork>
          <t>The AEAD encryption and decryption functions are then composed of individual
calls to the CM encrypt function and HMAC.  The resulting MAC value is truncated
to a number of bytes <tt>tag_len</tt> fixed by the ciphersuite.</t>
          <artwork><![CDATA[
def compute_tag(auth_key, nonce, aad, ct):
  aad_len = encode_big_endian(len(aad), 8)
  ct_len = encode_big_endian(len(ct), 8)
  auth_data = aad_len + ct_len + nonce + aad + ct
  tag = HMAC(auth_key, auth_data)
  return truncate(tag, tag_len)

def AEAD.Encrypt(key, nonce, aad, pt):
  enc_key, auth_key = derive_subkeys(key)
  ct = AES-CM.Encrypt(enc_key, nonce, pt)
  tag = compute_tag(auth_key, nonce, aad, ct)
  return ct + tag

def AEAD.Decrypt(key, nonce, aad, ct):
  inner_ct, tag = split_ct(ct, tag_len)

  enc_key, auth_key = derive_subkeys(key)
  candidate_tag = compute_tag(auth_key, nonce, aad, inner_ct)
  if !constant_time_equal(tag, candidate_tag):
    raise Exception("Authentication Failure")

  return AES-CM.Decrypt(enc_key, nonce, inner_ct)
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="key-management">
      <name>Key Management</name>
      <t>SFrame must be integrated with an E2E key management framework to exchange and
rotate the keys used for SFrame encryption and/or signing.  The key management
framework provides the following functions:</t>
      <ul spacing="normal">
        <li>Provisioning KID/<tt>base\_key</tt> mappings to participating clients</li>
        <li>(optional) Provisioning clients with a list of trusted signing keys</li>
        <li>Updating the above data as clients join or leave</li>
      </ul>
      <t>It is up to the application to define a rotation schedule for keys.  For example,
one application might have an ephemeral group for every call and keep rotating key
when end points joins or leave the call, while another application could have a
persistent group that can be used for multiple calls and simply derives
ephemeral symmetric keys for a specific call.</t>
      <section anchor="sender-keys">
        <name>Sender Keys</name>
        <t>If the participants in a call have a pre-existing E2E-secure channel, they can
use it to distribute SFrame keys.  Each client participating in a call generates
a fresh encryption key and optionally a signing key pair.  The client then uses
the E2E-secure channel to send their encryption key and signing public key to
the other participants.</t>
        <t>In this scheme, it is assumed that receivers have a signal outside of SFrame for
which client has sent a given frame, for example the RTP SSRC.  SFrame KID
values are then used to distinguish generations of the sender's key.  At the
beginning of a call, each sender encrypts with KID=0.  Thereafter, the sender
can ratchet their key forward for forward secrecy:</t>
        <artwork><![CDATA[
sender_key[i+1] = HKDF-Expand(
                    HKDF-Extract(sender_key[i], 'SFrame10 ratchet'),
                      '', AEAD.Nk)
]]></artwork>
        <t>The sender signals such an update by incrementing their KID value.  A receiver
who receives from a sender with a new KID computes the new key as above.  The
old key may be kept for some time to allow for out-of-order delivery, but should
be deleted promptly.</t>
        <t>If a new participant joins mid-call, they will need to receive from each sender
(a) the current sender key for that sender, (b) the signing key for the sender,
if used, and (c) the current KID value for the sender.  Evicting a participant
requires each sender to send a fresh sender key to all receivers.</t>
      </section>
      <section anchor="mls">
        <name>MLS</name>
        <t>The Messaging Layer Security (MLS) protocol provides group authenticated key
exchange <xref target="I-D.ietf-mls-architecture"/> <xref target="I-D.ietf-mls-protocol"/>.  In
principle, it could be used to instantiate the sender key scheme above, but it
can also be used more efficiently directly.</t>
        <t>MLS creates a linear sequence of keys, each of which is shared among the members
of a group at a given point in time.  When a member joins or leaves the group, a
new key is produced that is known only to the augmented or reduced group.  Each
step in the lifetime of the group is know as an "epoch", and each member of the
group is assigned an "index" that is constant for the time they are in the
group.</t>
        <t>In SFrame, we derive per-sender <tt>base\_key</tt> values from the group secret for an
epoch, and use the KID field to signal the epoch and sender index.  First, we
use the MLS exporter to compute a shared SFrame secret for the epoch.</t>
        <artwork><![CDATA[
sframe_epoch_secret = MLS-Exporter("SFrame 10 MLS", "", AEAD.Nk)

sender_base_key[index] = HKDF-Expand(sframe_epoch_secret,
                           encode_big_endian(index, 4), AEAD.Nk)
]]></artwork>
        <t>For compactness, do not send the whole epoch number.  Instead, we send only its
low-order E bits.  Note that E effectively defines a re-ordering window, since
no more than 2^E epoch can be active at a given time.  Receivers MUST be
prepared for the epoch counter to roll over, removing an old epoch when a new
epoch with the same E lower bits is introduced.  (Sender indices cannot be
similarly compressed.)</t>
        <artwork><![CDATA[
KID = (sender_index << E) + (epoch % (1 << E))
]]></artwork>
        <t>Once an SFrame stack has been provisioned with the <tt>sframe_epoch_secret</tt> for an
epoch, it can compute the required KIDs and <tt>sender_base_key</tt> values on demand,
as it needs to encrypt/decrypt for a given member.</t>
        <artwork><![CDATA[
        ...
         |
Epoch 17 +--+-- index=33 -> KID = 0x211
         |  |
         |  +-- index=51 -> KID = 0x331
         |
         |
Epoch 16 +--+-- index=2 --> KID = 0x20
         |
         |
Epoch 15 +--+-- index=3 --> KID = 0x3f
         |  |
         |  +-- index=5 --> KID = 0x5f
         |
         |
Epoch 14 +--+-- index=3 --> KID = 0x3e
         |  |
         |  +-- index=7 --> KID = 0x7e
         |  |
         |  +-- index=20 -> KID = 0x14e
         |
        ...
]]></artwork>
        <t>MLS also provides an authenticated signing key pair for each participant.  When
SFrame uses signatures, these are the keys used to generate SFrame signatures.</t>
      </section>
    </section>
    <section anchor="media-considerations">
      <name>Media Considerations</name>
      <section anchor="sfu">
        <name>SFU</name>
        <t>Selective Forwarding Units (SFUs) as described in https://tools.ietf.org/html/rfc7667#section-3.7 receives the RTP streams from each participant and selects which ones should be forwarded to each of the other participants.
There are several approaches about how to do this stream selection but in general, in order to do so, the SFU needs to access metadata associated to each frame and modify the RTP information of the incoming packets when they are transmitted to the received participants.</t>
        <t>This section describes how this normal SFU modes of operation interacts with the E2EE provided by SFrame</t>
        <section anchor="lastn-and-rtp-stream-reuse">
          <name>LastN and RTP stream reuse</name>
          <t>The SFU may choose to send only a certain number of streams based on the voice activity of the participants. To reduce the number of SDP O/A required to establish a new RTP stream, the SFU may decide to reuse previously existing RTP sessions or even pre-allocate a predefined number of RTP streams and choose in each moment in time which participant media will be sending through it.
This means that in the same RTP stream (defined by either SSRC or MID) may carry media from different streams of different participants. As different keys are used by each participant for encoding their media, the receiver will be able to verify which is the sender of the media coming within the RTP stream at any given point if time, preventing the SFU trying to impersonate any of the participants with another participant's media.
Note that in order to prevent impersonation by a malicious participant (not the SFU) usage of the signature is required. In case of video, the a new signature should be started each time a key frame is sent to allow the receiver to identify the source faster after a switch.</t>
        </section>
        <section anchor="simulcast">
          <name>Simulcast</name>
          <t>When using simulcast, the same input image will produce N different encoded frames (one per simulcast layer) which would be processed independently by the frame encryptor and assigned an unique counter for each.</t>
        </section>
        <section anchor="svc">
          <name>SVC</name>
          <t>In both temporal and spatial scalability, the SFU may choose to drop layers in order to match a certain bitrate or forward specific media sizes or frames per second. In order to support it, the sender MUST encode each spatial layer of a given picture in a different frame. That is, an RTP frame may contain more than one SFrame encrypted frame with an incrementing frame counter.</t>
        </section>
      </section>
      <section anchor="video-key-frames">
        <name>Video Key Frames</name>
        <t>Forward and Post-Compromise Security requires that the e2ee keys are updated anytime a participant joins/leave the call.</t>
        <t>The key exchange happens async and on a different path than the SFU signaling and media. So it may happen that when a new participant joins the call and the SFU side requests a key frame, the sender generates the e2ee encrypted frame with a key not known by the receiver, so it will be discarded. When the sender updates his sending key with the new key, it will send it in a non-key frame, so the receiver will be able to decrypt it, but not decode it.</t>
        <t>Receiver will re-request an key frame then, but due to sender and sfu policies, that new key frame could take some time to be generated.</t>
        <t>If the sender sends a key frame when the new e2ee key is in use, the time required for the new participant to display the video is minimized.</t>
      </section>
      <section anchor="partial-decoding">
        <name>Partial Decoding</name>
        <t>Some codes support partial decoding, where it can decrypt individual packets without waiting for the full frame to arrive, with SFrame this won't be possible because the decoder will not access the packets until the entire frame
is arrived and decrypted.</t>
      </section>
    </section>
    <section anchor="overhead">
      <name>Overhead</name>
      <t>The encryption overhead will vary between audio and video streams, because in audio each packet is considered a separate frame, so it will always have extra MAC and IV, however a video frame usually consists of multiple RTP packets.
The number of bytes overhead per frame is calculated as the following
1 + FrameCounter length + 4
The constant 1 is the SFrame header byte and 4 bytes for the HBH authentication tag for both audio and video packets.</t>
      <section anchor="audio">
        <name>Audio</name>
        <t>Using three different audio frame durations
20ms (50 packets/s)
40ms (25 packets/s)
100ms (10 packets/s)
Up to 3 bytes frame counter (3.8 days of data for 20ms frame duration) and 4 bytes fixed MAC length.</t>
        <table>
          <thead>
            <tr>
              <th align="center">Counter len</th>
              <th align="center">Packets</th>
              <th align="center">Overhead</th>
              <th align="center">Overhead</th>
              <th align="center">Overhead</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center">bps@20ms</td>
              <td align="center">bps@40ms</td>
              <td align="center">bps@100ms</td>
            </tr>
            <tr>
              <td align="center">1</td>
              <td align="center">0-255</td>
              <td align="center">2400</td>
              <td align="center">1200</td>
              <td align="center">480</td>
            </tr>
            <tr>
              <td align="center">2</td>
              <td align="center">255 - 65K</td>
              <td align="center">2800</td>
              <td align="center">1400</td>
              <td align="center">560</td>
            </tr>
            <tr>
              <td align="center">3</td>
              <td align="center">65K - 16M</td>
              <td align="center">3200</td>
              <td align="center">1600</td>
              <td align="center">640</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="video">
        <name>Video</name>
        <t>The per-stream overhead bits per second as calculated for the following video encodings:
30fps@1000Kbps (4 packets per frame)
30fps@512Kbps (2 packets per frame)
15fps@200Kbps (2 packets per frame)
7.5fps@30Kbps (1 packet per frame)
Overhead bps = (Counter length + 1 + 4 ) * 8 * fps</t>
        <table>
          <thead>
            <tr>
              <th align="center">Counter len</th>
              <th align="center">Frames</th>
              <th align="center">Overhead</th>
              <th align="center">Overhead</th>
              <th align="center">Overhead</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center">bps@30fps</td>
              <td align="center">bps@15fps</td>
              <td align="center">bps@7.5fps</td>
            </tr>
            <tr>
              <td align="center">1</td>
              <td align="center">0-255</td>
              <td align="center">1440</td>
              <td align="center">1440</td>
              <td align="center">720</td>
            </tr>
            <tr>
              <td align="center">2</td>
              <td align="center">256 - 65K</td>
              <td align="center">1680</td>
              <td align="center">1680</td>
              <td align="center">840</td>
            </tr>
            <tr>
              <td align="center">3</td>
              <td align="center">56K - 16M</td>
              <td align="center">1920</td>
              <td align="center">1920</td>
              <td align="center">960</td>
            </tr>
            <tr>
              <td align="center">4</td>
              <td align="center">16M - 4B</td>
              <td align="center">2160</td>
              <td align="center">2160</td>
              <td align="center">1080</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="sframe-vs-perc-lite">
        <name>SFrame vs PERC-lite</name>
        <t><xref target="RFC8723"/> has significant overhead over SFrame because the overhead is per packet, not per frame, and OHB (Original Header Block) which duplicates any RTP header/extension field modified by the SFU.
<xref target="I-D.murillo-perc-lite"/> <eref target="https://mailarchive.ietf.org/arch/msg/perc/SB0qMHWz6EsDtz3yIEX0HWp5IEY/"/> is slightly better because it doesn't use the OHB anymore, however it still does per packet encryption using SRTP.
Below the the overheard in <xref target="I-D.murillo-perc-lite"/> implemented by Cosmos Software which uses extra 11 bytes per packet to preserve the PT, SEQ_NUM, TIME_STAMP and SSRC fields in addition to the extra MAC tag per packet.</t>
        <t>OverheadPerPacket = 11 + MAC length
Overhead bps = PacketPerSecond * OverHeadPerPacket * 8</t>
        <t>Similar to SFrame, we will assume the HBH authentication tag length will always be 4 bytes for audio and video even though it is not the case in this <xref target="I-D.murillo-perc-lite"/> implementation</t>
        <section anchor="audio-1">
          <name>Audio</name>
          <table>
            <thead>
              <tr>
                <th align="center">Overhead bps@20ms</th>
                <th align="center">Overhead  bps@40ms</th>
                <th align="center">Overhead bps@100ms</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="center">6000</td>
                <td align="center">3000</td>
                <td align="center">1200</td>
              </tr>
            </tbody>
          </table>
        </section>
        <section anchor="video-1">
          <name>Video</name>
          <table>
            <thead>
              <tr>
                <th align="center">Overhead  bps@30fps</th>
                <th align="center">Overhead  bps@15fps</th>
                <th align="center">Overhead  bps@7.5fps</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="center">(4 packets per frame)</td>
                <td align="center">(2 packets per frame)</td>
                <td align="center">(1 packet per frame)</td>
              </tr>
              <tr>
                <td align="center">14400</td>
                <td align="center">7200</td>
                <td align="center">3600</td>
              </tr>
            </tbody>
          </table>
          <t>For a conference with a single incoming audio stream (@ 50 pps) and 4 incoming video streams (@200 Kbps), the savings in overhead is 34800 - 9600 = ~25 Kbps, or ~3%.</t>
        </section>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <section anchor="no-per-sender-authentication">
        <name>No Per-Sender Authentication</name>
        <t>SFrame does not provide per-sender authentication of media data.  Any sender in a session can send media that will be associated with any other sender.  This is because SFrame uses symmetric encryption to protect media data, so that any receiver also has the keys required to encrypt packets for the sender.</t>
      </section>
      <section anchor="key-management-1">
        <name>Key Management</name>
        <t>Key exchange mechanism is out of scope of this document, however every client MUST change their keys when new clients joins or leaves the call for "Forward Secrecy" and "Post Compromise Security".</t>
      </section>
      <section anchor="authentication-tag-length">
        <name>Authentication tag length</name>
        <t>The cipher suites defined in this draft use short authentication tags for encryption, however it can easily support other ciphers with full authentication tag if the short ones are proved insecure.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document makes no requests of IANA.</t>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>The authors wish to specially thank Dr. Alex Gouaillard as one of the early contributors to the document. His passion and energy were key to the design and development of SFrame.</t>
    </section>
    <section anchor="test-vectors">
      <name>Test Vectors</name>
      <t>This section provides a set of test vectors that implementations can use to
verify that they correctly implement SFrame encryption and decryption.  For each
ciphersuite, we provide:</t>
      <ul spacing="normal">
        <li>[in] The <tt>base_key</tt> value (hex encoded)</li>
        <li>[out] The <tt>secret</tt>, <tt>key</tt>, and <tt>salt</tt> values derived from the <tt>base_key</tt> (hex encoded)</li>
        <li>A plaintext value that is encrypted in the following encryption cases</li>
        <li>
          <t>A sequence of encryption cases, including:
          </t>
          <ul spacing="normal">
            <li>[in] The <tt>KID</tt> and <tt>CTR</tt> values to be included in the header</li>
            <li>[out] The resulting encoded header (hex encoded)</li>
            <li>[out] The nonce computed from the <tt>salt</tt> and <tt>CTR</tt> values</li>
            <li>The ciphertext resulting from encrypting the plaintext with these parameters
(hex encoded)</li>
          </ul>
        </li>
      </ul>
      <t>An implementation should reproduce the output values given the input values:
* An implementation should be able to encrypt with the input values and the plaintext to produce the ciphertext.
* An implementation must be able to decrypt with the input values and the ciphertext to generate the plaintext.</t>
      <t>Line breaks and whitespace within values are inserted to conform to the width
requirements of the RFC format.  They should be removed before use.
These test vectors are also available in JSON format at <xref target="TestVectors"/>.</t>
      <section anchor="aescm128hmacsha2564">
        <name>AES_CM_128_HMAC_SHA256_4</name>
        <artwork><![CDATA[
CipherSuite:    0x01
Base Key:       101112131415161718191a1b1c1d1e1f
Key:            343d3290f5c0b936415bea9a43c6f5a2
Salt:           42d662fbad5cd81eb3aad79a
Plaintext:      46726f6d2068656176656e6c79206861
                726d6f6e79202f2f205468697320756e
                6976657273616c206672616d65206265
                67616e
]]></artwork>
        <artwork><![CDATA[
KID:            0x7
CTR:            0x0
Header:         1700
Nonce:          42d662fbad5cd81eb3aad79a
Ciphertext:     170065c67c6fb784631a7db1b589ffb6
                2d75b78e28b0899e632fbbee3b944747
                a6382d75b6bd3788dc7b71b9295c7fb9
                0b5098f7add14ef329
]]></artwork>
        <artwork><![CDATA[
KID:            0x7
CTR:            0x1
Header:         1701
Nonce:          42d662fbad5cd81eb3aad79b
Ciphertext:     1701ec742e98d667be810f153ff0d4da
                d7969f69b310aa7c6b9cb911e83af09b
                0f0a6d74772d8195c8c9dae3878fd1cb
                10edb4176d12e2387a
]]></artwork>
        <artwork><![CDATA[
KID:            0x7
CTR:            0x2
Header:         1702
Nonce:          42d662fbad5cd81eb3aad798
Ciphertext:     1702ac9b495d37a1e48c712ade5cba72
                df0bf90f24aa022a454cfb92d8b87cd5
                4335fb6b9eeded6a5aa4e2643d7a0994
                6646001d0a41b09557
]]></artwork>
        <artwork><![CDATA[
KID:            0xf
CTR:            0xaa
Header:         190faa
Nonce:          42d662fbad5cd81eb3aad730
Ciphertext:     190faaeaa5adc70cae0d6ebd36805fa8
                7d2351dd02c55c751cd351a7fdb7f092
                7b474eae3e800033e08100a440002da1
                7579678b36dc275789d5
]]></artwork>
        <artwork><![CDATA[
KID:            0x1ff
CTR:            0xaa
Header:         1a01ffaa
Nonce:          42d662fbad5cd81eb3aad730
Ciphertext:     1a01ffaaeaa5adc70cae0d6ebd36805f
                a87d2351dd02c55c751cd351a7fdb7f0
                927b474eae3e800033e08100a440002d
                a17579678b36dc9bbe558b
]]></artwork>
        <artwork><![CDATA[
KID:            0x1ff
CTR:            0xaaaa
Header:         2a01ffaaaa
Nonce:          42d662fbad5cd81eb3aa7d30
Ciphertext:     2a01ffaaaa170500225053f1a044e51c
                4e91a6b783f69b1714fb31531d95d5b8
                dd7926c2d43405b4f32b9b49dd6e0aa5
                aba2427a94ff97f81dcd2826
]]></artwork>
        <artwork><![CDATA[
KID:            0xffffffffffffff
CTR:            0xffffffffffffff
Header:         7fffffffffffffffffffffffffffff
Nonce:          42d662fbada327e14c552865
Ciphertext:     7fffffffffffffffffffffffffffffdc
                a3655d5117bc838d6f4382ca468a4f99
                2ff77bfd1d2f4391be6b33e8fb638dc4
                8aa82f57fd91430c714def0b2089c8bf
                b2ac9da92415
]]></artwork>
      </section>
      <section anchor="aescm128hmacsha2568">
        <name>AES_CM_128_HMAC_SHA256_8</name>
        <artwork><![CDATA[
CipherSuite:    0x02
Base Key:       202122232425262728292a2b2c2d2e2f
Key:            3fce747d505e46ec9b92d9f58ee7a5d4
Salt:           77fbf5f1d82c73f6d2b353c9
Plaintext:      46726f6d2068656176656e6c79206861
                726d6f6e79202f2f205468697320756e
                6976657273616c206672616d65206265
                67616e
]]></artwork>
        <artwork><![CDATA[
KID:            0x7
CTR:            0x0
Header:         1700
Nonce:          77fbf5f1d82c73f6d2b353c9
Ciphertext:     1700647513fce71aab7fed1e904fd924
                0343d77092c831f0d58fde0985a0f3e5
                ba4020e87a7b9c870b5f8f7f628d2769
                0cc1e571e4d391da5fbf428433
]]></artwork>
        <artwork><![CDATA[
KID:            0x7
CTR:            0x1
Header:         1701
Nonce:          77fbf5f1d82c73f6d2b353c8
Ciphertext:     17019e1bdf713b0d4c02f3dbf50a72ea
                773286e7da38f3872cc734f3e1b1448a
                ab5009b424e05495214f96d02e4e8f8d
                a975cc808f40f67cafead7cffd
]]></artwork>
        <artwork><![CDATA[
KID:            0x7
CTR:            0x2
Header:         1702
Nonce:          77fbf5f1d82c73f6d2b353cb
Ciphertext:     170220ad36fd9191453ace2d36a175ad
                8a69c1f16b8613d14b4f7ef30c68bc56
                09e349df38155cc1544d7dbfa079e3fa
                ae3c7883b448e75047caafe05b
]]></artwork>
        <artwork><![CDATA[
KID:            0xf
CTR:            0xaa
Header:         190faa
Nonce:          77fbf5f1d82c73f6d2b35363
Ciphertext:     190faadab9b284a4b9e3aea36b9cdcae
                4a58e141d3f0f52f240ef80a93dbb8d8
                09ede01b05b2cace18a22fb39c032724
                481c5baa181d6b793458355b0f30
]]></artwork>
        <artwork><![CDATA[
KID:            0x1ff
CTR:            0xaa
Header:         1a01ffaa
Nonce:          77fbf5f1d82c73f6d2b35363
Ciphertext:     1a01ffaadab9b284a4b9e3aea36b9cdc
                ae4a58e141d3f0f52f240ef80a93dbb8
                d809ede01b05b2cace18a22fb39c0327
                24481c5baa181dad5ad0f89a1cfb58
]]></artwork>
        <artwork><![CDATA[
KID:            0x1ff
CTR:            0xaaaa
Header:         2a01ffaaaa
Nonce:          77fbf5f1d82c73f6d2b3f963
Ciphertext:     2a01ffaaaae0f2384e4dc472cb92238b
                5b722159205c4481665484de66985f15
                5071655ca4e9d1c998781f8c7d439f8d
                1eb6f6071cd80fd22f7e8846ba91036a
]]></artwork>
        <artwork><![CDATA[
KID:            0xffffffffffffff
CTR:            0xffffffffffffff
Header:         7fffffffffffffffffffffffffffff
Nonce:          77fbf5f1d8d38c092d4cac36
Ciphertext:     7fffffffffffffffffffffffffffff4b
                8c7429d7ee83eec5e53808b80555b1f8
                0b1df9d97877575fa1c7fa35b6119c68
                ed6543020075959dcc4ca6900a7f9cf1
                d936b640bba41ca62f6c
]]></artwork>
      </section>
      <section anchor="aesgcm128sha256">
        <name>AES_GCM_128_SHA256</name>
        <artwork><![CDATA[
CipherSuite:    0x03
Base Key:       303132333435363738393a3b3c3d3e3f
Key:            2ea2e8163ff56c0613e6fa9f20a213da
Salt:           a80478b3f6fba19983d540d5
Plaintext:      46726f6d2068656176656e6c79206861
                726d6f6e79202f2f205468697320756e
                6976657273616c206672616d65206265
                67616e
]]></artwork>
        <artwork><![CDATA[
KID:            0x7
CTR:            0x0
Header:         1700
Nonce:          a80478b3f6fba19983d540d5
Ciphertext:     17000e426255e47ed70dd7d15d69d759
                bf459032ca15f5e8b2a91e7d348aa7c1
                86d403f620801c495b1717a35097411a
                a97cbb140671eb3b49ac3775926db74d
                57b91e8e6c
]]></artwork>
        <artwork><![CDATA[
KID:            0x7
CTR:            0x1
Header:         1701
Nonce:          a80478b3f6fba19983d540d4
Ciphertext:     170103bbafa34ada8a6b9f2066bc34a1
                959d87384c9f4b1ce34fed58e938bde1
                43393910b1aeb55b48d91d5b0db3ea67
                e3d0e02b843afd41630c940b1948e72d
                d45396a43a
]]></artwork>
        <artwork><![CDATA[
KID:            0x7
CTR:            0x2
Header:         1702
Nonce:          a80478b3f6fba19983d540d7
Ciphertext:     170258d58adebd8bf6f3cc0c1fcacf34
                ba4d7a763b2683fe302a57f1be7f2a27
                4bf81b2236995fec1203cadb146cd402
                e1c52d5e6a10989dfe0f4116da1ee4c2
                fad0d21f8f
]]></artwork>
        <artwork><![CDATA[
KID:            0xf
CTR:            0xaa
Header:         190faa
Nonce:          a80478b3f6fba19983d5407f
Ciphertext:     190faad0b1743bf5248f90869c945636
                6d55724d16bbe08060875815565e90b1
                14f9ccbdba192422b33848a1ae1e3bd2
                66a001b2f5bb727112772e0072ea8679
                ca1850cf11d8
]]></artwork>
        <artwork><![CDATA[
KID:            0x1ff
CTR:            0xaa
Header:         1a01ffaa
Nonce:          a80478b3f6fba19983d5407f
Ciphertext:     1a01ffaad0b1743bf5248f90869c9456
                366d55724d16bbe08060875815565e90
                b114f9ccbdba192422b33848a1ae1e3b
                d266a001b2f5bbc9c63bd3973c19bd57
                127f565380ed4a
]]></artwork>
        <artwork><![CDATA[
KID:            0x1ff
CTR:            0xaaaa
Header:         2a01ffaaaa
Nonce:          a80478b3f6fba19983d5ea7f
Ciphertext:     2a01ffaaaa9de65e21e4f1ca2247b879
                43c03c5cb7b182090e93d508dcfb76e0
                8174c6397356e682d2eaddabc0b3c101
                8d2c13c3570f61c1beaab805f27b565e
                1329a823a7a649b6
]]></artwork>
        <artwork><![CDATA[
KID:            0xffffffffffffff
CTR:            0xffffffffffffff
Header:         7fffffffffffffffffffffffffffff
Nonce:          a80478b3f6045e667c2abf2a
Ciphertext:     7fffffffffffffffffffffffffffff09
                981bdcdad80e380b6f74cf6afdbce946
                839bedadd57578bfcd809dbcea535546
                cc24660613d2761adea852155785011e
                633534f4ecc3b8257c8d34321c27854a
                1422
]]></artwork>
      </section>
      <section anchor="aesgcm256sha512">
        <name>AES_GCM_256_SHA512</name>
        <artwork><![CDATA[
CipherSuite:    0x04
Base Key:       404142434445464748494a4b4c4d4e4f
                505152535455565758595a5b5c5d5e5f
Key:            436774b0b5ae45633d96547f8f3cb06c
                8e6628eff2e4255b5c4d77e721aa3355
Salt:           31ed26f90a072e6aee646298
Plaintext:      46726f6d2068656176656e6c79206861
                726d6f6e79202f2f205468697320756e
                6976657273616c206672616d65206265
                67616e
]]></artwork>
        <artwork><![CDATA[
KID:            0x7
CTR:            0x0
Header:         1700
Nonce:          31ed26f90a072e6aee646298
Ciphertext:     1700f3e297c1e95207710bd31ccc4ba3
                96fbef7b257440bde638ff0f3c891154
                0136df61b26220249d6c432c245ae8d5
                5ef45bfccf32530a15aeaaf313a03838
                e51bd45652
]]></artwork>
        <artwork><![CDATA[
KID:            0x7
CTR:            0x1
Header:         1701
Nonce:          31ed26f90a072e6aee646299
Ciphertext:     170193268b0bf030071bff443bb6b447
                1bdfb1cc81bc9625f4697b0336ff4665
                d15f152f02169448d8a967fb06359a87
                d2145398de0ce3fbe257b0992a3da153
                7590459f3c
]]></artwork>
        <artwork><![CDATA[
KID:            0x7
CTR:            0x2
Header:         1702
Nonce:          31ed26f90a072e6aee64629a
Ciphertext:     1702649691ba27c4c01a41280fba4657
                c03fa7fe21c8f5c862e9094227c3ca3e
                c0d9468b1a2cb060ff0978f25a24e6b1
                06f5a6e1053c1b8f5fce794d88a0e481
                8c081e18ea
]]></artwork>
        <artwork><![CDATA[
KID:            0xf
CTR:            0xaa
Header:         190faa
Nonce:          31ed26f90a072e6aee646232
Ciphertext:     190faa2858c10b5ddd231c1f26819490
                521678603a050448d563c503b1fd890d
                02ead01d754f074ecb6f32da9b2f3859
                f380b4f47d4edd1e15f42f9a2d7ecfac
                99067e238321
]]></artwork>
        <artwork><![CDATA[
KID:            0x1ff
CTR:            0xaa
Header:         1a01ffaa
Nonce:          31ed26f90a072e6aee646232
Ciphertext:     1a01ffaa2858c10b5ddd231c1f268194
                90521678603a050448d563c503b1fd89
                0d02ead01d754f074ecb6f32da9b2f38
                59f380b4f47d4e3bf7040eb10ec25b81
                26b2ce7b1d9d31
]]></artwork>
        <artwork><![CDATA[
KID:            0x1ff
CTR:            0xaaaa
Header:         2a01ffaaaa
Nonce:          31ed26f90a072e6aee64c832
Ciphertext:     2a01ffaaaad9bc6a258a07d210a814d5
                45eca70321c0e87498ada6e5c708b7ea
                d162ffcf4fbaba1eb82650590a87122b
                4d95fe36bd88b278812166d26e046ed0
                a530b7ee232ee0f2
]]></artwork>
        <artwork><![CDATA[
KID:            0xffffffffffffff
CTR:            0xffffffffffffff
Header:         7fffffffffffffffffffffffffffff
Nonce:          31ed26f90af8d195119b9d67
Ciphertext:     7fffffffffffffffffffffffffffffaf
                480d4779ce0c02b5137ee6a61e026c04
                ac999cb0c97319feceeb258d58df23bc
                e14979e5c67a431777b34498062e72f9
                39ca42ec84ffbc7b50eff923f515a2df
                760c
]]></artwork>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <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">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <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="RFC5116">
          <front>
            <title>An Interface and Algorithms for Authenticated Encryption</title>
            <author fullname="D. McGrew" initials="D." surname="McGrew">
              <organization/>
            </author>
            <date month="January" year="2008"/>
            <abstract>
              <t>This document defines algorithms for Authenticated Encryption with Associated Data (AEAD), and defines a uniform interface and a registry for such algorithms.  The interface and registry can be used as an application-independent set of cryptoalgorithm suites.  This approach provides advantages in efficiency and security, and promotes the reuse of crypto implementations.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5116"/>
          <seriesInfo name="DOI" value="10.17487/RFC5116"/>
        </reference>
        <reference anchor="RFC5869">
          <front>
            <title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <author fullname="P. Eronen" initials="P." surname="Eronen">
              <organization/>
            </author>
            <date month="May" year="2010"/>
            <abstract>
              <t>This document specifies a simple Hashed Message Authentication Code (HMAC)-based key derivation function (HKDF), which can be used as a building block in various protocols and applications.  The key derivation function (KDF) is intended to support a wide range of applications and requirements, and is conservative in its use of cryptographic hash functions.  This document is not an Internet  Standards Track specification; it is published for informational  purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5869"/>
          <seriesInfo name="DOI" value="10.17487/RFC5869"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="TestVectors" target="https://github.com/eomara/sframe/blob/master/test-vectors.json">
          <front>
            <title>SFrame Test Vectors</title>
            <author>
              <organization/>
            </author>
            <date year="2021"/>
          </front>
        </reference>
        <reference anchor="RFC3711">
          <front>
            <title>The Secure Real-time Transport Protocol (SRTP)</title>
            <author fullname="M. Baugher" initials="M." surname="Baugher">
              <organization/>
            </author>
            <author fullname="D. McGrew" initials="D." surname="McGrew">
              <organization/>
            </author>
            <author fullname="M. Naslund" initials="M." surname="Naslund">
              <organization/>
            </author>
            <author fullname="E. Carrara" initials="E." surname="Carrara">
              <organization/>
            </author>
            <author fullname="K. Norrman" initials="K." surname="Norrman">
              <organization/>
            </author>
            <date month="March" year="2004"/>
            <abstract>
              <t>This document describes the Secure Real-time Transport Protocol (SRTP), a profile of the Real-time Transport Protocol (RTP), which can provide confidentiality, message authentication, and replay protection to the RTP traffic and to the control traffic for RTP, the Real-time Transport Control Protocol (RTCP).   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3711"/>
          <seriesInfo name="DOI" value="10.17487/RFC3711"/>
        </reference>
        <reference anchor="I-D.ietf-mls-architecture">
          <front>
            <title>The Messaging Layer Security (MLS) Architecture</title>
            <author fullname="Benjamin Beurdouche">
              <organization>Inria &amp; Mozilla</organization>
            </author>
            <author fullname="Eric Rescorla">
              <organization>Mozilla</organization>
            </author>
            <author fullname="Emad Omara">
              <organization>Google</organization>
            </author>
            <author fullname="Srinivas Inguva">
              <organization>Twitter</organization>
            </author>
            <author fullname="Albert Kwon">
              <organization>MIT</organization>
            </author>
            <author fullname="Alan Duric">
              <organization>Wire</organization>
            </author>
            <date day="16" month="June" year="2022"/>
            <abstract>
              <t>   The Messaging Layer Security (MLS) protocol [I-D.ietf-mls-protocol]
   specification has the role of defining a Group Key Agreement
   protocol, including all the cryptographic operations and
   serialization/deserialization functions necessary for scalable and
   secure group messaging.  The MLS protocol is meant to protect against
   eavesdropping, tampering, message forgery, and provide further
   properties such as Forward Secrecy (FS) and Post-Compromise Security
   (PCS) in the case of past or future device compromises.

   This document describes a general secure group messaging
   infrastructure and its security goals.  It provides guidance on
   building a group messaging system and discusses security and privacy
   tradeoffs offered by multiple security mechanisms that are part of
   the MLS protocol (e.g., frequency of public encryption key rotation).

   The document also provides guidance for parts of the infrastructure
   that are not standardized by the MLS Protocol document and left to
   the application or the infrastructure architects to design.

   While the recommendations of this document are not mandatory to
   follow in order to interoperate at the protocol level, they affect
   the overall security guarantees that are achieved by a messaging
   application.  This is especially true in case of active adversaries
   that are able to compromise clients, the delivery service, or the
   authentication service.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-mls-architecture-08"/>
        </reference>
        <reference anchor="I-D.ietf-mls-protocol">
          <front>
            <title>The Messaging Layer Security (MLS) Protocol</title>
            <author fullname="Richard Barnes">
              <organization>Cisco</organization>
            </author>
            <author fullname="Benjamin Beurdouche">
              <organization>Inria &amp; Mozilla</organization>
            </author>
            <author fullname="Raphael Robert">
	 </author>
            <author fullname="Jon Millican">
              <organization>Facebook</organization>
            </author>
            <author fullname="Emad Omara">
              <organization>Google</organization>
            </author>
            <author fullname="Katriel Cohn-Gordon">
              <organization>University of Oxford</organization>
            </author>
            <date day="11" month="July" year="2022"/>
            <abstract>
              <t>   Messaging applications are increasingly making use of end-to-end
   security mechanisms to ensure that messages are only accessible to
   the communicating endpoints, and not to any servers involved in
   delivering messages.  Establishing keys to provide such protections
   is challenging for group chat settings, in which more than two
   clients need to agree on a key but may not be online at the same
   time.  In this document, we specify a key establishment protocol that
   provides efficient asynchronous group key establishment with forward
   secrecy and post-compromise security for groups in size ranging from
   two to thousands.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-mls-protocol-16"/>
        </reference>
        <reference anchor="RFC8723">
          <front>
            <title>Double Encryption Procedures for the Secure Real-Time Transport Protocol (SRTP)</title>
            <author fullname="C. Jennings" initials="C." surname="Jennings">
              <organization/>
            </author>
            <author fullname="P. Jones" initials="P." surname="Jones">
              <organization/>
            </author>
            <author fullname="R. Barnes" initials="R." surname="Barnes">
              <organization/>
            </author>
            <author fullname="A.B. Roach" initials="A.B." surname="Roach">
              <organization/>
            </author>
            <date month="April" year="2020"/>
            <abstract>
              <t>In some conferencing scenarios, it is desirable for an intermediary to be able to manipulate some parameters in Real-time Transport Protocol (RTP) packets, while still providing strong end-to-end security guarantees. This document defines a cryptographic transform for the Secure Real-time Transport Protocol (SRTP) that uses two separate but related cryptographic operations to provide hop-by-hop and end-to-end security guarantees.  Both the end-to-end and hop-by-hop cryptographic algorithms can utilize an authenticated encryption with associated data (AEAD) algorithm or take advantage of future SRTP transforms with different properties.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8723"/>
          <seriesInfo name="DOI" value="10.17487/RFC8723"/>
        </reference>
        <reference anchor="I-D.murillo-perc-lite">
          <front>
            <title>End to End Media Encryption Procedures</title>
            <author fullname="Sergio Garcia Murillo">
              <organization>CoSMo Software Consulting</organization>
            </author>
            <author fullname="Alexandre Gouaillard">
              <organization>CoSMo Software Consulting</organization>
            </author>
            <date day="12" month="May" year="2020"/>
            <abstract>
              <t>   In some conferencing scenarios, it is desirable for an intermediary
   to be able to manipulate some RTP parameters, while still providing
   strong end-to-end security guarantees.  This document defines a
   procedure to perform end to end media authenticated encryption.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-murillo-perc-lite-01"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+V963bcyJHmfzwFRj5zmhwWS7hfeNxeqyWqpenWZUT1xcf2
SAkgQcIqFsqFKkp0s+fsa+zr7ZPsF5GZuBRQFFtt+Xh22LbIQuUlMjIy4ovI
yMTx8bG1qTYLeWKfyXy7lvbjtbiU9sEZ/z60RJat5RW+5c9WUedL/D6xi7Uo
N8eV3JTHTUlfHctlfuw4Vi428rxeX5/YzaawrGq1PrE3622z8RwndTyr2ayl
uDyxn56+fmwJ/H1i33uwWi0qVKzqZWOLZWG/kmJx/Lq6lPesd/L6fb0uUGG5
keul3Bw/oq4t0ORbV3K5lSeWbZ+v6+0KLelBPJNFJdRQmnv4enO9As33fqjX
76rluf01labnl6Ja4Lkawe9pNPN6fU7fiHV+gW8uNptVc3L/PhWkR9WVnJti
9+nB/Wxdv2/kfdXEfap6Xm0utlnb7PH7c/0tfbkAe5pNr+W20FzVm1e1aWyS
x/OLzeXinmWJ7eaiXmPsx2jVtqtlc2Kfzu0Xl2It+Imap9NLUfQegmyxrP7G
rD6xie+Sn0vFCVlTyd8Lej7P68tB6/8+t7/L5HpT9Zr/d0xstew/H/bwdV2f
D7v4y5bL/v6cvxl1cja3n23X1WJR93o5k+vzqra/BsMxrf3vh709rM+e1fZZ
XW7eQ7L6vTbcwvycW5hfqhZ+n9fNZd3o4mD8gJJX82/n9lcCItf0SHlV5Rdi
XdjD73bIqJq87ve+XmS/r1ZX8+YDP13XtN4gopt6PejyD3P7scgWctPr8A/1
Vi6X/ecfmcNrrtCbQ6talvX6EuWveK28hgB+L3N03pxwRa0A7qk1zt/busA9
VUCszyWE1sisllQ0fl9JjJHYbFFnWCsNVup9kvPjK9XM/C9NveSmCsj/ie05
nmtZ1vHxsS0yaASRbyzr9UXV2FAw20u53NiFbPJ1lcnG3lzIaeVky2VxvKmx
Kgr8ma+vV8QSViC0OtCKVir2pcSsLavm0gYn8Im0A1PcgPG2sC+3i021EuvN
tZ3Xy1Ku0Zy0c7FYzKjA+wvMup2jwbVY6OqQqCu5boiY75pDlEU7eS4bRa8q
cyk3AgMW9lLKQhb2pobGeSeJCEhcQaqokHnVsN57D6bW2419Ia7oC9NYze2B
QVvT9RyckvZqXa/qBo12YyuqsiSSynV9adeotrYhBeta5BfMRmi98wu72jT2
tpF2XQ4ZIRTlmpEkbvZ2WW2IAZhPaBFUqJZFdVUVRMqr1y/tlcjfyU0z0wyi
sYGhG/uyxlxlmIf3VbG5sGVZVnlFk8pTs2hq/LOA2mQ6aNz2sl4eU4tg8LJZ
1etNM1ficVkVBeTbsn5DBmBdF9ucZtR6VhewBmrijtXMgTBZ86TZzTVIvlTt
n8kFhBCybz/u2P4dRsZTd9hOJDjdErq4xiLdbiSPUlksLsCNQ9xWdbUEGzNB
EwD5KgWLud1swQYwUlyRvSAWtlyYkURXa5RXdDbV3+QM0gYBQLUVjXnG/FET
p1ucY9RY8AU9geTyUnj8HZECo/iOhUCuQS2Jzjn6wKhI1pjYDGJDJOBPLUw0
mlYm2c6+fvjSLlEhw0ziq6YR57KdTyzHZb2xIWZNRQ1VJc0btXKfK2KyiGFU
brwSZYEZfKBYMrM372uYvmviM8SoW6zN1GqFMrbX8q9b4taJBbXhzu0n9eo4
uz6+qFf2wZOvnhz2F7yR5Fk7OMXJ0cDAks17KZfMRyXsZiqpPDiLzry5fdqN
5uDUO53sbNBW245l/XBRgVWPXn97dnxG/CbFgJnYkqSQZCx7ywED6ZYvT15F
CumC9A/JILdJlPAfTCMJhyxpfdHUNNtKrVQSDsGiAf21kR82LDiigI0B0TNg
kitN6pVYV/UW8wJ1Rn82nYLrFhAtkTqHyoUsXFbL6rL6Gz2i+t2yrrFsLrRi
mNbEGI1a7fjzkiRcYBTntVjMd7W91mYoD/l9v6e5TtO9W9bvl8ROZQlmdrOC
HgVbQfs1L7TzpdK3vEwwQgaIu8pdKV1iG6mb/6IfCMDR8e0/H/3+P4/Qys33
X3o3L29+vLHthw9h+G6e3ZD9s1++5l+2+mRD/fx1ywQtt5dARrb5ubFv/h60
cCs39v6fDVB2sxGXq1vK3I2Wj/2MaWmulzmskgEzdlNv1znZ97NXDw9tSCN0
Qln1mNLScvPl0a/672bMF1o4ABzbDUm6oeThDiXNBF9u4y79zPFz2/efi7vm
h7QQNIJcEs44AFY5ePHy9dMXzx98ezhJy9F/Tnfwy2i5YVpW4npRQ0WQnuB5
/Bizdmi5mebLERcwjdu3MfimpeXX/Ci+/Oo5gma4sU/29LFjBTfifLrcyX6+
/BJauJVf/wO+HMFgaptvv4SWJ+qnfx50Q+yVxVCOtPb96UR5I1/eO+sApq3c
l3s/Ewp8LdewSPWiPr+2GAi/k9ek5YF57j377uz1vZn6bT9/wX+/Ov2P756+
On1Ef589efDtt+0fqoSFDy+++1Z/T391NR++ePbs9PkjVRlP7Z1Hzx784R5D
DeueWVL3yNhsBraN4IyCYxWFMFZruVFYwLg4Bb6wvgKgcgP7p5/+5dXjh57r
pj//rD8kbhzgw3twTiPEJYyc+gh2XhPIl2LNnsxiYeViBVCwgOVGF80FGUrC
DDBwsHMn1sltgPjBNw9YXZzBLuYXh5b19Huq8RRfVmJh1LTyDS3r2YOH9O0z
ha76k0ulHgLaWhbg0ykVOl2yOaZfp61FtywgIPoW6M7+6pp+WdY3z87o0TcY
2DOxRMPMxDNG9CQAXwM/NJb2VatmYO0J8nagiPomZLGRuTIv8IMuFVbaAQKW
gnTsC2Zr0inwQ87ZR2pxEvMTTgHAETrLrhkNlTU5MsRAgjXwpy1g1ZfrmqAU
wZ5G+a1MydAJFduiqnk6FexC37vohBzmzYXYDDAkIxaxziqg7/U1Qz7twWCG
gV0fyRxIZ2Fc0B58YreQVstlx9aNdsU0kNI8pI6oc9XXstcdJgfd+HP7mUKF
0ixR+WEl2MB0TQL5k9dRbhfdyIhTFSM3EHFNfSwBowmjoYgCq+yJGp8DnQUE
ZQu5Ahhk1vAwiPdbPIDvw8DUuI3kreaLLYs0OX/oS7uWzMzWu5zZcn4+n9k/
yOy1eYi+wrn9A2S4x2laDTRJ5DWLpqnzilWXXK8xh2uI3qJiqtrJRdPVXKLp
V69/pD6p8uPThzPj0YAehVbhQ6NGwVibBALlTWHjWIOiqMdqGjT1Qp6Mjihg
fEMJiD9avvVVUDrBeIn5PFSOW9QNOXyr7UKMRZSd1UYxpy+uGAGNtF0pc3LX
dcD4hzZSYetIg72QV3IxjetZ2ldq+TTkKGlFNekPzGj1N3AslI/Lf5BQz8BX
8lztVmgqNIZ+MJdKgWqXhrroqBg7NnP7K5kLjiGo1aFLq0AJ5HqhRoS5Fey0
g/xlP0bSxkcmnCbQDvd2mytdYoI+GM/yHON5+v2UY0yQgERFCoq2dMEb8rTh
Z6EfTa9WZ03njIOrFQUQak2U1uWzfswHpUqjVU0pPNs2irRzuZRruPudYcbX
6354iAXk2LB9M+yqt0QgdUrg0NElOMI6o22/a3u2G0fT5QulBFR3xvXrtT9s
T42JqNYotAXDyu/lcAd4flWpMIcOuWFdsYSJAWbpJHFuswvbNaY0D4RqN+xH
U0arlEJK7FzoKBHUR73YqmlQRGbyvFoumd0s6hBVsX4nyQ2Xm3yuAM+YT1Ao
i0qLJUxNbz57QkLoo8YygFVbqwhdL4SnpK0odLRVibtml+ZHRxtmmhdAtW7M
HKv6S2YWi6muREPQxReiLd1ztunnU6Hska7/qTD2pqvfI+FogqiJZ0eD+j0S
brpfmo/ds5fdlPUqUbDo6EzbKNMeUFLNLpPq9HdMAh72CPndUW8w+5kINs2O
5reQedszXemIB9z/l0b/9uaLW7l3dCv32tb7/6Nm79/86dZJ/c/9X93WrH20
O95xzU9o9r59O7UfbXaStw8WFVDFZN0p3k402/PJ9BrvC+xEnQ5xr/cQvWco
tzY7tY7+Ds2qbz7K2/9vmv1kHXl7s7fQ8yla9TM1e3Vbs3cQsD11zBIatM6u
GgGJJUAqT4vyb8nw3ZF2KqYyEOwxS67wmMyhKXnG0N1Uu2PrbaV+6x2d+usp
3X6X1rsP/0C+TxLzTySDn3kh/vfSRv/IZj+TAflV5s7gqX3UfqJxNnhq38+n
QYmP4qlPBD4fw1NXn9aswVN/Z1D5VZ21H4fjnkTq+P8jeWT+3s/brgQF3hRg
/21HIB4qMvWzngOgH02pio/5Fbc961eacCx+raPzST+/Wndqd5HdXzbQ7+S1
DkRR2oZaTMop5XmkkLv8oGJfBQVtyQmlIEwbzOgHZrW1h1f6m98YSXjMWw57
NoV/yVaY2gw+u/n29PnNjzffPH3U46Lq6mG9pX2BScaNt50+aRvukybt/7/a
ndY1y/0f1/d/i9qfvsWptjbHfe9sCr2e3tS8Zav3znL+6T+/tjbTfXTrHujk
xifVa1Vbp3qecNjNOqtoX4FDvSZkzxtBDYcFOWGx3eVRqVUzVVqpwPfVgjYY
rijuvl1Wf90a3ZhrdcOxdi5ltpY2FDJfU7y9FxSmgTz9noKduw1cbpsN11Wt
c2C9XtabeqnzcDCAtRSscCkge1VXBQW21xK9qeQwppcGhOaYFApeo/NqbdO+
JW1Wcby7F/Nv6okQJdfV8Vf+mmpWRbcXRc/WMpfVlQpo6oyO67Ywc6OfOscc
oc4LqTpfnoPmr2q9UTJkhc7MMt2y+eH4XaH2FCnpirckF3J5jhbUhrZiOPNI
Ud1uPLCh02UrGLoVFU3s7HojVaiWdw9WawnebVQnvp1RCLhajtlzYjuO05Wn
JCvdNqyiO8O37uCRN58rClSEl3qdbJeoKKsPtJkNkih/RlRLFUHWBdpIeLvB
1G2YKh6ctCbWsV3bwzACO7QjO8aq2vnPunlFVhQrjpKqvlErb7fMkEDTv1lk
ryTvlBX2wavDE/QHljE04Uh+WclFYXPuAOa/kTw/QGoUNGchBdVq/8iUqc6X
9Vpt4BjhauaWseffKoYegGZ0puZntzfaLCKdoLjWTQF9evj6lSrFs6rm/sA9
Tg7n1iltOpB0kRPzFOZsAb168ONgTLRrqtuuylY6VbeDudJCq9NL6ZOiY25R
63hMv9RgBsPoj2OqwQOAnUPT9492STTSjp1irDMb94gqxCyqo0u5WHNPy15t
h6ooWSQsVbUS327YO8dxux6Hq/QAHD1kocWDwlRcyg8bm+SKOfwL5PHjdqmT
WOfGbqEfqKCEpQM15i95xANr8sv70eL9eDBcXreLoRD2J2+XPUbf7MjaN73Z
3J3/bq7BdZR9POb3iX3w/VD7Haraw7JXYgEbMlR0i5p1btWff1fNP8kJfRyv
GiKIaZ0pnd5OtyiV1dtVYq2Ook7n9oO2WF+MZ3vFyVjQzy5Tt37XSZp7w7wh
SQPhfUH7xkjabVL4y+Tvdpo+t1QOlMa0aN5JpvcIaE+890vnZ5F4YMEuSco+
o7QlYVnDJAT6ZssZ00v7wemDR4MTMIvzeg2Le8mK8EI0QBzbpUqCKmSpE5gs
zg+pVhewWttK2XjCXweNlPZPP/W+aX7++XBu2z9oVLmWZbct3Bp0S9BO/KYx
C5GJ6ijJJIphJfyb/Za+mesBvmUS1aNHUj86Zt7vHOkxOIwymfRgaLLNsQhu
gWlUFKnsl3p5RUBP5e2/evzQDl030nl19OfPPxvs0lQEum112macdkFHTMzI
FGcoy55yVdocjp1xHQgir16pUzqckdBINAOLrI2mYOPFiY4//fS/QJEfuy6x
uuPS83eGG3RehAgQLSreAektq2etuPfaWY7bWdacTnXHln4DoaRlo7MHKXnv
lND7WCp7mJk+reRamNMAQKCXlT4z0+a6NASBN9ZbOk3zpzcY3dveAZSFgOC0
aW9LTqGkiC1ZU7WCKPtPLGQxhKiW0u46ZUK7GDTVLVBjtM/zcr6GwJtsEGZv
c1FvMUF9N0CoMxQWKVWlGzD3fKqGvuWcJcoCIWTLwSkNQaoeqQ0NKJPXtUYn
TQ7mWCxUhIvMEQbl52TbDSedcaCq2lzrsz4bymVSNocNDotr02wBf0CMxSZP
T4nJowK5j8mJ+iAoQ2pG6KrLnjSOny7M6SOmS0ucE6bbqLxV9jTX19rjXMK5
aWbKGOvWeNgGGi/leb1RuXLsAb0X14q4opbqWBGfhEP9S306qZd708h+lxgx
pvGxyXtSZz9apirLnC/4QE2zAR5v9NJf489VzbDdbq4vYecpawZU9kVNM4dp
H+Va7vqevZ74XIvqzmot/lC1E37v+ZKUsNu2BpIOKpVVC0fZoSX/w873wiSX
8RR3J6SNoJAcsMBqHNx1pVKSFRMUQQyTscoulbuooFAvP7MbJKlQIqTzepmA
PssGXrFa1w0rBZOXxQS3J+B0qNacHwK1luLP0KV8YtbrA31YidahSeTeMyOk
ddtIiFrjJO1nlF/FUQbrPa9jTBJKUYdt6Z2UN1qXnMVLuVUsta3H2vCRU1Az
s1hjHsIWVGujoi7E+lIJXJdo3JjVxGaBEl13jCHk+anJVtSn3nXqOaV7aTGn
xG5iXHu+a5+KBV2SwhpZTT6b9RxkKFFm6iWbrZ3puKzOLzY6N5SjDgpIV6Wk
40BcwVrTGXz+2NDqZNF4ulTJazmEoRmsB1ZJRqOqBGMewpZTwze1pcI/OlxV
Q20WW533R8UU93cD+pk66SYYcxi1TSe7zblGTvFt4yiosqvrKCWtt3QuxbXS
Ox33jimb3lIqu2VSdcmEbuTiWmniQi6EChbpo7PdZHADWsqBGRYw/IfWkGQV
hstJc8FQ0ZYEf7dqEQWdeXunnO2D7BA8Ib7TtoX8sKrWrP+M/X1EETqhDHDf
9k7hpC1n3bIk4YtGLDY6wNdbqL2FbfUSnHlmlK37mpej6Jfsq95B8xT50l1Y
as0/+ebRYwO4kohONYhGQ7TOMVLHx98oJGB/yZWOTz/wwfCDb2b2F2qkrvPF
oSlL3bYFVyDgYNAI6qDEFzNbw6i2HpN5e0Uq0tZcHvY3n4ZYulVJPEg+i7Dh
4yndAYExvtZz2T8FoXxOjhgaNan3sZaFWQQm25Mz6DczLTakwDuj3Ia7jFOq
kmX1/pdGeRyV1OmmWzowPutbKbqfYm1UM+0cDrNodzNo5wapd63O9AF441Vz
HwYOWTtxUx5Yo5f9EErW6/len6f1LyadHgNpp3hvnLoJ2KvDCW+VOGhBN5Ek
BZY5mECwhKb3xxevyO0Z1CHRedvZDuAoOsprxjtrOUUngeGunlMicdWDtXVp
aZe1xe0awrZcYQrY7RvGMToTezYj7KFClT3waYzS3OrPWRfKbY0WiHsA3moH
b5fPLaCfGVB+rWe1O1q+4gzwos3zhdNpmjgw1IEynfb8pju2zZ8P6VqKbpnP
7OHSxaM3jLz+iCb+TOfD1df5Zo1v1bjegLdvFG8PuLd2MZvSakK/tD/U64Ne
+7OusUNqWrOnbVcXVY/7Y+laFqJAeV3xaGeI1GaLPd4ovn1p9z3Hg/7Ie7TO
uuYNn9AWNNZ2vex622m7r7t6ZwH0wUkl8cveEtyT5c/fkZO8WW/zjdENg+Rx
Y7NhjpUksl/LZtGsNTru3hMkLV/96zRagaGAySi4dDR+xqkSN/aO/N2MUxVu
+i0e9VqcLNh+GP1dthvHHyl45xbvUHCX7qN9BbuWtEDsCdL97oZWuHVkmDD9
w/uiZ7ekfdzcpQXSQEdMxe96i9o2dADT6O3XiVnr0WGb9JXfDdSBzsO5hY4b
3QK5Y9OHiZmO57TGuo5u4cjtBT7KkVuq99XAbeU+2hD9fL+vwKQ0TUrRXbv8
RQU7NfTRFncW2z+Gxjuz52MtTWrSXz2tnAv9vTVShEPih4/HWvNmBzxMJZe1
n8es29P7XatPl6NfxjJ595/3qpunz/mp1XviduX+Dr3fqfqv5PzuOfdeoL+E
T3TP/ln5B49k5x+8brMXyLAqj7tpkfWiPWio3H6KtC/P26ujOH6hVlIHEfcc
N6M/KQTR7qr2ZXjaAzBH0nM5oISQfetP89U2DDIa7a5r6RtGknRclQyG2R2f
TjowcYKy0uh8zfGMCVxvnJIBEtU9HuyCz6ZDn6qv2QRU46N2Bv81LQ7rIUEU
Wol104JE9YvR5D8DqL0zTNXQsr81cydsusOz1n+mwIwOtrGckoiUkBCTeWRi
PuoI64YuLaDJ5vhCG5kx88tBzwnxGASlnj34g1klQ58aQ1tfD3YpWH7VXRLK
eQOBOrCq4ziFdtwfbVU8Sd9G11jfLRfVO6kvmeLF1EWceAelu1epmfXWsbCL
tilFGsXGl19sBn69WPZHRMKvtjIon4diUmKzwZKbaX4RT9UFYpRVVC81q3W8
TzO2AhllFyXTcUJuVhX8i87s0kkvKkpPJ76FCn7pM58Uxpsb9mtm0i1oevrs
CzRGdwkaBu4moNUmZmqbjQaibW4/3Zj74Ti0Vi/4+jO1p4HJ0Qm8F/Va70zA
v6XG9C1qJtyhbk0r5IJicNdqV/Vhb09zuH+lY5x6S9VsTfUjCMzILvY+TGZa
ravLio6qU0yrth/sCxSRgBVtBK/dnuUtCtrH2lBScrVcbekqMbRz297uH/Ue
5p+75sudaMkM3jr9pl0Gy9znQNexLlUi4nijk3r94wtd6c8YSEdW2/P4qkba
Ut5lSX//GEyB2f2ew/4wqc/3Jt9qm/v8gv55R/8s8c8rae7FgPU+0aa0/WPf
DxfY+cd8BWqcDw4lvsETOj3705uHz/70xvWSP7158uzBwz+9OXvywAujP71J
iBrfwz9uRP/QX7SN/CN+FJbgZryPNBPcrRnfNPN1245qoc+bjzcTDJphAtBM
iOK9ZqKgbWu3Geu3/3J8zE9OHz19/eLVif1ywTmKrHIwC1xQZHRyvw11UXF9
hRkMfXsjC61oq5UUeFqW9VRptHuaYfdsJSOziWSeiY143soqdCKtTmLgo+Uc
5Tqx72HS7vXy6ujCPVJqx5x4Qi3QokOpYFDKKuvtui0zZypFqxV47bNq2Em8
1XdDzvTdmxzr68m91qeZtOiyjOp8uzZJpW3xQTujrVpz+aMOv1CQxOpdKdlR
qDpSAf++1uL5SZzjjHCXOFfBGGWQlC221Ml9ZTRGNX1vWFNdCaJqanuIaTx+
+EzfpAdpZda1VKv0W9LAWmPTDFAOAt0yKbXqoHFcL0EBZlopPKM5rQ6yDu9h
aJOQgYtIWkAFujuXPAymhVYg0WwNhUjliDCj2u3WYypwTOXNfan7cjMoBVjF
4/fuxn3kKtpmm6nNprW0Rpsx2uwwC9TumdlC0di4V7vdyhGNpfdTaFOSUMBb
Shvp5fuabRrO/egSZs7sbFHn7/Ssm/Qf2jt++/xi1ADMKsxSmz+y2d0NORlC
bKLtjSa3BxsZXQtAtT2bPX2A2e76MK2QMeLLF4cqgjqxAdRrFpVR5ouZTTs/
6mq1j1agQlTjohdX1R3N2hb6AdWRad6TpaRuAKNAa15fqnSgwV26lrqLUvtr
GKeJpbb4gVomedZSoPazSTRIZvVuetPZdYsjuVob08knTi57i6X3Bvr1rU7a
Hu9QDbwkonW7kW9Q68CMfmZruM9AP9+o2QQT0eykm4LnB/j+cGYnxNV8c2tJ
NKgLcoccy/2ybf/IVD/SuzFH9BU/prwt6JUvmUk9attmelNquHSAGjNb8wTe
GY15EIcfjXelxjuSCfS7I+8k6Dxcju2TfmxbbWvrltFoS/2dWN6NBM0fKczW
0m78tH1zBXdfruEHznSPypvFutOPNC9+0SAhnBVd6/3mroMwRFDtqrT/hTcW
xHLzhna938i/YkmoyRk0faguK1+LCkrq9EMueZUd3Ns5YfQYniLM7L3DgQvL
U2CYszsFHT3mLM7O7XPtPqQ58sLbdb08EZgSSpzauVyNVRlfbkY5Dfo4IutX
uD1i055UaToAP97vRPH7+IIQFR1B6dJSu46srqP27qwhFm9VESdgvuwnq8HJ
vd/f2b+ECax0+IiSHivoB7HpxZ3QwIHxKg6HbZnIlPYzFlWjNp7p9Q8YoB4D
DxmtfLcqVMNs3RlNqt3Dpm3oLzUjIKBCAeBjPd10p2F2s6I4hKDBBLPX3PhX
bHXYgLrdAVgWXYc0SBBhGKXyNaD9V3RhIN35rq4PZqeZsQxfBE5a+Z2UK92f
Gpml87wKW98sTWNo2kEolcsXy6tbpwz06lORc9aSosJaQTmDkSRQiorJNLUW
lypbwgkZdCOadjeB87rBDJLhNK5r0w+5AX0UVsUEvqHpolMYnOVkRGK50Xfn
Myv0QTMAhmP5oWqYGVgRx/qYrT5hq++rBO1WL3MHxfneXdlPJMREsXuu4x5D
Sez6NflagLFYbrK56C8dk5nS+cDs2bdCyIlcekXpfjb69j+V1DceAccZZJva
OdGZaX+1zRaKw5T9xACK57nPwLl2hiiDju+mNHeAU0YnZRnwVO/mEemMVwJk
lLRMK6wLp1r6XQVqOHQRXsPpijqpTmdo7EZ/+M7Ps1eEL3RTbZpeD720hwTV
BG8rsFtPAMMcjQpVKOkLjtyhwQfMVWtwfZjQS6B//q+9XI+1B/r/0lFzA8+o
3JjInipskfijWzBto6dCB3/pPlMVCtF/M7zLr7tUI26AdN0fqyP3zzuIcPLu
kCFA7dX/cx+janK+OJztuYDki342Ug9G6vGrWTXvEAC3ST1KQmlt6qZWlv2c
YmJwKyGY/Np80K+BEN3xStbJlGlGlbWVbgbpZ5SVQnpY8d2qF4W2NJSghz9X
fBWv3dR0U2ilrgtVDh49hjwe1+XxMO6m0udUPjVkgJ5LdR0hCNgsrtX5LkVX
b2lorXlZFcdKUlhxDJIM9TjVMHuCZB2Iw0HyjWZAtzsgzLMZZ9spx6vTCsZB
0mXo/FGbVWsf5MPGuzz0YTXSX1dVrjN5eyOz9D2gw8OvRq0YLdajWfG4f8CQ
dPOzb8+U9HS3/nxLh4DVm1IoX/wARQ45wlrn9aJDBsqIDL1pslstQIG/+/T4
Eb/m6Phy0Rzze48oTAs9yJcSD782PcA5pgRRa7WGvFYrveuTDxLp6eStwnqV
wT+9ker7eVkETQI8r3ROtjZt8NWF/Td1FOBmrkQJQ7bpPC2HdGy6qVesuxv2
oXjItGi1g0/tKYPmQlBkRlzWGo5cSvKdGot1leZYp0XVYWzafsAiMBnTQlfa
MfhqhXETkCDLLDWVb6XOjphzaiqznWPeBuBsz3XKNt82q4pzW9o+WgAGK7MR
0s/fbTs1DeuXT9yTqzq/ULdWm3tEjZtIarqt0wbxqBJ8VfnhXkuoAeytzCtl
wHdRr01it2pKmTjzmob3JmphA9Uc66kf5ZU2XUBEkaNDBQxUlhaPQA3A7DR0
W4a0kJR55F1AKqrMsuqLB0IgkE42Ez2WaYJER36gDQQTbmMFyTsNLBztRkFL
S9vDfCePlR92AQ40TfaFmz4wb1mCxcBzukX8Xs8sGPNELFE2hgjetVIT3ewz
Ovwz9ra52ZkdHI5N0mO+HvtyBWO3hG6Z2UWt3jWiYQ9WTb0wrFUxBl74fAss
TzGXZDGm83gwD9omnPIBPRTuUtRPu0t+GaqqjQTa3FJ1SK/Bgynq9zMKjuXS
WtZKA/Bdu95/nmpCNB4W6r7g3lrVS/RVC6L0CRXoKTqNpeFzJyy93ak1/CfO
jqddu8tabdotaT9Kl32v1j3WtKUfDA4NnNoYOyXm88F8gssbveRB0MFZK5FV
jjFjAMRlEAbcTi+bW1zzNMAcQOvND42IqQ1mA0N4Hu3f/tY+PbSP7ANFxb/a
B6561k7qC97fbFNGG9ozZHSY0Sts2tNL/XMPbyek7O3OGqyUI2LWCm/F6xf3
0JpUfsjbHZluVzmfRoQbW8ws0QxeXaSx4H2zKdw7gKX11c4VsvwOiG4J3Fin
zAk31qlnauF/6fv28e/0Hr3zwXPdXpVB/p1KNdO1Qrdfy/f7tSb6jIZ9erTr
0fXp3F453CF4UNkv70bvoFJY3t5jcGuP8k49xoNK8d0qeU6frW4gp+ikadUy
TBqakUALZfSFwx2O2XXuutuyewhMG2wT0+FtnXaXU21DNdJ4PcObpoy72a6j
thqhMltd+vhQHyZVXpG+2eU7a+9rF9p3yO28EqJ93d6mrhdN99pJegHk/XWZ
x1EU/6ZRR46O/XncIX/j0pk3l3UQuQ+xlVlc8JldhYRqUr7d2UftQukzORoz
7fNkX7f5Bw2FSGCAe++eA6SjN9vRqdya7IlyeZk6TQKf5toyqFJMXgx3v1CJ
LjhX+R7fdZpCv9msSz0fHGHp3YejrqcpzJ0vxJ72vYjqeDA9hompL9l913lM
7/VtEwrZ8AsELqvNxmxuyi65Ycex5y1yPTu9lxkyDy74zWroesGDoT0s9p57
Z2XJBonceMM6GHE6OFimD7ryJty3otk81690M/Ouj8C91iwjLy6/qOkmfuNt
sI2GLy7XdHlHb8PACE77gjsi4KqmK4nZwpJ/UY8DQnP7da1hqvIr2wbPHr20
X9x/0FkHmpyGXtNBQQTl/nWUd/NMRNMrEgupXD5CazCJV/QKM9Dexpq4rtoK
ZegtGaYDRZB7yhk2HJwyh987wvrLhE+CKw7RexIYHNccydVQXy+T/iJS27fm
vE2XMGPetThXgkB5PDoXR4N1Rgi9yTroDubbsuIFRhEZGswzukeFp0+s27M+
vKa7bWQzBgypezicmwdN76t2F5FVG/W5qx70kcP2SFK1Nm/Z64n9uh26OZKH
Z7TGWteq5+NpiVH063X2nhN6djQW47fl9dDbKnkKZjz9XSxEvQ5xfa0vmaou
KVxaL3nGl5NCaiL2IyX2RWPer9nh074K0h33+tBHUOH5iQUaodfq9Tl4QIBO
03ioT0KaGFmX7NO0i4Lf2WdyrHiPXh/+5eXRVek0NFbQmt9KQJPHEqqvBzDH
u5vBS14GE7d7C5Z+5VnJb2/VR4Th/PCbgPRW/1l1uV2AwI2l35Ki8pb0w1kn
15zBBEbRiFlAtK9rP++J4ODUGIwgxeJXHAjTDaprzQ61LL03g9bn7tlGtu+a
gDIwr+QZHiJTe/A9Z1ZfV2ZwvkEIZojfPySHNeN7viS9tFCoQH9DsWcKnudi
IbJqARU4VFOdbi3W9cq87bIvQJcUIezpW36pzobfx9BGK7uXWXBaCL+kpMub
ZPZIelVO78WgvdQ3czBQLzh2dRSbdbRJD4KJU4FYvcaqXKeeUVpiO0Uqd9Z+
rfx+Pk7bZQLzoNW9Tz2XjGZxuIvVJv51dzj04pmDnEAV2/qe01NoC05nWGrA
xPPwsm42xw/JMarpKoku3tXG1dqzz9KTsqfoOJ5KjVzrlTKKN94fbtHMuxeM
tcGxCz7bRuGR62WuU58HLAOHLxQnjHCoeITJslYqxj6r+UW54lq3qKjuHMqJ
YKghqz2TqBovlM8Fa9r0V/9AENptko4v05PD9UltqViUXlJGZ/Dte1V3a2BR
YTUQQNSvTer1qLgNvKOUUGFQeQtndCBs1rbHiKTaKBGklzb1htLUtxsd4yeS
/BOKpBEUfB8vm2Dr1aAiYIHmGEljpy83/Eo1Pu69bUGSPrvalFsYItLyykXg
2wLf9yqrQOeGDpcP4uOZ7C4VmLfbaCbmj1+DWWvxpnoNqhZgfc0ZTPWsC7e1
UMrEL3alRu3UrMzBdf2asaZ9+5FKaLZfUhXoBL6/mA60ntU8HMKkRq+sdJlC
lzGJRtr/b9k/evVR+1br96LamDddsZZu357E5mlNQcGZeR2rng3Q+r6mfGhS
+uYlxL38cD3FelZpzntv4DYEqDP5LPb4a63tg0URzrXOn+rSdhRP7Bf6Hsb+
sUl2EszLm7jDK0rQNm8B3n1XVpsYaOitTBkNtDiDWsdSyVskQnoXBLVyb5aH
WLwX13oLUNJeFOf+UIdPv5+RW8F3QIh+bh8EZsu7ntxHo65majeKewc41Yng
3XyhdrSrNv2a6BWLfLsQ+hWGgzQDy7WPlMp+OLy868gOuIc2buwaZDg82sHp
lzSkQJPQPzm6511YbKl3ud+9P40SFOlL6zudSEh3/XTaupfPiEVvXHbPAZI+
CB3Tzv3m0Ar4mRf2n7kOP3QHBb/j9ATfjGCQ8n7gzxO7oHkknE7+Kg2BuxvS
cDhkA+dr0XybmxnpPGPH45vuFnn7ppXewd+Dx8MjUMMjqdmq+T0TpP/mcas/
1XB7Kdj4Oel92PP38HG/b8q+do69MOzT4QWOo/92vfZP2w4SZ0g5pS1T3WM7
Cr9paydd7aBXO4x2alOuNdU7tt3omSnmdx26Ua92FFDtFpuwMPMOhnJX2pXC
kd4OpHEqS7deWt3X5uUoaTVeVnNi+U6pGO18A47bB0Grx9pFeKgLha6nynhT
Zdyw5Il0bikTz7mQr8u4Riv1irRCQyW+tA9GC5uWfGAf2v9mJ/g/mhuJpsJw
9o5o3vbhY+LJ4zcfeKDmgxrRHUX01g8fFVOIV+BMf7Bjb1JUo6GoQsQSZ/qD
nQQT4hpGO+Jqu6nnTH+w012BD/jYwDO0EHzVjcJzI2f6g+skRui1lr5q7Jen
rx4ew/eRlsqKTmLP//lnlWdCsVe6vwxqtXs1PBklXb1vufuvQVyxG06SN2Mj
3oqf2uN78eQr++DFujqvaFdPXRNlf0WJy8YzbI9RNezzd2/6u9+9nE/tDnIA
sOpyX4Gg55be0L6EG4F1eYzucx4i73WbGOwlHUCjjfAr2UVi6cH9y+b8PtW5
f/aV89dnT374W3TaPNr8zb9+evqj8+SHVfj09A/30RYB4QWlly0YNfBdmAYb
qGvRlv/3f/+fTbunSePGcMiz6ux7RZEeggN8jVrHueENKeb6hbn1lTR+f4/r
a44u3zLs9lWailMP6+aybuCylJv35EkprnPcXCER19WGqkeQCpjwiQXu++Xr
mX12+h9vnn/3bGa/fvrs9M3Z6wfP1MtVOdDVXXUsCvUm2PYlgi3c4ZsY2z5g
Bo3aeCnXygRCSbmkkzpjuavDVDlUOFM6+t9Y9zwZNAJtZllnah+uO67Km5sK
jHF+1m3QRCvIPnQDiu3jml3MwiFLAsscN7QrdUuecvoa2b5W+i7Tpq+H+k0L
fqyegm0NfF/p9iz9oOCUyZ9SmB95uHvmOnJ6xrVVcVMPFQRQY1G219qlW5kD
VBw+VoZh9LgzEZPG9WbaVt5Mmkd7mjN72LD38QSD2KCMucGmZeqx7UeKT495
p7T3Jmnt1+uTJe3+hpI+E3v+vU1gd9UY2NkWGzgzKEe9E1o4NMG+K84VrpYD
je4HhMKOyQY5WHH/BdRMlfjG7//y/5XfD9wFbib2y57XNhbjsd4iH2Z4t8nY
7U2S5u7KXk7Jzookv4cDaoS5KWUOZqLNCOmdourer8ClB69I6O0smXuP9EZY
m/HFoX6+43Pw2mC1w9gm3Q6vwDFHYDv6dLhDx8DbmAdvfV6I9jRPM9xM0UdG
jOjuZKMxV3eS2r/px7W6dzBXjTlBy/eT2uZ+UnOIrzNGOhVan7WmWKNurM3I
1PtnFJnop3TvZkdxVIsovmcifWcqa/OeOqxHMT97IuZ3zzh4e9SvcjrV6SZ9
IM/sshh1WqxFqWyuOp42VuXN6BrQnjEmgaFXXMCmt8ePN72TdEpUONgxdZZR
B4O4Z9585QvR1nxrG9jEqccckXj64PmD3YUyPIRL1xryW6/bYCAmjqpx/Qfd
5YOXnMRPG+yv9am6mulsLjjkpV5NvuA3Yizf2Y8g1w8W8oP9db0FBFpwGLZR
rxHWV8rpVJWlyuKmxrTdNrTN7Sf8Rmm1xtRVE3J9fg1zupYmx1HFcwhE6oDM
FaDLiofWJjjzUF5T3O57LBn0tLPN2iUGmHsvN1T4ShXWOzo7F2/SDDLkqi29
dWXix9fqDllKLexqTZ/QGF5iYa6qtXpHqxg7aPr4EMYfq+WfeQbe7uTF2AcX
YLfeHDmkkliOuqjOwpnZb9U1ySq9hu+c0zk10/c7quZ3G35grxaCdpo/6NOz
bYJfFxzWe3Ody9obON8Cyu30Uyx3C8z0i1lQmU7w9Ef+zdNH+v7vh69ftUNQ
QVP9NpeWAoXoVQMtQ7qDcDvX2Q2HOqykDo/pnKU+pxQjd+nh2p0iYW51/arU
iu7WXg49tlw10e6GtyAhNxtKKiV7PSTQerDcEUyzyUeHMOt2Q12fwdSM0glu
F2a/TT0+oRnZ11wvZm4sRhuR7zfS7jF0Y1G2qiWl48Z8skNzVGo3RH97dz0e
99NtBpRAC3xL53wygJJ3qup7SlBuVkLjHbpzozu7QIp0vWnvsKOcD6Nw+Bi1
ychmxWi0Gh1nV9khKhm+fyc4JwPK9mZOc68kKZG+uuErcMho9+6VXdr/fvbi
uXn/D/7300+kz7Q64/PF6kj1m4fP6AIAvkdAXwLwJuCcN0tdYnFGWuWERMn5
4LjWV+QjwKKftN6767qe67uBG7qRG7uJm7rCzdzcLVzpllavrAKQgV/4XuqU
Ye5kqR+hXiZFKgI/j8pQeNYZVke/RuAVUeSVmSjCvEhcmflCFHEqrJdmonTp
IIq9qIwKz4mSKAQtEf6VUR6n/MQdZa6ieIEKkgp4Jf5zwgAF09j3nBhVRxXw
FdqMvdiP3ChHq9Sji0ZC/O1F4bhCjK/5ckTFUiiiATOcD7EFFbDzzLGe6Pcp
mR83dhyLb47rFd3LmIetcJ+0taMwj2JwOIuTIPJdEReZm4VJWpZZNCLbK+IQ
BaWXZE6SpjLy0U0mpZ+lQRAH8aiCiPyEK0VZ4cdJUuRxFrtZ6qVhHpdZOqrg
ZKGTJmUMF9wNZAmB+KVMcqeY5N6VSdkUk1yZx4En0wRV4kwmrlO6oV+WThEU
YjQEtBKlZZRmvusIAd5maZ6lrisTX5QOehiNuXREVIB9sQdKwJkkTwsh/SRO
ysLNxxVcRxZZADkuXE96KCd+KZO8KSZ5d2VSMsUkT+RpFqQh5lm4Mkjy2PXQ
RZhnIvbGTCqdrMRi9wIhHM8TQRjkkAcwIEvivBivmMD3Q4hklkoJixWJUIhA
ehGURiycNA3GSywK4P25hSMCN3PSMIxvY1I5wSQhxlwCyXh8Nz75zphPXF8K
kI+l4ORCOkUksTaixAlLkYxVUeH5oVsUjpeHWDKhmxf4LOKyyGII05ixcYaF
KCE9MqELXXzpQFzBg4BuiSnEhLILIa9xkvlRkXv4kKTg/i2ccsu78ko4KPur
uKVb2MevsbpJbufXqELq3c6vcQ9un18plF8YJtmn8GuCY54e7x15FhcTPOva
wJoMMQYvdKCrwMogkGDHeGFJ2OUIWt0nnQVDHZTQXKHvFljLYTYWyQIawIOV
KwI/cMIsgJLOaOUXmBkovPHSFZnwAi8WaVCWaVwmbpEXXuJFt67Hwc8EA3cK
7LIyLm/7uYW9wvdi6QaQHg9gYcTe29stxuwVfhSCj64bZ3niw4KUAUxiLgAo
RFCmYwvolWUcZ1D8hYeiqZvJKINYJlB+qJ6PFV0iROKVIUQ8dQPfgd4NCgn1
6sFE50k2XiUZqepCpB4glmXe/bkH8iV7IZ83gnwAS67neT4mO/QiL8Ycp57w
Mg+yAjs1AfnKXMLsFZBQGUQSywkGIC3DRMpYhEUwgnwxMEMZlm4BDsY+QbrM
D/08/R8P+fYyZhLyBdCLzHtXCKhFCUCeOgHkxxtLl0O4PI5haiC+LiBPCFAi
gdFC4ZS+HI8zE4HjORKgJAbwSWIguhKAroy8pPDiaALy5bkrwxiYoYC4FwJm
vgy8BAb/M0G/PcyaRDVuKt2sKGPXz4D2csiGX6CyA0wjx9AvhrgkECJokaQE
LvNydAAFiTbcIEjGFQTgLiBh4AUSApeGHrRvGsF6yQArPpmwP2kc5nniJGXg
lADuosSI4xyq5zNBwD3MmsTJnucImGZSRFBFoQ932MNnspliPJRERGnulm6U
YUH6gPswJTEgv5NHSZaHY+/DSaUPMwPGurDtuRsGQQF3pRROjG/KCe5KP4fT
4WfgvYxDJwC/wDAYrc8HBaf5Ffl7oGAhYDsh7CIAsvWBdHxyFwoAnbGhFlCM
cKcLv4STDBUVOLJMHJFCIrOkGBtq8AsrFeA3hArGXLiJ8GDj/DR3YOQm1nqQ
uHmYATnARAMRpH4QJn4YZljozueFhHfnmm5hH98mZOB2vo3hTXI738YGO+jz
DQBNFE6ZpMKFQxMmnx8aTvEOSmTMu64NCcfLTwJo3DyAkoLZxcexnwlf3/Pc
ECYxzGmQMHhBAnARRVD/cIHHFZzYBdwBupEpPNc0hQvrlnAFgRXTKXUGIAur
i1oAtU5ZgM2xTJIgykTqOtAc/0QQsWNz4Sc57CHMgcj96BdCxGDM5oSiC2kR
S5n4UuahDH0o+AweDtYe2DcRJHGLMi3SOInhjcBvdPO4FH6YRa6bQnuOKsBh
DgENPQdYJg3TIs9Be5TCz4nLNC/HcKhIsZ6iwMlgzV0U9cooH0DFrzVWVDBx
L0j0RyDRd3zX93wfsIIWeOwnfuoLP/Nzv/ChxUcgEXbWk5A9vyzDKHdgKmRU
ihQITXgwG2IEEkUCRQ//rIyA513IoF+EAXDL/3iQuJcxUyDRkQEwfAhgHssi
duD0FW5YRBDTcAzhANjCFMoxF25YhjKBh5G6gEE+MI+I8zEnk6gIHBACH8Vx
cwAfcjxjiLCTxoHrTpjyNM4zgCgnisn5hbuJtQfphycKzz4Ya5YQ6NOViTRy
+3dHkXu4GUyiSMfHSsISDWC4gHsyEt8oynI8GDOHVmiChRHkKdSFmwP1AKPD
iKVQ0oUcVwBUTgGdoRaEzKAzggQIDL67U2S+FNHYZEm/cKTjZQDZoiwCLC4n
T7Ha3ZSA0kTYowCaSyOB4p8JZu7hZjwJM8ME3ECjWQH3Nir9PHcAJKGNS38M
aqDBCvgikZ95UeKXEmpQwFmGXx2X8E7HzAmyMnEzWMQoTcNS5q7n+LkoIHxR
Dqkdh9wkrL9XhBJAF34RACrMK4Q4KoQrZZCPK5RACIUHzV5+Phw6zdC43IdD
Mflx4MPCeUFSpg60GiQijPwxDI+KECotKADcM4n1GzlJHBIkj0K4kdlYPMmn
yfOsIDq8wAM8gWwnAsLqSj8rxvyJIuEAf3llmAGBxK7rxXC3YLxgC5IoHusf
6J0kdGDIYJ0/L1C9O1sNUN3D2NEY/Oh2xo4F272dseNF7PUZmwMpgPs+rFfu
plkRjlcC+A6bS2hEFsGtK//vg2SnmCvFBHO7NlKg0VB6rgxK4BTPC+IsmRCQ
wAd2z8M8izM38ZzUgS4tQicpgNHjSI6Zm2DSwB8whyBBQgEsUcDpyB0gFdeZ
sGiFl7sAMWEMv9zNoV6EIAhXenFGEzhmru+lIvF8EYsoSLN/pmhoNw9OALUW
xbknMijLXwh1nfE8pNCsRQ4nCSIFsQL4B5vLCEYoy2UajFcF0GEmUR7iGYKk
kvyElAqLEJ7pRIU894IoIphI0SYXfBBJCCcGtUPHdScwmg8gGpSBzHM/S7ww
zgHwA99zcw9VgjEUcbHSRliYYqXqjvu9WDgYYeHACdBY4AdBgKEEMZyrlDza
IA8KOGfjyG3ohG7oYeRBSFoB2gFwXoRZmIdYKeEYPAd+FMdB5mQh/GBoc79I
4QnEsDx+njnR2F0GYIq8RJalB/wXUsuwnjEwgSsEGBWO0LbvSugVKDZB6jkS
UkZB5KXJ/3i0vZcxU2i79KUHhOvKFLTGMaBc4bs53LRM+ONFBPUoyziDrAYA
bdCAfoLVhilNUtcNJ2K4rh8V0EpAQB54GaRFlEPCsVIgFsnEZmsoAeix2ACo
IG0OUD3twZXw3IQDh23CwQyxriFgofeZ0PYebk4GuN3UB9SD0JeOD9DgZvC6
YYGzKAsmUhQovAuQnUMz5Sk8njKAHGWO70eoFk1IDfygEquwdDw3SgNg7USk
UVxiOfkhNPq4B0A9gs9JIR1gecwdJi5z0tQTcF/dcDzBcGugeFNM6GdC23u4
OZkh4sE6RambASrnQe64IoDf78BAB9EEZICZLWGxYZHzpAzzJPIAXVJozDgH
iPbHizZ3Cuj9BK6LRxrJIbMRJ6UXCi+Q0QSadCgbKJKuE8IQZ+iENjLSoEgS
AZ81mbDMuZO40k3k7dGkX4W2pxnqe3vQtpeECVBEFhZF4WGhuyUEFs7XBMqD
7YriJHKw8kKHpA1aPA/hT7plkaTO2FVzCKk4Lvz0oHRimDUYWd8rRArY5ycT
zntJhhgGMIbNKSg3C0vAK1PhFbHMSzG2EWkKL5zyTmAkPy/avjtbdQv7GDse
g3M7Y8dsLW5n7Hji0j5j4QDETuDIzHVk7oXZhJx6UeZBlDO3SKH8Pz/anmJu
nkwwt2ujSLM8EvC/UQVazRGJG0zl6oQyF7FDGIo2AoMUzjqWbJjHTpLFE/tm
cHm8sszLAGoFyF8Ch0XAOiAtiV34NeMeCnLN/SjDss+A0xIXswlsASgfRLIY
LyPARQddQ2o9SdHvfyK03c1DmRRuGrrwxmChx6GP29sVY7gYJE4RxHGaw/A4
Xha6PjgQiciV0Oq5M14VIk/TFGo4B8hy01LmUmYq2lKUnp+NVYF0gzROJeUQ
isB34zjOgGZT+K4eMGM5XkZ+movAk3kSlGWWwzVygDVTzy8BbKFxxmOII0db
wf8HtJOXqyvCAAA=

-->

</rfc>
