<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.17 (Ruby 3.3.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpbis-compression-dictionary-06" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.22.0 -->
  <front>
    <title>Compression Dictionary Transport</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-compression-dictionary-06"/>
    <author initials="P." surname="Meenan" fullname="Patrick Meenan" role="editor">
      <organization>Google LLC</organization>
      <address>
        <email>pmeenan@google.com</email>
      </address>
    </author>
    <author initials="Y." surname="Weiss" fullname="Yoav Weiss" role="editor">
      <organization>Shopify Inc</organization>
      <address>
        <email>yoav.weiss@shopify.com</email>
      </address>
    </author>
    <date year="2024" month="July" day="05"/>
    <area>ART</area>
    <workgroup>HTTP</workgroup>
    <keyword>compression dictionary</keyword>
    <keyword>shared brotli</keyword>
    <keyword>zstandard dictionary</keyword>
    <keyword>delta compression</keyword>
    <abstract>
      <?line 62?>

<t>This specification defines a mechanism for using designated HTTP responses
as an external dictionary for future HTTP responses for compression schemes
that support using external dictionaries (e.g., Brotli (RFC 7932) and
Zstandard (RFC 8878)).</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-httpbis-compression-dictionary/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        HTTP Working Group mailing list (<eref target="mailto:ietf-http-wg@w3.org"/>),
        which is archived at <eref target="https://lists.w3.org/Archives/Public/ietf-http-wg/"/>.
        Working Group information can be found at <eref target="https://httpwg.org/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/httpwg/http-extensions/labels/compression-dictionary"/>.</t>
    </note>
  </front>
  <middle>
    <?line 69?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>This specification defines a mechanism for using designated <xref target="HTTP"/> responses
as an external dictionary for future HTTP responses for compression schemes
that support using external dictionaries (e.g., Brotli <xref target="RFC7932"/> and
Zstandard <xref target="RFC8878"/>).</t>
      <t>This document describes the HTTP headers used for negotiating dictionary usage
and registers media types for content encoding Brotli and Zstandard using a
negotiated dictionary.</t>
      <section anchor="notational-conventions">
        <name>Notational Conventions</name>
        <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" 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>
        <?line -18?>

<t>This document uses the following terminology from <xref section="3" sectionFormat="of" target="STRUCTURED-FIELDS"/> to
specify syntax and parsing: Dictionary, String, Inner List, Token, and Byte Sequence.</t>
        <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>",
"<bcp14>RECOMMENDED</bcp14>", "<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as described in
<xref target="RFC2119"/>.</t>
        <t>This document uses the line folding strategies described in <xref target="FOLDING"/>.</t>
        <t>This document also uses terminology from <xref target="HTTP"/> and <xref target="HTTP-CACHING"/>.</t>
      </section>
    </section>
    <section anchor="dictionary-negotiation">
      <name>Dictionary Negotiation</name>
      <section anchor="use-as-dictionary">
        <name>Use-As-Dictionary</name>
        <t>When responding to a HTTP Request, a server can advertise that the response can
be used as a dictionary for future requests for URLs that match the rules
specified in the Use-As-Dictionary response header.</t>
        <t>The Use-As-Dictionary response header is a Structured Field
<xref target="STRUCTURED-FIELDS"/> Dictionary with values for "match", "match-dest", "id",
and "type".</t>
        <section anchor="match">
          <name>match</name>
          <t>The "match" value of the Use-As-Dictionary header is a String value that
provides the URL Pattern <xref target="URLPattern"/> to use for request matching.</t>
          <t>The URL Pattern used for matching does not support using Regular expressions.</t>
          <t>The following algorithm will return TRUE for a valid match pattern and FALSE
for an invalid pattern that <bcp14>MUST NOT</bcp14> be used:</t>
          <ol spacing="normal" type="1"><li>
              <t>Let MATCH be the value of "match" for the given dictionary.</t>
            </li>
            <li>
              <t>Let URL be the URL of the dictionary request.</t>
            </li>
            <li>
              <t>Let PATTERN be a URL Pattern <xref target="URLPattern"/> constructed by setting
input=MATCH, and baseURL=URL.</t>
            </li>
            <li>
              <t>If PATTERN has regexp groups then return FALSE.</t>
            </li>
            <li>
              <t>Return True.</t>
            </li>
          </ol>
          <t>The "match" value is required and <bcp14>MUST</bcp14> be included in the
Use-As-Dictionary Dictionary for the dictionary to be considered valid.</t>
        </section>
        <section anchor="match-dest">
          <name>match-dest</name>
          <t>The "match-dest" value of the Use-As-Dictionary header is an Inner List of
String values that provides a list of request destinations for the dictionary
to match (https://fetch.spec.whatwg.org/#concept-request-destination).</t>
          <t>An empty list for "match-dest" <bcp14>MUST</bcp14> match all destinations.</t>
          <t>For clients that do not support request destinations, the client <bcp14>MUST</bcp14> treat it
as an empty list and match all destinations.</t>
          <t>The "match-dest" value is optional and defaults to an empty list.</t>
        </section>
        <section anchor="id">
          <name>id</name>
          <t>The "id" value of the Use-As-Dictionary header is a String value that specifies
a server identifier for the dictionary. If an "id" value is present and has a
string length longer than zero then it <bcp14>MUST</bcp14> be sent to the server in a
"Dictionary-ID" request header when the dictionary is advertised as being
available.</t>
          <t>The server identifier <bcp14>MUST</bcp14> be treated as an opaque string by the client.</t>
          <t>The server identifier <bcp14>MUST NOT</bcp14> be relied upon by the server to guarantee the
contents of the dictionary. The dictionary hash <bcp14>MUST</bcp14> be validated before use.</t>
          <t>The "id" value string length (after any decoding) supports up to 1024
characters.</t>
          <t>The "id" value is optional and defaults to the empty string.</t>
        </section>
        <section anchor="type">
          <name>type</name>
          <t>The "type" value of the Use-As-Dictionary header is a Token value that
describes the file format of the supplied dictionary.</t>
          <t>"raw" is the only defined dictionary format which represents an unformatted
blob of bytes suitable for any compression scheme to use.</t>
          <t>If a client receives a dictionary with a type that it does not understand, it
<bcp14>MUST NOT</bcp14> use the dictionary.</t>
          <t>The "type" value is optional and defaults to raw.</t>
        </section>
        <section anchor="examples">
          <name>Examples</name>
          <section anchor="path-prefix">
            <name>Path Prefix</name>
            <t>A response that contained a response header:</t>
            <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

Use-As-Dictionary: \
  match="/product/*", match-dest=("document")
]]></sourcecode>
            <t>Would specify matching any document request for a URL with a path prefix of
/product/ on the same <xref target="Origin"/> as the original request.</t>
          </section>
          <section anchor="versioned-directories">
            <name>Versioned Directories</name>
            <t>A response that contained a response header:</t>
            <sourcecode type="http-message"><![CDATA[
Use-As-Dictionary: match="/app/*/main.js"
]]></sourcecode>
            <t>Would match main.js in any directory under /app/ and expiring as a dictionary
