<?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.5 (Ruby 3.3.0) -->
<?rfc tocindent="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc docmapping="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-gnap-resource-servers-07" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.20.1 -->
  <front>
    <title>Grant Negotiation and Authorization Protocol Resource Server Connections</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-gnap-resource-servers-07"/>
    <author initials="J." surname="Richer" fullname="Justin Richer" role="editor">
      <organization>Bespoke Engineering</organization>
      <address>
        <email>ietf@justin.richer.org</email>
        <uri>https://bspk.io/</uri>
      </address>
    </author>
    <author initials="F." surname="Imbault" fullname="Fabien Imbault">
      <organization>acert.io</organization>
      <address>
        <email>fabien.imbault@acert.io</email>
        <uri>https://acert.io/</uri>
      </address>
    </author>
    <date year="2024" month="July" day="24"/>
    <area>Security</area>
    <workgroup>GNAP</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 63?>

<t>GNAP defines a mechanism for delegating authorization to a piece of
software (the client), and conveying the results and artifacts of that delegation
to the software.
This extension defines methods for resource servers (RS) to connect
with authorization servers (AS) in an interoperable fashion.</t>
    </abstract>
  </front>
  <middle>
    <?line 71?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>The core GNAP specification (<xref target="GNAP"/>) defines distinct roles for the authorization
server (AS) and the resource server (RS). However, the core specification
does not define how the RS gets answers to important questions, such as whether
a given access token is still valid or what set of access rights the access
token is approved for.</t>
      <t>While it's possible for the AS and RS to be tightly coupled, such as a single
deployed server with a shared storage system, GNAP does not presume or require
such a tight coupling. It is increasingly common for the AS and RS to be run
and managed separately, particularly in cases where a single AS protects multiple
RS's simultaneously.</t>
      <t>This specification defines a set of RS-facing APIs that an AS can make
available for advanced loosely-coupled deployments. Additionally, this document
defines a general-purpose model for access tokens, which can be used in
structured, formatted access tokens or in token introspection responses.
This specification also defines a method
for an RS to derive a downstream token for calling another chained RS.</t>
      <t>The means of the authorization server issuing
the access token to the client instance and the means of the client instance
presenting the access token to the resource server are the subject of the
core GNAP specification <xref target="GNAP"/>.</t>
      <section anchor="terminology">
        <name>Terminology</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 contains non-normative examples of partial and complete HTTP messages, JSON structures, URLs, query components, keys, and other elements. Some examples use a single trailing backslash <tt>\</tt> to indicate line wrapping for long values, as per <xref target="RFC8792"/>. The <tt>\</tt> character and leading spaces on wrapped lines are not part of the value.</t>
        <t>Terminology specific to GNAP is defined in the terminology section of the core specification <xref target="GNAP"/>, and provides definitions for the protocol roles: authorization server (AS), client, resource server (RS), resource owner (RO), end user; as well as the protocol elements: attribute, access token, grant, privilege, protected resource, right, subject, subject information. The same definitions are used in this document.</t>
      </section>
    </section>
    <section anchor="structure">
      <name>Access Tokens</name>
      <t>Access tokens are a mechanism for an AS to provide a client instance limited access to an RS.
These access tokens are artifacts representing a particular set of access rights granted to
the client instance to act on behalf of the RO. While the format of access tokens varies in
different systems (see discussion in <xref target="token-format"/>), the concept of an access token is
consistent across all GNAP systems.</t>
      <section anchor="general-purpose-access-token-model">
        <name>General-purpose Access Token Model</name>
        <t>The core GNAP specification <xref target="GNAP"/> focuses on the relationship between the client and the AS. Since the access token
is opaque to the client, the core specification does not define a token model. However, the AS will need to create
tokens and the RS will need to understand tokens. To facilitate a level of structural interoperability, a common
access token model is presented here.
Access tokens represent a common set of aspects across different GNAP deployments. This list is not intended to be
universal or comprehensive, but rather serves as guidance to implementers in developing
data structures and associated systems across a GNAP deployment. These data structures are communicated
between the AS and RS either by using a structured token or an API-like mechanism like token introspection (see <xref target="introspection"/>).</t>
        <t>This general-purpose data model does not assume either approach, and in fact both can be used together
to convey different pieces of information. Where possible, mappings to the <xref target="JWT"/> standard format
are provided for each item in the model.</t>
        <section anchor="value">
          <name>Value</name>
          <t>All access tokens have a <em>value</em>, which is the string that is passed on the wire between parties.
In order for different access tokens to be differentiated at runtime, the value of a token needs to be unique
within a security domain (such as all systems controlled by an AS). Otherwise, two separate tokens would be
confused for each other which would lead to security issues.
The AS chooses the value, which can be structured as in <xref target="token-format"/> or unstructured. When the token is
structured, the token value also has a <em>format</em> known to the AS and RS, and the other items
in this token model are contained within the token's value in some fashion.
When the token is unstructured, the values are usually retrieved by the RS using a service
like token introspection described in <xref target="introspection"/>.</t>
          <t>The access token value is conveyed the <tt>value</tt> field of an <tt>access_token</tt> response from <xref section="3.2" sectionFormat="of" target="GNAP"/>.</t>
          <t>The format and content of the access token value is opaque to the client software.
While the client software needs to be able to carry and present the access token
value, the client software is never expected nor intended to be able to understand
the token value itself.</t>
          <t>If structured tokens like <xref target="JWT"/> are used, the value of the token might not be stored by the AS. Instead,
a token identifier can be used along with protection by an AS-generated signature to validate and
identify an individual token.</t>
        </section>
        <section anchor="issuer">
          <name>Issuer</name>
          <t>The access token is issued by the AS as defined by <xref target="GNAP"/>. The AS will
need to identify itself in order to allow an RS to recognize tokens that the AS has issued, particularly
in cases where tokens from multiple different AS's could be presented to the same RS.</t>
          <t>This information is not usually conveyed directly to the client instance, since the client
instance should know this information based on where it receives the token from.</t>
          <t>In a <xref target="JWT"/> formatted token or a token introspection response, this corresponds to the <tt>iss</tt> claim.</t>
        </section>
        <section anchor="audience">
          <name>Audience</name>
          <t>The access token is intended for use at one or more RS's. The AS can list a token's intended RS's
to allow each RS to ensure that the RS is not receiving a token intended for someone else.
The AS and RS have to agree on the nature of any audience identifiers represented by the token,
but the URIs of the RS are a common pattern.</t>
          <t>In a <xref target="JWT"/> formatted token or token introspection response, this corresponds to the <tt>aud</tt> claim.</t>
          <t>In cases where more complex access is required, the <tt>location</tt> field of objects in the <tt>access</tt>
array can also convey audience information.
In such cases, the client instance might need to know the audience information in order to differentiate between
possible RS's to present the token to.</t>
        </section>
        <section anchor="key-binding">
          <name>Key Binding</name>
          <t>Access tokens in GNAP are bound to the client instance's registered or presented key, except in
cases where the access token is a bearer token. For all tokens bound to a key, the AS and RS need to
be able to identify which key the token is bound to, otherwise an attacker could substitute their
own key during presentation of the token. In the case of an asymmetric algorithm, the
AS and RS needs to know only the public key, while the client instance will also need to know the private
key in order to present the token. In the case of a symmetric algorithm, all parties
will need to either know or be able to derive the shared key.</t>
          <t>The source of this key information can vary depending on deployment decisions. For example, an AS
could decide that all tokens issued to a client instance are always bound to that client instance's current key.
When the key needs to be dereferenced, the AS looks up the client instance to which the token was issued
and finds the key information there.
The AS could alternatively bind each token to a specific key that is managed separately from client instance
information. In such a case, the AS determines the key information directly. This approach allows the client
instance to use a different key for each request, or allows the AS to issue a key for the client instance
to use with the particular token.</t>
          <t>In all cases, the key binding also includes a proofing mechanism, along with any parameters needed for that
mechanism such as a signing or digest algorithm. If such information is not included with the proofing key, an attacker could
present a token with a seemingly-valid key using an insecure and incorrect proofing mechanism.</t>
          <t>This value is conveyed to the client instance in the <tt>key</tt> field of the <tt>access_token</tt> response in <xref section="3.2" sectionFormat="of" target="GNAP"/>.
Since the common case is that the token is bound to the client instance's registered key, this field can be omitted in this case
since the client will be aware of its own key.</t>
          <t>In a <xref target="JWT"/> formatted token, this corresponds to the <tt>cnf</tt> (confirmation) claim. In a token introspection response, this corresponds to the <tt>key</tt> claim.</t>
          <t>In the case of a bearer token, all parties need to know that a token has no key bound to it, and will therefore
reject any attempts to use the bearer token with a key in an undefined way.</t>
        </section>
        <section anchor="flags">
          <name>Flags</name>
          <t>GNAP access tokens can have multiple data flags associated with them that indicate special
processing or considerations for the token. For example, whether the token is a bearer token,
or should be expected to be durable across grant updates.</t>
          <t>The client can request a set of flags using the <tt>flags</tt> field of the <tt>access_token</tt> grant request parameter in <xref section="2.1.1" sectionFormat="of" target="GNAP"/>.</t>
          <t>These flags are conveyed from the AS to the client in the <tt>flags</tt> field of the <tt>access_token</tt> section of the grant response in <xref section="3.2" sectionFormat="of" target="GNAP"/>.</t>
          <t>For token introspection, flags are returned in the <tt>flags</tt> field of the response.</t>
        </section>
        <section anchor="access-rights">
          <name>Access Rights</name>
          <t>Access tokens are tied to a limited set of access rights. These rights specify in some detail what the token
can be used for, how, and where. The internal structure of access rights are detailed in <xref section="8" sectionFormat="of" target="GNAP"/>.</t>
          <t>The access rights associated with an access token are calculated from the rights available to the client
instance making the request, the rights available to be approved by the RO, the rights actually approved
by the RO, and the rights corresponding to the RS in question. The rights for a specific access token
are a subset of the overall rights in a grant request.</t>
          <t>These rights are requested by the client instance in the <tt>access</tt> field of the <tt>access_token</tt> request in <xref section="2.1" sectionFormat="of" target="GNAP"/>.</t>
          <t>The rights associated with an issued access token are conveyed to the client instance in the <tt>access</tt> field of the <tt>access_token</tt> response in <xref section="3.2" sectionFormat="of" target="GNAP"/>.</t>
          <t>In token introspection responses, this corresponds to the <tt>access</tt> claim.</t>
        </section>
        <section anchor="time-validity-window">
          <name>Time Validity Window</name>
          <t>The access token can be limited to a certain time window outside of which it is no longer
valid for use at an RS. This window can be explicitly bounded by an expiration time and a
not-before time, or it could be calculated based on the issuance time of the token. For example,
an RS could decide that it will accept tokens for most calls within an hour of a token's
issuance, but only within five minutes of the token's issuance for certain high-value calls.</t>
          <t>Since access tokens could be revoked at any time for any reason outside of a client instance's control,
the client instance often does not know or concern itself with the validity time window of
an access token. However, this information can be made available to it using the <tt>expires_in</tt> field
of an access token response in <xref section="3.2" sectionFormat="of" target="GNAP"/>.</t>
          <t>The issuance time of the token is conveyed in the <tt>iat</tt> claim of a <xref target="JWT"/> formatted token or a token introspection response.</t>
          <t>The expiration time of a token, after which it is to be rejected, is conveyed in the <tt>exp</tt> claim of a <xref target="JWT"/> formatted token or a token introspection response.</t>
          <t>The starting time of a token's validity window, before which it is to be rejected, is conveyed in the <tt>nbf</tt> claim of a <xref target="JWT"/> formatted token or a token introspection response.</t>
        </section>
        <section anchor="token-identifier">
          <name>Token Identifier</name>
          <t>Individual access tokens often need a unique internal identifier to allow the AS to differentiate
between multiple separate tokens. This value of the token can often be used as the
identifier, but in some cases a separate identifier is used.</t>
          <t>This separate identifier can be conveyed in the <tt>jti</tt> claim of a <xref target="JWT"/> formatted token or a token introspection response.</t>
          <t>This identifier is not usually exposed to the client instance using the token, since the client
instance only needs to use the token by value.</t>
        </section>
        <section anchor="authorizing-resource-owner">
          <name>Authorizing Resource Owner</name>
          <t>Access tokens are approved on behalf of a resource owner (RO). The identity of this RO can be used by
the RS to determine exactly which resource to access, or which kinds of access to allow. For example,
an access token used to access identity information can hold a user identifier to allow the RS to
determine which profile information to return. The nature of this information is subject to agreement
by the AS and RS.</t>
          <t>This corresponds to the <tt>sub</tt> claim of a <xref target="JWT"/> formatted token or a token introspection response.</t>
          <t>Detailed RO information is not returned to the client instance
when an access token is requested alone, and in many cases returning
this information to the client instance would be a privacy violation on the part of the AS. Since the
access token represents a specific delegated access, the client instance needs only to use the token
at its target RS. Following the profile example, the client instance does not need to know
the account identifier to get specific attributes about the account represented by the token.</t>
          <t>GNAP does allow for the return of subject information separately from the access token, in the form
of identifiers and assertions. These values are returned directly to the client separately from any
access tokens that are requested, though it's common that they represent the same party.</t>
        </section>
        <section anchor="end-user">
          <name>End User</name>
          <t>The end user is the party operating the client software. The client instance can facilitate the end user
interacting with the AS in order to determine the end user's identity, gather authorization, and provide
the results of that information back to the client instance.</t>
          <t>In many instances, the end user is the same party as the resource owner. However, in some cases,
the two roles can be fulfilled by different people, where the RO is consulted asynchronously.
The token model should be able to reflect these kinds of situations by representing the end user
and RO separately.
For example, an end user can request a financial payment, but the RO is the holder of the account
that the payment would be withdrawn from. The RO would be consulted for approval by the AS outside
of the flow of the GNAP request. A token in such circumstances would need to show both the
RO and end user as separate entities.</t>
        </section>
        <section anchor="client-instance">
          <name>Client Instance</name>
          <t>Access tokens are issued to a specific client instance by the AS. The identity of this instance can
be used by the RS to allow specific kinds of access, or other attributes about the access token.
For example, an AS that binds all access tokens issued to a particular client instance to that
client instance's most recent key rotation would need to be able to look up the client instance
in order to find the key binding detail.</t>
          <t>This corresponds to the <tt>client_id</tt> claim of a <xref target="JWT"/> formatted token or the <tt>instance_id</tt> field of a token introspection response.</t>
          <t>The client is not normally informed of this information separately, since a client instance can
usually correctly assume that it is the client instance to which a token that
it receives was issued.</t>
        </section>
        <section anchor="label">
          <name>Label</name>
          <t>When multiple access tokens are requested or a client instance uses token labels, the parties
will need to keep track of which labels were applied to each individual token. Since labels can
be re-used across different grant requests, the token label alone is not sufficient to
uniquely identify a given access token in a system. However, within the context of a grant
request, these labels are required to be unique.</t>
          <t>A client instance can request a specific label using the <tt>label</tt> field of an <tt>access_token</tt> request in <xref section="2.1" sectionFormat="of" target="GNAP"/>.</t>
          <t>The AS can inform the client instance of a token's label using the <tt>label</tt> field of an <tt>access_token</tt> response in <xref section="3.2" sectionFormat="of" target="GNAP"/>.</t>
          <t>This corresponds to the <tt>label</tt> field of a token introspection response.</t>
        </section>
        <section anchor="parent-grant-request">
          <name>Parent Grant Request</name>
          <t>All access tokens are issued in the context of a specific grant request from a client instance. The
