<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.2.13 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc symrefs="yes"?>
<?rfc sortrefs="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc toc="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-lpwan-coap-static-context-hc-16" category="std">

  <front>
    <title abbrev="LPWAN CoAP compression">LPWAN Static Context Header Compression (SCHC) for CoAP</title>

    <author initials="A." surname="Minaburo" fullname="Ana Minaburo">
      <organization>Acklio</organization>
      <address>
        <postal>
          <street>1137A avenue des Champs Blancs</street>
          <city>35510 Cesson-Sevigne Cedex</city>
          <country>France</country>
        </postal>
        <email>ana@ackl.io</email>
      </address>
    </author>
    <author initials="L." surname="Toutain" fullname="Laurent Toutain">
      <organization>Institut MINES TELECOM; IMT Atlantique</organization>
      <address>
        <postal>
          <street>2 rue de la Chataigneraie</street> <street>CS 17607</street>
          <city>35576 Cesson-Sevigne Cedex</city>
          <country>France</country>
        </postal>
        <email>Laurent.Toutain@imt-atlantique.fr</email>
      </address>
    </author>
    <author initials="R." surname="Andreasen" fullname="Ricardo Andreasen">
      <organization>Universidad de Buenos Aires</organization>
      <address>
        <postal>
          <street>Av. Paseo Colon 850</street>
          <city>C1063ACV Ciudad Autonoma de Buenos Aires</city>
          <country>Argentina</country>
        </postal>
        <email>randreasen@fi.uba.ar</email>
      </address>
    </author>

    <date year="2020" month="October" day="20"/>

    
    <workgroup>lpwan Working Group</workgroup>
    

    <abstract>


<t>This draft defines how Static Context Header Compression (SCHC) can be applied to the Constrained Application Protocol (CoAP). 
   SCHC is a header compression mechanism adapted for constrained devices. SCHC uses a static description of the header to reduce 
   the redundancy and size of the header’s information. While RFC 8724 describes the SCHC compression and fragmentation framework, 
   and its application for IPv6/UDP headers, this document applies SCHC for CoAP headers. The CoAP header structure differs from 
   IPv6 and UDP since CoAP uses a flexible header with a variable number of options, themselves of variable length. The CoAP protocol 
   messages format is asymmetric: the request messages have a header format different from the one in the response messages. This 
   specification gives guidance on applying SCHC to flexible headers and how to leverage the asymmetry for more efficient compression Rules.</t>



    </abstract>


  </front>

  <middle>


<section anchor="Introduction" title="Introduction">

<t>CoAP <xref target="rfc7252"/> is a command/response protocol designed for micro-controllers with a small amount of RAM and ROM and is optimized 
for REST-based (Representational state transfer) services.  Although CoAP was designed for Low-Power Wireless Personal Area Networks 
(6LoWPAN), a CoAP header’s size is still too large for LPWAN (Low Power Wide Area Networks) and some compression of the CoAP header 
is required either to increase performances or allow CoAP other some LPWAN technologies.</t>

<t>The <xref target="rfc8724"/> defines SCHC, a header compression mechanism for the LPWAN
network based on a static context.  Section 5 of the <xref target="rfc8724"/>
explains the architecture where compression and decompression are
done.  The SCHC compression scheme assumes as a prerequisite that the static context is known to both endpoints before transmission. The way the context is configured, provisioned or exchanged is out of this document’s scope.</t>

<t>CoAP is an application protocol, so CoAP compression requires installing common rules between the two SCHC instances. 
SCHC compression may apply at two different levels: one to compress
IP and UDP in the LPWAN network and another at the application level for CoAP.  These two compressions may be independent. Both follow the same principle described in RFC8724. SCHC rules driving the compression/decompression are different and may be managed by different entities. The <xref target="rfc8724"/> describes how the IP and UDP headers may be compressed. This document specifies how the SCHC compression rules can be applied to CoAP traffic.</t>

<t>SCHC compresses and decompresses headers based on shared contexts between devices.<vspace />
Each context consists of multiple Rules. Each Rule can match header fields and specific values or ranges of values.<vspace />
If a Rule matches, the matched header fields are replaced by the RuleID and some residual bits. 
Thus, different Rules may correspond to divers protocols packets that a device expects to send or receive.</t>

<t>A Rule describes the packets’s entire header with an ordered list of fields descriptions; see section 7 of <xref target="rfc8724"/>. 
Thereby each description contains the field ID (FID), its length (FL), and its position (FP), 
a direction indicator (DI) (upstream, downstream, and bidirectional), and some associated Target Values (TV). 
The direction indicator is used for compression to give the best TV to the FID when these values differ in the transmission direction. 
So a field may be described several times depending on the asymmetry of its possible TVs. </t>

<t>A Matching Operator (MO) is associated with each header field description.<vspace />
The Rule is selected if all the MOs fit the TVs for all fields of the incoming header. A rule cannot be selected if the message contains a field unknown to the SCHC compressor.</t>

<t>In that case, a Compression/Decompression Action (CDA) associated with each field give the method to compress and decompress each field. 
Compression mainly results in one of 4 actions:</t>

<t><list style="symbols">
  <t>send the field value,</t>
  <t>send nothing,</t>
  <t>send some least significant bits of the field or</t>
  <t>send an index.</t>
</list></t>

<t>After applying the compression, there may be some bits to be sent.
These values are called Compression Residues.</t>

<t>SCHC is a general mechanism applied to different protocols, the exact Rules to be used depending on the protocol and the application.<vspace />
Section 10 of the <xref target="rfc8724"/> describes the compression scheme for IPv6 and UDP headers.<vspace />
This document targets the CoAP header compression using SCHC.</t>

<section anchor="terminology" title="Terminology">

<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>

</section>
</section>
<section anchor="schc-applicability-to-coap" title="SCHC Applicability to CoAP">

<t>The SCHC Compression Rules can be applied to CoAP headers.  SCHC
Compression of the CoAP header MAY be done in conjunction with the
lower layers (IPv6/UDP) or independently.  The SCHC adaptation layers,
described in Section 5 of <xref target="rfc8724"/>, may be used, as shown in <xref target="Fig-SCHCCOAP1"/>,<xref target="Fig-SCHCCOAP2"/> and <xref target="Fig-SCHCCOAP3"/></t>

<t>In the first example, <xref target="Fig-SCHCCOAP1"/>, a Rule compresses the complete header
stack from IPv6 to CoAP.  In this case, SCHC C/D (Static Context
Header Compression Compressor/Decompressor) is performed at the
device and the application.  The host communicating with the device
does not implement SCHC C/D.</t>

<figure title="Compression/decompression at the LPWAN boundary" anchor="Fig-SCHCCOAP1"><artwork><![CDATA[
      (device)            (NGW)                              (App)

      +--------+                                           +--------+
      |  CoAP  |                                           |  CoAP  |
      +--------+                                           +--------+
      |  UDP   |                                           |  UDP   |
      +--------+     +----------------+                    +--------+
      |  IPv6  |     |      IPv6      |                    |  IPv6  |
      +--------+     +--------+-------+                    +--------+
      |  SCHC  |     |  SCHC  |       |                    |        |
      +--------+     +--------+       +                    +        +
      |  LPWAN |     | LPWAN  |       |                    |        |
      +--------+     +--------+-------+                    +--------+
          ((((LPWAN))))             ------   Internet  ------
]]></artwork></figure>

<t>The SCHC can be viewed as a layer above layer 2. This layer received non-encrypted packets and can apply compression rule to all the headers. 
On the other end, the NGW receives the SCHC packet and reconstructs the headers from the rule, identified by its ID and the header residues. 
The result is a regular IPv6 packet that can be forwarded toward the destination. The same process applies in the other direction. 
A not encrypted packet arrived at the NGW, thanks to IP forwarding based on the IPv6 prefix. 
The NGW identifies the device and compresses headers using the device’s rules.</t>

<t>In the second example, <xref target="Fig-SCHCCOAP2"/>, the SCHC compression is applied in
the CoAP layer, compressing the CoAP header independently of the
other layers. The RuleID, the Compression Residue, and CoAP payload are encrypted
using a mechanism such as DTLS.  Only the other end (App) can decipher the
information.  If needed, layers below use SCHC to compress the header
as defined in <xref target="rfc8724"/> document (represented in dotted lines).</t>

<t>This use case needs an end-to-end context initialization between the device and the application and is out-of-scope of this document.</t>

<figure title="Standalone CoAP end-to-end compression/decompression" anchor="Fig-SCHCCOAP2"><artwork><![CDATA[
      (device)            (NGW)                               (App)

      +--------+                                           +--------+
      |  CoAP  |                                           |  CoAP  |
      +--------+                                           +--------+
      |  SCHC  |                                           |  SCHC  |
      +--------+                                           +--------+
      |  DTLS  |                                           |  DTLS  |
      +--------+                                           +--------+
      .  udp   .                                           .  udp   .
      ..........     ..................                    ..........
      .  ipv6  .     .      ipv6      .                    .  ipv6  .
      ..........     ..................                    ..........
      .  schc  .     .  schc  .       .                    .        .
      ..........     ..........       .                    .        .
      .  lpwan .     . lpwan  .       .                    .        .
      ..........     ..................                    ..........
          ((((LPWAN))))             ------   Internet  ------

]]></artwork></figure>

<t>In the third example, <xref target="Fig-SCHCCOAP3"/>, the Object Security for Constrained
RESTful Environments (OSCORE) <xref target="rfc8613"/> is used.  In this case, two
rulesets are used to compress the CoAP message.  A first ruleset
focused on the inner header compresses it. The result is encrypted using the OSCORE mechanism. 
A second ruleset compresses the outer header, including the OSCORE Options.</t>

<figure title="OSCORE compression/decompression." anchor="Fig-SCHCCOAP3"><artwork><![CDATA[
      (device)            (NGW)                              (App)

      +--------+                                           +--------+
      |  CoAP  |                                           |  CoAP  |
      |  inner |                                           |  inner |
      +--------+                                           +--------+
      |  SCHC  |                                           |  SCHC  |
      |  inner |                                           |  inner |
      +--------+                                           +--------+
      |  CoAP  |                                           |  CoAP  |
      |  outer |                                           |  outer |
      +--------+                                           +--------+
      |  SCHC  |                                           |  SCHC  |
      |  outer |                                           |  outer |
      +--------+                                           +--------+
      .  udp   .                                           .  udp   .
      ..........     ..................                    ..........
      .  ipv6  .     .      ipv6      .                    .  ipv6  .
      ..........     ..................                    ..........
      .  schc  .     .  schc  .       .                    .        .
      ..........     ..........       .                    .        .
      .  lpwan .     . lpwan  .       .                    .        .
      ..........     ..................                    ..........  
          ((((LPWAN))))             ------   Internet  ------


]]></artwork></figure>

<t>In the case of several SCHC instances, as shown in <xref target="Fig-SCHCCOAP3"/> and <xref target="Fig-SCHCCOAP3"/>, the rulesets may come from different provisioning domains.</t>

<t>This document focuses on CoAP compression represented in the dashed boxes in the previous figures.</t>

</section>
<section anchor="coap-headers-compressed-with-schc" title="CoAP Headers compressed with SCHC">

<t>The use of SCHC over the CoAP header uses the same description and compression/decompression techniques like the one for
IP and UDP explained in the <xref target="rfc8724"/>. 
For CoAP, SCHC Rules description uses the direction information to optimize the compression
by reducing the number of Rules needed to compress headers.  The field description MAY define
both request/response headers and target values in the same Rule, using the DI (direction
indicator) to make the difference.</t>

<t>As for other header compression protocols, when the compressor does not find a correct
Rule to compress the header, the packet MUST be sent uncompressed
using the RuleID dedicated to this purpose. Where the Compression Residue is the complete header of the packet.  See section 6 of <xref target="rfc8724"/>.</t>

<section anchor="differences-between-coap-and-udpip-compression" title="Differences between CoAP and UDP/IP Compression">

<t>CoAP compression differs from IPv6 and UDP compression on the following aspects:</t>

<t><list style="symbols">
  <t>The CoAP protocol is asymmetric; the headers are different for a
request or a response. For example, the URI-Path option is
mandatory in the request, and it may not be present in the response.  A
request may contain an Accept option, and the response may include
a Content-Format option.  In comparison, IPv6 and UDP returning path swap
the value of some fields in the header.
But all the directions have the same fields (e.g., source and
destination address fields).  <vspace blankLines='1'/>
The <xref target="rfc8724"/> defines the use of a Direction Indicator (DI) in the
Field Descriptor, which allows a single Rule to process a message
headers differently depending on the direction.</t>
  <t>Even when a field is “symmetric” (i.e., found in both directions), 
the values carried in each direction are different. <vspace />
The compression may use a matching list in the TV to limit the range of expected values 
in a particular direction and therefore reduce the Compression Residue’s size. 
Through the Direction Indicator (DI), a field description in the Rules splits the possible field value into two parts,
one for each direction.
For instance, if a client sends only CON requests, the type can be elided by compression, and the answer may use 
one single bit to carry either the ACK or RST type.
The field Code has the same behavior, the 0.0X code format value in the request, and Y.ZZ code format in the response.</t>
  <t>Headers in IPv6 and UDP have a fixed size. The size is not sent as part of the Compression Residue 
but is defined in the Rule. 
Some CoAP header fields have variable lengths, so the length is also specified in the Field Description. 
For example, the Token size may vary from 0 to 8 bytes.
And the CoAP options have a variable length since they use the Type-Length-Value 
encoding format, as URI-path or URI-query.  <vspace blankLines='1'/>
Section 7.5.2 from <xref target="rfc8724"/> offers the possibility to define a function 
for the Field length in the Field Description to know the length before compression. 
When doing SCHC compression of a variable-length field,<vspace />
if the field size is unknown, the Field Length in the Rule is set as variable, and the size is sent with the
Compression Residue.</t>
  <t>A field can appear several times in the CoAP headers.  This is typical for elements of a URI (path or queries). 
