<?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.30 (Ruby 2.6.10) -->
<?rfc docmapping="yes"?>
<?rfc comments="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-nfsv4-uncacheable-files-04" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <front>
    <title abbrev="Uncacheable File">Adding an Uncacheable File Data Attribute to NFSv4.2</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-nfsv4-uncacheable-files-04"/>
    <author initials="T." surname="Haynes" fullname="Thomas Haynes">
      <organization>Hammerspace</organization>
      <address>
        <email>loghyr@gmail.com</email>
      </address>
    </author>
    <date/>
    <area>General</area>
    <workgroup>Network File System Version 4</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 57?>

<t>Network File System version 4.2 (NFSv4.2) clients commonly perform
client-side caching of file data in order to improve performance.
On some systems, applications may influence client data caching
behavior, but there is no standardized mechanism for a server or
administrator to indicate that particular file data should not be
cached by clients for reasons of performance or correctness. This
document introduces a new file data caching attribute for NFSv4.2.
Files marked with this attribute are intended to be accessed with
client-side caching of file data suppressed, in order to support
workloads that require predictable data visibility. This document
extends NFSv4.2 (see RFC7862).</t>
    </abstract>
    <note>
      <name>Note to Readers</name>
      <?line 71?>

<t>Discussion of this draft takes place
on the NFSv4 working group mailing list (nfsv4@ietf.org),
which is archived at
<eref target="https://mailarchive.ietf.org/arch/search/?email_list=nfsv4"/>. Source
code and issues list for this draft can be found at
<eref target="https://github.com/ietf-wg-nfsv4/uncacheable-files"/>.</t>
      <t>Working Group information can be found at <eref target="https://github.com/ietf-wg-nfsv4"/>.</t>
    </note>
  </front>
  <middle>
    <?line 82?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Clients of remote filesystems commonly perform client-side caching
of file data in order to improve performance.  Such caching may
include retaining data read from the server to satisfy subsequent
READ requests, as well as retaining data written by applications
in order to delay or combine WRITE requests before transmitting
them to the server.  While these techniques are effective for many
workloads, they may be unsuitable for workloads that require
predictable data visibility or involve concurrent modification of
shared files by multiple clients.</t>
      <t>In some cases, Network File System version 4.2 (NFSv4.2) (see
<xref target="RFC7862"/>)  mechanisms such as file delegations can reduce the
impact of concurrent access.  However, delegations are not always
available or effective, particularly for workloads with frequent
concurrent writers or rapidly changing access patterns.</t>
      <t>There have been prior efforts to bypass file data caching in order to
address these issues.  In High-Performance Computing (HPC) workloads,
file data caching is often bypassed to improve predictability and to
avoid read-modify-write hazards when multiple clients write disjoint
byte ranges of the same file.</t>
      <t>Applications on some systems can request bypass of the client data
cache by opening files with the O_DIRECT flag (see <xref target="OPEN-O_DIRECT"/>).
However, this approach has limitations, including the requirement
that each application be explicitly modified and the lack of a
standardized mechanism for communicating this intent between servers
and clients.</t>
      <t>This document introduces the uncacheable file data attribute to
NFSv4.2.  This <bcp14>OPTIONAL</bcp14> attribute allows a server to indicate that
client-side caching of file data for a particular file is unsuitable.
When both the client and the server support this attribute, the
client is advised to suppress client-side caching of file data for
that file, in accordance with the semantics defined in this document.</t>
      <t>The uncacheable file data attribute is read-write, applies on a
per-file basis, and has a data type of boolean.</t>
      <t>Support for the uncacheable file data attribute is specific to the
exported filesystem and may differ between filesystems served by the
same server.  A client can determine whether the attribute is
supported for a given file by issuing a GETATTR request and examining
the returned attribute list.</t>
      <t>The uncacheable file data attribute applies only to regular files
