<?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-rfc2629 version 1.4.3 -->
<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-oauth-v2-1-05" category="std" obsoletes="" updates="" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.3 -->
  <front>
    <title>The OAuth 2.1 Authorization Framework</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-v2-1-05"/>
    <author initials="D." surname="Hardt" fullname="Dick Hardt">
      <organization>Hellō</organization>
      <address>
        <email>dick.hardt@gmail.com</email>
      </address>
    </author>
    <author initials="A." surname="Parecki" fullname="Aaron Parecki">
      <organization>Okta</organization>
      <address>
        <email>aaron@parecki.com</email>
        <uri>https://aaronparecki.com</uri>
      </address>
    </author>
    <author initials="T." surname="Lodderstedt" fullname="Torsten Lodderstedt">
      <organization>yes.com</organization>
      <address>
        <email>torsten@lodderstedt.net</email>
      </address>
    </author>
    <date year="2022" month="March" day="07"/>
    <area>Security</area>
    <workgroup>OAuth Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>The OAuth 2.1 authorization framework enables a third-party
application to obtain limited access to a protected resource, either on
behalf of a resource owner by orchestrating an approval interaction
between the resource owner and an authorization service, or by allowing the
third-party application to obtain access on its own behalf.  This
specification replaces and obsoletes the OAuth 2.0 Authorization
Framework described in RFC 6749.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction" numbered="true" toc="default">
      <name>Introduction</name>
      <t>In the traditional client-server authentication model, the client
requests an access-restricted resource (protected resource) on the
server by authenticating with the server using the resource owner's
credentials.  In order to provide third-party applications access to
restricted resources, the resource owner shares its credentials with
the third party.  This creates several problems and limitations:</t>
      <ul spacing="normal">
        <li>Third-party applications are required to store the resource
owner's credentials for future use, typically a password in
clear-text.</li>
        <li>Servers are required to support password authentication, despite
the security weaknesses inherent in passwords.</li>
        <li>Third-party applications gain overly broad access to the resource
owner's protected resources, leaving resource owners without any
ability to restrict duration or access to a limited subset of
resources.</li>
        <li>Resource owners often reuse passwords with other unrelated 
services, despite best security practices. This password reuse means
a vulnerability or exposure in one service may have security 
implications in completely unrelated services.</li>
        <li>Resource owners cannot revoke access to an individual third party
without revoking access to all third parties, and must do so by
changing their password.</li>
        <li>Compromise of any third-party application results in compromise of
the end-user's password and all of the data protected by that
password.</li>
      </ul>
      <t>OAuth addresses these issues by introducing an authorization layer 
and separating the role of the client from that of the resource 
owner. In OAuth, the client requests access to resources controlled 
by the resource owner and hosted by the resource server. 
Instead of using the resource owner's credentials to access protected 
resources, the client obtains an access token - a credential representing 
a specific set of access attributes such as scope and lifetime. Access 
tokens are issued to clients by an authorization server with the approval 
of the resource owner. The client uses the access token to access the 
protected resources hosted by the resource server.</t>
      <t>For example, an end-user (resource owner) can grant a printing
service (client) access to their protected photos stored at a photo-
sharing service (resource server), without sharing their username and
password with the printing service.  Instead, they authenticate
directly with a server trusted by the photo-sharing service
(authorization server), which issues the printing service delegation-
specific credentials (access token).</t>
      <t>This specification is designed for use with HTTP (<xref target="RFC7231" format="default"/>).  The
use of OAuth over any protocol other than HTTP is out of scope.</t>
      <t>Since the publication of the OAuth 2.0 Authorization Framework (<xref target="RFC6749" format="default"/>)
in October 2012, it has been updated by OAuth 2.0 for Native Apps (<xref target="RFC8252" format="default"/>),
OAuth Security Best Current Practice (<xref target="I-D.ietf-oauth-security-topics" format="default"/>),
and OAuth 2.0 for Browser-Based Apps (<xref target="I-D.ietf-oauth-browser-based-apps" format="default"/>).
The OAuth 2.0 Authorization Framework: Bearer Token Usage (<xref target="RFC6750" format="default"/>)
has also been updated with (<xref target="I-D.ietf-oauth-security-topics" format="default"/>). This
Standards Track specification consolidates the information in all of these
documents and removes features that have been found to be insecure
in <xref target="I-D.ietf-oauth-security-topics" format="default"/>.</t>
      <section anchor="roles" numbered="true" toc="default">
        <name>Roles</name>
        <t>OAuth defines four roles:</t>
        <dl newline="false" spacing="normal">
          <dt>"resource owner":</dt>
          <dd>
  An entity capable of granting access to a protected resource.
When the resource owner is a person, it is referred to as an
end-user. This is sometimes abbreviated as "RO".</dd>
          <dt>"resource server":</dt>
          <dd>
  The server hosting the protected resources, capable of accepting
and responding to protected resource requests using access tokens.
The resource server is often accessible via an API.
This is sometimes abbreviated as "RS".</dd>
          <dt>"client":</dt>
          <dd>
  An application making protected resource requests on behalf of the
resource owner and with its authorization.  The term "client" does
not imply any particular implementation characteristics (e.g.,
whether the application executes on a server, a desktop, or other
devices).</dd>
          <dt>"authorization server":</dt>
          <dd>
  The server issuing access tokens to the client after successfully
authenticating the resource owner and obtaining authorization.
This is sometimes abbreviated as "AS".</dd>
        </dl>
        <t>The interaction between the authorization server and resource server
is beyond the scope of this specification, however several extensions have
been defined to provide an option for interoperability between resource
servers and authorization servers.  The authorization server
may be the same server as the resource server or a separate entity.
A single authorization server may issue access tokens accepted by
multiple resource servers.</t>
      </section>
      <section anchor="protocol-flow" numbered="true" toc="default">
        <name>Protocol Flow</name>
        <figure anchor="fig-protocol-flow">
          <name>Abstract Protocol Flow</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
     +--------+                               +---------------+
     |        |--(1)- Authorization Request ->|   Resource    |
     |        |                               |     Owner     |
     |        |<-(2)-- Authorization Grant ---|               |
     |        |                               +---------------+
     |        |
     |        |                               +---------------+
     |        |--(3)-- Authorization Grant -->| Authorization |
     | Client |                               |     Server    |
     |        |<-(4)----- Access Token -------|               |
     |        |                               +---------------+
     |        |
     |        |                               +---------------+
     |        |--(5)----- Access Token ------>|    Resource   |
     |        |                               |     Server    |
     |        |<-(6)--- Protected Resource ---|               |
     +--------+                               +---------------+
]]></artwork>
        </figure>
        <t>The abstract OAuth 2.1 flow illustrated in <xref target="fig-protocol-flow" format="default"/> describes the
interaction between the four roles and includes the following steps:</t>
        <ol spacing="normal" type="1"><li>The client requests authorization from the resource owner.  The
authorization request can be made directly to the resource owner
(as shown), or preferably indirectly via the authorization
server as an intermediary.</li>
          <li>The client receives an authorization grant, which is a
credential representing the resource owner's authorization,
expressed using one of the authorization grant types defined in this
specification or using an extension grant type.  The
authorization grant type depends on the method used by the
client to request authorization and the types supported by the
authorization server.</li>
          <li>The client requests an access token by authenticating with the
authorization server and presenting the authorization grant.</li>
          <li>The authorization server authenticates the client and validates
the authorization grant, and if valid, issues an access token.</li>
          <li>The client requests the protected resource from the resource
server and authenticates by presenting the access token.</li>
          <li>The resource server validates the access token, and if valid,
serves the request.</li>
        </ol>
        <t>The preferred method for the client to obtain an authorization grant
from the resource owner (depicted in steps (1) and (2)) is to use the
authorization server as an intermediary, which is illustrated in
<xref target="fig-authorization-code-flow" format="default"/> in <xref target="authorization-code-grant" format="default"/>.</t>
      </section>
      <section anchor="authorization-grant" numbered="true" toc="default">
        <name>Authorization Grant</name>
        <t>An authorization grant is a credential representing the resource
owner's authorization (to access its protected resources) used by the
client to obtain an access token.  This specification defines three
grant types - authorization code, refresh token, 
and client credentials - as well as an extensibility
mechanism for defining additional types.</t>
        <section anchor="authorization-code" numbered="true" toc="default">
          <name>Authorization Code</name>
          <t>An authorization code is a temporary credential used to obtain an access token.
Instead of the client
requesting authorization directly from the resource owner, the client
directs the resource owner to an authorization server (via its
user agent, which in turn directs the
resource owner back to the client with the authorization code.
The client can then exchange the authorization code for an access token.</t>
          <t>Before directing the resource owner back to the client with the
authorization code, the authorization server authenticates the
resource owner, and may request the resource owner's consent or otherwise
inform them of the client's request. Because the resource owner
only authenticates with the authorization server, the resource
owner's credentials are never shared with the client, and the client
does not need to have knowledge of any additional authentication steps
such as multi-factor authentication or delegated accounts.</t>
          <t>The authorization code provides a few important security benefits,
such as the ability to authenticate the client, as well as the
transmission of the access token directly to the client without
passing it through the resource owner's user agent and potentially
exposing it to others, including the resource owner.</t>
        </section>
        <section anchor="refresh-token" numbered="true" toc="default">
          <name>Refresh Token</name>
          <t>Refresh tokens are credentials used to obtain access tokens.  Refresh
tokens are issued to the client by the authorization server and are
used to obtain a new access token when the current access token
becomes invalid or expires, or to obtain additional access tokens
with identical or narrower scope (access tokens may have a shorter
lifetime and fewer permissions than authorized by the resource
owner).  Issuing a refresh token is optional at the discretion of the
authorization server, and may be issued based on properties of the client,
properties of the request, policies within the authorization server, or 
any other criteria.  If the authorization server issues a refresh
token, it is included when issuing an access token (i.e., step (2) in
<xref target="fig-refresh-token-flow" format="default"/>).</t>
          <t>A refresh token is a string representing the authorization granted to
the client by the resource owner.  The string is considered opaque to
the client. The refresh token may be an identifier used to retrieve the
authorization information or may encode this information into the 
string itself. Unlike access tokens, refresh tokens are
intended for use only with authorization servers and are never sent
to resource servers.</t>
          <figure anchor="fig-refresh-token-flow">
            <name>Refreshing an Expired Access Token</name>
            <artwork name="" type="" align="left" alt=""><![CDATA[
+--------+                                           +---------------+
|        |--(1)------- Authorization Grant --------->|               |
|        |                                           |               |
|        |<-(2)----------- Access Token -------------|               |
|        |               & Refresh Token             |               |
|        |                                           |               |
|        |                            +----------+   |               |
|        |--(3)---- Access Token ---->|          |   |               |
|        |                            |          |   |               |
|        |<-(4)- Protected Resource --| Resource |   | Authorization |
| Client |                            |  Server  |   |     Server    |
|        |--(5)---- Access Token ---->|          |   |               |
|        |                            |          |   |               |
|        |<-(6)- Invalid Token Error -|          |   |               |
|        |                            +----------+   |               |
|        |                                           |               |
|        |--(7)----------- Refresh Token ----------->|               |
|        |                                           |               |
|        |<-(8)----------- Access Token -------------|               |
+--------+           & Optional Refresh Token        +---------------+
]]></artwork>
          </figure>
          <t>The flow illustrated in <xref target="fig-refresh-token-flow" format="default"/> includes the following steps:</t>
          <ol spacing="normal" type="1"><li>The client requests an access token by authenticating with the
authorization server and presenting an authorization grant.</li>
            <li>The authorization server authenticates the client and validates
the authorization grant, and if valid, issues an access token
and optionally a refresh token.</li>
            <li>The client makes a protected resource request to the resource
server by presenting the access token.</li>
            <li>The resource server validates the access token, and if valid,
serves the request.</li>
            <li>Steps (3) and (4) repeat until the access token expires.  If the
client knows the access token expired, it skips to step (7);
otherwise, it makes another protected resource request.</li>
            <li>Since the access token is invalid, the resource server returns
an invalid token error.</li>
            <li>The client requests a new access token by presenting the refresh token
and providing client authentication if it has been issued credentials. The
client authentication requirements are based on the client type
and on the authorization server policies.</li>
            <li>The authorization server authenticates the client and validates
the refresh token, and if valid, issues a new access token (and,
optionally, a new refresh token).</li>
          </ol>
        </section>
        <section anchor="client-credentials" numbered="true" toc="default">
          <name>Client Credentials</name>
          <t>The client credentials or other forms of client authentication
(e.g. a <tt>client_secret</tt> or a private key used to sign a JWT)
can be used as an authorization grant when the authorization scope is
limited to the protected resources under the control of the client,
or to protected resources previously arranged with the authorization
server.  Client credentials are used as an authorization grant
typically when the client is acting on its own behalf (the client is
also the resource owner) or is requesting access to protected
resources based on an authorization previously arranged with the
authorization server.</t>
        </section>
      </section>
      <section anchor="access-token" numbered="true" toc="default">
        <name>Access Token</name>
        <t>Access tokens are credentials used to access protected resources.  An
access token is a string representing an authorization issued to the
client.  The string is considered opaque to the client, even if it has
a structure. Depending on the authorization server, the access token 
string may be parseable by the resource server, such as when using the
JSON Web Token Profile for Access Tokens (<xref target="RFC9068" format="default"/>).</t>
        <t>Access tokens represent specific scopes and durations of access, granted by the
resource owner, and enforced by the resource server and authorization server.</t>
        <t>The token may be used by the RS to retrieve the authorization information, 
or the token may self-contain the authorization information in a verifiable 
manner (i.e., a token string consisting of a signed data payload). One example 
of a token retrieval mechanism is Token Introspection <xref target="RFC7662" format="default"/>, in which the 
RS calls an endpoint on the AS to validate the token presented by the client. 
One example of a structured token format is <xref target="RFC9068" format="default"/>, 
a method of encoding access token data as a JSON Web Token <xref target="RFC7519" format="default"/>.</t>
        <t>Additional authentication credentials, which are beyond
the scope of this specification, may be required in order for the
client to use an access token. This is typically referred to as a sender-constrained
access token, such as Mutual TLS Access Tokens <xref target="RFC8705" format="default"/>.</t>
        <t>The access token provides an abstraction layer, replacing different
authorization constructs (e.g., username and password) with a single
token understood by the resource server.  This abstraction enables
issuing access tokens more restrictive than the authorization grant
used to obtain them, as well as removing the resource server's need
to understand a wide range of authentication methods.</t>
        <t>Access tokens can have different formats, structures, and methods of
utilization (e.g., cryptographic properties) based on the resource
server security requirements.  Access token attributes and the
methods used to access protected resources may be extended beyond
what is described in this specification.</t>
        <t>Access tokens (as well as any confidential access token
attributes) MUST be kept confidential in transit and storage, and
only shared among the authorization server, the resource servers the
access token is valid for, and the client to whom the access token is
issued.</t>
        <t>The authorization server MUST ensure that access tokens cannot be
generated, modified, or guessed to produce valid access tokens by
unauthorized parties.</t>
      </section>
      <section anchor="communication-security" numbered="true" toc="default">
        <name>Communication security</name>
        <t>Implementations MUST use a mechanism to provide communication
authentication, integrity and confidentiality such as
Transport-Layer Security <xref target="RFC8446" format="default"/>,
to protect the exchange of clear-text credentials and tokens
either in the payload body or in header fields
from eavesdropping, tampering, and message forgery
(eg. see <xref target="client-secret" format="default"/>, <xref target="authorization_codes" format="default"/>, <xref target="token-endpoint" format="default"/>, and <xref target="bearer-tokens" format="default"/>).</t>
        <t>OAuth URLs MUST use the <tt>https</tt> scheme
except for loopback interface redirect URIs,
which MAY use the <tt>http</tt> scheme.
When using <tt>https</tt>, TLS certificates MUST be checked
according to <xref target="RFC2818" format="default"/>.
At the time of this writing,
TLS version 1.3 <xref target="RFC8446" format="default"/> is the most recent version.</t>
        <t>Implementations MAY also support additional transport-layer security
mechanisms that meet their security requirements.</t>
        <t>The identification of the TLS versions and algorithms
is outside the scope of this specification.
Refer to <xref target="BCP195" format="default"/> for up to date recommendations on
transport layer security, and to the relevant specifications
for certificate validation and other security considerations.</t>
      </section>
      <section anchor="http-redirections" numbered="true" toc="default">
        <name>HTTP Redirections</name>
        <t>This specification makes extensive use of HTTP redirections, in which
the client or the authorization server directs the resource owner's
user agent to another destination.  While the examples in this
specification show the use of the HTTP 302 status code, any other
method available via the user agent to accomplish this redirection, 
with the exception of HTTP 307, is allowed and is considered to be an 
implementation detail. See <xref target="redirect_307" format="default"/> for details.</t>
      </section>
      <section anchor="interoperability" numbered="true" toc="default">
        <name>Interoperability</name>
        <t>OAuth 2.1 provides a rich authorization framework with well-defined
security properties.</t>
        <t>This specification leaves a few required components partially or fully 
undefined (e.g., client registration, authorization server capabilities, 
endpoint discovery).  Some of these behaviors are defined in optional 
extensions which implementations can choose to use, such as:</t>
        <ul spacing="normal">
          <li>
            <xref target="RFC8414" format="default"/>: Authorization Server Metadata, defining an endpoint clients can use to look up the information needed to interact with a particular OAuth server</li>
          <li>
            <xref target="RFC7591" format="default"/>: Dynamic Client Registration, providing a mechanism for programmatically registering clients with an authorization server</li>
          <li>
            <xref target="RFC7592" format="default"/>: Dynamic Client Management, providing a mechanism for updating dynamically registered client information</li>
          <li>
            <xref target="RFC7662" format="default"/>: Token Introspection, defining a mechanism for resource servers to obtain information about access tokens</li>
        </ul>
        <t>Please refer to <xref target="extensions" format="default"/> for a list of current known extensions at 
the time of this publication.</t>
      </section>
      <section anchor="compatibility-with-oauth-20" numbered="true" toc="default">
        <name>Compatibility with OAuth 2.0</name>
        <t>OAuth 2.1 is compatible with OAuth 2.0 with the extensions and restrictions 
from known best current practices applied. Specifically, features not specified
in OAuth 2.0 core, such as PKCE, are required in OAuth 2.1. Additionally, 
some features available in OAuth 2.0, such as the Implicit or Resource Owner Credentials 
grant types, are not specified in OAuth 2.1. Furthermore, some behaviors 
allowed in OAuth 2.0 are restricted in OAuth 2.1, such as the strict string 
matching of redirect URIs required by OAuth 2.1.</t>
        <t>See <xref target="oauth-2-0-differences" format="default"/> for more details on the differences from OAuth 2.0.</t>
      </section>
      <section anchor="notational-conventions" numbered="true" toc="default">
        <name>Notational Conventions</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
"MAY", and "OPTIONAL" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119" format="default"/> <xref target="RFC8174" format="default"/> when, and only when, they
appear in all capitals, as shown here.</t>
        <t>This specification uses the Augmented Backus-Naur Form (ABNF)
notation of <xref target="RFC5234" format="default"/>.  Additionally, the rule URI-reference is
included from "Uniform Resource Identifier (URI): Generic Syntax"
<xref target="RFC3986" format="default"/>.</t>
        <t>Certain security-related terms are to be understood in the sense
defined in <xref target="RFC4949" format="default"/>.  These terms include, but are not limited to,
"attack", "authentication", "authorization", "certificate",
"confidentiality", "credential", "encryption", "identity", "sign",
"signature", "trust", "validate", and "verify".</t>
        <t>The term "payload" is to be interpreted as described in Section 3.3 of <xref target="RFC7231" format="default"/>.</t>
        <t>The term "user agent" is to be interpreted as described in <xref target="RFC7230" format="default"/>.</t>
        <t>Unless otherwise noted, all the protocol parameter names and values
are case sensitive.</t>
      </section>
    </section>
    <section anchor="client-registration" numbered="true" toc="default">
      <name>Client Registration</name>
      <t>Before initiating the protocol, the client must establish its registration with the
authorization server.  The means through which the client registers
with the authorization server are beyond the scope of this
specification but typically involve the client developer manually registering
the client at the authorization server's website after creating an account and agreeing
to the service's Terms of Service, or by using Dynamic Client Registration (<xref target="RFC7591" format="default"/>).</t>
      <t>Client registration does not require a direct interaction between the
client and the authorization server.  When supported by the
authorization server, registration can rely on other means for
establishing trust and obtaining the required client properties
(e.g., redirect URI, client type).  For example, registration can
be accomplished using a self-issued or third-party-issued assertion,
or by the authorization server performing client discovery using a
trusted channel.</t>
      <t>When registering a client, the client developer SHALL:</t>
      <ul spacing="normal">
        <li>specify the client type as described in <xref target="client-types" format="default"/>,</li>
        <li>provide client details needed by the grant type in use, 
such as redirect URIs as described in <xref target="redirection-endpoint" format="default"/>, and</li>
        <li>include any other information required by the authorization server
(e.g., application name, website, description, logo image, the
acceptance of legal terms).</li>
      </ul>
      <t>Dynamic Client Registration (<xref target="RFC7591" format="default"/>) defines a common general data model
for clients that may be used even with manual client registration.</t>
      <section anchor="client-types" numbered="true" toc="default">
        <name>Client Types</name>
        <t>OAuth 2.1 defines three client types based on their ability to authenticate securely
with the authorization server as well as the authorization server's assurance of the
client's identity.</t>
        <dl newline="false" spacing="normal">
          <dt>"confidential":</dt>
          <dd>
  Clients that have credentials and have a prior relationship with the AS are designated as "confidential clients"</dd>
          <dt>"credentialed":</dt>
          <dd>
  Clients that have credentials but no prior relationship with the AS are designated as "credentialed clients"</dd>
          <dt>"public":</dt>
          <dd>
  Clients without credentials are called "public clients"</dd>
        </dl>
        <t>Any clients with credentials MUST take precautions to prevent leakage and abuse of their credentials.</t>
        <t>Authorization servers SHOULD consider the level of confidence in a client's identity
when deciding whether they allow such a client access to more critical functions,
such as the Client Credentials grant type.</t>
        <t>A single <tt>client_id</tt> MUST NOT be treated as more than one type of client.</t>
        <t>For example, a client that has been registered at the authorization server by a registered application developer, where the client is expected to be run as server-side code, would be considered a confidential client. A client that runs on an end-user's device, and uses Dynamic Client Registration (<xref target="RFC7591" format="default"/>) to establish credentials the first time the app runs, would be considered a credentialed client. An application deployed as a single-page app on a static web host would be considered a public client.</t>
        <t>This specification has been designed around the following client profiles:</t>
        <dl newline="false" spacing="normal">
          <dt>"web application":</dt>
          <dd>
  A web application is a confidential client running on a web
server.  Resource owners access the client via an HTML user
interface rendered in a user agent on the device used by the
resource owner.  The client credentials as well as any access
tokens issued to the client are stored on the web server and are
not exposed to or accessible by the resource owner.</dd>
          <dt>"browser-based application":</dt>
          <dd>
  A browser-based application is a public client in which the
client code is downloaded from a web server and executes within a
user agent (e.g., web browser) on the device used by the resource
owner.  Protocol data and credentials are easily accessible (and
often visible) to the resource owner.  Since such applications
reside within the user agent, they can make seamless use of the
user agent capabilities when requesting authorization.</dd>
          <dt>"native application":</dt>
          <dd>
  A native application is a public client installed and executed on
the device used by the resource owner.  Protocol data and
credentials are accessible to the resource owner.  It is assumed
that any client authentication credentials included in the
application can be extracted.  On the other hand, dynamically
issued credentials such as access tokens or refresh tokens can
receive an acceptable level of protection.  At a minimum, these
credentials are protected from hostile servers with which the
application may interact.  On some platforms, these credentials
might be protected from other applications residing on the same
device.</dd>
        </dl>
      </section>
      <section anchor="client-identifier" numbered="true" toc="default">
        <name>Client Identifier</name>
        <t>The authorization server issues the registered client a client
identifier - a unique string representing the registration
information provided by the client.  The client identifier is not a
secret; it is exposed to the resource owner and MUST NOT be used
alone for client authentication.  The client identifier is unique to
the authorization server.</t>
        <t>The client identifier string size is left undefined by this
specification.  The client should avoid making assumptions about the
identifier size.  The authorization server SHOULD document the size
of any identifier it issues.</t>
        <t>Authorization servers SHOULD NOT allow clients to choose or influence their
<tt>client_id</tt> value. See <xref target="client-impersonating-resource-owner" format="default"/> for details.</t>
      </section>
      <section anchor="redirection-endpoint" numbered="true" toc="default">
        <name>Client Redirection Endpoint</name>
        <t>The client redirection endpoint (also referred to as "redirect endpoint")
is the URI of the client that the authorization server redirects the user 
agent back to after completing its interaction with the resource owner.</t>
        <t>The authorization server redirects the user agent to one of the
client's redirection endpoints previously established with the
authorization server during the client registration process.</t>
        <t>The redirect URI MUST be an absolute URI as defined by
<xref target="RFC3986" format="default"/> Section 4.3.  The endpoint URI MAY include an
"application/x-www-form-urlencoded" formatted (per Appendix B) query
component (<xref target="RFC3986" format="default"/> Section 3.4), which MUST be retained when adding
additional query parameters. The endpoint URI MUST NOT include a
fragment component.</t>
        <section anchor="registration-requirements" numbered="true" toc="default">
          <name>Registration Requirements</name>
          <t>Authorization servers MUST require clients to register their complete
redirect URI (including the path component) and reject authorization
requests that specify a redirect URI that doesn't exactly match
one that was registered; the exception is loopback redirects, where
an exact match is required except for the port URI component.</t>
          <t>The authorization server MAY allow the client to register multiple
redirect URIs.</t>
          <t>For private-use URI scheme-based redirect URIs, authorization servers
SHOULD enforce the requirement in <xref target="private-use-uri-scheme" format="default"/> that clients use
schemes that are reverse domain name based.  At a minimum, any
private-use URI scheme that doesn't contain a period character (<tt>.</tt>)
SHOULD be rejected.</t>
          <t>In addition to the collision-resistant properties,
this can help to prove ownership in the event of a dispute where two apps
claim the same private-use URI scheme (where one app is acting
maliciously).  For example, if two apps claimed <tt>com.example.app</tt>,
the owner of <tt>example.com</tt> could petition the app store operator to
remove the counterfeit app.  Such a petition is harder to prove if a
generic URI scheme was used.</t>
          <t>Clients MUST NOT expose URLs that forward the user's browser to
arbitrary URIs obtained from a query parameter ("open redirector").
Open redirectors can enable exfiltration of authorization codes and
access tokens, see (#open_redirector_on_client).</t>
          <t>The client MAY use the <tt>state</tt> request parameter to achieve per-request 
customization if needed rather than varying the redirect URI per request.</t>
          <t>Without requiring registration of redirect URIs, attackers can
use the authorization endpoint as an open redirector as
described in <xref target="open-redirectors" format="default"/>.</t>
        </section>
        <section anchor="multiple-redirect-uris" numbered="true" toc="default">
          <name>Multiple Redirect URIs</name>
          <t>If multiple redirect URIs have been registered, the client MUST
include a redirect URI with the authorization request using the
<tt>redirect_uri</tt> request parameter.</t>
        </section>
        <section anchor="preventing-csrf-attacks" numbered="true" toc="default">
          <name>Preventing CSRF Attacks</name>
          <t>Clients MUST prevent Cross-Site Request Forgery (CSRF) attacks. In this
context, CSRF refers to requests to the redirection endpoint that do
not originate at the authorization server, but a malicious third party
(see Section 4.4.1.8. of <xref target="RFC6819" format="default"/> for details). Clients that have
ensured that the authorization server supports the <tt>code_challenge</tt> parameter MAY
rely the CSRF protection provided by that mechanism. In OpenID Connect flows,
validating the <tt>nonce</tt> parameter provides CSRF protection. Otherwise, one-time
use CSRF tokens carried in the <tt>state</tt> parameter that are securely
bound to the user agent MUST be used for CSRF protection (see
(#csrf_countermeasures)).</t>
        </section>
        <section anchor="preventing-mix-up-attacks" numbered="true" toc="default">
          <name>Preventing Mix-Up Attacks</name>
          <t>In order to prevent mix-up attacks (see (#mix_up)), clients MUST only process redirect
responses of the authorization server they sent the respective request
to and from the same user agent this authorization request was
initiated with. Clients MUST store the authorization server they sent
an authorization request to and bind this information to the user
agent and check that the authorization response was received from the
correct authorization server. Clients MUST ensure that the subsequent
access token request, if applicable, is sent to the same authorization
server. Clients SHOULD use distinct redirect URIs for each
authorization server as a means to identify the authorization server a
particular response came from.</t>
        </section>
        <section anchor="invalid-endpoint" numbered="true" toc="default">
          <name>Invalid Endpoint</name>
          <t>If an authorization request fails validation due to a missing,
invalid, or mismatching redirect URI, the authorization server
SHOULD inform the resource owner of the error and MUST NOT
automatically redirect the user agent to the invalid redirect URI.</t>
        </section>
        <section anchor="endpoint-content" numbered="true" toc="default">
          <name>Endpoint Content</name>
          <t>The redirection request to the client's endpoint typically results in
an HTML document response, processed by the user agent.  If the HTML
response is served directly as the result of the redirection request,
any script included in the HTML document will execute with full
access to the redirect URI and the credentials (e.g. authorization code) 
it contains. Additionally, the request URL containing the authorization code
may be sent in the HTTP Referer header to any embedded images, stylesheets 
and other elements loaded in the page.</t>
          <t>The client SHOULD NOT include any third-party scripts (e.g., third-
party analytics, social plug-ins, ad networks) in the redirection
endpoint response.  Instead, it SHOULD extract the credentials from
the URI and redirect the user agent again to another endpoint without
exposing the credentials (in the URI or elsewhere).  If third-party
scripts are included, the client MUST ensure that its own scripts
(used to extract and remove the credentials from the URI) will
execute first.</t>
        </section>
      </section>
      <section anchor="client-authentication" numbered="true" toc="default">
        <name>Client Authentication</name>
        <t>The authorization server MUST only rely on client authentication if the
process of issuance/registration and distribution of the underlying
credentials ensures their confidentiality.</t>
        <t>If the client is confidential or credentialed,
the authorization server MAY accept any form of client authentication
meeting its security requirements
(e.g., password, public/private key pair).</t>
        <t>It is RECOMMENDED to use asymmetric (public-key based) methods for
client authentication such as mTLS <xref target="RFC8705" format="default"/> or "private_key_jwt"
<xref target="OpenID" format="default"/>.  When asymmetric methods for client authentication are
used, authorization servers do not need to store sensitive symmetric
keys, making these methods more robust against a number of attacks.</t>
        <t>When client authentication is not possible, the authorization server
SHOULD employ other means to validate the client's identity - for
example, by requiring the registration of the client redirect URI
or enlisting the resource owner to confirm identity.  A valid
redirect URI is not sufficient to verify the client's identity
when asking for resource owner authorization but can be used to
prevent delivering credentials to a counterfeit client after
obtaining resource owner authorization.</t>
        <t>The authorization server MAY establish a client authentication method
with public clients, which converts them to credentialed 
clients.  However, the authorization server MUST NOT rely on 
credentialed client authentication for the purpose of 
identifying the client.</t>
        <t>The client MUST NOT use more than one authentication method in each
request to prevent a conflict of which authentication mechanism is 
authoritative for the request.</t>
        <t>The authorization server MUST consider the security implications of
interacting with unauthenticated clients and take measures to limit
the potential exposure of tokens issued to such clients, 
(e.g., limiting the lifetime of refresh tokens).</t>
        <t>The privileges an authorization server associates with a certain
client identity MUST depend on the assessment of the overall process
for client identification and client credential lifecycle management. See <xref target="security-client-authentication" format="default"/> for additional details.</t>
        <section anchor="client-secret" numbered="true" toc="default">
          <name>Client Secret</name>
          <t>Clients in possession of a client secret, sometimes known as a client password,
MAY use the HTTP Basic
authentication scheme as defined in <xref target="RFC7235" format="default"/> to authenticate with
the authorization server.  The client identifier is encoded using the
<tt>application/x-www-form-urlencoded</tt> encoding algorithm per
Appendix B, and the encoded value is used as the username; the client
secret is encoded using the same algorithm and used as the
password.  The authorization server MUST support the HTTP Basic
authentication scheme for authenticating clients that were issued a
client secret.</t>
          <t>For example (with extra line breaks for display purposes only):</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
Authorization: Basic czZCaGRSa3F0Mzo3RmpmcDBaQnIxS3REUmJuZlZkbUl3
]]></artwork>
          <t>In addition to that, the authorization server MAY support including the
client credentials in the request-body using the following
parameters:</t>
          <dl newline="false" spacing="normal">
            <dt>"client_id":</dt>
            <dd>
  REQUIRED.  The client identifier issued to the client during
the registration process described by <xref target="client-identifier" format="default"/>.</dd>
            <dt>"client_secret":</dt>
            <dd>
  REQUIRED.  The client secret.</dd>
          </dl>
          <t>Including the client credentials in the request-body using the two
parameters is NOT RECOMMENDED and SHOULD be limited to clients unable
to directly utilize the HTTP Basic authentication scheme (or other
password-based HTTP authentication schemes).  The parameters can only
be transmitted in the request-body and MUST NOT be included in the
request URI.</t>
          <t>For example, a request to refresh an access token (<xref target="refreshing-an-access-token" format="default"/>) using
the body parameters (with extra line breaks for display purposes
only):</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
POST /token HTTP/1.1
Host: server.example.com
Content-Type: application/x-www-form-urlencoded

grant_type=refresh_token&refresh_token=tGzv3JOkF0XG5Qx2TlKWIA
&client_id=s6BhdRkqt3&client_secret=7Fjfp0ZBr1KtDRbnfVdmIw
]]></artwork>
          <t>Since this client authentication method involves a password, the
authorization server MUST protect any endpoint utilizing it against
brute force attacks.</t>
        </section>
        <section anchor="other-authentication-methods" numbered="true" toc="default">
          <name>Other Authentication Methods</name>
          <t>The authorization server MAY support any suitable authentication
scheme matching its security requirements.  When using other
authentication methods, the authorization server MUST define a
mapping between the client identifier (registration record) and
authentication scheme.</t>
          <t>Some additional authentication methods such as mTLS <xref target="RFC8705" format="default"/> 
and "private_key_jwt" <xref target="OpenID" format="default"/> are defined in the 
"<eref target="https://www.iana.org/assignments/oauth-parameters/oauth-parameters.xhtml#token-endpoint-auth-method">OAuth Token Endpoint Authentication Methods</eref>" registry,
and may be useful as generic client authentication methods beyond 
the specific use of protecting the token endpoint.</t>
        </section>
      </section>
      <section anchor="unregistered-clients" numbered="true" toc="default">
        <name>Unregistered Clients</name>
        <t>This specification does not exclude the use of unregistered clients.
However, the use of such clients is beyond the scope of this
specification and requires additional security analysis and review of
its interoperability impact.</t>
      </section>
    </section>
    <section anchor="protocol-endpoints" numbered="true" toc="default">
      <name>Protocol Endpoints</name>
      <t>The authorization process utilizes two authorization server endpoints
(HTTP resources):</t>
      <ul spacing="normal">
        <li>Authorization endpoint - used by the client to obtain
authorization from the resource owner via user agent redirection.</li>
        <li>Token endpoint - used by the client to exchange an authorization
grant for an access token, typically with client authentication.</li>
      </ul>
      <t>As well as one client endpoint:</t>
      <ul spacing="normal">
        <li>Redirection endpoint - used by the authorization server to return
responses containing authorization credentials to the client via
the resource owner user agent.</li>
      </ul>
      <t>Not every authorization grant type utilizes both endpoints.
Extension grant types MAY define additional endpoints as needed.</t>
      <section anchor="authorization-endpoint" numbered="true" toc="default">
        <name>Authorization Endpoint</name>
        <t>The authorization endpoint is used to interact with the resource
owner and obtain an authorization grant.  The authorization server
MUST first verify the identity of the resource owner.  The way in
which the authorization server authenticates the resource owner
(e.g., username and password login, session cookies) is beyond the
scope of this specification.</t>
        <t>The means through which the client obtains the location of the
authorization endpoint are beyond the scope of this specification,
but the location is typically provided in the service documentation,
or in the authorization server's metadata document (<xref target="RFC8414" format="default"/>).</t>
        <t>The endpoint URI MAY include an "application/x-www-form-urlencoded"
formatted (per Appendix B) query component (<xref target="RFC3986" format="default"/> Section 3.4),
which MUST be retained when adding additional query parameters.  The
endpoint URI MUST NOT include a fragment component.</t>
        <t>The authorization server MUST support the use of the HTTP <tt>GET</tt>
method <xref target="RFC7231" format="default"/> for the authorization endpoint and MAY support the
use of the <tt>POST</tt> method as well.</t>
        <t>The authorization server MUST ignore unrecognized request parameters.</t>
        <t>Request and response parameters
defined by this specification MUST NOT be included more than once. 
Parameters sent without a value MUST be treated as if they were
omitted from the request.</t>
        <t>An authorization server that redirects a request potentially containing 
user credentials MUST avoid forwarding these user credentials accidentally 
(see <xref target="redirect_307" format="default"/> for details).</t>
      </section>
      <section anchor="token-endpoint" numbered="true" toc="default">
        <name>Token Endpoint</name>
        <t>The token endpoint is used by the client to obtain an access token using
a grant such as those described in <xref target="obtaining-authorization" format="default"/> and
<xref target="refreshing-an-access-token" format="default"/>.</t>
        <t>The means through which the client obtains the location of the token
endpoint are beyond the scope of this specification, but the location
is typically provided in the service documentation and configured during
development of the client, or provided in the authorization server's metadata 
document (<xref target="RFC8414" format="default"/>) and fetched programmatically at runtime.</t>
        <t>The endpoint URI MAY include an <tt>application/x-www-form-urlencoded</tt>
formatted (per Appendix B) query component (<xref target="RFC3986" format="default"/> Section 3.4)
and MUST NOT include a fragment component.</t>
        <t>The client MUST use the HTTP <tt>POST</tt> method when making access token
requests.</t>
        <t>The authorization server MUST ignore unrecognized request parameters.</t>
        <t>Parameters sent without a value MUST be treated as if they were
omitted from the request. Request and response parameters
defined by this specification MUST NOT be included more than once.</t>
        <section anchor="token-endpoint-client-authentication" numbered="true" toc="default">
          <name>Client Authentication</name>
          <t>Confidential or credentialed clients MUST
authenticate with the authorization server as described in
<xref target="client-authentication" format="default"/> when making requests to the token endpoint.</t>
          <t>Client authentication is used for:</t>
          <ul spacing="normal">
            <li>Enforcing the binding of refresh tokens and authorization codes to
the client they were issued to.  Client authentication adds an 
additional layer of security when an authorization code is transmitted 
to the redirection endpoint over an insecure channel.</li>
            <li>Recovering from a compromised client by disabling the client or
changing its credentials, thus preventing an attacker from abusing
stolen refresh tokens.  Changing a single set of client
credentials is significantly faster than revoking an entire set of
refresh tokens.</li>
            <li>Implementing authentication management best practices, which
require periodic credential rotation.  Rotation of an entire set
of refresh tokens can be challenging, while rotation of a single
set of client credentials is significantly easier.</li>
          </ul>
        </section>
        <section anchor="token-request" numbered="true" toc="default">
          <name>Token Request</name>
          <t>The client makes a request to the token endpoint by sending the
following parameters using the <tt>application/x-www-form-urlencoded</tt>
format per Appendix B with a character encoding of UTF-8 in the HTTP
request payload:</t>
          <dl newline="false" spacing="normal">
            <dt>"client_id":</dt>
            <dd>
  REQUIRED, if the client is not authenticating with the
authorization server as described in <xref target="token-endpoint-client-authentication" format="default"/>.</dd>
            <dt>"scope":</dt>
            <dd>
  OPTIONAL.  The scope of the access request as described by
<xref target="access-token-scope" format="default"/>.</dd>
            <dt>"grant_type":</dt>
            <dd>
  REQUIRED.  Identifier of the grant type the client uses with the particular token request. 
This specification defines the values <tt>authorization_code</tt>, <tt>refresh_token</tt>, and <tt>client_credentials</tt>. 
The grant type determines the further parameters required or supported by the token request. The 
details of those grant types are defined below.</dd>
          </dl>
          <t>Confidential or credentialed clients MUST authenticate with the authorization 
server as described in <xref target="token-endpoint-client-authentication" format="default"/>.</t>
          <t>For example, the client makes the following HTTP request
(with extra line breaks for display purposes only):</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
POST /token HTTP/1.1
Host: server.example.com
Authorization: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW
Content-Type: application/x-www-form-urlencoded

grant_type=authorization_code&code=SplxlOBeZQQYbYS6WxSbIA
&redirect_uri=https%3A%2F%2Fclient%2Eexample%2Ecom%2Fcb
&code_verifier=3641a2d12d66101249cdf7a79c000c1f8c05d2aafcf14bf146497bed
]]></artwork>
          <t>The authorization server MUST:</t>
          <ul spacing="normal">
            <li>require client authentication for confidential and credentialed clients
(or clients with other authentication requirements),</li>
            <li>authenticate the client if client authentication is included</li>
          </ul>
          <t>Further grant type specific processing rules apply and are specified with the respective
grant type.</t>
          <section anchor="access-token-scope" numbered="true" toc="default">
            <name>Access Token Scope</name>
            <t>The authorization and token endpoints allow the client to specify the
scope of the access request using the <tt>scope</tt> request parameter.  In
turn, the authorization server uses the <tt>scope</tt> response parameter to
inform the client of the scope of the access token issued.</t>
            <t>The value of the scope parameter is expressed as a list of space-
delimited, case-sensitive strings.  The strings are defined by the
authorization server.  If the value contains multiple space-delimited
strings, their order does not matter, and each string adds an
additional access range to the requested scope.</t>
            <artwork type="abnf" name="" align="left" alt=""><![CDATA[
    scope       = scope-token *( SP scope-token )
    scope-token = 1*( %x21 / %x23-5B / %x5D-7E )
]]></artwork>
            <t>The authorization server MAY fully or partially ignore the scope
requested by the client, based on the authorization server policy or
the resource owner's instructions.  If the issued access token scope
is different from the one requested by the client, the authorization
server MUST include the <tt>scope</tt> response parameter to inform the
client of the actual scope granted.</t>
            <t>If the client omits the scope parameter when requesting
authorization, the authorization server MUST either process the
request using a pre-defined default value or fail the request
indicating an invalid scope.  The authorization server SHOULD
document its scope requirements and default value (if defined).</t>
          </section>
        </section>
        <section anchor="token-response" numbered="true" toc="default">
          <name>Token Response</name>
          <t>If the access token request is valid and authorized, the
authorization server issues an access token and optional refresh
token.</t>
          <t>If the request client
authentication failed or is invalid, the authorization server returns
an error response as described in <xref target="token-error-response" format="default"/>.</t>
          <t>The authorization server issues an access token and optional refresh
token by creating an HTTP response body using the <tt>application/json</tt>
media type as defined by <xref target="RFC8259" format="default"/> with the following parameters
and an HTTP 200 (OK) status code:</t>
          <dl newline="false" spacing="normal">
            <dt>"access_token":</dt>
            <dd>
  REQUIRED.  The access token issued by the authorization server.</dd>
            <dt>"token_type":</dt>
            <dd>
  REQUIRED.  The type of the access token issued as described in
<xref target="access-token-types" format="default"/>.  Value is case insensitive.</dd>
            <dt>"expires_in":</dt>
            <dd>
  RECOMMENDED.  The lifetime in seconds of the access token.  For
example, the value <tt>3600</tt> denotes that the access token will
expire in one hour from the time the response was generated.
If omitted, the authorization server SHOULD provide the
expiration time via other means or document the default value.</dd>
            <dt>"scope":</dt>
            <dd>
  RECOMMENDED, if identical to the scope requested by the client;
otherwise, REQUIRED.  The scope of the access token as
described by <xref target="access-token-scope" format="default"/>.</dd>
            <dt>"refresh_token":</dt>
            <dd>
  OPTIONAL.  The refresh token, which can be used to obtain new
access tokens based on the grant passed in the corresponding 
token request.</dd>
          </dl>
          <t>Authorization servers SHOULD determine, based on a risk assessment
and their own policies, whether to issue refresh tokens to a certain client.  If the
authorization server decides not to issue refresh tokens, the client
MAY obtain new access tokens by starting the OAuth flow over, for example
initiating a new authorization code request.  In such a case, the authorization
server may utilize cookies and persistent grants to optimize the user
experience.</t>
          <t>If refresh tokens are issued, those refresh tokens MUST be bound to
the scope and resource servers as consented by the resource owner.
This is to prevent privilege escalation by the legitimate client and
reduce the impact of refresh token leakage.</t>
          <t>The parameters are serialized into a JavaScript Object Notation (JSON)
structure by adding each parameter at the highest structure level.
Parameter names and string values are included as JSON strings.
Numerical values are included as JSON numbers.  The order of
parameters does not matter and can vary.</t>
          <t>The authorization server MUST include the HTTP <tt>Cache-Control</tt>
response header field <xref target="RFC7234" format="default"/> with a value of <tt>no-store</tt> in any
response containing tokens, credentials, or other sensitive
information.</t>
          <t>For example:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-store

{
  "access_token":"2YotnFZFEjr1zCsicMWpAA",
  "token_type":"Bearer",
  "expires_in":3600,
  "refresh_token":"tGzv3JOkF0XG5Qx2TlKWIA",
  "example_parameter":"example_value"
}
]]></artwork>
          <t>The client MUST ignore unrecognized value names in the response.  The
sizes of tokens and other values received from the authorization
server are left undefined.  The client should avoid making
assumptions about value sizes.  The authorization server SHOULD
document the size of any value it issues.</t>
          <section anchor="token-error-response" numbered="true" toc="default">
            <name>Error Response</name>
            <t>The authorization server responds with an HTTP 400 (Bad Request)
status code (unless specified otherwise) and includes the following
parameters with the response:</t>
            <dl newline="false" spacing="normal">
              <dt>"error":</dt>
              <dd>
                <t>
  REQUIRED.  A single ASCII <xref target="USASCII" format="default"/> error code from the following:

                </t>
                <dl newline="false" spacing="normal">
                  <dt>"invalid_request":</dt>
                  <dd>
        The request is missing a required parameter, includes an
unsupported parameter value (other than grant type),
repeats a parameter, includes multiple credentials,
utilizes more than one mechanism for authenticating the
client, contains a <tt>code_verifier</tt> although no 
<tt>code_challenge</tt> was sent in the authorization request, 
or is otherwise malformed.</dd>
                  <dt>"invalid_client":</dt>
                  <dd>
        Client authentication failed (e.g., unknown client, no
client authentication included, or unsupported
authentication method).  The authorization server MAY
return an HTTP 401 (Unauthorized) status code to indicate
which HTTP authentication schemes are supported.  If the
client attempted to authenticate via the <tt>Authorization</tt>
request header field, the authorization server MUST
respond with an HTTP 401 (Unauthorized) status code and
include the <tt>WWW-Authenticate</tt> response header field
matching the authentication scheme used by the client.</dd>
                  <dt>"invalid_grant":</dt>
                  <dd>
        The provided authorization grant (e.g., authorization
code, resource owner credentials) or refresh token is
invalid, expired, revoked, does not match the redirect
URI used in the authorization request, or was issued to
another client.</dd>
                  <dt>"unauthorized_client":</dt>
                  <dd>
        The authenticated client is not authorized to use this
authorization grant type.</dd>
                  <dt>"unsupported_grant_type":</dt>
                  <dd>
        The authorization grant type is not supported by the
authorization server.</dd>
                  <dt>"invalid_scope":</dt>
                  <dd>
        The requested scope is invalid, unknown, malformed, or
exceeds the scope granted by the resource owner.</dd>
                </dl>
                <t>

Values for the <tt>error</tt> parameter MUST NOT include characters
outside the set %x20-21 / %x23-5B / %x5D-7E.</t>
              </dd>
              <dt>"error_description":</dt>
              <dd>
  OPTIONAL.  Human-readable ASCII <xref target="USASCII" format="default"/> text providing
additional information, used to assist the client developer in
understanding the error that occurred.
Values for the <tt>error_description</tt> parameter MUST NOT include
characters outside the set %x20-21 / %x23-5B / %x5D-7E.</dd>
              <dt>"error_uri":</dt>
              <dd>
  OPTIONAL.  A URI identifying a human-readable web page with
information about the error, used to provide the client
developer with additional information about the error.
Values for the <tt>error_uri</tt> parameter MUST conform to the
URI-reference syntax and thus MUST NOT include characters
outside the set %x21 / %x23-5B / %x5D-7E.</dd>
            </dl>
            <t>The parameters are included in the payload of the HTTP response
using the <tt>application/json</tt> media type as defined by <xref target="RFC7159" format="default"/>.  The
parameters are serialized into a JSON structure by adding each
parameter at the highest structure level.  Parameter names and string
values are included as JSON strings.  Numerical values are included
as JSON numbers.  The order of parameters does not matter and can
vary.</t>
            <t>For example:</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 400 Bad Request
Content-Type: application/json
Cache-Control: no-store

{
 "error":"invalid_request"
}
]]></artwork>
          </section>
        </section>
      </section>
    </section>
    <section anchor="obtaining-authorization" numbered="true" toc="default">
      <name>Grant Types</name>
      <t>To request an access token, the client obtains authorization from the
resource owner. This specification defines the following authorization grant types:</t>
      <ul spacing="normal">
        <li>authorization code</li>
        <li>client credentials, and</li>
        <li>refresh token</li>
      </ul>
      <t>It also provides an extension mechanism for defining additional grant types.</t>
      <section anchor="authorization-code-grant" numbered="true" toc="default">
        <name>Authorization Code Grant</name>
        <t>The authorization code grant type is used to obtain both access
tokens and refresh tokens.</t>
        <t>The grant type uses the additional authorization endpoint to let the authorization server
interact with the resource owner in order to get consent for resource access.</t>
        <t>Since this is a redirect-based flow, the client must be capable of
initiating the flow with the resource owner's user agent (typically a web
browser) and capable of being redirected back to from the authorization server.</t>
        <figure anchor="fig-authorization-code-flow">
          <name>Authorization Code Flow</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
+----------+
| Resource |
|   Owner  |
|          |
+----------+
     ^
     |
    (2)
+----|-----+          Client Identifier      +---------------+
|         -+----(1)-- & Redirect URI    ---->|               |
|  User-   |                                 | Authorization |
|  Agent  -+----(2)-- User authenticates --->|     Server    |
|          |                                 |               |
|         -+----(3)-- Authorization Code ---<|               |
+-|----|---+                                 +---------------+
  |    |                                         ^      v
 (1)  (3)                                        |      |
  |    |                                         |      |
  ^    v                                         |      |
+---------+                                      |      |
|         |>---(4)-- Authorization Code ---------'      |
|  Client |          & Redirect URI                     |
|         |                                             |
|         |<---(5)----- Access Token -------------------'
+---------+       (w/ Optional Refresh Token)

Note: The lines illustrating steps (1), (2), and (3) are broken into
two parts as they pass through the user agent.
]]></artwork>
        </figure>
        <t>The flow illustrated in <xref target="fig-authorization-code-flow" format="default"/> includes the following steps:</t>
        <t>(1)  The client initiates the flow by directing the resource owner's
     user agent to the authorization endpoint.  The client includes
     its client identifier, code challenge (derived from a generated code verifier), 
     optional requested scope, optional local state, and a
     redirect URI to which the authorization server will send the
     user agent back once access is granted (or denied).</t>
        <t>(2)  The authorization server authenticates the resource owner (via
     the user agent) and establishes whether the resource owner
     grants or denies the client's access request.</t>
        <t>(3)  Assuming the resource owner grants access, the authorization
     server redirects the user agent back to the client using the
     redirect URI provided earlier (in the request or during
     client registration).  The redirect URI includes an
     authorization code and any local state provided by the client
     earlier.</t>
        <t>(4)  The client requests an access token from the authorization
     server's token endpoint by including the authorization code
     received in the previous step, and including its code verifier.
     When making the request, the
     client authenticates with the authorization server if it can.  The client
     includes the redirect URI used to obtain the authorization
     code for verification.</t>
        <t>(5)  The authorization server authenticates the client when possible, validates the
     authorization code, validates the code verifier, and ensures that the redirect URI
     received matches the URI used to redirect the client in
     step (3).  If valid, the authorization server responds back with
     an access token and, optionally, a refresh token.</t>
        <section anchor="authorization-request" numbered="true" toc="default">
          <name>Authorization Request</name>
          <t>To begin the authorization request, the client builds the authorization
request URI by adding parameters to the authorization server's
authorization endpoint URI. The client will eventually redirect the user agent
to this URI to initiate the request.</t>
          <t>Clients use a unique secret per authorization request to protect against authorization code
injection and CSRF attacks. The client first generates this secret, which it can
use at the time of redeeming the authorization code to prove that the client using the
authorization code is the same client that requested it.</t>
          <t>The client constructs the request URI by adding the following
parameters to the query component of the authorization endpoint URI
using the <tt>application/x-www-form-urlencoded</tt> format, per Appendix B:</t>
          <dl newline="false" spacing="normal">
            <dt>"response_type":</dt>
            <dd>
  REQUIRED.  The authorization endpoint supports different sets of request and response 
pameters. The client determines the type of flow by using a certain <tt>response_type</tt>
value. This specification defines the value <tt>code</tt>, which must be used to signal that
the client wants to use the authorization code flow.</dd>
          </dl>
          <t>Extension response types MAY contain a space-delimited (%x20) list of
values, where the order of values does not matter (e.g., response
type <tt>a b</tt> is the same as <tt>b a</tt>).  The meaning of such composite
response types is defined by their respective specifications.</t>
          <t>Some extension response types are defined by (<xref target="OpenID" format="default"/>).</t>
          <t>If an authorization request is missing the <tt>response_type</tt> parameter,
or if the response type is not understood, the authorization server
MUST return an error response as described in <xref target="authorization-code-error-response" format="default"/>.</t>
          <dl newline="false" spacing="normal">
            <dt>"client_id":</dt>
            <dd>
  REQUIRED.  The client identifier as described in <xref target="client-identifier" format="default"/>.</dd>
            <dt>"code_challenge":</dt>
            <dd>
  REQUIRED or RECOMMENDED (see <xref target="authorization_codes" format="default"/>).  Code challenge.</dd>
            <dt>"code_challenge_method":</dt>
            <dd>
  OPTIONAL, defaults to <tt>plain</tt> if not present in the request.  Code
verifier transformation method is <tt>S256</tt> or <tt>plain</tt>.</dd>
            <dt>"redirect_uri":</dt>
            <dd>
  OPTIONAL.  As described in <xref target="redirection-endpoint" format="default"/>.</dd>
            <dt>"scope":</dt>
            <dd>
  OPTIONAL.  The scope of the access request as described by
<xref target="access-token-scope" format="default"/>.</dd>
            <dt>"state":</dt>
            <dd>
  OPTIONAL.  An opaque value used by the client to maintain
state between the request and callback.  The authorization
server includes this value when redirecting the user agent back
to the client.</dd>
          </dl>
          <t>The <tt>code_verifier</tt> is a unique high-entropy cryptographically random string generated
for each authorization request, using the unreserved characters <tt>[A-Z] / [a-z] / [0-9] / "-" / "." / "_" / "~"</tt>, 
with a minimum length of 43 characters and a maximum length of 128 characters.</t>
          <t>The client stores the <tt>code_verifier</tt> temporarily, and calculates the
<tt>code_challenge</tt> which it uses in the authorization request.</t>
          <t>ABNF for <tt>code_verifier</tt> is as follows.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
code-verifier = 43*128unreserved
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
ALPHA = %x41-5A / %x61-7A
DIGIT = %x30-39
]]></artwork>
          <t>NOTE: The code verifier SHOULD have enough entropy to make it
impractical to guess the value.  It is RECOMMENDED that the output of
a suitable random number generator be used to create a 32-octet
sequence.  The octet sequence is then base64url-encoded to produce a
43-octet URL-safe string to use as the code verifier.</t>
          <t>The client then creates a <tt>code_challenge</tt> derived from the code
verifier by using one of the following transformations on the code
verifier:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
S256
  code_challenge = BASE64URL-ENCODE(SHA256(ASCII(code_verifier)))

plain
  code_challenge = code_verifier
]]></artwork>
          <t>If the client is capable of using <tt>S256</tt>, it MUST use <tt>S256</tt>, as
<tt>S256</tt> is Mandatory To Implement (MTI) on the server.  Clients are
permitted to use <tt>plain</tt> only if they cannot support <tt>S256</tt> for some
technical reason, for example constrained environments that do not have
a hashing function available, and know via out-of-band configuration or via 
Authorization Server Metadata (<xref target="RFC8414" format="default"/>) that the server supports <tt>plain</tt>.</t>
          <t>ABNF for <tt>code_challenge</tt> is as follows.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
code-challenge = 43*128unreserved
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
ALPHA = %x41-5A / %x61-7A
DIGIT = %x30-39
]]></artwork>
          <t>The properties <tt>code_challenge</tt> and <tt>code_verifier</tt> are adopted from the OAuth 2.0 extension
known as "Proof-Key for Code Exchange", or PKCE (<xref target="RFC7636" format="default"/>) where this technique
was originally developed.</t>
          <t>Authorization servers MUST support the <tt>code_challenge</tt> and <tt>code_verifier</tt> parameters.</t>
          <t>Clients MUST use <tt>code_challenge</tt> and <tt>code_verifier</tt> and
authorization servers MUST enforce their use except under the conditions
described in <xref target="authorization_codes" format="default"/>. In this case, using and enforcing
<tt>code_challenge</tt> and <tt>code_verifier</tt> as described in the following is still
RECOMMENDED.</t>
          <t>The <tt>state</tt> and <tt>scope</tt> parameters SHOULD NOT include sensitive
client or resource owner information in plain text, as they can be
transmitted over insecure channels or stored insecurely.</t>
          <t>The client directs the resource owner to the constructed URI using an
HTTP redirection, or by other means available to it via the user agent.</t>
          <t>For example, the client directs the user agent to make the following
HTTP request (with extra line breaks for display purposes
only):</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
GET /authorize?response_type=code&client_id=s6BhdRkqt3&state=xyz
    &redirect_uri=https%3A%2F%2Fclient%2Eexample%2Ecom%2Fcb
    &code_challenge=6fdkQaPm51l13DSukcAH3Mdx7_ntecHYd1vi3n0hMZY
    &code_challenge_method=S256 HTTP/1.1
Host: server.example.com
]]></artwork>
          <t>The authorization server validates the request to ensure that all
required parameters are present and valid.</t>
          <t>In particular, the authorization server MUST validate the <tt>redirect_uri</tt> 
in the request if present, ensuring that it matches one of the registered
redirect URIs previously established during client registration (<xref target="client-registration" format="default"/>). 
When comparing the two URIs the authorization server MUST using simple 
character-by-character string comparison as defined in <xref target="RFC3986" format="default"/>, Section 6.2.1.</t>
          <t>If the request is valid,
the authorization server authenticates the resource owner and obtains
an authorization decision (by asking the resource owner or by
establishing approval via other means).</t>
          <t>When a decision is established, the authorization server directs the
user agent to the provided client redirect URI using an HTTP
redirection response, or by other means available to it via the
user agent.</t>
        </section>
        <section anchor="authorization-response" numbered="true" toc="default">
          <name>Authorization Response</name>
          <t>If the resource owner grants the access request, the authorization
server issues an authorization code and delivers it to the client by
adding the following parameters to the query component of the
redirect URI using the <tt>application/x-www-form-urlencoded</tt> format,
per Appendix B:</t>
          <dl newline="false" spacing="normal">
            <dt>"code":</dt>
            <dd>
  REQUIRED.  The authorization code generated by the
authorization server and is opqaue to the client.  The authorization code MUST expire
shortly after it is issued to mitigate the risk of leaks.  A
maximum authorization code lifetime of 10 minutes is
RECOMMENDED.  The client MUST NOT use the authorization code
more than once.  If an authorization code is used more than
once, the authorization server MUST deny the request and SHOULD
revoke (when possible) all access tokens and refresh tokens previously issued based on
that authorization code.  The authorization code is bound to
the client identifier, code challenge and redirect URI.</dd>
            <dt>"state":</dt>
            <dd>
  REQUIRED if the <tt>state</tt> parameter was present in the client
authorization request.  The exact value received from the
client.</dd>
          </dl>
          <t>For example, the authorization server redirects the user agent by
sending the following HTTP response:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 302 Found
Location: https://client.example.com/cb?code=SplxlOBeZQQYbYS6WxSbIA
          &state=xyz
]]></artwork>
          <t>The client MUST ignore unrecognized response parameters.  The
authorization code string size is left undefined by this
specification.  The client should avoid making assumptions about code
value sizes.  The authorization server SHOULD document the size of
any value it issues.</t>
          <t>The authorization server MUST associate the <tt>code_challenge</tt> and 
<tt>code_challenge_method</tt> values with the issued authorization code 
so the code challenge can be verified later.</t>
          <t>The exact method that the server uses to associate the <tt>code_challenge</tt> 
with the issued code is out of scope for this specification. The 
code challenge could be stored on the server and associated with the 
code there. The <tt>code_challenge</tt> and <tt>code_challenge_method</tt> values may 
be stored in encrypted form in the code itself, but the server 
MUST NOT include the <tt>code_challenge</tt> value in a response parameter 
in a form that entities other than the AS can extract.</t>
          <t>Clients MUST prevent injection (replay) of authorization codes into the
authorization response by attackers. Using <tt>code_challenge</tt> and <tt>code_verifier</tt> prevents injection of authorization codes since the authorization server will reject a token request with a mismatched <tt>code_verifier</tt>. See <xref target="authorization_codes" format="default"/> for more details.</t>
          <section anchor="authorization-code-error-response" numbered="true" toc="default">
            <name>Error Response</name>
            <t>If the request fails due to a missing, invalid, or mismatching
redirect URI, or if the client identifier is missing or invalid,
the authorization server SHOULD inform the resource owner of the
error and MUST NOT automatically redirect the user agent to the
invalid redirect URI.</t>
            <t>An AS MUST reject requests without a <tt>code_challenge</tt> from public clients, 
and MUST reject such requests from other clients unless there is 
reasonable assurance that the client mitigates authorization code injection 
in other ways. See <xref target="authorization_codes" format="default"/> for details.</t>
            <t>If the server does not support the requested <tt>code_challenge_method</tt> transformation, 
the authorization endpoint MUST return the
authorization error response with <tt>error</tt> value set to
<tt>invalid_request</tt>.  The <tt>error_description</tt> or the response of
<tt>error_uri</tt> SHOULD explain the nature of error, e.g., transform
algorithm not supported.</t>
            <t>If the resource owner denies the access request or if the request
fails for reasons other than a missing or invalid redirect URI,
the authorization server informs the client by adding the following
parameters to the query component of the redirect URI using the
<tt>application/x-www-form-urlencoded</tt> format, per Appendix B:</t>
            <dl newline="false" spacing="normal">
              <dt>"error":</dt>
              <dd>
                <t>
  REQUIRED.  A single ASCII <xref target="USASCII" format="default"/> error code from the
following:

                </t>
                <dl newline="false" spacing="normal">
                  <dt>"invalid_request":</dt>
                  <dd>
        The request is missing a required parameter, includes an
invalid parameter value, includes a parameter more than
once, or is otherwise malformed.</dd>
                  <dt>"unauthorized_client":</dt>
                  <dd>
        The client is not authorized to request an authorization
code using this method.</dd>
                  <dt>"access_denied":</dt>
                  <dd>
        The resource owner or authorization server denied the
request.</dd>
                  <dt>"unsupported_response_type":</dt>
                  <dd>
        The authorization server does not support obtaining an
authorization code using this method.</dd>
                  <dt>"invalid_scope":</dt>
                  <dd>
        The requested scope is invalid, unknown, or malformed.</dd>
                  <dt>"server_error":</dt>
                  <dd>
        The authorization server encountered an unexpected
condition that prevented it from fulfilling the request.
(This error code is needed because a 500 Internal Server
Error HTTP status code cannot be returned to the client
via an HTTP redirect.)</dd>
                  <dt>"temporarily_unavailable":</dt>
                  <dd>
        The authorization server is currently unable to handle
the request due to a temporary overloading or maintenance
of the server.  (This error code is needed because a 503
Service Unavailable HTTP status code cannot be returned
to the client via an HTTP redirect.)</dd>
                </dl>
                <t>

Values for the <tt>error</tt> parameter MUST NOT include characters
outside the set %x20-21 / %x23-5B / %x5D-7E.</t>
              </dd>
              <dt>"error_description":</dt>
              <dd>
  OPTIONAL.  Human-readable ASCII <xref target="USASCII" format="default"/> text providing
additional information, used to assist the client developer in
understanding the error that occurred.
Values for the <tt>error_description</tt> parameter MUST NOT include
characters outside the set %x20-21 / %x23-5B / %x5D-7E.</dd>
              <dt>"error_uri":</dt>
              <dd>
  OPTIONAL.  A URI identifying a human-readable web page with
information about the error, used to provide the client
developer with additional information about the error.
Values for the <tt>error_uri</tt> parameter MUST conform to the
URI-reference syntax and thus MUST NOT include characters
outside the set %x21 / %x23-5B / %x5D-7E.</dd>
              <dt>"state":</dt>
              <dd>
  REQUIRED if a <tt>state</tt> parameter was present in the client
authorization request.  The exact value received from the
client.</dd>
            </dl>
            <t>For example, the authorization server redirects the user agent by
sending the following HTTP response:</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 302 Found
Location: https://client.example.com/cb?error=access_denied&state=xyz
]]></artwork>
          </section>
        </section>
        <section anchor="code-token-extension" numbered="true" toc="default">
          <name>Token Endpoint Extension</name>
          <t>The authorization grant type is identified at the token endpoint with the <tt>grant_type</tt> value of <tt>authorization_code</tt>.</t>
          <t>If this value is set, the following additional token request parameters beyond <xref target="token-request" format="default"/> are required:</t>
          <dl newline="false" spacing="normal">
            <dt>"code":</dt>
            <dd>
  REQUIRED.  The authorization code received from the
authorization server.</dd>
            <dt>"redirect_uri":</dt>
            <dd>
  REQUIRED, if the <tt>redirect_uri</tt> parameter was included in the
authorization request as described in <xref target="authorization-request" format="default"/>, in which case their
values MUST be identical. If no <tt>redirect_uri</tt> was included in the 
authorization request, this parameter is OPTIONAL.</dd>
            <dt>"code_verifier":</dt>
            <dd>
  REQUIRED, if the <tt>code_challenge</tt> parameter was included in the authorization 
request. MUST NOT be used otherwise. The original code verifier string.</dd>
          </dl>
          <t>For example, the client makes the following HTTP request
(with extra line breaks for display purposes only):</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
POST /token HTTP/1.1
Host: server.example.com
Authorization: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW
Content-Type: application/x-www-form-urlencoded

grant_type=authorization_code&code=SplxlOBeZQQYbYS6WxSbIA
&redirect_uri=https%3A%2F%2Fclient%2Eexample%2Ecom%2Fcb
&code_verifier=3641a2d12d66101249cdf7a79c000c1f8c05d2aafcf14bf146497bed
]]></artwork>
          <t>In addition to the processing rules in <xref target="token-request" format="default"/>, the authorization server MUST:</t>
          <ul spacing="normal">
            <li>ensure that the authorization code was issued to the authenticated
confidential or credentialed client, or if the client is public, ensure that the
code was issued to <tt>client_id</tt> in the request,</li>
            <li>verify that the authorization code is valid,</li>
            <li>verify that the <tt>code_verifier</tt> parameter is present if and only if a
<tt>code_challenge</tt> parameter was present in the authorization request,</li>
            <li>if a <tt>code_verifier</tt> is present, verify the <tt>code_verifier</tt> by calculating
the code challenge from the received <tt>code_verifier</tt> and comparing it with
the previously associated <tt>code_challenge</tt>, after first transforming it
according to the <tt>code_challenge_method</tt> method specified by the client, and</li>
            <li>ensure that the <tt>redirect_uri</tt> parameter is present if the
<tt>redirect_uri</tt> parameter was included in the initial authorization
request as described in <xref target="authorization-request" format="default"/>, and if included ensure that
their values are identical.</li>
          </ul>
        </section>
      </section>
      <section anchor="client-credentials-grant" numbered="true" toc="default">
        <name>Client Credentials Grant</name>
        <t>The client can request an access token using only its client
credentials (or other supported means of authentication) when the
client is requesting access to the protected resources under its
control, or those of another resource owner that have been previously
arranged with the authorization server (the method of which is beyond
the scope of this specification).</t>
        <t>The client credentials grant type MUST only be used by confidential
or credentialed clients.</t>
        <figure anchor="fig-client-credentials-grant">
          <name>Client Credentials Grant</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
     +---------+                                  +---------------+
     |         |                                  |               |
     |         |>--(1)- Client Authentication --->| Authorization |
     | Client  |                                  |     Server    |
     |         |<--(2)---- Access Token ---------<|               |
     |         |                                  |               |
     +---------+                                  +---------------+
]]></artwork>
        </figure>
        <t>The use of the client credentials grant illustrated in <xref target="fig-client-credentials-grant" format="default"/> includes the following steps:</t>
        <t>(1)  The client authenticates with the authorization server and
     requests an access token from the token endpoint.</t>
        <t>(2)  The authorization server authenticates the client, and if valid,
     issues an access token.</t>
        <section anchor="client-credentials-access-token-request" numbered="true" toc="default">
          <name>Token Endpoint Extension</name>
          <t>The authorization grant type is identified at the token endpoint with the <tt>grant_type</tt> value of <tt>client_credentials</tt>.</t>
          <t>If this value is set, no additional parameters beyond <xref target="token-request" format="default"/> are required/supported:</t>
          <t>For example, the client makes the following HTTP request using
transport-layer security (with extra line breaks for display purposes
only):</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
POST /token HTTP/1.1
Host: server.example.com
Authorization: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW
Content-Type: application/x-www-form-urlencoded

grant_type=client_credentials
]]></artwork>
          <t>The authorization server MUST authenticate the client.</t>
        </section>
      </section>
      <section anchor="refreshing-an-access-token" numbered="true" toc="default">
        <name>Refresh Token Grant</name>
        <t>The refresh token is a credential issued by the authorization server to a client, which can be used
to obtain new (fresh) access tokens based on an existing grant. The client uses this option either because the previous access
token has expired or the client previously obtained an access token with a scope more narrow than 
approved by the respective grant and later requires an access token with a different scope
under the same grant.</t>
        <t>Refresh tokens MUST be kept confidential in transit and storage, and
shared only among the authorization server and the client to whom the
refresh tokens were issued.  The authorization server MUST maintain
the binding between a refresh token and the client to whom it was
issued.</t>
        <t>The authorization server MUST verify the binding between the refresh
token and client identity whenever the client identity can be
authenticated.  When client authentication is not possible, the
authorization server SHOULD issue sender-constrained refresh tokens
or use refresh token rotation as described in (#refreshing-an-access-token).</t>
        <t>The authorization server MUST ensure that refresh tokens cannot be
generated, modified, or guessed to produce valid refresh tokens by
unauthorized parties.</t>
        <section anchor="token-endpoint-extension" numbered="true" toc="default">
          <name>Token Endpoint Extension</name>
          <t>The authorization grant type is identified at the token endpoint with the <tt>grant_type</tt> value of <tt>refresh_token</tt>.</t>
          <t>If this value is set, the following additional parameters beyond <xref target="token-request" format="default"/> are required/supported:</t>
          <dl newline="false" spacing="normal">
            <dt>"refresh_token":</dt>
            <dd>
  REQUIRED.  The refresh token issued to the client.</dd>
          </dl>
          <t>Because refresh tokens are typically long-lasting credentials used to
request additional access tokens, the refresh token is bound to the
client to which it was issued. Confidential or credentialed clients
MUST authenticate with the authorization server as described in
<xref target="token-endpoint-client-authentication" format="default"/>.</t>
          <t>For example, the client makes the following HTTP request using
transport-layer security (with extra line breaks for display purposes
only):</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
POST /token HTTP/1.1
Host: server.example.com
Authorization: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW
Content-Type: application/x-www-form-urlencoded

grant_type=refresh_token&refresh_token=tGzv3JOkF0XG5Qx2TlKWIA
]]></artwork>
          <t>In addition to the processing rules in <xref target="token-request" format="default"/>, the authorization server MUST:</t>
          <ul spacing="normal">
            <li>validate the refresh token.</li>
          </ul>
          <t>Authorization servers SHOULD utilize one of these methods to detect
refresh token replay by malicious actors for public clients:</t>
          <ul spacing="normal">
            <li>
              <em>Sender-constrained refresh tokens:</em> the authorization server
cryptographically binds the refresh token to a certain client
instance by utilizing <xref target="I-D.ietf-oauth-token-binding" format="default"/>, <xref target="RFC8705" format="default"/>,
<xref target="I-D.ietf-oauth-dpop" format="default"/>, or another suitable method.</li>
            <li>
              <em>Refresh token rotation:</em> the authorization server issues a new
refresh token with every access token refresh response.  The
previous refresh token is invalidated but information about the
relationship is retained by the authorization server.  If a
refresh token is compromised and subsequently used by both the
attacker and the legitimate client, one of them will present an
invalidated refresh token, which will inform the authorization
server of the breach.  The authorization server cannot determine
which party submitted the invalid refresh token, but it will
revoke the active refresh token.  This stops the attack at the
cost of forcing the legitimate client to obtain a fresh
authorization grant.</li>
          </ul>
          <t>Implementation note: the grant to which a refresh token belongs
may be encoded into the refresh token itself.  This can enable an
authorization server to efficiently determine the grant to which a
refresh token belongs, and by extension, all refresh tokens that
need to be revoked.  Authorization servers MUST ensure the
integrity of the refresh token value in this case, for example,
using signatures.</t>
        </section>
        <section anchor="refresh-token-response" numbered="true" toc="default">
          <name>Refresh Token Response</name>
          <t>If valid and authorized, the authorization server issues an access
token as described in <xref target="token-response" format="default"/>.</t>
          <t>The authorization server MAY issue a new refresh token, in which case
the client MUST discard the old refresh token and replace it with the
new refresh token.</t>
          <t>The authorization server MAY revoke the old
refresh token after issuing a new refresh token to the client.  If a
new refresh token is issued, the refresh token scope MUST be
identical to that of the refresh token included by the client in the
request.</t>
          <t>Authorization servers MAY revoke refresh tokens automatically in case
of a security event, such as:</t>
          <ul spacing="normal">
            <li>password change</li>
            <li>logout at the authorization server</li>
          </ul>
          <t>Refresh tokens SHOULD expire if the client has been inactive for some
time, i.e., the refresh token has not been used to obtain new
access tokens for some time.  The expiration time is at the
discretion of the authorization server.  It might be a global value
or determined based on the client policy or the grant associated with
the refresh token (and its sensitivity).</t>
        </section>
      </section>
      <section anchor="extension-grants" numbered="true" toc="default">
        <name>Extension Grants</name>
        <t>The client uses an extension grant type by specifying the grant type
using an absolute URI (defined by the authorization server) as the
value of the <tt>grant_type</tt> parameter of the token endpoint, and by
adding any additional parameters necessary.</t>
        <t>For example, to request an access token using the Device Authorization Grant
as defined by <xref target="RFC8628" format="default"/> after the user has authorized the client on a separate device,
the client makes the following HTTP request
(with extra line breaks for display purposes only):</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
  POST /token HTTP/1.1
  Host: server.example.com
  Content-Type: application/x-www-form-urlencoded

  grant_type=urn%3Aietf%3Aparams%3Aoauth%3Agrant-type%3Adevice_code
  &device_code=GmRhmhcxhwEzkoEqiMEg_DnyEysNkuNhszIySk9eS
  &client_id=C409020731
]]></artwork>
        <t>If the access token request is valid and authorized, the
authorization server issues an access token and optional refresh
token as described in <xref target="token-response" format="default"/>.  If the request failed client
authentication or is invalid, the authorization server returns an
error response as described in <xref target="token-error-response" format="default"/>.</t>
      </section>
    </section>
    <section anchor="accessing-protected-resources" numbered="true" toc="default">
      <name>Accessing Protected Resources</name>
      <t>The client accesses protected resources by presenting the access
token to the resource server.  The resource server MUST validate the
access token and ensure that it has not expired and that its scope
covers the requested resource.  The methods used by the resource
server to validate the access token (as well as any error responses)
are beyond the scope of this specification, but generally involve an
interaction or coordination between the resource server and the
authorization server. For example, when the resource server and 
authorization server are colocated or are part of the same system, 
they may share a database or other storage; when the two components
are operated independently, they may use Token Introspection <xref target="RFC7662" format="default"/>
or a structured access token format such as a JWT <xref target="RFC9068" format="default"/>.</t>
      <t>The method in which the client utilizes the access token to
access protected resources at the resource server depends on the type of access
token issued by the authorization server.  Typically, it involves
using the HTTP <tt>Authorization</tt> request header field <xref target="RFC7235" format="default"/> with an
authentication scheme defined by the specification of the access
token type used, such as <tt>Bearer</tt>, defined below.</t>
      <section anchor="access-token-types" numbered="true" toc="default">
        <name>Access Token Types</name>
        <t>The access token type provides the client with the information
required to successfully utilize the access token to make a protected
resource request (along with type-specific attributes).  The client
MUST NOT use an access token if it does not understand the token
type.</t>
        <t>For example, the <tt>Bearer</tt> token type defined in this specification is utilized
by simply including the access token string in the request:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
GET /resource/1 HTTP/1.1
Host: example.com
Authorization: Bearer mF_9.B5f-4.1JqM
]]></artwork>
        <t>The above example is provided for illustration purposes only.</t>
        <t>Each access token type definition specifies the additional attributes
(if any) sent to the client together with the <tt>access_token</tt> response
parameter.  It also defines the HTTP authentication method used to
include the access token when making a protected resource request.</t>
      </section>
      <section anchor="bearer-tokens" numbered="true" toc="default">
        <name>Bearer Tokens</name>
        <t>A Bearer Token is a security token with the property that any party
in possession of the token (a "bearer") can use the token in any way
that any other party in possession of it can.  Using a Bearer Token
does not require a bearer to prove possession of cryptographic key material
(proof-of-possession).</t>
        <t>Bearer Tokens may be enhanced with proof-of-possession specifications such 
as mTLS <xref target="RFC8705" format="default"/> to provide proof-of-possession characteristics.</t>
        <t>To protect against access token disclosure, the
communication interaction between the client and the resource server
MUST utilize confidentiality and integrity protection as described in
<xref target="communication-security" format="default"/>.</t>
        <t>To mitigate the risk of access token capture and replay, 
the lifetime of the token MUST be limited. One means
of achieving this is by putting a validity time field inside the
protected part of the token.  Note that using short-lived 
tokens reduces the impact of them being leaked.</t>
        <t>There is no requirement on the particular structure or format of a bearer token, as described in <xref target="accessing-protected-resources" format="default"/>. If a bearer token is a reference to authorization information, such references MUST be infeasible for an attacker to guess, such as using a sufficiently long cryptographically random string. If a bearer token uses an encoding mechanism to contain the authorization information in the token itself, the access token MUST use integrity protection sufficient to prevent the token from being modified. One example of an encoding and signing mechanism for access tokens is described in JSON Web Token Profile for Access Tokens <xref target="RFC9068" format="default"/>.</t>
        <section anchor="authenticated-requests" numbered="true" toc="default">
          <name>Authenticated Requests</name>
          <t>This section defines two methods of sending Bearer tokens in resource
requests to resource servers. Clients MUST use one of the two methods defined below,
and MUST NOT use more than one method to transmit the token in each request.</t>
          <t>In particular, clients MUST NOT send the access token in a URI query parameter,
and resource servers MUST ignore access tokens in a URI query parameter.</t>
          <section anchor="authorization-request-header-field" numbered="true" toc="default">
            <name>Authorization Request Header Field</name>
            <t>When sending the access token in the <tt>Authorization</tt> request header
field defined by HTTP/1.1 <xref target="RFC7235" format="default"/>, the client uses the <tt>Bearer</tt>
authentication scheme to transmit the access token.</t>
            <t>For example:</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
 GET /resource HTTP/1.1
 Host: server.example.com
 Authorization: Bearer mF_9.B5f-4.1JqM
]]></artwork>
            <t>The syntax of the <tt>Authorization</tt> header field for this scheme
follows the usage of the Basic scheme defined in Section 2 of
<xref target="RFC2617" format="default"/>.  Note that, as with Basic, it does not conform to the
generic syntax defined in Section 1.2 of <xref target="RFC2617" format="default"/> but is compatible
with the general authentication framework in HTTP 1.1 Authentication
<xref target="RFC7235" format="default"/>, although it does not follow the preferred
practice outlined therein in order to reflect existing deployments.
The syntax for Bearer credentials is as follows:</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
b64token    = 1*( ALPHA / DIGIT /
                 "-" / "." / "_" / "~" / "+" / "/" ) *"="
credentials = "Bearer" 1*SP b64token
]]></artwork>
            <t>Clients SHOULD make authenticated requests with a bearer token using
the <tt>Authorization</tt> request header field with the <tt>Bearer</tt> HTTP
authorization scheme.  Resource servers MUST support this method.</t>
          </section>
          <section anchor="form-encoded-body-parameter" numbered="true" toc="default">
            <name>Form-Encoded Body Parameter</name>
            <t>When sending the access token in the HTTP request payload, the
client adds the access token to the request-body using the
<tt>access_token</tt> parameter.  The client MUST NOT use this method unless
all of the following conditions are met:</t>
            <ul spacing="normal">
              <li>The HTTP request entity-header includes the <tt>Content-Type</tt> header
field set to <tt>application/x-www-form-urlencoded</tt>.</li>
              <li>The payload follows the encoding requirements of the
<tt>application/x-www-form-urlencoded</tt> content-type as defined by
HTML 4.01 <xref target="W3C.REC-html401-19991224" format="default"/>.</li>
              <li>The HTTP request payload is single-part.</li>
              <li>The content to be encoded in the payload MUST consist entirely
of ASCII <xref target="USASCII" format="default"/> characters.</li>
              <li>The HTTP request method is one for which the request-body has
defined semantics.  In particular, this means that the <tt>GET</tt>
method MUST NOT be used.</li>
            </ul>
            <t>The payload MAY include other request-specific parameters, in
which case the <tt>access_token</tt> parameter MUST be properly separated
from the request-specific parameters using <tt>&amp;</tt> character(s) (ASCII
code 38).</t>
            <t>For example, the client makes the following HTTP request using
transport-layer security:</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
POST /resource HTTP/1.1
Host: server.example.com
Content-Type: application/x-www-form-urlencoded

access_token=mF_9.B5f-4.1JqM
]]></artwork>
            <t>The <tt>application/x-www-form-urlencoded</tt> method SHOULD NOT be used
except in application contexts where participating clients do not
have access to the <tt>Authorization</tt> request header field.  Resource
servers MAY support this method.</t>
          </section>
        </section>
        <section anchor="the-www-authenticate-response-header-field" numbered="true" toc="default">
          <name>The WWW-Authenticate Response Header Field</name>
          <t>If the protected resource request does not include authentication
credentials or does not contain an access token that enables access
to the protected resource, the resource server MUST include the HTTP
<tt>WWW-Authenticate</tt> response header field; it MAY include it in
response to other conditions as well.  The <tt>WWW-Authenticate</tt> header
field uses the framework defined by HTTP/1.1 <xref target="RFC7235" format="default"/>.</t>
          <t>All challenges for this token type MUST use the auth-scheme
value <tt>Bearer</tt>.  This scheme MUST be followed by one or more
auth-param values.  The auth-param attributes used or defined by this
specification for this token type are as follows.  Other auth-param 
attributes MAY be used as well.</t>
          <t>A <tt>realm</tt> attribute MAY be included to indicate the scope of
protection in the manner described in HTTP/1.1 <xref target="RFC7235" format="default"/>.  The
<tt>realm</tt> attribute MUST NOT appear more than once.</t>
          <t>The <tt>scope</tt> attribute is defined in <xref target="access-token-scope" format="default"/>.  The
<tt>scope</tt> attribute is a space-delimited list of case-sensitive scope
values indicating the required scope of the access token for
accessing the requested resource. <tt>scope</tt> values are implementation
defined; there is no centralized registry for them; allowed values
are defined by the authorization server.  The order of <tt>scope</tt> values
is not significant.  In some cases, the <tt>scope</tt> value will be used
when requesting a new access token with sufficient scope of access to
utilize the protected resource.  Use of the <tt>scope</tt> attribute is
OPTIONAL.  The <tt>scope</tt> attribute MUST NOT appear more than once.  The
<tt>scope</tt> value is intended for programmatic use and is not meant to be
displayed to end-users.</t>
          <t>Two example scope values follow; these are taken from the OpenID
Connect <xref target="OpenID.Messages" format="default"/> and the Open Authentication Technology
Committee (OATC) Online Multimedia Authorization Protocol <xref target="OMAP" format="default"/>
OAuth 2.0 use cases, respectively:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
scope="openid profile email"
scope="urn:example:channel=HBO&urn:example:rating=G,PG-13"
]]></artwork>
          <t>If the protected resource request included an access token and failed
authentication, the resource server SHOULD include the <tt>error</tt>
attribute to provide the client with the reason why the access
request was declined.  The parameter value is described in
<xref target="bearer-token-error-codes" format="default"/>.  In addition, the resource server MAY include the
<tt>error_description</tt> attribute to provide developers a human-readable
explanation that is not meant to be displayed to end-users.  It also
MAY include the <tt>error_uri</tt> attribute with an absolute URI
identifying a human-readable web page explaining the error.  The
<tt>error</tt>, <tt>error_description</tt>, and <tt>error_uri</tt> attributes MUST NOT
appear more than once.</t>
          <t>Values for the <tt>scope</tt> attribute (specified in Appendix A.4)
MUST NOT include characters outside the set %x21 / %x23-5B
/ %x5D-7E for representing scope values and %x20 for delimiters
between scope values.  Values for the <tt>error</tt> and <tt>error_description</tt>
attributes (specified in Appendixes A.7 and A.8) MUST
NOT include characters outside the set %x20-21 / %x23-5B / %x5D-7E.
Values for the <tt>error_uri</tt> attribute (specified in Appendix A.9 of)
MUST conform to the URI-reference syntax and thus MUST NOT
include characters outside the set %x21 / %x23-5B / %x5D-7E.</t>
          <t>For example, in response to a protected resource request without
authentication:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 401 Unauthorized
WWW-Authenticate: Bearer realm="example"
]]></artwork>
          <t>And in response to a protected resource request with an
authentication attempt using an expired access token:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 401 Unauthorized
WWW-Authenticate: Bearer realm="example",
                  error="invalid_token",
                  error_description="The access token expired"
]]></artwork>
        </section>
        <section anchor="bearer-token-error-codes" numbered="true" toc="default">
          <name>Error Codes</name>
          <t>When a request fails, the resource server responds using the
appropriate HTTP status code (typically, 400, 401, 403, or 405) and
includes one of the following error codes in the response:</t>
          <dl newline="false" spacing="normal">
            <dt>"invalid_request":</dt>
            <dd>
  The request is missing a required parameter, includes an
unsupported parameter or parameter value, repeats the same
parameter, uses more than one method for including an access
token, or is otherwise malformed.  The resource server SHOULD
respond with the HTTP 400 (Bad Request) status code.</dd>
            <dt>"invalid_token":</dt>
            <dd>
  The access token provided is expired, revoked, malformed, or
invalid for other reasons.  The resource SHOULD respond with
the HTTP 401 (Unauthorized) status code.  The client MAY
request a new access token and retry the protected resource
request.</dd>
            <dt>"insufficient_scope":</dt>
            <dd>
              <t>
  The request requires higher privileges (scopes) than provided by the
scopes granted to the client and represented by the access token.</t>
              <t>
The resource server SHOULD respond with the HTTP
403 (Forbidden) status code and MAY include the <tt>scope</tt>
attribute with the scope necessary to access the protected
resource.</t>
            </dd>
          </dl>
          <t>If the request lacks any authentication information (e.g., the client
was unaware that authentication is necessary or attempted using an
unsupported authentication method), the resource server SHOULD NOT
include an error code or other error information.</t>
          <t>For example:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 401 Unauthorized
WWW-Authenticate: Bearer realm="example"
]]></artwork>
        </section>
      </section>
      <section anchor="error-response" numbered="true" toc="default">
        <name>Error Response</name>
        <t>If a resource access request fails, the resource server SHOULD inform
the client of the error. The method by which the resource server
does this is determined by the particular token type, such as the 
description of Bearer tokens in <xref target="bearer-token-error-codes" format="default"/>.</t>
        <section anchor="extension-token-types" numbered="true" toc="default">
          <name>Extension Token Types</name>
          <t><xref target="RFC6750" format="default"/> establishes a common registry in <eref target="https://tools.ietf.org/html/rfc6749#section-11.4">Section 11.4</eref> 
for error values to be shared among OAuth token authentication schemes.</t>
          <t>New authentication schemes designed primarily for OAuth token
authentication SHOULD define a mechanism for providing an error
status code to the client, in which the error values allowed are
registered in the error registry established by this specification.</t>
          <t>Such schemes MAY limit the set of valid error codes to a subset of
the registered values.  If the error code is returned using a named
parameter, the parameter name SHOULD be <tt>error</tt>.</t>
          <t>Other schemes capable of being used for OAuth token authentication,
but not primarily designed for that purpose, MAY bind their error
values to the registry in the same manner.</t>
          <t>New authentication schemes MAY choose to also specify the use of the
<tt>error_description</tt> and <tt>error_uri</tt> parameters to return error
information in a manner parallel to their usage in this
specification.</t>
        </section>
      </section>
    </section>
    <section anchor="extensibility" numbered="true" toc="default">
      <name>Extensibility</name>
      <section anchor="defining-access-token-types" numbered="true" toc="default">
        <name>Defining Access Token Types</name>
        <t>Access token types can be defined in one of two ways: registered in
the Access Token Types registry (following the procedures in
Section 11.1 of <xref target="RFC6749" format="default"/>), or by using a unique absolute URI as its name.</t>
        <t>Types utilizing a URI name SHOULD be limited to vendor-specific
implementations that are not commonly applicable, and are specific to
the implementation details of the resource server where they are
used.</t>
        <t>All other types MUST be registered.  Type names MUST conform to the
type-name ABNF.  If the type definition includes a new HTTP
authentication scheme, the type name SHOULD be identical to the HTTP
authentication scheme name (as defined by <xref target="RFC2617" format="default"/>).  The token type
<tt>example</tt> is reserved for use in examples.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
type-name  = 1*name-char
name-char  = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="defining-new-endpoint-parameters" numbered="true" toc="default">
        <name>Defining New Endpoint Parameters</name>
        <t>New request or response parameters for use with the authorization
endpoint or the token endpoint are defined and registered in the
OAuth Parameters registry following the procedure in Section 11.2 of <xref target="RFC6749" format="default"/>.</t>
        <t>Parameter names MUST conform to the param-name ABNF, and parameter
values syntax MUST be well-defined (e.g., using ABNF, or a reference
to the syntax of an existing parameter).</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
param-name  = 1*name-char
name-char   = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
        <t>Unregistered vendor-specific parameter extensions that are not
commonly applicable and that are specific to the implementation
details of the authorization server where they are used SHOULD
utilize a vendor-specific prefix that is not likely to conflict with
other registered values (e.g., begin with 'companyname_').</t>
      </section>
      <section anchor="defining-new-authorization-grant-types" numbered="true" toc="default">
        <name>Defining New Authorization Grant Types</name>
        <t>New authorization grant types can be defined by assigning them a
unique absolute URI for use with the <tt>grant_type</tt> parameter.  If the
extension grant type requires additional token endpoint parameters,
they MUST be registered in the OAuth Parameters registry as described
by Section 11.2 of <xref target="RFC6749" format="default"/>.</t>
      </section>
      <section anchor="new-response-types" numbered="true" toc="default">
        <name>Defining New Authorization Endpoint Response Types</name>
        <t>New response types for use with the authorization endpoint are
defined and registered in the Authorization Endpoint Response Types
registry following the procedure in Section 11.3 of <xref target="RFC6749" format="default"/>.  Response type
names MUST conform to the response-type ABNF.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
response-type  = response-name *( SP response-name )
response-name  = 1*response-char
response-char  = "_" / DIGIT / ALPHA
]]></artwork>
        <t>If a response type contains one or more space characters (%x20), it
is compared as a space-delimited list of values in which the order of
values does not matter.  Only one order of values can be registered,
which covers all other arrangements of the same set of values.</t>
        <t>For example, an extension can define and register the <tt>code other_token</tt>
response type.  Once registered, the same combination cannot be registered
as <tt>other_token code</tt>, but both values can be used to
denote the same response type.</t>
      </section>
      <section anchor="defining-additional-error-codes" numbered="true" toc="default">
        <name>Defining Additional Error Codes</name>
        <t>In cases where protocol extensions (i.e., access token types,
extension parameters, or extension grant types) require additional
error codes to be used with the authorization code grant error
response (<xref target="authorization-code-error-response" format="default"/>), the token error response (<xref target="token-error-response" format="default"/>), or the
resource access error response (<xref target="error-response" format="default"/>), such error codes MAY be
defined.</t>
        <t>Extension error codes MUST be registered (following the procedures in
Section 11.4 of <xref target="RFC6749" format="default"/>) if the extension they are used in conjunction with is a
registered access token type, a registered endpoint parameter, or an
extension grant type.  Error codes used with unregistered extensions
MAY be registered.</t>
        <t>Error codes MUST conform to the error ABNF and SHOULD be prefixed by
an identifying name when possible.  For example, an error identifying
an invalid value set to the extension parameter <tt>example</tt> SHOULD be
named <tt>example_invalid</tt>.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
error      = 1*error-char
error-char = %x20-21 / %x23-5B / %x5D-7E
]]></artwork>
      </section>
    </section>
    <section anchor="security-considerations" numbered="true" toc="default">
      <name>Security Considerations</name>
      <t>As a flexible and extensible framework, OAuth's security
considerations depend on many factors.  The following sections
provide implementers with security guidelines focused on the three
client profiles described in <xref target="client-types" format="default"/>: web application,
browser-based application, and native application.</t>
      <t>A comprehensive OAuth security model and analysis, as well as
background for the protocol design, is provided by
<xref target="RFC6819" format="default"/> and <xref target="I-D.ietf-oauth-security-topics" format="default"/>.</t>
      <section anchor="access-token-security-considerations" numbered="true" toc="default">
        <name>Access Token Security Considerations</name>
        <section anchor="security-threats" numbered="true" toc="default">
          <name>Security Threats</name>
          <t>The following list presents several common threats against protocols
utilizing some form of tokens.  This list of threats is based on NIST
Special Publication 800-63 <xref target="NIST800-63" format="default"/>.</t>
          <section anchor="access-token-manufacturemodification" numbered="true" toc="default">
            <name>Access token manufacture/modification</name>
            <t>An attacker may generate a bogus
access token or modify the token contents (such as the authentication or
attribute statements) of an existing token, causing the resource
server to grant inappropriate access to the client.  For example,
an attacker may modify the token to extend the validity period; a
malicious client may modify the assertion to gain access to
information that they should not be able to view.</t>
          </section>
          <section anchor="access-token-disclosure" numbered="true" toc="default">
            <name>Access token disclosure</name>
            <t>Access tokens may contain authentication and attribute
statements that include sensitive information.</t>
          </section>
          <section anchor="access-token-redirect" numbered="true" toc="default">
            <name>Access token redirect</name>
            <t>An attacker uses an access token generated for consumption
by one resource server to gain access to a different resource
server that mistakenly believes the token to be for it.</t>
          </section>
          <section anchor="access-token-replay" numbered="true" toc="default">
            <name>Access token replay</name>
            <t>An attacker attempts to use an access token that has already
been used with that resource server in the past.</t>
          </section>
        </section>
        <section anchor="threat-mitigation" numbered="true" toc="default">
          <name>Threat Mitigation</name>
          <t>A large range of threats can be mitigated by protecting the contents
of the access token by using a digital signature.</t>
          <t>Alternatively, a bearer token can contain a reference to
authorization information, rather than encoding the information
directly.  Using a reference may require an extra interaction between a
server and the access token issuer to resolve the reference to the
authorization information.  The mechanics of such an interaction are
not defined by this specification.</t>
          <t>This document does not specify the encoding or the contents of the
access token; hence, detailed recommendations about the means of
guaranteeing access token integrity protection are outside the scope of this
specification. One example of an encoding and
signing mechanism for access tokens is described in JSON Web Token Profile for Access Tokens <xref target="RFC9068" format="default"/>.</t>
          <t>To deal with access token redirects, it is important for the authorization
server to include the identity of the intended recipients (the
audience), typically a single resource server (or a list of resource
servers), in the token.  Restricting the use of the token to a
specific scope is also RECOMMENDED.</t>
          <t>If cookies are transmitted without TLS protection, any
information contained in them is at risk of disclosure.  Therefore,
Bearer tokens MUST NOT be stored in cookies that can be sent in the
clear, as any information in them is at risk of disclosure.
See "HTTP State Management Mechanism" <xref target="RFC6265" format="default"/> for security
considerations about cookies.</t>
          <t>In some deployments, including those utilizing load balancers, the
TLS connection to the resource server terminates prior to the actual
server that provides the resource.  This could leave the token
unprotected between the front-end server where the TLS connection
terminates and the back-end server that provides the resource.  In
such deployments, sufficient measures MUST be employed to ensure
confidentiality of the access token between the front-end and back-end
servers; encryption of the token is one such possible measure.</t>
        </section>
        <section anchor="summary-of-recommendations" numbered="true" toc="default">
          <name>Summary of Recommendations</name>
          <section anchor="safeguard-bearer-tokens" numbered="true" toc="default">
            <name>Safeguard bearer tokens</name>
            <t>Client implementations MUST ensure that
bearer tokens are not leaked to unintended parties, as they will
be able to use them to gain access to protected resources.  This
is the primary security consideration when using bearer tokens and
underlies all the more specific recommendations that follow.</t>
          </section>
          <section anchor="validate-tls-certificate-chains" numbered="true" toc="default">
            <name>Validate TLS certificate chains</name>
            <t>The client MUST validate the TLS
certificate chain when making requests to protected resources.
Failing to do so may enable DNS hijacking attacks to steal the
token and gain unintended access.</t>
          </section>
          <section anchor="always-use-tls-https" numbered="true" toc="default">
            <name>Always use TLS (https)</name>
            <t>Clients MUST always use TLS
(https) or equivalent transport security when making requests with
bearer tokens.  Failing to do so exposes the token to numerous
attacks that could give attackers unintended access.</t>
          </section>
          <section anchor="dont-store-bearer-tokens-in-http-cookies" numbered="true" toc="default">
            <name>Don't store bearer tokens in HTTP cookies</name>
            <t>Implementations MUST NOT store
bearer tokens within cookies that can be sent in the clear (which
is the default transmission mode for cookies).  Implementations
that do store bearer tokens in cookies MUST take precautions
against cross-site request forgery.</t>
          </section>
          <section anchor="issue-short-lived-bearer-tokens" numbered="true" toc="default">
            <name>Issue short-lived bearer tokens</name>
            <t>Authorization servers SHOULD issue
short-lived bearer tokens, particularly when
issuing tokens to clients that run within a web browser or other
environments where information leakage may occur.  Using
short-lived bearer tokens can reduce the impact of them being
leaked.</t>
          </section>
          <section anchor="issue-scoped-bearer-tokens" numbered="true" toc="default">
            <name>Issue scoped bearer tokens</name>
            <t>Authorization servers SHOULD issue bearer tokens
that contain an audience restriction, scoping their use to the
intended relying party or set of relying parties.</t>
          </section>
          <section anchor="dont-pass-bearer-tokens-in-page-urls" numbered="true" toc="default">
            <name>Don't pass bearer tokens in page URLs</name>
            <t>Bearer tokens MUST NOT be
passed in page URLs (for example, as query string parameters).
Instead, bearer tokens SHOULD be passed in HTTP message headers or
message bodies for which confidentiality measures are taken.
Browsers, web servers, and other software may not adequately
secure URLs in the browser history, web server logs, and other
data structures.  If bearer tokens are passed in page URLs,
attackers might be able to steal them from the history data, logs,
or other unsecured locations.</t>
          </section>
        </section>
        <section anchor="token-replay-prevention" numbered="true" toc="default">
          <name>Token Replay Prevention</name>
          <t>A sender-constrained access token scopes the applicability of an
access token to a certain sender.  This sender is obliged to
demonstrate knowledge of a certain secret as prerequisite for the
acceptance of that access token at the recipient (e.g., a resource server).</t>
          <t>Authorization and resource servers SHOULD use mechanisms for sender-
constrained access tokens to prevent token replay as described in
Section 4.8.1.1.2 of <xref target="I-D.ietf-oauth-security-topics" format="default"/>.
The use of Mutual TLS for OAuth 2.0 <xref target="RFC8705" format="default"/> is RECOMMENDED.</t>
          <t>It is RECOMMENDED to use end-to-end TLS.  If TLS traffic needs to be
terminated at an intermediary, refer to Section 4.11 of <xref target="I-D.ietf-oauth-security-topics" format="default"/>
for further security advice.</t>
        </section>
        <section anchor="access-token-privilege-restriction" numbered="true" toc="default">
          <name>Access Token Privilege Restriction</name>
          <t>The privileges associated with an access token SHOULD be restricted
to the minimum required for the particular application or use case.
This prevents clients from exceeding the privileges authorized by the
resource owner.  It also prevents users from exceeding their
privileges authorized by the respective security policy.  Privilege
restrictions also help to reduce the impact of access token leakage.</t>
          <t>In particular, access tokens SHOULD be restricted to certain resource
servers (audience restriction), preferably to a single resource
server.  To put this into effect, the authorization server associates
the access token with certain resource servers and every resource
server is obliged to verify, for every request, whether the access
token sent with that request was meant to be used for that particular
resource server.  If not, the resource server MUST refuse to serve
the respective request.  Clients and authorization servers MAY
utilize the parameters <tt>scope</tt> or <tt>resource</tt> as specified in
this document and <xref target="RFC8707" format="default"/>, respectively, to
determine the resource server they want to access.</t>
          <t>Additionally, access tokens SHOULD be restricted to certain resources
and actions on resource servers or resources.  To put this into
effect, the authorization server associates the access token with the
respective resource and actions and every resource server is obliged
to verify, for every request, whether the access token sent with that
request was meant to be used for that particular action on the
particular resource.  If not, the resource server must refuse to
serve the respective request.  Clients and authorization servers MAY
utilize the parameter <tt>scope</tt> and
<tt>authorization_details</tt> as specified in <xref target="I-D.ietf-oauth-rar" format="default"/> to
determine those resources and/or actions.</t>
        </section>
      </section>
      <section anchor="security-client-authentication" numbered="true" toc="default">
        <name>Client Authentication</name>
        <t>Depending on the overall process of client registration and credential
lifecycle management, this may affect the confidence an authorization 
server has in a particular client.
For example, authentication of a dynamically registered client does not
prove the identity of the client, it only ensures that repeated requests
to the authorization server were made from the same client instance. Such
clients may be limited in terms of which scopes they are allowed to request,
or may have other limitations such as shorter token lifetimes.
In contrast, if there is a registered application whose developer's identity
was verified, who signed a contract and is issued a client secret
that is only used in a secure backend service, the authorization
server might allow this client to request more sensitive scopes
or to be issued longer-lasting tokens.</t>
      </section>
      <section anchor="client-impersonation" numbered="true" toc="default">
        <name>Client Impersonation</name>
        <t>A malicious client can impersonate another client and obtain access
to protected resources if the impersonated client fails to, or is
unable to, keep its client credentials confidential.</t>
        <t>The authorization server SHOULD enforce explicit resource owner
authentication and provide the resource owner with information about
the client and the requested authorization scope and lifetime.  It is
up to the resource owner to review the information in the context of
the current client and to authorize or deny the request.</t>
        <t>The authorization server SHOULD NOT process repeated authorization
requests automatically (without active resource owner interaction)
without authenticating the client or relying on other measures to
ensure that the repeated request comes from the original client and
not an impersonator.</t>
        <section anchor="native-app-client-impersonation" numbered="true" toc="default">
          <name>Impersonation of Native Apps</name>
          <t>As stated above, the authorization
server SHOULD NOT process authorization requests automatically
without user consent or interaction, except when the identity of the
client can be assured.  This includes the case where the user has
previously approved an authorization request for a given client ID -
unless the identity of the client can be proven, the request SHOULD
be processed as if no previous request had been approved.</t>
          <t>Measures such as claimed <tt>https</tt> scheme redirects MAY be accepted by
authorization servers as identity proof.  Some operating systems may
offer alternative platform-specific identity features that MAY be
accepted, as appropriate.</t>
        </section>
        <section anchor="access-token-privilege-restriction-1" numbered="true" toc="default">
          <name>Access Token Privilege Restriction</name>
          <t>The client SHOULD request access tokens with the minimal scope
necessary.  The authorization server SHOULD take the client identity
into account when choosing how to honor the requested scope and MAY
issue an access token with less rights than requested.</t>
          <t>The privileges associated with an access token SHOULD be restricted to
the minimum required for the particular application or use case. This
prevents clients from exceeding the privileges authorized by the
resource owner. It also prevents users from exceeding their privileges
authorized by the respective security policy. Privilege restrictions
also help to reduce the impact of access token leakage.</t>
          <t>In particular, access tokens SHOULD be restricted to certain resource
servers (audience restriction), preferably to a single resource
server. To put this into effect, the authorization server associates
the access token with certain resource servers and every resource
server is obliged to verify, for every request, whether the access
token sent with that request was meant to be used for that particular
resource server. If not, the resource server MUST refuse to serve the
respective request. Clients and authorization servers MAY utilize the
parameters <tt>scope</tt> or <tt>resource</tt> as specified in
<xref target="RFC8707" format="default"/>, respectively, to determine the
resource server they want to access.</t>
        </section>
        <section anchor="access-token-replay-prevention" numbered="true" toc="default">
          <name>Access Token Replay Prevention</name>
          <t>Additionally, access tokens SHOULD be restricted to certain resources
and actions on resource servers or resources. To put this into effect,
the authorization server associates the access token with the
respective resource and actions and every resource server is obliged
to verify, for every request, whether the access token sent with that
request was meant to be used for that particular action on the
particular resource. If not, the resource server must refuse to serve
the respective request. Clients and authorization servers MAY utilize
the parameter <tt>scope</tt> and <tt>authorization_details</tt> as specified in
<xref target="I-D.ietf-oauth-rar" format="default"/> to determine those resources and/or actions.</t>
          <t>Authorization and resource servers SHOULD use mechanisms for
sender-constrained access tokens to prevent token replay as described
in (#pop_tokens). A sender-constrained access token scopes the applicability
of an access
token to a certain sender. This sender is obliged to demonstrate knowledge
of a certain secret as prerequisite for the acceptance of that access token at
the recipient (e.g., a resource server). The use of Mutual TLS for OAuth 2.0
<xref target="RFC8705" format="default"/> is RECOMMENDED.</t>
        </section>
      </section>
      <section anchor="client-impersonating-resource-owner" numbered="true" toc="default">
        <name>Client Impersonating Resource Owner</name>
        <t>Resource servers may make access control decisions based on the
identity of the resource owner as communicated in the <tt>sub</tt> claim
returned by the authorization server in a token introspection
response <xref target="RFC7662" format="default"/> or other mechanisms.  If a client is able to
choose its own <tt>client_id</tt> during registration with the authorization
server, then there is a risk that it can register with the same <tt>sub</tt>
value as a privileged user.  A subsequent access token obtained under
the client credentials grant may be mistaken for an access token
authorized by the privileged user if the resource server does not
perform additional checks.</t>
        <t>Authorization servers SHOULD NOT allow clients to influence their
<tt>client_id</tt> or <tt>sub</tt> value or any other claim if that can cause
confusion with a genuine resource owner.  Where this cannot be
avoided, authorization servers MUST provide other means for the
resource server to distinguish between access tokens authorized by a
resource owner from access tokens authorized by the client itself.</t>
      </section>
      <section anchor="protecting-the-authorization-code-flow" numbered="true" toc="default">
        <name>Protecting the Authorization Code Flow</name>
        <section anchor="loopback-native-apps" numbered="true" toc="default">
          <name>Loopback Redirect Considerations in Native Apps</name>
          <t>Loopback interface redirect URIs MAY use the <tt>http</tt> scheme (i.e., without
TLS).  This is acceptable for loopback
interface redirect URIs as the HTTP request never leaves the device.</t>
          <t>Clients should open the network port only when starting the
authorization request and close it once the response is returned.</t>
          <t>Clients should listen on the loopback network interface only, in
order to avoid interference by other network actors.</t>
          <t>Clients should use loopback IP literals rather than the string <tt>localhost</tt>
as described in <xref target="loopback-interface-redirection" format="default"/>.</t>
        </section>
        <section anchor="redirect_307" numbered="true" toc="default">
          <name>HTTP 307 Redirect</name>
          <t>An AS which redirects a request that potentially contains user
credentials MUST NOT use the HTTP 307 status code for
redirection.  If an HTTP redirection (and not, for example,
JavaScript) is used for such a request, AS SHOULD use HTTP status
code 303 "See Other".</t>
          <t>At the authorization endpoint, a typical protocol flow is that the AS
prompts the user to enter their credentials in a form that is then
submitted (using the HTTP POST method) back to the authorization
server.  The AS checks the credentials and, if successful, redirects
the user agent to the client's redirect URI.</t>
          <t>If the status code 307 were used for redirection, the user agent 
would send the user credentials via HTTP POST to the client.</t>
          <t>This discloses the sensitive credentials to the client.  If the
relying party is malicious, it can use the credentials to impersonate
the user at the AS.</t>
          <t>The behavior might be unexpected for developers, but is defined in
<xref target="RFC7231" format="default"/>, Section 6.4.7.  This status code does not require the user
agent to rewrite the POST request to a GET request and thereby drop
the form data in the POST request body.</t>
          <t>In the HTTP standard <xref target="RFC7231" format="default"/>, only the status code 303
unambigiously enforces rewriting the HTTP POST request to an HTTP GET
request.  For all other status codes, including the popular 302, user
agents can opt not to rewrite POST to GET requests and therefore to
reveal the user credentials to the client.  (In practice, however,
most user agents will only show this behaviour for 307 redirects.)</t>
          <t>Therefore, the RECOMMENDED status code for HTTP redirects is 303.</t>
        </section>
      </section>
      <section anchor="authorization_codes" numbered="true" toc="default">
        <name>Authorization Codes</name>
        <t>To prevent injection of authorization codes into the client, using <tt>code_challenge</tt> and
<tt>code_verifier</tt> is REQUIRED for clients, and authorization servers MUST enforce
their use, unless both of the following criteria are met:</t>
        <ul spacing="normal">
          <li>The client is a confidential client.</li>
          <li>In the specific deployment and the specific request, there is reasonable
assurance by the authorization server that the client implements the OpenID
Connect <tt>nonce</tt> mechanism properly.</li>
        </ul>
        <t>In this case, using and enforcing <tt>code_challenge</tt> and <tt>code_verifier</tt> is still RECOMMENDED.</t>
        <t>The <tt>code_challenge</tt> or OpenID Connect <tt>nonce</tt> value MUST be
transaction-specific and securely bound to the client and the user agent in
which the transaction was started. If a transaction leads to an error, fresh
values for <tt>code_challenge</tt> or <tt>nonce</tt> MUST be chosen.</t>
        <t>Historic note: Although PKCE <xref target="RFC7636" format="default"/> (where the <tt>code_challenge</tt> and <tt>code_verifier</tt> parameters were created) was originally designed as a mechanism
to protect native apps, this advice applies to all kinds of OAuth clients,
including web applications and other confidential clients.</t>
        <t>Clients SHOULD use code challenge methods that
do not expose the <tt>code_verifier</tt> in the authorization request.
Otherwise, attackers that can read the authorization request (cf.
Attacker A4 in (#secmodel)) can break the security provided
by this mechanism. Currently, <tt>S256</tt> is the only such method.</t>
        <t>When an authorization code arrives at the token endpoint, the 
authorization server MUST do the following check:</t>
        <ol spacing="normal" type="1"><li>If there was a <tt>code_challenge</tt> in the authorization request for which this 
code was issued, there must be a <tt>code_verifier</tt> in the token request, and it 
MUST be verified according to the steps in <xref target="token-request" format="default"/>.
(This is no change from the current behavior in <xref target="RFC7636" format="default"/>.)</li>
          <li>If there was no <tt>code_challenge</tt> in the authorization request, any request to 
the token endpoint containing a <tt>code_verifier</tt> MUST be rejected.</li>
        </ol>
        <t>Authorization servers MUST provide a way to detect their support for
the <tt>code_challenge</tt> mechanism. To this end, they MUST either (a) publish the element
<tt>code_challenge_methods_supported</tt> in their AS metadata (<xref target="RFC8414" format="default"/>)
containing the supported <tt>code_challenge_method</tt>s (which can be used by
the client to detect support) or (b) provide a
deployment-specific way to ensure or determine support by the AS.</t>
      </section>
      <section anchor="ensuring-endpoint-authenticity" numbered="true" toc="default">
        <name>Ensuring Endpoint Authenticity</name>
        <t>The risk related to man-in-the-middle attacks is mitigated by the
mandatory use of channel security mechanisms such as <xref target="RFC8446" format="default"/>
for communicating with the Authorization and Token Endpoints.
See <xref target="communication-security" format="default"/> for further details.</t>
      </section>
      <section anchor="credentials-guessing-attacks" numbered="true" toc="default">
        <name>Credentials-Guessing Attacks</name>
        <t>The authorization server MUST prevent attackers from guessing access
tokens, authorization codes, refresh tokens, resource owner
passwords, and client credentials.</t>
        <t>The probability of an attacker guessing generated tokens (and other
credentials not intended for handling by end-users) MUST be less than
or equal to 2^(-128) and SHOULD be less than or equal to 2^(-160).</t>
        <t>The authorization server MUST utilize other means to protect
credentials intended for end-user usage.</t>
      </section>
      <section anchor="phishing-attacks" numbered="true" toc="default">
        <name>Phishing Attacks</name>
        <t>Wide deployment of this and similar protocols may cause end-users to
become inured to the practice of being redirected to websites where
they are asked to enter their passwords.  If end-users are not
careful to verify the authenticity of these websites before entering
their credentials, it will be possible for attackers to exploit this
practice to steal resource owners' passwords.</t>
        <t>Service providers should attempt to educate end-users about the risks
phishing attacks pose and should provide mechanisms that make it easy
for end-users to confirm the authenticity of their sites.  Client
developers should consider the security implications of how they
interact with the user agent (e.g., external, embedded), and the
ability of the end-user to verify the authenticity of the
authorization server.</t>
        <t>See <xref target="communication-security" format="default"/> for further details
on mitigating the risk of phishing attacks.</t>
      </section>
      <section anchor="csrf_countermeasures" numbered="true" toc="default">
        <name>Cross-Site Request Forgery</name>
        <t>An attacker might attempt to inject a request to the redirect URI of
the legitimate client on the victim's device, e.g., to cause the
client to access resources under the attacker's control. This is a
variant of an attack known as Cross-Site Request Forgery (CSRF).</t>
        <t>The traditional countermeasure are CSRF tokens that are bound to the
user agent and passed in the <tt>state</tt> parameter to the authorization
server as described in <xref target="RFC6819" format="default"/>. The same protection is provided by
the <tt>code_verifier</tt> parameter or the OpenID Connect <tt>nonce</tt> value.</t>
        <t>When using <tt>code_verifier</tt> instead of <tt>state</tt> or <tt>nonce</tt> for CSRF protection, it is
important to note that:</t>
        <ul spacing="normal">
          <li>Clients MUST ensure that the AS supports the <tt>code_challenge_method</tt> 
intended to be used by the client. If an authorization server does not support the requested method,
<tt>state</tt> or <tt>nonce</tt> MUST be used for CSRF protection instead.</li>
          <li>If <tt>state</tt> is used for carrying application state, and integrity of
its contents is a concern, clients MUST protect <tt>state</tt> against
tampering and swapping. This can be achieved by binding the
contents of state to the browser session and/or signed/encrypted
state values <xref target="I-D.bradley-oauth-jwt-encoded-state" format="default"/>.</li>
        </ul>
        <t>AS therefore MUST provide a way to detect their supported code challenge methods
either via AS metadata according to <xref target="RFC8414" format="default"/> or provide a
deployment-specific way to ensure or determine support.</t>
      </section>
      <section anchor="clickjacking" numbered="true" toc="default">
        <name>Clickjacking</name>
        <t>As described in Section 4.4.1.9 of <xref target="RFC6819" format="default"/>, the authorization
request is susceptible to clickjacking. An attacker can use this
vector to obtain the user's authentication credentials, change the
scope of access granted to the client, and potentially access the
user's resources.</t>
        <t>Authorization servers MUST prevent clickjacking attacks. Multiple
countermeasures are described in <xref target="RFC6819" format="default"/>, including the use of the
X-Frame-Options HTTP response header field and frame-busting
JavaScript. In addition to those, authorization servers SHOULD also
use Content Security Policy (CSP) level 2 <xref target="CSP-2" format="default"/> or greater.</t>
        <t>To be effective, CSP must be used on the authorization endpoint and,
if applicable, other endpoints used to authenticate the user and
authorize the client (e.g., the device authorization endpoint, login
pages, error pages, etc.). This prevents framing by unauthorized
origins in user agents that support CSP. The client MAY permit being
framed by some other origin than the one used in its redirection
endpoint. For this reason, authorization servers SHOULD allow
administrators to configure allowed origins for particular clients
and/or for clients to register these dynamically.</t>
        <t>Using CSP allows authorization servers to specify multiple origins in
a single response header field and to constrain these using flexible
patterns (see <xref target="CSP-2" format="default"/> for details). Level 2 of this standard provides
a robust mechanism for protecting against clickjacking by using
policies that restrict the origin of frames (using <tt>frame-ancestors</tt>)
together with those that restrict the sources of scripts allowed to
execute on an HTML page (by using <tt>script-src</tt>). A non-normative
example of such a policy is shown in the following listing:</t>
        <t><tt>
HTTP/1.1 200 OK
Content-Security-Policy: frame-ancestors https://ext.example.org:8000
Content-Security-Policy: script-src 'self'
X-Frame-Options: ALLOW-FROM https://ext.example.org:8000
...
</tt></t>
        <t>Because some user agents do not support <xref target="CSP-2" format="default"/>, this technique
SHOULD be combined with others, including those described in
<xref target="RFC6819" format="default"/>, unless such legacy user agents are explicitly unsupported
by the authorization server. Even in such cases, additional
countermeasures SHOULD still be employed.</t>
      </section>
      <section anchor="code-injection-and-input-validation" numbered="true" toc="default">
        <name>Code Injection and Input Validation</name>
        <t>A code injection attack occurs when an input or otherwise external
variable is used by an application unsanitized and causes
modification to the application logic.  This may allow an attacker to
gain access to the application device or its data, cause denial of
service, or introduce a wide range of malicious side-effects.</t>
        <t>The authorization server and client MUST sanitize (and validate when
possible) any value received - in particular, the value of the
<tt>state</tt> and <tt>redirect_uri</tt> parameters.</t>
      </section>
      <section anchor="open-redirectors" numbered="true" toc="default">
        <name>Open Redirectors</name>
        <t>The following attacks can occur when an AS or client has an open
redirector. An open redirector is an endpoint that forwards a user's
browser to an arbitrary URI obtained from a query parameter.</t>
        <section anchor="open_redirector_on_client" numbered="true" toc="default">
          <name>Client as Open Redirector</name>
          <t>Clients MUST NOT expose open redirectors. Attackers may use open
redirectors to produce URLs pointing to the client and utilize them to
exfiltrate authorization codes and access tokens, as described in
(#redir_uri_open_redir). Another abuse case is to produce URLs that
appear to point to the client. This might trick users into trusting the URL
and follow it in their browser. This can be abused for phishing.</t>
          <t>In order to prevent open redirection, clients should only redirect if
the target URLs are whitelisted or if the origin and integrity of a
request can be authenticated. Countermeasures against open redirection
are described by OWASP <xref target="owasp_redir" format="default"/>.</t>
        </section>
        <section anchor="authorization-server-as-open-redirector" numbered="true" toc="default">
          <name>Authorization Server as Open Redirector</name>
          <t>Just as with clients, attackers could try to utilize a user's trust in
the authorization server (and its URL in particular) for performing
phishing attacks. OAuth authorization servers regularly redirect users
to other web sites (the clients), but must do so in a safe way.</t>
          <t><xref target="authorization-code-error-response" format="default"/> already prevents open redirects by
stating that the AS MUST NOT automatically redirect the user agent in case
of an invalid combination of <tt>client_id</tt> and <tt>redirect_uri</tt>.</t>
          <t>However, an attacker could also utilize a correctly registered
redirect URI to perform phishing attacks. The attacker could, for
example, register a client via dynamic client registration <xref target="RFC7591" format="default"/>
and intentionally send an erroneous authorization request, e.g., by
using an invalid scope value, thus instructing the AS to redirect the
user agent to its phishing site.</t>
          <t>The AS MUST take precautions to prevent this threat. Based on its risk
assessment, the AS needs to decide whether it can trust the redirect
URI and SHOULD only automatically redirect the user agent if it trusts
the redirect URI. If the URI is not trusted, the AS MAY inform the
user and rely on the user to make the correct decision.</t>
        </section>
      </section>
      <section anchor="authorization-server-mix-up-mitigation-in-native-apps" numbered="true" toc="default">
        <name>Authorization Server Mix-Up Mitigation in Native Apps</name>
        <t>(TODO: merge this with the regular mix-up section when it is brought in)</t>
        <t>To protect against a compromised or malicious authorization server
attacking another authorization server used by the same app, it is
REQUIRED that a unique redirect URI is used for each authorization
server used by the app (for example, by varying the path component),
and that authorization responses are rejected if the redirect URI
they were received on doesn't match the redirect URI in an outgoing
authorization request.</t>
        <t>The native app MUST store the redirect URI used in the authorization
request with the authorization session data (i.e., along with <tt>state</tt>
and other related data) and MUST verify that the URI on which the
authorization response was received exactly matches it.</t>
        <t>The requirement of <xref target="native-app-registration" format="default"/>, specifically that authorization
servers reject requests with URIs that don't match what was
registered, is also required to prevent such attacks.</t>
      </section>
      <section anchor="other-recommendations" numbered="true" toc="default">
        <name>Other Recommendations</name>
        <t>Authorization servers SHOULD NOT allow clients to influence their
<tt>client_id</tt> or <tt>sub</tt> value or any other claim if that can cause
confusion with a genuine resource owner (see (#client_impersonating)).</t>
      </section>
    </section>
    <section anchor="native-applications" numbered="true" toc="default">
      <name>Native Applications</name>
      <t>Native applications are clients installed and executed on the device
used by the resource owner (i.e., desktop application, native mobile
application).  Native applications require special consideration
related to security, platform capabilities, and overall end-user
experience.</t>
      <t>The authorization endpoint requires interaction between the client
and the resource owner's user agent. The best current practice is to
perform the OAuth authorization request in an external user agent
(typically the browser) rather than an embedded user agent (such as
one implemented with web-views).</t>
      <t>The native application can capture the
response from the authorization server using a redirect URI
with a scheme registered with the operating system to invoke the
client as the handler, manual copy-and-paste of the credentials,
running a local web server, installing a user agent extension, or
by providing a redirect URI identifying a server-hosted
resource under the client's control, which in turn makes the
response available to the native application.</t>
      <t>Previously, it was common for native apps to use embedded user agents
(commonly implemented with web-views) for OAuth authorization
requests.  That approach has many drawbacks, including the host app
being able to copy user credentials and cookies as well as the user
needing to authenticate from scratch in each app.  See <xref target="native-apps-embedded-user-agents" format="default"/>
for a deeper analysis of the drawbacks of using embedded user agents
for OAuth.</t>
      <t>Native app authorization requests that use the browser are more
secure and can take advantage of the user's authentication state.
Being able to use the existing authentication session in the browser
enables single sign-on, as users don't need to authenticate to the
authorization server each time they use a new app (unless required by
the authorization server policy).</t>
      <t>Supporting authorization flows between a native app and the browser
is possible without changing the OAuth protocol itself, as the OAuth
authorization request and response are already defined in terms of
URIs.  This encompasses URIs that can be used for inter-app
communication.  Some OAuth server implementations that assume all
clients are confidential web clients will need to add an
understanding of public native app clients and the types of redirect
URIs they use to support this best practice.</t>
      <section anchor="native-app-registration" numbered="true" toc="default">
        <name>Registration of Native App Clients</name>
        <t>Except when using a mechanism like Dynamic Client Registration
<xref target="RFC7591" format="default"/> to provision per-instance secrets, native apps are
classified as public clients, as defined in <xref target="client-types" format="default"/>;
they MUST be registered with the authorization server as
such.  Authorization servers MUST record the client type in the
client registration details in order to identify and process requests
accordingly.</t>
        <section anchor="client-authentication-of-native-apps" numbered="true" toc="default">
          <name>Client Authentication of Native Apps</name>
          <t>Secrets that are statically included as part of an app distributed to
multiple users should not be treated as confidential secrets, as one
user may inspect their copy and learn the shared secret.  For this
reason, it is NOT
RECOMMENDED for authorization servers to require client
authentication of public native apps clients using a shared secret,
as this serves little value beyond client identification which is
already provided by the <tt>client_id</tt> request parameter.</t>
          <t>Authorization servers that still require a statically included shared
secret for native app clients MUST treat the client as a public
client (as defined in <xref target="client-types" format="default"/>), and not
accept the secret as proof of the client's identity.  Without
additional measures, such clients are subject to client impersonation
(see <xref target="native-app-client-impersonation" format="default"/>).</t>
        </section>
      </section>
      <section anchor="using-inter-app-uri-communication-for-oauth-in-native-apps" numbered="true" toc="default">
        <name>Using Inter-App URI Communication for OAuth in Native Apps</name>
        <t>Just as URIs are used for OAuth on the web to initiate
the authorization request and return the authorization response to
the requesting website, URIs can be used by native apps to initiate
the authorization request in the device's browser and return the
response to the requesting native app.</t>
        <t>By adopting the same methods used on the web for OAuth, benefits seen
in the web context like the usability of a single sign-on session and
the security of a separate authentication context are likewise gained
in the native app context.  Reusing the same approach also reduces
the implementation complexity and increases interoperability by
relying on standards-based web flows that are not specific to a
particular platform.</t>
        <t>Native apps MUST use an external
user agent to perform OAuth authorization requests.  This is achieved
by opening the authorization request in the browser (detailed in
<xref target="authorization-request-native-app" format="default"/>) and using a redirect URI that will return the
authorization response back to the native app (defined in <xref target="authorization-response-native-app" format="default"/>).</t>
      </section>
      <section anchor="authorization-request-native-app" numbered="true" toc="default">
        <name>Initiating the Authorization Request from a Native App</name>
        <t>Native apps needing user authorization create an authorization
request URI with the authorization code grant type per <xref target="authorization-code-grant" format="default"/>
using a redirect URI capable of being received by the native app.</t>
        <t>The function of the redirect URI for a native app authorization
request is similar to that of a web-based authorization request.
Rather than returning the authorization response to the OAuth
client's server, the redirect URI used by a native app returns the
response to the app.  Several options for a redirect URI that will
return the authorization response to the native app in different
platforms are documented in <xref target="authorization-response-native-app" format="default"/>.  Any redirect URI that allows
the app to receive the URI and inspect its parameters is viable.</t>
        <t>After constructing the authorization request URI, the app uses
platform-specific APIs to open the URI in an external user agent.
Typically, the external user agent used is the default browser, that
is, the application configured for handling <tt>http</tt> and <tt>https</tt> scheme
URIs on the system; however, different browser selection criteria and
other categories of external user agents MAY be used.</t>
        <t>This best practice focuses on the browser as the RECOMMENDED external
user agent for native apps.  An external user agent designed
specifically for user authorization and capable of processing
authorization requests and responses like a browser MAY also be used.
Other external user agents, such as a native app provided by the
authorization server may meet the criteria set out in this best
practice, including using the same redirect URI properties, but
their use is out of scope for this specification.</t>
        <t>Some platforms support a browser feature known as "in-app browser
tabs", where an app can present a tab of the browser within the app
context without switching apps, but still retain key benefits of the
browser such as a shared authentication state and security context.
On platforms where they are supported, it is RECOMMENDED, for
usability reasons, that apps use in-app browser tabs for the
authorization request.</t>
      </section>
      <section anchor="authorization-response-native-app" numbered="true" toc="default">
        <name>Receiving the Authorization Response in a Native App</name>
        <t>There are several redirect URI options available to native apps for
receiving the authorization response from the browser, the
availability and user experience of which varies by platform.</t>
        <t>To fully support native apps, authorization servers MUST offer
at least the three redirect URI options described in the following
subsections to native apps.  Native apps MAY use whichever redirect
option suits their needs best, taking into account platform-specific
implementation details.</t>
        <section anchor="private-use-uri-scheme" numbered="true" toc="default">
          <name>Private-Use URI Scheme Redirection</name>
          <t>Many mobile and desktop computing platforms support inter-app
communication via URIs by allowing apps to register private-use URI
schemes (sometimes colloquially referred to as "custom URL schemes")
like <tt>com.example.app</tt>.  When the browser or another app attempts to
load a URI with a private-use URI scheme, the app that registered it
is launched to handle the request.</t>
          <t>To perform an authorization request with a private-use URI
scheme redirect, the native app launches the browser with a standard
authorization request, but one where the redirect URI utilizes a
private-use URI scheme it registered with the operating system.</t>
          <t>When choosing a URI scheme to associate with the app, apps MUST use a
URI scheme based on a domain name under their control, expressed in
reverse order, as recommended by Section 3.8 of <xref target="RFC7595" format="default"/> for
private-use URI schemes.</t>
          <t>For example, an app that controls the domain name <tt>app.example.com</tt>
can use <tt>com.example.app</tt> as their scheme.  Some authorization
servers assign client identifiers based on domain names, for example,
<tt>client1234.usercontent.example.net</tt>, which can also be used as the
domain name for the scheme when reversed in the same manner.  A
scheme such as <tt>myapp</tt>, however, would not meet this requirement, as
it is not based on a domain name.</t>
          <t>When there are multiple apps by the same publisher, care must be
taken so that each scheme is unique within that group.  On platforms
that use app identifiers based on reverse-order domain names, those
identifiers can be reused as the private-use URI scheme for the OAuth
redirect to help avoid this problem.</t>
          <t>Following the requirements of Section 3.2 of <xref target="RFC3986" format="default"/>, as there is
no naming authority for private-use URI scheme redirects, only a
single slash (<tt>/</tt>) appears after the scheme component.  A complete
example of a redirect URI utilizing a private-use URI scheme is:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
com.example.app:/oauth2redirect/example-provider
]]></artwork>
          <t>When the authorization server completes the request, it redirects to
the client's redirect URI as it would normally.  As the
redirect URI uses a private-use URI scheme, it results in the
operating system launching the native app, passing in the URI as a
launch parameter.  Then, the native app uses normal processing for
the authorization response.</t>
        </section>
        <section anchor="claimed-https-scheme-uri-redirection" numbered="true" toc="default">
          <name>Claimed "https" Scheme URI Redirection</name>
          <t>Some operating systems allow apps to claim <tt>https</tt> scheme <xref target="RFC7230" format="default"/>
URIs in the domains they control.  When the browser encounters a
claimed URI, instead of the page being loaded in the browser, the
native app is launched with the URI supplied as a launch parameter.</t>
          <t>Such URIs can be used as redirect URIs by native apps.  They are
indistinguishable to the authorization server from a regular web-
based client redirect URI.  An example is:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
https://app.example.com/oauth2redirect/example-provider
]]></artwork>
          <t>As the redirect URI alone is not enough to distinguish public native
app clients from confidential web clients, it is REQUIRED in
<xref target="native-app-registration" format="default"/> that the client type be recorded during client
registration to enable the server to determine the client type and
act accordingly.</t>
          <t>App-claimed <tt>https</tt> scheme redirect URIs have some advantages
compared to other native app redirect options in that the identity of
the destination app is guaranteed to the authorization server by the
operating system.  For this reason, native apps SHOULD use them over
the other options where possible.</t>
        </section>
        <section anchor="loopback-interface-redirection" numbered="true" toc="default">
          <name>Loopback Interface Redirection</name>
          <t>Native apps that are able to open a port on the loopback network
interface without needing special permissions (typically, those on
desktop operating systems) can use the loopback interface to receive
the OAuth redirect.</t>
          <t>Loopback redirect URIs use the <tt>http</tt> scheme and are constructed with
the loopback IP literal and whatever port the client is listening on.</t>
          <t>That is, <tt>http://127.0.0.1:{port}/{path}</tt> for IPv4, and
<tt>http://[::1]:{port}/{path}</tt> for IPv6.  An example redirect using the
IPv4 loopback interface with a randomly assigned port:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
http://127.0.0.1:51004/oauth2redirect/example-provider
]]></artwork>
          <t>An example redirect using the IPv6 loopback interface with a randomly
assigned port:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
http://[::1]:61023/oauth2redirect/example-provider
]]></artwork>
          <t>While redirect URIs using the name <tt>localhost</tt> (i.e.,
<tt>http://localhost:{port}/{path}</tt>) function similarly to loopback IP
redirects, the use of <tt>localhost</tt> is NOT RECOMMENDED.  Specifying a 
redirect URI with the loopback IP literal
rather than <tt>localhost</tt> avoids inadvertently listening on network
interfaces other than the loopback interface.  It is also less
susceptible to client-side firewalls and misconfigured host name
resolution on the user's device.</t>
          <t>The authorization server MUST allow any port to be specified at the
time of the request for loopback IP redirect URIs, to accommodate
clients that obtain an available ephemeral port from the operating
system at the time of the request.</t>
          <t>Clients SHOULD NOT assume that the device supports a particular
version of the Internet Protocol.  It is RECOMMENDED that clients
attempt to bind to the loopback interface using both IPv4 and IPv6
and use whichever is available.</t>
        </section>
      </section>
      <section anchor="security-considerations-in-native-apps" numbered="true" toc="default">
        <name>Security Considerations in Native Apps</name>
        <section anchor="native-apps-embedded-user-agents" numbered="true" toc="default">
          <name>Embedded User Agents in Native Apps</name>
          <t>Embedded user agents are a technically possible method for authorizing native
apps.  These embedded user agents are unsafe for use by third parties
to the authorization server by definition, as the app that hosts the
embedded user agent can access the user's full authentication
credentials, not just the OAuth authorization grant that was intended
for the app.</t>
          <t>In typical web-view-based implementations of embedded user agents,
the host application can record every keystroke entered in the login
form to capture usernames and passwords, automatically submit forms
to bypass user consent, and copy session cookies and use them to
perform authenticated actions as the user.</t>
          <t>Even when used by trusted apps belonging to the same party as the
authorization server, embedded user agents violate the principle of
least privilege by having access to more powerful credentials than
they need, potentially increasing the attack surface.</t>
          <t>Encouraging users to enter credentials in an embedded user agent
without the usual address bar and visible certificate validation
features that browsers have makes it impossible for the user to know
if they are signing in to the legitimate site; even when they are, it
trains them that it's OK to enter credentials without validating the
site first.</t>
          <t>Aside from the security concerns, embedded user agents do not share
the authentication state with other apps or the browser, requiring
the user to log in for every authorization request, which is often
considered an inferior user experience.</t>
        </section>
        <section anchor="fake-external-user-agents-in-native-apps" numbered="true" toc="default">
          <name>Fake External User-Agents in Native Apps</name>
          <t>The native app that is initiating the authorization request has a
large degree of control over the user interface and can potentially
present a fake external user agent, that is, an embedded user agent
made to appear as an external user agent.</t>
          <t>When all good actors are using external user agents, the advantage is
that it is possible for security experts to detect bad actors, as
anyone faking an external user agent is provably bad.  On the other
hand, if good and bad actors alike are using embedded user agents,
bad actors don't need to fake anything, making them harder to detect.
Once a malicious app is detected, it may be possible to use this
knowledge to blacklist the app's signature in malware scanning
software, take removal action (in the case of apps distributed by app
stores) and other steps to reduce the impact and spread of the
malicious app.</t>
          <t>Authorization servers can also directly protect against fake external
user agents by requiring an authentication factor only available to
true external user agents.</t>
          <t>Users who are particularly concerned about their security when using
in-app browser tabs may also take the additional step of opening the
request in the full browser from the in-app browser tab and complete
the authorization there, as most implementations of the in-app
browser tab pattern offer such functionality.</t>
        </section>
        <section anchor="malicious-external-user-agents-in-native-apps" numbered="true" toc="default">
          <name>Malicious External User-Agents in Native Apps</name>
          <t>If a malicious app is able to configure itself as the default handler
for <tt>https</tt> scheme URIs in the operating system, it will be able to
intercept authorization requests that use the default browser and
abuse this position of trust for malicious ends such as phishing the
user.</t>
          <t>This attack is not confined to OAuth; a malicious app configured in
this way would present a general and ongoing risk to the user beyond
OAuth usage by native apps.  Many operating systems mitigate this
issue by requiring an explicit user action to change the default
handler for <tt>http</tt> and <tt>https</tt> scheme URIs.</t>
        </section>
      </section>
    </section>
    <section anchor="browser-based-apps" numbered="true" toc="default">
      <name>Browser-Based Apps</name>
      <t>Browser-based apps are are clients that run in a web browser, typically
written in JavaScript, also known as "single-page apps". These types of apps
have particular security considerations similar to native apps.</t>
      <t>TODO: Bring in the normative text of the browser-based apps BCP when it is finalized.</t>
    </section>
    <section anchor="oauth-2-0-differences" numbered="true" toc="default">
      <name>Differences from OAuth 2.0</name>
      <t>This draft consolidates the functionality in OAuth 2.0 <xref target="RFC6749" format="default"/>,
OAuth 2.0 for Native Apps (<xref target="RFC8252" format="default"/>),
Proof Key for Code Exchange (<xref target="RFC7636" format="default"/>),
OAuth 2.0 for Browser-Based Apps (<xref target="I-D.ietf-oauth-browser-based-apps" format="default"/>),
OAuth Security Best Current Practice (<xref target="I-D.ietf-oauth-security-topics" format="default"/>),
and Bearer Token Usage (<xref target="RFC6750" format="default"/>).</t>
      <t>Where a later draft updates or obsoletes functionality found in the original
<xref target="RFC6749" format="default"/>, that functionality in this draft is updated with the normative
changes described in a later draft, or removed entirely.</t>
      <t>A non-normative list of changes from OAuth 2.0 is listed below:</t>
      <ul spacing="normal">
        <li>The authorization code grant is extended with the functionality from PKCE (<xref target="RFC7636" format="default"/>)
such that the default method of using the authorization code grant according
to this specification requires the addition of the PKCE parameters</li>
        <li>Redirect URIs must be compared using exact string matching
as per Section 4.1.3 of <xref target="I-D.ietf-oauth-security-topics" format="default"/></li>
        <li>The Implicit grant (<tt>response_type=token</tt>) is omitted from this specification
as per Section 2.1.2 of <xref target="I-D.ietf-oauth-security-topics" format="default"/></li>
        <li>The Resource Owner Password Credentials grant is omitted from this specification
as per Section 2.4 of <xref target="I-D.ietf-oauth-security-topics" format="default"/></li>
        <li>Bearer token usage omits the use of bearer tokens in the query string of URIs
as per Section 4.3.2 of <xref target="I-D.ietf-oauth-security-topics" format="default"/></li>
        <li>Refresh tokens for public clients must either be sender-constrained or one-time use
as per Section 4.12.2 of <xref target="I-D.ietf-oauth-security-topics" format="default"/></li>
      </ul>
      <section anchor="removal-of-the-oauth-20-implicit-grant" numbered="true" toc="default">
        <name>Removal of the OAuth 2.0 Implicit grant</name>
        <t>The OAuth 2.0 Implicit grant is omitted from OAuth 2.1 as it was deprecated in
<xref target="I-D.ietf-oauth-security-topics" format="default"/>.</t>
        <t>The intent of removing the Implicit grant is to no longer issue access tokens
in the authorization response, as such tokens are vulnerable to leakage
and injection, and are unable to be sender-constrained to a client.
This behavior was indicated by clients using the <tt>response_type=token</tt> parameter. 
This value for the <tt>response_type</tt> parameter is no longer defined in OAuth 2.1.</t>
        <t>Removal of <tt>response_type=token</tt> does not have an effect on other extension
response types returning other artifacts from the authorization endpoint, 
for example, <tt>response_type=id_token</tt> defined by <xref target="OpenID" format="default"/>.</t>
      </section>
    </section>
    <section anchor="iana-considerations" numbered="true" toc="default">
      <name>IANA Considerations</name>
      <t>This document does not require any IANA actions.</t>
      <t>All referenced registries are defined by <xref target="RFC6749" format="default"/> and related documents that this 
work is based upon. No changes to those registries are required by this specification.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author initials="S." surname="Bradner" fullname="S. Bradner">
              <organization/>
            </author>
            <date year="1997" month="March"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC2818" target="https://www.rfc-editor.org/info/rfc2818" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.2818.xml">
          <front>
            <title>HTTP Over TLS</title>
            <author initials="E." surname="Rescorla" fullname="E. Rescorla">
              <organization/>
            </author>
            <date year="2000" month="May"/>
            <abstract>
              <t>This memo describes how to use Transport Layer Security (TLS) to secure Hypertext Transfer Protocol (HTTP) connections over the Internet.  This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2818"/>
          <seriesInfo name="DOI" value="10.17487/RFC2818"/>
        </reference>
        <reference anchor="RFC3629" target="https://www.rfc-editor.org/info/rfc3629" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.3629.xml">
          <front>
            <title>UTF-8, a transformation format of ISO 10646</title>
            <author initials="F." surname="Yergeau" fullname="F. Yergeau">
              <organization/>
            </author>
            <date year="2003" month="November"/>
            <abstract>
              <t>ISO/IEC 10646-1 defines a large character set called the Universal Character Set (UCS) which encompasses most of the world's writing systems.  The originally proposed encodings of the UCS, however, were not compatible with many current applications and protocols, and this has led to the development of UTF-8, the object of this memo.  UTF-8 has the characteristic of preserving the full US-ASCII range, providing compatibility with file systems, parsers and other software that rely on US-ASCII values but are transparent to other values.  This memo obsoletes and replaces RFC 2279.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="63"/>
          <seriesInfo name="RFC" value="3629"/>
          <seriesInfo name="DOI" value="10.17487/RFC3629"/>
        </reference>
        <reference anchor="RFC3986" target="https://www.rfc-editor.org/info/rfc3986" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.3986.xml">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author initials="T." surname="Berners-Lee" fullname="T. Berners-Lee">
              <organization/>
            </author>
            <author initials="R." surname="Fielding" fullname="R. Fielding">
              <organization/>
            </author>
            <author initials="L." surname="Masinter" fullname="L. Masinter">
              <organization/>
            </author>
            <date year="2005" month="January"/>
            <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="RFC4949" target="https://www.rfc-editor.org/info/rfc4949" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.4949.xml">
          <front>
            <title>Internet Security Glossary, Version 2</title>
            <author initials="R." surname="Shirey" fullname="R. Shirey">
              <organization/>
            </author>
            <date year="2007" month="August"/>
            <abstract>
              <t>This Glossary provides definitions, abbreviations, and explanations of terminology for information system security. The 334 pages of entries offer recommendations to improve the comprehensibility of written material that is generated in the Internet Standards Process (RFC 2026). The recommendations follow the principles that such writing should (a) use the same term or definition whenever the same concept is mentioned; (b) use terms in their plainest, dictionary sense; (c) use terms that are already well-established in open publications; and (d) avoid terms that either favor a particular vendor or favor a particular technology or mechanism over other, competing techniques that already exist or could be developed.  This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="FYI" value="36"/>
          <seriesInfo name="RFC" value="4949"/>
          <seriesInfo name="DOI" value="10.17487/RFC4949"/>
        </reference>
        <reference anchor="RFC5234" target="https://www.rfc-editor.org/info/rfc5234" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.5234.xml">
          <front>
            <title>Augmented BNF for Syntax Specifications: ABNF</title>
            <author initials="D." surname="Crocker" fullname="D. Crocker" role="editor">
              <organization/>
            </author>
            <author initials="P." surname="Overell" fullname="P. Overell">
              <organization/>
            </author>
            <date year="2008" month="January"/>
            <abstract>
              <t>Internet technical specifications often need to define a formal syntax.  Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications.  The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power.  The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges.  This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="68"/>
          <seriesInfo name="RFC" value="5234"/>
          <seriesInfo name="DOI" value="10.17487/RFC5234"/>
        </reference>
        <reference anchor="RFC6125" target="https://www.rfc-editor.org/info/rfc6125" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6125.xml">
          <front>
            <title>Representation and Verification of Domain-Based Application Service Identity within Internet Public Key Infrastructure Using X.509 (PKIX) Certificates in the Context of Transport Layer Security (TLS)</title>
            <author initials="P." surname="Saint-Andre" fullname="P. Saint-Andre">
              <organization/>
            </author>
            <author initials="J." surname="Hodges" fullname="J. Hodges">
              <organization/>
            </author>
            <date year="2011" month="March"/>
            <abstract>
              <t>Many application technologies enable secure communication between two entities by means of Internet Public Key Infrastructure Using X.509 (PKIX) certificates in the context of Transport Layer Security (TLS). This document specifies procedures for representing and verifying the identity of application services in such interactions.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6125"/>
          <seriesInfo name="DOI" value="10.17487/RFC6125"/>
        </reference>
        <reference anchor="RFC6749" target="https://www.rfc-editor.org/info/rfc6749" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6749.xml">
          <front>
            <title>The OAuth 2.0 Authorization Framework</title>
            <author initials="D." surname="Hardt" fullname="D. Hardt" role="editor">
              <organization/>
            </author>
            <date year="2012" month="October"/>
            <abstract>
              <t>The OAuth 2.0 authorization framework enables a third-party application to obtain limited access to an HTTP service, either on behalf of a resource owner by orchestrating an approval interaction between the resource owner and the HTTP service, or by allowing the third-party application to obtain access on its own behalf.  This specification replaces and obsoletes the OAuth 1.0 protocol described in RFC 5849.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6749"/>
          <seriesInfo name="DOI" value="10.17487/RFC6749"/>
        </reference>
        <reference anchor="RFC6750" target="https://www.rfc-editor.org/info/rfc6750" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6750.xml">
          <front>
            <title>The OAuth 2.0 Authorization Framework: Bearer Token Usage</title>
            <author initials="M." surname="Jones" fullname="M. Jones">
              <organization/>
            </author>
            <author initials="D." surname="Hardt" fullname="D. Hardt">
              <organization/>
            </author>
            <date year="2012" month="October"/>
            <abstract>
              <t>This specification describes how to use bearer tokens in HTTP requests to access OAuth 2.0 protected resources.  Any party in possession of a bearer token (a "bearer") can use it to get access to the associated resources (without demonstrating possession of a cryptographic key).  To prevent misuse, bearer tokens need to be protected from disclosure in storage and in transport.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6750"/>
          <seriesInfo name="DOI" value="10.17487/RFC6750"/>
        </reference>
        <reference anchor="RFC5280" target="https://www.rfc-editor.org/info/rfc5280" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.5280.xml">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author initials="D." surname="Cooper" fullname="D. Cooper">
              <organization/>
            </author>
            <author initials="S." surname="Santesson" fullname="S. Santesson">
              <organization/>
            </author>
            <author initials="S." surname="Farrell" fullname="S. Farrell">
              <organization/>
            </author>
            <author initials="S." surname="Boeyen" fullname="S. Boeyen">
              <organization/>
            </author>
            <author initials="R." surname="Housley" fullname="R. Housley">
              <organization/>
            </author>
            <author initials="W." surname="Polk" fullname="W. Polk">
              <organization/>
            </author>
            <date year="2008" month="May"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet.  An overview of this approach and model is provided as an introduction.  The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms.  Standard certificate extensions are described and two Internet-specific extensions are defined.  A set of required certificate extensions is specified.  The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions.  An algorithm for X.509 certification path validation is described.  An ASN.1 module and examples are provided in the appendices.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5280"/>
          <seriesInfo name="DOI" value="10.17487/RFC5280"/>
        </reference>
        <reference anchor="RFC7159" target="https://www.rfc-editor.org/info/rfc7159" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7159.xml">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author initials="T." surname="Bray" fullname="T. Bray" role="editor">
              <organization/>
            </author>
            <date year="2014" month="March"/>
            <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="RFC" value="7159"/>
          <seriesInfo name="DOI" value="10.17487/RFC7159"/>
        </reference>
        <reference anchor="RFC7230" target="https://www.rfc-editor.org/info/rfc7230" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7230.xml">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title>
            <author initials="R." surname="Fielding" fullname="R. Fielding" role="editor">
              <organization/>
            </author>
            <author initials="J." surname="Reschke" fullname="J. Reschke" role="editor">
              <organization/>
            </author>
            <date year="2014" month="June"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems.  This document provides an overview of HTTP architecture and its associated terminology, defines the "http" and "https" Uniform Resource Identifier (URI) schemes, defines the HTTP/1.1 message syntax and parsing requirements, and describes related security concerns for implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7230"/>
          <seriesInfo name="DOI" value="10.17487/RFC7230"/>
        </reference>
        <reference anchor="RFC7231" target="https://www.rfc-editor.org/info/rfc7231" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7231.xml">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</title>
            <author initials="R." surname="Fielding" fullname="R. Fielding" role="editor">
              <organization/>
            </author>
            <author initials="J." surname="Reschke" fullname="J. Reschke" role="editor">
              <organization/>
            </author>
            <date year="2014" month="June"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless \%application- level protocol for distributed, collaborative, hypertext information systems.  This document defines the semantics of HTTP/1.1 messages, as expressed by request methods, request header fields, response status codes, and response header fields, along with the payload of messages (metadata and body content) and mechanisms for content negotiation.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7231"/>
          <seriesInfo name="DOI" value="10.17487/RFC7231"/>
        </reference>
        <reference anchor="RFC7234" target="https://www.rfc-editor.org/info/rfc7234" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7234.xml">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Caching</title>
            <author initials="R." surname="Fielding" fullname="R. Fielding" role="editor">
              <organization/>
            </author>
            <author initials="M." surname="Nottingham" fullname="M. Nottingham" role="editor">
              <organization/>
            </author>
            <author initials="J." surname="Reschke" fullname="J. Reschke" role="editor">
              <organization/>
            </author>
            <date year="2014" month="June"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless \%application- level protocol for distributed, collaborative, hypertext information systems.  This document defines HTTP caches and the associated header fields that control cache behavior or indicate cacheable response messages.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7234"/>
          <seriesInfo name="DOI" value="10.17487/RFC7234"/>
        </reference>
        <reference anchor="RFC7235" target="https://www.rfc-editor.org/info/rfc7235" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7235.xml">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Authentication</title>
            <author initials="R." surname="Fielding" fullname="R. Fielding" role="editor">
              <organization/>
            </author>
            <author initials="J." surname="Reschke" fullname="J. Reschke" role="editor">
              <organization/>
            </author>
            <date year="2014" month="June"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application- level protocol for distributed, collaborative, hypermedia information systems.  This document defines the HTTP Authentication framework.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7235"/>
          <seriesInfo name="DOI" value="10.17487/RFC7235"/>
        </reference>
        <reference anchor="RFC7595" target="https://www.rfc-editor.org/info/rfc7595" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7595.xml">
          <front>
            <title>Guidelines and Registration Procedures for URI Schemes</title>
            <author initials="D." surname="Thaler" fullname="D. Thaler" role="editor">
              <organization/>
            </author>
            <author initials="T." surname="Hansen" fullname="T. Hansen">
              <organization/>
            </author>
            <author initials="T." surname="Hardie" fullname="T. Hardie">
              <organization/>
            </author>
            <date year="2015" month="June"/>
            <abstract>
              <t>This document updates the guidelines and recommendations, as well as the IANA registration processes, for the definition of Uniform Resource Identifier (URI) schemes.  It obsoletes RFC 4395.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="35"/>
          <seriesInfo name="RFC" value="7595"/>
          <seriesInfo name="DOI" value="10.17487/RFC7595"/>
        </reference>
        <reference anchor="RFC8174" target="https://www.rfc-editor.org/info/rfc8174" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8174.xml">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author initials="B." surname="Leiba" fullname="B. Leiba">
              <organization/>
            </author>
            <date year="2017" month="May"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC8252" target="https://www.rfc-editor.org/info/rfc8252" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8252.xml">
          <front>
            <title>OAuth 2.0 for Native Apps</title>
            <author initials="W." surname="Denniss" fullname="W. Denniss">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <date year="2017" month="October"/>
            <abstract>
              <t>OAuth 2.0 authorization requests from native apps should only be made through external user-agents, primarily the user's browser.  This specification details the security and usability reasons why this is the case and how native apps and authorization servers can implement this best practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="212"/>
          <seriesInfo name="RFC" value="8252"/>
          <seriesInfo name="DOI" value="10.17487/RFC8252"/>
        </reference>
        <reference anchor="RFC8259" target="https://www.rfc-editor.org/info/rfc8259" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8259.xml">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author initials="T." surname="Bray" fullname="T. Bray" role="editor">
              <organization/>
            </author>
            <date year="2017" month="December"/>
            <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="RFC8446" target="https://www.rfc-editor.org/info/rfc8446" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8446.xml">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author initials="E." surname="Rescorla" fullname="E. Rescorla">
              <organization/>
            </author>
            <date year="2018" month="August"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-security-topics" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-security-topics.xml" target="https://www.ietf.org/archive/id/draft-ietf-oauth-security-topics-19.txt">
          <front>
            <title>OAuth 2.0 Security Best Current Practice</title>
            <author fullname="Torsten Lodderstedt">
              <organization>yes.com</organization>
            </author>
            <author fullname="John Bradley">
              <organization>Yubico</organization>
            </author>
            <author fullname="Andrey Labunets">
              <organization>Independent Researcher</organization>
            </author>
            <author fullname="Daniel Fett">
              <organization>yes.com</organization>
            </author>
            <date month="December" day="16" year="2021"/>
            <abstract>
              <t>   This document describes best current security practice for OAuth 2.0.
   It updates and extends the OAuth 2.0 Security Threat Model to
   incorporate practical experiences gathered since OAuth 2.0 was
   published and covers new threats relevant due to the broader
   application of OAuth 2.0.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-security-topics-19"/>
        </reference>
        <reference anchor="BCP195">
          <front>
            <title>Recommendations for Secure Use of Transport Layer Security (TLS)</title>
            <author initials="P." surname="Saint-Andre">
              <organization/>
            </author>
            <date year="2015"/>
          </front>
        </reference>
        <reference anchor="USASCII">
          <front>
            <title>Coded Character Set -- 7-bit American Standard Code for Information Interchange, ANSI X3.4</title>
            <author initials="A.N.S." surname="Institute" fullname="American National Standards Institute">
              <organization/>
            </author>
            <date year="1986"/>
          </front>
        </reference>
        <reference anchor="W3C.REC-html401-19991224" target="https://www.w3.org/TR/1999/REC-html401-19991224" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml4/reference.W3C.REC-html401-19991224.xml">
          <front>
            <title>HTML 4.01 Specification</title>
            <author initials="D." surname="Raggett" fullname="Dave Raggett">
              <organization/>
            </author>
            <author initials="A." surname="Hors" fullname="Arnaud Le Hors">
              <organization/>
            </author>
            <author initials="I." surname="Jacobs" fullname="Ian Jacobs">
              <organization/>
            </author>
            <date month="December" day="24" year="1999"/>
          </front>
          <seriesInfo name="World Wide Web Consortium Recommendation" value="REC-html401-19991224"/>
        </reference>
        <reference anchor="W3C.REC-xml-20081126" target="https://www.w3.org/TR/2008/REC-xml-20081126" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml4/reference.W3C.REC-xml-20081126.xml">
          <front>
            <title>Extensible Markup Language (XML) 1.0 (Fifth Edition)</title>
            <author initials="T." surname="Bray" fullname="Tim Bray">
              <organization/>
            </author>
            <author initials="J." surname="Paoli" fullname="Jean Paoli">
              <organization/>
            </author>
            <author initials="M." surname="Sperberg-McQueen" fullname="Michael Sperberg-McQueen">
              <organization/>
            </author>
            <author initials="E." surname="Maler" fullname="Eve Maler">
              <organization/>
            </author>
            <author initials="F." surname="Yergeau" fullname="FranÃ§ois Yergeau">
              <organization/>
            </author>
            <date month="November" day="26" year="2008"/>
          </front>
          <seriesInfo name="World Wide Web Consortium Recommendation" value="REC-xml-20081126"/>
        </reference>
        <reference anchor="RFC2617" target="https://www.rfc-editor.org/info/rfc2617" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.2617.xml">
          <front>
            <title>HTTP Authentication: Basic and Digest Access Authentication</title>
            <author initials="J." surname="Franks" fullname="J. Franks">
              <organization/>
            </author>
            <author initials="P." surname="Hallam-Baker" fullname="P. Hallam-Baker">
              <organization/>
            </author>
            <author initials="J." surname="Hostetler" fullname="J. Hostetler">
              <organization/>
            </author>
            <author initials="S." surname="Lawrence" fullname="S. Lawrence">
              <organization/>
            </author>
            <author initials="P." surname="Leach" fullname="P. Leach">
              <organization/>
            </author>
            <author initials="A." surname="Luotonen" fullname="A. Luotonen">
              <organization/>
            </author>
            <author initials="L." surname="Stewart" fullname="L. Stewart">
              <organization/>
            </author>
            <date year="1999" month="June"/>
            <abstract>
              <t>This document provides the specification for HTTP's authentication framework, the original Basic authentication scheme and a scheme based on cryptographic hashes, referred to as "Digest Access Authentication". [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2617"/>
          <seriesInfo name="DOI" value="10.17487/RFC2617"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC6265" target="https://www.rfc-editor.org/info/rfc6265" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6265.xml">
          <front>
            <title>HTTP State Management Mechanism</title>
            <author initials="A." surname="Barth" fullname="A. Barth">
              <organization/>
            </author>
            <date year="2011" month="April"/>
            <abstract>
              <t>This document defines the HTTP Cookie and Set-Cookie header fields. These header fields can be used by HTTP servers to store state (called cookies) at HTTP user agents, letting the servers maintain a stateful session over the mostly stateless HTTP protocol.  Although cookies have many historical infelicities that degrade their security and privacy, the Cookie and Set-Cookie header fields are widely used on the Internet.  This document obsoletes RFC 2965.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6265"/>
          <seriesInfo name="DOI" value="10.17487/RFC6265"/>
        </reference>
        <reference anchor="RFC6819" target="https://www.rfc-editor.org/info/rfc6819" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6819.xml">
          <front>
            <title>OAuth 2.0 Threat Model and Security Considerations</title>
            <author initials="T." surname="Lodderstedt" fullname="T. Lodderstedt" role="editor">
              <organization/>
            </author>
            <author initials="M." surname="McGloin" fullname="M. McGloin">
              <organization/>
            </author>
            <author initials="P." surname="Hunt" fullname="P. Hunt">
              <organization/>
            </author>
            <date year="2013" month="January"/>
            <abstract>
              <t>This document gives additional security considerations for OAuth, beyond those in the OAuth 2.0 specification, based on a comprehensive threat model for the OAuth 2.0 protocol.  This document is not an  Internet Standards Track specification; it is published for  informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6819"/>
          <seriesInfo name="DOI" value="10.17487/RFC6819"/>
        </reference>
        <reference anchor="RFC7009" target="https://www.rfc-editor.org/info/rfc7009" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7009.xml">
          <front>
            <title>OAuth 2.0 Token Revocation</title>
            <author initials="T." surname="Lodderstedt" fullname="T. Lodderstedt" role="editor">
              <organization/>
            </author>
            <author initials="S." surname="Dronia" fullname="S. Dronia">
              <organization/>
            </author>
            <author initials="M." surname="Scurtescu" fullname="M. Scurtescu">
              <organization/>
            </author>
            <date year="2013" month="August"/>
            <abstract>
              <t>This document proposes an additional endpoint for OAuth authorization servers, which allows clients to notify the authorization server that a previously obtained refresh or access token is no longer needed. This allows the authorization server to clean up security credentials.  A revocation request will invalidate the actual token and, if applicable, other tokens based on the same authorization grant.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7009"/>
          <seriesInfo name="DOI" value="10.17487/RFC7009"/>
        </reference>
        <reference anchor="RFC7519" target="https://www.rfc-editor.org/info/rfc7519" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7519.xml">
          <front>
            <title>JSON Web Token (JWT)</title>
            <author initials="M." surname="Jones" fullname="M. Jones">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <author initials="N." surname="Sakimura" fullname="N. Sakimura">
              <organization/>
            </author>
            <date year="2015" month="May"/>
            <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="RFC7591" target="https://www.rfc-editor.org/info/rfc7591" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7591.xml">
          <front>
            <title>OAuth 2.0 Dynamic Client Registration Protocol</title>
            <author initials="J." surname="Richer" fullname="J. Richer" role="editor">
              <organization/>
            </author>
            <author initials="M." surname="Jones" fullname="M. Jones">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <author initials="M." surname="Machulak" fullname="M. Machulak">
              <organization/>
            </author>
            <author initials="P." surname="Hunt" fullname="P. Hunt">
              <organization/>
            </author>
            <date year="2015" month="July"/>
            <abstract>
              <t>This specification defines mechanisms for dynamically registering OAuth 2.0 clients with authorization servers.  Registration requests send a set of desired client metadata values to the authorization server.  The resulting registration responses return a client identifier to use at the authorization server and the client metadata values registered for the client.  The client can then use this registration information to communicate with the authorization server using the OAuth 2.0 protocol.  This specification also defines a set of common client metadata fields and values for clients to use during registration.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7591"/>
          <seriesInfo name="DOI" value="10.17487/RFC7591"/>
        </reference>
        <reference anchor="RFC7592" target="https://www.rfc-editor.org/info/rfc7592" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7592.xml">
          <front>
            <title>OAuth 2.0 Dynamic Client Registration Management Protocol</title>
            <author initials="J." surname="Richer" fullname="J. Richer" role="editor">
              <organization/>
            </author>
            <author initials="M." surname="Jones" fullname="M. Jones">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <author initials="M." surname="Machulak" fullname="M. Machulak">
              <organization/>
            </author>
            <date year="2015" month="July"/>
            <abstract>
              <t>This specification defines methods for management of OAuth 2.0 dynamic client registrations for use cases in which the properties of a registered client may need to be changed during the lifetime of the client.  Not all authorization servers supporting dynamic client registration will support these management methods.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7592"/>
          <seriesInfo name="DOI" value="10.17487/RFC7592"/>
        </reference>
        <reference anchor="RFC7636" target="https://www.rfc-editor.org/info/rfc7636" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7636.xml">
          <front>
            <title>Proof Key for Code Exchange by OAuth Public Clients</title>
            <author initials="N." surname="Sakimura" fullname="N. Sakimura" role="editor">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <author initials="N." surname="Agarwal" fullname="N. Agarwal">
              <organization/>
            </author>
            <date year="2015" month="September"/>
            <abstract>
              <t>OAuth 2.0 public clients utilizing the Authorization Code Grant are susceptible to the authorization code interception attack.  This specification describes the attack as well as a technique to mitigate against the threat through the use of Proof Key for Code Exchange (PKCE, pronounced "pixy").</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7636"/>
          <seriesInfo name="DOI" value="10.17487/RFC7636"/>
        </reference>
        <reference anchor="RFC7662" target="https://www.rfc-editor.org/info/rfc7662" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7662.xml">
          <front>
            <title>OAuth 2.0 Token Introspection</title>
            <author initials="J." surname="Richer" fullname="J. Richer" role="editor">
              <organization/>
            </author>
            <date year="2015" month="October"/>
            <abstract>
              <t>This specification defines a method for a protected resource to query an OAuth 2.0 authorization server to determine the active state of an OAuth 2.0 token and to determine meta-information about this token. OAuth 2.0 deployments can use this method to convey information about the authorization context of the token from the authorization server to the protected resource.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7662"/>
          <seriesInfo name="DOI" value="10.17487/RFC7662"/>
        </reference>
        <reference anchor="RFC8414" target="https://www.rfc-editor.org/info/rfc8414" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8414.xml">
          <front>
            <title>OAuth 2.0 Authorization Server Metadata</title>
            <author initials="M." surname="Jones" fullname="M. Jones">
              <organization/>
            </author>
            <author initials="N." surname="Sakimura" fullname="N. Sakimura">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <date year="2018" month="June"/>
            <abstract>
              <t>This specification defines a metadata format that an OAuth 2.0 client can use to obtain the information needed to interact with an OAuth 2.0 authorization server, including its endpoint locations and authorization server capabilities.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8414"/>
          <seriesInfo name="DOI" value="10.17487/RFC8414"/>
        </reference>
        <reference anchor="RFC8628" target="https://www.rfc-editor.org/info/rfc8628" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8628.xml">
          <front>
            <title>OAuth 2.0 Device Authorization Grant</title>
            <author initials="W." surname="Denniss" fullname="W. Denniss">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <author initials="M." surname="Jones" fullname="M. Jones">
              <organization/>
            </author>
            <author initials="H." surname="Tschofenig" fullname="H. Tschofenig">
              <organization/>
            </author>
            <date year="2019" month="August"/>
            <abstract>
              <t>The OAuth 2.0 device authorization grant is designed for Internet- connected devices that either lack a browser to perform a user-agent- based authorization or are input constrained to the extent that requiring the user to input text in order to authenticate during the authorization flow is impractical.  It enables OAuth clients on such devices (like smart TVs, media consoles, digital picture frames, and printers) to obtain user authorization to access protected resources by using a user agent on a separate device.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8628"/>
          <seriesInfo name="DOI" value="10.17487/RFC8628"/>
        </reference>
        <reference anchor="RFC8705" target="https://www.rfc-editor.org/info/rfc8705" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8705.xml">
          <front>
            <title>OAuth 2.0 Mutual-TLS Client Authentication and Certificate-Bound Access Tokens</title>
            <author initials="B." surname="Campbell" fullname="B. Campbell">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <author initials="N." surname="Sakimura" fullname="N. Sakimura">
              <organization/>
            </author>
            <author initials="T." surname="Lodderstedt" fullname="T. Lodderstedt">
              <organization/>
            </author>
            <date year="2020" month="February"/>
            <abstract>
              <t>This document describes OAuth client authentication and certificate-bound access and refresh tokens using mutual Transport Layer Security (TLS) authentication with X.509 certificates.  OAuth clients are provided a mechanism for authentication to the authorization server using mutual TLS, based on either self-signed certificates or public key infrastructure (PKI). OAuth authorization servers are provided a mechanism for binding access tokens to a client's mutual-TLS certificate, and OAuth protected resources are provided a method for ensuring that such an access token presented to it was issued to the client presenting the token.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8705"/>
          <seriesInfo name="DOI" value="10.17487/RFC8705"/>
        </reference>
        <reference anchor="RFC8707" target="https://www.rfc-editor.org/info/rfc8707" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8707.xml">
          <front>
            <title>Resource Indicators for OAuth 2.0</title>
            <author initials="B." surname="Campbell" fullname="B. Campbell">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <author initials="H." surname="Tschofenig" fullname="H. Tschofenig">
              <organization/>
            </author>
            <date year="2020" month="February"/>
            <abstract>
              <t>This document specifies an extension to the OAuth 2.0 Authorization Framework defining request parameters that enable a client to explicitly signal to an authorization server about the identity of the protected resource(s) to which it is requesting access.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8707"/>
          <seriesInfo name="DOI" value="10.17487/RFC8707"/>
        </reference>
        <reference anchor="RFC9068" target="https://www.rfc-editor.org/info/rfc9068" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.9068.xml">
          <front>
            <title>JSON Web Token (JWT) Profile for OAuth 2.0 Access Tokens</title>
            <author initials="V." surname="Bertocci" fullname="V. Bertocci">
              <organization/>
            </author>
            <date year="2021" month="October"/>
            <abstract>
              <t>This specification defines a profile for issuing OAuth 2.0 access tokens in JSON Web Token (JWT) format. Authorization servers and resource servers from different vendors can leverage this profile to issue and consume access tokens in an interoperable manner.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9068"/>
          <seriesInfo name="DOI" value="10.17487/RFC9068"/>
        </reference>
        <reference anchor="RFC9126" target="https://www.rfc-editor.org/info/rfc9126" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.9126.xml">
          <front>
            <title>OAuth 2.0 Pushed Authorization Requests</title>
            <author initials="T." surname="Lodderstedt" fullname="T. Lodderstedt">
              <organization/>
            </author>
            <author initials="B." surname="Campbell" fullname="B. Campbell">
              <organization/>
            </author>
            <author initials="N." surname="Sakimura" fullname="N. Sakimura">
              <organization/>
            </author>
            <author initials="D." surname="Tonge" fullname="D. Tonge">
              <organization/>
            </author>
            <author initials="F." surname="Skokan" fullname="F. Skokan">
              <organization/>
            </author>
            <date year="2021" month="September"/>
            <abstract>
              <t>This document defines the pushed authorization request (PAR) endpoint, which allows clients to push the payload of an OAuth 2.0 authorization request to the authorization server via a direct request and provides them with a request URI that is used as reference to the data in a subsequent call to the authorization endpoint.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9126"/>
          <seriesInfo name="DOI" value="10.17487/RFC9126"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-rar" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-rar.xml" target="https://www.ietf.org/archive/id/draft-ietf-oauth-rar-10.txt">
          <front>
            <title>OAuth 2.0 Rich Authorization Requests</title>
            <author fullname="Torsten Lodderstedt">
              <organization>yes.com</organization>
            </author>
            <author fullname="Justin Richer">
              <organization>Bespoke Engineering</organization>
            </author>
            <author fullname="Brian Campbell">
              <organization>Ping Identity</organization>
            </author>
            <date month="January" day="26" year="2022"/>
            <abstract>
              <t>   This document specifies a new parameter authorization_details that is
   used to carry fine-grained authorization data in OAuth messages.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-rar-10"/>
        </reference>
        <reference anchor="I-D.bradley-oauth-jwt-encoded-state" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml3/reference.I-D.bradley-oauth-jwt-encoded-state.xml" target="https://www.ietf.org/archive/id/draft-bradley-oauth-jwt-encoded-state-09.txt">
          <front>
            <title>Encoding claims in the OAuth 2 state parameter using a JWT</title>
            <author fullname="John Bradley">
              <organization>Yubico</organization>
            </author>
            <author fullname="Dr.-Ing. Torsten Lodderstedt">
              <organization>YES.com AG</organization>
            </author>
            <author fullname="Hans Zandbelt">
              <organization>ZmartZone IAM</organization>
            </author>
            <date month="November" day="4" year="2018"/>
            <abstract>
              <t>   This draft provides a method for a client to encode one or more
   elements encoding information about the session into the OAuth 2
   "state" parameter.


              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-bradley-oauth-jwt-encoded-state-09"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-token-binding" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-token-binding.xml" target="https://www.ietf.org/archive/id/draft-ietf-oauth-token-binding-08.txt">
          <front>
            <title>OAuth 2.0 Token Binding</title>
            <author fullname="Michael B. Jones">
              <organization>Microsoft</organization>
            </author>
            <author fullname="Brian Campbell">
              <organization>Ping Identity</organization>
            </author>
            <author fullname="John Bradley">
              <organization>Yubico</organization>
            </author>
            <author fullname="William Denniss">
              <organization>Google</organization>
            </author>
            <date month="October" day="19" year="2018"/>
            <abstract>
              <t>   This specification enables OAuth 2.0 implementations to apply Token
   Binding to Access Tokens, Authorization Codes, Refresh Tokens, JWT
   Authorization Grants, and JWT Client Authentication.  This
   cryptographically binds these tokens to a client's Token Binding key
   pair, possession of which is proven on the TLS connections over which
   the tokens are intended to be used.  This use of Token Binding
   protects these tokens from man-in-the-middle and token export and
   replay attacks.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-token-binding-08"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-browser-based-apps" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-browser-based-apps.xml" target="https://www.ietf.org/archive/id/draft-ietf-oauth-browser-based-apps-08.txt">
          <front>
            <title>OAuth 2.0 for Browser-Based Apps</title>
            <author fullname="Aaron Parecki">
              <organization>Okta</organization>
            </author>
            <author fullname="David Waite">
              <organization>Ping Identity</organization>
            </author>
            <date month="May" day="17" year="2021"/>
            <abstract>
              <t>   This specification details the security considerations and best
   practices that must be taken into account when developing browser-
   based applications that use OAuth 2.0.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-browser-based-apps-08"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-dpop" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-dpop.xml" target="https://www.ietf.org/archive/id/draft-ietf-oauth-dpop-06.txt">
          <front>
            <title>OAuth 2.0 Demonstrating Proof-of-Possession at the Application Layer (DPoP)</title>
            <author fullname="Daniel Fett">
              <organization>yes.com</organization>
            </author>
            <author fullname="Brian Campbell">
              <organization>Ping Identity</organization>
            </author>
            <author fullname="John Bradley">
              <organization>Yubico</organization>
            </author>
            <author fullname="Torsten Lodderstedt">
              <organization>yes.com</organization>
            </author>
            <author fullname="Michael Jones">
              <organization>Microsoft</organization>
            </author>
            <author fullname="David Waite">
              <organization>Ping Identity</organization>
            </author>
            <date month="March" day="1" year="2022"/>
            <abstract>
              <t>   This document describes a mechanism for sender-constraining OAuth 2.0
   tokens via a proof-of-possession mechanism on the application level.
   This mechanism allows for the detection of replay attacks with access
   and refresh tokens.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-dpop-06"/>
        </reference>
        <reference anchor="OpenID" target="https://openiD.net/specs/openiD-connect-core-1_0.html">
          <front>
            <title>OpenID Connect Core 1.0</title>
            <author initials="N." surname="Sakimora">
              <organization/>
            </author>
            <author initials="J." surname="Bradley">
              <organization/>
            </author>
            <author initials="M." surname="Jones">
              <organization/>
            </author>
            <author initials="B." surname="de Medeiros">
              <organization/>
            </author>
            <author initials="C." surname="Mortimore">
              <organization/>
            </author>
            <date year="2014" month="November"/>
          </front>
        </reference>
        <reference anchor="OMAP" target="https://www.oatc.us/Standards/Download-Standards">
          <front>
            <title>Online Multimedia Authorization Protocol: An Industry Standard for Authorized Access to Internet Multimedia Resources</title>
            <author initials="J." surname="Huff">
              <organization/>
            </author>
            <author initials="D." surname="Schlacht">
              <organization/>
            </author>
            <author initials="A." surname="Nadalin">
              <organization/>
            </author>
            <author initials="J." surname="Simmons">
              <organization/>
            </author>
            <author initials="P." surname="Rosenberg">
              <organization/>
            </author>
            <author initials="P." surname="Madsen">
              <organization/>
            </author>
            <author initials="T." surname="Ace">
              <organization/>
            </author>
            <author initials="C." surname="Rickelton-Abdi">
              <organization/>
            </author>
            <author initials="B." surname="Boyer">
              <organization/>
            </author>
            <date year="2012" month="April"/>
          </front>
        </reference>
        <reference anchor="NIST800-63" target="http://csrc.nist.gov/publications/">
          <front>
            <title>NIST Special Publication 800-63-1, INFORMATION SECURITY</title>
            <author initials="W." surname="Burr">
              <organization/>
            </author>
            <author initials="D." surname="Dodson">
              <organization/>
            </author>
            <author initials="E." surname="Newton">
              <organization/>
            </author>
            <author initials="R." surname="Perlner">
              <organization/>
            </author>
            <author initials="T." surname="Polk">
              <organization/>
            </author>
            <author initials="S." surname="Gupta">
              <organization/>
            </author>
            <author initials="E." surname="Nabbus">
              <organization/>
            </author>
            <date year="2011" month="December"/>
          </front>
        </reference>
        <reference anchor="OpenID.Messages" target="http://openid.net/specs/openid-connect-messages-1_0.html">
          <front>
            <title>OpenID Connect Messages 1.0</title>
            <author initials="N." surname="Sakimura">
              <organization/>
            </author>
            <author initials="J." surname="Bradley">
              <organization/>
            </author>
            <author initials="M." surname="Jones">
              <organization/>
            </author>
            <author initials="B." surname="de Medeiros">
              <organization/>
            </author>
            <author initials="C." surname="Mortimore">
              <organization/>
            </author>
            <author initials="E." surname="Jay">
              <organization/>
            </author>
            <date year="2012" month="June"/>
          </front>
        </reference>
        <reference anchor="owasp_redir" target="https://cheatsheetseries.owasp.org/cheatsheets/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html">
          <front>
            <title>OWASP Cheat Sheet Series - Unvalidated Redirects and Forwards</title>
            <author>
              <organization/>
            </author>
            <date year="2020"/>
          </front>
        </reference>
        <reference anchor="CSP-2" target="https://www.w3.org/TR/CSP2">
          <front>
            <title>Content Security Policy Level 2</title>
            <author>
              <organization/>
            </author>
            <date year="2016" month="December"/>
          </front>
        </reference>
      </references>
    </references>
    <section anchor="augmented-backus-naur-form-abnf-syntax" numbered="true" toc="default">
      <name>Augmented Backus-Naur Form (ABNF) Syntax</name>
      <t>This section provides Augmented Backus-Naur Form (ABNF) syntax
descriptions for the elements defined in this specification using the
notation of <xref target="RFC5234" format="default"/>.  The ABNF below is defined in terms of Unicode
code points <xref target="W3C.REC-xml-20081126" format="default"/>; these characters are typically
encoded in UTF-8.  Elements are presented in the order first defined.</t>
      <t>Some of the definitions that follow use the "URI-reference"
definition from <xref target="RFC3986" format="default"/>.</t>
      <t>Some of the definitions that follow use these common definitions:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
VSCHAR     = %x20-7E
NQCHAR     = %x21 / %x23-5B / %x5D-7E
NQSCHAR    = %x20-21 / %x23-5B / %x5D-7E
UNICODECHARNOCRLF = %x09 /%x20-7E / %x80-D7FF /
                    %xE000-FFFD / %x10000-10FFFF
]]></artwork>
      <t>(The UNICODECHARNOCRLF definition is based upon the Char definition
in Section 2.2 of <xref target="W3C.REC-xml-20081126" format="default"/>, but omitting the Carriage
Return and Linefeed characters.)</t>
      <section anchor="clientid-syntax" numbered="true" toc="default">
        <name>"client_id" Syntax</name>
        <t>The <tt>client_id</tt> element is defined in <xref target="client-secret" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
client-id     = *VSCHAR
]]></artwork>
      </section>
      <section anchor="clientsecret-syntax" numbered="true" toc="default">
        <name>"client_secret" Syntax</name>
        <t>The <tt>client_secret</tt> element is defined in <xref target="client-secret" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
client-secret = *VSCHAR
]]></artwork>
      </section>
      <section anchor="responsetype-syntax" numbered="true" toc="default">
        <name>"response_type" Syntax</name>
        <t>The <tt>response_type</tt> element is defined in <xref target="authorization-request" format="default"/> and <xref target="new-response-types" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
response-type = response-name *( SP response-name )
response-name = 1*response-char
response-char = "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="scope-syntax" numbered="true" toc="default">
        <name>"scope" Syntax</name>
        <t>The <tt>scope</tt> element is defined in <xref target="access-token-scope" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 scope       = scope-token *( SP scope-token )
 scope-token = 1*NQCHAR
]]></artwork>
      </section>
      <section anchor="state-syntax" numbered="true" toc="default">
        <name>"state" Syntax</name>
        <t>The <tt>state</tt> element is defined in <xref target="authorization-request" format="default"/>, <xref target="authorization-response" format="default"/>, and <xref target="authorization-code-error-response" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 state      = 1*VSCHAR
]]></artwork>
      </section>
      <section anchor="redirecturi-syntax" numbered="true" toc="default">
        <name>"redirect_uri" Syntax</name>
        <t>The <tt>redirect_uri</tt> element is defined in <xref target="authorization-request" format="default"/>, and <xref target="code-token-extension" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 redirect-uri      = URI-reference
]]></artwork>
      </section>
      <section anchor="error-syntax" numbered="true" toc="default">
        <name>"error" Syntax</name>
        <t>The <tt>error</tt> element is defined in Sections <xref target="authorization-code-error-response" format="default"/>, <xref target="token-error-response" format="default"/>,
7.2, and 8.5:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 error             = 1*NQSCHAR
]]></artwork>
      </section>
      <section anchor="errordescription-syntax" numbered="true" toc="default">
        <name>"error_description" Syntax</name>
        <t>The <tt>error_description</tt> element is defined in Sections <xref target="authorization-code-error-response" format="default"/>,
<xref target="token-error-response" format="default"/>, and <xref target="error-response" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 error-description = 1*NQSCHAR
]]></artwork>
      </section>
      <section anchor="erroruri-syntax" numbered="true" toc="default">
        <name>"error_uri" Syntax</name>
        <t>The <tt>error_uri</tt> element is defined in Sections <xref target="authorization-code-error-response" format="default"/>, <xref target="token-error-response" format="default"/>,
and 7.2:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 error-uri         = URI-reference
]]></artwork>
      </section>
      <section anchor="granttype-syntax" numbered="true" toc="default">
        <name>"grant_type" Syntax</name>
        <t>The <tt>grant_type</tt> element is defined in Section <xref target="token-request" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 grant-type = grant-name / URI-reference
 grant-name = 1*name-char
 name-char  = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="code-syntax" numbered="true" toc="default">
        <name>"code" Syntax</name>
        <t>The <tt>code</tt> element is defined in <xref target="code-token-extension" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 code       = 1*VSCHAR
]]></artwork>
      </section>
      <section anchor="accesstoken-syntax" numbered="true" toc="default">
        <name>"access_token" Syntax</name>
        <t>The <tt>access_token</tt> element is defined in <xref target="token-response" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 access-token = 1*VSCHAR
]]></artwork>
      </section>
      <section anchor="tokentype-syntax" numbered="true" toc="default">
        <name>"token_type" Syntax</name>
        <t>The <tt>token_type</tt> element is defined in <xref target="token-response" format="default"/>, and <xref target="defining-access-token-types" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 token-type = type-name / URI-reference
 type-name  = 1*name-char
 name-char  = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="expiresin-syntax" numbered="true" toc="default">
        <name>"expires_in" Syntax</name>
        <t>The <tt>expires_in</tt> element is defined in <xref target="token-response" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 expires-in = 1*DIGIT
]]></artwork>
      </section>
      <section anchor="refreshtoken-syntax" numbered="true" toc="default">
        <name>"refresh_token" Syntax</name>
        <t>The <tt>refresh_token</tt> element is defined in <xref target="token-response" format="default"/> and <xref target="refreshing-an-access-token" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 refresh-token = 1*VSCHAR
]]></artwork>
      </section>
      <section anchor="endpoint-parameter-syntax" numbered="true" toc="default">
        <name>Endpoint Parameter Syntax</name>
        <t>The syntax for new endpoint parameters is defined in <xref target="defining-new-endpoint-parameters" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 param-name = 1*name-char
 name-char  = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="codeverifier-syntax" numbered="true" toc="default">
        <name>"code_verifier" Syntax</name>
        <t>ABNF for <tt>code_verifier</tt> is as follows.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
code-verifier = 43*128unreserved
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
ALPHA = %x41-5A / %x61-7A
DIGIT = %x30-39
]]></artwork>
      </section>
      <section anchor="codechallenge-syntax" numbered="true" toc="default">
        <name>"code_challenge" Syntax</name>
        <t>ABNF for <tt>code_challenge</tt> is as follows.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
code-challenge = 43*128unreserved
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
ALPHA = %x41-5A / %x61-7A
DIGIT = %x30-39
]]></artwork>
      </section>
    </section>
    <section anchor="use-of-applicationx-www-form-urlencoded-media-type" numbered="true" toc="default">
      <name>Use of application/x-www-form-urlencoded Media Type</name>
      <t>At the time of publication of this specification, the
<tt>application/x-www-form-urlencoded</tt> media type was defined in
Section 17.13.4 of <xref target="W3C.REC-html401-19991224" format="default"/> but not registered in
the IANA MIME Media Types registry
(<eref target="http://www.iana.org/assignments/media-types">http://www.iana.org/assignments/media-types</eref>).  Furthermore, that
definition is incomplete, as it does not consider non-US-ASCII
characters.</t>
      <t>To address this shortcoming when generating payloads using this media
type, names and values MUST be encoded using the UTF-8 character
encoding scheme <xref target="RFC3629" format="default"/> first; the resulting octet sequence then
needs to be further encoded using the escaping rules defined in
<xref target="W3C.REC-html401-19991224" format="default"/>.</t>
      <t>When parsing data from a payload using this media type, the names and
values resulting from reversing the name/value encoding consequently
need to be treated as octet sequences, to be decoded using the UTF-8
character encoding scheme.</t>
      <t>For example, the value consisting of the six Unicode code points
(1) U+0020 (SPACE), (2) U+0025 (PERCENT SIGN),
(3) U+0026 (AMPERSAND), (4) U+002B (PLUS SIGN),
(5) U+00A3 (POUND SIGN), and (6) U+20AC (EURO SIGN) would be encoded
into the octet sequence below (using hexadecimal notation):</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
20 25 26 2B C2 A3 E2 82 AC
]]></artwork>
      <t>and then represented in the payload as:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
+%25%26%2B%C2%A3%E2%82%AC
]]></artwork>
    </section>
    <section anchor="extensions" numbered="true" toc="default">
      <name>Extensions</name>
      <t>Below is a list of well-established extensions at the time of publication:</t>
      <ul spacing="normal">
        <li>
          <t><xref target="RFC8628" format="default"/>: OAuth 2.0 Device Authorization Grant
          </t>
          <ul spacing="normal">
            <li>The Device Authorization Grant (formerly known as the Device Flow) is an extension that enables devices with no browser or limited input capability to obtain an access token. This is commonly used by smart TV apps, or devices like hardware video encoders that can stream video to a streaming video service.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC8414" format="default"/>: Authorization Server Metadata
          </t>
          <ul spacing="normal">
            <li>Authorization Server Metadata (also known as OAuth Discovery) defines an endpoint clients can use to look up the information needed to interact with a particular OAuth server, such as the location of the authorization and token endpoints and the supported grant types.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC8707" format="default"/>: Resource Indicators
          </t>
          <ul spacing="normal">
            <li>Provides a way for the client to explicitly signal to the authorization server where it intends to use the access token it is requesting.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC7591" format="default"/>: Dynamic Client Registration
          </t>
          <ul spacing="normal">
            <li>Dynamic Client Registration provides a mechanism for programmatically registering clients with an authorization server.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC7592" format="default"/>: Dynamic Client Management
          </t>
          <ul spacing="normal">
            <li>Dynamic Client Management provides a mechanism for updating dynamically registered client information.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC9068" format="default"/>: JSON Web Token (JWT) Profile for OAuth 2.0 Access Tokens
          </t>
          <ul spacing="normal">
            <li>This specification defines a profile for issuing OAuth access tokens in JSON Web Token (JWT) format.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC8705" format="default"/>: Mutual TLS
          </t>
          <ul spacing="normal">
            <li>Mutual TLS describes a mechanism of binding access tokens and refresh tokens to the clients they were issued to, as well as a client authentication mechanism, via TLS certificate authentication.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC7662" format="default"/>: Token Introspection
          </t>
          <ul spacing="normal">
            <li>The Token Introspection extension defines a mechanism for resource servers to obtain information about access tokens.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC7009" format="default"/>: Token Revocation
          </t>
          <ul spacing="normal">
            <li>The Token Revocation extension defines a mechanism for clients to indicate to the authorization server that an access token is no longer needed.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC9126" format="default"/>: Pushed Authorization Requests
          </t>
          <ul spacing="normal">
            <li>The Pushed Authorization Requests extension describes a technique of initiating an OAuth flow from the back channel, providing better security and more flexibility for building complex authorization requests.</li>
          </ul>
        </li>
        <li>
          <t><xref target="I-D.ietf-oauth-rar" format="default"/>: Rich Authorization Requests
          </t>
          <ul spacing="normal">
            <li>Rich Authorization Requests specifies a new parameter <tt>authorization_details</tt> that is used to carry fine-grained authorization data in the OAuth authorization request.</li>
          </ul>
        </li>
      </ul>
    </section>
    <section anchor="acknowledgements" numbered="true" toc="default">
      <name>Acknowledgements</name>
      <t>TBD</t>
    </section>
    <section anchor="document-history" numbered="true" toc="default">
      <name>Document History</name>
      <t>[[ To be removed from the final specification ]]</t>
      <t>-05</t>
      <ul spacing="normal">
        <li>Added a section about the removal of the implicit flow</li>
        <li>Moved many normative requirements from security considerations into the appropriate inline sections</li>
        <li>Reorganized and consolidated TLS language</li>
        <li>Require TLS on redirect URIs except for localhost/custom URL scheme</li>
        <li>Updated refresh token guidance to match security BCP</li>
      </ul>
      <t>-04</t>
      <ul spacing="normal">
        <li>Added explicit mention of not sending access tokens in URI query strings</li>
        <li>Clarifications on definition of client types</li>
        <li>Consolidated text around loopback vs localhost</li>
        <li>Editorial clarifications throughout the document</li>
      </ul>
      <t>-03</t>
      <ul spacing="normal">
        <li>refactoring to collect all the grant types under the same top-level header in section 4</li>
        <li>Better split normative and security consideration text into the appropriate places, both moving text that was really security considerations out of the main part of the document, as well as pulling normative requirements from the security considerations sections into the appropriate part of the main document</li>
        <li>Incorporated many of the published errata on RFC6749</li>
        <li>Updated references to various RFCs</li>
        <li>Editorial clarifications throughout the document</li>
      </ul>
      <t>-02</t>
      <t>-01</t>
      <t>-00</t>
      <ul spacing="normal">
        <li>initial revision</li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIACybJmIAA+y963YbyZUu+D+eIg+17CJsACKpu9zq09StSnbpYpHqOraX
j5gAkmRaABLOBETRKvUbnHeYZ5m15r1mXyN2RGaCVLnsnp7VXHaJBDLjumPH
vn57NBq5dbmeFw+z4/Mie324WZ9nB+P9DH+p6vJv+bqsltnzOl8UF1X9wc2q
6RJ+f5jN6vx0PSqL9emoyuHh0ceD0f5o745z5ap+mK3rTbM+2Nt7sHfgLs4e
Sss/QBPl8iz7tq42K/fh4mH2Yrku6mWxHj3F9tw0Xz/MmvXM5XWRP8yOiumm
LteXzq3Khy7L1tX0YXZZNPBrU9Xrujht/N+Xi/Cny2n4+MooK5fw6dNx9l1e
z9bwSZZV9Vm+lLk9zL4r5vP/5//QFzy1p+X0g3m6WOTlHCYMn47P8dN/O8NP
xtNqEdo/HGdvYMzTD6Vp6DCvYfHs59JWjl/824q/kIbSYb3+sM7pY1iBh9n5
er1qHt68SW/GL8oIjsfZ99VsVtTNupCR8yiOK/xo2fpWxrLmr/9tHr4ew4Z0
jAhWlrp0y6pewGcfC1zgt8+fHOzvP9Bf7+/fl19v3T3QT289uH9Xfr394LZ+
eufg1m359e7+wR399Z5/4O69O3v+2fv66739O/rAvYNbe+HX/fDr7fCrtnvv
zgP99f7+PX3g/sGdg/Crtnv/9m0a74vR07Eh8UbIcbSuVuW0wSceP3mzz+0C
dfJB2nlbwCotiuWM1q3JTquaKbnI3jVFVp1mx3W+bFZAwdn3+WVRezrPdo+/
PxrsUGuBhPGHtvgP4+zovDg9LWr76Vsg7Wr+N/vRG3gwL5fr0eFyVhf0DQwG
xnawt38H/nx3dHj05MWLeNhPqlkxy54AiefTNQ1qnY1G2b3RpFxnh4uiLqf5
Mjta5zCxGh6Ex2lqL5anTA9A63Scp+f58qwYZoevjl5k/+vW+HbXhJg2d3y7
r6iBfO47aKCxBsa2WRc7Zgb7QErw5w+3nozfPnsyOl8v5rf39kf7Dx482D84
oG3V7z4t5iNgQff39w9gN12p4/R0e/fgrqe6+56E7wHX8jQTPr3zYD/8qjRz
7+6tu/7Xu56Sbu97+rp7oOfh/r29O+HXe/Lrg727+sADGmeL6uq81k8ndT6b
F5fyxV8u1qNiOcVtGzVrXJ32y+vqQ7GEHVzOgO92fD+pq4umqEeTvIFW8tWq
6XhotqpWsIBZ9npVLF88jciGPwJqWC6L6Rr+BSrfH+/xI3l9VqwD86rg2fIp
cpebzaqYNvLBaMovw791Mdp/vzfGXTV7/qr6WCwmQJL3h0jBtzvISZjgKyT8
D+WiqvP4i9+Os8e8ePHnL8fZb6sl3SDm08fjDIj7ZTEryrpKvnsyzl7CycU+
ClqTl4dv4oP0ejkvl/D6Zg5PFbMyT27TN3UFF1kFvPcQT8wMbsr6MhwsPFP6
AhzIw+m0aBpg0/6utC2/LZpqU8MTXWcszP27zelp/CFciEfT83k+PV/HX8BN
9iqf5TCFVitH5WIBDC3+HHjN26oplrA/Z61vXuYz+Cr+GC6qw2nRWtS3cL8W
83W1HB1OZmVrPx5Xl8L2mCYOV3U5J3I46KS1i4uLcZWvp+NNc9OzlJtPq4vl
vMpnI/8RbuGrF0fH9/f2RndvxRuJn2dHQKkl8KU3m8kcOBXtID882h9mL149
f/325eHxi9evsqNnT969fXH8B8uunhZTIl0a6X7/Hv0AM9zUdWuPnlazpkoW
8BnsUHGxTj+Ge+BNUc+XRd1a7zfV/EP84dE4+3azWuftlvPJZNO0lhRWdNrU
0/GybNbjs+rjzVVYjuZm4A3jl0Cs+VnRJEci5hL6EHKKLYSrp3nzTzrN6Vr8
Nr80W/nbDRzqTnpT1jZLWdvMs7aFzDiwN2ilusib1fsaDnKdLNcPh0dv4Cou
8jXe+HDkj+CahPUaZe+WH+Fs4ohmcPjhTWi9yYCYs+dVfYEUvdN5HqbYWINt
NdTUmDofg4Rnv7ppmn/vm38Pzb/X5t/TsN7TsFJGfbB3sIcTe3L0ZnSQShfA
vZbrIOoATZbTy+z74mMxzw66B42H+OIWDfL47U1o9aDjaGX7d+h03XVuBPJK
PgF2ChKMc7FGk0c8+FQ1mqxY5pM5LG2erc/LejYC4RoUDrgJ/WkH1ltN1iBP
ZfNyUeLC554n59kKuDksEnxaCy8eZkW5PoeBwQmdFOf5/BRlvtx/D/sOhzSb
XIJ8DWuPw12jVgRSEHRbV7ADQILA62EWJbWxvihAgIc20zZw3/G1aG6wwR9L
HEZFneTzeXWB7cP7zswx656jzA0+K4GwoJuM5zDOQEUsG4fkXZ7qe3Wxgjuk
YAqsJk01L9bw19os/V58/TmvTMKpbKZ1OYGlg35BAMpQ9h/zNi7KGZxv527g
tVdXsw2tRfb5Rmn+/OLcC14XWMNZKRLkdF4CpY1wGXCJoHP4Uwe8AHEJ7g18
h59zdfHXDWxCQwtJkx/VuClltKnZbnujB7hKuKrSFS626Q2W/AIIgfqSJzaN
bESykd80bgp8AN/M5w0sNUyrqkEfw41BkiiBg/XsXRPI0XUMvBl2EU4DYj7s
E26x6ZjG62g9sa+M+pKNx+dy3NsGTmwNywzDgoOz4K2nk8HDAUnxV/RKz2Br
HMxfN8BaZji7Zo0iox0innFZlWhwKBidbtaoR20aIO/1JWhhQN2XeArzpgGa
QkrC16fzIq9H6+LTekyjOaLl7+h8syI1zL8eU8sQSXQFRx7b5G0U7nVR5B/g
omlwDZdw1pG1ARFrO814+yKc4UkDqbaGwYMInluW0rcUbfqDrYV5fkSSireX
N7LarGFv6ArLJ+Uchw3NK4lks03NRwKW1TI0ZXLNZtLAzVOR4Oi75Im9Tbqr
TtHCUBewL2ENmPorYoWbZV3M6dLC1oRDNX59gcc067C6K2J92BuTnt8e7mFR
5CyF5tnHDQo8Oj2YSfFpVTVIIrjAy0K7yhb5ZXaefzRbiA2UC7Mp8AYo7ivk
YLAtYcQ62u6pg/K6rNYwso+gatmFBAYKWhec3A0cFnOesF/dHnqLeH94b26f
LnGR8IAtQEvIZkCxFbAZInHUsoWblLVfIh7kE5hHXS1KNjcAEfQxD9xY0Cb8
5P1LSvHFcjaCNScC9IcEbx0YJjSNj8B1bK/BCXaWk1ZhBsW3QT6b1Xxq4EXo
p2wa4L34irJ1vQijG21OVhKH/TYFzIGZKx0UuHB0HMzP4WqvFjQC/dyfDUdb
NkbmSsOx10AWrgG/FZ7oYWlwePM50i/Nr/MmPq8avwDmAeb948yhQaOAsw7j
6r8IIpaH9MDDCevrEs4u4+fr29xiGen+IDLmpkm8sOF9/AP6d3mm13nGZ13f
zdfAJCYb4vebKWwc/DsFmVaY/WmBCuhYlVNHXTF7pS0l5soDo93tlFFg1fz9
6AUfl26a7NlxmOlG6CeeZ1gq/Mp1cMsr9se558Q/cmQBeOg87We78WgGeOiz
szqHwSDll7SaTlnNLo9zEPN0PKN+TKvzal01fPfBWaJm8KORw4sZt8Y3lgxz
MPTMQx/lxnGgaFTDHXL+qPoF1lFqwyRjEDkSFUWSS+FY8AcuSO/nul1k1Q8r
yENORux2u3Yah31eAiHJie8aElwG8+KM3hp5MTM6Drt2xwdjFPHhdoglUvgA
LpXybFmwKQUvDJrFd8fHb7Ldz5/FWPzly4Akm8JtmEsyh6pIZlxe0mahlUYu
MGAoS24COsDVhzfoRMAojsrllEUYoxUr9+kRg4NPRcaEsi+MyQEjfj1dV6jY
oLI5BBkNLi44RagCbFas+cEGhHZxlq/IrpkdrlaNtIeWbWhvKJzX612P8aZ9
sqlJZHkjFy2+s93YTU3h4Y/7fSz2w8doP/TdX2lkxMWP9LPe1QH1HUQ5WIxj
OuXvUIv2K3ZnD1cMVweoo4qXiPb8OtNiGcMFu/MxLMqHhKrgAgDdhhRjJt7S
WL1Ra/LXYVOgk2yzINaHC1YXCyAqEF9BfN7U9Hq+ZlmEBnxabZbELyfYKo2v
QCq4euhAeu7Gjewt3IGN3rCz4rRcYm/ANOh2RHl8J+ZfOw/dQ7idD5HDrZEm
pvkKlWCcAXG1RCLpED3HpIj/cN6tlpaoTq9AOkIRGugX/q6L06IWqRv3i41X
ymFFzsPDXC3oboFHJhMQj0raTHhj5+3rnbGdCjMWmctx0LGQy+vl2ikzm9ni
JFfEvMkIRbvVrCqylovqlbwf5AS+wi1HanhVjtuXCzENkpH5+RL7h7nhLXP4
5oW+d+USHNES8P0SdtHKc4uc5MltA69UpReKpc47xBk6QaghRgydmWa2LupF
piMBwVSMbigKo1B9yTwUJdjpZp7X9GGBh0LOk7qZStisKTCNYnw2HlITF+eF
cNwimlnxCegfjx/8rjcSXNPI7T/AiSBzB/FqthEVJLPjJbHTdSG16QZvptaO
qkImokd+ip4xkIjwkdMN6J7eemm0/h7xkCU06iJa0Gtu/iFt/jHxHm8cyqxx
qFPEEqK21OhKvE4uK2Q7OH8S7IgW0tt0CKfpAvV9r/WDSg3LQvoSsjBHLIyZ
zswaK4CwqxWb2mBfaMTQi9fUdNhe0W1UQ1/OOufRCN11fedQuZvwDdygCKRT
b7oEPdJ3VY8ohAWO3WGG53nes4rYA4kuCXkwA6Eb2S3QLQNUnnbYCJ9Wv0/2
fF5dOPcf/ocNz78eyc+vs+0//kF9nt//Ub//cTTa3R+Mkhv1LR//bPSv+KDX
YvH59P0r+ufvXxNdd77/L6Pdg8EoHcC3JC/DeNP2v7b/K+f/c7cH63mrfz6w
nvEXvv8nzDSut55souocP6zn7QENTRUuFoZkvP8V1/NO/3yIPi2B/jT63L6e
d7F/OpF8S/ru+tfz7zif5qh/fpjdOC3PRqpejE6BGbCX5NHOofguYlax84XZ
vno2jFODXi7n8w05EdiQ/vlzq/0vX7ytnVii67tBgtRIjBj0mvlmJhLvaaWO
BNABMU7A7QtPbllQElcL2WPaKj0pX7hg8fPSDOnYEzTcwW3i9dHEPspNUSO7
aKKA22o5IElgRQInyHmXZIaT11Hkat2U9Hq4Mshwh+INOthruBncQTrPaVF+
LJq2VYOE56DpZuy27LO+dFp/ogZZICo+rchoNhORE82aolx2dI9m8aLxV3K5
pGud5xipNJW6I9DSobe6aaN3g8Ij0MsKRPhG/CAZiC7nFQ7T2wh4AXjdyKLG
exs3mIsgwiMXm3zcRNelDDtzq48CEyNYv2emt3UaVbJbHesAg7i9RTSJzCpN
JEpC8+prFX97dw9s/y1P+emhWlCSKcI47vQsRrci1D6X0TlYzpKhTy5bqxF3
f3fcrfr4SbZeSmYW+le5jSYgQu/Ka5BCZShXmvU0HszOY+l6+FC2C0TMLjN4
l1hbBuITDQ3EmAGeY2gbjURILt2b3OIahgnE7Nkxe46aGWEMlzJq4uAdX9Mk
vM7fIYo4d9g5cdbGr8OEXCcTynaDaRW1wQ6dehAd+c4NsbQi2k7MjtRwsT6v
i8JZVoZO/WhAuB5DtCjAAM6VlMg4JV1bmyG+3WQXxXwu2yS8jhURtyjQkVI2
C6InGgTxxJl3J9Mgxrjq6bJjCGTHquPweNHXxQJYGZCDXX5aqv7FsV6Ctpe6
pT2Gq7GHviNft8aLdBwDdll1kvcuXpuw9Y6M4flZYS45YPybWkfBwkUa54DW
tFiNDmb/1sKxWVD3Mad7BfeMg0p7XqK9azPEx8Up+pZ5bD2K+ZbRuS6q69ez
U0bv0n0gNx7okXoJdnt/QLMmd44YMy7KppDQVXxhEZPFN43nktnjYpoLl0rl
o2o5v0wG2LMFalbpZAv2WKGrZ8mWAQwlMJ4GHtnQ3+pKehX0iuahZcH0TxbQ
D8vqYl7Mzryf0hy8JHKDWLNTbxQp26NTkGGrVowHHWRyJXCsTrVZrhu5RjqI
R0wWeGBPiwu0VIH4gezHu4onxRIYw7oZ+u5p5YJT3a5tvAiB9SBJrDHwewE3
uHEQRIJKKugakqw2a/LrICGXSD11tTk776aicFBZjKnWvG/zS0cOcm2jYiJr
hiLqdx8SYX5vheGSsubcW8t/mSAsgaRsLrKTZtpYt+fQzFxcTb0SGrzo0q6A
xC7iZb1QQ/VUHB/2WzfBgH2K5CBBRMIIYCcaUiVMy4Y47Xwcm0pnTAJzfGmZ
13V1gceDrGu7sdnIRyPkqLOAsFs7darSrIAO4dUViBNMKw37n3QV2k5MPqPo
0XqhZsz4giQL9EoHz8xnVoJOWBhnVad0ExjXxO8ReXJQ6l+RVQ/DFGLGNHTt
b4RTDYEc5+W0FCZU9tsuafUdcgX2wYECixbjHGfZpf8YQy6d5trSmDoiRKed
MU14o2+iMOyW42I8JJ6DUmAQ3KRNCaxnmQ2NzIft5Ya9XdccnHO1HkEU7NqE
36U0a7slXxdAd8iAq1UO6xu3MhaJ3I5MdhIFViLY05IC0/gIATnUJbD1Dmqw
Hq+KLaKcfcB249ghJofY6UjXTYEhhO+W8/JDYkNNJDniBWSgWM6MC5euMPZG
d1mHlRfonYQ3jongsJZYY4y5tklnu3kntbyOxLbVbf60Vq7IynRtA1f02pZm
xA7rfzqth302xN7R/DK+CK49mp9pUtveM1vz6yuaEZtu16LYrfnx7xjNVzTD
Ft5ue+SP4Q9uJrU2X8/Q/GMwiYbRWCNph332/ytrcxfW5oVczjyWZ3C71tno
ZxrNV9DNtmbS17Y0A0t8Lzqa8Zky3/yTGMX9n8woOpnoL7PXKmx0cotr2cjb
d60ayqVNubmfkbA2i0atRvN+C3nXTf6TLd4/v72x24plrNH/qeZGHy+hMiVF
YUcXeds8u8g/kFzWH5zQFf+sU7vSAHn7H2eARNPqEZsGb4lp8PYA5TrM0AHt
spy3VTlRIbywak3hqPZ2xDDyKzMSVZsP5arhAHmUQe8NfkMNeKMAPSQrumT5
uH9dxTwbAtWibkuv+iS5ArKAIBRuasn7Izsnc2IZM3JiaP9e39Foa2PtnYwI
x9MWK+b4jBJxrOfDxtngONFNokSK43jdkwYkFUBitUB69HqNNSxfropA7lsi
LVStgcW4/zOe0cTO2X0624u8Cw8yRYcjOpQHoyYHbFK+oVLEk7B+LjLGGeVe
rVMoni9IwetcYEdhPdDpCX/9vilQ4TzhEIxVXX5Ee8mH4tLrHxi4CV/99ofj
gRMHIH2V93nbgmqfrDWp3WXjNJ1BOEtXXPBmOZN4I4nzTnXZSvNwWq+uMESn
2jTI/uoaTZSzHtOa0zBwXefUmrZ9ni5kuwRjBjeEqibbN1tJW9lu9JyjMMm2
WjnADSm9LTEO//PTDoHn4Zy0BrttQTrNC2P2Z5irG5TpOMamx7LUiowPSSoY
FudSHtetj7dmEJmhnOrR19C7I8MfqKGGQTnqezPFANBx9pS8prJh222w0RxU
mxYNfpXXTUGRjN0R7UMfuk8U41MO3G+PXr/KfigmIpKB1nFaztmIbvdBI4kR
okCMHNG++GU0SQR46lgZ1/SiJmQVDL2pQzxFXRbyAu0I094w/d4AMbHvRjYO
45XK3h6l9o1034MBY5g5cS6G5tCAgem8ZAjc+jbFA2cwJFgS2h63yJfkaWSj
Ui6tym4SKfGhozRRiV3nrJr8EtPVB+Ps9bLQ3ATKkdBGZEIgZwdPVqmSO6VO
4uZw7uRngan48gXtveLBITMNLA7ylkayHlZViS4InuchLZzeS2ZVZPfDEutZ
cXawPCclfpUaeLFwpIbE0Imn3l14jaxLaUQmrwuyySwhY57enf0H5CQ97PUj
GFaiXiy6+ikgkmxnWwMihbR8FmGpmZrijzbuT7RbtXyfGugZ+HkaGo3WK2gQ
iQ2VFgzjcLHUquf65WaNyWXH3x8lB5czAO7t3aG1OE4ZSfB4LH1Ukc+zGkpS
L678rES0GTSmpX6TJW+pRu5G6Sc+72vg80cotJINsXzdNuuq6k+V4lWyQ5M0
bdcdpYvp+z6zsaTjnXedUr5KE38ButUiTw1F7LdcITy2bxpyYKFxUeZBDAkm
OoNnyUeJFJ8kHRNNNy0OihIOuQH8OsvBaIbhyGgCILeBqXkb0De8c56Xf1pf
rtYVTG8FBG2s8oNYpE3CbYOHy0rCeHtaajG5YOLTczqYq69iPS/kdUeDrpyz
i3M+/lEOePu8tZZsN3LmXyIlnpbqWo801DDsQfby3dExjuJDsVrHr2Cv6JQr
WfzGjKz8jNK/Zuw2Ffdmvqg6jfddDlNvlCaZJ5FCWHeCbU49pLiOF+fiw0/e
ciyUdPowZStpirBCG8qmztfJCZE01UnhzgrMmF2jmrkA/npa4m/Au842HGTG
It9sA/PgscYNTS7dZmkcUZKlymLck2qx2Cy9x1ap6/ONqf3CZ7Jg/n6UF9Dw
NIhxmgvNxJVHDbk0XRvdBmfUJUWDmI3Gz4RtOg+/NUrgt5ht3r59F+4iF0Rf
2hEfgkDKjqaXx1L8cqYOQUGAEFFBrvFsUs0oSRk+Pi9yujTKYj5rODapAE7Q
zODoroD3AEXB/VnU9Cuff0IQQco5K+pLUK1As2qKAgbtAQ9QucJrNAkgeo9e
moa/YGuX3vH4GTb++fOEsqzYGMbpWZpR9O7t92ZbcDonhM9xAvckcM7Cwcrg
scL7b15VK4qooFio05wsEOzThnZeNEPHF+7Lwz/ErWljY/dDkFWlnyFdcFNk
aKeiNOt5hnemH/h6hOtGknY+f/4fgkSHt98hbx+5VvVKv4DdxoV12DCeVKTW
/fEtSwB0R2NMY9VwyCecUHl03EG2MCFSrhRRwAYQeXLjPGal/hB7JDlhC0R6
WVM2ZzdjlvQPcdvFeYZmKuINm58BBazPF8g9MGWxYRCJrfLNGN36HA30+TOD
28FSkBNuhR+SCFgnAHdwEP0cs3iOwuRU6ZyDpGr0BX7fYfNme1XW1NBQtjT4
FVHVi19mvkOJmYpXQ212pYaytUzivz4WmSR+0su1eTlIx9YhKxpBJ/Ptj6v6
xkZNcZAVz2dGiramVP1wjhoY8xmSmxsfuRvPAUOc6TkZPP5KE7i1d5AhCtym
kUgl7zeX2zrLP+blPNfMM2nDjmxK8AclGobOyRrglwQkc2/V4OMulCdd3xuS
go3m8oLxAWIdmbMbQdpxSR7YrFgjliawYGRk2uN7aFHIjh/QFJoXSR6R8iiM
hTdhPDUJ9T2APzQRFCFGEiPtDO6Eyk3ducVzYtESJ+Q1AFy1akk2RLoMSagn
rBL8xaGYyLHYKquphfSsZOwfXN9OsqJMRZwowUA4r5lh4AYmKl9iwMdRpZwN
ERXQ7vOxrATrxESB++APZ1K4JIgvYWYolk7Pq6opRIvxGgdhuwiT3L/95cvD
xBkp/sSXsGmopw1NQKVRLBUYAPvZcCdwcXwgFnMep9airM30oykLqlKY3EKm
AckF+5Uqgg/2cXxPL0ErAZFYjG5vo0UPBmYrbZxS+gAK0wschSpp+GJRB2u0
xND1BE2acRx0jONlvoRztyBTUf8oKJeZ9DB+OxpJ4cNdzYL5bknNf9hlB7Cb
kvTXFmC9kmQ3JZ8QtEwUAeXewOFoClZm+foIdCZnGbFlGsqc1zAs9IMsbU4h
3IKudV2brHrhA4hvAn9LAB7tg88ktzyBuBA/Oi+S5zLD0UL/nC3JeiR+wKIZ
j5NAanToHqOGk1RBOGeowFPepmHI90a5W/gIMJtyaYaAiJdBnX/zuyfPhjFG
kXl6f5wFowZ24DBXNHQT2LvtIrSOM31BeDclXWY+qoAz+YzZP7Ph1zygaA7J
qJ5varxmFjwXHFNgQk7vhGjaudHWk+bi8QpUkVjKHNDf9FwMZZFcGRbMICPs
IzQD3SucP38w2hupoj0tlCjJdCC3jKrJ5ikOq/ZDZ3HjVcWsErjpk2r5EZdN
ZA72ZjD80Q5KqTtD/jd79Zp+f/vs9+9evH32FH8/+u7w++/9L06eOPru9bvv
n4bfwptPXr98+ezVU34ZPs2ij9wOCKE7LHDtvH6DkJSH3+94tVpBCWjxFW0A
2MgKdAZyPLhIFQfZ7//+v/ZvqzC9j2Y1+QPhk+EPNCoPxSkmXgmGEkHwvCKv
FRYBLrFyTcY2zdDKEDALT3LHFevBXQ43Zwu2Lj4GhWLTjF7lmxpBDhfZ7uHj
V88Hbim7gNRATA8BpUHkz5JzQkLZBs4FUMqI+BPuLGnVGgtIm7zzbllSnLU/
GS9CgNwuvDx4mH2LyjOw8aNLuC0/7TjqF+GtydD2BIQHZJYeqUEhpDAxpDEr
b0xgoiI2wIEKZ+5rahnRsmlGx3S5czMy6mE22az94QxuLiCEfL2GNUMqiRVk
/cRfVviBkbyRiBKlmZ7wrAH/gsVDY5O8zY/yc2i5xibwX2JK+CFhxuAvakFW
EiUD+aXmtDOegCjKO5J006LR2Fx0JIbtW6C5KQ0wtEvUaJByr9muNrRHDb1b
zgkQUR3vuNxoMmGgriIAxWBCOYjaRU3g1o26czdF48iFhdcjbnOJFkq6yLqk
EjSWsD5vBcQvPpsBbm7YiQjhAnuPsKAILAz4K9wGKM2jT9A2doVDjn1dBLLm
o8yDryCSXoGI3dZMAmNab6ueiWqD5Bys4uXyYzX/aKPpEdOhmKOEDprccpOK
ZVZXkwDnrhF9g/bDSYOgc4zmQLiGIQYYkwVYfz6ri4LareSEEkoRvH9ciNP7
KEbaZKvFFolT4YdINkUTy5O2KpD5RAm50xDigm+6nqxdZ8IH+mY9FrCWVnJl
tzUzGhCK6TVC4iGrJd2VaQPI0XkiI3rEo55AXWgcTWnk1aBmOVGJ7GU+tIEX
qOBEsFzpyNykMIqrz5HN2V8nvlxS3T3+nX6aNw2OAtNsef/6IzuKGi8GE4ni
NTDtzyk2FsrTy2IOm0sLbvWG3HuHO4mapABGz+SDYb1qnG/b5lTCK0hUQ6sl
vu1tpdoDCzeiS8lETRZvuWQlj6AZRfqKxat2v8Y4kFoTaQxySQUrRKRBWHGt
b9VxNEIeFgYGeetQj/BQhrVixWZenYGiuCAD/pojfxigI8cLHw4sJgXN+RrF
43fto+qzE3MyQKMniazoc3ZHEqgsm7FENWR7nvFCUzwAsUrmXV1WAFVu+Jtj
Sn70twHvsFVuooxJSyZN5PQp695MJQabml9excOjJKY+rgrHaVPrQge2BN+o
jEDYRUa8IAyeJ3bFyBmWmtQlUWZVl6SiztlKcV6uggZ3eCTmDhY9BDEncvTI
zuzgGHwHxewaY8B7aVn9lP5NP7Z/1mejnhXTLw0KwrsQXpZXTCOH6Puydgj7
Jikc6/wDZU1PYb9IlSWHBtLhGg1ZH9CZQPfcJJgSyzoKn4NuOpMtRDFRAx8t
wZyAvFG3l1WfFhwI0SIDR+EoM+BwZPQweE8CVi1MyF/mPhSJdDXMAqIsq9PN
Uuy1UVpeO4zNghq4APSjQWnl7CRTFY1ghAjomLZwwdjEOWPJErP0sW4twEh/
BJmKJCrRmGu2SCUUMRw9a1ievyIwXqGoI5moRIP2ip2uLNnWmyVpWtTuqGGn
GaoLF9VmPiOvSTDM5lnHIRlnh9FcoMVGgr0MHCwjbLEwT1rb9bkpDDRIpxHe
KUZdlzUGAqMBiFZrtaIB9I6/fcjGKSjarFjNq0sJr5PtB1ngjFuvCE8Mdckp
3isEINfTWXQMu23EfuM9CmVeM8JfFFEeRCGMvSKQPuzbjJr4w2GWfCrZ/O1N
w0VaSkxZjm+5LMh+KWixQUqVtwWM7rvjl9+TW8BlkQ9vyStAB9p4DdReQqSQ
4H50Zq51xJImDn0emsvU39yZFYqsUcBTZQi4TElaKKPRUb6rxHso0HXZFTSn
qa47EVxlx470fi+4h5ZGojgr5+OQFSJgJvVI1ASRp/PwoHeSKomIMmb9RT7C
l2RUg/49sVH1uiceaIjDqpaz1g1U5E05v7QLh5HF2AThGX4s6cNBNzKPjzln
Bm0g0JlAkDmZJFCLL0DXAaoe6LWDJckXpIaHuypeCesq4XjHPsQE3GL0u30s
Ova2/UX3pgK7oIvZ7BGSosuuWvv+lXdZa+3Novct7wuO/4VDsihm1H2+5sCY
zoh324O3fvHqw8t22hJ9XXyiECw0b2eveZdYnD/H+HLrmECO0YrA9/pEHERC
glSU9DklRFCBVtKoudWa7NletJB4DHaZHiJqMuhk5WKzGLL3q2MJQ0gSHTAC
B50HBwc7A80BjbE0L73OzdMn6/YKJECKe5debZ/QwqI8O19TfG7cNS9bVAaA
ToCJA0bwQqfYlbE2YEyRXiUI+btftgQGGcTltutIhRZncoERMSXbLEuMau7L
YLZqi7OaneierZhQy/1NXyWbOnLHwSu/kSRtw7TbVE+HzgpseM5cPkcRLehg
CeVvG4HMVTKntwQXt9+W9WnKvxE/nxen6yw4fGkNUjtXPJLmnASN/GNVzhS8
lU7zikmEfW1Im7ZX6G5bhonI597kT7QF7zgB2bDTXwuBXCXs41qzdO513Eq9
xBTSdDrfFJJeVNbOCtdkBFUfv9LugvGByfQ20g0e0QZ3uv69VOntDtkzdSh/
vtFpjog2zTwRPNG7FLOTBODueNuHPrczcBIN9O7ti6TcADHcXrG+LmxoCN1X
ji8sBZ4RIyQXnpBc+cjS55XMlqTSu/8dvfooj4AeFxT0rrWJclu8tH5VNgeG
/SuP6LBwIHvAe0AGb41MPqaLY5KrOVyp9HkewOwml9bh4u3/t8eaaOg3lho8
/IMxQ7kdw3pvfhpdXFyMkG2NNvVcqijuSPQtsuxdtMgdrihR41P2eJABh6gv
nY/1EI0mGcmt8W2PdK/zqZGMlwo4gXFhyzNnwsOo4eA84KS1ZCbK7Px03Gmd
k38sRJ94lBaz3G9N9Fjf+abG1dZszrZeFmoXkNIoLtq03Rg3ZpWjJUJHNBB3
+l/w6TgZyoDT5Wtv7sxjiqDv0By+/Abl+JyAccgH7Egdx68v8sZca79JIpSQ
JWtIoj8UokU7wgLDiBJqUvOfyCxpQhppWhjYhiOyi917+jgWcC5xWhb8UBZU
gYKjpWzEniBZcahlU5ccFynKRhxM2Q2F4YRhSyKNtcAvRCP5/Nn0AgegHHEv
QMm0qEoF8K3jb2Sj2HGPvYCQWy3Q10lB/zS6lkyGxYe6pxNvrWbVEGZ8Wc0C
Oni2ezI+GeiM6DD9hUSqMVX+0lPktUNQr0sM5MALpWwIxCk4G4aOHOEUdF/M
VxpVrEoxGvRED2EjGWWuzMpmhZxIDC8XFUpwDbDOvFx4ma1n07JdfguJFQ0N
PlHPLXIMwyDe2vJwlKe+m4y6gX0/AcIbyxNj+OZkSKIKi0MwzhP9Dp47gWVA
kWIF1wkvjlhRuNIWRc+tKaPRcWkCWboNqfsFBsKvVqi4sRHON1Mi4retSVbg
UHOOJwfdyMwbDyUKZd7D1QQWxqIdRxUTFZxyYUF/VcF9JLosDjGvJ+WaIPTI
EcGOpaAuJ8wz293Bwov+nFT1zmDsXscfMQlwQgkM57ScK7uUzI0YH4yM0FEY
P2ZngCyzewP7eh8afo+h1jTfQSwwRuHOVKr3xGe8h7FTCOY5ZafBHo30ATfd
wM4tfKLZqTpyYNC+MslHWKEgmxseuiJxQJPAf/B1p5AfsGRvros0rGaYcSSB
1LlyOod4kfxVxcmryQa0Iks+f8YnRmY/yM2Od9dLRVB/a0cBR/00M+Dq1jEV
ymiESyByryHdOX9txmvT4/XQhQ8Jkyc+MBV4ZcfWyfDfsHUd33py9PY5cENc
vCY5BGqDf1JXTTM6Qke0YrM/59j+bBdfH8jiN1SwivQIZJSgkA+5eRJb5arW
27SKKCDaHWG5GDYDAnt5hsHHxTabtASYZJ5ZZbaK2S4egSCB3R7vj++PfRgG
1tOOxXjgcy03i+N8ldkVQrQ4rVmaPcEz+R5uiDmIbWdwkMIBgmPmyFFNbgBc
omAwSBRTiraX0EcuCBZXqEU4ELgwNBJdTtbJsgINx3bpg46T7sbZ67UHagD+
P0J7Np0fetAbPeq69AYYzxoMS9BL13vqJlotJpHsVdokmxMuezp/3C+3e2Pa
1KfvhdkvihyXvxl4CABDwS/LT6N3q0DDcUVKJuEFPLNZKZ1SF8AV4dP3m9Vg
MPRyBA2OosRE/vcU6rjeShNQ4jopgIyBjaqy+E7BeX5C+Y4C62cBA5VuZav4
UD5h5zGHy8pJUI1oN4FSaeChQuX2sblWKLBBNcHRYRn2rAWWZvbSBchGymzp
Oxe6aCL9ks0sTB7YRF23RG7vDIjmZhPGaN2w6CMMGmdjU9A8dh9e+axHTUhY
aWRbqrDs3bAH2q3IcngUZpT2PF0nPB2pt4CbsB9rWYOTKrVkbAOJdCZS3C/c
FAeKC6aUr/BSalOgS6d3Q08poMLkqcwYAQCFX0LoHDqPqIIxpsBlNHQ1DnXp
DX6QZQrIr6kRTI4Lwa9EFjFctsoGrkt/bVPAmoLted52WLom3r4ixZtjpT0h
8HDnggAXLh2T5ayFJp36mbx9SrdlqPwh2A/DiAPqI77sGQeTYI0HwIOnhsIv
0GWAn2yNe0jgkhxAkprDkyFelPO5WvpZcMD0jnBI2pKXz+60BewYD6UlYw4y
V3o9qEkDvVWDw5UGuVmf60aTxOa0IE4j+h5Ph1KkMPq11uxD4kuXGZbRntHM
MXSGco8v5wVXBGdcbbZdF3OByhGXlc9uPCtiedeYDG0ckK1Byovu08f5Kyf1
SWHel1gWCsPJp+jiXM03Z6MSBe98BuLvGhN5moEOwOxsyJFR+rCFDks/NHFr
tDYIWYJTQx9bL7qPT04lfE0+l+9YsXo90G6LCGTYZEvEVW0K0hMHSuGhDLmu
EsHjCn22xNuIiSv+i7zpdjVFW2ccStJ1Tl5HNiCKd0rx5JRHvmBtsYexb8n7
JWLL+zbfRBAMNMCwF+kJLzaVHuBEo9Eag41uRgoMAY/gn5j4XYbkSIq3nqOG
ZOtsy8I13sIVRT6P6Qowa80pbcHvXtVR8MGw13vAFiHyZ9E5IJbei5mEWaBq
B+5MA9WgSUVZGIp38qYFVFrlZY1iHfsHTaKAB6ZoLhcLBA+ZZrv8/gjfI0vO
wKMNYIxn95Z4IG5MPDV4E7gsOzKS99Di+79crDFOngVsCmanwEjTv+msZ/8V
5bnH5IWFkS20OEtsPtY68105GFAzVD8Le++0d8aQqCYUw4qnG//NlpvFhG9b
1cYksLOHUNmfBSef3LZXX/DFAkNTorjaFG2lFUCFHjoKvlWT0UQJpMs9l/gr
7B2Fca/Fcl42fej46OJBkgd69UF8WXbI44stwTLzZnN6iihoLGFwjH/3LDgM
LG9oK6LsM/HyRauGqqgFBFtXTrWQWTEvP0pmXlI7OTJr6Y6hw8WFCOVt3V5l
5g1RTHkPQTB1cYBlHMSnfoIpZhCJdktQB1FEk5w+BOX4jkvxbalB4I1syk1d
R3RUOkJv5N7UZJkDclFf42XsykmMWtoZlWSPAuU61wBvaxLrjdCoW8gRTXPM
9YLuBZQnbcTAG6lqsOZwDZ1CXDGmf4miwEXPY6Ni8NVpKJKl8J2MeyFjCiGd
LOlhlIoq1JTRigk5jr0Hgr4fitPjkUzDm4ihetpQJk/N6DZ4jHgy1Nn4CTU4
IuMt58VZV3Uqr0CRUOWLQOSUew+HQRm9ZzO0VlziySOVYfH2ZiHmcbJBU13I
uUruJgo6BSroLNBCc5peTudY6UtzYtVX7POougULySoNrrTIY+zFlCMKLQji
ieBkBLMcECYy7MKXZfCHmR8dmqqcnAlKSqiG8Ok17KyZl8Ttx3kDd056cbKN
PI9qdGnKEV6gaZQ27lJ/ZMKWuAZxa1pD5pU+0BMDu6UAEmhEdsEXGoBrtANy
8FMkhWAYqrCMzqHfGA4iYR6dgxPjge9U4kq1PV/TfFvgA9trBILjWttwmpQP
Mend7F8sQmWK3EVkEQcAZ7t0mkjMBqIGLjipi/wDSzXoRZqDTiY8tiGZd/DQ
ET5n5JZ9yKPNpn/745P827dH+a3ney//Vt16u1gtpk8f579fvvh0dOvts3eL
327+OP/jh8m7+a0OX1i+3nZNAJ3qIkX+W9c6nk3QsYi1jgjCJuyZD2h1wYH9
0Jcofl/OpM5upnmvW+i1I86Towm4/mJLrlFtIHgXJpcmwCQER30JRZMFgXT7
qPz2voic21+9OKCmmmVBok+SdonGg3PTQJV6Dyx5qdC86Y0bjP6VcpmWeC4e
SF8UWY+PeJLpzc530FJPq2GGPqWLHc3PRSY1bNbrYAGI5p9GZ6VhhsGS8aId
Qm9kA73gWqU5MPlI4b9H+XLE3zJ0EUaX0wYQw6TxmGl8zRF19oi+eQ3zucn9
48rd3B/v0xffVc36obJi44SlL8VsNsJMnofZlayXu6JchfeYavBIpvme+v1l
9Nej9bd/+3jrt68/PN/7X9/e+f2ng+P57354cUgt/NIfvkfN3cfns7cf/rq+
9cuI/h/de/6X09XeHx/X+79bP307WZ7++2zx4sI5RYhGXXeLPKvZmRQa69XQ
dV9QkPi9GEyLLE5qLGFilnJEonW5SU0mB4peCFoX3ujkVEntDi9ZgbtCVPfA
TGjx25QcWZqo3nJovK22VwVXJVYKctIB68b8u0paZxkArpZFTrhfUTnWNpfc
jTggAjEhyiI5qLvOMiIgYMhqf1Ut1X571Xmy/7UU+iwo9CnQDA7c7fyJ89Sk
WoNud/fO/XmXgL4e3rwJp2Jcghg4ruqzm1jr6mxJ632TERzCUW59MP50vl7M
b8TwZiQwjniKgx29PS6HzlQ0AhHjdEPZBxrIsI3wfeF0BgpV3FuJSld3m/J/
BkiXwUgc47ulicIVCbQzkcTnARef2IQqQhV2tFm2QnnhiEQKojxptYpsS933
JBebrYRE8I2lHn8ayEbblIqY8rEsLkhn0uBFW+wdFCuMoKaMdx/2rjTReW71
ape7ruGImK5D5MMV3a7geGlNSs6kjWPePN8ZRcH5IUaLzQKuVaOhr3gops0Y
q7CxRI+p++OIBHq79eCCqdLm9EboKnE4NO4VzgHsjHx27jCk2KB6Lo/pqHih
3nbFDMTj7XZ/EqjypqahBm+u8VEk/onYRGPWAdbSeTkvWmXjBHLuFR4JSr2O
GzYJzZ5sJhXe90oiY/eso84xg/cpHw6kHgJhc82dHnfUXg0OwzYZ+3UsA1Rq
jGNlJ+tCdPvWSrZbFCBHdwpn0Bnbm9fovSusIzXrgrIdXEB66LYeGM20C+/O
bcMDxgTtEvGLRdWeVtUHAqmNGJPbik9Iy3wFOAUvHw9vXkU4ia5nh7bhVCQQ
0G7CEfmh6QjO2QeaeGQXAonwrkRppPLooD351AsBUQs+yF2DvKYGny0Rz9k1
Ip7dVRHP2XUint3VEc/Z1ohnqtNxRchz1hnyfH1TQAqYePLts+MTxUY02DHe
mthHKajfGIESicq0fYK6wonKyZLceOVAQdBBCyre69PqbEnIuq0wM1goLLsp
JdQZqYx94OERl+SeJEJFp2JmjbfTAjp5E1QmciFrdnoulh7daJMpzR66S7KX
uErUQ3NrqmG2VS3ZR9Hk4fpsjCZoapfaS4VRNVtJ75xHIyGlwcfTehiuUWKK
1CzHsm2Dnxww54+lWVtwoMXpeySLljbLymou91HIY0dLfBo2qS6LuHo4SuAg
/2/Xiv9uvimg2j+FX2Ypv3Rfzy8DnvMZBQyKYUgy4609mqdCYTdpy1cxWtfN
aaUiK+iExawNDMn58WgcvgZHvob99WfhyC4ywlyDhVqfTmTCjtkZMXTNUrNg
6xqB+nMxOveP40HZP56DRu6HVpREoqP2BU082RJrEEVWWtW/2F7YOwXycd5c
2nKt2K1O44sTxTbLPJJV2x2uAamsZTyjpBRVkDEg0sM5xjVgW1VeOBR/XamK
4NPvZMODATmUWEqjCGYzcouRehfEEUasRl1ZlVuWW9KbSpP2rQGURrMl6Lri
RH7MGKcIXgMPRToXgUiRA5zzGfBcwm9lE9y1QIazskE3c2yHrgghifRGtVVF
pU3W55tGHawKbybR/NLbhC8fRH1aV3OK8rSbgOuorStqBqzROoSu0ACsObyh
6jV0WJZoqz7NJYOMIMQ+Vh88FPC6rLUxVhyjnml1PMa6KpHWGuN9hYzK6tFY
xavObXJOGycVoWEneB1rwY5EbAwDIxkNDdtoU6YEIWgAOuHzXxB6d20b0pIn
VFHQLNn29UKwBZ9OwNKGcivlG3IW4+RWrayYxGMmssmE4pS9syeAkRgTefBe
XP+uyuJ7yruVfRaXdynCMrw7fj66b4MSXWD/BP641X00FCZvYrIofzz24EXF
Nq/FCFuVEfpczuhKImFHR6ZIq1oiLAhCvoqHTjCPfVU8us+fraQ2ove5m+AJ
6HBXGTwA6czYP8wCETKPvxNMKHQU1w0yf5cF0gOMFQJkCURhF5MKS5wMs5PI
N3HCDmLNADcEf0L9REOdIdktfDenjCVsKdInZVZ1C74wnQU27jyY76nI0dbW
Y43VE5AdL8ZfcdO2/fIdN637+ykscoqt02O+tn5XrV7AaRA/2Qf90xxc1/Bc
r5Y/PH2++P0Cfj/47Q8/i1usTYK/xP88OlrNP81fPy7++Pvf/2Hyh6O7P3w6
mqhLzCZwPSJvwy9uHf7i4Dn8j9f2FwfPZHbwG8wPv5iIOw0TjricW1E/unX3
9n5+MNs/mN29u7+3f3D7wXR2ei+/92C6t7c33T+9P927MzvI89Pp6f7tCfz/
7u0H9yY4ja2CMYtHcRp2V6RWXO8owusJxErQiQaNkKhC8EfiJq1Ta8DokRGN
W1bbE7DK5WNZEAbSlQNsjrj3kohVnyTKzVyQ0y8Vr8ngi1vTqGT6GEhytILc
uJEUjcyOiPF+vtHBTbuW3tfqsXbejqRtg8TptvF2c2/SY11ZghiJ7tBUvsUp
6PGvQzOphoJCsMkLUXHwNFXEW1WkTAkp1qGid0L7DMBScx4GhTopbn+zyqfF
yGHEJYUqDAnVeGQibQkPpYnqZSZMtx93NmR48PA0HyIkf3L/vnspiMlO1rKW
BDXvOCM1WstK5tNzRWsRPcCCMOhukhPGC/S0gTBmWiBYOaxOnk+Wp1womlaN
fx7xX0x12a92s6M30SeD8IZ88ijbh8d+8elgP7uJ/9wa3XlMv915Orr3DF6g
SujbXdpcYKSqTdkRUa/9rrowicgiNYzrwnV2QfWMsX3XNvNjHK+UAMRwybBz
GiplKY9HgnBnocydauXoj+odY2toLjIlLINfdOtpMVlULj4tIJ4iFitvpRQn
bcX9oyWh6TwoCc5YTNRXef6lRJi6OtcmNEYxjOEMapEaPD85ZjPJya0pB83S
qUNlWgRgU6WbafdKsKBg+6KgB5poXB57mY5hF24EGd0gUVlkE4LOwh988Uvb
lVwYquNZ7b/YFljSXZw+s4XpVX9zUn/TD0F7FVU2vWthdVnmTKujdw5ES6Tn
UhA9EGKvGIiPhZX5ss1y9tXTxINkcc3VNc5DSsLUIkXvL021RK/IDEtEechp
z7rZLnpwB5O7/S3dpUiSBVJ7Ptjby3Zf/25gC1ShmsezYa2hJySv4wrb5o5G
vYme7dObyGR/ufWKbBnJuvQ0AdyGFv9dg18J4B8NPQHifwfuUQyheF+a+fnw
PxmOj+rmyhHVctZ0jY5xQngwkXLAp/Hk1t29vRMYOJYnkODV1gQpp0tawIFR
YSjgwOfA2gNP9tirUZ6xrxs55hbgGImNdcu5kOBGRST3Ojl1z09SbxhHYXNg
UF+x6GUR52np4GZNyUDAAjJiBGtesudnHffMb3hIvsDDMKWXfpkqb/jdJAS1
T6OP1OQeA0JkbvI5IlHmi/qSlsWFWDjiCp32ZmexGR3wwQ9C+eG4s2STkeja
SJG+AgvOK+1GjMCqa80HkyDgJEoc5bKLJUsTJRvoBPC54gOXWtg4cUdKqXj8
wBdd7nsFHUMsaRH6elq1ejQF6oc1bBU4RTZV+yguDmRDQAiy5g45P50PoDPV
OHJuq20y9tYJxJlQaOu86UoOU/kGY9M0zleCJDiQAgs8Nqg988ZyhS64AhYa
EUwwAogIXZcFuyJetI3r3lo+FAtJ8oD6VhRswlTFFqdJXCYs52J/hS0GnqLV
+brXIevHJ6tkcHzyuSR68evwMazsAnVQ1TqXlHG2EUgrDiprGWgV2lzzYYId
iWE0akzu/BudBaKz3+Yf8yNOAH89IaAyLe6U7WKB8YHzhZgJo5uDGUibCHKg
sNrz8uwcJYrwBiGXjoMvy1SGEV1E7Go2wReXk2qbqzLlXgEjrImfbXucUxVV
92JdqDq1EeiJZsT2A0EPutpzZ8Rtdg0+gVUoRmjOqav5ScjIt7VtfWTFbZUY
8qB8niyrEeVqnhCy9PIytGFz3OUAR94NjWsPWZ4WhjS2oYmNS+1aJI68/t0V
tigUhPgRO8uHmQ6Z2/zM3DNLRJmdgz9U6+XzPz5/9pd6/29PmnL68ofV4eHO
UB+3MsrOY6q9G760QgPe6v6L5P7Y6Q4Ctw3R/N97EoB39DPahB168kvbB9zl
puVtYwr2gf8+yf4YDSQUdBeS2wJ0gNBtC6ukm/3ldHQslOqVoKmuDZrK46Ux
fY3+Q7wO2amApUpyk8FJvUHWp2ck57d0nUSu34rSSXdwqCNJp+o2ysqP85k6
fpABeaE5291wNapgK/NiC8cpyClNrMSWCUTGNRwjSuI06g5x2RdLODx68uJF
9qd3R/TLn0XLoTH5vfTdyYHLdkRxei9XIHRAn1MvIu141U+QU8SLRRZ/P+ph
mFcu8jj/bJbBJRD4seinTHrkfAzWw8HQvl8XK9CSOI2h3Ze3O1nWE3WvgaZx
/mtcVTNxTnkZmH/U1uGNXblAXKnF+STL5xj6cHaOVUjsqy0orIu8iTA/OsFr
hlEbrOCG4maLfI5clMwg8R7yQOMt7Pazi+6skaBLzpnUiS6r9vRbJmWPdYFV
UMMe2zc74/MH20464oNFe486uzl4+9nuO1PaPlJX2YxEBpZo+1g+35JNxXKH
TiAIsh1rAHcycDDBIbZWeK3XfBJJ5SfxZPgg2bv3CgtU/DrxopQVbV0Rxqz3
P5E57ocffhiZwBdrmbMjtO/7rBsddGstOyLrWlRKB73NZ3woWFfMuFaZSgPv
/f5Q+ZQkJt2whEELzx6LS0ZLI/YjvtlnQw6GwF+sSDZVvizYaKYFjCXbGBWu
52TDOJAH+FCY6LwIUE2ycBuzv51n/DjejhCYYnzv/LpCi1A+SXJSu+L0zRj8
AXkfeb07htEZ8O/BJ5Lqdr2D8NaimHrUqpD0m3gCIpOgsLdh4JzDTM00/INg
wsXMWpDF0txbgoRe+3cWmTQa+YRu3AjuMI3v8wEXsvogBDVidaEglF98Otgb
dTscxioDvDcF1TosFN9tFjnac/MZ5c+lUgGiU4Z61mKcCF4WI6EPvTED07ya
tTW4h5J4anyTeqm5D14R+YOsXNWUajKrXapz3ey0tq0hNxEW8qet4aYuO9bu
kHFSDLRGnp3H64mFXKguEeX8C+9IC2/76Yc1NPY1E5qVmZVkxt65FWmzW9eR
AFCT9UOfNPlXqnDo4lq7DZXLFdyATfOTSLdvzTvU/BTKTSKLovB/vY/cNkN4
1msI/xNqtft3HvxZVJ+rDQ2i0XfaEty1bQlZ1m9McNcxJmTZVmuC225NyK62
JjixJmxRwFHHMSrOz6mJqybTUj1U072RfUv3hpZX7IuqB8LywLodiXfGPShB
890Jgy7Ntboizir4Uvouu+ZhhnEabUMjfNiOMWTvN3wVySeEC0a1LzyALaHh
a3ZcrMDQ+JIcHjOerqy4Jygg8kJ/vhENdYRDHdHrncoxiZbx1Z6YvSmpT8qE
GUNDK4T0OI4085EVSTJ0R4oPwvcU/YDErj+HT4TD0oDlnhVrtY7GMFc8hXGU
dF82BqRaoBrQ9Nwu74wxqFjzal4wVlFUFZqs1T2D+6aJKoiFRAyuGufriPFx
1h6gP4teikxQCph0m3KChPUf/sf9euR/fu1+DFXpfoQ/4KqkpZM/5OfH+B36
7H87+Qr/u3sw4Ed+5EfCq6KbmkBJ+jHt+YHoz4i+3N0fjEbZLyMQcvoWfv7V
jE1GAZ+8w3Jw+Ed21c+PyTmh1w9pJ7T3A+z9XdPKtQy9H7EOl6VrdY3eOwYf
z/0W9t5xluG7f2m//mte9h/jle/5aa+8jOjqgevP/+Z/ProMNgk2/9bgum/+
qEP+6j7Nm9T9x69/M8z86lWK3wzD/PFfcXtu928P/3xj3pQTYKbaJup217bP
a0+19ea/4GjvDGhMcaDeqP3zTccK7V7czF5rcMNb4e3UwoBywEFIYOc53pzl
fL5hVAwsxrUuVg0SyBC5A1+ASCmUslazer5Ep9ZFRZFTjSBMXZKbNNPsOPWm
aeK54WOfH2Y3TstEYuCLjTjvulzPi0c7Hfv0HL7ekXuPHvUj1+iQLe1++dJj
3uUpg5RFp8IYyhXXvAm3AqWT1AalIr0dRONqIUV335UJnpMMT1SXtUeRCRAm
Q77hvdUy24V7MvgE8hBnwA+qGXSgdksT8RJp5cPwDSYazslWJfVpc341ri5U
ZVfkuhPmM2ZMBLXGLAvdf5jupaJh2XjFfpekpmXJkVFAhVuskldl1Ge7AoyQ
JSTJV3QozdXYUsppWj69Lz5jHZwtAPtNk0S04riRvR6iX6UHHlTa4xe73NnU
61VFyVSQMBJOQKxr75s35RV5PSdMnBiFiqZncMM87mkAzhn4WAsLYJp6GDrk
Ug5qurQE1lPxUMJceIi4lrfjk+lT6tKgrh7PmFnJb/RRm9gT1+HqUA5kIcX/
poqxlHgjBjI0DiSfUWaPoBgGfjCZgWbdh2G/2kZ9m4TSHeJ2ii42UB8jhqIm
EMP0oj1LNIOeZWMvFZAFT8QjScD99FXnUqZFUZ8B4Vexepsw//byJ4/F6yoR
yh6MOl+3ZppsHxmLi1CSUNchQiv3PFmIB7YY70F2QVwd0CjOSTqdwRzVEYMY
GC+C1eexIiaBofFVGHLa4pvO5LZhKfOz7cZuM8fJppyLhTXefwM2Z0wuxojR
ebnpOesDC0HoOnuYuTgAxrRsttVccNQZXBNy/ejtbE+RKZlFKN2+ECsDZ65a
wMgRmq4grCl6dZsLlMu/SIoqkhzViPFVhsyEGEFGb+KGR61gqHxr8mkl5Auh
14BMOyuKRT8rCvXDPKm32H5P5u25oIT65N98bcSAEvPYbCgDqt1kP2vsEifE
0OsoF9JIk+4769RY0uizKPbgrbIddpgkUT6kcEE2UW6LZe0Zhi+ZFELuG6zm
QNvTkf4O87bVJ70hPkrO07hZlSM1TF1j9U6iAZ84qft6ncxC9mWfKHGphUP5
GmbJYjQn7LeznFhD4LoLkzHf5xy/gPzk5xzAn0IBwiTBJNtFe/9A81/EwDrU
aoDWMCq21NQoKr5Fb22mNTzJs8lJRNCggZxMsvxEJROMgpWEWUZwQ/JrSiq/
GQ2/bJLMmrI2WVPxsjcKB1j0LUaSqLMbUP4G4+0VcUwABxF+TAomuoKAjzwM
VehcfXji6qmqLbeTk5ql6r+/MuS+Q6HqiL//Cai17a764GejUI20fZRZLS6s
ANK0Mx0b3ImMdUnfWrv99xwNkTqhhhpHTYfmZDUHoj+hioJYs4ArfCeYrtIZ
X/4qsDAEQnAgKSgoEPHRwZ27JzgdaZ3DnkPyZZdfrLWGndWc/5mp1yTZdw0V
yxvmeB8z1+qG+sG6qAojmImWYGE9LQdG0yuKWF3sPFKfjBDMeTKbQvOPYn0+
0aw0vDsOmsC+0jAjsj2LuIHuJ1j6dV2tMJPkcrVG2JvVuRZzgqGDmiIxrF5j
d1q6q09kCzcjRhZK2SbjbT350+Hoj3/ObmZ/ykd/o3/3Rg/w353RDv53TP99
T//9jx24LpyElErN2QypH3NdT7Pbt2zDpLjBxnxKnto/uG8ei8FwyLlkiw6G
pcJAnarO65IkXt5GTKtXLaAdmaUyE3khtsm1GHv/+NVz0le6dqgRYaWROAFi
Zv5gPoJ5/womFZaXHjKr/Sg7/P7Nd4ewgk9ffPviuG9tOb+bnnyU/eLT7f3R
nUNyu97dH93jpGp+H7+9tTe69cC5V6+Pn7FVLlJvNGuAanUWSzKuKWnRafmA
4ZWuXAiIB6dtnG0kK07Lx2cdpWxUfqw269WGbug8gPsKkUoFFyFSWFUjV1CO
FErZtw5GFZAAAtT/lcrYq98TP8z0Q7myl5T1cPc2SHEjhbFnmZai03N3+xa3
htW6Rk1+qpmwofZOWwmMaY964dGFiEBDT5HNTNtyfsW9cBaqvRtrYcy9G00V
iZoQly2yc4lliYcA+/748OjZ3ds4xWevnrx++mz36LtDeHyXYkF2I9IdDAbc
Hl0KfQ1Gr3RVXwreKJ4d3zZU18sjV+lneePkMoI3XwIp4N5fZqBYelyZbPfl
8YuBTt/nIKv+hUWHVij/rtchtkkvTSpapYBToAiZ8CO9BPEEY+EIB0rZ+ZLo
Gja0wdgXk0IiSgoDJhbLj2VdMeZxJgVb6XKmaqk5/EP4btnpZila3Me8nHMp
RmRDGIrEuVSb9ag6HU0sbJqA0zBobZLgIy6llwqFFgOghfKQSUHWcMknPMuQ
ai/Tslv/n8i1jskOpkXC2+NnLJMkIrdGN3K1igDGOFHoYLwX5Gvny4XsvKkr
2JDfFZdcnRWP/jNB/d2hwL03v3vyTNb93t1bd3HdVc1AtkM0BGzIYYBfxfV7
8SrWEJ9Zb9JWCwnzWlOMwNj0SIRTdq1VEljyniGZAvUlAR9QpNxKVABhSUv2
1bdqSHeKxr5SsuRXiYJKxjXBHWtfzZ0jT0TSmH+iOrvGTEqbyykylZTwpUYl
J92YFDoKI4b8FY/r1Y4mCKI21qqZk62TCkGr54oTBJ2FJqtYaoxxx8j4T4LN
zH83v4zvHmumb9cDk21huwq0wuZHXmcnkVVeeifCnsTlzTzLIhPY2gc3RyDP
fQg4PS4EFSNiW46FxvnptR++fQbsxge5/s9IsX3E6DNd9RaIEB59uvybDwX9
e0Bo6P2Ych/dPZ19+H3+ZnFnf75/6+nR5sP08LtbL2ef7r1fArf47g+z/Y/l
reXe+cs//qGvDdETH+GFdU3cn/58ltjCbeyStj4ldOza+R1seVANFA8PNUbI
gnCkA2zVVaAKUeG8k7hsu0v8ROWp9jjkIbJuQkU0vYXdCFABcj+qfNd4LwoC
uHlvnGKUdvmfkM2LncB+TLq9VBesFjBpU0iGe9o+eT6GTUlihfNqzWhyOQpY
bCKJSgdNteyqRMWQokOPKXp3fDDeH7egExSwYUvpyyu9mwHuvGkX0MbEXrJT
7aK9tjEup7gWMjIZ59eemNEKTcwY4xhnlg+0fmMeGke8m7BvW0jMcB/XdpB7
R6Df8chTZaAYnGGR3mz1FbzSRbyyy7/ik9JSB0sKxNHt0W1bULYkKxt0im6P
qRRobHAGsZ8Xdq3LCt/hoOm2wruONf5Ku7tr293xgWuZ2zlW0ccr2KSD7sOw
JCNZtfprvikSm0xv+ywrUeKIGITgCapyfUpgTXQMQ/UsLBd45p1KmJIPS4VJ
0RjKyyKwt4N09GZLDO7voV1lsyYzM7/ZRq+wWaNaDbLbFC99J2DjWZdVWR0+
pKf7NyT+A167uqrO8jLiVKHQlnpSMf8GhALryx3g7ZSgAbQjSy27V0ASAUHQ
KI28y/fWv8NY/UAz7aWFDltzK3AmKk/N1bRiw6W3Lou9XYVTA2CUN6nd1zre
uw1UPA+QCaaaY9tK67VhAF3SXI/LuS9A5NIZ3NI29qFPYyXBRYPMb+0dZM9x
Wenj7wV7/GGmtYZkdEa2uTmd/M+rkATDj5HwrpU+3QE1LbkDHSQhtzTlIQN5
xMnQikwd1+y5MkU6a6dIs8nna/Kks648adedJ93bFGNpah3Sfp00VdZEXD1R
Z5sPKVHgnvZCukZVlujsCKCKaHyzDE23aoJjyhafRmr64Cjy6qrRu3RoetCr
DQPpka+Cc2taNU4YxjQdMe3npFDtLbJasX1bh2QAFLkVlCgKbnaL+tu7zIhG
4kLPWMd3ST4BRvZeBFwZnOO6KeanAfRfBuhaKT+d6yZERHAybSg3R18Illu+
JqxmMtqYTG9s9vCINlhK3qf2C4UfCbEQu3WB+t+AUv5bNNRwCs+6dVIDoNal
h9aGI/SObZPXMrLwUBozlp4hNJIjsC1UsS4IwCRPYNW8i6RhpaY1DC2322lT
ISKlKziurtsBgHC1l7WlQZwSUu+MpaFcXcjDkF6JncvAUaW39x19mcBBR/Vv
1SFNpXauUlSEvRlgzVTJYImTfc1RfQVorwoFIXqCfzQ7TnH5kpv7cIlUK35t
2kYfIRgqH7Roiu7btKx4KP4gLVEEgW+O3rGpwFhldC7OFkIGyhzbqblEIvAv
UAqm7WgdlTTT1CdmA56g8dBydxf5ZXM1rQUyE1pR5UsjK6wpMwT/9PGw2Nkx
zDoowEfN2LCC9nFPogzoWGlWrtyhmDRUuZMk9+xErtWuVFRfuVxahcvUZloK
VYL4P9cAx2W+lhLikgTKESZ+ni6UUI5yosd9Op+JBU685jZUgzP1+LxyGhOS
SMR6844TF9H5luPH5y6Ks/y7Q7S6lcNrFcHuD8r6OZBSWJL8T4BL0U1JoFLs
8+a7RPHKjPp1NWzItXAFtiEJ2NzLbcgMfmfLRoQ2PwYBZeJI/K7VTK1I3VYf
ej3sWyYapLrrdb4BwyAN3Ev67e4lZW8+MTXZww5m278CPwewAV7Bre3lUb/X
03CdGeLh2iy5Zils6maJMHXTBNXFe3z4uhEBiYI7+ficbuanIOwkwedj28Yu
RRyac1dqAUeQn6c5x9Xe2dvLXuBoMLCQ3Z+2DRZuSMG0mCfi6eUid3BNFEnF
ctsEGusC9iqzovFAF9CEkLyHs6KGvmuuJbq4EPSAqoZwkXAcCJzV2TwiUyts
eTFL+74kJxGmxgvTpsilYonXfXTm7UU8vvYC37JtHElZr3dhrtdZ3mguabnQ
/uX9Z4Nn/Dd6xn+jZ/yXRM/otxjm/20vvIa9kPb1USRoWMPgjVbVyCxEon++
QTqy4Abqx52oCDEggldzZz73Ik4I8/afkwCndGJwN9va14mqBz64lDI+xO9j
UCnCIYitDEYql7qQinSuWT1cKV6l1a93tPRQTQ/sQGfUcauMVOIijik9gZHZ
QuNXhpz7NUBR24M6NxL8ItHVzDIUfNeDWI/RRbKs0rF2jDDbMsQh721U5cOz
Vw0gV5NQ/3qlFoitK5ZWRqLRebZgKykSK/bqxFgwZzjIKYkmZdP4f1dJ+v9p
laQXS89jjGM9rhtkyiiYg7XVJcj1lWwkSreTMsbP8w9pCANdDtOr64V12SYb
sdQN02Fwm62+tYBaOTtJkjK4UJMv8N4/mRCg0fVCb8gfjVWv+VMO0ZB4V8pE
v4ILJBJCNzuiEbGY0Y5y93E5poh9+hiWuJCoe5GWO/w8pvqrXB4dQYom2qZc
e+GRKc+7eo13JZ3+UFzxnDXpDXHcHjYF4kEl5airLjbqjZXidArovklBHIyo
7KLj3mss3kihta+59CRJdd62wfyEq4/iH05DF2YasuJlHYGS+SuQIKYEz+SJ
qaBJEFNxzme+jExHrWLbQsoem8LZipy7AVfcY0lKRYrTBJR0wOk361BUqPSW
09LWR1YetmbcJLU6NRLnCiNxU8Y0G7I5uGoEfJpHksZg4qZTLsUEE4oCibq8
pvpVsytS7XfxG6E06EZSU1RsM1j/neW8B3GwqF08I6TS3U4LPQlZUpZvup46
izFgFAkMX4We0wUylFkkm2tg2rRxjtI2/pVRonpKPDNSUwr0JG3IK9cfh0V7
SsfxL4IX1Yux04HZ9LOtx9+5Lx14OhITaWhqJDTFgDp9DEARdTaND9bsJc9O
wJ2+jr8ecedrMC88gPLVYCBJxe2vx5QxNwiyYJEKqPfu6lLjq5XX9qJF+ZRx
peJ/qD7bVWq2T58FTcoosV+rtt7098LDn66B8EXE0frY2IhLkPv64z85Vv2/
koLS3rMrI4YMVZvlZuEgggjz0JMSukfwnsuIPIUsU9huhDMIZcKvLjgm1Yrk
dLWqNbmoWlO2S50N+go2UcxKyeIDrVSExiAAlhRAyg5priCoJncrsEb4mJg2
ptDj6nCWNo2Ay8Nk30xSNIziR1gmIJ/gEiQNqpQKjzqOtI7QrBV9gE85shyK
r9JD1OZz0oUBq6CSkSERiEASZEmce9tdrugDJg9FyhnKsHjIyrXA5FZ1fsa5
cq45zzmOCoX7RdUJV2Kiq8yiEXKYh3eNhnJR+NpKWysR4Ih9mjg2PSnZYKl5
4gmMTt8QUF/JGxfVdt2SHRG0qbS/dTgLLvQYhdUAY0KJt/hYRCTkv5QcpEhd
HgtcVG/lYEIe8FhK674KXxqdQ5W90Lhb1CObOBlvAwqXm7SsVVZrYadUY9nd
wiYGVy6q1cUSavDuLOeDxIdwgmZ01ZGwT1nOcfqwhk1ELU0unXWoc0ZMobFY
vbf0P+HqjUu/f70V+e+6gLsr6iWm5JTFW9uOv0EeCxPtKJUWEHLnwCXgrmYG
bUVL8SR5uKl2ZWFbha5152j0t1UmPTwhH3HPVK5TrN5du1h9d61690+oVf/f
MhDIQBH5/jL661F3ca9/rIE0Sp9Lcdy6s4uFM2u1wpAv16iRgWwgCCU1XbuE
I1PYLQoOixyrQ7LgApc0b3Mc2EgD/NXRVbz/4a965wmr34YywYuw6TiWHVUo
XUZFrykYcqIFGnHRP39+MXo6Lov16ajCjkUBkjsWl57T6e/t3YE/XNZ+AY7Z
Cp+j0FI1QAmOhQ/pgem/7bzRtszZa3dSLTSeJJ+xjxg9l1Rk5qeS+m5ZkC9b
PEzihjgRarPudpHTALjQI9y2K7aYidi5raovZwm1ho9RMNUCqH9RUql6FPE2
E0broMAYMTwRYjx3r3HaXqBqFZocGhpecGB1SEx1WTTRzmKt9IqJI04tp7Ix
YqhAtjY93yYsihThwdicVp1CIeASZ6wQFWSu7ZAfOBq/XGv9X8l+osGxpB6f
9Uww29bVSuJCadUy766YVoSHlklSffdCGmDOPGPJsrMWEMoMCsnBHy8J3hkb
FWFF78JUKp4UeCU3DjMUJkWmYCwar5+SC6Um6OwoQ0BinJfdUifmLp+eYtla
Iie/A51Dc51DY4sL0KD37w8pyyyteYsmcAyhwgYp/InqQ42TiykFUBDJs6CK
BGd0b/rYVzsYn1ZhwBEMBsnQaerwGUcXS5XDRKnWUH+S8XortW9nQ8tYM+2r
jh7hsvXL34d/EJWAi+8mRB952i1uIOcIls00r/nUVPPkxEhyHVxP00KdQrTQ
rW4oR33rCM1pg34SMpEkTphEqCHcuoiMpCqcsP2YTwLtkjFZdxc92SXlsfN1
N9F4N00McCbBEFeVijYzT2XqKF0Cb1fcHnR4BOmPoj6HUi2Zr34EZ7+oasIL
W55htZN5dUZ5EVsqdaSmghBPT9XPI1sxWknIpVIuhSsGBJ9ygUHS42Lctbr4
Iut55GOKIInx1o2tPdoo4aX64Ki4HDraoZjXIpXCFSmZQdsuSEzIODun4Mk8
O5tXEy3w4zipglnXLC4PrmYgLM59qbYhMdvE6WSuPe9dMiavG49hAjs3YGtc
sBN/yxnln294Bsim9SauOkvGragGjdFTsSQ3+aAu9bIJXzqfWZ9Pmmq+WTMi
8m6Mitm5agOBT3Fem23pucE3Kt/G2rFyd81ixzzIbt12WSANtCojDdNI97a7
Ent9WlDsbHzS2PcZl6ViOfPuwX3Umom1rDU2DqnURtiHta8I+bTA0a4xzQv7
Glp++Y+LqNmirl2hsP1E5StSvzb18he3DlEMh39oszDghSRy+JceHOGD8Aev
yvuQx5790nz06NvF2/PF+fTT+cWzv32onv21fPns7P3T5eWzy+bVh82r8+Zv
Ly6PPjwojvTlgBnz5Pbeg72DvXu39n2CTiKLx2AbXXdut/jS7djhcI5QRCGy
+V19HWsB0yiFz5seXGwhkDwRn1PQKx5wuDelq1wJ5tpZZxnlhBviBEXyfOP9
7W+9v/3zjVy/H3l//Mj742OGxI8WTafnHk6a6AQe5tpKNV76FMe9Z9LH7U/b
uDWutVvWxFiu/X2jJn1WZei7Rizn04ouYbNPZvweY5i1cwtiqo+4IAFHNoFo
aLs5GrwRMqEhzhfvXDNwVHGFjXrr7VEFrKGwlZSlgo/V/CNJ5lpsS8hpWlEo
DVNPbL2O11UUvM6jMc4iHqyBHJ1tdJ8tnNq0wjoQa3aqEIBRXntZijwWzSUs
/IKTDi8pj5q8DujqyEG5xwDQEHDCzonfhNEg7I9PamtoNTEaXVzXswLT0kgz
oYPF7aMNk6X1FxhSwq6YSmB97t29e/DlC8oDeSgsOEtczqS1q+SFhQt/OOa3
H+zdve/lcYX8XZoiKnqVa1HsFsGsK6XtrkPlyx7Ee8Dz9CiVCkIeHbir/XRI
82rHJcBIobDGoLXTlZbUWPZszpYtltU8uHUHrlkpmZxyPilZnIghMQx6hFWs
vENq1c289JudPC5g7+uTYWitYFRzKrxnAz+0qmHkiCdsb3XDR/uBffkKgGYL
A3pBsOIE2C4EZN9QO6cbPKxq++vYb4Zly8N+h3qIHpgtR0VZuoQBjXSN0OoA
bB/xZwYRuIWLwGbS640rifh0upD8EuQ3J9WHW7ZrXWm7PgYbq823CKSGpz9z
KKYi+FarGosdniB7xAGdFmpOF+jmfpf5+iq7NY0/Wzx//2D8+M7p6PZ4/7d/
fSlbP8GaCwo7SpGBAliFYloooQWzimQ1RM8nTOcW6XBhSCZ3CVlsl1j0m+h2
KZb0csA16uNsrnV1xrWLgr9JkirYseSvlZD+y0oPVbG09QS6arELt1I3jYWg
iP3QprRN3sGkTNYnnDxZ7GPW6z7fmNDffOjwvB1GT3BwgddwjQFWTPiIQCrR
uXibknUPk+fRPYpSS2AYev1mO9zlzoCsWRoEoOo7NXORXzrfJt80bDdstezr
77yTxGI7eucPlLAB+J471wyqImkuMrVnH+h+WlNZXLe7IjBU+F94ZUBOOLug
3qh3jhZ3iWrseDMpcsBsE/WixfH3R9bybnO9utrxaVQYgjElBJuOoiqWXlA7
n1conLEYDqdysVl63mAkFyupqIQpLCm58Ji7KU+14QxINlyiSY19MrgOp7b7
/DkazEgJj2/wHpywaHLTfEVIA94UdinoCRYjLNCbRmFI6Yxx9nrJdSwasu1M
z0vQlzRNuWQZerPmUFkWMulYYLt8ycJySxKbCyfRilhqf8NqgHxuxIx5Tv5E
CvfWCrFwb22mwiGAR2Mumpr4ubIpQqRpCEUt1SiU1heiJdNB9ViUpjYz8E+R
m8iM5Q8GmSE7AqS3qiFfKOEnbkULw2pKIHqnIiknSg4VwA952KQULU+LnEIt
iOXjzanuEEVcD1KHVndpNsYETlf1FfUAuobvzTuoi2O7ocIwwrBL/ZW28JZA
3xruJjBDLRbuIYo7T0mYDDMDRgIKzVLAJROExmkwIeu1SXHZYRrkcirPlvGU
aHEjo1+Z0ACV2P6hmMjVANrqaSm7YuW5JpG8PdajD7DRWloUPMdFmmii/kYE
HUIVPcSdkrzIx2ZzyF3sFT8fi0qGqYgzNWOPje5X2eCj2q4iQXUYEGlUaLMo
gF6ZQIlAAIzje4xKSoSrN0GEndoxYQdasjGRC9HKhaZBRgsxFWmkElI01QjH
LdnLnoY8MFIKxsly7nesQDxH3iYYpDZLNR0riUBbdRHHbNJoGD6X1egnUVCG
r4Gtgm6P1pLuRBIY3C7tHouuiSFvux3vKyRYSYRWQ22yOpGGFqDVaEZO8OfF
HIpJ4tIKR3ok2lq59NC3BwjJ8/nz/4AFPbi7f48sYP7CIeZOcgk1M4w0jySx
m4wb2BVPoqOr/TF2xpvHfbHflr3cMEtg3AFYTowlqah7itR4UdUfsGWShZEg
4gwFF9FHPkd8qbPzaPC8XiKa4k2CsMdSoIPqbcxp9ChPAreMCp7D43OUmHwo
K2jw8+pywekdZh9xj2S7bTBVVDBA6Gty9zafDPh5lO3/ajetB5CAM8pPZ5EA
/O+v6b83d7JB9qudR1w3wI7hUbbDI9uBzo7e+P4DlJx4kli/jThyBNzVvggp
6unKwy1kHLQh1UwJPzixcBDxAl2+7WRiAS/L4sMQp3qOJvJn4jV/XM0uszfK
za7JoqKQrlV+iWAiIguLlDubdVqCrPo7mmDXFqEpUv2sxmcstAnkrJ+cwJk5
dLO3ap+EigJksYM3yLl4nE6FY1pHshlREsiJdTwo2wEK4h1jDLDrIBCPtWNZ
tszyKC9hGBG0UQy67FoAx1MZJqnqkZvIIezBy++z2+O9/exPP9x6Mn777Mno
fL2Y397bH+0/ePBg/+Dg9p/HnSujoy0bQbwa4WXsn5VeJY4hRGSI8MzvKvAF
YZfgUmMVAkdAMwyK8vmzoKIAD4zqM3UMKFQfQ1kCmUowSUYEdp4jPoYuQ1Ms
8iXpeVnWwpgnYsqXphrrCdxwJ/C69JYmr4tZ1E8QIxPEyqBZfDwSb90KzkGM
VHAxJkBq/UgwQyZqMADZWx13M2eSXXv70so5vzwJ67rbDDKu2sNwobfuD/5x
gZ1RlGa3wLBVXvhJXj+7mI86RYvrHCjZelPEQ7M8pHAJSoahGT4Kn9aN1HFh
CitX+TqUBWikwI+jhM44ZfQ6F4Rh+s5GXnTzfI4Vh6Z/+OGHkVUjAopnLKWK
q6/fEBYEBqX2WByJkmurOhKOODIssd4KriuGZZkklp5RaDBGh0PNmvjoyjxJ
5xxMitGK/oaqSZnjS74CU3azUvBMc5OwH0xhHts9RQK7F8KDqHaFDI9BNnCZ
+XzxJoi3xhrrdTJVo0ci+0qFVZEgfHQfi7zKT/gw8xhIqWP8PxI1RsQ/JDPb
hCrK58HEKzgedbYVqbpz9OQWC3Wisuw1rbLpxpl+cIM0s1hXHw2uJ3WRzxcn
YUj6pA9morrLs5BDpk5JZ6wEclstsGROHSvundvD0bEdfXuE2NUKFj/FvteS
QVwmKLxWJgU5OqtUSp9dL7fL2Er9WrpeRr7ikPiKJeFeVsUC65G3p6uspncV
Om/K6vU16xBtXn8U7ulksr9hbUJMb1P4GtQbgU6nIimXCqe1+A3GUBK1cqsu
KVy7zQt4bor2xmNzko9EBh0kVo63W3K4Fq6dJHBEr3G8r94EUpIzoABQRF87
2c0YovwC+6ec9ai12R6Z6EO8UgcJuKQ0avuZK0gzpi6fykPogOoxgoGdwbmk
UD7xxM00pQuFJ5EBnQQA8dmD10cYjkTW9YvK29V4ET4qahruLtFDw5xhnXvr
HM6ZqxI7kAWWqGn+if8ev8QQK2CPf/a2dfwiTc8/xlJq1bw6u4QGFhQ7XWS7
rw+Pnwyy10sKX3q5maMhelbmiTEHw0qqaTWHLl8evvmzCzXfcAGEREIG5FzF
HZreox34zxLhV8XcBxJoOd+xD2zq5UO1rEjJrkffPX79S/t5TYf00bfDN9+O
9m/tXOeW9tyvKxaIA3gSS1D31epBsg2EO0MrBuZsvSxdLmUGDgaZ6NI6vz1Y
OSkqU7IuCPEmYLWpLdV9/mwdbxIY5CvCZSZfpkdeMJc9aZ8dmIeds/P4gE0L
i9ARYrNEqXBsTutgZD0Hw7s1XTKyCEUwjEgCEKL4R3c9oETBlY5gIfXs874O
uyAgOeyxczTBDOv6Lr0UGrHFm3YD/g3cfx5++XB8e9AuI7AdbdLAHjoPeyj4
1SaCK+I+ODcEqhQ0cr5D68apC88+PO6FGjUrZJfOCjHd84QvDsf36P3D8f0B
rae7/oz78TW3QFJeY+0fwH0jyx8bNq8JVum+esMinMpIGy1t4fpqq6de0fMT
9paCP97e20dkWh9VSd+mcrw3TpOg92hHxrOD6P2zrx5UR8wQbEOxWKkbk6Kh
JcLP8OyfdejDbrspc4JHHj6a02u3Pmyp/NHOcSorykx2RAlleOUnVNoiDpyI
+Lev1RbVi+hm47z4s8bYEQmaYFVTmZYW1vDuOsSD3d7bw//s439uURbe7b07
A4IJ8Ka/zlLKAQPZV/U2+KIdgO6UoHx8bq7mr4ZyN0jjNj69bqO6A48rcsFH
xXhEft+0Tapopy+OQoJ8FFNI26EWxLHdDwLfHekaF+Ci3QpiAe0P7EO2+zj3
Xs2B3bGxWdAo37tFbD6wqfS4F0NNqRqGYeIMFCaYQ6tPfTSmlDdIZyICkB29
LEmYwn62a89jPIfYgn34hwgAqEtbYOckKj/dMl4MqklLFHQLj/veIjsPxXFe
nlFMUF1+BDHwjK4lfKkZME34tbTV7fgJDqVPk+k1XoRvV6OPWR9iJmCg/WTS
TSH8FhzSbBduhEk5AzEnWmCuzJLKTSxiCDpqLDgFG4BP0SD2LaO1a+4pl7Ww
VjGbeT79wJHQKc6FiWLYlXIdIZoRRd7NMr/IfY3UNkqGHxpGFvAtUcxC3V3L
EjpD3wZb5Xl7PedLC+zuzwN/ZibS6Qb+ue7TrupCXaWE8jCjpHTJlosiqvRj
01yEu4sUjKQpzHByGbkU4nAtMmlqUJPNs7pM44WCtStE2eAjzlydOIhWcMZW
DUcuVJ83ZQKBHTt67967s/fli6lxSihHoPoSHKeYVqCbP3lH9P749p93Ffh6
XVXzhpLVx1V9dhPdRDfr0+nde7cf3JBwkxG+Mcgc5ZTSxokszYqOQO0wyg6r
zMLcuqIP0DTwCtlg55eo+5VnuMDAshZUP4HYtmk2Fau0ch3Zh7BKTRSo4wH3
Pek7y08i3mZySj2leLVBLFIwVRdKBatUoLkRstq2TrDYSJMicM4dIYnorJGl
kSbiheVKc3CtDEKCJ+XA4wOSs+fH4nWWF4bSPVKsr2ihkV9LEBNmzogL60gb
x691bSde8YGBs+VWRz7NV6R0wng5sIqMtsmWJZs9dBj4QNhAfpP9vp9q6QKJ
Uh6yjbdkk08pFOgCBYZVYDpXcUgMvNvJDduenleVSPUYbSy5iBJLolJht90g
0ZPj2kVSaorHm4S65Wp+xlfm80KSdXF+HL8i8eguJRuUsJUdTEoMGiV++pRi
tWH5O/MFZvJtjOCniQOHaeR3oxhnxk6t8vFFRYW+HmbRISBS7Oja78tuEKrl
0p0WM0xFx5cNY9r3ITLIgL58GWjdZKXazbL8K2aE22xQxM8BORgpFu2O1HOA
7+BoroSc1XSOGVCgAwPD1YV2sflafMR4e7NjC/kqYoqxJ5BwrShlrw7pH2jj
xVnGLWnps5COHV9c7EZcY6oPMhlxO6NnSIpw0bzUoROWn3NfCpph01l0gvIu
aAEOH796HhhEGuVvykShoOpjUVrnZhheT9Y1ST4vtjTCr+7GGa5/kuCoP2tO
SKBKOIEsQZwwO6NlY37BAaEqrTRSxihMm4KK8DeqlE5f+r/wy3YgkcQdcRyS
i48YshMPxvUmHHlzzmD5ArpS4ApfmBeZAmx1u2ysn1E3qJPz2F1i6YlzljPr
K2FZPbmsxKptBm4cMJ2HNIpis2FsfEZhud9E10YnFfIMAxnysfHTVoYuBiYl
c3T9jXQ6IlwzK+A2KNnNm6fUlxwiCS3mou9rIARiRrSdQq5DIu+W9iqOeYq5
Vn0GfMxYXAdjCZmfCXPJ2szFJcylM6sx5jB8U4vWri6pvD10WN3yU2Tlnpcf
ivmlhHafwmgFVl1160Qi0X2bwBfiH/uGQh6Xl7jG778ZjDtOWEc2vIq9ep93
od617q4JgbtLEDd6F7PcdV0irVPXjRTguafrxDIIGJhpJRV/QE1kECeOtlm6
ijH9J9VmHWBm2vbjecXiembm9TEVHJCPKYvy8gKzMLWF0pPbWVbEnNxW5nS9
kbmv5Fi30iXJQoN0tfRzrWj2fH8y84i/AA7hPyCG8qvd7OhN8tkgfjEwHv+R
Zz7RJ8R/uniO6shhJhp509goDw4YsKb5XXQlDDCg2Wn8cc2xFv3RBT6QwKhI
6mpX7u0DgBZoxsDD8hp5Go9FvPLyqBzTQAFDDZLj5PbcCz4CfG9jJCX/ujAD
S70IEdoIdqYKoiE7PudsCsGuJB7PRUtKk5hGIw1DgKWbaLq6LW+nj2Ki2olp
m9SxE86HJ9yyeDU0hRGkqEojWLCbeEDJgT4MrMYY3imRglzWGqCmzm1zBe0y
6E0r9xNYU1g8G8pY1Z0YLs0gJA760bhEddX59TAJ2gZuklUmP+ndtOhEV/Hp
L2IEE24bw0zs9uFKDKQoQ+FSU1O7hY53yc5jp8nxSMrjMLfWr1b0WJvlX1dD
up1qSIpzFPYlvuFLClX8y2bJTdDqYxiRNWO0CGBIjMV/3768BMyw8xYca4FN
nmzY9I2VkQIZOoniMjoNLFy6XAlj5uVEhkxHOqggLLBwJDScKusqJ45LMTwK
SgxDbXENtoWG16gVcSHYStDJqgcZLygqflR0w8z8N++lvRO5TLhP+sH7QEyA
ehmEP+HbLU5gsg0caQryk4oyLDnnG9jBITL30zmIwypbytgpYVCDFYcsdHzT
+JBeN40aEsQGTJhcoDH8lCE9RV0zJRSYZBun8RReYEXuzlFSOtSzTYn3zZIk
ienGIFitz+vCJxtIYE0r4VLga1k++fKQAiBMpO7QTerqAmTgEYNj2a9oHZB/
Y3xu+JyiDQl8sjjHJfqospgf8gIIc86aP7C6y6ZshlkATHGTfPrhrCbgX/XI
e/7Lpq5hlKMPtMpn+v7+AwR3IqDkBEVU+x6tq1U5bbxkF9ldercfzcj+y2NY
1nwtkPxhz+iqF9cOEsBHSkESW/Ka3/Gp0jqfxgVbC4XS0SnFe5os3BqQqmKE
NlMaZPxXL46O3RFqHNDdG8KF5Tvh/t7e6O6t7E/4AP/+Z01uiaxWQIkbJETg
lzc5s1MClN2hyYLFlHOF6sbMneps08RwPCQwzdT6pzc2haSj58xY9VtISCZE
iipEkrgySHVQ8a0iGnWIqmyB8kgtk6X1cMfR4x4v0HIvlyeTbc0FI5Hw0HP4
nE/LXhV1Wc1+A3dCQOr1+QBRM6BKFTWHPcEwKcTbhzVaE6cmViAkTrWZzwRB
L9NSxh/L4qJzJ0POfWyYZMAAH1eeRFbgMdTld2H5RWsV31eIjI0dXe1BaAWt
mHw0yzmiGA/9TuccWeVmQdZhJ5HWqZmvtW5RZYQWMeAEFkA8GCFJ9ZZgWz5K
hLnf0wknxpTrntlgHFo8F/EyUv9dMCtShgrFcIwru3QB/VDEt3zdmppPAxII
jRvCZ7KXjEbABzKb5/VZkZFMbxmCiMCKXDBjGC6O2pajokfRdcUrGyPxrDwr
18BKPOIpGVKpGjjHbQ7TxD3s3BNXlImfZONFmfiw8ee8SSZpnIwzBliHSWl+
aaA3QvtI1F5yXgrGXheyRO6aCPgqSddDhKRak7oRWos5iwEUWLfAsuwpUMww
cp1NOZmcuF2Mc4H6O6MVRwkALecWcfwZXOWEreC1Quta8eulJUuUzYq/xc7v
N9k5TmMoJnSKj8BbCRiZCCWhTLPWc3Nnm5wCGIqoXBsnN3YhbNRFHLFm4cwS
N8wVmAHun4gZcIzwOEDqHHPWxcQaBsRqUACr6jXeLCqSxIblwKBsdIUvACJn
zgeJQ9vlirOcdpm4ZiXuEuphvqZCLlmELV6xS5ZbFQoSttcMhhEeBNtrgL8H
VmCKgXk2mPttkt1DNQddem+fPXn98uWzV0+fPeW4jmlVfSglXUFT4RUKFQkJ
oWUCbaCUeBldb8IqvNlqIZiuirQSbjE+WXASqxou6Nj3b7MMER9OlTUeG7FY
YYqm4CYIwwVmMQoqXxtCY8tYQI8ssh0KZDrCSzJ7CcIrW1ayl0qrO6JdHtxF
UB3Cs+3RBPjQyXgZuYEEQJMRrgFuvG3oZg3CIqVSTvI54v/UHM3hcOGnHPdf
hgoIrTuUojCo+hlIR1Wtz6EEmM+juzPCP4sgEsnwhaIJrOdHA63kNssQh2WB
fU5r2HV067Ts6Vk8bGfGp+waFQL77tbBvYDDiNw3WkiTUwI8riHTgNoR4C6H
BzXUnKSnFFqo88rsnB2B3spw9UD+BhkcAsOUKU6VJObSeFWr1gFqUuLRZrGg
8KZTOMcR4xZ55Sg/LZBfz6JbudF8/Cz1yaaleVz0mvfWMuoPyThLz7ekuM5Q
JPlLhs03sqkk2S06RLUOYEOhJbSjspZX0lS9ohidGTY+sJiSDBnWmsDs5iVH
m/BlVlnPT3rpEQ2x9qaC378rnCdRJIrqp5wMB4e7XDYRBmoLmhRfcq2XItg0
ix/TtRjuOdzPUgp3VgE7IAlHgPifvjrKzsu/AGnRRUmyKLXUrPEKI1e1j4qk
lTfbxpvgBdw5RiEwHibMlKOZBgG/gUvkRA85eYhsmCBxwcwpk10zmcOWdU6Y
PFzRnqH2lc62+MTIetG9tAQxqK5Q19QpE2sn5nNGlgcRy5v+CT+tlt+s+ZZI
KEeBQIQPp+UWLHIOvp0cFZzW1ZdORpdOtksWeiV1EALzzXytFyijrKFdRFQh
ahH9+MmAGLAO16t7NjoWGjcqPmiSAI2ZX1bzw7QGZjMChc5gFVegWBAGNy3Z
Cy4nZuDCEuayteQNidSu9+2hCf2bM8k4xfmXqaB/VMiR1aXNUpc7JxuVmKV8
GKYrlh9LYMOsu/LtYu93ZGcYG4RHqpoCsapK0T9MKZhMpcfEa9wCR3MeHM0u
GwpQP2HFkjeE0kM2uAiJyDJYniNEM+hMBLuSHYmisBhhc34pPvw1hcmK78d+
XhbJacGaAm3yotSod2+/b1y/OObwVRbH/ONoobeW4kYQogTyM3hJBmOQhJCl
zYZJ78ZI7duns7vg1EbJJMdceqcfTUCtEA+r+sfii90LAz6TcuweM2UBlSKd
yT6xsVPgiKvTNYUkIy3hVQn9/nUDPH9+6YgPypzl+CulwkUHZ/bSNot1GmzT
DrGPA3iexCO27+eOFR66wAhDtQO5lf0dsQiJojIcglse8kCcj2neLHkiIOBV
Ah4ZF9R7y/Wp3jBMnBgnOqoPxgCvHBtPopREapQqX2HKTwKDE4pMccM+Pb/g
6uCw1ZN5eaZevwV3Czztw7K6AEWXTSS2FawXgcQHPJEMB8QBRaGj7ldcwoqO
eJ4gWnoQZlHdNDQjT0XsQavyRyeMmpYHa4qg60oNDF5H17eQIkEIQp+xU7Wg
LtX3dXt8f7w/9vENVxvHj4Oa+HKDigGJCiE0FfN6LX4obEaiKK6Tz1Q6xGzO
dUXCMjTJFI5tw0RRRs+w1I+4PIMuQCUY1Z5C2cd4kMhGg4+Gae7vX2+GFI99
uqn5QKvwks+wboHY3yLXwBtNAgnKtNaQNPkhSWGQlmUw8DBl4VwHl8TVclku
NouQ6OR9HyFM3kKoSNQIeqnHbDMSimj8zUlnHQFYCm9cs4MNFS8kgcWTaHWx
jECEfcuUhtvRbvn/tvetvW0kWZbf41ckXCiUVEPSevhZtb2ALNvd6i4/xrKn
FijUWikxJWWbIjlM0rLW8P72jXvuI25kJmm5phaDXUw3ULbJZGZkxI0b93nO
Imy6s+v7TpPNzCrxKTa3wR1sEn24rCZzDs31HMPZ3MoB3wVBzHdO3xLA2hAl
0Y6mFFt9x+72QLDfooa9kdLyPFYTEqzCjNBcOdYH+q3q/DzOxQbKBxOjJnTc
TshVe7CmU5CZBGldOxieaUuhuxWmK7kediAQ/yUw24Jfb1yverksfFu6b922
Gnb20m0hQmuwvPPj8bkBqiZOsRg0+DS0RElbuwoD3/QEILmdRQ1lGXZEKgzT
Nus45hMdxgmpUt/wG5ZZWJaTjKz/HhJUoEc2GPCB5CnROlEYOM8ya+atpGoU
hNn/kOA2AO0sZRPNeoSESzOSB96Sz/AN8tkNixgdWLZOWh7iRtYV1aIjquFb
RbXoE9XwraJaKKcGBw3dFz7OtEF4r1boIxTh5S3Y1oN/ivAmiIDpOJxkP34v
Va0dSe6ejotyAQjwTGZnTXovjO3uTCdGbEEZeBtE5PN3dtr2c+OG8BRlEEhg
sI08Q7Z8onStAOThm0u1YrKjEmxWILTts5uzCdpVJBarEHVkDEGONUECu/+M
s3XZJKuGpIwd3Eu33kqCnNe5tNLXZGOOqRxXIZ9TnY68hCZxAqPB96UGrItq
ybzrHKBT7xfdylUC0FSjob9UuYJvMq6Ssc/1dspSx0Sto4LaqIIaC4Ipr5WL
5LxEWcBSsO+UrHcukNKurkTTBQeC7gPINvYkcD8PP0/SSB63pQ8VM70Zoepu
RuBGtLu5NGtRKcB3KrhyVtA15NTgRn5obGLRPArlAUbxeGEhXVKlPORsqbg8
QpJS6hSxpxC0bhsLovVgQlTAUWkNSteKuNabFWJ/rBTY2LpJzA52inKwMoef
Alk7ayoZIGGMR8dAebYllBay3Xh0RbArs6mljDtlCRTWqO2qymh1XZOykpMa
ylwfK43UzrlbmcCjxzSOTzrhiaGdXdFB8aGq5mg50tE4GDzvnm9it1SuQorv
nDFWS3xFl1SHAdvBkJiOM/id/Gop7mtz8/ou2ERLoFhebbRZSpzRVSrTbEPT
BMw7+Rh+KmSAKjrauW+LHjJUovYsRtFDsYMfUkK8rxhhbnrjx3mLmaTIjepe
Uza5LFswNyep3NK0X9k66/n1XAJ8O9ilbl20OkH6jBcWlSLNCrG0GA2ZJo7u
i98wV4xUb1U1Se/F4V/UVNybpgs5+GwHzBbi8WVbhxTfSy5uO5jPUdCPfw2j
+tGDrfY/+IIyQRTQjJlRZoNK6Jn3fH36p9umELyFFB+QWXPzPCgEc9PYslpn
TXB64BRlSStphWMT0AH6AnQ1peqULTEo2TX33NChNu4erC60TLybce6ULrw4
eloMh4HRiDcchzpEPMEwqviu0nxzahzvXINfk1nmybgFGZTSpagFkeHGJX+h
gqXn0tmkrFFpimTHifbaWTGAIiZypEiqZHsNtjKdQ8ynEmf3mNK7zFKGcj8Q
oOHcDTMqYSK0ca2yKeaTcgmUVUtg2f3OKyYi5l0gRdM6JM5tp9I3Y0a4ZTBD
5t2AJgR8I/NErAYdIQsqFQJYYuLx3MDYLTdGZsKtsx3acJDj42arqQgwOoxp
wi7p9JzFP6YSGElqOClespSF93ja45hA3hZ0HDdceWT3GP0pwZxCulf/I8Ec
Ton+6cGcb4jluBuHb4vlJMnyoZzw/0ko578iOWsiOd8ayOkGCMQXvpUr7Fn1
wjfHcTZGbXIi+/aLronadPRrX3LkPyGys05cw38FdjYEdm4f1/lKUPKbZDms
DesUtwzrhLVhneIbwjr/kbxV+Er+73ZpK+L12/puPptz0x8VQfzxzGLgAtM2
BXE3s7g2sVj0JhbDNyQWi68nFsNtE4vFLfJyYWNerj9SEE/+N/qsV3DcPn/X
9XGmF8bFNoRVEV2eN23xQNMDqF/4HRFrQefOWc2Nk9a6giqFluHf8h9LdNgK
WV/qdD5pVqcnbK8HA+fZgG7NgRurYE7sv6lR8jdhAf49IXsl8eZ4r8WHKCLF
8YwgADgU0IgjLk6MvfykGK8WXAXlIphrcCl4lFA60yzqRXWoSm7N5SjSfZsQ
2ii0h/kQNHs0IpsFB1B9SrYcMPhRVE7TlvxxsIeuJPH3AQ8fm+G+GokSaleF
keW5+/WYjK3RaOSorV5TmLRaoBHKAQFEV+zsQ1dDtZQSYLsRZ7PqIarIPo/z
MmWbs14Ev0ZkK0CWeO7wNkoGCvHisUphF7UecXXoqrHVLKmPZVVP27Ib5/xX
8ZzrJjU4h/LjjNrWBusOBbKXNExlEZCpodN2jZIZlSnT7ox65zI1PWSaN1+T
suUdsBew6RfeVwO/oKiS13mTSb441EtdPI+rwTbSL7PZnIKmUdWwQ93qs6NN
mkdcJvKLYQq9EIiC3QhRj/PyLPnoBEchB6vSxZAzb768NG0r9G1UntsW+GhU
UysLpD4+rHuO9LNlHC/TCoU9VBetpX5SVKAGgXR1EeI5LpjGFSOqCxRSItYM
xzfusIVObOiPrCAfMmH9Awxpc9Cg0hxyWffx1D5QqSlkr2qDSa9MIwIPj9GY
QYLlCmmSOdVNo7+XztbOY2lZ7GFHr+MwKHAV9YvvB4Je49KwEypAmkSzZXkS
unShJiA23KGuEEXkFAIQC7S/8zBJ3ufv9Lr38fMvaPA6OJZMRwr4JHhdtiRn
S1aHE2unYz86I3NpsW9V6fEePe8cXfo2VjlhpipM9kX0WqdjNkl9DV34e/mx
PAac2jaottXk5WBWsqXjWzmLzWH9CqPRzn5xh1obAE13hxTssucY1SZ2skqk
QyU15Z6Twq0dI9TBMWW6uEdOw4aorhfciLpFa0eHM/enS8aFzsEQ9bK0lmy1
mOhBkSTwncjDWBNDz6kq4ag4D3yGsC5zj4/zi2xTYm4fJBEI9gLlRdXm5v6h
yRRCwj31C00Lj5ScLZFb3UHRun+4xjYxok4O9LrRfqxLNwl5S6s2j3HXiuif
lFXyt2n3wgowT14rikSqZI8GaoKoVLfu5tJAbs5UHiS8dlpdlh+p6cRKFFfT
6tOcM0sMKq/EAQNleExAekbOuEu+uxZ9PRjdGz202kA38R1ebh1WsKVcVNeL
Wgr4MZ+23clJIOZOr2phmEVNN17M5nhHyCxqNsUuze5BzGocwzLBpczrmFo1
sjeBzu+KzT6lza5O6wuJtEu6q5FRd3eEH7wokvgKIVUaUBo7YcO4p7V6jYiw
fA6/eH9nb+DmjGuiZ3NGoHQTqMLopqxJc3YOHO1ZIN+PC1G7ct0WyC2K/Qmr
5oCCv3SuDsLVrFm6/dIwxwxmsLnU/KqI2Qrc09iAtp9H28JjjaYyPNIXKbY0
dK6NYSPEdVHsgI6xQzZL7q0rWPvb5PnW03+K5JIT2YFxkVhNmgsFbQPWzntj
upKaD3woae7FCft7//ru6E18F3QS8Ok72BSF4H4gyFZYahX5QLgiGWmnSxZJ
q76IqqhNFek8pCydayrqx0I2hGU2UqeWZVhd244cY+YUMfw4mEQKzl2VYoCs
df7sXNLBaU8FK0ihzAGBHkhzTqZkS524FlSlFNTtDIMek9Qo1zXP4LqFKnoW
KtrsUXRz95ymsPN78u4xxs4I2WuRTjYmFuRYTsobgYcbFQvUAg9UjS4oeesQ
MtJF+tzdFYE22KWUL4RH7L+NRi+X7ioSTDRZojF6qQhXJJB9L6dvox15ZxSl
olbov6FGnYqCZ4SJfaB0vK//cfhMVOiD/QdfvlBzjeYobzX7LmqMo/lsgTTy
Nl5Qk8YeWRdOtcmDq4hwACiN1B5xFTEHogR4OK7zh3rKROMcqNGNGZLebUGv
NK7loGcnedvaGXjQXPb2xjqOcCkTKkqflZssJ5V9TPNWRgATkfgMBq7rypxj
wjpY/+ti6yz6jAeKoXBwr0CcL0om0GC2tznXG2/yQawWTS0JzEvQfnlbhVFx
yMUQ5J+cHO/df3AitqOcB2QJG8Mj02W0c9QMjL9Y1OStlZ5cPVm89FlvnpcF
djxr60YyM6NC3B2JVRUF7BoC1JHNTfOd8bXG92J7nW7E1UCqExGUpqz0utXU
UKtoUtQ8RUNTd5vWSCHtuhhLSx6bI9VcUNYZAUzuQX7VlvrMREh3CTwKq7rQ
GhWz9nAL2610BLfnJt7lmyYHbeXe4AndlVMXjXEj2pOTYMT+CfNzbWgpC8iU
hOCsMXUuLqwXxilKPl2vDnIy+3bGy1lNeQUFw7KqsdG3yu1ivgL+OV6+4oMq
tO74Xvb1eyM30OmKo4meTvy6hF26xcHge7v3vnzZDm5CsL7GjNB/+5NGuhYz
iL3TGx8iTFMhd0OP6NbpdpqykA74dCzJNEpBDyx/TVLobMqRDueBcPzpUhq6
AVta4SmQvOnoRLw0nnSlpNCI26ueDuNlw6t6PJ5U1jkLchmHlkLOzxUZ52iK
khC78Mw55KqU8NCiEZngew+kqSSFq6HTNUzbTaxwrlBfpmGAgc+f3e/pGJcn
C5qAdqxIEogn5jBZ0cO/roRzkjVts6H0S+SajdKkz7GLL/Q2PnPStEOW4jlE
W5pOeWvubFXhUbPadVQsYoR2Q8tWejE7zRrCEuKODSchBkmUciv1znlngml3
HSNjXLUxuo1PbxKf3LYpAalDKinIRQ3OjMG99z+3hrt7j7ZbIHl2cdG5+MHO
9qZqO+ahley1j+0meyLkgRH3CjpsBrnX+GtUJZfZev/K/HtmUgsKC9uB9VVN
Xp3BjzEwVKl9WVwSEh21U+qWp3JE9AAqCLV4Y4mvQB0jvibaL5T3ku5bxudl
7toPiq6Q4j8mFRx7SE83UOeSEq2TVONgh4FuefFKmio9+ZRdTTwIVNvtWBOi
GEpLapAL58wdoxYNWtEns5pz58He2zopcwlvfnBvE+I2Rj2w6r+FhT6Vw4zu
P14BJMC9toHwkA6LD9WFVYUFmw2LyHdT9epUEgNeUe4tDj26STfByw03VZMh
ubhaN5d0ltFEWldCcEyO8mAFZcjNNPKpzHCNN2NfvLoJWpmYVKFzNCTTSbhq
i2hxx79dnVbjKPHbA/VLgtMJOBF1G3xVMHptNizQt+rZQM35gsOlyHOCENNe
J02xosP+uAaBOBspz7nDnjKrzeL8PUrcqJmRixC/tOD2uGQ8SQxHDXxAWsuJ
U/xRa4Qn1UUc7BVQKKSulk2pj1TydPVDIzmJON3MuDQTHbBMxaFW4OKqBZAf
5NmWcf5g+d1RSqJEd29Rl6x6TIsjdz6lA3PD1GwdHr95rho0epYp+5dNFnQE
XWp1BQr07v3b4OSM4fK1aRomGgp1nSe4KYTc7qstHN4k5+SRhfU82Tk+ZZ+v
lRHUpThEv4+vDowPBXlDHy3zzNvM7+XcahJozJZHZQKsVUiwVkv4hlxaTZRV
P1r9ShsvRowyNdOaPq9bDUhwmdkp5opzspTiSFIfvWdmAkATs3CZlX7yg8C/
2PPqer5b6L01DzpzI7zxUZo+n1GJJ9GC2WJdxSauE2fKINHi/qP3XTYJkU0D
YWdRwQ0sK60+BQxnfaagc9AtliVF0zW01FzHJ8d/yB7Tuu2zS4IzxFwSxY+m
CuPPPR4cbq7CrVgETcWII1L/w0GOuwJTxJxk/DuJ3HBt0WnckZPqRsqL/nlN
kEe07uMhLka6LQpGCvne3nWi1pHeyEUQx4jSHt6xyZxV5+QUxlv1xz2PVCZz
9kEQd1Dbn6mA1HN+b7QLDlivFfpK/x2vZbNqKNNcCz7DmXvSqPDnQEq4xN36
saKkKv1A+nP0NP2haTelZSaP+OckHG1G9V6eQqEXccnOxPkX5HkOtmiz38z+
hX9DOyqZTHw+oZKK7DAUIpZ+hdtOVTieqf8xfE46dfhqznaIRO8lHc4AIUVU
mRMG6gJw8/B0heIJl1AdeWZsnhqQafXHz8UxAC01jeWQN18CDH6N4mg63F5v
x7M52lPFXnyh+M/hHgvsBcKPC4YkJEgyFGrW1EESr7IIjwd3XkcSMY26sD7P
KJaEplAdTQXK9yLj2jsoq5DaiZyn7+gZ2XxYmyKezC7qaSBokih8DM+t/1ie
jbZFjVkhOi2DuGYrT4zIcVgEoHzCB2eQHgZxekYt3lBC5CU2OMbnwRpDRwJe
j+eC71xYrQGBsGl/H2lvl6A1yqARsmdwpTgF8VV5oMKXckytACj/mjkL/GLl
Gij1PUG51+49RdEv6WiXzeHEW6JhoA7I1H8apYixUkl08Ix2b5GOdJkI265k
JxZp0oMvhF+zg/h9uCZTRsIWimKlRykgMgvy1BuY3Sr1nOyFdR0F4hfZFeqs
Wp5UUf7iYBYz2qldikKtPzJwK69qFNg2oEOhTg21XGjNq8/SEJ8NYWm03OCE
9QOllygN0Zxsh+XsgiuTxZnhOHr7hmov0+kLhdK4ZtlQfYqKYUlCx1naF78w
is+WgfCe8K+GzeLsBOWv0ZoZTrkx8COR5xh4qhR7cPsFDpZLsrLlaMjByeOf
0bA7OTkJxkW6t7NTvPpHEI01VI01ZI31U9GagEJ5L6O/NpJREPHlT492dnbW
3yW9TfEDlY790NbTPxUHv/zy6tfh8zevXmx+xmg0whuEJxV7LNjUXjtIjkP1
gwmc5GaisFyCwCikeA7zkGibDzRED/ZmhquTHUeSKMVaRNerPLvJRkRnmXao
Uh9xIqQNG5KWo+LZRxSr8n1BRjLwBCHtI1Peh5OKDtZSjRmyro4s9Uyb92hK
7QGCeijNwsx4mS5j3w2AaQ2XpQGFh36oZbIguFYPnn0/MmvUgqZyw2lmOscZ
KIk1739VrESwkk3w2PPmjLmf0alypnUe6O9HoaePE8bd1QKdbN9ETi4AfjeC
fcWSFM0lSq5FE94aurmvcjFDv1I0X8mmNOjt1FZN0ZAhH9nNpuifi37CNtJZ
4CCmgUkCDk9DU9vIc3CaN55IFVDqhkOG/kqNUXDuuYJVGDfVp6Dkp5W6tYg2
RTTI77TKuBnI+Kg20SrpZiDfe5spFI1KoRyEpMOEIxrpdlIxCvoUpY4h3Q4m
Lsof02dwlJwhI/ici+t4CpALxWanslFIkrlcnNbx7FnccPRD65i5mlUg5hL7
mLRCSvV7HFnrxeW936dBvacKDlz+pQWPSeV9kkdtvUg0aw8SElspuYR8AjTg
C8ECVhxe2qXeXG7edTtd8flxXk+4H6GveoRbcVwl76CDCrbFxY8kDu/TG9NJ
I0gA5al2IyKh2horcslxU1Ugbi5kvfLyHd6kCGLRufhBug25tGWxaiyOFu+I
tiYWLYQlNI8la93yek/NL9fQGxdlWHWquhzZuiDmoeaTFuBOAdYh8bOaY2dL
Athf8ouS5r6+rJcVamXH0Afn3mRoe/8orJZGdBmus7HHo6iFW36O2CztsYbc
AYo69NWvB9Gc+/x5dl02c14wK2/N/a9jC1m15DuEv5MBVUoHbyoNMnFlWNUl
87wnWkNx+bBuSljbq+G2OLfc0PTlKmqbV4zr+mGPteOmUhfRb6lGa1fAQm29
IFBUiMEiC1BF5AC2khwSFjpVEcKBYpBZRvAozyntTKbyreixlMkh+SzZgjUU
4iOFy0KdQmSmKnLMBHuHVjS8ZtIxaVpS2iRPk0YBPte90NXuVDQjpXLZycgr
iz7ctK5nswXTKzh0lZAFlGk7SS9Gd8HeukAwPwAlysGAcsxHscYZiuKIq9IL
8MNVAvcf7375EnRzTbVvkotipbZoWtHRu6Y2QDgzb4KWZ9lkcvwDRyWdmqsG
EUDC27QWhmNpUrYl8oFkisTH9bbJIJGTM1/Xu426m3W9wQYFaceoeKJ9UHA5
6+ZDoAh10yiMEW5pcIjUPzWurDVSinF5T/pEQACrc0pYMjHq7eTvnG6LWzah
nVzQgg3IhZCZ4lLl9KP3j953LUxjNm9TRqDVwIXmbq4MAoCl0BrERj3FlaLT
XtSfhu/mjhKl1TISwtbbV09f/RSdxMWFNN5Y2kl0SDyVPg1Xc+XYYruFSR7i
gbOiE6uebkvFJgdoVUuXTGs1u6obPg2SDdintgSRlSVQDtY+rekD4sgjxLNV
A/RWzMkpDqXwzjapj1VX5dllfwrDPyU+oIXIe0pGJke5keot6YCILxv32XS5
PQiJTre141hF8lmppTSpvyuNktPBKLYzO5bs8VnVENxwFM6zy86PCgY+nq2W
FzOQyfXXpWH7pTo8sa4BkN2548rlgPrDs2soFjVkzmU1wv1IgEz8AzG4Q6rZ
0zIU+gGXEDBovOYs5ZiA5ep4QTsvKbEXqpKymYvrBr2NaaOSYZ0FKXXXzP/n
zw60xmta8luNl2UyuelZ3JAOX6QeMzR37n8SMPK0gNf0QRxp8ISfyiRiYBhO
IXIAw1Kn5I1g8jpUB//PtP1xoGvrO32ab5/dZrZmp7JSztzjC9mnxBhctgn2
eLPpmwLObTIRX1qCSxYmZn83+M3fHi6LcjQ2Pyxn85zgT/bU1ey0nlTBfUVN
c30D006LRvjoMgKH4AqzNN8+MKSbOMtzTvUzwQTtI0EF1JR/oFaRBRA8ev1s
cx6NSbqPDSqZhyEBevkp+aFxhyKbOacw6aWs0epB4BtZsypSuD02rKV9psJS
hUCJe0TYSpw/Lkm3nbXE0U+lNiIroJAytEAh7MQSKbGsaBQPCVus2e4oSYuI
sIDPl5zerVJDtJVzrjm0lI7L6XjZGIabZJB9plPb+Ee8UT/OPmTFB9JXiaIt
smSJohDSNL8Zxs+GxJJmFEY+1RUWq6nUe6Jv0GGtD3Sn8NduDo2GlCI+4VRL
jrvvl/GhlnLfIfUmwm4WGUpVEtYkJjUSA9HydPysFqDJ4B6tNOnlx7KeKGz7
snfF4lK+NvgtrmeSLvkZ92O7inT4cRSe64pOE7b4N5ObTYLjsAX68eAQkaOz
g0CnyPqgmA/YTceL8pqa8zrNRTRjdH3gKjJ9XVrebl8QomZKOWUkoWZKhqki
F7USWhDf6EDjXIozzpbRfE5IXMhEuJ7ioc4P1MyQ50fqOaPDUlVzGLLMVapy
Z69HH/B26J1mm8CRV+br4N5w6GiLnUa70GRD/CMCPclR0ym7GuX4Yzldlhe2
IfozwrBPRuFJNuX6IOPYbP9IjJ6cyiAwJ02j+SEqHxgiIaaoUmwT0NJ0E419
dHqiVLBGhJuI0jEmV4x3uWaDVeLsZkZIXU3vnTgjQmrvmKPt+nLpynNkxqxd
3huQRjwl71s3qVZQEfiQVFeJ5g1iDbHcIq8sSfzthhbutPuRFeRQQ2p7NCBW
cu2ME5ZKL65Q09Q4Y8wXap8rLiDJeMjq3RSOTol5GSOjxX3DJmHTrK6QqzSk
WFgfviGFlKx+idpKW/gxWSXMzYSUHoAdz7nC/czPuN1bZh58xExSktzaJokF
mRBWD4SOvyYdzGxIvvGBhQzM0UqbMkzHzDwm8vEEoqiHXco9Tuq4855KJEMi
yv6BwUUyJID6sWaq67geCsEryDHNINPZRBQZjdAob9yW0eh8pYid74rtkDj/
zL5WD0/6WtdGIoZgTiOskPUFHcSjtRj7GDU9NfHrdWM6kuWlSyxGqwepYrKe
6cYGuLHV9kyEj2gN0nSO0EmFnZjNVA6ImBwbVgJrydNZLqw4MUoDoWcw/S3y
s5YKZ1WWc/AuF4KNmoPVpoUsQenGoQ+K/selnqdqJxxxAIityoW0QV6WtDR8
A+nRRbWPVhlwbCK6OME3quJoWpfVVzNczdzOtHU2YMIZVFnPxjUIUGXASFpQ
q1Q005cTzTmdVjezlNuStU0IzTB5CARQY6hWFymlg8kvU63okzb9wshVIEh2
Ggds73rzewTBaMrto7weD2ubZV+ApIOpUsne2rz1pGyZ6tcZS4SX2OFDzeLs
ZxinDrKaEGMEmMQh32iyYCCZYKeFowsL13w5s8nP0J+l5uJrwLVftiUTyHUj
RzgzSE+SzXvozw1nDbYjb5pbYGAUD3fA14tDSmcFbP74egoVsOlkhKHcd5Ec
mQK4KT+SNkqKyg54JHnnUts2vsUwau9I/9AkmywbXnADKloDSs+M0/yEWGZm
cws3I+CnXZq+wIsmymaPyLCmUezALE9saekaxYfGicTmn++iadlovvIzLH0B
P19c0c5bdija9SG0rvQg5PwvkG3VsfhdxVeDeTYhd2hok70EiQhRVpFjzbn1
geAj1RAtbyTLRi26jbr0cCPlLaMZ6DCjtXKoGTLMGKYRlp6dColNOapAslI8
EKCGIzJjXRSEkH1brUOeF9A4wIYYQJNhDXH5LrjO55U15W2UQhW+LSNzRjFK
nsKS3zjQpLjDOZXc47TzvFyzIjVxXrPbPNaKW/CtTCW2R8O/zYfDJtoRb79+
9ChtDpBsvjPfWiALfS+cr576iLxgedIcB3qn+tyiwTRDa8wm1MowLBpsIHIS
e9OJuCa6k73Tj7DXJGuqkiCvnI+Z+kAVxmpq+BGd+Da7rN6XWVuDLM1gWM6S
DSI4/rxx1sTa37iYFMvLOsHN9SH7QHbkOcC7nvg81Qz5d+AHNb2KVl16xAoJ
mgS+C09Dv5yH25wqbRGPkj2uzwF3tQyqJKRQWUiBvkH+ycae3vSMj+s1gyZp
YMtBHCxXwNqQjUqkIhOUQQ10oChMZDWdLwUhPstu9muXeN+BJYZQjNXFHz94
fYQj02DLUn6mJ6Y5Cm81pjmQCEPnGsnF5ISoouEGXGVSNzauiTuLuIC21dkp
QG/IiWcA7uw6yrHKYcefDVAmraprjphIbjChnMTTUrIDUVtcxBlk77TnrQwl
nt5OEZky9zQO+4wmWYdkFgXPhLfy+46aVogPotQ7vQpeEbJEzzljjbf1IIeU
TBWJT7Y26dZkgYuGrY/SXoWmACe8zQOndfrma2Ct1Nmeb7kJ/QEjgI1WlVjt
ulrgN13JoSmzHxKWUApGtoyTbDsy5AsnI06ZB0T4VSkEuFpydS9VE5xrXbjN
s4RpEWJJukIDFmmaBMo/9cbdqaekICzwtCxPmzsDYWAQd5Us2nmceXgoRbxC
zwG9q/Dkyr4Jartp4KqJfzm7lH4mgdlSRwpdJR+qm2RuSj2h7Q1bKvEP+6KM
CXNGSLxhDYZXUzcZBthyI56M1MSqv+t2AVeVJLOWHeNmIBqTDngsSzZ1NDEJ
M3Nd4hhhItKv60wQRVKcfs0C6Sp5wZni15PjKe/WlLMqi/l7B4UhAv3w1hxX
lqpx2pOARnFfnjQ2/7AFNYeWqJ2oaJe6p2+8+ft2Fi0NlN2I3GZINxuwpMBm
EUpQyEtxCpW8tHtV5e2zNp+lLzINAKw9syKaXOll1rngfeJtgL9pYUN+THyH
mjsV64WU1JwyrBQzlWe0E52zL7R8E4++8B04D6LQD981fCYec/brTarmi+Iy
l4viKIdxWwz5ZIoy8oIyJZxgxRppHpb8nxWO7a4CWRPURXUVzrpTKY7WTZ41
jLihIGnHQ6EGjaiuQMQVHx5//e+rWqqF4nJK2p5UVDy7llHcqMRPfnpnO0D/
n8ThWM1+fO4JQ+Dmpxxy7VINQ+YptzgjkzqZlUTCZSZ32R6rPDDZKtJ7YQHO
mkyGYlJGC/mSR8w5RO+Ss2gbxPA61pr+EYQWJ8ygbSfKs5uORubwFHzTfnXE
mpjyuAnMKjeNuXCPOqz756Wos8lYm3TVZmKjVin9TbDMwgPgXB+qSWq5wsH9
ykC9y2gPX9ExMqUj1ZKhCH5KFjSqoEUlzdjABFxQiTTFhhE/XWjtBx/+2mi5
P3pkTZYP7z++z01Ea6aCNmdO2jdNAiMDEcPTjfaEnAkV4DiIk6D9lx3RFmuN
OljxQM2o9JfQUDD/YtqOkNI3Nm9uHE0L6lUipLt7+/dGpMOlvdfGM62WJ5pb
pgF7y0vGGfxrKjC9LB1SHLIMpoU5LkXwNwAPV7nX8//k6oZmIQEzFtcWJheD
rLZUHRc0lk3gox2h9F5xUcFc2sFpwXiIni+SE5QkevRZmWCwAuOSN+LUIqOo
u6PR8jmzkOIVF4vZijxIb50Ey8LC9etbLpmvIac08sVDw1DwP5Mo5KJyS7JG
udnqsMecajWFQYfBl5fcQTmLVsMVRF3VvSo6mXYYcGkH7dkO2n/86AEVgfFY
AK0YpnTGXrlM6fJGmux6B2rlz4JgWgaNNU7K5rLYOrl7sl1wn0DcAefLKpM6
qy4ENj2H+5ZZc1vZp/5YXa3Tfw1BF6ABPtutP91Fy/qe3u+ufDdUjJYkd/2p
MR1e4w+SAetbrQGXSHQvMjAIwZa2RxZXaNSML64xjTwC0mw4+pjmMG6LRpNu
nZoaPoNUGtLhNAAGBts7KZ5A5wn/wqVdgJk87ZxuGBuP37mIhnvWb55aDo/Z
1e7AOb+jdhKNwdlK4jV1edKk20usGS7SaxG1Kajuzpcv7PNr7B67U7LHhlfS
NU0opY7+DJoSJYNDbMQBbGDnUrUFR+vIZklaM7O/ffTIGSV2pGJVV0CJFIDJ
zjJQ+cLZZTeTUebi1bRSG7x88KwCIUMYO4CvLOoVdAm2aq00hQMD6zxL7fqS
cA498I61zacdnK3D9Ot78EC3l984E1S28alRTQH/2WI8yJKZwaf18DbrShWS
pykl1gilr62XLdoosoj5QqlTtpoKfRmeTpKuWQ4ceBM8+ZcZcUNGEu5vjDb8
s2WR58IPkMLbyFLI8gAGXjTHWnkQAb5fzUux5AWt38dY5ffqmOkBieRMYmkJ
HK2j6ZfIEcv3xaoElkQCk+gVMInmdEzSotte711hh3C6pD44Kg3FSKShX8bM
lrPW6oxavBNHxmmQO2dfYRHIcwmWRtK9hIBoqewNePM2m4IjkNAojKYktFIW
oAUNE+SkelCxJeJ9gzqGHc24naGyT7rcGCmIHMyusOUeOTqNXIT0jjmBBtoL
uQCII8ui0UL28ETsgB9QWXjFZVmLHIm5ER4Kzt4hXAoGgAE/NmqR3b2Ho534
/92fPtOvv9z9TM0JXxjW6Oj1x3sDBsKWy3/76afd39dc+iBXWK6VTLFz6H59
UygOXBTweJaQqdMILjA9x6m9bLz3d3d27t1C620aEYZ9ixGFDSPiKXmwu7O3
fxs7qJ60lUkaDXtJiZJDqsdt9u2b1gpsp6SVpJ2Ya9EJTHDmJKexYQT6h3EZ
TIaYHb0uRrBguzC3pOyk7ZHL4Iur/UNgX5P2i4qzWpCfFYfqhbS7qRvRQoYn
0l0vJYJm34zqGEMXA4gqM6hcvjiP73Ad9z9H2aNecDkPFM/SOqDieLLiTGCG
BWSMM2/XaWH48No/fyPbEj5jopRj1R9QjmmZxoRM7Oc0E5eBYMdRcTE1tFvd
IGcZhVl86sKe1ZxUCykLRtE19mZVdUEMWwVo7g6pC4aNnhAuXrRjTLr/Dbms
9KyW5M+5rCoOi7jUoDiiqk5bQp+g4XiCIrUkuD4C5NJzsGf38o4CtD5UDuAY
4k4PEqZ1kczaBYg5Ym3AQhvpk/jse6YVye/IwD24kJaRtczWa0qhQ3jWU9rM
x6BganB2ycpkuaQlK1NLtTAhGalritO5gmiKRl3JWLHpUBMoTIm8TPiKnYGi
hJo7WUojB+Qlo13EvldfV8WZozRL24qi4a18R8hwtshE/af2Y/aVgUixgDRJ
GTBeMKZA5PiJYUAodrQOX3Ly7QpdykD2TB4zfGqVfdbpIeWbzLf5oYrbakG9
F5S9XiQ3hgGcuKtlZt0h9AREOAxOUWF9s+5Spu0pJJASt8INXSqF/cxYLkjA
VAyp9UhW4i8bYCloBxan9Y30iWs0LVCcOCCmSMGuJA65QVWiRxW163l8c8SR
wHQjUbI+URr0C+jHejZR4Kzoq0/PGD7pPHDWwyjvaBgEg25gymh+ncFMvY4v
t5rkNCgEQgxHlSzEQYbCJkVQlgxicJZmxSdMfH/yXxflhZa6NAl0t0231NtN
ZOzyPKfUclOOxwuwgJRc8UZFzLS9ifqSU52VIpfQdsi5ycUbFm+Eu11q1Ch6
4F1dQBosJUIDd49KXjAaNRqwEG2awE2pzO9nkuWpcd3jV+TZBWBSNSJHzKAY
9/Crf/TPib65vovYg8zjWS9wwBzw2aynk09wErpjs0ZQFJGI8qUWJemkTBP2
EAurTIwFFDimJ5jGNl9xo9LUJArdNZkFLcKN8hnFKWhbHpoGqVGyWtRaFpD1
2OEMeU5dJs80c08HybD3IOn04SqbV52XefXnWy4lEEWN2+PqgvKFhMAu7KEz
oV/mMaaDVDth3DYJKTl+TiPvqTkY6NAG63bCVTnmTAjDnDCMTW+dixBLxKPh
YjYbC++dFMCiJ6i35AHzYI07tUScOSCR7Q6TMqzLsnEAmqelPg7B9WjIUajk
vJSO896aEMGlBdd5/D3Hvc2PDpfKhcbvEic3PSS+I4o80pv1Hj3uB3kXEBYj
DpJC7xfU0/dBBOIqrr02BvCrUa0AIJdcgz1HGfh7KRMQMlKbL2toivNpVL2w
xiZRUZINr6csVaBFzcLVFzV14k2uoW6IphMGZ9wo11Al6LFaVFdx0ibKH70l
5yQQcmbnvGN9GwElYOfzgB70ZtsRuTClxlJLXzm4cjVHpIeKJuaLFGYM2duv
rYS3jA/b4JObDm5Btg2C102nN0mxaCrUqaZzLKRE912VQlSuq96N1QB8ELQ6
lzOISjKwJ6YpSe0o3HntRDz12oS+Yg7G/KLMjkJHuCp5mliaN1dKG1rFs7Df
rPRG1Xj3SWKcSEKiq7GQL4FJCTKyHqMs3Tf4+woWIhdIcCpN3eKSijRU4b6w
db+V1gUPU2enpK5KxZvkrjS1mbTgTppsYYO2Qoo+ht4OO2VA+ioW0Mtoe7hN
d2Or5I9Dnqe6g2lb11bmCpiT8wxyoyI+Jc1HGiDLUnBHtPJOjCQJIGMypqyP
YKD/3Jk652oD6oggRKLgXQvovh4tzETB4a1oVc5QuQu25lk6p7gxJrArANqG
bqAeBSDddIeSk7A2A+NPZ7cqqqBswDMNNSe8X53jIKtc2Cr3FUpiwUkIw3fF
E16UIYPUsKDpZ1IgLL1qGRoBF2SsplwxRdH2lBLRoGYgysAlgxsm0N0B7+1U
CsfJxCFyLfSsOyPxF603kD4NsC1dAb83y7x37Mqd/QJEMQFizJOFy4sZ1maB
yrm8vs6//pPD1x5A5pxowwjXkGEenkppKUWIoG+Mo52g5miLDPeGO8NxuuyL
MnguynNIazNjVMBGNJjTFjRYd0MgUj68R4iUIX1M6+19feED2ru/R81K4TX6
kf5RcZ4XGJHPPon4bDnKpu32PbviQdcTSHhdLc8FITybMCZvTneyKMYTUtHC
5FW81hrZ7t10YYfLWRQkvhXJ8JNooEXJZjqdd9hkWzIb93e41YB5uCm/RnY/
T+5qzvNK59tpnGZkd/MJPgebgCpAYYULfqZZ3jvLskxrSEUHeJJL/CUoV57q
VhFcNk6gUML8INiXeDRTrwvZAjkoLCKUSll00ZU3DbSP4QVfG13j2o4G6jD+
JLj9NvDW9NAjQMWXiUooWCu7qBvreQkJWbd892R1z7e8V7zdUiizsvraBPLh
LQHdqxhWKo2Pb/smC2krpLalxNRYJ0tMqKcBacMjoBMmrkjCfN8d7XMpxdeE
VOb56EpUNb/d1okmx9+TNvsLkBpPQOQ8E85jMVDar90dzF4czN43DeaNQlW8
AgLMa4nkeCKpJAV/YDz3bj0a2bvM28YHJD3PojrcFZOuMXOEsT1loeJFtKh9
67T/DVPzJuOx4sqXrPGapUYICU7BrBzPl6EhYDMoWHTChohQE2hQn+js3XpM
XJ/MrocIdtrSuUix873u285C6oW7WpmCvlag1i21q+xrw5MEA2P0ca9+HKol
rjoDAMVIQTE4hLXJosmASrWTsL+KBAY3KxZeHzI7Pq4mZIaJqTupyg9RhAQ5
8J8K+6kpy9VUL+xfO3L3jab2reMRXki0dizRx2iH5d3SSJP27WhfUcO35I5p
jXvlP/KcMMysKJPl2uts4eLsO9Hof7pxp8BIIosRKMWULhJSAIW+cW1VsK5S
a5fEpCjcV55pTUV3mRL6f8iA5VoDq8fvdWzyTnEyP39m6huIFBlORwcvD1rZ
DTWMpNeqS+5NZjR+J7FhOiPR0yC21VhRCWrjl7AB/CYn+u+KVsjAbfIsI7Yn
Ek7K/AErEIbPak5YGi9nduwqWUT7YQ60pEeJ0msPh0O0V2ICDlYX0lH2JH60
aoYvy9WCKiSuiq2DJy+fbxfHN9Hh/CSzoliGipZ/i983/Hs2PFzTHK1spezI
HoOkewCntHlch1JPX5rL+3v7937n/E5Bj2OjIydzN1ST4t20poOf+U2Fo+K3
X/cPR2+eHQ4/XU2Gezs7j3Z39x78/jM9rQFLDNmJSheXPAvho6Hbv3v7fPgo
juGZvgyiEey/Vc6qY0KDBQHE8ti0cUdhfiyLJHIgSMXqxd6JR8/QpOxOSNfz
VvlNii1//7b7gsoXkE7uQsnr/9vx4d8O3tDfir8U33/a2xk+fIYvXv5r/sVu
cZf+2B/ef4K/3X+arrR7yC02XPzu5dHhq6fP6AcvXx2++eU5frPzuLgrD8f1
j3aGTx8+f17cxW/6/vf9p2c7OzvD58+fP8Uvdnfon7s78YPnBN1JNXGdR7n5
zLYdJvEwCoK7IjheHjll+wVJau3pRFT9fUgswHR6vOHuUNIEv0R5OKfwZRI4
Iq+lY/mOoVbccXsxR7OQfdSSe8OMYFiIL1+0ZlWgGcayfj/yMueP49/0P5K/
+4OPFYyK9mMz7d16bOvsWvfY3l5twlSOE/z587S6Tt1TgqIhI8s+jiNzTVZx
G/24VRy/bn22nf8On/2l2P3RPqF1zK+hT+I1d97fiSL59OivR2/jnwe/vP7b
AU8AWvxaL47PNrwwjJohUybjWnsl6RgsZInxL75Q3sd/su1+Ih/Ry/Aml9FR
7qg9Okb+/8blGKxtXEaVONaqp7W9jZRt74mklrzmrskUi1TCq+5IlCcq+OY3
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

-->

</rfc>
