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

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

<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc docmapping="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-dnsop-nsec3-guidance-07" category="bcp" consensus="true">

  <front>
    <title abbrev="title">Guidance for NSEC3 parameter settings</title>

    <author initials="W." surname="Hardaker" fullname="Wes Hardaker">
      <organization>USC/ISI</organization>
      <address>
        <email>ietf@hardakers.net</email>
      </address>
    </author>
    <author initials="V." surname="Dukhovni" fullname="Viktor Dukhovni">
      <organization>Bloomberg, L.P.</organization>
      <address>
        <email>ietf-dane@dukhovni.org</email>
      </address>
    </author>

    <date year="2022" month="April" day="07"/>

    
    
    

    <abstract>


<t>NSEC3 is a DNSSEC mechanism providing proof of non-existence by
promising there are no names that exist between two domainnames within
a zone.  Unlike its counterpart NSEC, NSEC3 avoids directly disclosing
the bounding domainname pairs.  This document provides guidance on
setting NSEC3 parameters based on recent operational deployment
experience.</t>



    </abstract>


  </front>

  <middle>


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

<t>As with NSEC <xref target="RFC4035"/>, NSEC3 <xref target="RFC5155"/> provides proof of
non-existence that consists of signed DNS records establishing the
non-existence of a given name or associated Resource Record Type
(RRTYPE) in a DNSSEC <xref target="RFC4035"/> signed zone.  In the case of NSEC3,
however, the names of valid nodes in the zone are obfuscated through
(possibly multiple iterations of) hashing (currently only
SHA-1 is in use within the Internet).</t>

<t>NSEC3 also provides “opt-out support”, allowing for blocks of unsigned
delegations to be covered by a single NSEC3 record.  Use of the
opt-out feature allow large registries to only sign as many NSEC3
records as there are signed DS or other RRsets in the zone – with
opt-out, unsigned delegations don’t require additional NSEC3 records.
This sacrifices the tamper-resistance proof of non-existence offered
by NSEC3 in order to reduce memory and CPU overheads.</t>

<t>NSEC3 records have a number of tunable parameters that are specified
via an NSEC3PARAM record at the zone apex.  These parameters are the
hash algorithm, processing flags, the number of hash iterations and
the salt.  Each of these has security and operational considerations
that impact both zone owners and validating resolvers.  This document
provides some best-practice recommendations for setting the NSEC3
parameters.</t>

<section anchor="requirements-notation" title="Requirements Notation">

<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="nsec3-parameter-value-considerations" title="NSEC3 Parameter Value Considerations">

<t>The following sections describe recommendations for setting parameters
for NSEC3 and NSEC3PARAM.</t>

<section anchor="algorithms" title="Algorithms">

<t>The algorithm field is not discussed by this document.</t>

</section>
<section anchor="flags" title="Flags">

<t>The NSEC3PARAM flags field currently contains no flags, but individual
NSEC3 records contain the “Opt-Out” flag <xref target="RFC5155"/>, which specifies
whether or not that NSEC3 record provides proof of non-existence or
not.  In general, NSEC3 with the Opt-Out flag enabled should only be
used in large, highly dynamic zones with a small percentage of signed
delegations.  Operationally, this allows for fewer signature creations
when new delegations are inserted into a zone.  This is typically only
necessary for extremely large registration points providing zone
updates faster than real-time signing allows or when using
memory-constrained hardware.  Smaller zones, or large but relatively
static zones, are encouraged to use a flags value of 0 (zero) and take
advantage of DNSSEC’s proof-of-non-existence support.</t>

</section>
<section anchor="iterations" title="Iterations">

<t>NSEC3 records are created by first hashing the input domain and then
repeating that hashing algorithm a number of times based on the
iteration parameter in the NSEC3PARM and NSEC3 records.  The first
hash is typically sufficient to discourage zone enumeration performed
by “zone walking” an NSEC or NSEC3 chain.  Only determined parties
with significant resources are likely to try and uncover hashed
values, regardless of the number of additional iterations performed.
If an adversary really wants to expend significant CPU resources to
mount an offline dictionary attack on a zone’s NSEC3 chain, they’ll
likely be able to find most of the “guessable” names despite any
level of additional hashing iterations.</t>