grant request itself represents a unique tuple of:</t>
          <ul spacing="normal">
            <li>
              <t>The AS processing the grant request</t>
            </li>
            <li>
              <t>The client instance making the grant request</t>
            </li>
            <li>
              <t>The RO (or set of RO's) approving the grant request (or needing to approve it)</t>
            </li>
            <li>
              <t>The access rights granted by the RO</t>
            </li>
            <li>
              <t>The current state of the grant request, as defined in <xref section="1.5" sectionFormat="of" target="GNAP"/></t>
            </li>
          </ul>
          <t>The AS can use this information to tie common information to a specific token. For instance,
instead of specifying a client instance for every issued access token for a grant, the AS
can store the client information in the grant itself and look it up by reference from the
access token.</t>
          <t>The AS can also use this information when a grant request is updated. For example, if the client
instance asks for a new access token from an existing grant, the AS can use this link to revoke
older non-durable access tokens that had been previously issued under the grant.</t>
          <t>A client instance will have its own model of an ongoing grant request, especially if that
grant request can be continued using the API defined in <xref section="5" sectionFormat="of" target="GNAP"/> where several
pieces of statefulness need to be kept in hand. The client instance might need to keep an
association with the grant request that issued the token in case the access token expires or
does not have sufficient access rights, so that the client instance can get a new access
token without having to restart the grant request process from scratch.</t>
          <t>Since the grant itself does not need to be identified in any of the protocol messages, GNAP
does not define a specific grant identifier to be conveyed between any parties in the protocol.
Only the AS needs to keep an explicit connection between an issued access token and the
parent grant that issued it.</t>
        </section>
        <section anchor="as-specific-access-tokens">
          <name>AS-Specific Access Tokens</name>
          <t>When an access token is used for the grant continuation API defined in <xref section="5" sectionFormat="of" target="GNAP"/> (the continuation access token)
the token management API defined in <xref section="6" sectionFormat="of" target="GNAP"/> (the token management access token),
or the RS-facing API defined in <xref target="rs-facing-api"/> (the resource server management access token),
the AS <bcp14>MUST</bcp14> separate these access tokens from others usable at RS's. The AS can
do this through the use of a flag on the access token data structure, by using a special internal
access right, or any other means at its disposal. Just like other access tokens in GNAP,
the contents of these AS-specific access tokens are opaque to the software presenting the token.
Unlike other access tokens, the contents of these AS-specific access tokens are also opaque to the RS.</t>
          <t>The client instance is given continuation access tokens only as part of the <tt>continue</tt> field
of the grant response in <xref section="3.1" sectionFormat="of" target="GNAP"/>.
The client instance is given token management access tokens only as part of the <tt>manage</tt> field
of the grant response in <xref section="3.1.2" sectionFormat="of" target="GNAP"/>.
The means by which the RS is given resource server management access tokens is out of
scope of this specification, but methods could include pre-configuration of the token value with
the RS software or granting the access token through a standard GNAP process.</t>
          <t>For continuation access tokens and token management access tokens,
a client instance <bcp14>MUST</bcp14> take steps to differentiate these special-purpose access tokens from
access tokens used at RS's.
To facilitate this, a client instance can store AS-specific access tokens separately from
other access tokens in order to keep them from being confused with each other and used at the
wrong endpoints.</t>
          <t>An RS should never see an AS-specific access token presented, so any attempts to process one <bcp14>MUST</bcp14>
fail. When introspection is used, the AS <bcp14>MUST NOT</bcp14> return an <tt>active</tt> value of <tt>true</tt> for
AS-specific access tokens to the RS. If an AS implements its protected endpoints in such a way
as it uses token introspection internally, the AS <bcp14>MUST</bcp14> differentiate these AS-specific access tokens
from those issued for use at an external RS.</t>
        </section>
      </section>
      <section anchor="token-format">
        <name>Access Token Formats</name>
        <t>When the AS issues an access token for use at an RS, the RS
needs to have some means of understanding what the access token is for
in order to determine how to respond to the request. The core GNAP
protocol makes neither assumptions nor demands on the format or contents
of the access token, and in fact, the token format and contents are opaque
to the client instance. However, such token formats can be the topic of agreements
between the AS and RS.</t>
        <t>Self-contained structured token formats allow for the conveyance
of information between the AS and RS without requiring the RS to
call the AS at runtime as described in <xref target="introspection"/>. Structured tokens
can also be used in combination with introspection, allowing the token itself
to carry one class of information and the introspection response to carry
another.</t>
        <t>Some token formats, such as Macaroons <xref target="MACAROON"/> and Biscuits <xref target="BISCUIT"/>, allow for
the RS to derive sub-tokens without having to call the AS
as described in <xref target="token-chaining"/>.</t>
        <t>The supported token formats can be communicated dynamically at runtime
between the AS and RS in several places.</t>
        <ul spacing="normal">
          <li>
            <t>The AS can declare its supported token formats as part of RS-facing discovery <xref target="discovery"/></t>
          </li>
          <li>
            <t>The RS can require a specific token format be used to access a registered resource set <xref target="rs-register-resource-handle"/></t>
          </li>
          <li>
            <t>The AS can return the token's format in an introspection response <xref target="introspection"/></t>
          </li>
        </ul>
        <t>In all places where the token format is listed explicitly, it <bcp14>MUST</bcp14> be one of the registered
values in the GNAP Token Formats Registry <xref target="IANA-token-format"/>.</t>
      </section>
    </section>
    <section anchor="rs-facing-api">
      <name>Resource-Server-Facing API</name>
      <t>To facilitate runtime and dynamic connections, the AS can offer an
RS-Facing API consisting of one or more of the following optional
pieces.</t>
      <ul spacing="normal">
        <li>
          <t>Discovery</t>
        </li>
        <li>
          <t>Introspection</t>
        </li>
        <li>
          <t>Token chaining</t>
        </li>
        <li>
          <t>Resource reference registration</t>
        </li>
      </ul>
      <section anchor="discovery">
        <name>RS-facing AS Discovery</name>
        <t>A GNAP AS offering RS-facing services can publish its features on
a well-known discovery document using the URL <tt>.well-known/gnap-as-rs</tt> appended
to the grant request endpoint URL.</t>
        <t>The discovery response is a JSON document <xref target="RFC8259"/> consisting of a single JSON
object with the following fields:</t>
        <dl>
          <dt>grant_request_endpoint (string):</dt>
          <dd>
            <t>The location of the AS's grant request endpoint defined by <xref section="9" sectionFormat="of" target="GNAP"/>.
  This URL <bcp14>MUST</bcp14> be the same URL used by client instances in support of GNAP requests.
  The RS can use this to derive downstream access tokens, if supported by the AS.
  The location <bcp14>MUST</bcp14> be a URL <xref target="RFC3986"/>
  with a scheme component that <bcp14>MUST</bcp14> be https, a host component, and optionally,
  port, path and query components and no fragment components.
  <bcp14>REQUIRED</bcp14>.
  See <xref target="token-chaining"/>.</t>
          </dd>
          <dt>introspection_endpoint (string):</dt>
          <dd>
            <t>The URL of the endpoint offering introspection.
  The location <bcp14>MUST</bcp14> be a URL <xref target="RFC3986"/>
  with a scheme component that <bcp14>MUST</bcp14> be https, a host component, and optionally,
  port, path and query components and no fragment components.
  <bcp14>REQUIRED</bcp14> if the AS supports introspection. An absent value indicates that the AS does not support introspection.
  See <xref target="introspection"/>.</t>
          </dd>
          <dt>token_formats_supported (array of strings):</dt>
          <dd>
            <t>A list of token formats supported by this AS. The values in this list
  <bcp14>MUST</bcp14> be registered in the GNAP Token Format Registry in <xref target="IANA-token-format"/>.
  <bcp14>OPTIONAL</bcp14>.</t>
          </dd>
          <dt>resource_registration_endpoint (string):</dt>
          <dd>
            <t>The URL of the endpoint offering resource registration.
  The location <bcp14>MUST</bcp14> be a URL <xref target="RFC3986"/>
  with a scheme component that <bcp14>MUST</bcp14> be https, a host component, and optionally,
  port, path and query components and no fragment components.
  <bcp14>REQUIRED</bcp14> if the AS supports dynamic resource registration. An absent value indicates that the AS does not support this feature.
  See <xref target="rs-register-resource-handle"/>.</t>
          </dd>
          <dt>key_proofs_supported (array of strings)</dt>
          <dd>
            <t>A list of the AS's supported key
  proofing mechanisms. The values of this list correspond to possible
  values of the <tt>proof</tt> field of the key section of the request.
  Values <bcp14>MUST</bcp14> be in the GNAP Key Proofing Methods registry.
  <bcp14>OPTIONAL</bcp14>.</t>
          </dd>
        </dl>
        <t>Additional fields are defined in the GNAP RS-Facing Discovery Document Fields registry <xref target="IANA-rs-discovery"/>.</t>
      </section>
      <section anchor="authentication">
        <name>Protecting RS requests to the AS</name>
        <t>Unless otherwise specified, the RS <bcp14>MUST</bcp14> protect its calls to the AS using any of the signature
methods defined by <xref section="7" sectionFormat="of" target="GNAP"/>.</t>
        <t>The RS <bcp14>MAY</bcp14> present its keys by reference or by value in
a similar fashion to a client instance calling the AS in the core protocol
of GNAP, described in <xref section="7.1" sectionFormat="of" target="GNAP"/>. In the protocols defined here,
this takes the form of the resource server identifying itself using a <tt>key</tt> field or
by passing an instance identifier directly.</t>
        <sourcecode type="http-message"><![CDATA[
POST /continue HTTP/1.1
Host: server.example.com
Authorization: GNAP 80UPRY5NM33OMUKMKSKU
Signature-Input: sig1=...
Signature: sig1=...
Content-Type: application/json

"resource_server": {
    "key": {
        "proof": "httpsig",
        "jwk": {
            "kty": "EC",
            "crv": "secp256k1",
            "kid": "2021-07-06T20:22:03Z",
            "x": "-J9OJIZj4nmopZbQN7T8xv3sbeS5-f_vBNSy_EHnBZc",
            "y": "sjrS51pLtu3P4LUTVvyAIxRfDV_be2RYpI5_f-Yjivw"
        }
    }
}
]]></sourcecode>
        <t>or by reference:</t>
        <sourcecode type="http-message"><![CDATA[
POST /continue HTTP/1.1
Host: server.example.com
Signature-Input: sig1=...
Signature: sig1=...
Content-Type: application/json

{
    "resource_server": "7C7C4AZ9KHRS6X63AJAO"
}
]]></sourcecode>
        <t>The means by which an RS's keys are made known to the AS are out
of scope of this specification.
The AS <bcp14>MAY</bcp14> require an RS to pre-register its keys
or could allow calls from arbitrary keys in a trust-on-first-use
model.</t>
        <t>The AS <bcp14>MAY</bcp14> issue access tokens to the RS for protecting the RS-facing
API endpoints, called a resource server management access token.
If such tokens are issued, the RS <bcp14>MUST</bcp14> present them
to the RS-facing API endpoints along with the RS authentication.</t>
        <sourcecode type="http-message"><![CDATA[
POST /continue HTTP/1.1
Host: server.example.com
Authorization: GNAP 80UPRY5NM33OMUKMKSKU
Signature-Input: sig1=...
Signature: sig1=...
Content-Type: application/json

{
    "resource_server": "7C7C4AZ9KHRS6X63AJAO"
}
]]></sourcecode>
      </section>
      <section anchor="introspection">
        <name>Token Introspection</name>
        <t>The AS issues access tokens representing a set of delegated access rights
to be used at one or more RSs. The AS can offer an introspection service
to allow an RS to validate that a given access token:</t>
        <ul spacing="normal">
          <li>
            <t>has been issued by the AS</t>
          </li>
          <li>
            <t>is valid at the current time</t>
          </li>
          <li>
            <t>has not been revoked</t>
          </li>
          <li>
            <t>is appropriate for the RS identified in the call</t>
          </li>
        </ul>
        <t>When the RS receives an access token, it can call the introspection
endpoint at the AS to get token information.</t>
        <artset>
          <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="160" width="328" viewBox="0 0 328 160" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 8,32 L 8,144" fill="none" stroke="black"/>
              <path d="M 80,32 L 80,144" fill="none" stroke="black"/>
              <path d="M 144,32 L 144,144" fill="none" stroke="black"/>
              <path d="M 200,32 L 200,144" fill="none" stroke="black"/>
              <path d="M 264,32 L 264,112" fill="none" stroke="black"/>
              <path d="M 320,32 L 320,112" fill="none" stroke="black"/>
              <path d="M 8,32 L 80,32" fill="none" stroke="black"/>
              <path d="M 144,32 L 200,32" fill="none" stroke="black"/>
              <path d="M 264,32 L 320,32" fill="none" stroke="black"/>
              <path d="M 80,48 L 104,48" fill="none" stroke="black"/>
              <path d="M 120,48 L 136,48" fill="none" stroke="black"/>
              <path d="M 200,64 L 224,64" fill="none" stroke="black"/>
              <path d="M 240,64 L 256,64" fill="none" stroke="black"/>
              <path d="M 208,96 L 224,96" fill="none" stroke="black"/>
              <path d="M 240,96 L 264,96" fill="none" stroke="black"/>
              <path d="M 264,112 L 320,112" fill="none" stroke="black"/>
              <path d="M 88,128 L 104,128" fill="none" stroke="black"/>
              <path d="M 120,128 L 144,128" fill="none" stroke="black"/>
              <path d="M 8,144 L 80,144" fill="none" stroke="black"/>
              <path d="M 144,144 L 200,144" fill="none" stroke="black"/>
              <polygon class="arrowhead" points="264,64 252,58.4 252,69.6" fill="black" transform="rotate(0,256,64)"/>
              <polygon class="arrowhead" points="216,96 204,90.4 204,101.6" fill="black" transform="rotate(180,208,96)"/>
              <polygon class="arrowhead" points="144,48 132,42.4 132,53.6" fill="black" transform="rotate(0,136,48)"/>
              <polygon class="arrowhead" points="96,128 84,122.4 84,133.6" fill="black" transform="rotate(180,88,128)"/>
              <g class="text">
                <text x="44" y="52">Client</text>
                <text x="112" y="52">1</text>
                <text x="172" y="52">RS</text>
                <text x="292" y="52">AS</text>
                <text x="44" y="68">Instance</text>
                <text x="232" y="68">2</text>
                <text x="232" y="100">3</text>
                <text x="112" y="132">4</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art"><![CDATA[
+--------+       +------+       +------+
| Client +--(1)->|  RS  |       |  AS  |
|Instance|       |      +--(2)->|      |
|        |       |      |       |      |
|        |       |      |<-(3)--+      |
|        |       |      |       +------+
|        |<-(4)--+      |
+--------+       +------+
]]></artwork>
        </artset>
        <ol spacing="normal" type="1"><li>
            <t>The client instance calls the RS with its access token.</t>
          </li>
          <li>
            <t>The RS introspects the access token value at the AS.
 The RS signs the request with its own key (not the client instance's
 key or the token's key).</t>
          </li>
          <li>
            <t>The AS validates the access token value and the Resource Server's request
 and returns the introspection response for the token.</t>
          </li>
          <li>
            <t>The RS fulfills the request from the client instance.</t>
          </li>
        </ol>
        <t>The RS signs the request with its own key and sends the value of the access
token as the body of the request as a JSON object with the following members:</t>
        <dl>
          <dt>access_token (string):</dt>
          <dd>
            <t><bcp14>REQUIRED</bcp14>. The access token value presented to the RS by the client instance.</t>
          </dd>
          <dt>proof (string):</dt>
          <dd>
            <t><bcp14>RECOMMENDED</bcp14>. The proofing method used by the client instance to bind the token to the RS request.
  The value <bcp14>MUST</bcp14> be in the GNAP Key Proofing Methods registry.</t>
          </dd>
          <dt>resource_server (string or object):</dt>
          <dd>
            <t><bcp14>REQUIRED</bcp14>. The identification used to authenticate the resource server making this call, either
  by value or by reference as described in <xref target="authentication"/>.</t>
          </dd>
          <dt>access (array of strings/objects):</dt>
          <dd>
            <t><bcp14>OPTIONAL</bcp14>. The minimum access rights required to fulfill the request. This <bcp14>MUST</bcp14> be in the
  format described in <xref section="8" sectionFormat="of" target="GNAP"/>.</t>
          </dd>
        </dl>
        <t>Additional fields are defined in the GNAP Token Introspection Request registry <xref target="IANA-token-introspection-request"/>.</t>
        <sourcecode type="http-message"><![CDATA[
POST /introspect HTTP/1.1
Host: server.example.com
Content-Type: application/json
Signature-Input: sig1=...
Signature: sig1=...
Digest: sha256=...

{
    "access_token": "OS9M2PMHKUR64TB8N6BW7OZB8CDFONP219RP1LT0",
    "proof": "httpsig",
    "resource_server": "7C7C4AZ9KHRS6X63AJAO"
}
]]></sourcecode>
        <t>The AS <bcp14>MUST</bcp14> validate the access token value and determine if the token is active.
The parameters of the request provide a context for the AS to evaluate the access token,
and the AS <bcp14>MUST</bcp14> take all provided parameters into account when evaluating if the token is active.
If the AS is unable to process part of the request, such as not understanding part of
the <tt>access</tt> field presented, the AS <bcp14>MUST NOT</bcp14> indicate the token as active.</t>
        <t>An active access token is defined as a token that is all of the following:</t>
        <ul spacing="normal">
          <li>
            <t>was issued by the processing AS,</t>
          </li>
          <li>
            <t>has not been revoked,</t>
          </li>
          <li>
            <t>has not expired,</t>
          </li>
          <li>
            <t>is bound using the <tt>proof</tt> method indicated,</t>
          </li>
          <li>
            <t>is appropriate for presentation at the identified RS, and</t>
          </li>
          <li>
            <t>is appropriate for the <tt>access</tt> indicated (if present).</t>
          </li>
        </ul>
        <t>The AS responds with a data structure describing the token's
current state and any information the RS would need to validate the
token's presentation, such as its intended proofing mechanism and key
material.</t>
        <dl>
          <dt>active (boolean):</dt>
          <dd>
            <t><bcp14>REQUIRED</bcp14>. If <tt>true</tt>, the access token presented is active,
  as defined above. If any of the criteria for an active token
  are not true, or if the AS is unable to make a
  determination (such as the token is not found), the value is
  set to <tt>false</tt> and other fields are omitted.</t>
          </dd>
        </dl>
        <t>If the access token is active, additional fields from the single access token
response structure defined in <xref section="3.2.1" sectionFormat="of" target="GNAP"/> are included. In
particular, these include the following:</t>
        <dl>
          <dt>access (array of strings/objects):</dt>
          <dd>
            <t><bcp14>REQUIRED</bcp14>. The access rights associated with this access token. This <bcp14>MUST</bcp14> be in the
  format described in the <xref section="8" sectionFormat="of" target="GNAP"/>.
  This array <bcp14>MAY</bcp14> be filtered or otherwise limited for consumption by the identified RS, including
  being an empty array, indicating that the token has no explicit access rights that
  can be disclosed to the RS.</t>
          </dd>
          <dt>key (object/string):</dt>
          <dd>
            <t><bcp14>REQUIRED</bcp14> if the token is bound. The key bound to the access token, to allow the RS
  to validate the signature of the request from the client instance. If the access
  token is a bearer token, this <bcp14>MUST NOT</bcp14> be included.</t>
          </dd>
          <dt>flags (array of strings):</dt>
          <dd>
            <t><bcp14>OPTIONAL</bcp14>. The set of flags associated with the access token.</t>
          </dd>
          <dt>exp (integer):</dt>
          <dd>
            <t><bcp14>OPTIONAL</bcp14>. The timestamp after which this token is no longer valid.
  Expressed as integer seconds from UNIX Epoch.</t>
          </dd>
          <dt>iat (integer):</dt>
          <dd>
            <t><bcp14>OPTIONAL</bcp14>. The timestamp at which this token was issued by the AS.
  Expressed as integer seconds from UNIX Epoch.</t>
          </dd>
          <dt>nbf (integer):</dt>
          <dd>
            <t><bcp14>OPTIONAL</bcp14>. The timestamp before which this token is not valid.
  Expressed as integer seconds from UNIX Epoch.</t>
          </dd>
          <dt>aud (string or array of strings):</dt>
          <dd>
            <t><bcp14>OPTIONAL</bcp14>. Identifiers for the resource servers this token can be accepted at.</t>
          </dd>
          <dt>sub (string):</dt>
          <dd>
            <t><bcp14>OPTIONAL</bcp14>. Identifier of the resource owner who authorized this token.</t>
          </dd>
          <dt>iss (string):</dt>
          <dd>
            <t><bcp14>REQUIRED</bcp14>. Grant endpoint URL of the AS that issued this token.</t>
          </dd>
          <dt>instance_id (string):</dt>
          <dd>
            <t><bcp14>OPTIONAL</bcp14>. The instance identifier of the client instance that the token was issued to.</t>
          </dd>
        </dl>
        <t>Additional fields are defined in the GNAP Token Introspection Response registry <xref target="IANA-token-introspection"/>.</t>
        <t>The response <bcp14>MAY</bcp14> include any additional fields defined in an access
token response and <bcp14>MUST NOT</bcp14> include the access token <tt>value</tt> itself.</t>
        <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-store

{
    "active": true,
    "access": [
        "dolphin-metadata", "some other thing"
    ],
    "key": {
        "proof": "httpsig",
        "jwk": {
                "kty": "RSA",
                "e": "AQAB",
                "kid": "xyz-1",
                "alg": "RS256",
                "n": "kOB5rR4Jv0GMeL...."
        }
    }
}
]]></sourcecode>
        <t>When processing the results of the introspection response, the RS <bcp14>MUST</bcp14> determine the