The SCHC specification <xref target="rfc8724"/> allows a Field ID to appear several times in the Rule and uses the Field Position
(FP) to identify the correct instance, and thereby removing the ambiguity of the matching operation.</t>
  <t>Field sizes defined in the CoAP protocol can be too large regarding LPWAN traffic constraints.
This is particularly true for the Message-ID field and the Token field. SCHC uses different Matching operators (MO)
to perform the compression. See section 7.4 of <xref target="rfc8724"/>. In this case, the Most Significant Bits (MSB) MO can be applied 
to reduce the information carried on LPWANs.</t>
</list></t>

</section>
</section>
<section anchor="CoAPcomp" title="Compression of CoAP header fields">

<t>This section discusses the compression of the different CoAP header fields. The CoAP compression with 
SCHC follows the Section 7.1 of <xref target="rfc8724"/>.</t>

<section anchor="coap-version-field" title="CoAP version field">

<t>CoAP version is bidirectional and MUST be elided during the SCHC compression since it always
contains the same value. In the future, if new versions of CoAP are defined, new Rules will
be needed to avoid ambiguities between versions.</t>

</section>
<section anchor="coap-type-field" title="CoAP type field">

<t>The CoAP Protocol <xref target="rfc7252"/> has four types of messages: two requests (CON, NON),
one response (ACK), and one empty message (RST).</t>

<t>The field SHOULD be elided if, for instance, a client is sending only NON or only CON messages. For the
RST message, a dedicated Rule may be needed. For other usages, a mapping list can be used.</t>

</section>
<section anchor="coap-code-field" title="CoAP code field">

<t>The code field indicates the Request Method used in CoAP, an IANA registry <xref target="rfc7252"/>.
The compression of the CoAP code field follows the same principle as that of the CoAP type field. If the device plays a specific role, the set of code values can be split into two parts, the request codes with the 0 class and the response values.</t>

<t>If the device only implements a CoAP client, the request code can be reduced to the set of requests the client can to process.</t>

<t>A mapping list can be used for known values. The field cannot be compressed for other values, and the value needs to be sent in the Compression Residue.</t>

</section>
<section anchor="coap-message-id-field" title="CoAP Message ID field">

<t>The Message ID field can be compressed with the MSB(x) MO and the Least Significant Bits (LSB) CDA. See section 7.4 of <xref target="rfc8724"/>.</t>

</section>
<section anchor="coap-token-fields" title="CoAP Token fields">
<t>A Token is defined through two CoAP fields, Token Length in the mandatory header and 
Token Value directly following the mandatory CoAP header.</t>

<t>Token Length is processed as any protocol field. If the value does not change, the size 
can be stored in the TV and elided during the transmission. Otherwise, it will 
have to be sent in the Compression Residue.</t>

<t>Token Value MUST NOT be sent as a variable-length residue to avoid ambiguity with Token 
Length. Therefore, the Token Length value MUST be used to define the size of the Compression Residue. 
A specific function designated as “TKL” MUST be used in the Rule. During the decompression, this function returns the value contained in the Token Length field.</t>

</section>
</section>
<section anchor="coap-options" title="CoAP options">
<t>CoAP defines options that are placed after the based header in Option
Numbers order, see <xref target="rfc7252"/>.  Each Option instance in a message uses
the format Delta-Type (D-T), Length (L), Value (V).  When applying
SCHC compression to the Option, the D-T, L, and V format serve to
make the Rule description of the Option.  The SCHC compression builds
the description of the Option by using in the Field ID the Option
Number built from D-T; in TV, the Option Value; and the Option Length
uses section 7.4 of  <xref target="rfc8724"/>.  When the Option Length has a wellknown
size, it can be stored in the Rule.  Therefore, SCHC compression does
not send it.  Otherwise, SCHC Compression carries the length of the
Compression Residue, in addition to the Compression Residue value.</t>

<t>CoAP requests and responses do not include the same options.  So
Compression Rules may reflect this asymmetry by tagging the
direction indicator.</t>

<t>Note that length coding differs between CoAP options and SCHC variable size Compression Residue.</t>

<t>The following sections present how SCHC compresses some specific CoAP options.</t>

<t>If a new option is introduced in CoAP, a new Field ID has to be assigned in the Rules to allow its compression. Otherwise, if no Rule describes this Option, the SCHC compression is not possible, and the CoAP header is sent without compression.</t>

<section anchor="coap-content-and-accept-options" title="CoAP Content and Accept options.">

<t>If the client expects a single value, it can be stored in the TV and elided during the transmission. Otherwise, if the client expects several possible values,
a matching-list SHOULD be used to limit the Compression Residue’s size. Otherwise, the value has to be sent as a Compression Residue (fixed or variable length).</t>

</section>
<section anchor="coap-option-max-age-uri-host-and-uri-port-fields" title="CoAP option Max-Age, Uri-Host, and Uri-Port fields">

<t>If both ends know the value, the value can be elided.</t>

<t>A matching list can be used if some well-known values are defined.</t>

<t>Otherwise, these options can be sent as a Compression Residue.</t>

</section>
<section anchor="coap-option-uri-path-and-uri-query-fields" title="CoAP option Uri-Path and Uri-Query fields">

<t>Uri-Path and Uri-Query elements are repeatable options. The Field Position (FP) gives the 
position in the path.</t>

<t>A Mapping list can be used to reduce the size of variable Paths or Queries. In that case, to
optimize the compression, several elements can be regrouped into a single entry. 
The Numbering of elements do not change; MO comparison is set with the first element 
of the matching.</t>

<figure title="complex path example" anchor="Fig--complex-path"><artwork><![CDATA[
   +-------------+---+--+--+--------+---------+-------------+
   | Field       |FL |FP|DI| Target | Match   |     CDA     |
   |             |   |  |  | Value  | Opera.  |             |
   +-------------+---+--+--+--------+---------+-------------+
   |Uri-Path     |   | 1|up|["/a/b",|equal    |not-sent     |
   |             |   |  |  |"/c/d"] |         |             |
   |Uri-Path     |var| 3|up|        |ignore   |value-sent   |
   +-------------+---+--+--+--------+---------+-------------+


]]></artwork></figure>

<t>In <xref target="Fig--complex-path"/>, a single bit residue can be used to code one of the 2 paths. If regrouping were not allowed, a 2 bits residue would be needed. The third path element is sent as a variable size residue.</t>

<section anchor="variable-length-uri-path-and-uri-query" title="Variable-length Uri-Path and Uri-Query">

<t>When the length is not known at the Rule creation, the Field Length MUST be set to variable, 
and the unit is set to bytes.</t>

<t>The MSB MO can be applied to a Uri-Path or Uri-Query element. Since MSB value is given in bit,
the size MUST always be a multiple of 8 bits.</t>

<t>The length sent at the beginning of a variable-length residue indicates the size of the LSB in bytes.</t>

<t>For instance, for a CORECONF path /c/X6?k=”eth0” the Rule can be set to:</t>

<figure title="CORECONF URI compression" anchor="Fig-CoMicompress"><artwork><![CDATA[
   +-------------+---+--+--+--------+---------+-------------+
   | Field       |FL |FP|DI| Target | Match   |     CDA     |
   |             |   |  |  | Value  | Opera.  |             |
   +-------------+---+--+--+--------+---------+-------------+
   |Uri-Path     |  8| 1|up|"c"     |equal    |not-sent     |
   |Uri-Path     |var| 2|up|        |ignore   |value-sent   |
   |Uri-Query    |var| 1|up|"k="    |MSB(16)  |LSB          |
   +-------------+---+--+--+--------+---------+-------------+
]]></artwork></figure>

<t><xref target="Fig-CoMicompress"/> shows the parsing and the compression of the URI, where c is not sent.
The second element is sent with the length (i.e., 0x2 X 6) followed by the query option 
(i.e. 0x05 “eth0”).</t>

</section>
<section anchor="variable-number-of-path-or-query-elements" title="Variable number of Path or Query elements">

<t>The number of Uri-Path or Uri-Query elements in a Rule is fixed at the Rule creation time. If the number
varies, several Rules SHOULD be created to cover all the possibilities. Another possibility is
to define the length of Uri-Path to variable and send a Compression Residue with a length of 0 to 
indicate that this Uri-Path is empty. This adds 4 bits to the variable Residue size. See section 7.5.2 <xref target="rfc8724"/></t>

</section>
</section>
<section anchor="coap-option-size1-size2-proxy-uri-and-proxy-scheme-fields" title="CoAP option Size1, Size2, Proxy-URI and Proxy-Scheme fields">

<t>If the field value has to be sent, TV is not set, MO is set to “ignore”, and CDA is set
to “value-sent.” A mapping MAY also be used.</t>

<t>Otherwise, the TV is set to the value, MO is set to “equal”, and CDA is set to “not-sent”.</t>

</section>
<section anchor="coap-option-etag-if-match-if-none-match-location-path-and-location-query-fields" title="CoAP option ETag, If-Match, If-None-Match, Location-Path, and Location-Query fields">

<t>These fields’ values cannot be stored in a Rule entry. They MUST always be sent with the
Compression Residues.</t>

</section>
</section>
<section anchor="schc-compression-of-coap-extension-rfcs" title="SCHC compression of CoAP extension RFCs">

<section anchor="block" title="Block">

<t>Block <xref target="rfc7959"/> allows a fragmentation at the CoAP level. SCHC also includes a fragmentation protocol.
They can be both used. If a block option is used, its content MUST be sent as a Compression Residue.</t>

</section>
<section anchor="observe" title="Observe">

<t>The <xref target="rfc7641"/> defines the Observe option. The TV is not set, MO is set to “ignore”, and the
CDA is set to “value-sent”. SCHC does not limit the maximum size for this option (3 bytes).
To reduce the transmission size, either the device implementation MAY limit the delta between two consecutive values,
or a proxy can modify the increment.</t>

<t>Since an RST message may be sent to inform a server that the client
does not require Observe response; a Rule SHOULD exist to allow the message’s compression with the RST type.</t>

</section>
<section anchor="no-response" title="No-Response">

<t>The <xref target="rfc7967"/> defines a No-Response option limiting the responses made by a server to
a request. If both ends know the value, then TV is set to this value, MO is 
set to “equal”, and CDA is set to “not-sent”.</t>

<t>Otherwise, if the value is changing over time, TV is not set, MO is set to “ignore”, and
CDA to “value-sent”. A matching list can also be used to reduce the size.</t>

</section>
<section anchor="Sec-OSCORE" title="OSCORE">

<t>OSCORE <xref target="rfc8613"/> defines end-to-end protection for CoAP messages. 
This section describes how SCHC Rules can be applied to compress OSCORE-protected messages.</t>

<figure title="OSCORE Option" anchor="Fig-OSCORE-Option"><artwork><![CDATA[
      0 1 2 3 4 5 6 7 <--------- n bytes ------------->
     +-+-+-+-+-+-+-+-+---------------------------------
     |0 0 0|h|k|  n  |      Partial IV (if any) ...    
     +-+-+-+-+-+-+-+-+---------------------------------
     |               |                                |
     |<--  CoAP   -->|<------ CoAP OSCORE_piv ------> |
        OSCORE_flags 

      <- 1 byte -> <------ s bytes ----->
     +------------+----------------------+-----------------------+
     | s (if any) | kid context (if any) | kid (if any)      ... |
     +------------+----------------------+-----------------------+
     |                                   |                       |
     | <------ CoAP OSCORE_kidctx ------>|<-- CoAP OSCORE_kid -->|

]]></artwork></figure>

<t>The encoding of the OSCORE Option Value defined in Section 6.1 of <xref target="rfc8613"/> is repeated in <xref target="Fig-OSCORE-Option"/>.</t>

<t>The first byte specifies the content of the OSCORE options using flags. The three most significant bits of this byte are reserved and always set to 0. Bit h, when set, indicates the presence of the kid context field in the option. Bit k, when set, indicates the presence of a kid field. The three least significant bits n indicate the length of the piv (Partial Initialization Vector) field in bytes. When n = 0, no piv is present.</t>

<t>The flag byte is followed by the piv field, kid context field, and kid field in this order, and if present, the length of the kid context field is encoded in the first byte denoting by s the length of the kid context in bytes.</t>

<t>This specification recommends identifying the OSCORE Option and the
fields it contains. Conceptually, it discerns up to 4 distinct pieces
of information within the OSCORE option: the flag bits, the piv, the
kid context, and the kid.  The SCHC Rule splits into four field
descriptions the OSCORE option to compress them:</t>

<t><list style="symbols">
  <t>CoAP OSCORE_flags,</t>
  <t>CoAP OSCORE_piv,</t>
  <t>CoAP OSCORE_kidctx,</t>
  <t>CoAP OSCORE_kid.</t>
</list></t>

<t><xref target="Fig-OSCORE-Option"/> shows the OSCORE Option format with those four fields
superimposed on it.  Note that the CoAP OSCORE_kidctx field includes directly the size octet s.</t>

</section>
</section>
<section anchor="examples-of-coap-header-compression" title="Examples of CoAP header compression">

<section anchor="mandatory-header-with-con-message" title="Mandatory header with CON message">

<t>In this first scenario, the LPWAN Compressor at the Network Gateway side receives from an Internet client 
a POST message, which is immediately acknowledged by the Device. For this simple
scenario, the Rules are described in <xref target="Fig-CoAP-header-1"/>.</t>