<t>Most names published in the DNS are rarely secret or unpredictable.
They are published to be memorable, used and consumed by humans.  They
are often recorded in many other network logs such as email logs,
certificate transparency logs, web page links, intrusion detection
systems, malware scanners, email archives, etc.  Many times a simple
dictionary of commonly used domain names prefixes (www, ftp, mail,
imap, login, database, etc) can be used to quickly reveal a large
number of labels within a zone.  Because of this, there are increasing
performance costs yet diminishing returns associated with applying
additional hash iterations beyond the first.</t>

<t>Although Section 10.3 of <xref target="RFC5155"/> specifies upper bounds for the
number of hash iterations to use, there is no published guidance for
zone owners about good values to select.  Recent academic studies
have shown that NSEC3 hashing provides only moderate
protection <xref target="GPUNSEC3"/><xref target="ZONEENUM"/>.</t>

</section>
<section anchor="salt" title="Salt">

<t>NSEC3 records provide an additional salt value, which can be
combined with an FQDN to influence the resulting hash, but properties
of this extra salt are complicated.</t>

<t>In cryptography, salts generally add a layer of protection against
offline, stored dictionary attacks by combining the value to be hashed
with a unique “salt” value. This prevents adversaries from building up
and remembering a single dictionary of values that can translate a
hash output back to the value that it derived from.</t>

<t>In the case of DNS, the situation is different because the hashed
names placed in NSEC3 records are always implicitly “salted” by
hashing the fully-qualified domain name from each zone. Thus, no
single pre-computed table works to speed up dictionary attacks
against multiple target zones. An attacker is always required to
compute a complete dictionary per zone, which is expensive in both
storage and CPU time.</t>

<t>To understand the role of the additional NSEC3 salt field, we have to
consider how a typical zone walking attack works. Typically, the attack
has two phases - online and offline. In the online phase, an attacker
“walks the zone” by enumerating (almost) all hashes listed in NSEC3
records and storing them for the offline phase. Then, in the offline
cracking phase, the attacker attempts to crack the underlying hash. In
this phase, the additional salt value raises the cost of the attack
only if the salt value changes during the online phase of the
attack. In other words, an additional, constant salt value does not
change the cost of the attack.</t>

<t>Changing a zone’s salt value requires the construction of a complete
new NSEC3 chain.  This is true both when resigning the entire zone at
once, or when incrementally signing it in the background where the new
salt is only activated once every name in the chain has been
completed. As a result, re-salting is a very complex operation, with
significant CPU time, memory, and bandwidth consumption. This makes
very frequent re-salting impractical, and renders the additional salt
field functionally useless.</t>

</section>
</section>
<section anchor="recommendations-for-deploying-and-validating-nsec3-records" title="Recommendations for Deploying and Validating NSEC3 Records">

<t>The following subsections describe recommendations for the different
operating realms within the DNS.</t>

<section anchor="best-practice-for-zone-publishers" title="Best-practice for Zone Publishers">

<t>First, if the operational or security features of NSEC3 are not
needed, then NSEC SHOULD be used in preference to NSEC3. NSEC3
requires greater computational power (see <xref target="computationalburdens"/>)
for both authoritative servers and validating clients.  Specifically,
there is a nontrivial complexity in finding matching NSEC3 records to
randomly generated prefixes within a DNS zone.  NSEC mitigates this
concern.  If NSEC3 must be used, then an iterations count of 0 MUST be
used to alleviate computational burdens.  Note that extra iteration
counts other than 0 increase the impact of CPU-exhausting DoS attacks,
and also increase the risk of interoperability problems.</t>

<t>Note that deploying NSEC with minimally covering NSEC records
<xref target="RFC4470"></xref> also incurs a cost, and zone owners should measure the
computational difference in deploying both RFC4470 or NSEC3.</t>