in one year.</t>
          </section>
        </section>
      </section>
      <section anchor="available-dictionary">
        <name>Available-Dictionary</name>
        <t>When a HTTP client makes a request for a resource for which it has an
appropriate dictionary, it can add a "Available-Dictionary" request header
to the request to indicate to the server that it has a dictionary available to
use for compression.</t>
        <t>The "Available-Dictionary" request header is a Structured Field
<xref target="STRUCTURED-FIELDS"/> Byte Sequence containing the <xref target="SHA-256"/> hash of the
contents of a single available dictionary.</t>
        <t>The client <bcp14>MUST</bcp14> only send a single "Available-Dictionary" request header
with a single hash value for the best available match that it has available.</t>
        <t>For example:</t>
        <sourcecode type="http-message"><![CDATA[
Available-Dictionary: :pZGm1Av0IEBKARczz7exkNYsZb8LzaMrV7J32a2fFG4=:
]]></sourcecode>
        <section anchor="dictionary-freshness-requirement">
          <name>Dictionary freshness requirement</name>
          <t>To be considered as a match, the dictionary resource <bcp14>MUST</bcp14> be either fresh
<xref target="HTTP-CACHING"/> or allowed to be served stale (see eg <xref target="RFC5861"/>).</t>
        </section>
        <section anchor="dictionary-url-matching">
          <name>Dictionary URL matching</name>
          <t>When a dictionary is stored as a result of a "Use-As-Dictionary" directive, it
includes "match" and "match-dest" strings that are used to match an outgoing
request from a client to the available dictionaries.</t>
          <t>Dictionaries <bcp14>MUST</bcp14> have been served from the same {Origin} as the outgoing
request to match.</t>
          <t>To see if an outbound request matches a given dictionary, the following
algorithm will return TRUE for a successful match and FALSE for no-match:</t>
          <ol spacing="normal" type="1"><li>
              <t>If the current client supports request destinations:
              </t>
              <ul spacing="normal">
                <li>
                  <t>Let DEST be the value of "match-dest" for the given dictionary.</t>
                </li>
                <li>
                  <t>Let REQUEST_DEST be the value of the destination for the current
 request.</t>
                </li>
                <li>
                  <t>If DEST is not an empty list and if REQUEST_DEST is not in the DEST list
 of destinations, return FALSE</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Let BASEURL be the URL of the dictionary request.</t>
            </li>
            <li>
              <t>Let URL represent the URL of the outbound request being checked.</t>
            </li>
            <li>
              <t>If the {Origin} of BASEURL and the {Origin} of URL are not the same, return
FALSE.</t>
            </li>
            <li>
              <t>Let MATCH be the value of "match" for the given dictionary.</t>
            </li>
            <li>
              <t>Let PATTERN be a URL Pattern <xref target="URLPattern"/> constructed by setting
input=MATCH, and baseURL=BASEURL.</t>
            </li>
            <li>
              <t>Return the result of running the "test" method of PATTERN with input=URL.</t>
            </li>
          </ol>
        </section>
        <section anchor="multiple-matching-dictionaries">
          <name>Multiple matching dictionaries</name>
          <t>When there are multiple dictionaries that match a given request URL, the client
<bcp14>MUST</bcp14> pick a single dictionary using the following rules:</t>
          <ol spacing="normal" type="1"><li>
              <t>For clients that support request destinations, a dictionary that specifies
and matches a "match-dest" takes precedence over a match that does not use a
destination.</t>
            </li>
            <li>
              <t>Given equivalent destination precedence, the dictionary with the longest
"match" takes precedence.</t>
            </li>
            <li>
              <t>Given equivalent destination and match length precedence, the most recently
fetched dictionary takes precedence.</t>
            </li>
          </ol>
        </section>
      </section>
      <section anchor="dictionary-id">
        <name>Dictionary-ID</name>
        <t>When a HTTP client makes a request for a resource for which it has an
appropriate dictionary and the dictionary was stored with a server-provided
"id" in the Use-As-Dictionary response then the client <bcp14>MUST</bcp14> echo the stored
"id" in a "Dictionary-ID" request header.</t>
        <t>The "Dictionary-ID" request header is a Structured Field <xref target="STRUCTURED-FIELDS"/>
String of up to 1024 characters (after any decoding) and <bcp14>MUST</bcp14> be identical to
the server-provided "id".</t>
        <t>For example:</t>
        <sourcecode type="http-message"><![CDATA[
Available-Dictionary: :pZGm1Av0IEBKARczz7exkNYsZb8LzaMrV7J32a2fFG4=:
Dictionary-ID: "/v1/main.js 33a64df551425fcc55e4d42a148795d9f25f89d4"
]]></sourcecode>
      </section>
    </section>
    <section anchor="the-compression-dictionary-link-relation-type">
      <name>The 'compression-dictionary' Link Relation Type</name>
      <t>This specification defines the 'compression-dictionary' link relation type
<xref target="WEB-LINKING"/> that provides a mechanism for a HTTP response to provide a URL
for a compression dictionary that is related to, but not directly used by the
current HTTP response.</t>
      <t>The 'compression-dictionary' link relation type indicates that fetching and
caching the specified resource is likely to be beneficial for future requests.
The response to some of those future requests are likely to be able to use
the indicated resource as a compression dictionary.</t>
      <t>Clients can fetch the provided resource at a time that they determine would
be appropriate.</t>
      <t>The response to the fetch for the compression dictionary needs to include a
"Use-As-Dictionary" and caching response headers for it to be usable as a
compression dictionary. The link relation only provides the mechanism for
triggering the fetch of the dictionary.</t>
      <t>The following example shows a link to a resource at
https://example.org/dict.dat that is expected to produce a compression
dictionary:</t>
      <sourcecode type="http-message"><![CDATA[
Link: <https://example.org/dict.dat>; rel="compression-dictionary"
]]></sourcecode>
    </section>
    <section anchor="dictionary-compressed-brotli">
      <name>Dictionary-Compressed Brotli</name>
      <t>The "dcb" content encoding identifies a resource that is a
"Dictionary-Compressed Brotli" stream.</t>
      <t>A "Dictionary-Compressed Brotli" stream has a fixed header that is followed by
a Shared Brotli <xref target="SHARED-BROTLI"/> stream. The header consists of a fixed 4 byte
sequence and a 32 byte hash of the external dictionary that was used.  The
Shared Brotli stream is created using the referenced external dictionary and a
compression window that is at most 16 MB in size.</t>
      <t>The dictionary used for the "dcb" content encoding is a "raw" dictionary type
as defined in <xref target="type"/> and is treated as a prefix dictionary as defined in
section 9.2 of the Shared Brotli Compressed Data Format draft.
<xref target="SHARED-BROTLI"/></t>
      <t>The 36-byte fixed header is as follows:</t>
      <dl>
        <dt>Magic_Number:</dt>
        <dd>
          <t>4 fixed bytes: 0xff, 0x44, 0x43, 0x42.</t>
        </dd>
        <dt>SHA_256_Hash:</dt>
        <dd>
          <t>32 Bytes. SHA-256 hash digest of the dictionary <xref target="SHA-256"/>.</t>
        </dd>
      </dl>
      <t>Clients that announce support for dcb content encoding <bcp14>MUST</bcp14> be able to