(NF4REG).  Attempts to query or set this attribute on objects of
other types <bcp14>MUST</bcp14> result in an error of NFS4ERR_INVAL. Since the
uncacheable file data attribute applies only to regular files,
attempts to apply it to other object types represent an invalid use
of the attribute.</t>
      <t>Using the process described in <xref target="RFC8178"/>, the revisions in this
document extend NFSv4.2 <xref target="RFC7862"/>.  They are built on top of the
external data representation (XDR) <xref target="RFC4506"/> generated from
<xref target="RFC7863"/>.</t>
      <section anchor="definitions">
        <name>Definitions</name>
        <dl>
          <dt>client-side caching of file data</dt>
          <dd>
            <t>The retention of file data by a client in a local data cache, commonly
referred to as the page cache, for the purpose of satisfying subsequent
READ requests or delaying transmission of WRITE data to the server.</t>
          </dd>
          <dt>write-behind caching</dt>
          <dd>
            <t>A form of file data caching in which WRITE data is retained by the
client and transmission of the data to the server is delayed in order
to combine multiple WRITE operations or improve efficiency.</t>
          </dd>
          <dt>direct I/O</dt>
          <dd>
            <t>An access mode in which file data is transferred between application
buffers and the underlying storage without populating or consulting
the client's file data cache.  Direct I/O suppresses both read caching
and write-behind caching of file data.</t>
          </dd>
          <dt>write hole</dt>
          <dd>
            <t>A write hole is an instance of data corruption that arises when
multiple clients modify disjoint byte ranges within the same encoded
data block without having a consistent view of the existing contents.
This can result in stale data overwriting newer updates, particularly
in environments that use erasure encoding or striped storage.
(Adapted from <xref target="I-D.haynes-nfsv4-flexfiles-v2"/>.)</t>
          </dd>
        </dl>
        <t>This document assumes familiarity with the NFSv4 protocol operations,
error codes, object types, and attributes as defined in <xref target="RFC8881"/>.</t>
      </section>
      <section anchor="requirements-language">
        <name>Requirements Language</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?>

</section>
    </section>
    <section anchor="client-side-caching-of-file-data">
      <name>Client-Side Caching of File Data</name>
      <t>The uncacheable file data attribute advises the client to bypass
its page cache for a file in certain cases.  These include forms
of client-side caching of file data such as write-behind caching,
in which multiple pending WRITEs are combined and transmitted to
the server at a later time for efficiency.  The uncacheable file
data attribute inhibits such behavior with an effect similar to
that of using the O_DIRECT flag with the open call (<xref target="OPEN-O_DIRECT"/>).</t>
      <t>While similar in intent to O_DIRECT, the uncacheable file data
attribute applies at the protocol level and therefore may influence
client behavior beyond application-requested direct I/O semantics.</t>
      <t>When honoring the uncacheable file data attribute, clients <bcp14>SHOULD</bcp14>
ensure that file-associated metadata used to make I/O decisions
(such as file size or timestamps) is revalidated before exposing
cached state to applications. Reuse of stale metadata may otherwise
lead applications to make decisions based on outdated file state
even when file data caching itself has been suppressed.</t>
      <t>The intent of this attribute is to allow a server or administrator
to indicate that client-side caching of file data for a particular
file is unsuitable.  The server is often in a better position than
individual clients to determine sharing patterns, access behavior,
or correctness requirements associated with a file.  By exposing
this information via an attribute, the server can advise clients
to suppress file data caching in a consistent manner.</t>
      <t>One important use case for this attribute arises in connection with
High-Performance Computing (HPC) workloads.  These workloads often
involve large data transfers and concurrent access by multiple
clients.  In such environments, client-side caching of file data
can introduce unpredictable latency or correctness hazards when
data is buffered and flushed at a later time.</t>
      <t>Another aspect of such workloads is the need to support concurrent
writers to shared files.  When application data spans a data block
in a client cache, delayed transmission of WRITE data can result
in clients modifying stale data and overwriting updates written by
others.  Prompt transmission of WRITE data enables the prompt
detection of write holes and reduces the risk of data corruption.</t>
      <section anchor="non-goals">
        <name>Non-Goals</name>
        <t>This attribute does not require clients to provide strict coherency,