<t>In short, for all zones, the recommended NSEC3 parameters are as shown
below:</t>

<figure><artwork><![CDATA[
; SHA-1, no extra iterations, empty salt:
;
bcp.example. IN NSEC3PARAM 1 0 0 -
]]></artwork></figure>

<t>For small zones, the use of opt-out based NSEC3 records is NOT
RECOMMENDED.</t>

<t>For very large and sparsely signed zones, where the majority of the
records are insecure delegations, opt-out MAY be used.</t>

<t>Operators are encouraged to forgo using a salt entirely by using a
zero-length salt value instead (represented as a “-“ in the
presentation format).</t>

<t>If salts are used, note that since the NSEC3PARAM RR is not used by
validating resolvers (see <xref target="RFC5155"></xref> section 4), the iterations and
salt parameters can be changed without the need to wait for RRsets to
expire from caches.  A complete new NSEC3 chain needs to be
constructed and the zone resigned.</t>

</section>
<section anchor="recommendation-for-validating-resolvers" title="Recommendation for Validating Resolvers">

<t>Because there has been a large growth of open (public) DNSSEC
validating resolvers that are subject to compute resource constraints
when handling requests from anonymous clients, this document
recommends that validating resolvers change their behavior with
respect to large iteration values.  Specifically, validating
resolver operators and validating resolver software implementers are
encouraged to continue evaluating NSEC3 iteration count deployments
and lower their default acceptable limits over time.  Similarly, because
treating a high iterations count as insecure leaves zones subject to
attack, validating resolver operators and validating resolver software
implementers are further encouraged to lower their default and acceptable
limit for returning SERVFAIL when processing NSEC3 parameters
containing large iteration count values.  See
<xref target="deploymentmeasurements"/> for measurements taken near the time of
publication and potential starting points.</t>

<t>Validating resolvers MAY return an insecure response to their clients
when processing NSEC3 records with iterations larger
than 0. 
Note also that a validating resolver returning an insecure response
MUST still validate the signature over the NSEC3 record to ensure
the iteration count was not altered since record publication (see
<xref target="RFC5155"/> section 10.3).</t>

<t>Validating resolvers MAY also return a SERVFAIL response when
processing NSEC3 records with iterations larger than 0.  Validating
resolvers MAY choose to ignore authoritative server responses with
iteration counts greater than 0, which will likely result in
returning a SERVFAIL to the client when no acceptable responses are
received from authoritative servers.</t>

<t>Validating resolvers returning an insecure or SERVFAIL answer to their
client after receiving and validating an unsupported NSEC3 parameter
from the authoritative server(s) SHOULD return an Extended DNS
Error (EDE) {RFC8914} EDNS0 option of value (RFC EDITOR: TBD).
Validating resolvers that choose to ignore a response with an
unsupported iteration count (and do not validate the signature) MUST
NOT return this EDE option.</t>

<t>Note that this specification updates <xref target="RFC5155"></xref> by significantly
decreasing the requirements originally specified in Section 10.3 of
<xref target="RFC5155"></xref>. See the Security Considerations for arguments on how to
handle responses with non-zero iteration count.</t>

</section>
<section anchor="recommendation-for-primary-secondary-relationships" title="Recommendation for Primary / Secondary Relationships">

<t>Primary and secondary authoritative servers for a zone that are not
being run by the same operational staff and/or using the same software
and configuration must take into account the potential differences in
NSEC3 iteration support.</t>

<t>Operators of secondary services should advertise the parameter limits
that their servers support. Correspondingly, operators of primary
servers need to ensure that their secondaries support the NSEC3
parameters they expect to use in their zones.  To ensure reliability,
after primaries change their iteration counts, they should query their
secondaries with known non-existent labels to verify the secondary
servers are responding as expected.</t>

</section>
</section>
<section anchor="security-considerations" title="Security Considerations">