appropriate course of action. For instance, if the RS determines that the access token's
access rights are not sufficient for the request to which the token was attached, the RS
can return an error or a public resource, as appropriate for the RS.
In all cases, the final determination of the response is at the discretion of the RS.</t>
      </section>
      <section anchor="rs-register-resource-handle">
        <name>Registering a Resource Set</name>
        <t>If the RS needs to, it can post a set of resources as described in the Resource Access Rights section of
<xref target="GNAP"/> to the AS's resource registration endpoint along with information about
what the RS will need to validate the request.</t>
        <dl>
          <dt>access (array of objects/strings):</dt>
          <dd>
            <t><bcp14>REQUIRED</bcp14>. The list of access rights associated with the request in the format described
  in the "Resource Access Rights" section of <xref target="GNAP"/>.</t>
          </dd>
          <dt>resource_server (string or object):</dt>
          <dd>
            <t><bcp14>REQUIRED</bcp14>. The identification used to authenticate the resource server making this call, either
  by value or by reference as described in <xref target="authentication"/>.</t>
          </dd>
          <dt>token_formats_supported (array of strings):</dt>
          <dd>
            <t><bcp14>OPTIONAL</bcp14>. The token formats the RS is able to process for accessing the resource.
  The values in this array <bcp14>MUST</bcp14> be registered in the GNAP Token Formats Registry in <xref target="IANA-token-format"/>.
  If the field is omitted, the token format is at the discretion of the AS.
  If the AS does not support any of the requested
  token formats, the AS <bcp14>MUST</bcp14> return an error to the RS.</t>
          </dd>
          <dt>token_introspection_required (boolean):</dt>
          <dd>
            <t><bcp14>OPTIONAL</bcp14>. If present and set to <tt>true</tt>, the RS expects to make a token introspection request as
  described in <xref target="introspection"/>. If absent or set to <tt>false</tt>, the RS does not anticipate needing
  to make an introspection request for tokens relating to this resource set. If the AS does not
  support token introspection for this RS, the AS <bcp14>MUST</bcp14> return an error to the RS.</t>
          </dd>
        </dl>
        <t>Additional fields are defined in the GNAP Resource Set Registration Request registry <xref target="IANA-resource-registration-request"/>.</t>
        <t>The RS <bcp14>MUST</bcp14> identify itself with its own key and sign the
request.</t>
        <sourcecode type="http-message"><![CDATA[
POST /resource HTTP/1.1
Host: server.example.com
Content-Type: application/json
Signature-Input: sig1=...
Signature: sig1=...
Digest: ...

{
    "access": [
        {
            "actions": [
                "read",
                "write",
                "dolphin"
            ],
            "locations": [
                "https://server.example.net/",
                "https://resource.local/other"
            ],
            "datatypes": [
                "metadata",
                "images"
            ]
        },
        "dolphin-metadata"
    ],
    "resource_server": "7C7C4AZ9KHRS6X63AJAO"

}
]]></sourcecode>
        <t>The AS responds with a reference appropriate to represent the
resources list that the RS presented in its request as well as
any additional information the RS might need in future requests.</t>
        <dl>
          <dt>resource_reference (string):</dt>
          <dd>
            <t><bcp14>REQUIRED</bcp14>. A single string representing the list of resources registered in the request.
  The RS <bcp14>MAY</bcp14> make this handle available to a client instance as part of a
  discovery response as described in <xref section="9.1" sectionFormat="of" target="GNAP"/> or as
  documentation to client software developers.</t>
          </dd>
          <dt>instance_id (string):</dt>
          <dd>
            <t><bcp14>OPTIONAL</bcp14>. An instance identifier that the RS can use to refer to itself in future calls to
  the AS, in lieu of sending its key by value. See <xref target="authentication"/>.</t>
          </dd>
          <dt>introspection_endpoint (string):</dt>
          <dd>
            <t><bcp14>OPTIONAL</bcp14>. The introspection endpoint of this AS, used to allow the RS to perform
  token introspection. See <xref target="introspection"/>.</t>
          </dd>
        </dl>
        <t>Additional fields are defined in the GNAP Resource Set Registration Response Registry <xref target="IANA-resource-registration-response"/>.</t>
        <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-store

{
    "resource_reference": "FWWIKYBQ6U56NL1"
}
]]></sourcecode>
        <t>If a resource was previously registered, the AS <bcp14>MAY</bcp14> return the same resource reference
value as in previous responses.</t>
        <t>If the registration fails, the AS returns an HTTP 400 Bad Request error to the
RS indicating that the registration was not successful.</t>
        <t>The client instance can then use the <tt>resource_reference</tt> value as a string-type access
reference as defined in <xref section="8.1" sectionFormat="of" target="GNAP"/>. This value <bcp14>MAY</bcp14> be combined with any other
additional access rights requested by the client instance.</t>
        <sourcecode type="json"><![CDATA[
{
    "access_token": {
        "access": [
            "FWWIKYBQ6U56NL1",
            {
                "type": "photo-api",
                "actions": [
                    "read",
                    "write",
                    "dolphin"
                ],
                "locations": [
                    "https://server.example.net/",
                    "https://resource.local/other"
                ],
                "datatypes": [
                    "metadata",
                    "images"
                ]
            },
            "dolphin-metadata"
        ]
    },
    "client": "client-12351.bdxqf"
}
]]></sourcecode>
      </section>
      <section anchor="response-error">
        <name>Error Responses</name>
        <t>In the case of an error from the RS-facing API, the AS responds to the RS with an HTTP 400 (Bad Request)
status code and a JSON object consisting of a single <tt>error</tt> field, which is either an object or a string.</t>
        <t>When returned as a string, the error value is the error code:</t>
        <sourcecode type="json"><![CDATA[
{
    error: "invalid_access"
}
]]></sourcecode>
        <t>When returned as an object, the error object contains the following fields:</t>
        <dl>
          <dt><tt>code</tt> (string):</dt>
          <dd>
            <t>A single ASCII error code defining the error.
<bcp14>REQUIRED</bcp14>.</t>
          </dd>
          <dt><tt>description</tt> (string):</dt>
          <dd>
            <t>A human-readable string description of the error intended for the
developer of the client.
<bcp14>OPTIONAL</bcp14>.</t>
          </dd>
        </dl>
        <sourcecode type="json"><![CDATA[
{
  "error": {
    "code": "invalid_access",
    "description": "Access to 'foo' is not permitted for this RS."
  }
}
]]></sourcecode>
        <t>This specification defines the following error code values:</t>
        <dl>
          <dt><tt>"invalid_request"</tt>:</dt>
          <dd>
            <t>The request is missing a required parameter, includes an
  invalid parameter value or is otherwise malformed.</t>
          </dd>
          <dt><tt>"invalid_resource_server"</tt>:</dt>
          <dd>
            <t>The request was made from an RS that was not recognized
  or allowed by the AS, or the RS's signature validation failed.</t>
          </dd>
          <dt><tt>"invalid_access"</tt></dt>
          <dd>
            <t>The RS is not permitted to register or introspect for the requested "access" value.</t>
          </dd>
        </dl>
        <t>Additional error codes can be defined in the <xref target="IANA-error-code">GNAP RS-Facing Error Codes Registry</xref>.</t>
      </section>
    </section>
    <section anchor="token-chaining">
      <name>Deriving a downstream token</name>
      <t>Some architectures require an RS to act as a client instance and use a derived access
token for a secondary RS. Since the RS is not the same entity that made the initial grant
request, the RS is not capable of referencing or modifying the existing grant. As such,
the RS needs to request or generate a new token access token for its use at the secondary RS.
This internal secondary token is issued in the context of the incoming access token.</t>
      <t>While it is possible to use a <xref target="structure">token format</xref> that allows for the