decompress resources that were compressed with a window size of up to 16 MB.</t>
      <t>With Brotli compression, the full dictionary is available during compression
and decompression independent of the compression window, allowing for
delta-compression of resources larger than the compression window.</t>
    </section>
    <section anchor="dictionary-compressed-zstandard">
      <name>Dictionary-Compressed Zstandard</name>
      <t>The "dcz" content encoding identifies a resource that is a
"Dictionary-Compressed Zstandard" stream.</t>
      <t>A "Dictionary-Compressed Zstandard" stream is a binary stream that starts with
a 40-byte fixed header and is followed by a Zstandard <xref target="RFC8878"/> stream of the
response that has been compressed with an external dictionary.</t>
      <t>The dictionary used for the "dcz" content encoding is a "raw" dictionary type
as defined in <xref target="type"/> and is treated as a raw dictionary as per section 5 of
RFC 8878.</t>
      <t>The 40-byte header consists of a fixed 8-byte sequence followed by the
32-byte SHA-256 hash of the external dictionary that was used to compress the
resource:</t>
      <dl>
        <dt>Magic_Number:</dt>
        <dd>
          <t>8 fixed bytes: 0x5e, 0x2a, 0x4d, 0x18, 0x20, 0x00, 0x00, 0x00.</t>
        </dd>
        <dt>SHA_256_Hash:</dt>
        <dd>
          <t>32 Bytes. SHA-256 hash digest of the dictionary <xref target="SHA-256"/>.</t>
        </dd>
      </dl>
      <t>The 40-byte header is a Zstandard skippable frame (little-endian 0x184D2A5E)
with a 32-byte length (little-endian 0x00000020) that is compatible with existing
Zstandard decoders.</t>
      <t>Clients that announce support for dcz content encoding <bcp14>MUST</bcp14> be able to
decompress resources that were compressed with a window size of at least 8 MB
or 1.25 times the size of the dictionary, which ever is greater, up to a
maximum of 128 MB.</t>
      <t>The window size used will be encoded in the content (currently, this can be expressed
in powers of two only) and it <bcp14>MUST</bcp14> be lower than this limit. An implementation <bcp14>MAY</bcp14>
treat a window size that exceeds the limit as a decoding error.</t>
      <t>With Zstandard compression, the full dictionary is available during compression
and decompression until the size of the input exceeds the compression window.
Beyond that point the dictionary becomes unavailable. Using a compression
window that is 1.25 times the size of the dictionary allows for full delta
compression of resources that have grown by 25% between releases while still
giving the client control over the memory it will need to allocate for a given
response.</t>
    </section>
    <section anchor="negotiating-the-content-encoding">
      <name>Negotiating the content encoding</name>
      <t>When a compression dictionary is available for use for a given request, the
encoding to be used is negotiated through the regular mechanism for
negotiating content encoding in HTTP through the "Accept-Encoding" request
header and "Content-Encoding" response header.</t>
      <t>The dictionary to use is negotiated separately and advertised in the
"Available-Dictionary" request header.</t>
      <section anchor="accept-encoding">
        <name>Accept-Encoding</name>
        <t>When a dictionary is available for use on a given request, and the client
chooses to make dictionary-based content-encoding available, the client adds
the dictionary-aware content encodings that it supports to the
"Accept-Encoding" request header. e.g.:</t>
        <sourcecode type="http-message"><![CDATA[
Accept-Encoding: gzip, deflate, br, zstd, dcb, dcz
]]></sourcecode>
        <t>When a client does not have a stored dictionary that matches the request, or
chooses not to use one for the request, the client <bcp14>MUST NOT</bcp14> send its
dictionary-aware content-encodings in the "Accept-Encoding" request header.</t>
      </section>
      <section anchor="content-encoding">
        <name>Content-Encoding</name>
        <t>If a server supports one of the dictionary encodings advertised by the client
and chooses to compress the content of the response using the dictionary that
the client has advertised then it sets the "Content-Encoding" response header
to the appropriate value for the algorithm selected. e.g.:</t>
        <sourcecode type="http-message"><![CDATA[
Content-Encoding: dcb
]]></sourcecode>
        <t>If the response is cacheable, it <bcp14>MUST</bcp14> include a "Vary" header to prevent caches
serving dictionary-compressed resources to clients that don't support them or
serving the response compressed with the wrong dictionary:</t>
        <sourcecode type="http-message"><![CDATA[
Vary: accept-encoding, available-dictionary
]]></sourcecode>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="content-encoding-1">
        <name>Content Encoding</name>
        <t>IANA is asked to enter the following into the "HTTP Content Coding Registry"
registry (<xref target="HTTP"/>):</t>
        <ul spacing="normal">
          <li>
            <t>Name: dcb</t>
          </li>
          <li>
            <t>Description: "Dictionary-Compressed Brotli" data format.</t>
          </li>
          <li>
            <t>Reference: This document</t>
          </li>
          <li>
            <t>Notes: <xref target="dictionary-compressed-brotli"/></t>
          </li>
        </ul>
        <t>IANA is asked to enter the following into the "HTTP Content Coding Registry"
registry (<xref target="HTTP"/>):</t>
        <ul spacing="normal">
          <li>
            <t>Name: dcz</t>
          </li>
          <li>
            <t>Description: "Dictionary-Compressed Zstandard" data format.</t>
          </li>
          <li>
            <t>Reference: This document</t>
          </li>
          <li>
            <t>Notes: <xref target="dictionary-compressed-zstandard"/></t>
          </li>
        </ul>
      </section>
      <section anchor="header-field-registration">
        <name>Header Field Registration</name>
        <t>IANA is asked to update the
"Hypertext Transfer Protocol (HTTP) Field Name Registry" registry
(<xref target="HTTP"/>) according to the table below:</t>
        <table>
          <thead>
            <tr>
              <th align="left">Field Name</th>
              <th align="left">Status</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Use-As-Dictionary</td>
              <td align="left">permanent</td>
              <td align="left">
                <xref target="use-as-dictionary"/> of this document</td>
            </tr>
            <tr>
              <td align="left">Available-Dictionary</td>
              <td align="left">permanent</td>
              <td align="left">
                <xref target="available-dictionary"/> of this document</td>
            </tr>
            <tr>
              <td align="left">Dictionary-ID</td>
              <td align="left">permanent</td>
              <td align="left">
                <xref target="dictionary-id"/> of this document</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="link-relation-registration">
        <name>Link Relation Registration</name>
        <t>IANA is asked to update the "Link Relation Type Registry" registry
(<xref target="WEB-LINKING"/>):</t>
        <ul spacing="normal">
          <li>
            <t>Relation Name: compression-dictionary</t>
          </li>
          <li>
            <t>Description: Refers to a compression dictionary used for content encoding.</t>
          </li>
          <li>
            <t>Reference: This document, <xref target="the-compression-dictionary-link-relation-type"/></t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="compatibility-considerations">
      <name>Compatibility Considerations</name>
      <t>To minimize the risk of middle-boxes incorrectly processing