does not replace existing NFS cache consistency mechanisms, and
does not mandate any specific client implementation strategy.  It
provides advisory guidance intended to reduce latency and correctness
risks in selected workloads.</t>
      </section>
      <section anchor="sec_files">
        <name>Uncacheable File Data</name>
        <t>When a file object is marked as uncacheable file data, the attribute
advises the client that client-side caching of file data for the
file is unsuitable.  In particular, the client is advised to transmit
modifications to the file promptly rather than retaining them in a
local data cache.  Note that a client that does not query this
attribute cannot be expected to observe the behavior described in
this section.</t>
        <t>For uncacheable file data, the client is advised not to retain file
data in its local data cache for the purpose of satisfying subsequent
READ requests or delaying transmission of WRITE data.  In such
cases, READ operations bypass the client data cache, and WRITE data
is not retained for read-after-write satisfaction or for the purpose
of combining multiple WRITE requests.</t>
        <t>Caching of unstably written data used to reissue WRITEs lost because
of server failure prior to COMMIT is not affected by the advice
provided by the uncacheable file data attribute.  This is because
the server is made aware of the WRITE operation without the sort
of delays introduced by write-behind caching.</t>
        <t>Suppressing read caching in addition to suppressing write-behind
caching reduces the risk of stale-data overwrite in multi-writer
workloads.  If a client retains cached READ data while other clients
concurrently modify disjoint byte ranges of the same file, the
client may perform a read-modify-write operation using stale data
and overwrite updates written by others.  This risk exists even
when WRITE operations are transmitted promptly.</t>
        <t>Disabling READ caching allows clients to observe the most recent
data prior to modification and reduces read-modify-write hazards
for shared files.  This behavior is consistent with direct I/O
semantics such as those provided by the O_DIRECT flag in Linux and
the directio/forcedirectio mechanisms in Solaris.</t>
        <t>If the fattr4_uncacheable_file_data attribute is not set when a
file is opened and is changed while the file is open, the client
is not expected to retroactively alter its caching behavior.  A
client may choose to flush cached data and apply the advice to
subsequent I/O, but such behavior is not required until the file
is closed and reopened.</t>
        <t>The presence of the uncacheable file data attribute does not
invalidate file delegations.  A server that wishes to ensure prompt
client I/O may choose not to issue write delegations for files
marked as uncacheable, but clients are not required to suppress
delegations solely due to the presence of this attribute.</t>
      </section>
    </section>
    <section anchor="sec_setting">
      <name>Setting the Uncacheable File Data Attribute</name>
      <t>The uncacheable file data attribute provides a mechanism by which
applications that do not support O_DIRECT can request DIRECT-I/O-like
semantics for file access.  In particular, the attribute allows a
server to advise clients that client-side caching of file data for
a file is unsuitable, including both read caching and write-behind
caching.</t>
      <t>Suppressing read caching is necessary in addition to suppressing
write-behind caching to avoid read-modify-write hazards in multi-writer
workloads.  If clients retain cached READ data while other clients
concurrently modify disjoint byte ranges of the same file, stale
cached data may be merged with new WRITE data and overwrite updates
written by others.  This risk exists even when WRITE data is
transmitted promptly and is not addressed by suppressing write-behind
caching alone.</t>
      <t>One possible deployment model is for a server or administrator to
configure a mount (see <xref target="MOUNT"/>) option such that newly created
files under a given export are marked as uncacheable file data.  In
such a configuration, the NFSv4.2 client could use SETATTR to set
the fattr4_uncacheable_file_data attribute at file creation time.</t>
      <t>This approach is conceptually similar in intent to the Solaris forcedirectio