<figure title="CoAP Context to compress header without token" anchor="Fig-CoAP-header-1"><artwork><![CDATA[
RuleID 1
+-------------+--+--+--+------+---------+-------------++------------+
| Field       |FL|FP|DI|Target| Match   |     CDA     ||    Sent    |
|             |  |  |  |Value | Opera.  |             ||   [bits]   |
+-------------+--+--+--+------+---------+-------------++------------+
|CoAP version | 2| 1|bi|  01  |equal    |not-sent     ||            |
|CoAP Type    | 2| 1|dw| CON  |equal    |not-sent     ||            |
|CoAP Type    | 2| 1|up|[ACK, |         |             ||            |
|             |  |  |  | RST] |match-map|matching-sent|| T          |
|CoAP TKL     | 4| 1|bi| 0    |equal    |not-sent     ||            |
|CoAP Code    | 8| 1|bi|[0.00,|         |             ||            |
|             |  |  |  | ...  |         |             ||            |
|             |  |  |  | 5.05]|match-map|matching-sent||  CC CCC    |
|CoAP MID     |16| 1|bi| 0000 |MSB(7 )  |LSB          ||        M-ID|
|CoAP Uri-Path|var 1|dw| path |equal 1  |not-sent     ||            |
+-------------+--+--+--+------+---------+-------------++------------+



]]></artwork></figure>

<t>The version  and Token Length fields are elided. The 26 method and response codes
defined in <xref target="rfc7252"/> has been shrunk to 5 bits
using a matching list.  Uri-Path contains
a single element indicated in the matching operator.</t>

<t>SCHC Compression reduces the header sending only the Type, a mapped
code and the least significant bits of Message ID (9 bits in the example above).</t>

<t>Note that a request sent by a client located in an Application Server to a server 
located in the device, may not be compressed through
this Rule since the MID will not start with 7 bits equal to 0. A CoAP proxy,
before the core SCHC C/D can rewrite the message ID to a value matched by the Rule.</t>

</section>
<section anchor="Sec-OSCORE-Examples" title="OSCORE Compression">

<t>OSCORE aims to solve the problem of end-to-end encryption for CoAP messages.
The goal, therefore, is to hide as much of the message as possible
while still enabling proxy operation.</t>

<t>Conceptually this is achieved by splitting the CoAP message into an Inner
Plaintext and Outer OSCORE Message. The Inner Plaintext contains sensitive
information that is not necessary for proxy operation. This, in turn, is the
part of the message which can be encrypted until it
reaches its end destination. The Outer Message acts as a shell matching the 
regular CoAP message format and includes all Options and information 
needed for proxy operation and caching. This decomposition is illustrated in 
<xref target="Fig-inner-outer"/>.</t>

<t>CoAP options are sorted into one of 3 classes, each granted a specific
type of protection by the protocol:</t>

<t><list style="symbols">
  <t>Class E: Encrypted options moved to the Inner Plaintext,</t>
  <t>Class I: Integrity-protected options included in the AAD for the encryption
 of the Plaintext but otherwise left untouched in the Outer Message,</t>
  <t>Class U: Unprotected options left untouched in the Outer Message.</t>
</list></t>

<t>Additionally, the OSCORE Option is added as an Outer option, signaling that the
message is OSCORE protected. This option carries the information necessary to
retrieve the Security Context with which the message was encrypted to be correctly decrypted at the other end-point.</t>

<figure title="A CoAP message is split into an OSCORE outer and plaintext" anchor="Fig-inner-outer"><artwork><![CDATA[
 
                      Original CoAP Message
                   +-+-+---+-------+---------------+
                   |v|t|tkl| code  |  Msg Id.      |
                   +-+-+---+-------+---------------+....+
                   | Token                              |
                   +-------------------------------.....+
                   | Options (IEU)            |
                   .                          .
                   .                          .
                   +------+-------------------+ 
                   | 0xFF |
                   +------+------------------------+
                   |                               |
                   |     Payload                   |
                   |                               |
                   +-------------------------------+      
                          /                \ 
                         /                  \
                        /                    \
                       /                      \
     Outer Header     v                        v  Plaintext
  +-+-+---+--------+---------------+          +-------+
  |v|t|tkl|new code|  Msg Id.      |          | code  |
  +-+-+---+--------+---------------+....+     +-------+-----......+
  | Token                               |     | Options (E)       |
  +--------------------------------.....+     +-------+------.....+
  | Options (IU)             |                | OxFF  |
  .                          .                +-------+-----------+
  . OSCORE Option            .                |                   |
  +------+-------------------+                | Payload           |
  | 0xFF |                                    |                   |
  +------+                                    +-------------------+

]]></artwork></figure>

<t><xref target="Fig-inner-outer"/> shows the message format for the OSCORE Message and
Plaintext.</t>

<t>In the Outer Header, the original message code is hidden and replaced by a default
dummy value. As seen in Sections 4.1.3.5 and 4.2 of <xref target="rfc8613"/>,
the message code is replaced by POST for requests and Changed for responses when Observe 
is not used. If Observe is used, the message code is replaced by FETCH for requests and Content
for responses.</t>

<t>The original message code is put into the
first byte of the Plaintext. Following the message code, the class E options come,
and, if present, the original message Payload is preceded by its payload marker.</t>

<t>The Plaintext is now encrypted by an AEAD algorithm which integrity protects
Security Context parameters and, eventually, any class I options from the
Outer Header. Currently, no CoAP options are marked class I. The resulting
Ciphertext becomes the new Payload of the OSCORE message, as illustrated in
<xref target="Fig-full-oscore"/>.</t>

<t>As defined in <xref target="rfc5116"/>, this Ciphertext is the concatenation of the
encrypted Plaintext and its authentication tag. Note that Inner Compression only 
affects the Plaintext before encryption. Thus only the first variable-length of the Ciphertext can be reduced. The authentication tag is fixed in 
length and is considered part of the cost of protection.</t>

<figure title="OSCORE message" anchor="Fig-full-oscore"><artwork><![CDATA[
 
   
     Outer Header                           
  +-+-+---+--------+---------------+          
  |v|t|tkl|new code|  Msg Id.      |          
  +-+-+---+--------+---------------+....+     
  | Token                               |     
  +--------------------------------.....+     
  | Options (IU)             |               
  .                          .               
  . OSCORE Option            .               
  +------+-------------------+               
  | 0xFF |                                  
  +------+---------------------------+
  |                                  |
  | Ciphertext: Encrypted Inner      |
  |             Header and Payload   |
  |             + Authentication Tag |
  |                                  |
  +----------------------------------+
   
]]></artwork></figure>

<t>The SCHC Compression scheme consists of compressing both the Plaintext before
encryption and the resulting OSCORE message after encryption, see <xref target="Fig-OSCORE-Compression"/>.</t>

<t>This translates into a segmented process where SCHC compression is applied independently in 
2 stages, each with its corresponding set of Rules, with the Inner SCHC Rules and the Outer SCHC Rules. 
This way, compression is applied to all fields of the original CoAP message.</t>

<t>Note that since the corresponding end-point can only decrypt the Inner part of the message, this end-point will also have to implement Inner SCHC Compression/Decompression.</t>

<figure title="OSCORE Compression Diagram" anchor="Fig-OSCORE-Compression"><artwork><![CDATA[
     Outer Message                             OSCORE Plaintext
  +-+-+---+--------+---------------+          +-------+
  |v|t|tkl|new code|  Msg Id.      |          | code  |
  +-+-+---+--------+---------------+....+     +-------+-----......+
  | Token                               |     | Options (E)       |
  +--------------------------------.....+     +-------+------.....+
  | Options (IU)             |                | OxFF  |
  .                          .                +-------+-----------+
  . OSCORE Option            .                |                   |
  +------+-------------------+                | Payload           |
  | 0xFF |                                    |                   |
  +------+------------+                       +-------------------+
  |  Ciphertext       |<---------\                      |
  |                   |          |                      v
  +-------------------+          |             +-----------------+
          |                      |             |   Inner SCHC    |
          v                      |             |   Compression   |
    +-----------------+          |             +-----------------+
    |   Outer SCHC    |          |                      |
    |   Compression   |          |                      v
    +-----------------+          |              +-------+
          |                      |              |RuleID |
          v                      |              +-------+--+
      +--------+           +------------+       | Residue  |
      |RuleID' |           | Encryption | <---  +----------+--------+
      +--------+--+        +------------+       |                   |
      | Residue'  |                             | Payload           |
      +-----------+-------+                     |                   |
      |  Ciphertext       |                     +-------------------+
      |                   |     
      +-------------------+
      
]]></artwork></figure>

</section>
<section anchor="example-oscore-compression" title="Example OSCORE Compression">

<t>An example is given with a GET Request and its consequent Content
Response from a device-based CoAP client to a cloud-based CoAP server. 
A possible set of Rules for the Inner and Outer SCHC
Compression is shown. A dump of the results and a contrast between SCHC + OSCORE
performance with SCHC + COAP performance is also listed. This gives an approximation to the
cost of security with SCHC-OSCORE.</t>

<t>Our first example CoAP message is the GET Request in <xref target="Fig-GET-temp"/></t>

<figure title="CoAP GET Request" anchor="Fig-GET-temp"><artwork><![CDATA[
Original message:
=================
0x4101000182bb74656d7065726174757265

Header:
0x4101
01   Ver
  00   CON
    0001   tkl
        00000001   Request Code 1 "GET"

0x0001 = mid
0x82 = token

Options:
0xbb74656d7065726174757265
Option 11: URI_PATH
Value = temperature

Original msg length:   17 bytes.
]]></artwork></figure>

<t>Its corresponding response is the CONTENT Response in <xref target="Fig-CONTENT-temp"/>.</t>

<figure title="CoAP CONTENT Response" anchor="Fig-CONTENT-temp"><artwork><![CDATA[
Original message:
=================
0x6145000182ff32332043

Header:
0x6145
01   Ver
  10   ACK
    0001   tkl
        01000101 Successful Response Code 69 "2.05 Content"

0x0001 = mid
0x82 = token

0xFF  Payload marker
Payload:
0x32332043

Original msg length:   10
]]></artwork></figure>

<t>The SCHC Rules for the Inner Compression include all fields already present in a regular CoAP message. The methods described in <xref target="CoAPcomp"/> apply to these fields. As an example, see <xref target="Fig-Inner-Rules"/>.</t>

<figure title="Inner SCHC Rules" anchor="Fig-Inner-Rules"><artwork><![CDATA[
 RuleID 0
+--------------+--+--+--+-----------+----------+----------++------+
| Field        |FL|FP|DI|  Target   |    MO    |    CDA   || Sent |
|              |  |  |  |  Value    |          |          ||[bits]|
+--------------+--+--+--+-----------+----------+----------++------+
|CoAP Code     | 8| 1|up|   1       |  equal   |not-sent  ||      |
|CoAP Code     | 8| 1|dw|[69,132]   | match-map|match-sent|| c    |
|CoAP Uri-Path |88| 1|up|temperature|  equal   |not-sent  ||      |
+--------------+--+--+--+-----------+----------+----------++------+
]]></artwork></figure>

<t><xref target="Fig-Inner-Compression-GET"/> shows the Plaintext obtained for the example GET Request and follows the process of Inner Compression and Encryption until the end up with the Payload to be added in the outer OSCORE Message.</t>

<t>In this case, the original message has no payload, and its resulting Plaintext can be compressed up to only 1 byte (size of the RuleID). The AEAD algorithm preserves this length in its first output and yields a fixed-size tag that cannot be compressed and has to be included in the OSCORE message. This translates into an overhead in total message length, limiting the amount of compression that can be achieved and plays into the cost of adding security to the exchange.</t>

<figure title="Plaintext compression and encryption for GET Request" anchor="Fig-Inner-Compression-GET"><artwork><![CDATA[
   ________________________________________________________
  |                                                        |
  | OSCORE Plaintext                                       |
  |                                                        |
  | 0x01bb74656d7065726174757265  (13 bytes)               |
  |                                                        |
  | 0x01 Request Code GET                                  |
  |                                                        |
  |      bb74656d7065726174757265 Option 11: URI_PATH      |
  |                               Value = temperature      |
  |________________________________________________________|

                              |
                              |
                              | Inner SCHC Compression
                              |
                              v
                _________________________________
               |                                 |
               | Compressed Plaintext            |
               |                                 |
               | 0x00                            |
               |                                 |
               | RuleID = 0x00 (1 byte)          |
               | (No residue)                    |
               |_________________________________|

                              |
                              | AEAD Encryption
                              |  (piv = 0x04)
                              v
         _________________________________________________
        |                                                 |
        |  encrypted_plaintext = 0xa2 (1 byte)            |
        |  tag = 0xc54fe1b434297b62 (8 bytes)             |
        |                                                 |
        |  ciphertext = 0xa2c54fe1b434297b62 (9 bytes)    |
        |_________________________________________________|

]]></artwork></figure>

<t>In <xref target="Fig-Inner-Compression-CONTENT"/>, the process is repeated for the example CONTENT Response. The residue is 1 bit long. Note that since SCHC adds padding after the payload, this misalignment causes the hexadecimal code from the payload to differ from the original, even though it has not been compressed.</t>

<t>On top of this, the overhead from the tag bytes is incurred as before.</t>

<figure title="Plaintext compression and encryption for CONTENT Response" anchor="Fig-Inner-Compression-CONTENT"><artwork><![CDATA[
   ________________________________________________________
  |                                                        |
  | OSCORE Plaintext                                       |
  |                                                        |
  | 0x45ff32332043  (6 bytes)                              |
  |                                                        |
  | 0x45 Successful Response Code 69 "2.05 Content"        |
  |                                                        |
  |     ff Payload marker                                  |
  |                                                        |
  |       32332043 Payload                                 |
  |________________________________________________________|

                              |
                              |
                              | Inner SCHC Compression
                              |
                              v
         __________________________________________
        |                                          |
        | Compressed Plaintext                     |
        |                                          |
        | 0x001919902180 (6 bytes)                 |                                 
        |                                          |
        |   00 RuleID                             |
        |                                          |
        |    0b0 (1 bit match-map residue)         |
        |       0x32332043 >> 1 (shifted payload)  |
        |                        0b0000000 Padding |
        |__________________________________________|

                              |
                              | AEAD Encryption
                              |  (piv = 0x04)
                              v
     _________________________________________________________
    |                                                         |
    |  encrypted_plaintext = 0x10c6d7c26cc1 (6 bytes)         |
    |  tag = 0xe9aef3f2461e0c29 (8 bytes)                     |
    |                                                         |
    |  ciphertext = 0x10c6d7c26cc1e9aef3f2461e0c29 (14 bytes) |
    |_________________________________________________________|

]]></artwork></figure>