RS to generate its own secondary token,
the AS can allow the RS to request this secondary access token using the same
process used by the original client instance to request the primary access token. Since the
RS is acting as its own client instance from the perspective of GNAP, this process
uses the same grant endpoint, request structure, and response structure as a client
instance's request.</t>
      <artset>
        <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="192" width="464" viewBox="0 0 464 192" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
            <path d="M 8,32 L 8,176" fill="none" stroke="black"/>
            <path d="M 80,32 L 80,176" fill="none" stroke="black"/>
            <path d="M 144,32 L 144,176" fill="none" stroke="black"/>
            <path d="M 208,32 L 208,176" fill="none" stroke="black"/>
            <path d="M 272,32 L 272,96" fill="none" stroke="black"/>
            <path d="M 328,32 L 328,96" fill="none" stroke="black"/>
            <path d="M 392,32 L 392,176" fill="none" stroke="black"/>
            <path d="M 456,32 L 456,176" fill="none" stroke="black"/>
            <path d="M 8,32 L 80,32" fill="none" stroke="black"/>
            <path d="M 144,32 L 208,32" fill="none" stroke="black"/>
            <path d="M 272,32 L 328,32" fill="none" stroke="black"/>
            <path d="M 392,32 L 456,32" fill="none" stroke="black"/>
            <path d="M 80,48 L 104,48" fill="none" stroke="black"/>
            <path d="M 120,48 L 136,48" fill="none" stroke="black"/>
            <path d="M 208,64 L 232,64" fill="none" stroke="black"/>
            <path d="M 248,64 L 264,64" fill="none" stroke="black"/>
            <path d="M 216,80 L 232,80" fill="none" stroke="black"/>
            <path d="M 248,80 L 272,80" fill="none" stroke="black"/>
            <path d="M 272,96 L 328,96" fill="none" stroke="black"/>
            <path d="M 208,128 L 304,128" fill="none" stroke="black"/>
            <path d="M 320,128 L 384,128" fill="none" stroke="black"/>
            <path d="M 216,144 L 304,144" fill="none" stroke="black"/>
            <path d="M 320,144 L 392,144" fill="none" stroke="black"/>
            <path d="M 88,160 L 104,160" fill="none" stroke="black"/>
            <path d="M 120,160 L 144,160" fill="none" stroke="black"/>
            <path d="M 8,176 L 80,176" fill="none" stroke="black"/>
            <path d="M 144,176 L 208,176" fill="none" stroke="black"/>
            <path d="M 392,176 L 456,176" fill="none" stroke="black"/>
            <polygon class="arrowhead" points="392,128 380,122.4 380,133.6" fill="black" transform="rotate(0,384,128)"/>
            <polygon class="arrowhead" points="272,64 260,58.4 260,69.6" fill="black" transform="rotate(0,264,64)"/>
            <polygon class="arrowhead" points="224,144 212,138.4 212,149.6" fill="black" transform="rotate(180,216,144)"/>
            <polygon class="arrowhead" points="224,80 212,74.4 212,85.6" fill="black" transform="rotate(180,216,80)"/>
            <polygon class="arrowhead" points="144,48 132,42.4 132,53.6" fill="black" transform="rotate(0,136,48)"/>
            <polygon class="arrowhead" points="96,160 84,154.4 84,165.6" fill="black" transform="rotate(180,88,160)"/>
            <g class="text">
              <text x="44" y="52">Client</text>
              <text x="112" y="52">1</text>
              <text x="176" y="52">RS1</text>
              <text x="300" y="52">AS</text>
              <text x="424" y="52">RS2</text>
              <text x="44" y="68">Instance</text>
              <text x="240" y="68">2</text>
              <text x="240" y="84">3</text>
              <text x="312" y="132">4</text>
              <text x="312" y="148">5</text>
              <text x="112" y="164">6</text>
            </g>
          </svg>
        </artwork>
        <artwork type="ascii-art"><![CDATA[
+--------+       +-------+       +------+       +-------+
| Client +--(1)->|  RS1  |       |  AS  |       |  RS2  |
|Instance|       |       +--(2)->|      |       |       |
|        |       |       |<-(3)--+      |       |       |
|        |       |       |       +------+       |       |
|        |       |       |                      |       |
|        |       |       +-----------(4)------->|       |
|        |       |       |<----------(5)--------+       |
|        |<-(6)--+       |                      |       |
+--------+       +-------+                      +-------+
]]></artwork>
      </artset>
      <ol spacing="normal" type="1"><li>
          <t>The client instance calls RS1 with an access token.</t>
        </li>
        <li>
          <t>RS1 presents that token to the AS to get a derived token
 for use at RS2. RS1 indicates that it has no ability
 to interact with the RO. Note that
 RS1 signs its request with its own key, not the token's
 key or the client instance's key.</t>
        </li>
        <li>
          <t>The AS returns a derived token to RS1 for use at RS2.</t>
        </li>
        <li>
          <t>RS1 calls RS2 with the token from (3).</t>
        </li>
        <li>
          <t>RS2 fulfills the call from RS1.</t>
        </li>
        <li>
          <t>RS1 fulfills the call from the original client instance.</t>
        </li>
      </ol>
      <t>If the RS needs to derive a token from one presented to it, it can
request one from the AS by making a token request as described in
<xref target="GNAP"/> and presenting the existing access token's
value in the "existing_access_token" field.</t>
      <t>Since the RS is acting as a client instance,
the RS <bcp14>MUST</bcp14> identify itself with its own key in the <tt>client</tt> field and sign the
request just as any client instance would, as described in <xref target="authentication"/>.
The AS <bcp14>MUST</bcp14> determine that the token being presented is appropriate for use
at the RS making the token chaining request.</t>
      <artwork><![CDATA[
POST /tx HTTP/1.1
Host: server.example.com
Content-Type: application/json
Detached-JWS: ejy0...

{
    "access_token": {
        "access": [
            {
                "actions": [
                    "read",
                    "write",
                    "dolphin"
                ],
                "locations": [
                    "https://server.example.net/",
                    "https://resource.local/other"
                ],
                "datatypes": [
                    "metadata",
                    "images"
                ]
            },
            "dolphin-metadata"
        ]
    },
    "client": "7C7C4AZ9KHRS6X63AJAO",
    "existing_access_token": "OS9M2PMHKUR64TB8N6BW7OZB8CDFONP219RP1LT0"
}
]]></artwork>
      <t>The AS responds with a token for the downstream RS2 as described in
<xref target="GNAP"/>. The downstream RS2 could
repeat this process as necessary for calling further RS's.</t>
    </section>
    <section anchor="IANA">
      <name>IANA Considerations</name>
      <t>IANA is requested to add values to existing registries and to create 5 registries in the Grant Negotiation and Authorization Protocol registry.</t>
      <section anchor="IANA-well-known">
        <name>Well-Known URI</name>
        <t>The "gnap-as-rs" URI suffix is registered into the Well-Known URIs Registry to support RS-facing discovery of the AS.</t>
        <dl>
          <dt>URI Suffix:</dt>
          <dd>
            <t>gnap-as-rs</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Specification Document:</dt>
          <dd>
            <t><xref target="discovery"/> of RFC xxxx</t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>Permanent</t>
          </dd>
        </dl>
      </section>
      <section anchor="IANA-grant-request">
        <name>GNAP Grant Request Parameters</name>
        <t>The following parameter is registered into the GNAP Grant Request Parameters registry:</t>
        <dl>
          <dt>Name:</dt>
          <dd>
            <t><tt>existing_access_token</tt></t>
          </dd>
          <dt>Type:</dt>
          <dd>
            <t>string</t>
          </dd>
          <dt>Specification document(s):</dt>
          <dd>
            <t><xref target="token-chaining"/> of RFC xxxx</t>
          </dd>
        </dl>
      </section>
      <section anchor="IANA-token-format">
        <name>GNAP Token Formats Registry</name>
        <t>This document defines a GNAP token format, for which IANA is asked to create and maintain a new registry titled "GNAP Token Formats". Initial values for this registry are given in <xref target="IANA-token-format-contents"/>. Future assignments and modifications to existing assignment are to be made through the Specification Required registration policy <xref target="RFC8126"/>.</t>
        <t>The Designated Expert (DE) is expected to ensure that:</t>
        <ul spacing="normal">
          <li>
            <t>all registrations follow the template presented in <xref target="IANA-token-format-template"/>.</t>
          </li>
          <li>
            <t>the format's definition is sufficiently unique from other formats provided by existing parameters.</t>
          </li>
          <li>
            <t>the format's definition specifies the format of the access token in sufficient detail to allow for the AS and RS to be able to communicate the token information.</t>
          </li>
        </ul>
        <section anchor="IANA-token-format-template">
          <name>Registry Template</name>
          <dl>
            <dt>Name</dt>
            <dd>
              <t>The name of the format.</t>
            </dd>
            <dt>Status</dt>
            <dd>
              <t>Whether or not the format is in active use. Possible values are Active and Deprecated.</t>
            </dd>
            <dt>Description</dt>
            <dd>
              <t>Human-readable description of the access token format.</t>
            </dd>
            <dt>Reference</dt>
            <dd>
              <t>The specification that defines the token format.</t>
            </dd>
          </dl>
        </section>
        <section anchor="IANA-token-format-contents">
          <name>Initial Registry Contents</name>
          <table>
            <name>Initial contents of the GNAP Token Formats Registry.</name>
            <thead>
              <tr>
                <th align="left">Name</th>
                <th align="left">Status</th>
                <th align="left">Description</th>
                <th align="left">Reference</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">
                  <tt>jwt-signed</tt></td>
                <td align="left">Active</td>
                <td align="left">JSON Web Token, signed with JWS</td>
                <td align="left">
                  <xref target="JWT"/></td>
              </tr>
              <tr>
                <td align="left">
                  <tt>jwt-encrypted</tt></td>
                <td align="left">Active</td>
                <td align="left">JSON Web Token, encrypted with JWE</td>
                <td align="left">
                  <xref target="JWT"/></td>
              </tr>
              <tr>
                <td align="left">
                  <tt>macaroon</tt></td>
                <td align="left">Active</td>
                <td align="left">Macaroon</td>
                <td align="left">
                  <xref target="MACAROON"/></td>
              </tr>
              <tr>
                <td align="left">
                  <tt>biscuit</tt></td>
                <td align="left">Active</td>
                <td align="left">Biscuit</td>
                <td align="left">
                  <xref target="BISCUIT"/></td>
              </tr>
              <tr>
                <td align="left">
                  <tt>zcap</tt></td>
                <td align="left">Active</td>
                <td align="left">ZCAP</td>
                <td align="left">
                  <xref target="ZCAPLD"/></td>
              </tr>
            </tbody>
          </table>
        </section>
      </section>
      <section anchor="IANA-token-introspection-request">
        <name>GNAP Token Introspection Request Registry</name>
        <t>This document defines GNAP token introspection, for which IANA is asked to create and maintain a new registry titled "GNAP Token Introspection Request". Initial values for this registry are given in <xref target="IANA-token-introspection-request-contents"/>. Future assignments and modifications to existing assignment are to be made through the Specification Required registration policy <xref target="RFC8126"/>.</t>
        <t>The Designated Expert (DE) is expected to ensure that:</t>
        <ul spacing="normal">
          <li>
            <t>all registrations follow the template presented in <xref target="IANA-token-introspection-request-template"/>.</t>
          </li>
          <li>
            <t>the claim's definition is sufficiently orthogonal to other claims defined in the registry so as avoid overlapping functionality.</t>
          </li>
          <li>
            <t>the claim's definition specifies the syntax and semantics of the claim in sufficient detail to allow for the AS and RS to be able to communicate the token values.</t>
          </li>
        </ul>
        <section anchor="IANA-token-introspection-request-template">
          <name>Registry Template</name>
          <dl>
            <dt>Name</dt>
            <dd>
              <t>The name of the claim.</t>
            </dd>
            <dt>Type</dt>
            <dd>
              <t>The JSON data type of the claim value.</t>
            </dd>
            <dt>Reference</dt>
            <dd>
              <t>The specification that defines the token.</t>
            </dd>
          </dl>
        </section>
        <section anchor="IANA-token-introspection-request-contents">
          <name>Initial Registry Contents</name>
          <t>The table below contains the initial contents of the GNAP Token Introspection Registry.</t>
          <table>
            <name>Initial contents of the GNAP Token Introspection Request Registry.</name>
            <thead>
              <tr>
                <th align="left">Name</th>
                <th align="left">Type</th>
                <th align="left">Reference</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">access_token</td>
                <td align="left">string</td>
                <td align="left">
                  <xref target="introspection"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">proof</td>
                <td align="left">string</td>
                <td align="left">
                  <xref target="introspection"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">resource_server</td>
                <td align="left">object/string</td>
                <td align="left">
                  <xref target="introspection"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">access</td>
                <td align="left">array of strings/objects</td>
                <td align="left">
                  <xref target="introspection"/> of RFC xxxx</td>
              </tr>
            </tbody>
          </table>
        </section>
      </section>
      <section anchor="IANA-token-introspection">
        <name>GNAP Token Introspection Response Registry</name>
        <t>This document defines GNAP token introspection, for which IANA is asked to create and maintain a new registry titled "GNAP Token Introspection Response". Initial values for this registry are given in <xref target="IANA-token-introspection-contents"/>. Future assignments and modifications to existing assignment are to be made through the Specification Required registration policy <xref target="RFC8126"/>.</t>
        <t>The Designated Expert (DE) is expected to ensure that:</t>
        <ul spacing="normal">
          <li>
            <t>all registrations follow the template presented in <xref target="IANA-token-introspection-template"/>.</t>
          </li>
          <li>
            <t>the claim's definition is sufficiently orthogonal to other claims defined in the registry so as avoid overlapping functionality.</t>
          </li>
          <li>
            <t>the claim's definition specifies the syntax and semantics of the claim in sufficient detail to allow for the AS and RS to be able to communicate the token values.</t>
          </li>
        </ul>
        <section anchor="IANA-token-introspection-template">
          <name>Registry Template</name>
          <dl>
            <dt>Name</dt>
            <dd>
              <t>The name of the claim.</t>
            </dd>
            <dt>Type</dt>
            <dd>
              <t>The JSON data type of the claim value.</t>
            </dd>
            <dt>Reference</dt>
            <dd>
              <t>The specification that defines the token.</t>
            </dd>
          </dl>
        </section>
        <section anchor="IANA-token-introspection-contents">
          <name>Initial Registry Contents</name>
          <t>The table below contains the initial contents of the GNAP Token Introspection Registry.</t>
          <table>
            <name>Initial contents of the GNAP Token Introspection Response Registry.</name>
            <thead>
              <tr>
                <th align="left">Name</th>
                <th align="left">Type</th>
                <th align="left">Reference</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">active</td>
                <td align="left">boolean</td>
                <td align="left">
                  <xref target="introspection"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">access</td>
                <td align="left">array of strings/objects</td>
                <td align="left">
                  <xref target="introspection"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">key</td>
                <td align="left">object/string</td>
                <td align="left">
                  <xref target="introspection"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">flags</td>
                <td align="left">array of strings</td>
                <td align="left">
                  <xref target="introspection"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">exp</td>
                <td align="left">integer</td>
                <td align="left">
                  <xref target="introspection"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">iat</td>
                <td align="left">integer</td>
                <td align="left">
                  <xref target="introspection"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">nbf</td>
                <td align="left">integer</td>
                <td align="left">
                  <xref target="introspection"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">aud</td>
                <td align="left">string or array of strings</td>
                <td align="left">
                  <xref target="introspection"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">sub</td>
                <td align="left">string</td>
                <td align="left">
                  <xref target="introspection"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">iss</td>
                <td align="left">string</td>
                <td align="left">
                  <xref target="introspection"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">instance_id</td>
                <td align="left">string</td>
                <td align="left">
                  <xref target="introspection"/> of RFC xxxx</td>
              </tr>
            </tbody>
          </table>
        </section>
      </section>
      <section anchor="IANA-resource-registration-request">
        <name>GNAP Resource Set Registration Request Parameters Registry</name>
        <t>This document defines a means to register a resource set for a GNAP AS, for which IANA is asked to create and maintain a new registry titled "GNAP Resource Set Registration Request Parameters". Initial values for this registry are given in <xref target="IANA-resource-registration-request-contents"/>. Future assignments and modifications to existing assignment are to be made through the Expert Review registration policy <xref target="RFC8126"/>.</t>
        <t>The Designated Expert (DE) is expected to ensure that:</t>
        <ul spacing="normal">
          <li>
            <t>all registrations follow the template presented in <xref target="IANA-resource-registration-request-template"/>.</t>
          </li>
          <li>
            <t>the parameter's definition is sufficiently orthogonal to other claims defined in the registry so as avoid overlapping functionality.</t>
          </li>
          <li>
            <t>the parameter's definition specifies the syntax and semantics of the claim in sufficient detail to allow for the AS and RS to be able to communicate the resource set.</t>
          </li>
        </ul>
        <section anchor="IANA-resource-registration-request-template">
          <name>Registry Template</name>
          <dl>
            <dt>Name</dt>
            <dd>
              <t>The name of the parameter.</t>
            </dd>
            <dt>Type</dt>
            <dd>
              <t>The JSON data type of the parameter value.</t>
            </dd>
            <dt>Reference</dt>
            <dd>
              <t>The specification that defines the token.</t>
            </dd>
          </dl>
        </section>
        <section anchor="IANA-resource-registration-request-contents">
          <name>Initial Registry Contents</name>
          <t>The table below contains the initial contents of the GNAP Resource Set Registration Request Parameters Registry.</t>
          <table>
            <name>Initial contents of the GNAP Resource Set Registration Request Parameters Registry.</name>
            <thead>
              <tr>
                <th align="left">Name</th>
                <th align="left">Type</th>
                <th align="left">Reference</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">access</td>
                <td align="left">array of strings/objects</td>
                <td align="left">
                  <xref target="rs-register-resource-handle"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">resource_server</td>
                <td align="left">string or object</td>
                <td align="left">
                  <xref target="rs-register-resource-handle"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">token_formats_supported</td>
                <td align="left">string</td>
                <td align="left">
                  <xref target="rs-register-resource-handle"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">token_introspection_required</td>
                <td align="left">boolean</td>
                <td align="left">
                  <xref target="rs-register-resource-handle"/> of RFC xxxx</td>
              </tr>
            </tbody>
          </table>
        </section>
      </section>
      <section anchor="IANA-resource-registration-response">
        <name>GNAP Resource Set Registration Response Parameters</name>
        <t>This document defines a means to register a resource set for a GNAP AS, for which IANA is asked to create and maintain a new registry titled "GNAP Resource Set Registration Response Parameters". Initial values for this registry are given in <xref target="IANA-resource-registration-response-contents"/>. Future assignments and modifications to existing assignment are to be made through the Expert Review registration policy <xref target="RFC8126"/>.</t>
        <t>The Designated Expert (DE) is expected to ensure that:</t>
        <ul spacing="normal">
          <li>
            <t>all registrations follow the template presented in <xref target="IANA-resource-registration-response-template"/>.</t>
          </li>
          <li>
            <t>the parameter's definition is sufficiently orthogonal to other claims defined in the registry so as avoid overlapping functionality.</t>
          </li>
          <li>
            <t>the parameter's definition specifies the syntax and semantics of the claim in sufficient detail to allow for the AS and RS to be able to communicate the resource set.</t>
          </li>
        </ul>
        <section anchor="IANA-resource-registration-response-template">
          <name>Registry Template</name>
          <dl>
            <dt>Name</dt>
            <dd>
              <t>The name of the parameter.</t>
            </dd>
            <dt>Type</dt>
            <dd>
              <t>The JSON data type of the parameter value.</t>
            </dd>
            <dt>Reference</dt>
            <dd>
              <t>The specification that defines the token.</t>
            </dd>
          </dl>
        </section>
        <section anchor="IANA-resource-registration-response-contents">
          <name>Initial Registry Contents</name>
          <t>The table below contains the initial contents of the GNAP Resource Set Registration Response Parameters Registry.</t>
          <table>
            <name>Initial contents of the GNAP Resource Set Registration Response Parameters Registry.</name>
            <thead>
              <tr>
                <th align="left">Name</th>
                <th align="left">Type</th>
                <th align="left">Reference</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">resource_reference</td>
                <td align="left">string</td>
                <td align="left">
                  <xref target="rs-register-resource-handle"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">instance_id</td>
                <td align="left">string</td>
                <td align="left">
                  <xref target="rs-register-resource-handle"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">introspection_endpoint</td>
                <td align="left">string</td>
                <td align="left">
                  <xref target="rs-register-resource-handle"/> of RFC xxxx</td>
              </tr>
            </tbody>
          </table>
        </section>
      </section>
      <section anchor="IANA-rs-discovery">
        <name>GNAP RS-Facing Discovery Document Fields</name>
        <t>This document defines a means to for a GNAP AS to be discovered by a GNAP RS, for which IANA is asked to create and maintain a new registry titled "GNAP RS-Facing Discovery Document Fields". Initial values for this registry are given in <xref target="IANA-rs-discovery-contents"/>. Future assignments and modifications to existing assignment are to be made through the Expert Review registration policy <xref target="RFC8126"/>.</t>
        <t>The Designated Expert (DE) is expected to ensure that:</t>
        <ul spacing="normal">
          <li>
            <t>all registrations follow the template presented in <xref target="IANA-rs-discovery-template"/>.</t>
          </li>
          <li>
            <t>the claim's definition is sufficiently orthogonal to other claims defined in the registry so as avoid overlapping functionality.</t>
          </li>
          <li>
            <t>the claim's definition specifies the syntax and semantics of the claim in sufficient detail to allow for RS to be able to communicate with the AS.</t>
          </li>
        </ul>
        <section anchor="IANA-rs-discovery-template">
          <name>Registry Template</name>
          <dl>
            <dt>Name</dt>
            <dd>
              <t>The name of the parameter.</t>
            </dd>
            <dt>Type</dt>
            <dd>
              <t>The JSON data type of the parameter value.</t>
            </dd>
            <dt>Reference</dt>
            <dd>
              <t>The specification that defines the token.</t>
            </dd>
          </dl>
        </section>
        <section anchor="IANA-rs-discovery-contents">
          <name>Initial Registry Contents</name>
          <t>The table below contains the initial contents of the GNAP RS-Facing Discovery Registry.</t>
          <table>
            <name>Initial contents of the GNAP RS-Facing Discovery Document Fields Registry.</name>
            <thead>
              <tr>
                <th align="left">Name</th>
                <th align="left">Type</th>
                <th align="left">Reference</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">introspection_endpoint</td>
                <td align="left">string</td>
                <td align="left">
                  <xref target="discovery"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">token_formats_supported</td>
                <td align="left">array of strings</td>
                <td align="left">
                  <xref target="discovery"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">resource_registration_endpoint</td>
                <td align="left">string</td>
                <td align="left">
                  <xref target="discovery"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">grant_request_endpoint</td>
                <td align="left">string</td>
                <td align="left">
                  <xref target="discovery"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">key_proofs_supported</td>
                <td align="left">array of strings</td>
                <td align="left">
                  <xref target="discovery"/> of RFC xxxx</td>
              </tr>
            </tbody>
          </table>
        </section>
      </section>
      <section anchor="IANA-error-code">
        <name>GNAP RS-Facing Error Codes</name>
        <t>This document defines a set of errors that the AS can return to the RS, for which IANA is asked to create and maintain a new registry titled "GNAP RS-Facing Error Codes". Initial values for this registry are given in <xref target="IANA-error-code-contents"/>. Future assignments and modifications to existing assignment are to be made through the Specification Required registration policy <xref target="RFC8126"/>.</t>
        <t>The DE is expected to ensure that:</t>
        <ul spacing="normal">
          <li>
            <t>all registrations follow the template presented in <xref target="IANA-error-code-template"/>.</t>
          </li>
          <li>
            <t>the error response is sufficiently unique from other errors to provide actionable information to the client instance.</t>
          </li>
          <li>
            <t>the definition of the error response specifies all conditions in which the error response is returned, and what the client instance's expected action is.</t>
          </li>
        </ul>
        <section anchor="IANA-error-code-template">
          <name>Registration Template</name>
          <dl newline="true">
            <dt>Error:</dt>
            <dd>
              <t>A unique string code for the error.</t>
            </dd>
            <dt>Specification document(s):</dt>
            <dd>
              <t>Reference to the document(s) that specify the
  value, preferably including a URI that can be used
  to retrieve a copy of the document(s). An indication of the
  relevant sections may also be included but is not required.</t>
            </dd>
          </dl>
        </section>
        <section anchor="IANA-error-code-contents">
          <name>Initial Contents</name>
          <table>
            <name>Initial contents of the GNAP RS-Facing Error Codes Registry.</name>
            <thead>
              <tr>
                <th align="left">Error</th>
                <th align="left">Specification document(s)</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">invalid_request</td>
                <td align="left">
                  <xref target="response-error"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">invalid_resource_server</td>
                <td align="left">
                  <xref target="response-error"/> of RFC xxxx</td>
              </tr>
              <tr>
                <td align="left">invalid_access</td>
                <td align="left">
                  <xref target="response-error"/> of RFC xxxx</td>
              </tr>
            </tbody>
          </table>
        </section>
      </section>
    </section>
    <section anchor="Security">
      <name>Security Considerations</name>
      <t>In addition to the normative requirements in this document and in <xref target="GNAP"/>, implementers are