mount option (see <xref target="SOLARIS-FORCEDIRECTIO"/>), but differs in scope
and visibility in that it allows DIRECT-I/O-like behavior to be
applied without requiring changes to individual applications.
However, unlike the Solaris option, the NFSv4.2 attribute is visible
to all clients accessing the file and is intended to convey server-side
knowledge or policy in a distributed environment.</t>
    </section>
    <section anchor="implementation-status">
      <name>Implementation Status</name>
      <t>Note to RFC Editor: please remove this section prior to publication.</t>
      <t>There is a prototype Hammerspace server which implements the
uncacheable file data attribute and a prototype Linux client which
treats the attribute as an indication to use O_DIRECT-like behavior
for file access and to revalidate file-associated metadata before
exposing cached state.</t>
      <t>For the prototype, all files created under the mount
point have the fattr4_uncacheable_file_data set to be true.</t>
      <t>Experience with the prototype indicates that the uncacheable file
data attribute can provide many of the practical benefits of O_DIRECT
without requiring application modification. For applications that
issue well-formed I/O requests, this approach has been observed to
improve performance in many cases, while also reducing memory
pressure and CPU utilization in the NFS client.</t>
    </section>
    <section anchor="xdr-for-uncacheable-attribute">
      <name>XDR for Uncacheable Attribute</name>
      <sourcecode type="xdr"><![CDATA[
///
/// typedef bool            fattr4_uncacheable_file_data;
///
/// const FATTR4_UNCACHEABLE_FILE_DATA       = 87;
///
]]></sourcecode>
    </section>
    <section anchor="extraction-of-xdr">
      <name>Extraction of XDR</name>
      <t>This document contains the external data representation (XDR)
<xref target="RFC4506"/> description of the uncacheable file attribute.  The XDR
description is presented in a manner that facilitates easy extraction
into a ready-to-compile format. To extract the machine-readable XDR
description, use the following shell script:</t>
      <sourcecode type="shell"><![CDATA[
<CODE BEGINS>
#!/bin/sh
grep '^ *///' $* | sed 's?^ */// ??' | sed 's?^ *///$??'
<CODE ENDS>
]]></sourcecode>
      <t>For example, if the script is named 'extract.sh' and this document is
named 'spec.txt', execute the following command:</t>
      <sourcecode type="shell"><![CDATA[
<CODE BEGINS>
sh extract.sh < spec.txt > uncacheable_prot.x
<CODE ENDS>
]]></sourcecode>
      <t>This script removes leading blank spaces and the sentinel sequence '///'
from each line. XDR descriptions with the sentinel sequence are embedded
throughout the document.</t>
      <t>Note that the XDR code contained in this document depends on types from
the NFSv4.2 nfs4_prot.x file (generated from <xref target="RFC7863"/>).  This includes
both nfs types that end with a 4, such as offset4, length4, etc., as
well as more generic types such as uint32_t and uint64_t.</t>
      <t>While the XDR can be appended to that from <xref target="RFC7863"/>, the code snippets