<t>The Outer SCHC Rules (<xref target="Fig-Outer-Rules"/>) must process the OSCORE Options
fields. The <xref target="Fig-Protected-Compressed-GET"/> and <xref target="Fig-Protected-Compressed-CONTENT"/> 
show a dump of the OSCORE Messages generated from the example messages once they have been
provided with the Inner Compressed Ciphertext in the payload.  These
are the messages that have to be compressed by the Outer SCHC Compression.</t>

<figure title="Protected and Inner SCHC Compressed GET Request" anchor="Fig-Protected-Compressed-GET"><artwork><![CDATA[
Protected message:
==================
0x4102000182d8080904636c69656e74ffa2c54fe1b434297b62
(25 bytes)

Header:
0x4102
01   Ver
  00   CON
    0001   tkl
        00000010   Request Code 2 "POST"

0x0001 = mid
0x82 = token

Options:
0xd8080904636c69656e74 (10 bytes)
Option 21: OBJECT_SECURITY
Value = 0x0904636c69656e74
          09 = 000 0 1 001 Flag byte
                   h k  n
            04 piv
              636c69656e74 kid


0xFF  Payload marker
Payload:
0xa2c54fe1b434297b62 (9 bytes)
]]></artwork></figure>

<figure title="Protected and Inner SCHC Compressed CONTENT Response" anchor="Fig-Protected-Compressed-CONTENT"><artwork><![CDATA[
Protected message:
==================
0x6144000182d008ff10c6d7c26cc1e9aef3f2461e0c29
(22 bytes)

Header:
0x6144
01   Ver
  10   ACK
    0001   tkl
        01000100   Successful Response Code 68 "2.04 Changed"

0x0001 = mid
0x82 = token

Options:
0xd008 (2 bytes)
Option 21: OBJECT_SECURITY
Value = b''

0xFF  Payload marker
Payload:
0x10c6d7c26cc1e9aef3f2461e0c29 (14 bytes)
]]></artwork></figure>

<t>For the flag bits, some SCHC compression methods are
useful, depending on the application.  The simplest alternative is to
provide a fixed value for the flags, combining MO equal and CDA not-
sent.  This saves most bits but could prevent flexibility.  Otherwise,
match-mapping could be used to choose from an interesting number of configurations for the exchange.<vspace />
Otherwise, MSB could be used to mask off the 3 hard-coded most significant bits.</t>

<t>Note that fixing a flag bit will limit CoAP Options choice that can be used in the exchange since their values are dependent on certain options.</t>

<t>The piv field lends itself to having some bits masked off with MO MSB and CDA LSB.
This could be useful in applications where the message frequency is low such as LPWAN technologies. 
Note that compressing the sequence numbers effectively reduces the maximum number of sequence numbers used in an exchange. 
Once this amount is exceeded, the OSCORE keys need to be re-established.</t>

<t>The size s included in the kid context field MAY be masked off with CDA MSB. 
The rest of the field could have additional bits masked off or have the whole field be fixed with MO equal and CDA not-sent. 
The same holds for the kid field.</t>

<t><xref target="Fig-Outer-Rules"/> shows a possible set of Outer Rules to compress the Outer Header.</t>

<figure title="Outer SCHC Rules" anchor="Fig-Outer-Rules"><artwork><![CDATA[
RuleID 0
+------------------+--+--+--+--------------+-------+--------++------+
| Field            |FL|FP|DI|    Target    |   MO  |   CDA  || Sent |
|                  |  |  |  |    Value     |       |        ||[bits]|
+------------------+--+--+--+--------------+-------+--------++------+ 
|CoAP version      | 2| 1|bi|      01      |equal  |not-sent||      |
|CoAP Type         | 2| 1|up|      0       |equal  |not-sent||      |
|CoAP Type         | 2| 1|dw|      2       |equal  |not-sent||      |
|CoAP TKL          | 4| 1|bi|      1       |equal  |not-sent||      |
|CoAP Code         | 8| 1|up|      2       |equal  |not-sent||      |
|CoAP Code         | 8| 1|dw|      68      |equal  |not-sent||      |
|CoAP MID          |16| 1|bi|     0000     |MSB(12)|LSB     ||MMMM  |
|CoAP Token        |tkl 1|bi|     0x80     |MSB(5) |LSB     ||TTT   |
|CoAP OSCORE_flags | 8| 1|up|     0x09     |equal  |not-sent||      |
|CoAP OSCORE_piv   |var 1|up|     0x00     |MSB(4) |LSB     ||PPPP  |
|COAP OSCORE_kid   |var 1|up|0x636c69656e70|MSB(52)|LSB     ||KKKK  |
|COAP OSCORE_kidctx|var 1|bi|     b''      |equal  |not-sent||      |
|CoAP OSCORE_flags | 8| 1|dw|     b''      |equal  |not-sent||      |
|CoAP OSCORE_piv   |var 1|dw|     b''      |equal  |not-sent||      |
|CoAP OSCORE_kid   |var 1|dw|     b''      |equal  |not-sent||      |
+------------------+--+--+--+--------------+-------+--------++------+
]]></artwork></figure>

<t>These Outer Rules are applied to the example GET Request and CONTENT Response. 
The resulting messages are shown in <xref target="Fig-Compressed-GET"/> and <xref target="Fig-Compressed-CONTENT"/>.</t>

<figure title="SCHC-OSCORE Compressed GET Request" anchor="Fig-Compressed-GET"><artwork><![CDATA[
Compressed message:
==================
0x001489458a9fc3686852f6c4 (12 bytes)
0x00 RuleID
    1489 Compression Residue
        458a9fc3686852f6c4 Padded payload

Compression Residue:
0b 0001 010 0100 0100 (15 bits -> 2 bytes with padding)
    mid tkn piv  kid

Payload
0xa2c54fe1b434297b62 (9 bytes)

Compressed message length: 12 bytes
]]></artwork></figure>

<figure title="SCHC-OSCORE Compressed CONTENT Response" anchor="Fig-Compressed-CONTENT"><artwork><![CDATA[
Compressed message:
==================
0x0014218daf84d983d35de7e48c3c1852 (16 bytes)
0x00 RuleID
    14 Compression Residue
      218daf84d983d35de7e48c3c1852 Padded payload
Compression Residue:
0b0001 010 (7 bits -> 1 byte with padding)
  mid  tkn

Payload
0x10c6d7c26cc1e9aef3f2461e0c29 (14 bytes)

Compressed msg length: 16 bytes
]]></artwork></figure>

<t>In contrast, comparing these results with what would be obtained by SCHC
compressing the original CoAP messages without protecting them with OSCORE is done
by compressing the CoAP messages according to the SCHC Rules in <xref target="Fig-NoOsc-Rules"/>.</t>

<figure title="SCHC-CoAP Rules (No OSCORE)" anchor="Fig-NoOsc-Rules"><artwork><![CDATA[
RuleID 1
+---------------+--+--+--+-----------+---------+-----------++-------+
| Field         |FL|FP|DI|  Target   |   MO    |     CDA   ||  Sent |
|               |  |  |  |  Value    |         |           || [bits]|
+---------------+--+--+--+-----------+---------+-----------++-------+ 
|CoAP version   | 2| 1|bi|    01     |equal    |not-sent   ||       |
|CoAP Type      | 2| 1|up|    0      |equal    |not-sent   ||       |
|CoAP Type      | 2| 1|dw|    2      |equal    |not-sent   ||       |
|CoAP TKL       | 4| 1|bi|    1      |equal    |not-sent   ||       |
|CoAP Code      | 8| 1|up|    2      |equal    |not-sent   ||       |
|CoAP Code      | 8| 1|dw| [69,132]  |match-map|map-sent   ||C      |
|CoAP MID       |16| 1|bi|   0000    |MSB(12)  |LSB        ||MMMM   |
|CoAP Token     |tkl 1|bi|    0x80   |MSB(5)   |LSB        ||TTT    |
|CoAP Uri-Path  |88| 1|up|temperature|equal    |not-sent   ||       |
+---------------+--+--+--+-----------+---------+-----------++-------+
]]></artwork></figure>

<t>This yields the results in <xref target="Fig-GET-temp-no-oscore"/> for the Request, and
<xref target="Fig-CONTENT-temp-no-oscore"/> for the Response.</t>

<figure title="CoAP GET Compressed without OSCORE" anchor="Fig-GET-temp-no-oscore"><artwork><![CDATA[
Compressed message:
==================
0x0114
0x01 = RuleID

Compression Residue:
0b00010100 (1 byte)

Compressed msg length: 2

]]></artwork></figure>

<figure title="CoAP CONTENT Compressed without OSCORE" anchor="Fig-CONTENT-temp-no-oscore"><artwork><![CDATA[

Compressed message:
==================
0x010a32332043
0x01 = RuleID

Compression Residue:
0b00001010 (1 byte)

Payload
0x32332043

Compressed msg length: 6


]]></artwork></figure>

<t>As can be seen, the difference between applying SCHC + OSCORE as compared to 
regular SCHC + COAP is about 10 bytes.</t>

</section>
</section>
<section anchor="iana-considerations" title="IANA Considerations">

<t>This document has no request to IANA.</t>

</section>
<section anchor="SecConsiderations" title="Security considerations">

<t>When applied to LPWAN, the Security Considerations of SCHC header compression <xref target="rfc8724"/> are valid for SCHC CoAP header compression. When CoAP uses OSCORE, the security considerations defined in <xref target="rfc8613"/> does not change when SCHC header compression is applied.</t>

<t>The definition of SCHC over CoAP header fields permits the compression of header information only. The SCHC header compression itself does not increase or reduce the level of security in the communication. When the connection does not use any security protocol as OSCORE, DTLS, or other, it is highly necessary to use a layer two security.</t>

<t>DoS attacks are possible if an intruder can introduce a compressed SCHC corrupted packet onto the link and cause a compression efficiency reduction. However, an intruder having the ability to add corrupted packets at the link layer raises additional security issues than those related to the use of header compression.</t>

<t>SCHC compression returns variable-length Residues for some CoAP fields. In the compressed header, the length sent is not the original header field length but the length of the Residue. So if a corrupted packet comes to the decompressor with a longer or shorter length than the one in the original header, SCHC decompression will detect an error and drops the packet.</t>

<t>OSCORE compression is also based on the same compression method described in <xref target="rfc8724"/>. The size of the Initialisation Vector (IV) residue must be considered carefully. A residue size obtained with LSB CDA over the IV impacts on the compression efficiency and the frequency the device will renew its key. This operation requires several exchanges and is energy-consuming.</t>

<t>SCHC header and compression Rules MUST remain tightly coupled. Otherwise, an encrypted residue may be decompressed differently by the receiver. To avoid this situation, if the Rule is modified in one location, the OSCORE keys MUST be re-established.</t>

</section>
<section anchor="acknowledgements" title="Acknowledgements">

<t>The authors would like to thank (in alphabetic order): Christian Amsuss, Dominique Barthel, Carsten Bormann, Theresa Enghardt, Thomas Fossati, Klaus Hartke, Francesca Palombini, Alexander Pelov and Goran Selander.</t>

</section>


  </middle>

  <back>

    <references title='Normative References'>





<reference  anchor="RFC2119" target='https://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author initials='S.' surname='Bradner' fullname='S. Bradner'><organization /></author>
<date year='1997' month='March' />
<abstract><t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='2119'/>
<seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>



<reference  anchor="rfc5116" target='https://www.rfc-editor.org/info/rfc5116'>
<front>
<title>An Interface and Algorithms for Authenticated Encryption</title>
<author initials='D.' surname='McGrew' fullname='D. McGrew'><organization /></author>
<date year='2008' month='January' />
<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="rfc7252" target='https://www.rfc-editor.org/info/rfc7252'>
<front>
<title>The Constrained Application Protocol (CoAP)</title>
<author initials='Z.' surname='Shelby' fullname='Z. Shelby'><organization /></author>
<author initials='K.' surname='Hartke' fullname='K. Hartke'><organization /></author>
<author initials='C.' surname='Bormann' fullname='C. Bormann'><organization /></author>
<date year='2014' month='June' />
<abstract><t>The Constrained Application Protocol (CoAP) is a specialized web transfer protocol for use with constrained nodes and constrained (e.g., low-power, lossy) networks.  The nodes often have 8-bit microcontrollers with small amounts of ROM and RAM, while constrained networks such as IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs) often have high packet error rates and a typical throughput of 10s of kbit/s.  The protocol is designed for machine- to-machine (M2M) applications such as smart energy and building automation.</t><t>CoAP provides a request/response interaction model between application endpoints, supports built-in discovery of services and resources, and includes key concepts of the Web such as URIs and Internet media types.  CoAP is designed to easily interface with HTTP for integration with the Web while meeting specialized requirements such as multicast support, very low overhead, and simplicity for constrained environments.</t></abstract>
</front>
<seriesInfo name='RFC' value='7252'/>
<seriesInfo name='DOI' value='10.17487/RFC7252'/>
</reference>