strongly encouraged to consider these additional security considerations in implementations
and deployments of GNAP.</t>
      <section anchor="security-tls">
        <name>TLS Protection in Transit</name>
        <t>All requests in GNAP made over untrusted network connections have to be made over TLS as outlined in <xref target="BCP195"/>
to protect the contents of the request and response from manipulation and interception by an attacker.
This includes all requests from a client instance to the RS and all requests from the RS to an AS.</t>
      </section>
      <section anchor="security-token-validation">
        <name>Token Validation</name>
        <t>The RS has a responsibility to validate the incoming access token in a manner consistent with its deployment.
For self-contained stateless tokens such as those described in <xref target="token-format"/>, this consists of actions such
as validating the token's signature and ensuring the relevant fields and results are appropriate for the
request being made. For reference-style tokens or tokens that are otherwise opaque to the RS, the token introspection
RS-facing API can be used to provide updated information about the state of the token, as described in <xref target="introspection"/>.</t>
        <t>The RS needs to validate that a token:</t>
        <ul spacing="normal">
          <li>
            <t>Is intended for this RS (audience restriction)</t>
          </li>
          <li>
            <t>Is presented using the appropriate key for the token (see also <xref target="security-key-proof"/>)
  Subject identification (the RS knows who authorized the token)
  Issuer restriction (the RS knows who created the token, including signing a structure or providing introspection to prove this)</t>
          </li>
        </ul>
        <t>Even though key proofing mechanisms have to cover the value of the token, validating the key proofing alone
is not sufficient to protect a request to an RS.
If an RS validates only the presentation method as described in <xref target="security-key-proof"/> without validating the
token itself, an attacker could use a compromised key or a confused deputy to make arbitrary calls to the RS
beyond what has been authorized by the RO.</t>
      </section>
      <section anchor="security-token-cache">
        <name>Caching Token Validation Result</name>
        <t>Since token validation can be an expensive process, requiring either cryptographic operations or network calls to an introspection
service as described in <xref target="introspection"/>, an RS could cache the results of token validation for a particular token.
The trade offs of using a cached validation for a token present an important decision space for implementers: relying on a cached validation result
increases performance and lowers processing overhead, but it comes at the expense of the liveness and accuracy of the information
in the cache. While a cached value is in use at the RS, an attacker could present a revoked token and have it accepted by the RS.</t>
        <t>As with any cache, the consistency of this cache can be managed in a variety of ways. One of the most simple
methods is managing the lifetime of the cache in order to balance the performance and security properties.
Too long of a cache, and an attacker has a larger window in which to use a revoked token. Too short of a window and
the benefits of using the cache are diminished.
It is also possible that an AS could send a proactive signal to the RS to invalidate revoked access tokens, though such a mechanism
is outside the scope of this specification.</t>
      </section>
      <section anchor="security-key-proof">
        <name>Key Proof Validation</name>
        <t>For key-bound access tokens, the proofing method needs to be validated alongside the value of the token itself as described in <xref target="security-token-validation"/>.
The process of validation is defined by the key proofing method, as described in <xref section="7.3" sectionFormat="of" target="GNAP"/>.</t>
        <t>If the proofing method is not validated, an attacker could use a compromised token without access to the token's bound key.</t>
        <t>The RS also needs to ensure that the proofing method is appropriate for the key associated with the token, including any choice of
algorithm or identifiers.</t>
        <t>The proofing should be validated independently on each request to the RS, particularly as aspects of the call could vary.
As such, the RS should never cache the results of a proof validation from one message and apply it to a subsequent message.</t>
      </section>
      <section anchor="token-exfiltration">
        <name>Token Exfiltration</name>
        <t>Since the RS sees the token value, it is possible for a compromised RS to leak that value to an attacker.
As such, the RS needs to protect token values as sensitive information and protect them from exfiltration.</t>
        <t>This is especially problematic with bearer tokens and tokens bound to a shared key, since an RS has access
to all information necessary to create a new, valid request using the token in question.</t>
      </section>
      <section anchor="security-token-reuse-by-rs">
        <name>Token Re-Use by an RS</name>
        <t>If the access token is a bearer token, or the RS has access to the key material needed to present the token,
the RS could be tricked into re-using an access token presented to it by a client. While it is possible to build
a system that makes use of this artifact as a feature, it is safer to exchange the incoming access token for
another contextual token for use by the RS, as described in <xref target="token-chaining"/>. This access token can be bound
to the RS's own keys and limited to access needed by the RS, instead of the full set of rights associated with
the token issued to the client instance.</t>
      </section>
      <section anchor="token-format-considerations">
        <name>Token Format Considerations</name>
        <t>With formatted tokens, the format of the token is likely to have its own considerations, and the RS needs
to follow any such considerations during the token validation process. The application and scope of
these considerations is specific to the format and outside the scope of this specification.</t>
      </section>
      <section anchor="over-sharing-token-contents">
        <name>Over-sharing Token Contents</name>
        <t>The contents of the access token model divulge to the RS information about the access token's context and rights.
This is true whether the contents are parsed from the token itself or sent in an introspection response.</t>
        <t>It's likely that every RS does not need to know all details of the token model, especially in systems where
a single access token is usable across multiple RS's. An attacker could use this to gain information about
the larger system by compromising only one RS. By limiting the information available to only
that which is relevant to a specific RS, such as using a limited introspection reply as defined in <xref target="introspection"/>,
a system can follow the principle of least disclosure to each RS.</t>
      </section>
      <section anchor="resource-references">
        <name>Resource References</name>
        <t>Resource references, as returned by the protocol in <xref target="rs-register-resource-handle"/>, are intended to be opaque to
both the RS and the client. However, since they are under the control of the AS, the AS can put whatever content
it wants into the reference value. This value could unintentionally disclose system structure or other internal
details if it processed by an unintended party. Furthermore, such patterns could lead to the client software and
RS depending on certain structures being present in the reference value, which diminishes the separation of concerns
of the different roles in a GNAP system.</t>
        <t>To mitigate this, the AS should only use fully random or encrypted values for resource references.</t>
      </section>
      <section anchor="token-re-issuance-from-an-untrusted-as">
        <name>Token Re-Issuance From an Untrusted AS</name>
        <t>It is possible for an attacker's client instance to issue its own tokens to another client instance, acting as
an AS that the second client instance has chosen to trust. If the token is a bearer token or the re-issuance
is bound using an AS-provided key, the target client instance will not be able to tell that the token was originally
issued by the valid AS. This process allows an attacker to insert their own session and rights into an unsuspecting
client instance, in the guise of a token valid for the attacker that appears to have been issued to the target
client instance on behalf of its own RO.</t>
        <t>This attack is predicated on a misconfiguration with the targeted client, as it has been configured to get tokens
from the attacker's AS and use those tokens with the target RS, which has no association with the attacker's AS.
However, since the token is ultimately coming from the trusted AS, and is being presented with a valid key,
the RS has no way of telling that the token was passed through an intermediary.</t>
        <t>To mitigate this, the RS can publish its association with the trusted AS through either discovery or documentation.
Therefore, a client properly following this association would only go directly to the trusted RS directly for
access tokens for the RS.</t>
        <t>Furthermore, limiting the use of bearer tokens and AS-provided keys to only highly trusted AS's and limited circumstances
prevents the attacker from being able to willingly exfiltrate their token to an unsuspecting client instance.</t>
      </section>
      <section anchor="introspection-of-token-keys">
        <name>Introspection of Token Keys</name>
        <t>The introspection response defined in <xref target="introspection"/> provides a means for the AS to tell the RS the key