should be placed in their appropriate sections within the existing XDR.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The attribute does not introduce new authorization mechanisms or
alter existing access control semantics; existing NFSv4.2 security
mechanisms continue to apply.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <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="RFC4506">
          <front>
            <title>XDR: External Data Representation Standard</title>
            <author fullname="M. Eisler" initials="M." role="editor" surname="Eisler"/>
            <date month="May" year="2006"/>
            <abstract>
              <t>This document describes the External Data Representation Standard (XDR) protocol as it is currently deployed and accepted. This document obsoletes RFC 1832. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="67"/>
          <seriesInfo name="RFC" value="4506"/>
          <seriesInfo name="DOI" value="10.17487/RFC4506"/>
        </reference>
        <reference anchor="RFC7862">
          <front>
            <title>Network File System (NFS) Version 4 Minor Version 2 Protocol</title>
            <author fullname="T. Haynes" initials="T." surname="Haynes"/>
            <date month="November" year="2016"/>
            <abstract>
              <t>This document describes NFS version 4 minor version 2; it describes the protocol extensions made from NFS version 4 minor version 1. Major extensions introduced in NFS version 4 minor version 2 include the following: Server-Side Copy, Application Input/Output (I/O) Advise, Space Reservations, Sparse Files, Application Data Blocks, and Labeled NFS.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7862"/>
          <seriesInfo name="DOI" value="10.17487/RFC7862"/>
        </reference>
        <reference anchor="RFC7863">
          <front>
            <title>Network File System (NFS) Version 4 Minor Version 2 External Data Representation Standard (XDR) Description</title>
            <author fullname="T. Haynes" initials="T." surname="Haynes"/>
            <date month="November" year="2016"/>
            <abstract>
              <t>This document provides the External Data Representation (XDR) description for NFS version 4 minor version 2.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7863"/>
          <seriesInfo name="DOI" value="10.17487/RFC7863"/>
        </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>
        <reference anchor="RFC8178">
          <front>
            <title>Rules for NFSv4 Extensions and Minor Versions</title>
            <author fullname="D. Noveck" initials="D." surname="Noveck"/>
            <date month="July" year="2017"/>
            <abstract>
              <t>This document describes the rules relating to the extension of the NFSv4 family of protocols. It covers the creation of minor versions, the addition of optional features to existing minor versions, and the correction of flaws in features already published as Proposed Standards. The rules relating to the construction of minor versions and the interaction of minor version implementations that appear in this document supersede the minor versioning rules in RFC 5661 and other RFCs defining minor versions.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8178"/>
          <seriesInfo name="DOI" value="10.17487/RFC8178"/>
        </reference>
        <reference anchor="RFC8881">
          <front>
            <title>Network File System (NFS) Version 4 Minor Version 1 Protocol</title>
            <author fullname="D. Noveck" initials="D." role="editor" surname="Noveck"/>
            <author fullname="C. Lever" initials="C." surname="Lever"/>
            <date month="August" year="2020"/>
            <abstract>
              <t>This document describes the Network File System (NFS) version 4 minor version 1, including features retained from the base protocol (NFS version 4 minor version 0, which is specified in RFC 7530) and protocol extensions made subsequently. The later minor version has no dependencies on NFS version 4 minor version 0, and is considered a separate protocol.</t>
              <t>This document obsoletes RFC 5661. It substantially revises the treatment of features relating to multi-server namespace, superseding the description of those features appearing in RFC 5661.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8881"/>
          <seriesInfo name="DOI" value="10.17487/RFC8881"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="I-D.haynes-nfsv4-flexfiles-v2">
          <front>
            <title>Parallel NFS (pNFS) Flexible File Layout Version 2</title>
            <author fullname="Thomas Haynes" initials="T." surname="Haynes">
              <organization>Hammerspace</organization>
            </author>
            <date day="20" month="October" year="2025"/>
            <abstract>
              <t>   Parallel NFS (pNFS) allows a separation between the metadata (onto a
   metadata server) and data (onto a storage device) for a file.  The
   Flexible File Layout Type Version 2 is defined in this document as an
   extension to pNFS that allows the use of storage devices that require
   only a limited degree of interaction with the metadata server and use
   already-existing protocols.  Data protection is also added to provide
   integrity.  Both Client-side mirroring and the Erasure Coding
   algorithms are used for data protection.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-haynes-nfsv4-flexfiles-v2-02"/>
        </reference>
        <reference anchor="MOUNT" target="https://man7.org/linux/man-pages/man2/mount.2.html">
          <front>
            <title>mount(2) - mount filesystem</title>
            <author>
              <organization>Linux man-pages project</organization>
            </author>
            <date year="2024"/>
          </front>
          <seriesInfo name="Linux" value="Programmer's Manual"/>
        </reference>
        <reference anchor="OPEN-O_DIRECT" target="https://man7.org/linux/man-pages/man2/open.2.html">
          <front>
            <title>open(2) - Linux system call for opening files (O_DIRECT)</title>
            <author>
              <organization>Linux man-pages project</organization>
            </author>
            <date year="2024"/>
          </front>
        </reference>
        <reference anchor="SOLARIS-FORCEDIRECTIO" target="https://docs.oracle.com/en/operating-systems/solaris/oracle-solaris/11.4/manage-nfs/mount-options-for-nfs-file-systems.html">
          <front>
            <title>mount -o forcedirectio - Solaris forcedirectio mount option</title>
            <author>
              <organization>Oracle Solaris Documentation</organization>
            </author>
            <date year="2023"/>
          </front>
          <seriesInfo name="Solaris" value="Administration Guide"/>
        </reference>
      </references>
    </references>
    <?line 407?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>Trond Myklebust, Mike Snitzer, Jon Flynn, Keith Mannthey, and Thomas