<reference  anchor="rfc7967" target='https://www.rfc-editor.org/info/rfc7967'>
<front>
<title>Constrained Application Protocol (CoAP) Option for No Server Response</title>
<author initials='A.' surname='Bhattacharyya' fullname='A. Bhattacharyya'><organization /></author>
<author initials='S.' surname='Bandyopadhyay' fullname='S. Bandyopadhyay'><organization /></author>
<author initials='A.' surname='Pal' fullname='A. Pal'><organization /></author>
<author initials='T.' surname='Bose' fullname='T. Bose'><organization /></author>
<date year='2016' month='August' />
<abstract><t>There can be machine-to-machine (M2M) scenarios where server responses to client requests are redundant.  This kind of open-loop exchange (with no response path from the server to the client) may be desired to minimize resource consumption in constrained systems while updating many resources simultaneously or performing high-frequency updates. CoAP already provides Non-confirmable (NON) messages that are not acknowledged by the recipient.  However, the request/response semantics still require the server to respond with a status code indicating &quot;the result of the attempt to       understand and satisfy the request&quot;, per RFC 7252.</t><t>This specification introduces a CoAP option called 'No-Response'. Using this option, the client can explicitly express to the server its disinterest in all responses against the particular request. This option also provides granular control to enable expression of disinterest to a particular response class or a combination of response classes.  The server MAY decide to suppress the response by not transmitting it back to the client according to the value of the No-Response option in the request.  This option may be effective for both unicast and multicast requests.  This document also discusses a few examples of applications that benefit from this option.</t></abstract>
</front>
<seriesInfo name='RFC' value='7967'/>
<seriesInfo name='DOI' value='10.17487/RFC7967'/>
</reference>



<reference  anchor="rfc7641" target='https://www.rfc-editor.org/info/rfc7641'>
<front>
<title>Observing Resources in the Constrained Application Protocol (CoAP)</title>
<author initials='K.' surname='Hartke' fullname='K. Hartke'><organization /></author>
<date year='2015' month='September' />
<abstract><t>The Constrained Application Protocol (CoAP) is a RESTful application protocol for constrained nodes and networks.  The state of a resource on a CoAP server can change over time.  This document specifies a simple protocol extension for CoAP that enables CoAP clients to &quot;observe&quot; resources, i.e., to retrieve a representation of a resource and keep this representation updated by the server over a period of time.  The protocol follows a best-effort approach for sending new representations to clients and provides eventual consistency between the state observed by each client and the actual resource state at the server.</t></abstract>
</front>
<seriesInfo name='RFC' value='7641'/>
<seriesInfo name='DOI' value='10.17487/RFC7641'/>
</reference>



<reference  anchor="rfc7959" target='https://www.rfc-editor.org/info/rfc7959'>
<front>
<title>Block-Wise Transfers in the Constrained Application Protocol (CoAP)</title>
<author initials='C.' surname='Bormann' fullname='C. Bormann'><organization /></author>
<author initials='Z.' surname='Shelby' fullname='Z. Shelby' role='editor'><organization /></author>
<date year='2016' month='August' />
<abstract><t>The Constrained Application Protocol (CoAP) is a RESTful transfer protocol for constrained nodes and networks.  Basic CoAP messages work well for small payloads from sensors and actuators; however, applications will need to transfer larger payloads occasionally -- for instance, for firmware updates.  In contrast to HTTP, where TCP does the grunt work of segmenting and resequencing, CoAP is based on datagram transports such as UDP or Datagram Transport Layer Security (DTLS).  These transports only offer fragmentation, which is even more problematic in constrained nodes and networks, limiting the maximum size of resource representations that can practically be transferred.</t><t>Instead of relying on IP fragmentation, this specification extends basic CoAP with a pair of &quot;Block&quot; options for transferring multiple blocks of information from a resource representation in multiple request-response pairs.  In many important cases, the Block options enable a server to be truly stateless: the server can handle each block transfer separately, with no need for a connection setup or other server-side memory of previous block transfers.  Essentially, the Block options provide a minimal way to transfer larger representations in a block-wise fashion.</t><t>A CoAP implementation that does not support these options generally is limited in the size of the representations that can be exchanged, so there is an expectation that the Block options will be widely used in CoAP implementations.  Therefore, this specification updates RFC 7252.</t></abstract>
</front>
<seriesInfo name='RFC' value='7959'/>
<seriesInfo name='DOI' value='10.17487/RFC7959'/>
</reference>



<reference  anchor="rfc8174" target='https://www.rfc-editor.org/info/rfc8174'>
<front>
<title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
<author initials='B.' surname='Leiba' fullname='B. Leiba'><organization /></author>
<date year='2017' month='May' />
<abstract><t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='8174'/>
<seriesInfo name='DOI' value='10.17487/RFC8174'/>
</reference>



<reference  anchor="rfc8613" target='https://www.rfc-editor.org/info/rfc8613'>
<front>
<title>Object Security for Constrained RESTful Environments (OSCORE)</title>
<author initials='G.' surname='Selander' fullname='G. Selander'><organization /></author>
<author initials='J.' surname='Mattsson' fullname='J. Mattsson'><organization /></author>
<author initials='F.' surname='Palombini' fullname='F. Palombini'><organization /></author>
<author initials='L.' surname='Seitz' fullname='L. Seitz'><organization /></author>
<date year='2019' month='July' />
<abstract><t>This document defines Object Security for Constrained RESTful Environments (OSCORE), a method for application-layer protection of the Constrained Application Protocol (CoAP), using CBOR Object Signing and Encryption (COSE).  OSCORE provides end-to-end protection between endpoints communicating using CoAP or CoAP-mappable HTTP. OSCORE is designed for constrained nodes and networks supporting a range of proxy operations, including translation between different transport protocols.</t><t>Although an optional functionality of CoAP, OSCORE alters CoAP options processing and IANA registration.  Therefore, this document updates RFC 7252.</t></abstract>
</front>
<seriesInfo name='RFC' value='8613'/>
<seriesInfo name='DOI' value='10.17487/RFC8613'/>
</reference>



<reference  anchor="rfc8724" target='https://www.rfc-editor.org/info/rfc8724'>
<front>
<title>SCHC: Generic Framework for Static Context Header Compression and Fragmentation</title>
<author initials='A.' surname='Minaburo' fullname='A. Minaburo'><organization /></author>
<author initials='L.' surname='Toutain' fullname='L. Toutain'><organization /></author>
<author initials='C.' surname='Gomez' fullname='C. Gomez'><organization /></author>
<author initials='D.' surname='Barthel' fullname='D. Barthel'><organization /></author>
<author initials='JC.' surname='Zúñiga' fullname='JC. Zúñiga'><organization /></author>
<date year='2020' month='April' />
<abstract><t>This document defines the Static Context Header Compression and fragmentation (SCHC) framework, which provides both a header compression mechanism and an optional fragmentation mechanism. SCHC has been designed with Low-Power Wide Area Networks (LPWANs) in mind.</t><t>SCHC compression is based on a common static context stored both in the LPWAN device and in the network infrastructure side. This document defines a generic header compression mechanism and its application to compress IPv6/UDP headers.</t><t>This document also specifies an optional fragmentation and reassembly mechanism. It can be used to support the IPv6 MTU requirement over the LPWAN technologies. Fragmentation is needed for IPv6 datagrams that, after SCHC compression or when such compression was not possible, still exceed the Layer 2 maximum payload size.</t><t>The SCHC header compression and fragmentation mechanisms are independent of the specific LPWAN technology over which they are used. This document defines generic functionalities and offers flexibility with regard to parameter settings and mechanism choices. This document standardizes the exchange over the LPWAN between two SCHC entities. Settings and choices specific to a technology or a product are expected to be grouped into profiles, which are specified in other documents. Data models for the context and profiles are out of scope.</t></abstract>
</front>
<seriesInfo name='RFC' value='8724'/>
<seriesInfo name='DOI' value='10.17487/RFC8724'/>
</reference>




    </references>





  </back>