<t>This entire document discusses security considerations with various
parameters selections of NSEC3 and NSEC3PARAM fields.</t>

<t>The point where a validating resolver returns insecure vs the point
where it returns SERVFAIL must be considered carefully.  Specifically,
when a validating resolver treats a zone as insecure above a
particular value (say 100) and returns SERVFAIL above a higher point
(say 500), it leaves the zone subject to attacker-in-the-middle
attacks as if it was unsigned between these values. Thus, validating
resolver operators and software implementers SHOULD set the point
above which a zone is treated as insecure for certain values of NSEC3
iterations counts to the same as the point where a validating resolver
begins returning SERVFAIL.</t>

</section>
<section anchor="operational-considerations" title="Operational Considerations">

<t>This entire document discusses operational considerations with various
parameters selections of NSEC3 and NSEC3PARAM fields.</t>

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

<t>This document requests a new allocation in the “Extended DNS Error
Codes” of the “Domain Name System (DNS) Parameters” registration
table with the following characteristics:</t>

<t><list style="symbols">
  <t>INFO-CODE: (RFC EDITOR: TBD)</t>
  <t>Purpose: Unsupported NSEC3 iterations value</t>
  <t>Reference: (RFC EDITOR: this document)</t>
</list></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="RFC5155" target='https://www.rfc-editor.org/info/rfc5155'>
<front>
<title>DNS Security (DNSSEC) Hashed Authenticated Denial of Existence</title>
<author initials='B.' surname='Laurie' fullname='B. Laurie'><organization /></author>
<author initials='G.' surname='Sisson' fullname='G. Sisson'><organization /></author>
<author initials='R.' surname='Arends' fullname='R. Arends'><organization /></author>
<author initials='D.' surname='Blacka' fullname='D. Blacka'><organization /></author>
<date year='2008' month='March' />
<abstract><t>The Domain Name System Security (DNSSEC) Extensions introduced the NSEC resource record (RR) for authenticated denial of existence. This document introduces an alternative resource record, NSEC3, which similarly provides authenticated denial of existence.  However, it also provides measures against zone enumeration and permits gradual expansion of delegation-centric zones.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='5155'/>
<seriesInfo name='DOI' value='10.17487/RFC5155'/>
</reference>



<reference  anchor="RFC4035" target='https://www.rfc-editor.org/info/rfc4035'>
<front>
<title>Protocol Modifications for the DNS Security Extensions</title>
<author initials='R.' surname='Arends' fullname='R. Arends'><organization /></author>
<author initials='R.' surname='Austein' fullname='R. Austein'><organization /></author>
<author initials='M.' surname='Larson' fullname='M. Larson'><organization /></author>
<author initials='D.' surname='Massey' fullname='D. Massey'><organization /></author>
<author initials='S.' surname='Rose' fullname='S. Rose'><organization /></author>
<date year='2005' month='March' />
<abstract><t>This document is part of a family of documents that describe the DNS Security Extensions (DNSSEC).  The DNS Security Extensions are a collection of new resource records and protocol modifications that add data origin authentication and data integrity to the DNS.  This document describes the DNSSEC protocol modifications.  This document defines the concept of a signed zone, along with the requirements for serving and resolving by using DNSSEC.  These techniques allow a security-aware resolver to authenticate both DNS resource records and authoritative DNS error indications. </t><t> This document obsoletes RFC 2535 and incorporates changes from all updates to RFC 2535.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4035'/>
<seriesInfo name='DOI' value='10.17487/RFC4035'/>
</reference>



<reference  anchor="RFC4470" target='https://www.rfc-editor.org/info/rfc4470'>
<front>
<title>Minimally Covering NSEC Records and DNSSEC On-line Signing</title>
<author initials='S.' surname='Weiler' fullname='S. Weiler'><organization /></author>
<author initials='J.' surname='Ihren' fullname='J. Ihren'><organization /></author>
<date year='2006' month='April' />
<abstract><t>This document describes how to construct DNSSEC NSEC resource records that cover a smaller range of names than called for by RFC 4034.  By generating and signing these records on demand, authoritative name servers can effectively stop the disclosure of zone contents otherwise made possible by walking the chain of NSEC records in a signed zone.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4470'/>
<seriesInfo name='DOI' value='10.17487/RFC4470'/>
</reference>




    </references>

    <references title='Informative References'>