material needed to validate the key proof of the request. Capture of the introspection response can expose
these security keys to an attacker. In the case of asymmetric cryptography, only the public key is exposed,
and the token cannot be re-used by the attacker based on this result alone. This could potentially divulge
information about the client instance that was unknown otherwise.</t>
        <t>If an access token is bound to a symmetric key, the RS will need access to the full key value in order to validate
the key proof of the request, as described in <xref target="security-key-proof"/>. However, divulging the key
material to the RS also gives the RS the ability to create a new request with the token.
In this circumstance, the RS is under similar risk of token exfiltration and
re-use as a bearer token, as described in <xref target="security-token-reuse-by-rs"/>. Consequently, symmetric
keys should only be used in systems where the RS can be fully trusted to not create a new request with
tokens presented to it.</t>
      </section>
      <section anchor="security-rs-registration">
        <name>RS Registration and Management</name>
        <t>Most functions of the RS-facing API in <xref target="rs-facing-api"/> are protected by requiring the RS to
present proof of a signing key along with the request, in order to identify the RS making the
call, potentially coupled with an AS-specific access token.
This practice allows the AS to differentially respond to API calls to different RS's, such as
answering introspection calls with only the access rights relevant to a given RS instead of
all access rights an access token could be good for.</t>
        <t>While the means by which an RS and its keys become known to the AS is out of scope for this
specification, it is anticipated that common practice will be to statically register an
RS, allowing it to protect specific resources or certain classes of resources.
Fundamentally, the RS can only offer the resources that it serves. However, a rogue AS could
attempt to register a set of resources that mimics a different RS in order to solicit an access
token usable at the target RS. If the access token is a bearer token or is bound to a symmetric
key that is known to the RS, then the attacker's RS gains the ability and knowledge needed
to use that token elsewhere.</t>
        <t>In some ecosystems, dynamic registration of an RS and its associated resources is feasible.
In such systems, the identity of the RS could be conveyed by a URI passed in the <tt>location</tt> field
of an access rights request, thereby allowing the AS to limit the view the RS has into the
larger system.</t>
      </section>
    </section>
    <section anchor="Privacy">
      <name>Privacy Considerations</name>
      <section anchor="token-contents">
        <name>Token Contents</name>
        <t>The contents of the access token could potentially contain personal information about the end-user, RO, or other parties.
This is true whether the contents are parsed from the token itself or sent in an introspection response.</t>
        <t>While an RS will sometimes need this information for processing, it's often the case that an RS is exposed to these
details only in passing, and not intentionally. For example, consider a client that is issued an access token that is
usable for both medical and non-medical APIs. If this access token contains a medical record number to facilitate the
RS serving the medical API, then any RS for a non-medical API would also learn the user's medical record number
in the process, even though that API has no need to make such a correlation.</t>
        <t>To mitigate this, a formatted token could contain separate sections targeted to different RS's to segregate data.
Alternatively, token introspection can be used to limit the data returned to each RS, as defined in <xref target="introspection"/>.</t>
      </section>
      <section anchor="token-use-disclosure-through-introspection">
        <name>Token Use Disclosure through Introspection</name>
        <t>When introspection is used by an RS, the AS is made aware of a particular token being used at a particular RS.
When the RS is a separate system, the AS would not otherwise have insight into this action. This can potentially
lead to the AS learning about patterns and actions of particular end users by watching which RS's are accessed
and when.</t>
      </section>
      <section anchor="mapping-a-user-to-an-as">
        <name>Mapping a User to an AS</name>
        <t>When the client instance receives information about the protecting AS from an RS, this can be used to
derive information about the resources being protected without releasing the resources themselves. For example,
if a medical record is protected by a personal AS, an untrusted client could call an RS to discover the location
of the AS protecting the record. Since the AS is tied strongly to a single RO, the untrusted and unauthorized client
software can gain information about the resource being protected without accessing the record itself.</t>
      </section>
    </section>
    <section anchor="Acknowledgements">
      <name>Acknowledgements</name>
      <t>The editors would like to thank the feedback of the following individuals for their reviews,
implementations, and contributions:
Aaron Parecki,
Adrian Gropper,
Andrii Deinega,
Annabelle Backman,
Dmitry Barinov,
Fabien Imbault,
Florian Helmschmidt,
George Fletcher,
Justin Richer,
Kathleen Moriarty,
Leif Johansson,
Mike Varley,
Nat Sakimura,
Takahiko Kawasaki,
Yaron Sheffer.</t>
      <t>Finally, the editors want to acknowledge the immense contributions of Aaron Parecki to the content
of this document. We thank him for his insight, input, and hard work, without which GNAP would
not have grown to what it is.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="BCP195" target="https://www.rfc-editor.org/info/bcp195">
          <front>
            <title>Recommendations for Secure Use of Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS)</title>
            <author initials="Y." surname="Sheffer">
              <organization/>
            </author>
            <author initials="R." surname="Holz">
              <organization/>
            </author>
            <author initials="P." surname="Saint-Andre">
              <organization/>
            </author>
            <date year="2015" month="May"/>
          </front>
        </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="RFC3986">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <author fullname="L. Masinter" initials="L." surname="Masinter"/>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource. This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet. The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier. This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="JWT">
          <front>
            <title>JSON Web Token (JWT)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties. The claims in a JWT are encoded as a JSON object that is used as the payload of a JSON Web Signature (JWS) structure or as the plaintext of a JSON Web Encryption (JWE) structure, enabling the claims to be digitally signed or integrity protected with a Message Authentication Code (MAC) and/or encrypted.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7519"/>
          <seriesInfo name="DOI" value="10.17487/RFC7519"/>
        </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="RFC8259">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray"/>
            <date month="December" year="2017"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format. It was derived from the ECMAScript Programming Language Standard. JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="90"/>
          <seriesInfo name="RFC" value="8259"/>
          <seriesInfo name="DOI" value="10.17487/RFC8259"/>
        </reference>
        <reference anchor="GNAP">
          <front>
            <title>Grant Negotiation and Authorization Protocol</title>
            <author fullname="Justin Richer" initials="J." surname="Richer">
              <organization>Bespoke Engineering</organization>
            </author>
            <author fullname="Fabien Imbault" initials="F." surname="Imbault">
              <organization>acert.io</organization>
            </author>
            <date day="19" month="March" year="2024"/>
            <abstract>
              <t>   GNAP defines a mechanism for delegating authorization to a piece of
   software, and conveying the results and artifacts of that delegation
   to the software.  This delegation can include access to a set of APIs
   as well as subject information passed directly to the software.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-gnap-core-protocol-20"/>
        </reference>
        <reference anchor="RFC8792">
          <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>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="MACAROON" target="https://research.google/pubs/pub41892/">
          <front>
            <title>Macaroons: Cookies with Contextual Caveats for Decentralized Authorization in the Cloud</title>
            <author>
              <organization/>
            </author>
            <date year="2014"/>
          </front>
        </reference>
        <reference anchor="BISCUIT" target="https://www.biscuitsec.org/">
          <front>
            <title>Biscuit Authorization</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="ZCAPLD" target="https://w3c-ccg.github.io/zcap-spec/">
          <front>
            <title>Authorization Capabilities for Linked Data</title>
            <author>
              <organization/>
            </author>
            <date year="2023"/>
          </front>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton"/>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <author fullname="T. Narten" initials="T." surname="Narten"/>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
      </references>
    </references>
    <?line 1517?>

<section anchor="history">
      <name>Document History</name>
      <ul spacing="normal">
        <li>
          <t>-07
          </t>
          <ul spacing="normal">
            <li>
              <t>Editorial updates based on review feedback.</t>
            </li>
          </ul>
        </li>
        <li>
          <t>-06
          </t>
          <ul spacing="normal">
            <li>
              <t>Editorial updates based on review feedback.</t>
            </li>
          </ul>
        </li>
        <li>
          <t>-05
          </t>
          <ul spacing="normal">
            <li>
              <t>Added discussion of access tokens used to call the RS-facing AS APIs.</t>
            </li>
            <li>
              <t>Updated IANA sections to align with core (and each other).</t>
            </li>
            <li>
              <t>Added IANA section on introspection requests.</t>
            </li>
            <li>
              <t>Added error responses.</t>
            </li>
            <li>
              <t>Added extended discussion on resource server registration practices.</t>
            </li>
          </ul>
        </li>
        <li>
          <t>-04
          </t>
          <ul spacing="normal">
            <li>
              <t>Editorial cleanup.</t>
            </li>
            <li>
              <t>Updated IANA requirements, including "specification required" registration.</t>
            </li>
            <li>
              <t>Added privacy and security considerations.</t>
            </li>
            <li>
              <t>Clarified and expanded token introspection request and response.</t>
            </li>
            <li>
              <t>Clarified and expanded resource set registration request and response, include example of use of resource reference.</t>
            </li>
            <li>
              <t>Updated discovery.</t>
            </li>
            <li>
              <t>Allow optional tokens on RS-facing API requests.</t>
            </li>
            <li>
              <t>Tighter controls over derived tokens.</t>
            </li>
          </ul>
        </li>
        <li>
          <t>-03
          </t>
          <ul spacing="normal">
            <li>
              <t>Added token model.</t>
            </li>
            <li>
              <t>Added IANA sections.</t>
            </li>
          </ul>
        </li>
        <li>
          <t>-02
          </t>
          <ul spacing="normal">
            <li>
              <t>Editorial and formatting fixes.</t>
            </li>
          </ul>
        </li>
        <li>
          <t>-01
          </t>
          <ul spacing="normal">
            <li>
              <t>Better described RS authentication.</t>
            </li>
            <li>
              <t>Added access token format registry.</t>
            </li>
            <li>
              <t>Filled out introspection protocol.</t>
            </li>
            <li>
              <t>Filled out resource registration protocol.</t>
            </li>
            <li>
              <t>Expanded RS-facing discovery mechanisms.</t>
            </li>
            <li>
              <t>Moved client-facing RS response back to GNAP core document.</t>
            </li>
          </ul>
        </li>
        <li>
          <t>-00
          </t>
          <ul spacing="normal">
            <li>
              <t>Extracted resource server section.</t>
            </li>
          </ul>
        </li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+196XrbyLXg/3oKjPr7xvZckt7avWjuJm9pdXuLJKdvJ5PP