<!-- ##markdown-source:
H4sIANLcjl8AA+1923bjRpLgO74ij/xgaYqkSd2r3O4dlUrV1rpUUpdku2d6
+vQBSVDCiAQ4ACiJY9Wc/Y1987f4U/ZLNq55AUBdqmr29M40226LIDIzMjIy
Mu7Z7Xajsoqz8V/jaZ4lr0xVLJIonRf0V1lt9vsv+5vROB9l8Qx+HhfxpOqm
STXpTue3cdYd5fG8Cz1U6Qj+zqrkrupejbqD3WgUV69MWY2jefoqMqZczopk
Ur4yXy+T8mt8kBdV7UlVpKPKfR/ls3nsP6jykX6JqrSaAkDvzn4+eG/OCQBz
yACY75N4nBTwdTYvkrJM88ysnx9+f7hhJjk+PjiL4uGwSG60PT6i4eT16Pby
laEJmp/z4jrNLs0finwxj+JFdZUXr6KuSTOA/KBnTtIsHi6KHMBjFB1ksf8w
L6Crg9H1NM15ikkCMxoMtvYOTHyTZIvEjJPSHF7Fs3lpXk/jbFTi3NNq+cps
7ewM+uYQgMqz7nlyk15mCXwdJ3eEnkVWFfDW2wIaJfAkmcXp9JWJs/gfYxix
B0MKoO965iJfVHGaWTjfxYsiySrvOYF6nJWA2kVlTo7fH52bi6N3R4enJ9+a
45MLc1ABeFX6b4vETQX+6ppNU9A8zDTGmUB/AGgRpwn9enhuBnu7/T1/Wnu7
z56WANwTgP8xnVXd2ELUmxQ62Q89WIRxkcRl4qb7IR3FxTgPfqEJ/5ilN0lR
puN4jDN4vUiyvDQHKZCCt2AHNz1zBs1yoBXYKWZ/p2+nczjo724dHP5kDtMF
9nKwqPIsn8Ut3dnJHRSXMBcgEzc/mK6A9o+TtLcYxr24iLK8mAFt38AMDLz6
4e3h5mDwErFeTEY7g8Gu/Lm3ubOpf77c3dM/d7cH9umONtsf7G3rn7uDLf1z
b3P7FY4RRVG32zXxEOYO2y+CR+biKi1588OkJmkGFHuV3z59341gJw0TE8/n
0zQZw0Y21VWC7XAM6A6Qhj8Bz8BGZ0UOWz2fmnXcmBs9hMpgRwagiM0VD+Pt
VzNLRldxlpYzE4/jeQX94U4fef2PgcxGSdnjfhZlgj0x48INOCrSOY2dTwg0
GQMALZLxYpQQCPgDfs3GQJlL2GdjU6b/noRtvi6BCie8bHnWMz9fpdMEF84g
hmWsIQyPTQgYfyLY56SIL2dAHYwM+DZLboELdQgGfCGtSkal4Avnenx2s/vN
j2/OBIqyA/3jmuWjBfYlqC95RGWD+jJwB1oO+wTpfjGqYMOZcTqZwCsARz4j
CHAkAgNHK1PYo9xScDqZJnfpcGpReJtWV/D4Ji7SGB9ni9kQHgPOcsI4QZrM
ymR6A+3hsX1zmmSX1ZUH21zpAsGYAcbiS2jCuCbSgENmluAp8krWChhDWblX
r4DjOgKShjxBxBFNERvCUQiLKH2UcwAysZ30eDMgCOU8GaUTXYXLFCdwuUiR
OrAPwvkSDw9COtBSDTcloRE3Evw2TYANwQA0qs5kSUs1y2EdkgmMlCKYPr18
WEwBpEj27Cwdj6dJFH0FbLwqciBcguyXr/yvH6OIsPnLL8I3Pn7kfQX9zgCg
b+yULb6BaJFH866apaMip8O+yKdTnIUscTmLp1MTz5DH4UJ+ODihCX445f/C
ILjkM9gyYxNhVx+Ozi+6Q2B5Y7P+IcFJKdnHU9qcgA1giyWsz4Ypk0K2sDmY
wjG8uLxisriNyxDCd/lt9yy/hSX+GfguIKg0ZwAn9XoALNa8TyrcUbCK67vv
8p/PDt5vdGAC3gaAXUxbG2CG8xCmVeWwRDFwbR6BxIZ1GMjoQMDsg743mD/k
syRYMOEV/l6LYBAkVYB1bBLAJTMe2Fl0HJh5UhCpAlUBBgsDWIZxqYecXqZB
GKQKGGEGJ9RlymSBe4cWGpkPLLRyb6TIzmO8FGeKwFLXUcYTM7xeSN7KP0Xw
g4U5T5jidnSe3thRcjefAjNmzhcXo6sUoCUecwuzSBp8cJwET4oE5NAs6Rli
CA3OWY6Ai+DOKYHhIS8A+OBHQmyZIiWBYEJDh1DjEl9n+W2GOB8CQk2Sjed5
mgGTHSYT3HpEg7OUxmF2dBsvqSuvD/hzkl7CbMYd3Dg3Kb6NiCpMcocYvUx4
CywqRo7HnZHaRvk86cnWxO2YBSxet2IHFrshrir14MkDk5tOkefgbsafkEHA
RKrbJGGOBqsohym+nNGOihronMEMiX8ZxBo0cWwSOdUU5CzkkoAzbRUdn9lj
QZgn06QSDv4YZ0yyshT+FKlbezTxMpcMrgdYSZANkT+PkzksFYqE5jWu2ySn
jUFLDGcm4Ay2UDqfJvbQHSNgcBQjQYokwPgZF+kNIo3X1A72TYMEPTTgdAQW
2JsxLu9w6f2O8l2VJnK4hptQZYArgddDnR4N0rWOn4zl4LEnupw+Xi+NReTJ
NYUvIiCgajxSkEsEDZOytvtwBAHK7v3yKkZuJfTvCMyKWSY6ikdXdoOgKJaW
FR3ws8W0omXhw8vQi/g3QQpHMnzVIzpNpmOGRw9bkA+mC2aEBW4qkRnwGY56
PIF9T51RRwmLF/JlXO+3wAMeuNKIFw/fxLbHbxzzBgyk4wWcHEMQu2CnXFwt
oE+3zDQJWq1RXvDRSTgek1phNy78BTpZUpXMh2LBFPAGmBc+zeGAy4hdFMko
gcawMAc8k1BmlH6AZyCFFTVBC06YAr4l499+nQLCETkyWU/KLb+FwWCXCLfe
w7c8AqVZQh+AkQTW5rdffQEZV9RyceraALrW3x6/gTMUJVMW2+DJOzxUWVz9
7dd5DkyYNIK3Z/A8AgQA7Dw+bGVkAjD19TfHG2Z9MUe1K54BmoEv69/Q1W+/
DlPbLJ5K/7RMwPfzURqj6H+Bx3RlfmI6Wb/4aYMn1Doi7KhFafUFt3VgPVCg
o1kOUYi8+EnVFpgqnljE4oBBCT0yRSjn848MNy4y2hxlZEKb7HDHnEoSAUHW
SPEEY/aGXCnPakIhLBdiGnBakjh58VPZ++1XpJcTpHNscwpSA6P05HSDhWOL
IKIUXNlgO/gEgjvpQjYDyUAgRY2waTpB8YPAOTkF2TtlPg4AEAbxNyE3EQCA
BeczBIiHAtWcuBJudTgKcP5+37RVWdB2hKb4WmT2nG5wu7yA7XKc8eYaAZdi
ec5x8jcBJz9gMlg/fHOw0Y4ZHtKSAOD9Kh/7x12NSXqtYJUPg5M0zeAYha/A
9/CIpoMT0LNtYgKjfBVF/2B4+7tNRWQFG0V/wYMT8Og9IbqfgogIZwEIv6SJ
AENCPqXY565gYWyjmIg/uUPuMqnwJFYlpXb2Ed8sEqVSGoy6RjEJVw3O3ejC
3wHITUdAAYBHf/4fiIGyOOqU+MskI1r3NHd3Pjnuatkns/HkDlAmLJfhoM3b
2CpWc4kFp56ggbStcuqg3yKo1vhti5CpCnf90OZt4x/SFfGisiHz+50uStUR
AUVffWUukgJ2DArxSxbgr5OlAQkKNtXayY/nF2sd/q95f0p/fzj644/HH47e
4N/n3x+8e2f/4Dci+HL64zv5Hf9yLQ9PT06O3r/hxvDU1B6dHPzTGnHZaO30
7OL49P3BuzXmcYFxoUhkOUBsTgqYGW6muAwFr9eHZ2awHf3yi1ixPn5kpA/2
EOnIUZmf57hd+CugbRnB2iUxcVZkL6N4noKMCwQB/ZdXyBCQThF1zBLEkjRM
p2m1tNIOY5JeOKzrz6skJLeq2C7Y1C1qHKCK2LkYD4B9/esiYzIjtgLvR1NS
FqfxEkWDdbXZbOAO9eTZ6dJXcsiiJSIyNexEAVoDncsj445uXdwiHragyS+/
vE0vu9j74enB2QDeDZ+gSQBXIny6BTqcMFnkLAXwHdiPM5DkOi09qhjmSZG6
m6ZAHoI19D6MrtnyQjtKcA8IOBYqY27OK/cNSBqh0TFqMToe2kPBY/t5Qceg
KNNInnR0RSKHtTMKXISrvCSby2yR0Q+wV3U9RYgDvRRmh8dZipOjLaHwItf7
D/iQGRU+69xkw3if9fd/+Dl40PysA1VvaB8vuvJ58XCj4OMaSS/3hskX/3jy
xzX60rAgG302LNKoHRb79UEQ22AhShRYBCJ+5D1owCKNHoHlxXNhIUJysPhf
V8MifzwGiw7bCov9w8HC+rzCwt++FCzPwgt+1uFDIGzAJ3id3zXIQuA0ykAX
kEe8E395Zb4KuJUhZ+J3Xx+u1vwrz54xzNEDUCy//mj8Y0UOkZs0ueXDL2Z+
beJhfpPI35uixfM30fRQuMu6STYqluS7UE0RedJIDEHLhmKPrFJlcXtSRafM
ntnKAscJy03AYHQwz/HA49Aw8CM5SxYjEVZU47c2cRwSFDw8n9DqQPoyioOi
K3tOk0IFPtYhWPBlqa9ILhfTWIQnGV5EdkIesObbGPRXPIPxD2GyJXrKKmt9
E+tOPiIxXBwbqT9xX+M6IM5cxy7ILAWhXpYWMISoirNrkiyPzxQW5PfW7MG2
GoS9SCbpncwQsWsRU3oHA69g04zCEp977//8r/9dsrGmZ9wRW+KajFedsZt4
xrZafdLSSjJpFlkxhUiu494UCHwRJpBBRMaJGKMsejD+2UTSkeYNSZ+lOPbY
xMtpHo9JQLQrEPH0Y0/2LxegPMGWeXPx7hyO3VOUAAMy5gOQyAR2ZjonGzkA
F7jazPHEZEkyRnFHZKxhgiZBkICsD8YqbI5iI5JUJ+QnJOnIUwVUxF0v1D/B
L43zCv+aojUd7Qss9+NAKK8QGGTEBdi7Vd5NsrEzFmdplcbT9N9ZqPNts6uF
EetBWVTdfNIlc3HDjmyFDeGQnyZr/DcQNsJT9ImwSKMvDQvS/LNhkUZfFBbY
QIvxnP948sc10l7sp/Y1eFzvxX4cLOkc5amefsUPP/IeNGCRRl8aFtD7Rx4s
/tfVsMgfj8HyvF6MxCUpLPztS8HyLLzg51OEsHYpbFOlsHOMR6NwNN79AQdd
IaCBKGaPTeCIxcpTc0tPzdPhv4KEgMrzokA7AfudbLxIhK7pyWJqjrKbtMgz
5K6gsZ+eH55+ONqQI2J3sMW+8wW5Z2oaa3WbR3SmkyhXiKmqfgLRFMXkiZ5t
UaylYTQBzu7JHmmWwcFXsyGh8FPxyexkLSfvOGGDoXfHLglHImXIgHV1HY4b
O2AHjbnTxbjW3Sm7FP6rK7rwgLH/zF6k0d/gCfY3NqMvs0ZMsM/sRRr9ba7R
38yM/i4frITl7/JB2OhzJYR2EWFLRQQ5eVaKAz1fHiB9DDQl9a6GsS8PGca3
VpnBO9YiQoc7O//RL4TGksB5xWFAeGKOc3QE4jEZeoj4hC8N2a0bcT2Bzkka
YlxiHMMwv3M2D3jpJs0X6I7FACSOB/xKmOP3YnNwgSRsviaXBpkvFowfwkt+
w4p1YBZYqDRAhhc/GCB+SCjjYDQMzi5BT75ObGglyFp+sJDEhbk5hqEIbyUi
SHwA7LHxgbDg+f59axZAiUvDDuv+vGi45PheFWlccCoPw9aEQGhzTqEL62D1
oUE3EBsTIoomkyBUF1Xpx36ye1AdqDJ9wvIHMrc52e3NMUhUOr/Ixi9sIGyz
WJCrpDei4BF2ybMJpcXt6LlWNZrBc6cb69OAqYwpOrTA0aMPYnpssaN0vPgU
Qx5KcRSbRebIL3KTklgbQDHORgPD0UuzKOZ5mWD0NPqgVxiaUM5t8Smpc44B
oahEF+uyW491IZfrG4s4F8pEO0Bo9BsgVw8ACdPzsRmESQe+4SD6U5xnFKlG
RrCSwn8o8B6d9BeNWOcgrvnbwDYbxqNR/AXG8kvUM3614cs985YCEUUpwl5+
/HDcPYuBQjkOGwaCxhgAjHS1dPHP1JtG8hCvk8AN4U31SGnUYjwwmDlSKAfa
ww5Go2ReyZgda+lyYdbxUtQMTP2I2c2XVd23HKyda3jKccb5QUVaYj8Bxouk
WhTEdOc4v/I2nkccvU8bjQ4DYtccqSLwS4AKvPl6UVnLut1zEj1uN6g0Xk96
lz2MylwUbLiD9p7B2sTjMe0Sfn2jh6pNMx6Qg3Irx4xjIEllZsdheBSDC928
Jd7zRnhPXuA+TtGOisRF6Q2AAgmzw51lLeaqb0IfSkqWjKbLZjSFs6Yj9ECl
RzewP4hpaGwOUOmapdI1s572EsDKBD0lCDBxQofKDcplsAuCGnNRsL2a42gc
Jw9oHOUOwV89VhXxFnOYH0JOsW+ysBy5NYUTgE39FDaISObYu2SsUESGggyA
aooqHZGjwgOEKbXgkGDJClnBmCR6vMfAFhSqTkx8xZp2LB79k0TA55OonE9T
cc3YsC8vUAgDL3KKlUXgyw5mN/FJW0Mo0vdbCjdgAahDIV1mNKXUAgwRKjkA
4/D0ve5hCb6plvNEHTXJNB2zDygIGbKG66zEQAddGIFG6HGI65DTmi9tvDs0
Ojj8AZnWBzg3cKhe5B+xh/kYtmjsySHDBDZkmsup0+/1/wSwjBNN61C0NLnY
P/X++Z+DVxsMDOOxVG6CH8NQH84hmaR3yVhWmXxSki2AvJG4YlzSUrhIkebx
BRMcLsha43kfdMmJeM6RTfmimHAdAqKWKFNSbDg2lwhMPDmm8EgDhW33IeNg
L5lpHhAX+TXscJoYLiQMt+TjrY/Ltw+LX6GsaTCnzsmMktWjeKoBKQlDGNdD
lEHjwGJ339HPXQraRGjgLM6JB/EakZiOJxZxdIAU/4Y1LZbEkzQGZq+309tk
IH0Gm/PZ7DaPjQ1ixON6aqwO9KZ5D4wnxeYK3GEvGJfoY17yBnyNBPv9GTnm
OLcZQbW8EIesrvRDq90hnpf6AX1KbBIR2fEgexdA6+I3iSC1f7dRbZILkqwN
UzJt5Mrb4kBAEL80BmaFYasychhA9duvpPSgvLacA+PjOP+EY2VKnjysqFnX
5cWlTdmz5oVChQlX/grbM++tRiSjd/wB+AgziAWrPXDLM4lThmExUvm3XzET
h327mvJBcrDHQO3JQNrELLeZBPFsCAoZUlo+gY6uEnc+5RSey0cqYPWtXdYG
LwilQWG/Nhvpt1+L5FK81JIBxGH9LvmxKpmTMv7d2YYu1mIBPSi5n7BU0AXk
8RorkTAjkNhWlz9pj+Xffj0J55VjdNvJ6QblbGvIVV356gVy+V5vuy6Z//Zr
zaCOMGIw1rkX7foaT8X1k/PXG+bktB7Ix+N7Z7WvF6rMAX8S5koKIawF+TV5
L1kl8DFO5aNo8zqLcVqCNl+2RI7KMeDE9WbPXqaj35J2ZSR5m0zm5Pa3iBs0
w/dRp6GOKLU5l8UTtUWfAdxBOD2tt6ptcsCPF4VSczPjilh5irLybbwsoyAz
gI5oOoN7RkMGF5jsRQJHltwqGKVFM4l6TPwdeoMln9t0Oo2GiaeLxzd5Ora7
K/V0Nu2z5zBAUotM3+LXZhj7SZAoXYDEWlATzlSRnM9XJFmpNGTWQTbqmPen
7zc6Eco1VnlZBxFmQ4NYAYezOex9jWdfB8FGIgWUj0s0rkN3OukQZ/SYi4pm
zKRFLIe9C8Mjo7SymstPfcv7OUJBSp52KOFEtWxJj6HgUMYqN2JTwYK66ZA0
PZ9bYVq2Frm6UAtQ/LIg5fDrvmuWheyGD6IQnnAoPbm10kxMO9D58cH7AwwQ
gsFA0PAWphfVBX4/+tYbz98etQywWPJu/JaOMnoYOeLFX8ynQM+oQGnOUZGr
UIQnKXRCo1rlhTBDEnpdDvelT2pUuuDRPixtLIkEgQ4s2UxRFEJFS20jTEtN
WGX6aI6kcDH7s0n3MgFLzMSomMSwgdMTKf9oFQkQlXI6huZeObJ2uR2e0dHZ
oriBk0FYUueIGZdc4M6/piQSOfKTQ8voocVEWH+qoNeNoHSknL9ev6PTQwF6
RzkVzVPmHZ4yh28OHj25PAbsnZ0l4JO/ehJ/perhrQSd86sdeTMU55x1Rg4O
hDjiN1lyZnY+XXomprChd+ygKToYpNSll/jFbOkEj3Cf8JJZEyGnt3acRBnp
noAxnSgDijgC3DxawgTbU6SS2xSP/LQi9m8itr08jTgChGiihG1JgZl1QVtC
FpuHy5LphHuM3rmKBGwH8BUlweKNG3bofP6iZ1gErdYK2SmvjMeqJZzgHkte
xdrFD+/WwkEC1fGNw21gkpeqELZXtpSV3prKIe4tmj85pgKWk5yux2KFWrFU
AeQ8x4K4KfKfmNKNsEsOp7QxhxJBEL0n43vJCYwdylD0TwHDiaKnahzhE5It
NnrGolwasYWVNPs3ybSKu6hgmvU33Qs4m2Ui65icyBSyjvmBrJtpLlQzHVqY
56mYLcmY072A7piN/aQDYpECJKPI2uS9DM6gwsipWjKtduOPN1ykyDB4AVe0
ResL29ID3RR1H/uOIJX6kwIXAPe32OLip47fGSHjW8sD5SmjKyJ5v8bwQo7H
CGy0JKEqNrfJdEqnRYTUT/u6lUMw9fr7q4EZZDqRWFnGFPjiM4xGgg9L+aWv
nUtca2vkakoW27Ty1rzNcsOCrcjT9ijlQGo+xNHDxykhbMx2QonsD/RL5CEQ
NpMYJo85kbxZXdonZijHl5eys6OWdFbUJt/nWuxA5iuGFPVQBP4N3awIOuHO
2muITa3gr4ELo1T7uPoDqDJQLaOc7O2Wq/lDs5gTk8BvPREoRlHBkkBGpHcs
kZMxkE4EEKK4+EdgMeXweIAFz+5A7/QPGNBF8maWNUDgb/W2EGtcW7XEOlkm
iKb2zCpY9SE0B1kJQTwc1EXgHfEkQBHQNFncmvYlSXTVdvqEA7d1PLWgWMuz
iHCRs7h3SUJ0Co0efM7s/pCd3IPAHUVugd3B3bYZ19kWmxd1YyN6WyyahbZO
4rvuAcoqPxZp9/tcbcL47SwvKpXUEPFaDKR09j3Bt3dc+uZwkZh9F4QvMqfi
dkJm2PVlZ1/zhT5CZJSWY9g1fggbvcaMaWox1Qbgef4RzaZ2oit+trY5qZGQ
xBVh1nKvi4bJjAxmUgYJMRTZnH+NU4hReOI09RVqRWiuUVHJrisCSqUf/sj2
QbEt2JxvOHhX+fo7lort1KyCdInF/WjbINPQzZVgqTZN8aBjlJTvietAWDyL
v9+SAcr6JNXsavUMyZiU/MBIjnIllx7HvPwHOYLDzLUX/O8LlyTl/ujWXsXW
97Iu/Ll/+w7+Pbt/c3yvlRHuuUyA0dg0UGn41cjUw9Xu+V/6h8Ul+INqC/Qa
r34ByC0xurEH94v5/Z/Xvom/Ga517uGohRXEHwDxXdoJj0O+9s3om/HaX7wX
WiCvjQ0kd2+2cGz7FpwxaNWnHwETOvrnzlsW3kY7dTmc4Y5dHRzxtCbP2KEt
Xpq1jxTjxNFJQStOv/Xcbarf1LYamQmkGgES4yb1X5KaJ7uC0l0xBgMJnc5T
SiaGV6kYgHZ8my+A4jx7Em4ajsRmkIXs9UwMtDDe54VlYMDBvgJqC1W0dj4V
RVbudF4vBJX5qyR3cSJykcTuSA+8JS5WhTyTzk0S6bm+yNJKdzSeSeT6Elve
yfnrFtszcRILNHqs6ry1Z87JgortxVtZEvskhgno7USWCRKEbGelQVwRHVi6
fa5Nw9Con42wzNMfJiAzZsK8Viu/obnOV1PfAYQIks46dCBT4InBiLzD0/dv
eb1hx/1p939cf7eWVFf9NW8R9AhDNL76O89r4Xn7wvPWRmv86EGe18K1Np/M
te4dTdrWPDasHD1C49hgdwP+Qhr4YvMOOd5hfpK6cDLJxVVyQrdgkOkRRczx
/FYfP1IMpxZIKjjBUPZui+UYOu1o1Tnfa8+mZk28rPEse5JrhSMOcunfbZo/
md0NUYlcJSlyT6sUFtHb8HJ/x/Cm2KhzOi/6UHlGKIvxBndvPchdSraMqAeY
ZeQ2fkh+UWvZ494j5BFoo1WZiVUqJ95TYz1EMGZU46Wcf53EswOp9+a73dMy
Ci1iTi+3M/K4MNd4oto1reK/VJ90nVB4goZI2rp/gAPbO+bHoG9GkrFB4y/N
tq1uw9K9DK6jsJ4S2n0x1sAvcFiXvM+hzaBD/9nsoM/pbtlFcsYJ8bdzqSfj
lI7qKozrCZWgDqp0ll7hK5w77lRa472+Jgm4wOH4N0T3mtv9vTXjDPsYrkpR
Ita3U9M/ZEQZwlOCwqGJSTVGpp+Ua621qGNHF/FlB2ivS9yZ/noPAol+fZez
r5+WjTu3j0I15oI0Jf72teeZ0SJTVi+WLSHC/QUGotQO1zAWorWUkYlsuZka
d+GUtTvQ6LnF28OSJv16mo+uo4j+I2bNlzsv/ciFsOxvrEozZm5jZUTxvNNa
iU2p2UrN9cTHlnrakiLLOWpkahkSEM7YwgVi2EzCtoggeHelqslGjNMhGT29
WqNYdroW1igv2fjNC0tYTyFlWoeQqBw5rwlmrDfCmRxm8V06W8xYluEwh1QN
1GZ9iwUa4MMXgdYZ1G5je6UXpSbOOOuHi23Utxt3jGZnl9hNFSwz4BsLrORt
jSckNs2RD3Dhw3ysMSZU+lUSullGhN89d64tykUlpnIJa0CRH5FcGFvqlO04
rj6NFAq1y6HWym91WwiHT+5QMbcWNMIlD/112QxOoCPFRu0RUbzPux+kb58w
Xu7ueYQR+6/pshAW1U7lrKmzGFQVOFjdHPMoVtMr0fWD5pqszsbSMuRj0TMZ
WdNmZkV4MgeQtE1wwun6DLZNdN4g8Dazks+1W+wmujspVYZErfNk1OWvcFRJ
Co2fyKrL4iXcIj+R487WDHeBBrXYl6CqqZer0VSMrLDHUHRlGPjRdh4mk/bN
ADTOLTikd8yu2TO/s7KkEbXEBBLm77ndi279f499uN19H0bs31/dX4McnVmh
/wxjp0AYOv4JZL8J+kc3jCRDfeZ4Jvw8muwniX33v8P8Kc6BBAT8/l7wwo8Y
uX+dpzeCnN/bhECjP06m8SUQvzz+XRfwjOg08K72VfoItoj1xfn2qa2a/Aud
c+mweG+uU1cgo/bYfqUPIvz+C0Lx+GfVO7oIpg3rAPioulPE00LVfqYFq2W6
yX4QF1qY7cYPKbMNGaoNkFWfoP+WRgO4UEINF9v1w8VsAjsbeLX8SQMSSpO5
sDZMohBXfph1LBYcQmDUcM1eSqI1tQwVIEnP8pWlK1OmOrE+E8vneEQR04R1
9nsYmmGuJIWJeGtoxmCn1MiaMnw60ygl+kElE+zv+mn9xdSbREa4aa0oyWnd
dHWlh7qFTbpu+UtYIOYnWDrM9LLgih2GLF+Z+c70O+jEwi5S64XTBQOcMyZR
B6wpqNhCQowbaOED0M7P1nwU5zxlA010sE7LjFoQXTLROv+UR07jBA5HqrW0
NC3e2qA7iwKNvgzCgrGU1WxGgoAG7rZWLLCSpaYBVbbkbA+dcuiJA1FguiT/
GkZ2JhgqsZgj4W3jA4B3VAEWk1FSoj3fjy5FwUhmGWwGvpmClyXVADFYCPoj
8mbpfIrw0A8TIDlN0kHIYUExixz85Nd4bo5dT9ubvaLg44Ax0Sbt1J8igPVn
zOHaHvfURFNjIp6NJlwJCZ4QYTJHRc7OqYzKxTwpQN7OpRAG+fydl9uqSSHn
VbIVTckGRjnbJggcsE1JTjJHbFJ3wajNhEkSp07qEVgEsxd/KWnHZHFB4gaq
yeIizXmh9bopm2Wp1cekRP4fgDvg3QIlXidhC7ZR2AZGSGqetLhnQQA+O/WD
PDn/C93nsAHGWNIY6/ePUB6eJuNLt/PfkBKjoaK4hUifiUJoWXxj56RXcFTN
bwdnXUZCd0AHBB9lktM5iBrmwcA6uNI2GB7qUcOwK3ZdNuuutOrS13Mxld5H
DQOv/MPH5ErrLn79M27Tv1AvX2hGQRA2mmvN4H6Ywlj9wQPW3gC0e+mFIpto
RtTL+PaeaPHzekF/28HhD53V/rJ6Lyuwi0rhX8w9qS7dWTy/t8ECCBD0ctEC
yw/vpJdtxUufvj9rRpQtRr3sSy9/7vf6/c5nz4jE/c/uZafX3/nLA3gxh4fw
z6E/oxPYU/R9sGvxAh+20O+ZpoXeDn7SPX6jvagFFE39Qi/krhHsDh7D7pfZ
AfX6DgErccU4NTbmrmpJwLdRNRXGJ6JXgOQd3VZ0eDZDF5mbSbQGHambu1rb
3Y/e4lDtqF4U0EsUGKJlp7wqFtk1QrdDp7mrbOhr60Ax1vKsEkbkogzUy5Bp
eL4N9q3l1PSkfrpvimOl30/CD7MEyIAL21vD+ZNxRE5flS1Wl4/3QqjXX/JT
AUzcz1zXlDIa3GFsTTJsmyKDjZxW09xOD/PAvdKG52rRcdadyHvbWd06fvq5
F8stQdQRHWUsH2maIW0ciiEm40uFKZl0Zu/xnJjwWZU4sMlWd8tOpJf/kHZT
JLaiM9kziuS2SCu9G8BiiqbAhiC9ccS7VoTrcqhNJigoENpnuiqOOENNnM74
kpB8KlnoAOYQaIcCUpzFRup+tVtsaItc5vFUivtziGVKHV+hyAGEPcNSnBqc
IjOL3V0T0S3dZ8eXYoGwMKTLhtiK6Se1+QI0ixjoaAGCTm4YKSTBWkOfD6eE
4aC8kyVFdIbFQYgLINGeUmEjQcqJ1k3DedHbxr1t05FKtMWj5TUKyoJc8aVx
SBYZSvBlLNet1SdDTiIKDcVg6Y5UnYj87F6FnAUwDQpzJdhAC5mC3BoVmIxN
9drIzNYsbcvT070XU7AfxftdJYBvyxIovEqL6Qa4E1Ga9DPrJYCmp16gp4+G
SNKqWiYu9Yc5PEkuH6JgchvWBROZTheYZihbVeR+qhDWpRpUJBmGoaZFQpe/
aryVxJ9scTYMOh0pY/2yiKnujcvCiShhJ5/4VknVZMXvAQqN+QdzSGk1R6/M
kV0BHXyW37hUmBrFdFzb41ckbF9iaUDPOqm9CGYtdzo4eGOTht0GjJQ6HE1i
uneulmNgvhMsjVLlC+IUqi76JODB9CPeVdqE5QmdYFyiBDWzPtvUwNgLqnkf
0lyLdFDmwZTpTqrm262qNlxjIRNSEZXTj7/26c5tuSoHSq4KZAz0li3JqIc/
sWveWcFei/0qh+wjleRcKmKhv4iKZUsJd+lyNzUw+6Wq/M9pkV6mmBTpZxm1
vat23hetok9YstxJUjf31X11Pb3nECyUCk/KS3M87qmk9SkjYe2t9uFEFHrw
s2LMhz+9B8ZUlrN+fPRjUPmrdaQHisr1vsT7DRnVQ1wrEYCAfff27YNoWYmd
FRh5+NM6Ejc6kzraz2r0zJEeW2qpHbhiv+Dnm/qDf3ng7cbL8PrKt1tefuD1
1rft+8zb5NoQ/NysGhV+sKw7au6/5gZ0Te0ejbzNjukLuN8bu921swzhSePR
5gvHo//v2W35pJ1vb3SwO/ZI9yvD8cintwqOrgeH4wYhM2gSK7yLG4/GfmiX
1x+08cUX1Ed41j3UR9vO8XDQzj0afTS3633kGMrqKT0djqf00QpsTfX2JDVV
vA9qwnjpZzajbCAmZWqDIuJc94iLzQsEQM/sW5NSVWYKxXlyg9uN13OVHP2d
y0JMrqe0uzRuTCCDNjNOMtHp3QWPmAU/iRfTKhovZrOlFig4QCWBw27PNZtp
uzfobfV2qIvt3mbNacahufVR/aHIMjuh6xy99LBDuQiWf9DgBnI2aUxGJEqJ
DdjRH2ykzmNDvz26OPy+ZWz20UXB2OInWonI+UJz2slTYv01ddEWbclBxrHX
T0diUUgqd9ks+QzE2xivKKl7khrQ6IZi/9YoGbv7R/SKiVlcXHNOcyBxEzJv
PUERqSAzB0cgssfTSxipupqp4VxFfhVmy6ghjILWF8+SSgo4gq5yA1CLmwgT
pnmWx3aWen9K5BNvzxwuCq62Rq67hn5EkxlrZ35tb8xOPaT7L1ihQIVMxGs8
XhRRoR/WVYGoa2yyXyeL6bSbl2jnIIXtoHkhxs5gsMuVTwGlHgS2BmOGBhup
eicplg7roRJPF9gvMCynUhtQFYOO6exIrJoFxVjQnBXFk0miV9R4ahWbapzq
hRhblM4ExoRbD3zXJGw3mbBkAuO9CaiLp0WVVzqT+znoolu6gDUo/zXK+S5W
p7oGCsgKyaT980xR5JkSyDMFj2fKGM8UJ54nOTxPXnieZPA8GeBZp/3DXbuT
+0nRKixoOJL2jSC8qbzX/M/3rqKEE1+ar70wB+F+uID90HxtJWyPh0Sx8hSK
KR5/qkXFaFjixxUXPMqNnf790/4NSBQ02MZMIs+Q6hVoYQ5c46tS2sC10OIF
ng/cg0miaZBxYqTplGJLNPUwoWjeZGyrdXKWwsOXPPm3NiFL2kRD96U1pZEB
hcN79YZqTtyubKXjjovkZCrx4vdsSQBiT+4HDQC8jZedVbDJHWXhncB5YFtx
l18EngRnwQ+hthYcYtbE4cXW40HfYpuVk8s1J6cABVFqcRF3e6OHg5WXCPf8
u5ZCu+1DHyGdvyuWf1cs/xYVywcBkE+7Ykl9e7KU9O1Cdf9lBUQrDo/71j/9
z80KGnqxqmXzZd9Qt2KUZnKgxx1MaExbYUpqduEfUdpFC3TPnQi+5bFp8xQs
3tuWNaAebXnzXLAD7vUYWLWvElf0bGz7u1eHfdECqWkl/XubAOauZGFIvg7G
uVcxi2N6kOiDHt2IDRA8KFaA0DJFhcVW0nhMAFvFO+rDvqiNXu/lIVhadn9r
L6v4x8oR6P9bgK03bg2m9qk6lB39X96k8SVo9l9zFp/439s89dFBZiMgbL62
5CD+4ejCljlUPZcyf+ARlfxkA4xNeeHAPglu6HJZLK+mH4cTjKb5Yuz/yCES
VCfMFmTxZTlrVmM+5bzmjVvMU7n6BEMfxovZXEUmFnRZ8ovJkV5gmIgmNBFv
eaGpJVLelYpx2ZtF4Ge8K8X4P2o9aoyJsW5CLhfCxYSL/C51l3agAUHV5lLN
MHYAWV3MxKFIUe828ob9EqfkL42NYYSH3SqZzTF3k0jntGZ4ehV9V/9E/bvt
QX/Q7/cH+5vD4d727s7ueK+/u7O3uTvY297D/+5Eci35K3k7wtA+81NSAKH2
MZ7t8PQ90Sx2A/8BIc7ytT5/8LECTOFsA7MG8K5F0CX9/J2ZpWP4sr8Jf1IU
FOCCZSEcdiVoIqwMBq8wDfqvZwcX30ccBwndADLQ+78ABchDBsiUbOV4BUAN
9jT6OthtissgfsvDOu6s44YOYgOuZJkALxdH77GRPrfxpvyLrFfvWQu2O9je
4QWbTLY2t7Y2+9tb/hLh7/4SDXCJDg5/WLlEtPzw+HwxQiUNLwq0ENNi7b40
a5u9/o7u+YeXjcQ3y6DZkhnJV4TPwbxqTfq1iDoPWWFAXQ2/gd7cxj0CdiGl
zDyNLp4WgMWlfxeIu+U5VO8uSBfDULuyHk9syyl/lLuuefvbhF6y0MeZK0/v
1GuCskuQO6rQi2X6tYDFRsRieDaHf6pEXAtB9mKQjRaXkCPq5NSeVhyIfH/P
Mcj1UFA/FlRLTKwSuO7vOQK5Hnz5iXMJwmM1PpbrRQzc4Bps60WDaihoPcRW
+xjf3v9592VnsLVJwdKmFt2qoa0jvw8bFnm/r3B4HOgxOL4EPoJd49GSbpq6
McS5uPhlb3sgBwycXc6klA+lpqYNEpKTqi4w+BWM1QAEx19zK+LLnsTJAWYc
fjTGFBVrzVGmIpXyxl7UUt4aSucSGFzV9YY/BiNgMeWIO+9YYcdZyLw4vEbp
XU6hIdONpBuu+9VmePNuMMeoOWrmkgwmRfrc3Qw4OksBMC10WiFIS2FSbK3v
0iBov9cr55uRpNjKlVyox3mFZj+RYBpGvIwSfzEal9rllYc4BrgTZjnHs3yR
VYFpMrdlzTh3VgMnxd+6LK1TzroWsG4ll2NkUUl+Tu64PJlnrvrrJ36eZuVt
/7CWXzd+PavxZ40Mp+9glUhkzPpAiwH854wcSnK465/Y+LNGps/KSbfIgU8f
uUVg9Bp/KoHdR9HDw7YGLj3n9xWW3c/s9qbx+1P2Ug2yxz4NIO7tDAIH68NN
PmEUFFyf2eQTRhGR7Tsebp0Pho0Hm6y/z7V4Weut0s0m/w8okE+sIy8K+JH3
zTrm4dK8tzeeTmjP3ly26fO5yr3f1jr1/2oDfwj6eLNl1Wpt8fDFd0c725Nk
MNze2t58uTfchZb7bfz3/kvBPHKGKQa1CcBLDwCv7bPRXE/pb5UTVbz0sxVC
4a6Wx1FTpF3dx2b3ouLpLbUqRvpZ/nUxtK4V2oATvWVzQFUkp3kWBGmwi47L
EmEJrbmIIK7SuxUQSVqbpWU8TS+zGV82YW9eugI4xskonYGgxNd5SNCMDe7B
emFUvtr9pDIph+Bg2jBeo4DFAOJSUoSSzBPt8Fbi6BTlsbmWGBDhVoU123Ul
OfMlV6IeYawORcaza/i/vSS1vePMKMC+dttFp/+ckZ9hcvmCI+NnMqlZaJ7T
+LNGNsZie3UgeEvjT6XO/wJi2LO2ogL15I9/tjwmg7U2+qSRUDAavBy8fNnf
HOz3H9h3j/f/uaCQFVsktqe3+aSBTH/I4iBdPiw2pabY1xzJmU3N738PJ9h6
eZVOKLKG99DGk8CD0fkDW49Pt08SDv7/kCufzyr8TfTJnM65oFfJloP+CDTY
0ebuaDRoIXzbXuXL5GWcTLYmm9u7g6Q/2ny5Qr5stP9c+Gtypg92E6TBtsIk
7T8Z/Y/LnCrhPVfuXOUvqMeCmXWJdsPnao7fMLNFWVkJtJF1WEb+xYfcwZmm
EXYdYxXLKoL3wEtW7jUR2mDRr+q5NEMzZ2kukyzhIGgr9qk0rOnSJrdX1VKE
GAqUEUzmhm7TqMXLeceAHxyd+WIsV/EpkygugsxxuSvJu+PKs0hKhquH8MMg
Bo1X/qxeQa/FESauy032hI33+/v9l/3t3a3d0e7L3Z3dZG97MmlqRtH65o7Q
ac2rufl8ryY51gJb2KZZw0yJJ7s128CGrdRXEMWqtTl4ZU5f/8+jw4u/nh8d
/vjh+OKfrJMTBqp14HHH/kt8o9+nkoMIz1utoNXGQq/MtTEhK+5vYzmn2ssB
tNcwv8d9fg/pqOFuX7Vl7Ga3tIE7qEXygl/q+uWziGp3sL0tRNXv708mD7E9
IKfNFnLCLj7BA4tvrVYI9kkh2Nakm6fTGMzCrG8+g6SGX3/9+Io+8TR4wuLW
ufkTFriNkctFoX41MrqgphFsrG5b4Ft4FRigumM45pgLjbAXw1X0kHJlXFQK
XVtTLFwVU/VbqjahbNRepM41MyYeQCXFFA9Turfg5FRcgVqVFf2BEdW5k6uN
yxidQlRRkOp6DOnCJbyUAmaBOTrQaXInJciDO8MiK1VSQeyR3mRhL8m4ynMb
q5NRklBBZRsuvVLsozybpJcLLpxQegYWcb6AyO1VjMUbHxrjzOLyGm8qp4Zb
cBoU4y5Xy2utkxhe9QVY5MozupYc3swlibk6mqZdXeXpKAm8S/79gQqxi79O
i/CaIgk1x2UfwTEHgoR3X9WFX1YQvV1UWK9MphOqMRLT3dhEZLRKOGesZQCz
pvMU1hlxo6v87vx1j2PMfWzhTk8zn940Sj5IMaTct2yE9eYNFjEusbBJXOo1
2cnoKsun+SWVqfcw6WcHYH8cvDXSyvilSSgFCUh5ugzK72ixaUcUjaaKaApl
UMqIThnRGB7FjkAMU78bUV2OoFbDdbIs6YIVkRKKpAuEiCVYyiuq3H6hte2a
JSqa5RixZPUwaSwB4h3WQO49QkpXEUpuUqWVIFkltkUlGqsJ9M/izBUWRcmn
2nqYyIbX5W5ua97VPBe8Lw9aj92OchU3bZFBX+QU93vciIxj+cneDOeXQTRh
al5Yx64RQrIy1MALMXDBnauCSEje9wJJvFAS0kMwlIRCcjGOZGUYibxt//GC
Saw2Y5usDCT5tBmZWiE7GcxVs+NjWp5LIIeN46hHk2gJOr8Xe4uJep8+qRes
cUafzSf3IiXopJftYEaDp/Zi42O4l/1gRk+Gpa0XOyMQcJ7Wy4lvpvEqyBFy
++Ld47teNjdsHbn7+xP4eHjxEz4w78Tv5W7f62Vnw3i9XFxceLAEhadreEHJ
/Gkz8mpbGyPV7LxePFi2A1jO4MO9nIbFmP1eQBx18nqfZxTg5Qf4tPUyqu6k
F8ULCIZPXKM2vOhKP7uXAC+f3EuAl+f08mVYZhjM7bi8jeKu2SBIcdGbQHx+
j3KLl5D2UABW0xOmx6DENVmVncpYYfC0XxJ1pcWizU6hfiRPSn9YzwLVZXv/
5fbOfvxyMtra3d/d39mc7I5Q/7XKChE/n12kLGGLtss7rCbV0t0Zh4mJ1SJq
uwIF9Jkh62Wo05MmRv+3PuBKiFhAXmDio158g2yIBO0LtLmMJEVWh0VNekzv
bcGVjYJVHNRrS7apxF4E+QNa8PNXZ3OwP44n+9vjl/tb462dcbKXbO+PtkYD
QC3gZnf1Kj2wRg92WlurFUtlV2p9zy6PhN7VVwfXBhfHX5Onaq4BsrwAZZ34
yqWpKbQrlqdNhz3ObH5CR2/fZMm9dHkMUkEMS0yrHmFDModLzouoy/2tSaql
LTuqifz89oyHEJCxUF6eJRF0Xe817CwejfKCdGhhS55B1XKV9/lpOapHOK+o
svxoFGzw1GVj1aXTlTHOXoizi3FeJZ0+EuUc5E/dm1XS6SfNqCmdhqKpCKbt
VYVt1dumXBmKpn3zWb3Ikbr5vF6sdBqKpoNn9eLkylAEex4sjV5wRi4KPKhw
PHe9HIa9OOk0EE1VMFW51AQVjlU4bZFOQ9FUJFOVS+u9sHDajEhfEZL+GF6+
zHYM2KS3/wP+SPCK8+V9Lrxngx00wIEk9tlP52rkPXWz3FZ9sRq2HIB8G1Ez
92ZFGxGX9Nqep5+ag8E2/cd8pwfiQ4eYCBkcZrbyvNmM2nOTHOyNLCWvJ2Xx
jFErCDxrUv3Y5uw8eXI0O29y7vx1+T8rJrzbKKndumKtqUAPzvzAu3U8katz
ORKLDFuaEUhZO3iOBamBaG3jI5kFb1ux1s8QRLPXEAdVHw7eYG6OD95jHTKu
pcM2PqHrcT5aUACZ5CBovWnoHxtRa1u1aRT0YH7BGsthrx/lBmFPPyADYadR
i9TvKJ/wHJq3RPgXQpKOcBNPU464E5N86+UScpsL/UpxcYzBjpgg26dTL9Gk
93jpbW9iyaXqYqvAdbU69Dpj6jXVMk7Uji4y8yGX7C9gi7O00gJQwT2I8qJf
8hUTPnruHpM2YNhSbCdA9+DFeDdc4V9vRvchBmmhYuTEi18WmXVC2KuhAW+Z
3lKmfQOWqWCX7UNrCCPVKvbfXLw77+DoVD2WLoKh4nKXV9NlUMKWuzPTeImR
j7e57Rbo8U1+buKqikfXrDVa0yTda4UOhWJBmJAvOU009p3A4pEpisWcI1hG
12jW1BSQaZpdS7VmhsNHajKZpKOULOGEQ8bN9/ktXu3aCSAQ+zx5c+SyVkxo
GY8bY5daVpeG5mkXcYqU61mF3fqU5YLd3BSpSaL5VC+QxW4QbEc1YZWVhjuq
SLAQd9mo5yXslI3F5GQgmtUgg+MsIFQY/MorJejfmy0V+AI1wKd8fRmdTF5b
zV/S6zHPc1ri5sJJzTae+tgWlckLe5ltDhu3QMIrr7BUdqFDCAb51nbN4wpB
7Mh1mH6tGvYGjRNUWcj7UBQ5Z4aPi3yu1yYjbD1bcb7OJei6wVju4KnUOt90
E9aTOy077BnrnxBM6UVXpX/RlVk//mnDBh9TBMkw8euqjWATYUGoJaatF979
vE6pIzSinIc6Cl/DiMP9hCV+qKh6njWYlrdPtOKR8yHxQtHNn4RKOP6SW0o6
u06WtuK1Fk6XazZLe32yentKLROH0SeXyy7OajGj+upC51euDJcPHMt5dC1r
kczQ51YBE8J6T6N8MZ8i9/b8i7jCtuqXxSTfGeroAn7Toxw7kkATuXWogEnB
1r/J0VTDNwRVi5iLW6UuTw/nQheXciEqIsup3NDb9F3ptbI1xxXfpnvg7iny
brvG6nt5UYriPk2vE943MbCddXSlTedXMYgh6YivJtt4ZQ6vCrybC6s8zspF
WQIbzwHHKSyleR0XANS0Yw7joqzgeHhN1QkA1gv0IJaxOcou0fWKVy1f5TM4
C94Cu4b5dMwPU+Cu5nvo4Rpw/LbAogblKDZn8ZQd1R1zME3uYOmwqnwyzW9o
Gf+Qw5sgSUzpB5osfEDOh92EVwJH0f8FRiw3l4bVAAA=

-->

</rfc>