<reference anchor="GPUNSEC3" >
  <front>
    <title>GPU-Based NSEC3 Hash Breaking</title>
    <author initials="M." surname="Wander" fullname="M. Wander">
      <organization></organization>
    </author>
    <author initials="L." surname="Schwittmann" fullname="L. Schwittmann">
      <organization></organization>
    </author>
    <author initials="C." surname="Boelmann" fullname="C. Boelmann">
      <organization></organization>
    </author>
    <author initials="T." surname="Weis" fullname="T. Weis">
      <organization></organization>
    </author>
    <date year="2014"/>
  </front>
  <seriesInfo name="DOI" value="10.1109/NCA.2014.27"/>
</reference>
<reference anchor="ZONEENUM" >
  <front>
    <title>An efficient DNSSEC zone enumeration algorithm</title>
    <author initials="Z." surname="Wang" fullname="Zheng Wang">
      <organization></organization>
    </author>
    <author initials="L." surname="Xiao" fullname="Liyuan Xiao">
      <organization></organization>
    </author>
    <author initials="R." surname="Wang" fullname="Rui Wang">
      <organization></organization>
    </author>
    <date year="n.d."/>
  </front>
</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>




    </references>


<section anchor="deploymentmeasurements" title="Deployment measurements at time of publication">

<t>At the time of publication, setting an upper limit of 100 iterations
for treating a zone as insecure is interoperable without significant
problems, but at the same time still enables CPU-exhausting DoS
attacks.</t>

<t>At the time of publication, returning SERVFAIL beyond 500 iterations
appears to be interoperable without significant problems.</t>

</section>
<section anchor="computationalburdens" title="Computational burdens of processing NSEC3 iterations">

<t>The queries per second (QPS) of authoritative servers will decrease due
to computational overhead when processing DNS requests for zones
containing higher NSEC3 iteration counts.  The table (<xref target="qps"/>) below
shows the drop in QPS for various iteration counts.</t>

<figure><artwork><![CDATA[
| Iterations | QPS [% of 0 iterations QPS] |
|------------+-----------------------------|
|          0 | 100 %                       |
|         10 | 89 %                        |
|         20 | 82 %                        |
|         50 | 64 %                        |
|        100 | 47 %                        |
|        150 | 38 %                        |
]]></artwork></figure>

</section>
<section title="Acknowledgments" anchor="qps">

<t>The authors would like to thank the dns-operations discussion
participants, which took place on mattermost hosted by DNS-OARC.</t>

<t>Additionally, the following people contributed text or review comments
to the draft:</t>

<t><list style="symbols">
  <t>Vladimír Čunát</t>
  <t>Tony Finch</t>
  <t>Paul Hoffman</t>
  <t>Alexander Mayrhofer</t>
  <t>Matthijs Mekking</t>
  <t>Florian Obser</t>
  <t>Petr Špaček</t>
  <t>Paul Vixie</t>
  <t>Tim Wicinski</t>
</list></t>

</section>
<section anchor="github-version-of-this-document" title="Github Version of This Document">

<t>While this document is under development, it can be viewed, tracked,
issued, pushed with PRs, … here:</t>

<t>https://github.com/hardaker/draft-hardaker-dnsop-nsec3-guidance</t>

</section>
<section anchor="implementation-notes" title="Implementation Notes">

<t>The following implementations have implemented the guidance in this
document.  They have graciously provided notes about the details of
their implementation below.</t>

<section anchor="opendnssec" title="OpenDNSSEC">

<t>The OpenDNSSEC configuration checking utility will alert the user
about nsec3 iteration values larger than 100.</t>

</section>
<section anchor="powerdns" title="PowerDNS">