BskihRYI8AKgZMb2fZZ5lnmyOWttACXZ3UkmmfSPxCKAWk6dfavxeGy6oivt
fnbjN01eddkLu6y7Iu+Kusryap4dbLrTuin+xL+8auquntVldmTbetPMbHZs
m3PbZI/qqrIzfKe9Yeb1rMpXMOa8yRfduLDdYrys8vW4ka/GLX3Vju98bWZ5
B1M22/2s7ebGFOtmP+uaTdvdu3Pn2zv3TN7YfB+mmW2aotuai7o5Wzb1Zr2f
/ebFwStzZrfw03w/O6w621S2Gz/GSY1pO1j+m7ysK1jI1rZmXexnf4DVjzL4
n6Ka26obZW3ddI1dtPCv7Ur+0TXFDB7N6tU6l3+s4GV4VFRlUdlRBhtc5et1
US3/aExOENo3WTaGF9r97PtJdlTMTm0DP2UZQ+J72FBRhb/XzTKvBK772UPb
ruszmz2pljCDbWBoesuu8qLczxCE//4zjTFpaIwJfE9vAFj2s9OuW7f7t29P
2/XZpKhv05OmxnO186KrG+OX93SSHa6m+absgvU9zaeFraIH8QLzmW06GDpc
1YI+mhT80b9Hr0TL0ie3janqZgVDntt9eu3ho1d3v33A/86yLm+WtgNc1A8v
Li4mzWI25k3gnm8X1aK+PZ2t4bMb+hlj8JHlk5rTkttsUTeMNzZ73dqsXmQn
gOIA56bLnuVb2zisym6ePDu+Rfj+OO/yZZOvLnn3Mb4sU8NcMPPzfJvdu3P3
gfzoMYL/G7t/ZXwEP02y41O7WAgqDL5zNMm+q8s/7X7hFQySF1U3PqjmjaWn
R08f3bt799t9/eP+t998xX98/+PJPv7y9YO73+rTb+5+/aV79Zt7D+Q7JCsg
p/HjiSfcWd3Y8VqI3xigBoAEv3785NnT/WwPhsjewX97QMJwQtEhPz94dHD0
8uULDxE9aD1nYAw2b2ank2VdL0t7e72Ztvg/X9795tt7t/1nfNB7z/NZ3tQ1
QuFRXZ8Vts0uiu4UuVBn33WbvMwe5ec27xgJHtsZrLjJy+JPNuVoQJTdqc0e
lfVmvucm4mOFI/2SsfTw+NHrw5Pd60c8nRbtbFN0rZ0RnqaLfsiP4+nppd8/
Onj17PElg9+fjWez5WQJW9xMkYz+NIMzadd21gdNvLtH+RpotCw6BBGC4llR
nVnG8v5u7903ZjweZ/kUeCCwPmMQF7K5XQBParM8W9nZKfCEdkVjzW1plzBP
tRSM11m7Gt5dFwB1IDrT1ovuArh4dhMBPSuBZXS3RkRss7o6t1scAB8BEgAb
aelJ3nTFApbQItl2p3nnZgOgwfj4vg48MSenRZvBwduqxfl1wSsLq5rzxlX0
ZCJ6sptHQPEw0owllyEEivfhXj2AVwuUh/C/IGXqtW3yaWmBAban8OKEwbYq
5vPSGvMFyqKmnm9IHhpYHWwbCIgoK8NjKxbFjKe4+f49/vrx4y236nmBbH7W
Ef/mxeNuo6UZXhqvDOEl8Au3SDtEJnJh4a8RvULLiFYAwhomqepO5s9O6wt6
9eg4AyzE02gvEAgAqmKF/BC1hP/c2JaYLIjLzQzgBgR4CtAGhpZnSyB8ANZs
Zlv87Az+gOOB98syOwcinINogdfhTFvb4fnKq02xPIUJabP0i3Efg7Bt6nNA
XIAGQPvH0wKgX3Q32mxdt21BZyFwOjgmgMDyYcVTC4QBo5Zb2PpmXdq5X3Ce
tYB5cGBzuy7rLQwucGNMyNpTwC34EQRPvgSobdvOrkZ8iA5oa0Talc0Iw/5z
UwAj5vF5Xp4VpgGZ2+FG4GBBn6GJt6RYAA7sWnmzqQz+sMorWAAub503QKrl
dpStkUBmmzJvYBxAzVneWjoDOF/dGA6IPNsiGa2AtAoAgDk6Bqi1Bf6dV7be
tOV2YpiCYtT0ZC/HdHQ8BpJEaj14ddgyVQJJwCwz+L9VfmZNfg6KQa7Hkc/P
82oGKy/ruoVlj+UMMoY4KVWT7GAOwh0mzEvcWIcLAf1qg0+NX8PSVkB05Xi9
aeDIbbaqgSHwLAGiAT5enIJ+RCsCEG5amK0AcgGNctaBJgDnz8KpgwfRl3iE
KAwY5ZCAERwEiQaVswoAPBmCU162dcQjkekYWlklhzkHhe4cD2ZeX1SwFgv6
BU+Er81g58REAaHgADPgsTAWIsKEmcfK5pUwQjvIogCz2g2qjJ52ZHxhlcx1
UW/o8EQcy4hGTl4yiNso6YU9D42bshxk88SaN9OfAXgystnF/ZT5wT6/+CI7
sc2qqOqyXm5536DbZ6jctyDxXx+f7I34/7MXL+nfR09++/rw6Mlj/PfxdwfP
nrl/GHnj+LuXr5899v/yXz56+fz5kxeP+WP4NYt+MnvPD37aYxm19/LVyeHL
FwfP9lhXCNCTt0u0SnIBAEZo1QLetrOmmBLyoY77f/733S9ht/9NFLSPH+UP
VMHgD6DbimerK6Bn/hMAtzXA+EAxIuED3BPEftEBvo2Qf7XAqasMKR7A9z/+
gJD54372z6gaf/mv8gNuOPpRYRb9SDDr/9L7mIE48NPANA6a0e8JpOP1HvwU
/a1wD378539D+ysb3/3m3/7VCNNyhwGCvAPCQb5cjZ2ZAWpBvlqjIAVcJK4J
yiHrHvhzZ7PvTk5eASG0LTBZgOz3xy9fZI5fwA+vj57B/4LEa4hjAydgYxCw
s5VDI7IF/UQ42nG9CuYFHuRZMuhVBRH7NJ+dtSXoD9nb//WWhGs1R7KwGW3x
omH7khgE2LBLlJwbyycP6ofiz9ff3gPyyZBacBxgHai4ISXCukqbz3GMFuxY
BEDFwyJDZmYF6EtCDMCiTICmQb7jidERLS6TqBjBTgxvrvpzF74ubFPZSk/n
cHTP4EPRXsytjFl44w2/VqODtaH9YfaHatBI+NdoUA8KfgWqoR9fwo9gLOL5
NP+TNBgLJJa38bR6qjBz1wFJbzqw/0NWOMqW6DgBkQw8HtSSpR2p1AXw6Kwj
1m5GyhndPzJnLYEeSefYgkEegQKPSQRZzH+QbWYHvJYTFmLvv3Co+9GYg0jA
5aQbxDo8y284VzkEeCGVFWWxKiJpyXINZaFtbSJEaQ6nuzc2kCF5oLQMa34E
SJipq82Q0MKZUaagZD/Ny4Ui2NHLScYaIf7F0AwGl5Wd5w0aQaAMzAu0vHFo
1ulAwW+tRb17tmlbMQrfv6fvxjwc6OeqQMNK1jx8T8cFOQcGCAyJomEGCkRL
XJsFH0/Fku43iTITnmH2HDWby60GpR/YLCyZSZvFccm+j9NiDUDqLqytQtGu
Yv/gGJhUQTBNBLsB9KrXOXC7WHXYZT5kqfmQCzRIP0usD8C0CzQCKkuHnKEq
3FmjqCOLO0re2lSgPpE3T44SyKTOUBMFuxYZZg6M7hyUQTgTRX7g8YGlhi+C
apmLwm2iY2NFErYtqAqTskyNicehshvG4TDpia2euMcuMZ4DVZcEVgkYgvMh
0HCRsL05axFmUxVocMLqUS0EWdPYU7Rpz4F/AOfJQPtHSUN8rUVWtdwUc6WN
AsUNToTWWoH6OwClRiFiwMDPA5nGFnbb1rMix/0qGSjOpisnvgRo2humsQQL
WDZKrrkJUc5bM7agVU+3wMWYEXh1XA5BONGrw3FZnNmAR9GfQzo5kez799GP
QKVqyqTmAi2dj9phLEAATTdZHpmY+eyUZRLAD1lYNgXZHhkTXb1kO5ddB+eg
ovoTJ58HaRoRV/+RzDK1VEeZ+I5bJbH377//8QSomZA8b+bCw9D1rXyZfsss
rA/MXrtSsctUhjzli+x3KLmB56MQi1D3NCfb4w2J9jdqIRUs6NDbTQp+Tki5
BqDYufKTC7BnHR8h7o020CGeF9AkO4Hc5uNJWS12TxnRYA4wartiZUde2SAa
kjNGmtdvAauADZFfBtVfVCvYATuvV6DnAQaoIQ87VhRGJRA0BTQyAd9Iut2a
ZC/xxC6KFqe9qJ0hrWu9qDflHOkPvl7QKTtgs2rHEOPXUKnCFbrloO3FpiEh
/ewUjd3W7y8xSQPcz9shSYPEsKn8a4Q/omWpoAntWf+AwUn26Ck5ON7wmG+y
swptBUE3R5kjx3N5m4hZrVEtI2SPTOmkX8O65UjcxDdamRp+bFH3dX6x3sqj
nQVIoFrOBr0AwGwBK+05H6LIBMc7gPkVYJ3u5AyR7dXjEGJSRyJAFt8KQVuG
yVv6+W22KCwcOwv8t/zdG/rurXMMZIumXsFcx7KE+5N7+IEzbk+8XiJuT9IR
1KIfXMuQFA5cnl7hSR5FNESuGORUedNsRdlmKdYT/IKrQyOisEIpDjbNmtXa
ipwloexyU3lxbVLMROd4uQB4HC56IqBlVq+sUHXehE/4EVfkXkM2TjRVNx5Z
ULs5BDQDQh0Z5SwFxvtAbUH/SsDOc7KtyOMnSjuen7KOMYsRkpHFsspxvbhH
8mKS6gG7lJG37B6egxEwxwAETSus+RBZRDOAeegRxGfB2pErqHEFPzoXSXbi
NSijupGbm0GLGM+sGXXlsqwvvA+qsbN6WRV/clyPWL7MieyCFxK7Fk3iWpRP
Cd3VoxiIgAP0Lc6EmwYKlTrs0bIRrxb5Qp2MVH1IGYAjxDlIoBm6b4cdWSO0
q2chHRhnLrSntBBkfczQwvmmuYg53lfRIXxscS6MW5xzsE3EVpQ+ipjee+g1
l0udhuLSBNWZf5k7sf8WIA4me5kXK8GTg80c9gDMbRhTlOBQOpFXAY0h8j2v
UDFHz65DE0Ry0jRzx6Pd9/iicRhCco5xBM6WMFwxA36Vg2HoMAd2u/WrQa6P
S7Fla50kFPWP1A+cbdmAyiaahdAScVWgHNl3QKWBxu2pgw1ug6ow/vn66NA5
L2Eitm9FOV/jITXVNY7vMw8P1uwP7zAmEzoOdjC902MsWo0QCFN7W9ZsQwUi
piafQKvqnYibt6AJNvmWzpSkuyieHmyBtolrIc2IFjQaohplnsJEhELs4HgR
S4nUOVUMjQvBUGiBfAlexqi7WDD8B1j2Q+SSYJUkFhZMRHYHHuO03lTzHTR/
AwG5RDMbeT4coEeTMwtmnn1HFjoY+hHnGiCoHLYAswkKTLKnSMxlqQtyi8h5
4NiqEeiZQPQ5bswKH7qvI91HBxyxvoUKKXkRui6fnaFgIobVbqZtV3SbjhZd
NAZVNxxrviFVXbabhz422cChWPt5a9VD0W5XK9SmZrCzZQ0K6+mKdmLinbQO
EcgDTS6wzbSEz2jrF6m24VCJTHVCyh46oUMM7Xtce4hFPfToLzwbXDaejVgh
JnIRiAnH629CbUQiLyR9OJ4HqxGNTP2BCyZyXqZHfKS28xzUJjCELWFsRtql
WsXwz1mB7qKWMUccviNWHQwfJr4zF44aoJYIfcKtXmwG2Vh5kW/bkAzg+z4d
gAVCcpf25HRt3EioBAIMLJHtTFkPnH1Z12egja8HDxW+YxT26HvhNASKSYJ+
Mm/dbCHYOvaeqBgiKOQl8mLyxwNyTeFbljoulpR7HzNTDVuj/cgnqx5ppCqy
tpX/5YRObsNzyz5qO7xsVTTESaPeAJaR7aCCgcou+fa9AoSjOtsR2b1tu1HG
bEWHYX8rwZI5i/N1p9uSCUg7JYLy/lPVLg81MOR4PQ44ZQ7LdAkKUrmZU2wS
9lQv8IFzsIxCDRhFMQJ6ZcmHhDgk8h0PxHivTBhCB50SKQM9AUuL+obSK5zE
gt8cUPRkUfNgc7o2Yjg9tmi8+00QUqL01q4omj7m1ALcvpiKKLtazv9ilw6J
8Vk3AAZVSQcsweEAqgpomC4Q34HM7pmIZIzuMBC9L1a0F2KERaCj92TI1ZJR
ZBZ8w+sTs6deFaT/qJmPU5lUi2a2jnyUDEB0aGEqDguiK3SqS3SmWbV4m91E
L0sh+HBLVKiMRvxMVYwOIVDFYlESyvhIhqQSK/fIhfZQVTMtKcCLjv0lBBri
crBxaxpLYRxSYwEIq3XXKmfAdYSzK86KQITzQGOZTT3g96IiPS3zZSupV7FP
DU+QtGlveqFbc4EfhP5cpamVMFKNLBKPzUsgpRqHFbqloMUczdwo8BboRE6y
SY5PjJEJhA2aA6dqAzqPgYiiDSdOiaeZAj4ghNCWbkUqCwLiXoWB+gwU3imT
N508/XA5AfIcOpRjbzE93pvcndxNXTbo12HQsveLGQIJIM/HIzK89qKSEKmu
8RqswjwdNllGwVobC8ZVEJwdXJHOpqYnY9oRReKGIodAMaKwaEBwKIanoQKJ
6LFU3zrHIAjhvCg5+cshkQkdMoB+I8xBE1ojZYJsWornVHnpPUf9ACKuk6dQ
759C8ZuePy75MqGeNLhHKJCXKHy7EAn0c5f3FKGE1xVW+ZlPcxS1YNf3yHY1
3039ny/j12cd+0n0PRO859IB+V3PMGkBtTPsK5fFxwCW9ykq7NWxyEfIFjYa
KNZ5L2H6BpmqfE6u+ojmHDEFhySP/AZ3yVcxgK8QsUzbKUX3jnz3WYs+3j/y
a6oB11vmdcj78IoUtMs8ErKI0KN0UgDV/Q41IwxV/AiioL4Y8C4JBSpls11i
G/T3ZxiuAUDhl1m96VBW4IoliiShTMpRsY1hJSxwUHGuACvVMohMBqIB7MsC
nXskY13IBh4UjRgTODdFKw1ojeMpidyMA0jogu68tzGgTufcQ7Dg0bK6jmPF
9nIo3Ax7SvtmWyHaEAJs3TkXKHnd2o6y91oNiaCABqsyCGndaI2ugGO4nOHF
ry/QNgX1FWz9Nlrajdavm1IE5SxOAYPHrKTSvHDKrDsmioICpbHn9RkH3lBB
IRBw2gcGWfIWRZA/0p4tesMF1EaDGRn1orNBCoDa35Qk0VTqlHYq/rniYYRS
C5Mw2yhrIPHbCu6sckxVCZlm0YV6AaGQbd8U6lwzAwkb1yPIk0txKLIVlBsA
bxEqZKh+tu9Ypk8JwmMXcPtF5wKUTIySPExqKRr8QyuEEX/VFQI+NJwoGq+P
I4N86HzeQARMxJ+65Gq6+NWWTJyRXjl0DmdkvS54k2QGE5qTtZBLWNqrI0Fg
ybnUvXoYeUxdfoTT35NItPDJgXAX4j0vw0WuyJtg/PTMXlTTYt9n7mcI1llQ
UuLcpX0PvCJ01juFn7viV0QcJO5oWWEMCHC0bneLXk/tQgm7I0HEcp1HTC0z
Xh2IHE155AgMpxfi2K7G8SVmDA5m06maFuWk5UO5hqLEzrl0yjkdj15G4cjp
1oh6Rr5L8VihjKIgGNOMG50S4nBNI66oIKczOebC7DfGyb6wi3ih5La4YIWu
M+W9p3VJRNDiee3AfFq98avnhQGkFlS1EfoKa7FVGDo+KNTj+4imkjCpoSQq
EAjCptU8iC0O6UcwwK+Gu4/VyoADHHBvOQtsGHkNZngPJBAGejEVrrpcpBUK
bCZpHpqT/RMg7aAUTW8hB2Bxns8A5Yu6lABC5VyLynGi7ECTiExxw7WhjSCl
WU6BHg46MQFyeCGhQkNqViuVb6QwPq0Rn5TEFXmcJ2JoAqeHhH4dLYkADbNL
MBan8naOZvfCzkAddQkS9N2uUOREK+RwZiYAdZ/wMVFOYj/Rt+fQTqNTI2W4
+AnqLmFgVLL3QCXk4ANbV0EajcO+HdHzdHZALhNLPHaGhYYagrzeLE+56krc
lOqe3AbpkRRqwUA/opT6tJ7Akl+3mgKhWdeag0ZvZpSr6apN0oSX7GTgxJEj
BYmgXTC2IQENbLNQ77bwiSie6XhU+OkNz/9G2ZJTLqO08yht3YgzhUoXtVgx
TjWYne0gTbb3iLj1JyGeFEQeopqhHsuYQGeONADW2zHpjasJRdgsNiXQk2TJ
BfmLtlY/n4RMkb2RMob7I61jW81Om7qSwrETJ0g5Ucx7/lQxb+yiJLZNWOrE
U1t0G/E4TgP00eN3x0hs/WWAshOTBtscrGKf4aKoAKBY7rHOKWDHCpLfFf4L
5ZltgkwspHfj3O7ypWehiEnzJr+Q5BDCShjNPfeQIjOL9ANYgRdTYm4ZmXFR
kglE/yZWok6T7MCJIAnnF81ssxIkkQmV0WEpEKeqIseG9SDUHFjyQMUjtKYs
TqLLR4yPhyqXBnScMFTpuGVKiEHm1aCaE1Ks8cqOVxeEe/ooYKzGkILDSYq7
GLU3H3sIgqo4nuiUBs17CbLhFoMY20BUlOJgfSOZHAENVZmTc7+pJTwfH1NA
FRh+3RF9NSGHwjhrL6zHLs7LVB0e8k0xv67Cw3arrIC+82mP1zEAdQ8igHGC
slT10c4HdbqwnpWV934wHPHFJ4U1Is4kc1vdM0U7BEcfxdYd0OmFqV4+qC30
8CyfYu0FhdKdkdavcPFqGumKfdPEqsJU4oDC0wdTF86sXWNVGMgI51Tjj7IL
yyZGKZ53zv5OMwxFVZNvhL4aO2YjMa1JiDyzbZg8TAOw2qnH2G4WQIu0N1Do
2fDFQ3UJj4Ol3pSrTenYgVAKUoZn3KSBUYvWY0KXeOv2opAuGkc+vAY4rINB
XSAIGCkj4W0FriH64Yqs3mv6kyXNjnF6EAUjT8hnLeV6LqodbKA3wVWkTETw
KufyFUKVIwbGUF1BIB2GjtYdQRyBY42zpwmh3DDxm+I+jGwO8b50WEcO0+wb
M9aMxyCqGcbUePnjQf0xiMoMvQ6C9GbtatWOXt5ob4lIH/yKXka6lkCLeAdg
H7dkwOFyNxe70VVKVk9LSm0SIhRCyaMKTI8adycPPGpEWMoG14DFWLisg+RJ
HhZ+On+5S70l/woWQ6A2x3E+zg9NoUwJMedYPjsUZuF4k9RQshJBAUHK6Y6J
KkpK9EARPKGKVxSr6Apes1YpaU/OyDKxohDCh3JlBoHExnpy1uhDo7j1PImR
F2ExvfdB5e2ZxtYqe5GAgI0wGINafyxjaMSnVxbVGavV6Nk3rL5ixbMPrfcM
udMcdVMs4YGvCtLc9SgoW9/DcpCzkryivANNAmFdnzlWXS1rt2aPoFaSDXAq
NooS6vYeRtgyLcWR7sGrw2HsDnBbbJTWUvjR+MorohqwbyqEQqB5nXFSKGyk
mg9bk0lWLApmkKYaLSRMUDsy3oqkq7ES6SMDksaT6qeZBCdAd/DNVwi8gbyN
OAW2KXO29qDgQ1dGiFjG55ugigyjC0+CedFVP7AJYZ+MjO0MFLPZqQsv9Yit
52uZBu7jOWe3bJV3uWJqX2VPvdv6taOJzIj9NaE/Wj3pkrLWcWlvNNvEvNRU
1oMwyZXP1YUftQEQmepu1OGIMOviZp0HulR4+EWnbuTj8bFuJSrQFt1ywPXn
6s48rIU2GPeuRRQ3VQq7z8JpbgUVOZxaScbtzpG/SkfufRqNTqk/bNEFjWLi
oZtWHo3zdaHDpgX7uyeQw6TWFj52MlCHTlhMBiNClhlj16uQAAxkrtqdNuTc
wvE3mjiGWTPqH41OK66DHUWVrcz1XHjIhITMmaBIF2TJcvMVcX3OC1DC2ryc
UKtALoYSg3coS17isVxIprFjrCQ/Hg+mbrC2FteUufquxPciwvF1tWsRrhT+
kyYnARuvwHW46eVVtGJa7MRl8SRjN4zAdf1WxUkQ9g1Z3bA2HWn2ly7nUgLY
sSR++9MWFCv4uCRGluk2SMzm6hxe2DVJiMpQUCJgX7ZZvfbBlqiqnz1l2j6N
swkkYxeRZUwZnMtN069BkNglCh6NZDk0A+SnbQ83FBIKzH0VNPnDRCxJ4tsl
6OD6A+zcOxYDpidLnKTLzzCEbddtL2QrmC1k7crJ+8wmcaCz9S0cx8T9ChDe
o2Ffh2i9uwkpcd2bHSzC+Y/YvYCpoMQRpxaB78qcSZ8J6pxzdhnSylHQXTSY
G26r+RpUvA4P4YCSZMTLy0WhWIjP1ZKDa/blOaTGpHmyqnag2wEPwyzQtcUl
z7GZKjLSqcXa30hDLWw9Y43BWx9BfwtcGmkPdK3dQPXcCFPW2WHouim0xJ59
RxcHDeeZzTF516ArqQtdP8nqRSCU23gDQ9i2c6VG7Ji6dZZ3nGqFPRApK4E4
6xdxdxi0U1bYE/P9FzScVpwbXzqCG6dy9p6GkqZ0jQRkxilWrMJi5MF1FfO1
wBSFUQ02VX3wdIbDMtSMsBY+6aKpzkdOvFp7pBivZgI9o+4vjR3QWbjmUENF
bSuBQcxdzxTtF9M4gaY8Og7IBV0hQrdZv6w7FLXaqrLn7XCOMcKgcCgXo+E5
1oADqI1oxLsdbrKBmjro5WNfpN/rsaHDx3FK1qjJ7xy3rciGm3moScGOOWXl
HPKf5ZwZT6+7Vg/sq7i0Jj87TqvBjTPJfRc/dFNMiyowxZIM6DwMGQt2kbli
XAk8splZmbdpkw6XNTvsGst0ACNN+hDeiOoRaH1vSdegFjar3W+xqh0mkT6w
+ETaylIfLD2UKP+DatfazXQsjKpvzwUgN304M5lTP0F43/kt280aG3n2MMOZ
5L6lSzbfVvmqmHG2sTvTHZ1ekCOyQZ6tS+w5Ngn8czj63ALwG3Yk7FpFoD95
QwKbM9XkQ3r/3v3740d11B0792/R2J7jSonU93BR2s7DgplAh+rYVNGHvnE5
eg9K6yY+0IlJAjm0u9HqlK5r7BBS9QjB1XMx9II4bLQPaSKEwsjl0I5Q+pBE
wRqfyvkN/f6MZAiImUzaVSwXjuhdgvHhwYuDcSQlqEmjy4kac9/38VNv573/
IjbuTKL2OHZQOawKbO82cnfVKBTR+wIYEEwh/bWocGUR1b5rONVljdRr7ikq
niFCxMeKOPDvwxDyeJqcZiekAj+47C/vRWRYstZL0jUwdI/96AAJj6LoUCNQ
Y+wXd0WZZe476WbCtEcVt+0pUcfC5txkCftVUWu6MTdx8ZTgOh96z9nro2fZ
24l/+zZ1784Bk9u36I+min0VSrH/R/UaHEP4hJ/KGypIM9Qi0c3+/r20DwcG
Fx+Q63qIHxiubfc+NH9WZBm1+4Y9hG9kRW/cim5yk6Jb+2afqE4L533C0o12
126iVhpqYX0bWlfYAZsiKAg8paBOcy7wR41WJ1JcNEDiYjqgC63puI45OQ+u
5+xBN9jEvi4WAXv0wXU3poOArjenhdJRYNN3YCX4qtZIzsAAsL55Jfus9FNq
M472yCmls+tL0tpy7Vrz0oi4JGwRQmUT815XTPqxArJv8qU05dRHvHjtP8p/
HVMPrwEpFfHF3YiAexYccO84IovG+DsCnUYYgKEIjrTJXjOw0vIpZWNpXyau
AIybvjj3q+LwAMSOh7qswQHRmUl7qfaNx9Wb3KmCW/FhjzM6qwNuRYJHFYn6
BMeBODSDJJRVIu74KgGBfCC2d8kzL85IFxqUaDik9pmFXamYfxNy+s9Ev8bL
Dz/W3zkaqlgf3vvnoiXXMLM8DLHyUgUNTvPMbt9QqfflCBrjp4oT/wUMw4Dr
VY23Ea6qJ42G8tF4cnJIhxQaJ3zdZm9p2KRyDJN9khJRV0yHQ/yOh9DzDykA
G6y80pU+Fw+eHMO2h/C+97oIYSmhjHr70rheEfN6zmNVAZ7yt02iP8IBBbo6
OyReSZct0oKctFTLHo7//ReYa4kOESYQ0KBeVyW5iDptmiLqvTqDjsSXIk4a
0p+4LMsPqz0BXFDKNfQy6uccVBW+7mV94GwHP7kuJjgZtoKOA8514yoLAIwG
NaFVgUll0hovG2z9oZ3g1RWjWRWNj2oZWc4otfXcgiN3tnZW0c/9LtG0GHEO
eUf+EnWGBAXCkUtZ035ItnIUUKMeURuEBpPysY+kb8IgXnQfzXPdNoz5r//6
L2JgYwkOmlcv4ShvqyOf2nPfvju5a74D5rYvi5lIuH0C3MlEV57wtVDZN3de
vzr66cGL5/fvv3z++ofnPxz/8Noc65GPD6v1Bgcrlnf/ZTKZ+CfBb4/YnTM+
2a7hZ8rDYoy8/XOL+v+ekxa8pr397D3R1x5Aw/1BPxCNw097xKmL5d7IP/v5
4ix6mUfocIS9J4+CN+nBrDnHB8Ac1vcefHV2N31+Vszx+b079+6O73w9vvPV
yb07+/fu7d+5//v01Xf44vj7b19+f/j7n7+sVvX699Pfvvj65Jt35/fbqT1+
MF68OX/44nj75sl31cPfz9LvaYXtz83xg7vrZ93m/qsvn70++d359uDw3dHi
8e/eTO29o5/Whw/eLMY//VycX/j7Zli0fTQf8fCNYVpxtLP/a+DEr3vUcq79
A9/7+tHXj748+P23P3x3dPzVf3x1/+D7g5d7urGBuA35Tm8Ix0BeS5WMvfac
aNFuOqT1S6I0rskOsiPn+9B+fxinUfHomJSptcsUO5yYS3L+STMtQFID96a1
URof3cM2rkFjKhr4B5gwRjvOBlNLK5thlzo5Gtee6UfxYYNGvXOoj2g5VGR3
zXDWxGiLmV5KWioZXHHCyri1hVFq79YPGuLIELFA+lvmWZ+JyL5cMnJkvf8i
NgwcVmgMYbiDtvZxJYUrrR2SlBfTec9vr81h3OVQfUWJl037xPY7YbrundLy
pZ/ESmmF2AOGsqbSDp3wrJC61kxzciRlj3yjY2kf0/HnUoPNX1FO4LqhYM/C
pUskqTM0Iiw6CMyQriRZy0lohjx/CAjnC44AYZxp4lVsKX7SOFXQPJBQO8/b
86X5p7H890/Ctv9p+E/zQcsI4Jebd2+N//VDhuvNPsiL8P8H+Kf5oHUGwRMZ
6eY9/o5+Nfo8S15M/9z94j+Pb96/5dZ69YjBZjI/xJfhEDvhwTRyd1eJEumh
p1aDJ8SLkzTEexP1FPmja/uhMunvrMcYuZhQnW1DS8FPpv0DbyJKDkSjbrQ0
EL4S9v5hKYUd1e87elPS2b04beIf3w96w5U20lT4FvvM28uCLnErImO+dGCS
+qV4w66Srl9ldX0g4dKASUlzu6gSO0qtkyqsaT3fJiYaN0YjH+lul+fKrqa2
QZ9nmPAdeRicqyxMHQ5h3euvCzscbqcCECAVNBnf3cPDUwQGLhpEUZHOQG3F
VEtTJIGj9owqMFWdgfw51qpJBJWun6qBCLYDkFJeKv4VF/HxQtwO2jcuGbxg
63EkbSVpG86YS5TVgeBmYr6i2SiH1/M93JZ+r7QLZ5bTLlZFVaw2q1gqRuUQ
QgNpRLxI/QK0fokc7bAZ4+5I13cKDCkFUjDQcwaw6y2i9LEsm2bdoVP5D66h
VV2h/nyaLvWY+hnuY99QMLXoJ9WfQppF5enl8bfP7716/t0Pr4+++vLk4Tcv
vnr449cvf//wm0ePn7588ere3W+PXt19dnJHTKhd9uBnGRiaSBJoNTs5s0+s
KJIeJpw4wxZF0AIy4WzBJUFS6RHcXYgVSjjV0BpGxl89E+RcUahTL7gIpoVD
r13xNaXfy8jke9ix9EPnj6RrBrTSThOMwpw8l6Wu8XrqOxElq8jrFI5P2jsF
CU3hjjAVybXa8yvM/Qoxe4r/3UuBUeoi2eGr1Wh/ZdkLb5KC6qvXlEsHJTAH
x6Mdimj4O6ei00+ut2RQoCS+SZEHujl9PdVlo8bEoqUEiq3cN7FbD3ZgdhNl
N+GwZdhb3uh0dU7iHY/zcZXJRYkgoOPEZTVURF/1WteSlhYVbYZ0ZVQxCrfq
sajogibrfXcxzYneZJjOwtZLkgyEDjendV3avErE2aEmsI36VO2lv6MB5iJB
aVA+rQHvOKnNqSkAG5pe7/+SJXAjBhpAroXDmbnN1jBlrYiE6RNlLHKprQIk
olMccoEYdiu81KFg5bMlcyR7u8jL1r4NbtULJJB0LuX7I3rw8FDI8p4Ac6qh
BKSjrnZO3wxRaCAd/v4kKgJkZ4P0sUVHq/G1w1rJqEmzKfFeSyEYVAB39LAj
rSVuovUpqgCub4c6wEocjk5rRYcPNhAoStd/3fvltX/cQtqKSt6dsqeEGTBw
9KZ7Tk3FHEb4aMuzjZQVuCuKPEZJi1ZXxhHDhwqOcFjJacI4RBm2E6KUObKK
GOS3BzTvnqghBsnHEbWG7Ym7LGmIQ0tJmElwpUgiZncaMlmE+DKoIn/S6LZz
x4+CaRqgqjHcKnQ4VhuroVHj1YEWs6klC8cBTBvY0tI2A8OhfwT2slpHfcuC
64bCZoIMLcbAJ++Q30nfKxkfQ2QkBgher18c/kf2ZF1T1RIs8prL6Ppr6MtV
tbU/cRXVdHG9VUQt0VJodL8ADvlmHtpMVxz4YdBkxvexSe5ND5YntMWNEclR
B1O2m2lkZg4N3wsxcZ+si9PaNVqhUrrCI1aB7HLQOuY65TB9yQdys7g0LxzP
9zrYsVyyJQdiVypGU4s4Zk8BEtHlF7/UqBIRdQ2ryrc71Y/ISS+SiPLve2sJ
1uG8i+LocKOgTA4UXS/YIjGst2a5u556dp2acdm9O3eylz9cZbQ9ymendvyI
21DuAz2MqUYisMVQ6IOpROpKaJ/Bb3/wcbZ5Xa5PiwqW0eWoMOLFz5StznoG
tidYcojqj6NfKYzHo3Ao7+j4IAmg0VNc+N7Bbw8eDj2UYN677Z/GaaCPt1ku
eWiwT4eek2169vLhg+boy+/P7/zmuX0GVuxkZyCOvM1JGX3U2WiXpy4OtkRd
lUyo6YNB10h1nWQqRRXlKm+PktsaBsoGQJ/vt35OelZ4FiZlusO3WtA9A6c+
YmSCjF5UR5oGdRws3JYbUfydvvkuh/5k4GIG7EdUJppy0oub5DhvFhUWWETw
kpZ0HElQj8MogaO14xTcnTkxTm8+8uWwLniwrsNG6/pp2/NvRc7dqGl4kLFi
3AW1LqZJHuCBrCDPuIO4W5SYj01+jKsdOUpuh400Kt9xuqdgi2J9O5R8sYKt
KUBXKdoeoYqogsSBiYhKnu0Nw2ovTO9xV7z93fg7Py07MNGKogxBOXKki8Sf
Q9brLGFVtMHE8eyzCMWCuX4KYXvdHEIhLPYPYYklm6oDhUKXUbiqmd6T1cuF
C+x414QosANcIUromEp5WWgB8UnF6bbOyRx5JQI9zvlkJFrCpnvgqIAT44sf
Wu8nGKyK8yETcSNcXiaEjgxOIJS2LN5l4Cb21/siThZrRH9pyqJWGC9o11oW
esECcqxSbE+pEw9LRCYD58S+DM1bHNgwiwhs/Hp8/UP6hCy9UBochWx2l1ve
CYmQKUeO+ZNAtKf3TQ6Hz8CuJdHv2fEO574D51/Jtd/36Uc6Y5KUxTpL/Ip7
2Nh8PqSDXaC3beiB6KN70ZM/JjlWmiW8Y1LSQ/dv307gVdnu9tCU+rpjlDh8
eZsU4MvXgQpzB5DfsQ6vU/efFSvs+JEM7zXQQIXuaeiRNn7t2IhqszvdxYEw
C5Q3KjMN8oSM14FIMwgvxQx8r1RiGIZ+sfgG+VliaA34mYN+M1hYuiFXkK8f
CbPRdcHDFvCBujVFW+h101TVxm+pL/x6UVvJcyVmSSyL1ci47f7A9XU+1CK+
4X4VUV+JcJU5kYcVRbxIBkk1ds2p0juK5bZ727TXMu4PhvNSw0N2RTs1Y0xG
twzoNbtyXJpmzKKF8I06sMLqNqTnyM2BkoDn241LDvuA8nSN2pfUSRFKmKAS
IZOSipFXCuMm3RnAizoM0+r74mqys/7j1xFJgg5p3eEumcSvD0eLf2WvQp/2
kOE8/fHHwx9+evjbr14/+OrFs7suDnsYNX1HozLotOVJzUt8Sth0NaNUaBZY
RzKjkcAtKbA6oCOi1sdBInsK+yd4BVCzbACXEULZlwCdh/ncqQOhsmEo/6jv
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

-->

</rfc>