dictionary-compressed responses, compression dictionary transport <bcp14>MUST</bcp14> only
be used in secure contexts (HTTPS).</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The security considerations for Brotli <xref target="RFC7932"/>, Shared Brotli
<xref target="SHARED-BROTLI"/> and Zstandard <xref target="RFC8878"/> apply to the
dictionary-based versions of the respective algorithms.</t>
      <section anchor="changing-content">
        <name>Changing content</name>
        <t>The dictionary must be treated with the same security precautions as
the content, because a change to the dictionary can result in a
change to the decompressed content.</t>
        <t>The dictionary is validated using a SHA-256 hash of the content to make sure
that the client and server are both using the same dictionary. The strength
of the SHA-256 hash algorithm isn't explicitly needed to counter attacks
since the dictionary is being served from the same origin as the content. That
said, if a weakness is discovered in SHA-256 and it is determined that the
dictionary negotiation should use a different hash algorithm, the
"Use-As-Dictionary" response header can be extended to specify a different
algorithm and the server would just ignore any "Available-Dictionary" requests
that do not use the updated hash.</t>
      </section>
      <section anchor="reading-content">
        <name>Reading content</name>
        <t>The CRIME attack shows that it's a bad idea to compress data from
mixed (e.g. public and private) sources -- the data sources include
not only the compressed data but also the dictionaries. For example,
if you compress secret cookies using a public-data-only dictionary,
you still leak information about the cookies.</t>
        <t>Not only can the dictionary reveal information about the compressed
data, but vice versa, data compressed with the dictionary can reveal
the contents of the dictionary when an adversary can control parts of
data to compress and see the compressed size. On the other hand, if
the adversary can control the dictionary, the adversary can learn
information about the compressed data.</t>
      </section>
      <section anchor="security-mitigations">
        <name>Security Mitigations</name>
        <t>If any of the mitigations do not pass, the client <bcp14>MUST</bcp14> drop the response and
return an error.</t>
        <section anchor="cross-origin-protection">
          <name>Cross-origin protection</name>
          <t>To make sure that a dictionary can only impact content from the same origin
where the dictionary was served, the URL Pattern used for matching a dictionary
to requests (<xref target="match"/>) is guaranteed to be for the same origin that the
dictionary is served from.</t>
        </section>
        <section anchor="response-readability">
          <name>Response readability</name>
          <t>For clients, like web browsers, that provide additional protection against the
readability of the payload of a response and against user tracking, additional
protections <bcp14>MUST</bcp14> be taken to make sure that the use of dictionary-based
compression does not reveal information that would not otherwise be available.</t>
          <t>In these cases, dictionary compression <bcp14>MUST</bcp14> only be used when both the
dictionary and the compressed response are fully readable by the client.</t>
          <t>In browser terms, that means that both are either same-origin to the context