<t>PowerDNS 4.5.2 changed the default value of nsec3-max-iterations to 150.</t>

</section>
<section anchor="knot-dns-and-knot-resolver" title="Knot DNS and Knot Resolver">

<t>Knot DNS 3.0.6 warns when signing with more than 20 NSEC3 iterations.
Knot Resolver 5.3.1 treats NSEC3 iterations above 150 as insecure.</t>

</section>
<section anchor="google-public-dns-resolver" title="Google Public DNS Resolver">

<t>Google Public DNS treats NSEC3 iterations above 100 as insecure since
September 2021.</t>

</section>
<section anchor="google-cloud-dns" title="Google Cloud DNS">

<t>Google Cloud DNS uses 1 iteration and 64-bits of fixed random salt for
all zones using NSEC3. These parameters cannot be adjusted by users.</t>

</section>
</section>


  </back>

<!-- ##markdown-source:
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
KbWpKbDJihPpUGNb900Js9274r1zFEgrkNa7Ob3+8Pbo7J1w/t4h/WYyUfGw
kJ5tuojopHMUa9WnT51hYipkGz0+sgD9r/i4h+LbCDvlYyo/VxJl8VoadlIC
6uAVRK1rOoygApMPwBDsH7b5O0G67JRpTrIX+Tpd2YxdHOgrBpXaroOUQ5gr
9DyBtVAp4TMTLSSDGYLE/lazdprfJpJi1gXqgwwaR9vYNErnjeK5y+FdGj7z
KEijaoDX0TIPRnIAtYaotSKpIp3V9tRMeUAN+re93u7eL+mZ952U3XlVq2tS
rfonVauTanuorYbLZkvvxZJQkCe6s4W8t1LIQmpDPV3VIOulftIDWSGe8EgZ
CoOpngG7bcZ+oPiRhBKYVQ92OgkopOmeXdsq3F5vwJ+2K3u7AyGkWmFMER7k
vhB7t4pSmXnNqqClU3XZ81DM1hTxGPUpl1QsKVe4W6TdDXupXuvi7fRjLbQU
WVKdVhVE3D09Od3T5F5ffX3w6lGf4tE+MbDY0RCGtIvneHR2e3l9qG/fnMDv
tmpCWrVPHKDnc9IsV/19bYbGLqlh5jk8tkfcHpdCim7JxM1x6sVWouSD+oKf
hZQpeaF0Ht/xq+m6fzSZr9XMpnOcSOp7V4Og7IWT1kF7RYt44saxi2qnnxAA
8zw3qfAeXoCROqJaNHGBgvuXyFjMPuxGuPDVDSKzm7r7LMe6qlBOgbc/JwE8
nuDzNd8PwKxLV4JwpVeY1Lcvba+8WVqhdy2pop7B1LI/NIXcnKEG32rYe0Ce
mNNJ8ew5HYa26uX32vwaDzvnbtHE3XGZTEkpXtjIxFVoaJeDuiqOqIDaJCfd
hYSulKAbJ+1eaXd8PTDWi3yGUbtY1Hb3BISwqOhclK2SXtISsG4lJqOuAtEY
31+yFFWrNCxRcskXejCxCOdsO/nW+2tyL4t67cIYiTlL4eKq1NzXt+0KKIxc
rMlRwzMKiUy0zoCTbgJzvAEWNQRCXK0jpvVFZSe9K+j0rncppE7HqRCQivp5
9JFkgFYfps2/3JQxIe5MiojPxZCSa56xg9reh0u3uXrXE4fXEUXae0gONt/X
qRxSxlu9W6+VyQEEsZ1b9kQnqYYx7/NUo0dU70P0YYxUMtLV7Wtt/khdoiQ4
3CWDkvgE6Um/i3Pd9vWZRIcUun3GbKaeLqYqvlOSNcj2CfqDWQPQ9vdiY3VD
sjiOOTl5EW+Ex7zGmBHtJpLxtiDsVV/pCGLsijGej+P19XQkSQLOaQpiS+0F
4PZ2P987TRRXTsj+cQm0vdyJqRKFcM8esjdhHlFl3L6Xy0p97REe0g0KKorj
qWXyGLVZqIRETRjzTM8Bfsl1AK0Lukb4tEzgkOjdkPtno+Lz93T/XwLjmT47
ujjaLlQrTVtaG+4x0EW4mKnTVcg+ddFMXdQxXdjfaS/1nMjx6QVp9Yavouhd
vLzXXT3Fy/27eiqem6bbjV3nHghIrXVAFHh/Fg6V+kKfXby9HB9fnpwePmVD
eHzVVCVYz6F+/4Sx9RyAfQNvX6e2+cZkgw7Cnvykgw51SI0nbfE2LNUoV0h5
NqgbPj37TLWn1FHdL+r6o0btnVrinnw9RCpUvAYM6G2Fe/O9mvwJoPCvHNr2
b9Qz/4Cho1kq9YPlXkS8y85xIRcjueqSi6ZhSx86AcXkl/e0pbSOl2deD/ck
95rTryX+ofj9dvYzePiWHny8jjEssXoO8enZ1rMPySeUXSmbljYRAb37pyt4
NJ00buVlXB9F5opgh6+1La728Cf+NOFJd0F+vpNaXD7Shn6PIWL81qZPuhop
MbX76dPPJR3haG5xK2p3C9DNoFEKauyDF4no8nQ66Yr/tXdzFH/QqB9+I6ch
PS3i6x/1X2XAuPfPF+Nf+icO0O0/+/iDvPw3evs/mwMOaMBXX3/2/ScDXvCA
F79+wGsa8LtXv3oASf9X/erLXz+AV3j51S8NUJ8O9TOYU360+C87p2DZWd2D
/v6vn2DZ6LVXcBUpNnYeKT6OMiKEuZ0tpDMoN/DZjeG4TCf513icHU0hlxBm
RRi3CSqkrEXgLUTFlYZJqSTp2vs7uZxDgqzoXkPFFz+XPsT7xfDy8eXR9TFB
RnswnO5+dBmgtJ5ux2R8XjiVWzb2I9/grOy9Q46SEovKAB8dGzyaM8WH3Mzc
6m//U+m//0dT/O2/a3x364u1fuuKbEm5wjS5/tbP5ytUwl/oo9x+5J/E6nOz
rpYeqQHfnkP6pfsp6HN7xz+5/UK/zRHxAObLaeBXrmxd6f/9r9L8/T/tXZr3
g/voKMXcupX+Dgoqwp0j9X8D/Gqm+gNgIpb2nIJPUrtafbd0dB9okJddkGsg
wJR7BHJJXzKni+cLpAk+t6RbI/igXAgNfVE2fCmQc+vVNQw0mUz4JyHQ0LKu
y3D4/PmCJZpAkc/Tr6ify6/G059bfznOlCJxN4EMqvWfHL+7wTvxl1cd6ZMT
ivbWYvwZjWp/6SE3a2XUAtsjlMrX6ZbgjE950uVGtr8FTOYUFSpWTkMZGQil
PgdZK+I5Bcvc/b1R9WZLK7d2mlrOTxnfTW5jFdiQH4gIrKMnRwSDrh3AQda/
or40tYBU+qRfTV5PXrTHRbIfaVi3PwcQK6zMx/HwTiggRKb9IzVs+OIzEhX/
kY5zlGqfvZzsT34HPk9FBGegdItFjn29lL8FQeUmuEzUYFL9evJycpBKmidI
JOSd8K3HSkTQb7ynO3R8WSJjqTpBnz77BwvsDxaQPq66sWXNtxuxjxcHg1WP
c99IA05tfkP2DPqgZ0XS5O9ejadO4JZuG6AG45sI8QIceHB7thv7KfEaxu3m
zwDpNrbnMtLMfmoSIJIPQbX/ByhZy6z5QQAA

-->

</rfc>