Haynes all worked on the prototype at Hammerspace.</t>
      <t>Rick Macklem, Chuck Lever, and Dave Noveck reviewed the document.</t>
      <t>Chris Inacio, Brian Pawlowski, and Gorry Fairhurst helped guide
this process.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAK/ztmkAA7Vc/3LbRpL+f55i1tkqSymSshVt4tUm8TKSbGvPlnySvNmt
VE41BIYkViDAxQCSGZ/zLPcs92T3dfcMMCBpS9m7S9UmJAQMenq6+/v6B3c4
HKo6q3N7qMdpmhUzbQr9rkhMMrdmklv9IsO/jk1t9Liuq2zS1FbXpT57cXl7
MNpXZjKp7O3hxiMqLZPCLLBsWplpPcxsPR0WU3d7MGy6W4dT3OqGTw5UYmo7
K6vVoXZ1qlJ8O9QfjsdXJx9VUhbOFq5xh7quGquyZcWfXL3/5Mkfn0CGyppD
/dIWtjK5uiurm1lVNstDfWZr+iZ7uFy52i70X23lsrLQB+rGrvDX9FCfFrWt
ClsPj0lUpVxtivTa5GUBIVbWqWV2qH+qy2SgXVnVlZ06fFot5AM2ujDLJVQ3
0Em5WNiidj8rZZp6XlaHSg+Vxj9ZAfGvRvqVWRVYkS6Jeq7m5cK4+HpZzUyR
/WJqiHmIP2DJyi1NYvmvdmGy/FDn5Wy+qv48o28jvFapoqwWeObW4p364sXR
/tOnf/QfD/7w5Gv/8ZtnX+93H7/yH589/eag+/gsfHz27OmhUlkxjZc+HR6P
5iytP89pbt/LOd7y0m/O351dHbKw3rIWZVPUO/u7eigfNd/O5yG3mWpm60M9
r+ulO9zbW5jimxHUsJdnRfOevg6XZmYdfdrf4yVG+6N5vcj58VbV+GdI6jvU
r+lB3T6ol1X5D5vUfIsY1/6T/QP+6myVWUeblBW0PHyoH72tylnF6n/s9BtT
NCZ/hFvO356cDc+vj08vTo76+yyXtpBtyvtlizoxea6hQ/47uRhvX++ENXb/
BSXQUv9XOrg8fz2+OL0cvji/ODoRkU7PNw9QD0vaRWLTrMI6WYkXXZa5qTK3
dl1uL5dkwVv3Bp9x2JtJckvGu2cL2lAFGytmQ9Ga23Oy9p7cNwxfnz4dHZAO
sCcyQDGHobzMDSEIXeXAElb6rJbOefV2I8dl0pALm1b2VlVffcJc/KMwmHG6
yIrM1RU/rV82WWofKTUcDrWZ0GVoX20LSrchKI329Y4Prbs6yTMKJhxVyiJf
aaiIXFHJH4YOy2uKpWRT5ZTNisQ1iDbYXGoritTZAgd/a8PDpkjsSJ0XCGUL
6y0UUQwRLM8SltvBZlZYYpo3Fjd7MWRh/zY1sXNzm5XVQAMQdD23ldXQXlFq
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
EtxuQgAA

-->

</rfc>