they are being fetched from or that the response is cross-origin and passes
the CORS check (https://fetch.spec.whatwg.org/#cors-check).</t>
        </section>
        <section anchor="server-responsibility">
          <name>Server Responsibility</name>
          <t>As with any usage of compressed content in a secure context, a potential
timing attack exists if the attacker can control any part of the dictionary,
or if it can read the dictionary and control any part of the content being
compressed, while performing multiple requests that vary the dictionary or
injected content. Under such an attack, the changing size or processing time
of the response reveals information about the content, which might be
sufficient to read the supposedly secure response.</t>
          <t>In general, a server can mitigate such attacks by preventing variations per
request, as in preventing active use of multiple dictionaries for the same
content, disabling compression when any portion of the content comes from
uncontrolled sources, and securing access and control over the dictionary
content in the same way as the response content. In addition, the following
requirements on a server are intended to disable dictionary-aware compression
when the client provides CORS request header fields that indicate a
cross-origin request context.</t>
          <t>The following algorithm will return FALSE for cross-origin requests where
precautions such as not using dictionary-based compression should be
considered:</t>
          <ol spacing="normal" type="1"><li>
              <t>If there is no "Sec-Fetch-Site" request header then return TRUE.</t>
            </li>
            <li>
              <t>if the value of the "Sec-Fetch-Site" request header is "same-origin" then
return TRUE.</t>
            </li>
            <li>
              <t>If there is no "Sec-Fetch-Mode" request header then return TRUE.</t>
            </li>
            <li>
              <t>If the value of the "Sec-Fetch-Mode" request header is "navigate" or
"same-origin" then return TRUE.</t>
            </li>
            <li>
              <t>If the value of the "Sec-Fetch-Mode" request header is "cors":
              </t>
              <ul spacing="normal">
                <li>
                  <t>If the response does not include an "Access-Control-Allow-Origin" response header then return FALSE.</t>
                </li>
                <li>
                  <t>If the request does not include an "Origin" request header then return FALSE.</t>
                </li>
                <li>
                  <t>If the value of the "Access-Control-Allow-Origin" response header is "*" then return TRUE.</t>
                </li>
                <li>
                  <t>If the value of the "Access-Control-Allow-Origin" response header matches the value of the "Origin" request header then return TRUE.</t>
                </li>
              </ul>
            </li>
            <li>
              <t>return FALSE.</t>
            </li>
          </ol>
        </section>
      </section>
    </section>
    <section anchor="privacy-considerations">
      <name>Privacy Considerations</name>
      <t>Since dictionaries are advertised in future requests using the hash of the
content of the dictionary, it is possible to abuse the dictionary to turn it
into a tracking cookie.</t>
      <t>To mitigate any additional tracking concerns, clients <bcp14>MUST</bcp14> treat dictionaries
in the same way that they treat cookies. This includes partitioning the storage
as cookies are partitioned as well as clearing the dictionaries whenever
cookies are cleared.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="FOLDING">
          <front>
            <title>Handling Long Lines in Content of Internet-Drafts and RFCs</title>
            <author fullname="K. Watsen" initials="K." surname="Watsen"/>
            <author fullname="E. Auerswald" initials="E." surname="Auerswald"/>
            <author fullname="A. Farrel" initials="A." surname="Farrel"/>
            <author fullname="Q. Wu" initials="Q." surname="Wu"/>
            <date month="June" year="2020"/>
            <abstract>
              <t>This document defines two strategies for handling long lines in width-bounded text content. One strategy, called the "single backslash" strategy, is based on the historical use of a single backslash ('\') character to indicate where line-folding has occurred, with the continuation occurring with the first character that is not a space character (' ') on the next line. The second strategy, called the "double backslash" strategy, extends the first strategy by adding a second backslash character to identify where the continuation begins and is thereby able to handle cases not supported by the first strategy. Both strategies use a self-describing header enabling automated reconstitution of the original content.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8792"/>
          <seriesInfo name="DOI" value="10.17487/RFC8792"/>
        </reference>
        <reference anchor="HTTP">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="HTTP-CACHING">
          <front>
            <title>HTTP Caching</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document defines HTTP caches and the associated header fields that control cache behavior or indicate cacheable response messages.</t>
              <t>This document obsoletes RFC 7234.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="98"/>
          <seriesInfo name="RFC" value="9111"/>
          <seriesInfo name="DOI" value="10.17487/RFC9111"/>
        </reference>
        <reference anchor="RFC5861">
          <front>
            <title>HTTP Cache-Control Extensions for Stale Content</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <date month="May" year="2010"/>
            <abstract>
              <t>This document defines two independent HTTP Cache-Control extensions that allow control over the use of stale responses by caches. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5861"/>
          <seriesInfo name="DOI" value="10.17487/RFC5861"/>
        </reference>
        <reference anchor="SHA-256">
          <front>
            <title>US Secure Hash Algorithms (SHA and SHA-based HMAC and HKDF)</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
            <author fullname="T. Hansen" initials="T." surname="Hansen"/>
            <date month="May" year="2011"/>
            <abstract>
              <t>Federal Information Processing Standard, FIPS</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6234"/>
          <seriesInfo name="DOI" value="10.17487/RFC6234"/>
        </reference>
        <reference anchor="URLPattern" target="https://urlpattern.spec.whatwg.org/">
          <front>
            <title>URL Pattern Standard</title>
            <author>
              <organization/>
            </author>
            <date year="2024" month="March"/>
          </front>
        </reference>
        <reference anchor="WEB-LINKING">
          <front>
            <title>Web Linking</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <date month="October" year="2017"/>
            <abstract>
              <t>This specification defines a model for the relationships between resources on the Web ("links") and the type of those relationships ("link relation types").</t>
              <t>It also defines the serialisation of such links in HTTP headers with the Link header field.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8288"/>
          <seriesInfo name="DOI" value="10.17487/RFC8288"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="Origin">
          <front>
            <title>The Web Origin Concept</title>
            <author fullname="A. Barth" initials="A." surname="Barth"/>
            <date month="December" year="2011"/>
            <abstract>
              <t>This document defines the concept of an "origin", which is often used as the scope of authority or privilege by user agents. Typically, user agents isolate content retrieved from different origins to prevent malicious web site operators from interfering with the operation of benign web sites. In addition to outlining the principles that underlie the concept of origin, this document details how to determine the origin of a URI and how to serialize an origin into a string. It also defines an HTTP header field, named "Origin", that indicates which origins are associated with an HTTP request. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6454"/>
          <seriesInfo name="DOI" value="10.17487/RFC6454"/>
        </reference>
        <reference anchor="STRUCTURED-FIELDS">
          <front>
            <title>Structured Field Values for HTTP</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <author fullname="P-H. Kamp" surname="P-H. Kamp"/>
            <date month="February" year="2021"/>
            <abstract>
              <t>This document describes a set of data types and associated algorithms that are intended to make it easier and safer to define and handle HTTP header and trailer fields, known as "Structured Fields", "Structured Headers", or "Structured Trailers". It is intended for use by specifications of new HTTP fields that wish to use a common syntax that is more restrictive than traditional HTTP field values.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8941"/>
          <seriesInfo name="DOI" value="10.17487/RFC8941"/>
        </reference>
        <reference anchor="RFC7932">
          <front>
            <title>Brotli Compressed Data Format</title>
            <author fullname="J. Alakuijala" initials="J." surname="Alakuijala"/>
            <author fullname="Z. Szabadka" initials="Z." surname="Szabadka"/>
            <date month="July" year="2016"/>
            <abstract>
              <t>This specification defines a lossless compressed data format that compresses data using a combination of the LZ77 algorithm and Huffman coding, with efficiency comparable to the best currently available general-purpose compression methods.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7932"/>
          <seriesInfo name="DOI" value="10.17487/RFC7932"/>
        </reference>
        <reference anchor="SHARED-BROTLI" target="https://datatracker.ietf.org/doc/draft-vandevenne-shared-brotli-format/">
          <front>
            <title>Shared Brotli Compressed Data Format</title>
            <author>
              <organization/>
            </author>
            <date year="2022" month="September"/>
          </front>
        </reference>
        <reference anchor="RFC8878">
          <front>
            <title>Zstandard Compression and the 'application/zstd' Media Type</title>
            <author fullname="Y. Collet" initials="Y." surname="Collet"/>
            <author fullname="M. Kucherawy" initials="M." role="editor" surname="Kucherawy"/>
            <date month="February" year="2021"/>
            <abstract>
              <t>Zstandard, or "zstd" (pronounced "zee standard"), is a lossless data compression mechanism. This document describes the mechanism and registers a media type, content encoding, and a structured syntax suffix to be used when transporting zstd-compressed content via MIME.</t>
              <t>Despite use of the word "standard" as part of Zstandard, readers are advised that this document is not an Internet Standards Track specification; it is being published for informational purposes only.</t>
              <t>This document replaces and obsoletes RFC 8478.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8878"/>
          <seriesInfo name="DOI" value="10.17487/RFC8878"/>
        </reference>
      </references>
    </references>
    <?line 607?>



  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA8086XLbRpr/8RS9dG3FTgmURUuOzE1mRpbkWDuS7JXkuDJH
pZpAk+wIBLg4RFFy8iz7LPtk+x3djcZBWak4U+uqKCTQ13efzTAMg1KXiRqL
w2yxzFVR6CwVRzoq4f8yX4urXKbFMsvLIM6iVC5gZJzLaRlqVU7DeVkuJ7oI
o3pyGLvJ4fOXQSRLNcvy9VgUZRwEUZYWKi2qYizKvFLBzVi8CGSu5FgcXFwF
RTVZaFqmXC9hq5PjqzfBKsuvZ3lWLcfi7dXV++BareFRPA5EKLyNRb0xvinm
sGwsJnlWJhof3BWlTGOZx62BsUpK6S8UBDcqrRSsL/xtheAzfYTj6HQmvsd3
8HSeIVIQE8V4exv/v5oNs3y2De8WUidj4VAVrmZ/Wb3Al/BO5tG8npfooiyG
/HL7AF7pG1Vsv68miY62/QVw2Vwts3rqTJfzajIECMzu9L9Q3ZaAaYCn2E7k
RCXFdj+VAp4fAt4rFdLQsdgwNJBVOc9yRE0I/wmhU6Dk+6E4UyqVKT1iJnkv
y1xH1/6LPEM+U7Eus5weAKgy1XcSVx+L77NslihxenpILxXjbrmgBf4yo7cI
ZHPvH4fio4Kje1v/mMkb7+Fntr2cZ0s9XYuTNPL3XcMiwxUu8peCR9DeQZrl
C5h5Q+zx5t3p0cn592Nx8eZw/5tXI3iErELfX+3sPDffw8ODw7d2HDzfgefw
aW//5c5YPBGXpUxU+HGu4e+FupGJjkFoYMzl24NwtPeSpr0cvdiFRx8uTgGz
pcrTMZ3WCC88FuY5LkdsTu9xpbHY2RdnyG5i9Hy0y/NkPlNlzUNVnix5/rBY
qmi4msuyZuOPx6/D05PzvzpYR/v7QaDTqY+Md7me6ZQPu7uH21xeXXw4vPpw
cXwUvjk5Pj265Mmvdg0Cvnn1YjQWgIHXRkgRYhz9+uLd1elJA8JLFmce6ZQV
PDmSIL1v6CAexKN9camWpVpMVI5Qj3qhhrHApjK6VvkQZYzgBT23zSruBhCp
QBekKmRtErI2CRnubYZif/+bfYLib1bBBEEYhkJOCly7DIKruS4EolVPdURs
B0pnqlNVCCkWKpoDOxYLAauKqkDVEqtCz1IAJCb+AXkHFQyKswgkTEkFinae
ysTTZDR7WpVVrlpz6I2vJ4torhawVgk0FkW1RO1uNu4urGGBp2o4G25Z3D8F
mAWS7hkcJQ4c1PwCsfHs2ZBRsNBxnKggeALSVeZZXNGivw8h9/cI3i+//P9C
yv294Wc4WBMr9Aax8ssviBYCHVisWqi0RLiiXE9guXJujjhXMlZ5AXsDsHjK
FOxnqQFLiIcatKqQMxXAJgDUDIwHzlmAlpNkpiyAaYnbqDTKYpxvTouz6hMy
lDKwGynfQsKRnzwR51lJZAIkHGYpiAR+KRAaJcAcC7THhRicfbi8Gmzx/8X5
O/p8cfxfH05AqPEziPfpqfsQmBGXb999OD2qP9UzD9+dnR2fH/FkeCoaj4LB
2cGP8AahGbx7f3Xy7vzgdABmAZDpIxkkV5SZmCh4BWgCkiOIsggs9mOc8/rw
/f/+z84u0OvfgGCjnZ1XQEr+sr/zzS58Wc1VyrtlabI2X4Fu60Aul0rmuIpM
EhHJpQaVXsBY4PJ5tkqBqLkCTH79d8TMP8fi20m03Nn9k3mAADceWpw1HhLO
uk86kxmJPY96tnHYbDxvYbp53oMfG98t3r2H3/45AVEW4c7+n/8UtDm+Kgyz
T7MkyVbIeUCThU6zJJuBwObZArB+qYj/xAuRTbtmBGhRZgHrj7Uo1mkpb4ku
S5kjL489B3YL7GEOz7ZABaVgC05BVLbEVXZtafl6XSqwFf9dgZCo4e9kafEg
Swdtlv59/Ct8/g1IzzDbdtSMQzoRBjBPygDNEzjnqMwaknB/b/yanpWArTOz
XJdqRjEjPPzFOj600BM/rDi3Sg3NASiYD4UKD4rwyHM1P4J8GYVNxwUUSFaR
F0gtJKMUhcpvgKoR6H8Zw6dSF4As1OEIrlX3+D4A/JFORWuxwUbkvDArT/Cp
Cl4KbD34TrRglYCNMJaLsYWPO6evd2Z1bvjqs+OExsMBx4KlrNDfeaNVEgNt
+2TAW2YFLrwAz7Eyin9AR0YWow8h0LfEbzoGLiR+QyMxIOX+hOHjE5qJvBYK
Xz94rdMieXgG4itY5tmNjg3L+a7p/X3tv5IQI0XowAbzfBRYziLMm+wMoh0D
XAl7pFnbXl+oWZWAOla31roXZrla58gEglJA2gJQByobRKqCLQDJx7SFFOSG
G8obz5gY+83B6eVxQGNSID8PswOIW6ymEIbhxkGwMxSnCt4cXB2+xceIF4dh
i3JcE1/MwJ9OGxbYTEdkmMn40RAn9pmJkOgmvD+4ujq+OMdJ8iE6YFBOLIfx
MihUVaKzAf79siq/o0OzkprIQsHE7+A/2uNk6raYg1SBHwIo55iZaJ9avBLS
aMqFQTTE/sM+jtMFQaGR93FLQiZpviipYidxQZclj5oS3UIN608EFBgTFyfC
+fxPMuIfiYXmN0hC6pkYmBD4gmE0iZMMKRIe5Tgfd9MpacSiB4IAIGBufGqj
l6mCr51w7QkAGUHoE5qFQ29hdEAPwFNeLMs1H6BWFgZcQjhvhL6MfyqY/Aad
ykSDJTAAxVlDAPuAIR/JzOLly1zBVF1ax70+DpJ84+YbSAOoz5bGOcX5EEnI
KsEDZs3VDbV1bJYCZfi79JyNYDACsYYIiAu+MTzLe2hIEgNH8naGlVFJkWmF
s6MYyaDgnRKVzkCtJ1k6U7gUzLxTecaSpUsnGzS7pOfuGKCsgkENSHhyNHDE
MUCh/9oWEwTUmlGylBOFmkDeSJ3ISWJltgusPQuR1hjZFOgiYUth4AHVUnPC
wysZ9ZmrBK1sBSbSzjYTANxZJXMJDhFpxMCEOkVXLQ7FVRNIQPLcHdimW0C7
KaAYqexhh0GaFHkqp6A5AcA1MBtHVs+sCEDgtsTT7WCmBQJZzABAaNZd8iG2
RQCYb3ljw7los806ZL5/C/eSx+sb6WboOdUJGWIQL7seAkTobwSDg1yuBrgk
DqE4iCP3uOVS4UKruQZJzpXhcGKJyiSNAOPBJMkmuNsEXHCIlCqImiZ8DMJt
Nzw3HgMcAwXJ6pRcRQqzpU23jlwiDoZZWnVZOwxVijE2BsBbqIccz1WFanNP
D8IfIh2gx1Dr+FYulugu4rcnaHvn4n0OyLoFJVw7fnQ25F5JWJRtlxDch19/
/ZVSVuECsIFRPxz1eCy++sdX7NCvcghAkT+XQG1KwmAusmsjx+IflJMGDfrd
YHvJCZntr8ExrLXqd08H1tkfPMOdwRHPqiQWNtxy3hexv40LrG5h5wl9DYP/
JYK9JLDRJrpdgXeYyySQ9f6ek4cYPBjOou8yqX0axuIPQDYABvN+4CNEZYa5
mN+Nzx5MWSwBZre/3l7AYsOfi4GPELZT5g1pXESIOdWaWUzQfGIScI00KZFW
/AFuFuBCibWSOSdbDqy27YZDJgAyjL+Q18T1TeQDvFmVRyxHLILA+mRZUsxU
5NkyxyyPdwYUAhNDIcYGfSdo24/A6Cn7FL5qCNSw3tMyRlb65u3Iy5kVDOdt
JOBJvZW9xxznN0VOjZjfMgvFmHNkRpN3h4FkKlgfNiwM2HsYDgevQeioDN/j
IUUJOjCuZz4OyUaKzBw6Dusg611McHB9Chuqehj3bDe6b4rVUp8Y9J1oLMbL
v32/2Dm4eX5y/PqvBxfR3d036vb6/Mfib5P90zt5lv/wzX++GMnR9M33u9+N
WUJQVH2HHAg6T2EX69yjzgAstZ1yYhACYasb2xiutoZbAWbQy8Klg7/72YZ/
CpQDjPRgSXb8iRNBh2GlRTwtwGdQM/F3U4P557Nh58Sowaymc7LXdJQKEHN7
ZjgEGADmjEFHmwyMWgAjRebGBDOFi30oIvc9Wzb7xseWuclcuBAAXauqnGV4
OCf8mINxNtFIYA97gr4EcI+8r4zSubxBbgJADbJowVpFGw3tFHR7f3u4IdEV
Uayn5qCTrKI0tRfik95qR7pbzcRg8NkgvaiiCLhqWiUOMSZC58x5FtJjjsBP
2K2JqjxHDBlEObetL3ThCtTXFEwfHRsPtxu7G6JtDuDrVTB1CAv91LsasXy9
vVvQHJmrmdYe8poAFC2l2a/pRlNAhMaeZqBJXNEjHMuF0WkrcPPDd5tUeH1w
efybMxE4yvmB7XkdDqGgQwCTRNcqHnq0c0wIM+05EMj2O3oOUoOQWg620AR1
MuIL5GT+qBSLgc7PmZiEptEzeZU6izUoif8WqpxnMb60pyLrwXvQYqTlzmAF
vbS2olFVIl/qo4kLAX+Iw4Ud3qh+eXlRK8eWerCTH/Kzc73EXgBnxxplLAtF
nZyjLCsLbSfh8HCmoaGj2zG6zS2Q7mlIbkmO1BIDiZhcggz9Fulb0zp0AD9F
Bt62RKPvCQVo3ICHTGXPyXG9cMesEYUoM49RPsih5bz2kT6/S507MWFqe9tF
VnCwlJbJOqDsUTNs6+4ZNKxieHL0x/qhTph9DElnaq0zRG5laHJpcUBB9ecz
8aXNd/iOmYrmxlelLdxawCAPZk+sa/pwiqXXJxW9PqnNFoL01gkEUScQ+pMO
jRQp5VAiiJnAm67db4cnSj78i5zABlrGYrB9s2NjKPHihXy5G0/39nZ2R3vT
KNrbU7vx7kju7ELYuhe/msLT/Vfxrgm2nlD65qv+hqSvxKlOr0FDJiwDVyZD
srG9oHxorQTXyu1alG25v/d6X7Bk0criNpsVZLPLAMloxrJ14LrBhqY147UX
fAJy97bEpCpJ67ADmazZEeRcWGBdmcamhjN/A5AubjMqljQDR/hxEEn+TAzl
6l5OtuG4ib5Wic2wT1QKmI40cGFPXW1IR/PRU2QL4/pkGP+1ynBofxrLm2AR
sUAsbk/unYj88X4MA2oOjS3BYJfgJMCciNSrlJg70ou6mIhixzVPJVaYAMCC
oqfGDN594Miq0SbOk+unfKpUXHAETZEBJm97ogiUdkuPVlaDSwa6NHiqCsIU
ZZM34ILEqskMFKU2incN9g5AQ81mKncGm0Dr5lvbtTajbKgVgisfsClVcz10
B7aqYUZzKxYsOowJ/ywa6hZYkGVDcCZJNakd1OfoU26oLcbi24f2+tN/IEK+
G/TLj1NKnobzmtFMIxvbhjiaDLotOC7VXfgIsAA2s/adlSkyVHKBdRzxqJEm
6zLVt/DKmCW7GZOI9EkgWx12lAWpe/FA9ZmdiW/MQhS6FzYlwnvsUjo3KGx2
RVLS48WIHvsJld6GLToamnzUc0OBmwXNgxmw4PiRqTXULmSupuC2wq5x7+J0
lIY8AH/G2arGfslO0s5LcfYa3YBC31nBbvisphJdPkBmcjIpWe6DhzaFOjc4
Z07dFvjQtE1gXt2roNjEqQ+DPxmwzH0yr4Yji9XHNEpyC/cw6BCZQX3xMiRi
NZgGAbIsg875mZzp6KfzCjssx8EY6M7DKZk/Fs9vp9Mt+Lu7S39f0N8R4BJ2
/Gm09/Knt8AJOA84A9NxxdC2uzKPxBrd4Z7Q0kvPefqcEyVpCnFkpFyQgDQC
8nSpY30mm3xEj4oR5UTSrLnCOCiqsWh8UMM4yB+ey4ZsA4f6iGMMATxuM+mN
KklamSQvS1ORdvUVGhcYfKaFrdVSpahHLH66PL3FGTBcDVU3Nbn7bfpcerag
JtgYa2qM/esNNys9r+/V6L27L6f33OKPUX2dwSyGE02YNo84LCwlJn2QmqD6
dp/3MLyRR09JwlK9fZ12ZZMobpYi5lRFhdCjw0S9Lauf1za9yP0i2gbmt1QN
FpSsjtnD+o1t8TXHtIh7wB7s8whnD3x8IrZejHhAQ/ofayFQ6pzkGtwTY/Uo
qP22gtpTqJRGklRTjH939unJc/z7vPH3iyuuHuwREWsGK671cskF0RwzsE8T
XZYQloHka+AdPO3u0ehg7/iZrRJYVNoydXvCc/o3ev7MiR3iDnw/3ITWULe6
oMRUfQwKNrmC/Rhle/fHK1sYmCgJON4HdRvArjvD0R456+y02nFN/G+ZHIS6
YVTPiPPzLaO7ZbCQt3pRkRTvjPZZkyOV/N0rPhVocKxAIIB1E6CF+6kJyxLK
Z2uONXD4rQELK35LEIGcmxVWGTneHMx7bR0oJU4lU5y10OVQHIABQKcVSyjs
tp8d/BhwS00TVYRSdRtxcEHePqxg6o8mhSBUnme5tVk11f8As1WB+k86BKLs
ZOOUfbbntVpnlBrC6DvTJofsHWeCWwH9q7Sud4kP3NjeOFfL43sU67ApLUxE
S41JYE2DjdbU6P0bhb1wK2pdGe39O5yxXClKlCL7wrgVXvkB4wH8FMz0jfVi
TX4K+SnPEs5FcjC2wMIykJA4EING4lw4HFVdOblAyVhng8hsn3s3CHxOtRLq
knobwtMGrflSRmM3G7ATpwRO7m0oqsjSeLcLynmeVTPTUWuaNZuRpn/noWvs
Us54+MsMDiJqejs2g1wqLvCs+eCQl2qM6uvTbTYOIrRNAAq1lNg7nZiYom6Z
Mu2Jjyrummp/8+Abio1d/GPGt41+mz41mfdonmXUqp1RitZbMsQ6Q2xRGzrU
um0aTXsyjougKRKhXMm8y0mFKz27uhrnQYKNBLLIEHifpjch2Zw4FrM7vdxC
pwbTZFtiAjr8rijBgIOrj3/uTJeG4WmGweXvSS6lTSm3HQtbIPA6G7YEMKRF
JVWUMkOAugrvC0Ajv4xNRVT312URbEJfWKPP2JLPYotYp83Opi3KtF04CuBB
uzqt3tNj30aLHulwj4d8R8tR3izs5KgOxluoDTzUUE6i3rU0DY2FKnnxzwuq
7T7x6wjNxoi6eFyAvsWk0WYWa283RlZiLjppwUf2HFiEhcSaa5e3E4MfSNJt
pgXTVHiFsORZRYDEad7kCj2Hx7MhWbvRNv2qrn7BkRbIlna1xhHbDhS+XOVZ
Y9M+LPxAmX7JnGfZY6vWCf5FYJMFOzk4P0A2pAYOLsL5nCk8zsSRlEO4ZrOl
8C5Lq/AHhp3JOiAFb1c5ZOV0QffcMAeXm0/iqb108gwACsU5308H2oXiiPob
qU1v/LlUGd4DNU2LQ5h6YdNIY9G4/YI7ZBQ83N/30s/cD8U8yr8U3rtHwuvF
x18MZHetHqEG0r9lzudSlwHB3PPp4KRaxtQuhvbhLcSleQkRH//kABxHvAds
ZhG4QE8R6GdmTQS6xo2wuAlq3CAPZ7n1QRC/3Fg6UYB3QNynsPffpw2fP/fv
U/DJP1r97xPexS6rgj+3/zmUd958+iNO2K2M0qkA6QuZItd9AhKDXQtl4Qn6
L7+whvfvgPEJe9sUOwv2KY++NXHBRtGwxmFzQY8JdbzhdH8QDpG7m+XGR7O3
GHTrlBt4uFFvZDF301jeN/w2Q0sFEHvxJYhNfr3LLLXduIc0whbmkOZq009+
YHEntBWlkJNNaCkOTaZBJ7pcd0zGFXioOoXw9I7RleviGknLF8jDSXar0DcC
qTZlULD62PmFpmWjJeWb3lsby632l03qFk13RxBT/yqqrIt2C1aYdNAltQqK
S3zXCweV3c3LqPGSEN29Lb7VTNh3U/Kty9p+2hGcH66MogLtOPc33Cpd+C4a
NyHWvlFhHEkIvWZerNWJghYVtWW5dKHzK6g30EGMrSOyYnAlhwxmxS2M0CX1
zmBTQzpzBVJvF0yUmA4nusDSGqg88pplu/EacGp9pcPcbO/NLVqet8FRAdQO
3M1RG/mksXWn0V+fZAB27eES8O2SKuaCMf0W2HqMv3ftlOoC/Tl1u0x0pJGj
MZy3Cc2KfAVZljK6BpdRp1H7WgLCyW1yvd2a3D5vezUtsuB84IcXUuOtB4wU
VkpeU1suyrcuIkw1MPfbU5ucFL631e/YlcQ9nqt/pQAva8ypQZ6pHespKZKy
hQFOFvSVudt3Yl3+rMSiB6HIXkbwlve6RW0YbChH1XrxM7KwnqV4xwebaB4O
0c0PQZjrbfZaCCt0uqY1Z8m5gCN2BOfw4uTs2JDPVL1NWPwVlSNkjNUQ2Yip
2B8DIgYLylLTz0uIJf3+D99tz/UNbP5M2AghDJkncKJ9ZuKQAA9N1Xw/oYbh
Lg7GnhK6x91gKewLFl5v0FYALLLOqvqIIOa5wrxUdo1VHCtcfMYQlw75QlCd
cw1wAUpwYcr2WrifjMHsxSSrjLDxioDRc3vuSHbupmEcJZONS1gYAzwIN87c
aJAbVIPwnSDvi4w6+gd38VVXz5Uyvjtn75wXdq7N2C2ptpRN6SgNKrM+UW2y
UJlZvGOQQccA0875btKUTtK/TTu/3R0JOM/T4HMYI9wwOzvDdqZLPbNWjW4t
ri0aFvUrKx9LWfRc84whMm9GpthQZHqKsfplUs/YlHqYZ0URGrUFxr3kohN7
BlY9m8JDm2TEMBrci6h0Wr1PHQYramptkxL7C0mHMgQPXzlv3NzB6162VQk8
NxqE4QdWF+zlRHsDwaYlfPXcp0d14Wt0g50Li0Awv7FkH6pxGXeL2qRAn0/w
B89WsALRo+5Vwxyepj0SD71CzqROi9KUztzaltRLuU4yGXM5z6eimwgYygX9
hBLnCtwuQb1LUd8OlXgJseyQlHRrQVmqthvTbF+ySbweXcAFJFL1pP1Qilb4
axAT1bgDc0JSRr8JQd6hz0zeVvW1HesTksyTB9Aimcu6dr1P8hqwZLA2pMMo
tHUNFg5kaEa/qWEJt1DgnvJH2hRXMndekIesrBjnyLipqC3W7KqQc2CbfEkc
srzGdiOf5cse/4xKUSh23w7fXVxyJ/4j7p3nRUhD7X2aS7a/hnu15duDwhbA
za8YId27vh234TbdcOzwXmb4VqOShoABZZINLdUuC3RsSBHSQ+M9WI2JO6Jy
7qkOYh0Rppp7cEisThEojTcuZI/M16VrWLZMjQdiWORUPK3rp3eqg4hyw3nS
xo5ZDrr7Z254cz7cB7pXWFR8DYjBNLrXevFcxcq9IIlKXEE7V8tSVGw0qcZz
57rpQs/mCGBQVFPs8DS+s8MUpSYBZLroFnEbp6tBAY/PVAqhUNL60RZjTJQB
iD1eFBGTNuUb97k29gbwGNTVDkqXewMlRzdGk/RfXPD1cOBABOcXZLNVw7RW
Hg4DUaKp8vnU5pIjOW1ValgjQXPO3tiWMfcRV0cl3VVqsJEr7XlGxeN+Zy9W
cm19eS/LaxjiJHVqt32ByrttV3DByAtm8MeErD/N8PcWeLzSaauB3nWKkpJo
tb5PMSFm/V57LxRCOl/X2ClGuB/5Iy31/a6+xbCqClY+8ENR5i17faOVfbeV
MO+uOYcvE+IPczXRv0KWczkwEwNwl8I3qA3DS12qTvt/6f0ECt5aozscRj81
Ln19biHYbuAp/QGtHLRX3ny6syx+5OlOHj5d70J4ulTekBwPUGl1z/rF9kEj
MxjXl98aIuHcA1eOSbmSBlxyyCIXHiBzhe/M2dqhZtn90ZrWVubWUd9O9aIb
8dy3ZhMHv+m4iJGv+zD8pTbwy6HNZR4BrCN2E/jgiXiPsWzUTZ9dUqajoa9R
CTXr6+1LAnU+pue2dl8fEOczwFgV2lwnkJPuDz+QZ4XHpgu7lEa1fq4JWIcm
b2ksGBoKz8v2BgNQOd5OswU970dwGlfv2iq/vnrAg22czAlZd4sYHRHa1eWl
yiynH4csXLCOaHTjuN9vpUCn4hCMEjtFW039KWCzAfWBvwoNx2uZ9AufEwAy
CP4PY1UQfkdaAAA=

-->

</rfc>
