<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.17 (Ruby 3.3.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-oauth-transaction-tokens-02" category="info" submissionType="IETF" xml:lang="en" version="3">
  <!-- xml2rfc v2v3 conversion 3.21.0 -->
  <front>
    <title abbrev="Txn-Tokens">Transaction Tokens</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-transaction-tokens-02"/>
    <author initials="A." surname="Tulshibagwale" fullname="Atul Tulshibagwale">
      <organization>SGNL</organization>
      <address>
        <email>atul@sgnl.ai</email>
      </address>
    </author>
    <author initials="G." surname="Fletcher" fullname="George Fletcher">
      <organization>Capital One</organization>
      <address>
        <email>george.fletcher@capitalone.com</email>
      </address>
    </author>
    <author initials="P." surname="Kasselman" fullname="Pieter Kasselman">
      <organization>Microsoft</organization>
      <address>
        <email>pieter.kasselman@microsoft.com</email>
      </address>
    </author>
    <date year="2024" month="June" day="21"/>
    <area>sec</area>
    <workgroup>oauth</workgroup>
    <keyword>Microservices</keyword>
    <keyword>OAuth</keyword>
    <keyword>JWT</keyword>
    <keyword>token exchange</keyword>
    <abstract>
      <?line 117?>

<t>Transaction Tokens (Txn-Tokens) enable workloads in a trusted domain to ensure that user identity and authorization context of an external programmatic request, such as an API invocation, are preserved and available to all workloads that are invoked as part of processing such a request. Txn-Tokens also enable workloads within the trusted domain to optionally immutably assert to downstream workloads that they were invoked in the call chain of the request.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://drafts.oauth.net/oauth-transaction-tokens/draft-ietf-oauth-transaction-tokens.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-oauth-transaction-tokens/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/oauth-wg/oauth-transaction-tokens"/>.</t>
    </note>
  </front>
  <middle>
    <?line 121?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Modern computing architectures often use multiple independently running components called workloads. In many cases, external invocations through externally visible interfaces such as APIs result in a number of internal workloads being invoked in order to process the external invocation. These workloads often run in virtually or physically isolated networks. These networks and the workloads running within their perimeter may be compromised by attackers through software supply chain, privileged user compromise or other attacks. Workloads compromised through external attacks, malicious insiders or software errors can cause any or all of the following unauthorized actions:</t>
      <ul spacing="normal">
        <li>
          <t>Invocations of workloads in the network without any external invocation being present</t>
        </li>
        <li>
          <t>Arbitrary user impersonation</t>
        </li>
        <li>
          <t>Parameter modification or augmentation</t>
        </li>
      </ul>
      <t>The results of these actions are unauthorised access to resources.</t>
    </section>
    <section anchor="overview">
      <name>Overview</name>
      <t>Transaction Tokens (Txn-Token) are a means to mitigate damage from such attacks or spurious invocations. A valid Txn-Token indicates a valid external invocation.
They ensure that the identity of the user or a workload that made the external request is preserved throughout subsequent workload invocations.
They preserve any context such as:</t>
      <ul spacing="normal">
        <li>
          <t>Parameters of the original call</t>
        </li>
        <li>
          <t>Environmental factors, such as IP address of the original caller</t>
        </li>
        <li>
          <t>Any computed context that needs to be preserved in the call chain. This includes information that was not in the original request to the external endpoint.</t>
        </li>
      </ul>
      <t>Cryptographically protected Txn-Tokens ensure that downstream workloads cannot make unauthorized modifications to such information, and cannot make spurious calls without the presence of an external trigger.</t>
      <section anchor="what-are-transaction-tokens">
        <name>What are Transaction Tokens?</name>
        <t>Txn-Tokens are short-lived, signed JWTs <xref target="RFC7519"/> that assert the identity of a user or a workload and assert an authorization context. The authorization context provides information expected to remain constant during the execution of a call chain as it passes through multiple workloads.</t>
      </section>
      <section anchor="creating-txn-tokens">
        <name>Creating Txn-Tokens</name>
        <section anchor="initial-creation">
          <name>Initial Creation</name>
          <t>Txn-Tokens are typically created when a workload is invoked using an endpoint that is externally visible, and is authorized using a separate mechanism, such as an OAuth <xref target="RFC6749"/> access token or an OpenID Connect <xref target="OpenIdConnect"/> ID token. This workload then performs an OAuth 2.0 Token Exchange <xref target="RFC8693"/> to obtain a Txn-Token. To do this, it invokes a special Token Service (the Txn-Token Service) and provides context that is sufficient for it to generate a Txn-Token. This context MAY include:</t>
          <ul spacing="normal">
            <li>
              <t>The external authorization token (e.g., the OAuth access token)</t>
            </li>
            <li>
              <t>Parameters that are required to be bound for the duration of this call</t>
            </li>
            <li>
              <t>Additional context, such as the incoming IP address, User Agent information, or other context that can help the Txn-Token Service to issue the Txn-Token</t>
            </li>
          </ul>
          <t>The Txn-Token Service responds to a successful invocation by generating a Txn-Token. The calling workload then uses the Txn-Token to authorize its calls to subsequent workloads. Subsequent workloads may obtain Txn-Tokens of their own.</t>
          <t>If the requesting service does not have an inbound token that it can use in its request to the Txn-Token Service, it generates a self-signed JWT and passes that in the request in place of the external authorization token.</t>
        </section>
        <section anchor="replacement-txn-tokens">
          <name>Replacement Txn-Tokens</name>
          <t>A service within a call chain may choose to replace the Txn-Token. This can typically happen if the service wants to add to the context of the current Txn-Token</t>
          <t>To get a replacement Txn-Token, a service will request a new Txn-Token from the Txn-Token Service and provide the current Txn-Token and other parameters in the request. The Txn-Token service must exercise caution in what kinds of replacement requests it supports so as to not negate the entire value of Txn-Tokens.</t>
        </section>
      </section>
      <section anchor="txn-token-lifetime">
        <name>Txn-Token Lifetime</name>
        <t>Txn-Tokens are expected to be short-lived (order of minutes, e.g., 5 minutes), and as a result MAY be used only for the expected duration of an external invocation. Except in the case where the request is made using a self-signed JWT, if the token or other credential presented to the Txn-Token service when requesting a Txn-Token has an expiration time, then the Txn-Token MUST NOT exceed the lifetime of the originally presented token or credential. If a long-running process such as an batch or offline task is involved, it can use a separate mechanism to perform the external invocation, but the resulting Txn-Token is still short-lived.</t>
      </section>
      <section anchor="benefits-of-txn-tokens">
        <name>Benefits of Txn-Tokens</name>
        <t>Txn-Tokens help prevent spurious invocations by ensuring that a workload receiving an invocation can independently verify the user or workload on whose behalf an external call was made and any context relevant to the processing of the call.</t>
      </section>
      <section anchor="txn-token-issuance-and-usage-flows">
        <name>Txn-Token Issuance and Usage Flows</name>
        <section anchor="basic-flow">
          <name>Basic Flow</name>
          <t><xref target="fig-arch-basic"/> shows the basic flow of how Txn-Tokens are used in a multi-workload environment.</t>
          <figure anchor="fig-arch-basic">
            <name>Basic Transaction Tokens Architecture</name>
            <artwork type="ascii-art"><![CDATA[
     1    ┌──────────────┐    2      ┌──────────────┐
─────────▶│              ├───────────▶              │
          │   External   │           │  Txn-Token   │
     7    │   Endpoint   │    3      │   Service    │
◀─────────┤              ◀───────────│              │
          └────┬───▲─────┘           └──────────────┘
               │   │
             4 │   │ 6
          ┌────▼───┴─────┐
          │              │
          │   Internal   │
          │ Microservice │
          │              │
          └────┬───▲─────┘
               │   │
               ▼   │
                 o
             5   o    6
                 o
               │   ▲
               │   │
          ┌────▼───┴─────┐
          │              │
          │   Internal   │
          │ Microservice │
          │              │
          └──────────────┘
]]></artwork>
          </figure>
          <ol spacing="normal" type="1"><li>
              <t>External endpoint is invoked using conventional authorization mechanism such as an OAuth 2.0 Access token</t>
            </li>
            <li>
              <t>External endpoint provides context and incoming authorization (e.g., access token) to the Txn-Token Service</t>
            </li>
            <li>
              <t>Txn-Token Service mints a Txn-Token that provides immutable context for the transaction and returns it to the requester</t>
            </li>
            <li>
              <t>The external endpoint initiates a call to an internal microservice and provides the Txn-Token as authorization</t>
            </li>
            <li>
              <t>Subsequent calls to other internal microservices use the same Txn-Token to authorize calls</t>
            </li>
            <li>
              <t>Responses are provided to callers based on successful authorization by the invoked microservices</t>
            </li>
            <li>
              <t>External client is provided a response to the external invocation</t>
            </li>
          </ol>
        </section>
        <section anchor="replacement-txn-token-flow">
          <name>Replacement Txn-Token Flow</name>
          <t>An intermediate service may decide to obtain a replacement Txn-Token from the Txn-Token service. That flow is described below in <xref target="fig-arch-replacement"/></t>
          <figure anchor="fig-arch-replacement">
            <name>Replacement Txn-Token Flow</name>
            <artwork type="ascii-art"><![CDATA[
     1    ┌──────────────┐    2      ┌──────────────┐
─────────▶│              ├───────────▶              │
          │   External   │           │              │
     10   │   Endpoint   │    3      │              │
◀─────────┤              ◀───────────│              │
          └────┬───▲─────┘           │              │
               │   │                 │              │
             4 │   │ 9               │              │
          ┌────▼───┴─────┐           │              │
          │              │           │              │
          │   Internal   │           │              │
          │ Microservice │           │              │
          │              │           │              │
          └────┬───▲─────┘           │  Txn-Token   │
               │   │                 │   Service    │
               ▼   │                 │              │
                 o                   │              │
             5   o    9              │              │
               │ o ▲                 │              │
               │   │                 │              │
               │   │                 │              │
          ┌────▼───┴─────┐    6      │              │
          │              ├───────────▶              │
          │   Internal   │           │              │
          │ Microservice │    7      │              │
          │              ◀───────────│              │
          └────┬───▲─────┘           │              │
               │   │                 │              │
               ▼   │                 └──────────────┘
                 o
             8   o    9
                 o
               │   ▲
               │   │
          ┌────▼───┴─────┐
          │              │
          │   Internal   │
          │ Microservice │
          │              │
          └──────────────┘
]]></artwork>
          </figure>
          <t>In the diagram above, steps 1-5 are the same as in <xref target="basic-flow"/></t>
          <ol spacing="normal" type="1" start="6"><li>
              <t>An intermediate service determines that it needs to obtain a Replacement Txn-Token. It requests a Replacement Txn-Token from the Txn-Token Service. It passes the incoming Txn-Token in the request, along with any additional context it needs to send the Txn-Token Service.</t>
            </li>
            <li>
              <t>The Txn-Token Service responds with a replacement Txn-Token</t>
            </li>
            <li>
              <t>The service that requested the Replacement Txn-Token uses that Txn-Token for downstream call authorization</t>
            </li>
            <li>
              <t>Responses are provided to callers based on successful authorization by the invoked microservices</t>
            </li>
            <li>
              <t>External client is provided a response to the external invocation</t>
            </li>
          </ol>
        </section>
      </section>
    </section>
    <section anchor="notational-conventions">
      <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"/> <xref target="RFC8174"/> when, and only when,
they appear in all capitals, as shown here.</t>
    </section>
    <section anchor="terminology">
      <name>Terminology</name>
      <dl>
        <dt>Workload:</dt>
        <dd>
          <t>An independent computational unit that can autonomously receive and process invocations, and can generate invocations of other workloads. Examples of workloads include containerized microservices, monolithic services and infrastructure services such as managed databases.</t>
        </dd>
        <dt>Trust Domain:</dt>
        <dd>
          <t>A virtually or physically separated network, which contains two or more workloads. The workloads within an Trust Domain may be invoked only through published interfaces.</t>
        </dd>
        <dt>External Endpoint:</dt>
        <dd>
          <t>A published interface to an Trust Domain that results in the invocation of a workload within the Trust Domain.</t>
        </dd>
        <dt>Call Chain:</dt>
        <dd>
          <t>A sequence of invocations that results from the invocation of an external endpoint.</t>
        </dd>
        <dt>Transaction Token (Txn-Token):</dt>
        <dd>
          <t>A signed JWT that has a short lifetime, which provides immutable information about the user or workload, certain parameters of the call and certain contextual attributes of the call.</t>
        </dd>
        <dt>Authorization Context:</dt>
        <dd>
          <t>A JSON object containing a set of claims that represent the immutable context of a call chain.</t>
        </dd>
        <dt>Transaction Token Service (Txn-Token Service):</dt>
        <dd>
          <t>A special service within the Trust Domain, which issues Txn-Tokens to requesting workloads. Each Trust Domain that uses Txn-Tokens MUST have exactly one logical Txn-Token Service.</t>
        </dd>
      </dl>
    </section>
    <section anchor="txn-token-format">
      <name>Txn-Token Format</name>
      <t>A Txn-Token is a JSON Web Token <xref target="RFC7519"/> protected by a JSON Web Signature <xref target="RFC7515"/>. The following describes the required values in a Txn-Token:</t>
      <section anchor="txn-token-header">
        <name>JWT Header</name>
        <t>In the JWT Header:</t>
        <ul spacing="normal">
          <li>
            <t>The <tt>typ</tt> Header Parameter MUST be present and MUST have the value <tt>txntoken+jwt</tt>.</t>
          </li>
          <li>
            <t>Key rotation of the signing key SHOULD be supported through the use of a <tt>kid</tt> Header Parameter.</t>
          </li>
        </ul>
        <t><xref target="figtxtokenheader"/> is a non-normative example of the JWT Header of a Txn-Token</t>
        <figure anchor="figtxtokenheader">
          <name>Example: Txn-Token Header</name>
          <sourcecode type="json"><![CDATA[
{
    "typ": "txntoken+jwt",
    "alg": "RS256",
    "kid": "identifier-to-key"
}
]]></sourcecode>
        </figure>
      </section>
      <section anchor="txn-token-claims">
        <name>JWT Body Claims</name>
        <t>The transaction token body follows the JWT format and includes existing
JWT claims as well as defines new claims. These claims are described below:</t>
        <dl>
          <dt><tt>iss</tt>:</dt>
          <dd>
            <t>OPTIONAL The <tt>iss</tt> claim as defined in <xref target="RFC7519"/> is not required as Txn-Tokens are bound to a single trust domain as defined by the <tt>aud</tt> claim and often the signing keys are known. The <tt>iss</tt> claim MUST be used in cases where the signing keys are not predetermined or it is desired that the Txn-Token Service signs with unique keys.</t>
          </dd>
          <dt><tt>iat</tt>:</dt>
          <dd>
            <t>REQUIRED The issued at time of the Txn-Token as defined in <xref target="RFC7519"/></t>
          </dd>
          <dt><tt>aud</tt>:</dt>
          <dd>
            <t>REQUIRED This claim, defined in <xref target="RFC7519"/>, identifies the trust domain in which the Txn-Token is valid.  This identifier MUST uniquely identify the trust domain.</t>
          </dd>
          <dt><tt>exp</tt>:</dt>
          <dd>
            <t>REQUIRED Expiry time of the Txn-Token as defined in <xref target="RFC7519"/></t>
          </dd>
          <dt><tt>txn</tt>:</dt>
          <dd>
            <t>REQUIRED A unique transaction identifier as defined in Section 2.2 of <xref target="RFC8417"/>. When used in the transaction token, it identifies the entire call chain. It is strongly RECOMMENDED to provide an identifier unique within the trust domain. If providing such an identifier is not possible, then a fixed value of "N_A" MAY be supplied.</t>
          </dd>
          <dt><tt>sub</tt>:</dt>
          <dd>
            <t>REQUIRED A unique identifier for the subject within the context of the <tt>aud</tt> trust domain. Unlike OpenID Connect, the <tt>sub</tt> claim is NOT associated with the <tt>iss</tt> claim.</t>
          </dd>
          <dt><tt>purp</tt>:</dt>
          <dd>
            <t>REQUIRED A String defining the purpose or intent of this transaction.</t>
          </dd>
          <dt><tt>azd</tt>:</dt>
          <dd>
            <t>OPTIONAL A JSON object that conatains values that remain immutable throughout the call chain.</t>
          </dd>
          <dt><tt>rctx</tt>:</dt>
          <dd>
            <t>OPTIONAL A JSON object that describes the environmental context of the requested transaction.</t>
          </dd>
        </dl>
        <section anchor="purp-claim">
          <name>Purpose claim</name>
          <t>The <tt>purp</tt> claim captures the exact purpose of this particular transaction. This is often much narrower than a scope value issued to an external client. This is due to the fact that in most cases, the authorization model within the trust domain is quite different than the authorization model used with clients external to the trust domain. To that end, it is intentional to separate the concept of scope (often fairly coarse-grained) used with external clients from the purpose of the transaction used within the trust domain. How a given deployment represents the authorization model within the trust domain is out of scope for this specification.</t>
        </section>
        <section anchor="requester-context">
          <name>Requester Context</name>
          <t>The Txn-Token SHOULD contain an <tt>rctx</tt> claim. This MAY include the IP address information of the originating user, as well as information about the computational entity that requested the Txn-Token and contextual attributes of the originating request itself.</t>
          <t>The JSON value of the <tt>rctx</tt> claim MAY include any values the Txn-Token Service determines are interesting to downstream services that rely on the Txn-Token. The following claims are defined so that if they are included, they have the following meaning:</t>
          <ul spacing="normal">
            <li>
              <t><tt>req_ip</tt> The IP address of the requester. This MAY be the end-user or a robotic process that requested the Transaction</t>
            </li>
            <li>
              <t><tt>authn</tt> The authentication method used to idenitfy the requester. Its value is a StringOrURI that uniquely identifies the method used.</t>
            </li>
            <li>
              <t><tt>req_wl</tt> The requesting workload. A StringOrURI that uniquely identifies the computational entity that requested the Txn-Token. This entity MUST be within the Trust Domain of the Txn-Token. If a replacement Txn-Token has been requested, then this claim will be an array of StringOrURIs representing the different workloads that have requested Txn-Tokens as part of the transaction processing.</t>
            </li>
          </ul>
        </section>
        <section anchor="authorization-details">
          <name>Authorizaiton Details</name>
          <t>The Txn-Token SHOULD contain an <tt>azd</tt> claim. The value of this claim is a JSON object that contains name/value pairs (wherein the value could itself be an object), which together assert the details that remain immutable through the call-chain where this Txn-Token is used.</t>
          <t>Txn-Tokens are primarily used to assure identity and context for a transaction, and the content of this field is a critical part of that context.</t>
          <t>Whereas the <tt>rctx</tt> field contains environmental values related to the request, the <tt>azd</tt> field contains the actual authorizaiton details that are determined by the TTS. These values are used by services using the Txn-Token to reliably obtain specific parameters needed to perform their work. The content of the <tt>azd</tt> field is determined by the Txn-Token Service and they may be computed internally or from parameters it receives from the service that requests the Txn-Token.</t>
          <t>The following is a non-normative example of an <tt>azd</tt> claim:</t>
          <sourcecode type="json"><![CDATA[
"azd": {
  "action": "BUY", // parameter of external call
  "ticker": "MSFT", // parameter of external call
  "quantity": "100", // parameter of external call
  "customer_type": { // computed value not present in external call
    "geo": "US",
    "level": "VIP"
  }
}
]]></sourcecode>
          <section anchor="requesting-workload-identifier">
            <name>Requesting Workload Identifier</name>
            <t>It is useful to be able to track the set of workloads that have requested a Txn-Token. The <tt>req_wl</tt> claim allows for tracking this information even through requests for a replacement Txn-Token. By default the <tt>req_wl</tt> is a StringOrURI representing the original workload entity that requested the Txn-Token. However, if a workload within the path of servicing the transaction requests a replacement Txn-Token, then the Transaction Token Service will append the new requesting workload as a subsequent array element in the <tt>req_wl</tt> claim. This provides a "pathing" mechanism to track which services have requested replacement Txn-Tokens. If there is only a single value the <tt>req_wl</tt> will be a StringOrURI. If there is more than a single value, then <tt>req_wl</tt> will be prepresented by an array of StringOrURIs.</t>
            <sourcecode type="json"><![CDATA[
{
    "rctx": {
      "req_ip": "69.151.72.123", // env context of external call
      "authn": "urn:ietf:rfc:6749", // env context of the external call
      "req_wl": [ "apigateway.trust-domain.example", "workload3.trust-domain.example" ]
    }
}
]]></sourcecode>
          </section>
        </section>
        <section anchor="example">
          <name>Example</name>
          <t>The figure below <xref target="figleaftxtokenbody"/> shows a non-normative example of the JWT body of a Txn-Token:</t>
          <figure anchor="figleaftxtokenbody">
            <name>Example: Txn-Token Body</name>
            <sourcecode type="json"><![CDATA[
{
  "iat": "1686536226000",
  "aud": "trust-domain.example",
  "exp": "1686536526000",
  "txn": "97053963-771d-49cc-a4e3-20aad399c312",
  "sub": "d084sdrt234fsaw34tr23t",
  "rctx": {
    "req_ip": "69.151.72.123", // env context of external call
    "authn": "urn:ietf:rfc:6749", // env context of the external call
    "req_wl": "apigateway.trust-domain.example" // the internal entity that requested the Txn-Token
  },
  "purp" : "trade.stocks",
  "azd": {
    "action": "BUY", // parameter of external call
    "ticker": "MSFT", // parameter of external call
    "quantity": "100", // parameter of external call
    "customer_type": { // computed value not present in external call
      "geo": "US",
      "level": "VIP"
    }
  }
}
]]></sourcecode>
          </figure>
        </section>
      </section>
    </section>
    <section anchor="txn-token-service">
      <name>Txn-Token Service</name>
      <t>A Txn-Token Service defines a profile of the OAuth 2.0 Token Exchange <xref target="RFC8693"/> endpoint that can respond to Txn-Token issuance requests. This profile of the OAuth 2.0 Token Exchange <xref target="RFC8693"/> specification MUST be used to obtain Txn-Tokens. The unique properties of the Txn-Token requests and responses are described below. The Txn-Token Service MAY optionally support other OAuth 2.0 endpoints and features, but that is not a requirement for it to be a Txn-Token Service.</t>
      <t>Each Trust Domain that uses Txn-Tokens MUST have exactly one logical Txn-Token Service.</t>
    </section>
    <section anchor="requesting-txn-tokens">
      <name>Requesting Txn-Tokens</name>
      <t>A workload requests a Txn-Token from a Transaction Token Service using a profile of the OAuth 2.0 Token Exchange <xref target="RFC8693"/>. Txn-Tokens may be requested for both externally originating or internally originating requests. The profile describes how required and optional context can be provided to the Transaction Token Service in order for the Txn-Token to be issued. The request to obtain a Txn-Token using this method is called a Txn-Token Request, and a successful response is called a Txn-Token Response. The Txn-Token profile of the OAuth 2.0 Token Exchange <xref target="RFC8693"/> is described below.</t>
      <section anchor="txn-token-request">
        <name>Txn-Token Request</name>
        <t>A workload requesting a Txn-Token must provide the Transaction Token Service with proof of its identity (client authentication), the purpose of the Txn-Token and optionally any additional context relating to the transaction being performed. Most of these elements are provided by the OAuth 2.0 Token Exchange specification and the rest are defined as new parameters. Additionally, this profile defines a new token type URN <tt>urn:ietf:params:oauth:token-type:txn_token</tt> which is used by the requesting workload to identify that it is requesting the Txn-Token Response to contain a Txn-Token.</t>
        <t>To request a Txn-Token the workload invokes the OAuth 2.0 <xref target="RFC6749"/> token endpoint with the following parameters:</t>
        <ul spacing="normal">
          <li>
            <t><tt>grant_type</tt> REQUIRED. The value MUST be set to <tt>urn:ietf:params:oauth:grant-type:token-exchange</tt></t>
          </li>
          <li>
            <t><tt>audience</tt> REQUIRED. The value MUST be set to the Trust Domain name</t>
          </li>
          <li>
            <t><tt>scope</tt> REQUIRED. A space-delimited list of case-sensitive strings where the value(s) MUST represent the specific purpose or intent of the transaction.</t>
          </li>
          <li>
            <t><tt>requested_token_type</tt> REQUIRED. The value MUST be <tt>urn:ietf:params:oauth:token-type:txn_token</tt></t>
          </li>
          <li>
            <t><tt>subject_token</tt> REQUIRED. The value MUST represent the subject of the transaction. This could be an inbound token received by an API Gateway, or a self-signed JWT constructed by a workload initiating a transaction, the type of which is identified by <tt>subject_token_type</tt>.</t>
          </li>
          <li>
            <t><tt>subject_token_type</tt> REQUIRED. The value MUST indicate the type of the token or value present in the <tt>subject_token</tt> parameter</t>
          </li>
        </ul>
        <t>The following additional parameters MAY be present in a Txn-Token Request:</t>
        <ul spacing="normal">
          <li>
            <t><tt>request_context</tt> OPTIONAL. This parameter contains a base64url encoded JSON object which represents the context of this transaction. The parameter SHOULD be present and how the Transaction Token Service uses this parameter is out of scope for this specification.</t>
          </li>
          <li>
            <t><tt>request_details</tt> OPTIONAL. This parameter contains a base64url encoded JSON object which represents additional details of the transaction that MUST remain immutable throughout the processing of the transaction by multiple workloads.</t>
          </li>
        </ul>
        <t>The requesting workload MUST authenticate its identity to the Transaction Token Service. The exact client authentication mechanism used is outside the scope of this specification.</t>
        <t>The figure below <xref target="figtxtokenrequest"/> shows a non-normative example of a Txn-Token Request.</t>
        <figure anchor="figtxtokenrequest">
          <name>Example: Txn-Token Request</name>
          <sourcecode type="http"><![CDATA[
POST /txn-token-service/token_endpoint HTTP 1.1
Host: txn-token-service.trust-domain.example
Content-Type: application/x-www-form-urlencoded

grant_type=urn%3Aietf%3Aparams%3Aoauth%3Agrant-type%3Atoken-exchange
&requested_token_type=urn%3Aietf%3Aparams%3Aoauth%3Atoken-type%3Atxn-token
&audience=http%3A%2F%2Ftrust-domain.example
&scope=finance.watchlist.add
&subject_token=eyJhbGciOiJFUzI1NiIsImtpZC...kdXjwhw
&subject_token_type=urn%3Aietf%3Aparams%3Aoauth%3Atoken-type%3Aaccess_token
&request_context=eyAiaXBfYWRkcmVzcyI6ICIxMjcuMC4wLjEiLCAiY2xpZW50IjogIm1vYmlsZS1hcHAiLCAiY2xpZW50X3ZlcnNpb24iOiAidjExIiB9
]]></sourcecode>
        </figure>
      </section>
      <section anchor="subject-token-types">
        <name>Subject Token Types</name>
        <t>The <tt>subject_token_type</tt> parameter value MUST be a URI <xref target="RFC3986"/>. It MAY be any one of the subject token types described in Section 3 of OAuth 2.0 Token Exchange <xref target="RFC8693"/> except the Refresh Token type (i.e., <tt>urn:ietf:params:oauth:token-type:refresh_token</tt>), or it MAY be a self-signed JWT, as described below, or it MAY be a custom URI agreed to between requesters and the Txn-Token Service.</t>
        <t>The Txn-Token Service MAY support other token formats, which MAY be specified in the <tt>subject_token_type</tt> parameter. Any value used in this parameter MUST be a URI as specified in RFC 8693 <xref target="RFC8693"/>.</t>
        <section anchor="self-signed-subject-token-type">
          <name>Self-Signed Subject Token Type</name>
          <t>A requester MAY use a self-signed JWT as a <tt>subject_token</tt> value. In that case, the requester MUST set the <tt>subject_token_type</tt> value to: <tt>urn:ietf:params:oauth:token-type:self_signed</tt>. This self-signed JWT MUST contain the following claims:</t>
          <ul spacing="normal">
            <li>
              <t><tt>iss</tt>: The unique identifier of the requesting workload. The Txn-Token Service SHALL use this value in determining the <tt>req_wl</tt> value in the Txn-Token issued in response to this request.</t>
            </li>
            <li>
              <t><tt>sub</tt>: The subject for whom the Txn-Token is being requested. The Txn-Token Service SHALL use this value in determining the <tt>sub</tt> value in the Txn-Token issued in the response to this request.</t>
            </li>
            <li>
              <t><tt>aud</tt>: The unique identifier of the Txn-Token Service. The Txn-Token Service SHALL verify that this value matches its own unique identifier.</t>
            </li>
            <li>
              <t><tt>iat</tt>: The time at which the self-signed JWT was created. Note that the Txn-Token Service may reject self-signed tokens with an <tt>iat</tt> value that is unreasonably far in the past or future.</t>
            </li>
            <li>
              <t><tt>exp</tt>: The expiration time for the JWT. This should be a very short duration (order of seconds) in order to prevent any abuse of the JWT.</t>
            </li>
          </ul>
          <t>The self-signed JWT MAY contain other claims.</t>
        </section>
      </section>
      <section anchor="txn-token-request-processing">
        <name>Txn-Token Request Processing</name>
        <t>When the Transaction Token Service receives a Txn-Token Request it MUST validate the requesting workload client authentication and determine if that workload is authorized to obtain the Txn-Tokens with the requested values. The authorization policy for determining such issuance is out of scope for this specification.</t>
        <t>Next, the Transaction Token Service MUST validate the <tt>subject_token</tt> and determine the value to specify as the <tt>sub</tt> of the issued Txn-Token. The Txn-Token Service MUST ensure the <tt>sub</tt> value is unique within the trust domain defined by the <tt>aud</tt> claim.</t>
        <t>The Transaction Token Service MUST set the <tt>iat</tt> claim to the time of issuance of the Txn-Token.
The Transaction Token Service MUST set the <tt>aud</tt> claim to an identifier representing the Trust Domain of the Transaction Token Service. If the Transaction Token Service supports multiple trust domains, then it MUST determine the correct <tt>aud</tt> value for this request.
The Transaction Token Service MUST set the <tt>exp</tt> claim to the expiry time of the Txn-Token.
The Transaction Token Service MUST set the <tt>txn</tt> claim to a unique ID specific to this transaction.</t>
        <t>The Transaction Token Service MAY set the <tt>iss</tt> claim of the Txn-Token to a value defining the entity that signed the Txn-Token. This claim MUST be ommitted if not set.</t>
        <t>The Transaction Token Service MUST evaluate the value specified in the <tt>scope</tt> parameter of the request to determine the <tt>purp</tt> claim of the issued Txn-Token.</t>
        <t>If a <tt>request_context</tt> parameter is present in the Txn-Token Request, the data SHOULD be added to the <tt>rctx</tt> object of the Txn-Token. In addition, the Transaction Token Service SHOULD add the authenticated requesting workload identifier in the <tt>rctx</tt> object as the <tt>req_wl</tt> claim.</t>
        <t>If a <tt>request_details</tt> parameter is present in the Txn-Token Request, then the Transaction Token Service SHOULD propagate the data from the <tt>request_details</tt> object into the claims in the <tt>azd</tt> object as authorized by the Transaction Token Service authorization policy for the requesting client.</t>
        <t>The Transaction Token Service MAY provide additional processing and verification that is outside the scope of this specification.</t>
      </section>
      <section anchor="txn-token-response">
        <name>Txn-Token Response</name>
        <t>A successful response to a Txn-Token Request by a Transaction Token Service is called a Txn-Token Response. If the Transaction Token Service responds with an error, the error response is as described in Section 5.2 of <xref target="RFC6749"/>. The following describes required values of a Txn-Token Response:</t>
        <ul spacing="normal">
          <li>
            <t>The <tt>token_type</tt> value MUST be set to <tt>N_A</tt> per guidance in OAuth 2.0 Token Exchange <xref target="RFC8693"/></t>
          </li>
          <li>
            <t>The <tt>access_token</tt> value MUST be the Txn-Token JWT</t>
          </li>
          <li>
            <t>The <tt>issued_token_type</tt> value MUST bet set to <tt>urn:ietf:params:oauth:token-type:txn_token</tt></t>
          </li>
          <li>
            <t>The response MUST NOT include the values <tt>expires_in</tt>, <tt>refresh_token</tt> and <tt>scope</tt></t>
          </li>
        </ul>
        <t><xref target="figtxtokenresponse"/> shows a non-normative example of a Txn-Token Response.</t>
        <figure anchor="figtxtokenresponse">
          <name>Example: Txn-Token Response</name>
          <sourcecode type="http"><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-cache, no-store

{
  "token_type": "N_A",
  "issued_token_type": "urn:ietf:params:oauth:token-type:txn_token",
  "access_token": "eyJCI6IjllciJ9...Qedw6rx"
}
]]></sourcecode>
        </figure>
      </section>
      <section anchor="creating-replacement-txn-tokens">
        <name>Creating Replacement Txn-Tokens</name>
        <t>A workload within a call chain may request the Transaction Token Server to replace a Txn-Token.</t>
        <t>Workloads MAY request replacement Txn-Tokens in order to change (add to, remove or modify) the asserted values within a Txn-Token.</t>
        <t>The values of the <tt>sub</tt> and <tt>aud</tt> claims MUST remain unchanged in a replacement Txn-Token. If the claim <tt>rctx</tt> is present in the original Txn-Token, then it MUST be present and unchanged in the replacement Txn-Token except for the <tt>req_wl</tt> claim which MUST be updated to include the requesting workload identifier.</t>
        <section anchor="txn-token-service-responsibilities">
          <name>Txn-Token Service Responsibilities</name>
          <t>When issuing replacement Txn-Tokens, a Txn-Token Service:</t>
          <ul spacing="normal">
            <li>
              <t>MAY enable modifications to asserted values that reduce the scope of permitted actions</t>
            </li>
            <li>
              <t>MAY enable additional asserted values</t>
            </li>
            <li>
              <t>SHOULD NOT enable modification to asserted values that expand the scope of permitted actions</t>
            </li>
            <li>
              <t>MUST NOT modify <tt>sub</tt> and <tt>aud</tt> values of the Txn-Token in the request</t>
            </li>
            <li>
              <t>MUST NOT remove any of the existing requesting workload identifiers from the <tt>req_wl</tt> field in the <tt>rctx</tt> claim of the Txn-Token</t>
            </li>
          </ul>
        </section>
        <section anchor="replacement-txn-token-request">
          <name>Replacement Txn-Token Request</name>
          <t>To request a replacement Txn-Token, the requester makes a Txn-Token Request as described in <xref target="txn-token-request"/> but includes the Txn-Token to be replaced as the value of the <tt>subject_token</tt> parameter. The <tt>scope</tt> value in the replacement request, if different from that in the original Txn-Token, MUST NOT increase the authorization surface beyond that of the original Txn-Token.</t>
        </section>
        <section anchor="replacement-txn-token-response">
          <name>Replacement Txn-Token Response</name>
          <t>A successful response by the Txn-Token Service to a Replacement Txn-Token Request is a Txn-Token Response as described in <xref target="txn-token-response"/></t>
        </section>
      </section>
      <section anchor="mutual-authentication-of-the-txn-token-request">
        <name>Mutual Authentication of the Txn-Token Request</name>
        <t>A Txn-Token Service MUST ensure that it authenticates any workloads requesting Txn-Tokens. In order to do so:</t>
        <ul spacing="normal">
          <li>
            <t>It MUST name a limited, pre-configured set of workloads that MAY request Txn-Tokens</t>
          </li>
          <li>
            <t>It MUST individually authenticate the requester as being one of the named requesters</t>
          </li>
          <li>
            <t>It SHOULD rely on mechanisms, such as <xref target="SPIFFE"/> used in conjunction with MTLS <xref target="RFC8446"/>, or some other means of performing MTLS, to securely authenticate the requester</t>
          </li>
          <li>
            <t>It SHOULD NOT rely on insecure mechanisms, such as long-lived shared secrets to authenticate the requesters</t>
          </li>
        </ul>
        <t>The requesting workload MUST have a pre-configured location for the Transaction Token Service. It SHOULD rely on mechanisms, such as <xref target="SPIFFE"/>, to securely authenticate the Transaction Token Service before making a Txn-Token Request.</t>
      </section>
    </section>
    <section anchor="using-txn-tokens">
      <name>Using Txn-Tokens</name>
      <t>Txn-Tokens need to be communicated between workloads that depend upon them to authorize the request. Such workloads will often present HTTP <xref target="RFC9110"/> interfaces for being invoked by other workloads. This section specifies the HTTP header the invoking workload MUST use to communicate the Txn-Token to the invoked workload, when the invoked workload presents an HTTP interface. Note that the standard HTTP <tt>Authorization</tt> header MUST NOT be used because that may be used by the workloads to communicate channel authorization.</t>
      <section anchor="txn-token-http-header">
        <name>Txn-Token HTTP Header</name>
        <t>A workload that invokes another workload using HTTP and needs to present a Txn-Token to the invoked workload MUST use the HTTP Header <tt>Txn-Token</tt> to communicate the Txn-Token. The value of this header MUST be the JWT that represents the Txn-Token.</t>
      </section>
    </section>
    <section anchor="Security">
      <name>Security Considerations</name>
      <section anchor="txn-token-lifetime-1">
        <name>Txn-Token Lifetime</name>
        <t>A Txn-Token is not resistant to replay attacks. A long-lived Txn-Token therefore represents a risk if it is stored in a file, discovered by an attacker, and then replayed. For this reason, a Txn-Token lifetime must be kept short, not exceeding the lifetime of a call-chain. Even for long-running "batch" jobs, a longer lived access token should be used to initiate the request to the batch endpoint. It then obtains short-lived Txn-Tokens that may be used to authorize the call to downstream services in the call-chain.</t>
        <t>Because Txn-Tokens are short-lived, the Txn-Token response from the Txn-Token service does not contain the <tt>refresh_token</tt> field. A Txn-Token cannot be issued by presenting a <tt>refresh_token</tt>.</t>
        <t>The <tt>expires_in</tt> and <tt>scope</tt> fields of the OAuth 2.0 Token Exchange specification <xref target="RFC8693"/> are also not used in Txn-Token responses. The <tt>expires_in</tt> is not required since the issued token has an <tt>exp</tt> field, which indicates the token lifetime. The <tt>scope</tt> field is omitted from the response in favor of the <tt>purp</tt> claim in the Txn-Token.</t>
      </section>
      <section anchor="access-tokens">
        <name>Access Tokens</name>
        <t>When creating Txn-Tokens, the Txn-Token MUST NOT contain the Access Token presented to the external endpoint. If an Access Token is included in a Txn-Token, an attacker may extract the Access Token from the Txn-Token, and replay it to any Resource Server that can accept that Access Token. Txn-Token expiry does not protect against this attack since the Access Token may remain valid even after the Txn-Token has expired.</t>
      </section>
      <section anchor="client-authentication">
        <name>Client Authentication</name>
        <t>How requesting clients authenticate to the Transaction Token Service is out of scope for this specification. However, if using the <tt>actor_token</tt> and <tt>actor_token_type</tt> parameters of the OAuth 2.0 Token Exchange specification, both parameters MUST be present in the request. The <tt>actor_token</tt> MUST authenticate the identity of the requesting workload.</t>
      </section>
      <section anchor="replacement-tokens">
        <name>Replacement Tokens</name>
        <t>Validation of a replacement Txn-Token, as well as any Txn-Token, is critical to the security of the entire transaction invocation sequence. Only Txn-Tokens issued by a trusted Transaction Token Service may be trusted, so verification of the Txn-Token signature is required. For replacement transaction tokens, not only must the JWT signature be verified but also the workload identity of the workload requesting the replacement Txn-Token.</t>
      </section>
      <section anchor="scope-and-purpose-processing">
        <name>Scope and Purpose processing</name>
        <t>The authorization model within a trust domain boundary is most often quite different from the authorization model (e.g. OAuth scopes) used with client external to the trust domain. This makes managing unintentional scope increase a critical aspect of the Transaction Token Service. The TTS MUST ensure that the requested purpose (<tt>scope</tt>) of the Txn-Token is equal or less than the scope(s) identified in the <tt>subject_token</tt>. This is also true of requesting a replacement Txn-Token. The TTS MUST ensure there is not unintentional increase in authorization scope.</t>
      </section>
    </section>
    <section anchor="Privacy">
      <name>Privacy Considerations</name>
      <section anchor="obsfucation-of-personal-information">
        <name>Obsfucation of Personal Information</name>
        <t>Some <tt>rctx</tt> claims may be considered personal information in some jurisdictions
and if so their values need to be obsfucated. For example, originating IP address
(<tt>req_ip</tt>) is often considerd personal information and in that case must be
protected through some obsfucation method (e.g. salted SHA256).</t>
      </section>
      <section anchor="logging">
        <name>Logging</name>
        <t>Txn-Tokens SHOULD NOT be logged if they contain Personally Identifiable Information (PII). What constitutes PII depends upon the use case, but in some cases even an email address (which could be a <tt>sub</tt> value) can be protected PII, which should not be logged.</t>
      </section>
    </section>
    <section anchor="IANA">
      <name>IANA Considerations</name>
      <t>This specification registers the following token type identifiers to the "OAuth URI" subregistry of the "OAuth Parameters" <xref target="IANA.OAuth.Parameters"/> registry. It also registers the following claims defined in Section <xref target="txn-token-claims"/> in the IANA JSON Web Token Claims Registry defined in <xref target="RFC7519"/>. It also registers the Media Type <xref target="IANA.MediaTypes"/> "txntoken+jwt" as defined in the section <xref target="txn-token-header"/>.</t>
      <section anchor="oauth-uri-subregistry-contents">
        <name>OAuth URI Subregistry Contents</name>
        <ul spacing="normal">
          <li>
            <t>URN: urn:ietf:params:oauth:token-type:txn_token</t>
          </li>
          <li>
            <t>Common Name: Transaction Token</t>
          </li>
          <li>
            <t>Change Controller: IESG</t>
          </li>
          <li>
            <t>Specification Document Section <xref target="txn-token-request"/> of this specification</t>
          </li>
          <li>
            <t>URN: urn:ietf:params:oauth:token-type:self_signed</t>
          </li>
          <li>
            <t>Common Name: Token type for Self-signed JWT</t>
          </li>
          <li>
            <t>Change Controller: IESG</t>
          </li>
          <li>
            <t>Specification Document: Section <xref target="subject-token-types"/> of this specification</t>
          </li>
        </ul>
      </section>
      <section anchor="jwt-claims-registry-contents">
        <name>JWT Claims Registry Contents</name>
        <ul spacing="normal">
          <li>
            <t>Claim Name: <tt>azd</tt>
            </t>
            <ul spacing="normal">
              <li>
                <t>Claim Description: The authorization context details</t>
              </li>
              <li>
                <t>Change Controller: IESG</t>
              </li>
              <li>
                <t>Specification Document: Section <xref target="txn-token-claims"/> of this specification</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Claim Name: <tt>rctx</tt>
            </t>
            <ul spacing="normal">
              <li>
                <t>Claim Description: The requester context</t>
              </li>
              <li>
                <t>Change Controller: IESG</t>
              </li>
              <li>
                <t>Specification Document: Section <xref target="requester-context"/> of this specification</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Claim Name: <tt>purp</tt>
            </t>
            <ul spacing="normal">
              <li>
                <t>Claim Description: The purpose of the transaction</t>
              </li>
              <li>
                <t>Change Controller: IESG</t>
              </li>
              <li>
                <t>Specification Document: Section <xref target="txn-token-claims"/> of this specification</t>
              </li>
            </ul>
          </li>
        </ul>
      </section>
      <section anchor="iana-media-type-registration-contents">
        <name>IANA Media Type Registration Contents</name>
        <t>The following entry will be proposed using the IANA Media Type registration <xref target="IANA.MediaTypes"/> form.</t>
        <ul spacing="normal">
          <li>
            <t>Applicant Name: Atul Tulshibagwale</t>
          </li>
          <li>
            <t>Applicant Email: atul@sgnl.ai</t>
          </li>
          <li>
            <t>Type Name: "application (RFC 2046)"</t>
          </li>
          <li>
            <t>Subtype Name: "txntoken+jwt"</t>
          </li>
          <li>
            <t>Required Parameters: "N/A."</t>
          </li>
          <li>
            <t>Optional Parameters: "N/A."</t>
          </li>
          <li>
            <t>Encoding Considerations: 7-bit text</t>
          </li>
          <li>
            <t>Security Considerations:
            </t>
            <ol spacing="normal" type="1"><li>
                <t>The media type is used to identify JWTs that may be used as Transaction Tokens. It is a piece of data, and may not contain executable content.</t>
              </li>
              <li>
                <t>Transaction Tokens are short-lived tokens used within a trusted environment, so there are no privacy considerations. Transaction Tokens are unmodifiable tokens, which need integrity protection.</t>
              </li>
              <li>
                <t>The JWTs representing Transaction Tokens are signed, and therefore are integrity protected. A recipient of a Transaction Token must verify the signature on the Transaction Token before using it.</t>
              </li>
              <li>
                <t>There are no additional security considerations specific to the use of JWTs as Transaction Tokens</t>
              </li>
              <li>
                <t>The Transaction Tokens format does not require the use of links within the token. If links are used by specific instances of Transaction Tokens, then their interpretation is usage specific</t>
              </li>
            </ol>
          </li>
          <li>
            <t>Interoperability Considerations: Transaction Tokens inherit all interoperability properties of JWTs.</t>
          </li>
          <li>
            <t>Published Specification: this document (when published)</t>
          </li>
          <li>
            <t>Application Usage: Any application supporting the use of JWTs</t>
          </li>
          <li>
            <t>Frabment Identifier Consideration: N/A.</t>
          </li>
          <li>
            <t>Restrictions on Usage: Any application supporting the use of JWTs</t>
          </li>
          <li>
            <t>Intended Usage: Common</t>
          </li>
          <li>
            <t>Contact Person: Atul Tulshibagwale</t>
          </li>
        </ul>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC2119" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC3986">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <author fullname="L. Masinter" initials="L." surname="Masinter"/>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource. This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet. The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier. This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <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="RFC6749" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6749.xml">
          <front>
            <title>The OAuth 2.0 Authorization Framework</title>
            <author fullname="D. Hardt" initials="D." role="editor" surname="Hardt"/>
            <date month="October" year="2012"/>
            <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="RFC7519" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7519.xml">
          <front>
            <title>JSON Web Token (JWT)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties. The claims in a JWT are encoded as a JSON object that is used as the payload of a JSON Web Signature (JWS) structure or as the plaintext of a JSON Web Encryption (JWE) structure, enabling the claims to be digitally signed or integrity protected with a Message Authentication Code (MAC) and/or encrypted.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7519"/>
          <seriesInfo name="DOI" value="10.17487/RFC7519"/>
        </reference>
        <reference anchor="RFC7515">
          <front>
            <title>JSON Web Signature (JWS)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>JSON Web Signature (JWS) represents content secured with digital signatures or Message Authentication Codes (MACs) using JSON-based data structures. Cryptographic algorithms and identifiers for use with this specification are described in the separate JSON Web Algorithms (JWA) specification and an IANA registry defined by that specification. Related encryption capabilities are described in the separate JSON Web Encryption (JWE) specification.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7515"/>
          <seriesInfo name="DOI" value="10.17487/RFC7515"/>
        </reference>
        <reference anchor="RFC8174" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8174.xml">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC8693">
          <front>
            <title>OAuth 2.0 Token Exchange</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="A. Nadalin" initials="A." surname="Nadalin"/>
            <author fullname="B. Campbell" initials="B." role="editor" surname="Campbell"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="C. Mortimore" initials="C." surname="Mortimore"/>
            <date month="January" year="2020"/>
            <abstract>
              <t>This specification defines a protocol for an HTTP- and JSON-based Security Token Service (STS) by defining how to request and obtain security tokens from OAuth 2.0 authorization servers, including security tokens employing impersonation and delegation.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8693"/>
          <seriesInfo name="DOI" value="10.17487/RFC8693"/>
        </reference>
        <reference anchor="RFC8417" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8417.xml">
          <front>
            <title>Security Event Token (SET)</title>
            <author fullname="P. Hunt" initials="P." role="editor" surname="Hunt"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="W. Denniss" initials="W." surname="Denniss"/>
            <author fullname="M. Ansari" initials="M." surname="Ansari"/>
            <date month="July" year="2018"/>
            <abstract>
              <t>This specification defines the Security Event Token (SET) data structure. A SET describes statements of fact from the perspective of an issuer about a subject. These statements of fact represent an event that occurred directly to or about a security subject, for example, a statement about the issuance or revocation of a token on behalf of a subject. This specification is intended to enable representing security- and identity-related events. A SET is a JSON Web Token (JWT), which can be optionally signed and/or encrypted. SETs can be distributed via protocols such as HTTP.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8417"/>
          <seriesInfo name="DOI" value="10.17487/RFC8417"/>
        </reference>
        <reference anchor="RFC9068">
          <front>
            <title>JSON Web Token (JWT) Profile for OAuth 2.0 Access Tokens</title>
            <author fullname="V. Bertocci" initials="V." surname="Bertocci"/>
            <date month="October" year="2021"/>
            <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="RFC9110" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9110.xml">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="IANA.OAuth.Parameters" target="https://www.iana.org/assignments/oauth-parameters">
          <front>
            <title>OAuth Parameters</title>
            <author initials="" surname="IANA" fullname="IANA">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="IANA.MediaTypes" target="http://www.iana.org/assignments/media-types">
          <front>
            <title>Media Types</title>
            <author initials="" surname="IANA" fullname="IANA">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="OpenIdConnect" target="https://openid.net/specs/openid-connect-core-1_0.html">
          <front>
            <title>OpenID Connect Core 1.0 incorporating errata set 1</title>
            <author initials="N." surname="Sakimura" fullname="Nat Sakimura">
              <organization>NRI</organization>
            </author>
            <author initials="J." surname="Bradley" fullname="John Bradley">
              <organization>Ping Identity</organization>
            </author>
            <author initials="M." surname="Jones" fullname="Mike Jones">
              <organization>Microsoft</organization>
            </author>
            <author initials="B. de" surname="Medeiros" fullname="B. de Medeiros">
              <organization>Google</organization>
            </author>
            <author initials="C." surname="Mortimore" fullname="Chuck Mortimore">
              <organization>Salesforce</organization>
            </author>
            <date year="2014" month="November"/>
          </front>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="SPIFFE" target="https://spiffe.io/docs/latest/spiffe-about/overview/">
          <front>
            <title>Secure Production Identity Framework for Everyone</title>
            <author>
              <organization>Cloud Native Computing Foundation</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
      </references>
    </references>
    <?line 666?>

<section numbered="false" anchor="Acknowledgements">
      <name>Acknowledgements</name>
    </section>
    <section anchor="contributors" numbered="false" toc="include" removeInRFC="false">
      <name>Contributors</name>
      <contact initials="K." surname="Burgin" fullname="Dr. Kelley W. Burgin, PhD.">
        <organization>MITRE Corporation</organization>
        <address>
          <email>kburgin@mitre.org</email>
        </address>
      </contact>
      <contact initials="B." surname="Campbell" fullname="Brian Campbell">
        <organization>Ping Identity</organization>
        <address>
          <email>bcampbell@pingidentity.com</email>
        </address>
      </contact>
      <contact initials="E." surname="Gilman" fullname="Evan Gilman">
        <organization>SPIRL</organization>
        <address>
          <email>evan@spirl.com</email>
        </address>
      </contact>
      <contact initials="K." surname="Lehmann" fullname="Kai Lehmann">
        <organization>1&amp;1 Mail &amp; Media Development &amp; Technology GmbH</organization>
        <address>
          <email>kai.lehmann@1und1.de</email>
        </address>
      </contact>
      <contact initials="A." surname="Schwenkschuster" fullname="Arndt Schwenkschuster">
        <organization>Microsoft</organization>
        <address>
          <email>arndts@microsoft.com</email>
        </address>
      </contact>
      <contact initials="H." surname="Tschofenig" fullname="Hannes Tschofenig">
        <organization>Arm Ltd.</organization>
        <address>
          <email>Hannes.Tschofenig@arm.com</email>
        </address>
      </contact>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+19TW8bSZbgnb8iIWMKVi9Ji7IslwkUpmhZLrPKHxpLbnf1
YmAlM4NkWslMdmZSlNpQYzHnPeyhUDuHOc5xT4PFnObX1C/Z9xVfmUlKdlU3
sINpFNpiZkbEixcv3ne86PV6nbIKs/hDmOaZGgZVsVKdZFnQX2W1v7f3ZG+/
E4XVMEiyaR7cC47mKrrolKvJIinLJM+q6yW0Gx+fPe+EhQqHQamizno2DPJw
Vc07nTiPsnABn8RFOK16iaqmPXrVq4owK8Oogk56VX6hsrIHY12qbKWGnSCY
JdV8NRkGO/z1evZgU7Md+DoNK1UClDvzqlqWwwcPaLiyT236mao2tn5wB8D6
82qR7nQ6VVKlMJUz+0FwRh90wsmkUJfw6irryaM0zAANKutcrHE+veBVEhV5
qYrLJFIlPXkzQhzhX9+/P6N/abxAXUVzaK0694IYJjYM9vf29wE78F/Q69Gz
ICmDaZKmKoaVCQDufBFWSRSm6XUwuQ6uFul+MY2CZBpkeQXIBLx2cHZ5Mez0
oEk5DEb94GyVlvNkEs7WYaoAAF6qUbVKG6/yAmZz+t3rl/C3WoRJOgxC+O7b
cpal/TDp6F6/6wfPU1VFc1WYDr9T0Fq5z6m3o3CZVGEavMmU7XRG3/an8u23
EX8E5NmP8oUZ5qQf/BCWpUoXYWbGOYFVVIX3ggZizOfTyg6zpE/7F/rTbxf6
Gx4mAtIukgng1SLsh37wdFXMEjvgswLAULAK18F7/bIbnMyf9c3Q47O3x8FR
XizzIkSKsSBcTOh7GLkqVB++NpN72gfcLJYT6NkM9bRIwsx9TN2fJNksGMcq
A9K8tl1PIvnu2yV8kMh7D4HH/eC7xMPe8SUMYJ7xep+M3zoLruCLb8tlUqRe
V4CXl2oOzWxfP4SJ84z6Gnw1CF5BN8FXwSsVJ2HwTF2qNF8uADh4dqaieZan
+ew6+G4xeeGgKUz6KXf17WCVxYN+rDoODZ9G87XKLspoDhzLIbpRkcVVy9tN
FBHi92WdDmScF7BXoI98qrJkZoZ4ATCp0n9D3Y+KRfCyivu2d/60bz/9NiwW
PEQnywvcvJfE994+P9ofDJ4Mgdf+oK7XeRGX/PThk68P8em7t2N+8PXBAT04
e3nKDw4fH2A7zVXgyeNH1BNzF/79iH5Li68Hjw+wi9FiksxWQCLITPxhvz58
8hA/oV6D/f4es7zgWPMogWXwGL86VdGqUEBKuKj84f3T47Nd/urJ3uHX+BXA
E5wUOfAvFUzzwul7FAFvLDVX5UaDwR42enF2dtKBR+PR61GfWvRPwgLWAZa1
RMwFgfBn7s6+5HchsBWQEFpArNfrPuyoEDfeA+ACySxDSixFUCz91pp14t89
WX0ERMNDFH0GstCHhAmdnjeA2AbDAtv1KtNuy/Bvliobx0c5kFdU+WjAN88C
eYU8SAUDwHGSRZodAfNQBfwRgtiugkEronLoJolJhpZLFZXyoBdxv/BvoXqD
D3skJDdC+zqEvRheJItVEdIL2SmviZrtd9/n8wx4XRgDT3W/qzM62+JVcqGg
WSaoatng9ltgrLHCVVEJvHW//y7PZyTn7MdH81V0EbzKiypZwBzdr09BJpZA
uRE/1UJ6cNAbDDodVJWcHQ1M9PnzY29pZJvAHohXrEfoqQXPke5g/13QzoCN
VFznmWpdGeDE06nqJ/kD0LLKB6wDydNeOMlXoPVcor6h1g9aFoZlcJqvYlwd
ABZIZLFcEVU8z4HTsrzq9EDlCCclqEVR1ek0lZ/gvtV6dkHhCSewrXEGaR7G
JaknrE6CrhKDmgIPqhy+KxEF1RwIYwVaUaClVAD6qECa/JlACFAYq6sqyKfw
ErQj2JYZ6A3LIp8BtkjxCQr1pxVMvxuUq2gehCV+OToZw/CXeUTddIHFK2ik
UAcDWGicS+DOBDCABMqTAzdBhi2whwv8vgyAKxAUMDLyKcQUD6eH7zsaIPRX
5k18rEGxRRTMVQtW8iVCSlpcslisKmgLCAEdBcaF13G+zmAhVLioAwrdXQdr
5YArY6BKGACrhp8AOD7RoPLKLpIY9loHVM0xaDyaHjudV3kMWAbUa5IIi2ie
VLDjYdlK6KsC3g4LFyxWaZUsUxw4VsAacBkB6GKVZdgMOwACBq5GoABgBvI+
DBmAXL+GN6Uqu3Zl7aLh9Ip8NZubl9D3ZVImExoRHk1DWAqz6rDkJcywBKCY
8rLVYgLUBXOnr7F3i7qJQhAdjIHcg48B07LChLAWsGCd50BHTleMEJg1dnOZ
FNWKQIU9vJxfl6KZJ2WOuzQOgJti01L3o38TUeKYtmONSEs3CfSpioTEE+AP
FH5FaC5yMMqgc9D/w6oKowuQXgZ9yAvXSM7larkEUIgkujDP5BLE8Aya0S60
/SDoOYxWSGcA63sDlDtcfYH0912ALU2iJF8hEyhhfwM40KmBBERPXiBZAJmF
SEpICvABUqzQ6jRP03yN019lmifgViQiBVnb+R3QkKUVaOUxHuxCUEv4A5ZI
g7SsqNACsYesgn5HxQQU87C4Fva0AJyXsDdpe/zOqhfBIo+TaSK9IPirGUpx
4Z5ntOOQHkuZFE6U4Sf2YiZW0sSY6nJsk69AwJR93JtvhI9vZ7+71GEYLFSY
USdgWiQztBbjcBGCBTaFNZOtwmtE67FcFbJIBpP9YBRcwurFlp/h/sZZwmYL
5V3bxsAJX3vcHRfBMHdZV0Ip4sqsF3+7CGPl7znhVmjvWtYtJIfLWa4mJX4C
+qbpyp0Iw6Ob0uprcSI8g6jIaosaRFgRsM4AAty68MVxBrs6JwUNHgLXAdOw
tOJmfBKEcVzg6rV1AKYHkBQNjgwV5qChoHlnSsW0YhNXQjVYOLKLBBcqSlex
KgOjaeQZ97MGSNDgl5YGBI1FGMHDLrDrZQ6MEYjsqLheVihQl3PhVrDDkd+r
2BVq7sq2iiPYzgjBIrxQ/qZ19wnNlVDnTKFL3M9tb0gTASrNFsYp8EaNVF0p
AKt9NgPLHnbNveC9luHNbfP3HVdSI18EOKteCnpQDKsKqjiADIZKGXz6JJbU
zY0oBSKPa3QdtlE1KRn8fZi1qzUkAzZoPLAEl0l9pdXVkpeF2ASpDvA9OvJg
SQBhwMZ4kUHLZKaEwDmKABBJAn0jXFZAGDlu5TPh8AjWlxQAx7cFz1FfAO4C
GOcPgNfVEArmixBShF+g5J+rzEVOUhrZuyJlChdSKJJRDV805T7TCbxyiEva
gx2DlhtwvIVC+zQpF55GyKYhrShay7CihuMii8O1y+qG06dPno0FbeAlfS/b
0WFh0AeICVwqZ7im0cwQoGmNNAVq36SidbE4hq5R3YMuE2AySSWIQt6LVhji
nbs8ZYdicB+X3DJrebxLqDJU5PGcBLWmKezIBJknWhsJMYiZyhSh0AcHZ6rb
vxr9qJkQcc8zl6f4lMyIva/6s36XyJJx4qJ91+e/RvFGppUUTOfAFydokxCc
2A0QeqiJuyLYmE2P4jhhHVpDawmAdixYvwsyJg3D7gbvcOOOZogHjx8ZFchD
HCosc5Uug1aUI7RJWa6U/5o1gebXAADox8z8Q4QU8TJd+arJtV4UJnJvWVg+
kIbo0eGKN7c7Jg6htwwstmarxIobUhR0gNOWp6RwCr06G55lHmimIBKAb4w9
U4PsJJlvnCsWUfOQxDHMkxeWCYUpk3GMKiGMgoDW5FcDjbRFNOHSJlHptGe5
OG8DzfBCIyCNdgH7Ng1ZmlS3EHOf2d9bRS3IfemwxpGZqSjsHudF5EXzPC8V
M28e1JuS3mqAAMtB5+FyiSoYQ2dGCNGswlWNY40ax1amn6ui8CAEOsQtXpHN
2jKDLiFPzyC1qgOYUmrtYJ50yfYd4PCcdiDoC95Z1tFWWxOmbdtEA7UAmxll
WxGhkQKGA60MtF3jul4kGRlj3uSkR5J6aP6AoAfelxNLyIkYM0VqMi09CHRg
PqDhrogc7NqyPLQQvUymqgIzrC74XPk88RSL4D4bmNAt8CBQA9HoJc74SD/Y
7YrOQAtEdixy2wnpzIC0DKhB80AzkMsMXWXINVhB9qhlZXVKtF7nqlD+PihZ
Bbfi1NtGXU2BRlwKewQujXgjpwwZUCpu7lVDVsieHNbgMDQg9JJnsExkSojh
LrM0v7tX707PgtdvzjBcphSbzaksSV0HT689wAR4C3Y/GKOOlObZrKcNbu0C
cNSHSVjB3zjt6RRYLuAhLC+0GpOS5ujwrjZthHwLrCFs8i10g4nouLz+nu5F
UrvCfemQFRPmU2B/04TNTIchOcRJQgvwQN75NrMPJQ0p+KxDohy2UqVQkUou
RU1zpFNEP13fDxiryfTaM/RMLzluVOR/EzUPU59ciVGiCUM0SNvAMdcKlWIA
yggBxwmnmR20r2/SMYjiMBOm9K4MKQ6Zr0WHfRqWSUQPgk/3JvijN4UfN51P
n6bJrIc+rx49Bj0NEL5miUpPAvwQR4bHQY0D0FYl3k9adc/MXlkjEgD9y1/+
AoQVJQkMVHXYwTzA//vlp//5y0//487//S9ss8/+6c9t2tn2+ud//+Wnfwq8
//3y07/c3u3P/15v9E8d7xf8/7Fedf3Ae20X0Gn92GmtzQTT+qHbuZZE0vqX
/70d4n+tgXvL5/xfAzH+HH/yv/4/Dnb+rdHXPwdbmm7/7587QQOQBjjwvwP7
Ijj0IPUJ5uf/cH7+3xaCqY+0BQf4epy561x77eZEtLb+zRB8RyzBo5//o/1F
EOT+o0f4CP84vPVTM97P/3YXQP6zrMltlAsMsPNpGNzzeS1Hyb7ZYebc4vEc
OaGInZtOZ9C33MT4DxrOBZAjKPjYNvT1eiueG74CJypNekNnv22whoVNHgpt
avqDiS3sWcAbDZvOw36Lgg29VqWnN5Gwtt4iiR1Zc0CrjE5yE8FYKEBiVorp
76iCqugc9H3D3qKWPD9saJHMRhMkswGWhUtBngPCn2NY+qjpPPJsTmOdspLZ
2n1JmhYZRWBGbLJ1qafOYR+MNrS20QrkWCCBRaoqO2lLlO2kZrumuL9+k2tx
JDBxedB0HjvUEaXkWSHPtQwUir3P9t8GBXCLfUmqSqczEmRTnkBlDUI0L2MV
kd3leJVaDb02A076wXUHciIFB6CHhYuKZIKRJUWPssBRj5zOb27+S6fZotO0
th7s2dbbdZpa6//PdJqtPTvfNL68U2tXuXnyea0/V9Z+Ts/N15/b2pfUn9e6
Lsj/dpD/Ojpp1f3ro2+mk5ruX/9Gq3cbWm+clfwvbzy5S0ujKj5pfHjrmPhN
jprjF0H8a3bVr2j9Jbvq8I49/7W492+91x5/4Xz+U3Pq7Tvw11m+DbPr60Bv
u/+y0OTXr7XQXF1S7LTNmioaZ2P224Kiisl6QTjJL1U3AANjWQaD3iMOFWv9
PSxZu3RccdDFp2FZgTb5zc4hdghq/Cb9N8ZAAhhHJsrjZFYYbbgV3H4wduIE
Gz7aEvOg9ibA5IQZ3fwZ174CAxC9zRQlIjdn2AhceuCXSjLDmkOj0XFLcJFH
aTcEOl9zc41Ewpy2AnnMdmysTDTNwRDYmU5aCFmHvo335G9ghQ32fhszLHid
cx4XpjkY90HJsdwLzLjERPlgB0MRO13+F0MS+Pfb4394N357/Az/Pn0xevnS
/NGRL05fvHn38pn9y7Y8evPq1fHrZ9wYQxzeo87Oq9GPOxwn2nlzcjZ+83r0
cofpC821PFrRStHOohAUbZYl2PqUxtqxBh20eXp0EgwOOCMBTx7c3Eh2wuDx
AfyNwRoeikJP9LND2aYYkgwLcnNjfJPP6ZRd3MPoKscYeaEoe+2MNiUd7uh0
dBLhsDPkfWwiB5IbpRG+yhIn4I5HnLJ8ka9KTC6lUITxLZAjxQljmEQim8uQ
+FmC7FFwQt3HV+FimapGCiHlONCGBOahJJHJpbVusAC4Uoz1RoFxSrD7Z1qE
sA9W5Key77SLaRFmIeZdxmEVIr1jfPEMM4KDZ5QPTAjamEqqQ0sml7QLa5NA
zwIr7Mx1jm0wd92d6dm8JRsZUOUOrbNK9e6ipdeJQsvVJE3KOVGPzr8F0M1+
02Ysw9/ytbiLvAGF6XCepHBKJ8ZEGUwmiuKkULudYBIbkuLR3GCPXUkc1/eT
ip3hDFevDZi15sk1/JFuAqaMavMOaCAKanLAzkQo9XK1+OzcXC9K42+NpHWD
SBUk0paN3EVmu7gH5BORKCvOzqWDbaqshc1GHn894hY8oe9P37wGAfoR06GE
vnR8mDINojRMFgarEmlllDY8kbVktFaMmqSmZkKTYFhyoGq5FnWK0EimfJzS
jdJR9oWJQLuMIITvm6RJss5pT5yeUljUFYCO2zNTAXA43J5tMrrjBiWf0/p2
Rn5cN2Q8v1cTQYObeWiTMTG92355CrQWEoPRXz+6ueFdbpOnNcMvjQZCeVWU
4yAnNAwkQwqgIu2+UCEmK3y6V13JSdjenB7daKXOfmXSwM6r6+W5bmqTpAlf
Ork1Y/+4xSH2xQkX5zAWDfXfPq6r8z50+gOImkLEsKZY3GA4LxTBIjsnSqd2
OCnpsm+Y5s4vkrgJGawMOTOrKxpWJnjD65HlWc+czsOVRhmhgXBQRP07KTbo
BP1YggrxiXTvHcDJzhD+ceYGYpxehekMX7093X90qJ8BoPiMk0uniSoA+z2Y
607nxlXIPZC1Mi6CzDmKLECi6iwL+zSPr4Mj3rPu6vI2vmH1xo0UcMbEBJsx
UZUGA8yqdLyD05LVVUL7qoMfCG8AFrhWyJXQnzwlFR3zifitPgahvy1U3ekM
9HUOu/gct79WeZje8Ck3tH3HbEXY3ZNwzpmh/LCsh+x1EhoyNQA9ldM5+myO
07VonufhKjYDo3pEB0Bq1Ml9X2SYFdcAV+8JnS1Ap2CcpJxGPziFJeasiJUT
B5y0yT56TpXUGfdNYwC7E0sAVCvgfdRxHxEbVoRYrbISpMQzAVNV4CbUeMGb
dmRDh4iaWoeY0oaz7m5o1Q0MuZeBORyl0U/pXcjJfRigUzqJ0A8kMd7sGEYu
zxMP3vCL60bPOH11tfShPcbso+svmDdsJb+nkUa1u5scKP3OThV/sN/fx3FZ
DT8YPEaG/l5yOs2pgMb+5DRhH4mSzOaeIBhz5m9VgPUJmHEsCzn3RGl7oQem
TKJ+dE3jEJOnuKE9Eee1l+23zEtJ4K44E3yaXGkxhBPeef1htKPT3eicUkLJ
TeflarIBr84gOsQJH5Oi4kBbS4rkretP4V2W4kFSP/ebM5ZpeNmzMBO0x8DQ
z6OEk9pxQ1X+1kaYl6tiWQf6tCpYHE9ZgaI0Jvgu5+NWqCFnlclodlYYOwz/
HPvsz9fL2FLCA0qk/YtsF5WMN5HRxZzzM7UDJjBOEVVXtw7kaxTKOxtTw7bj
SvAmhEHOE5k8I/fTPUQGi6EbEkKMRXkNJiYfPmSDHTqyyBOU4QHNJFqlYJe6
gwl30Kf0FkihWVgU+RoF5xzNy6CM8qXWQoT3sZ2ifEeC7SxeGfcBHgcyicWL
vKz0kcaqcbRjkccq3bSVsFsQUXhiC0/xFqxGh9nGfogjEAkydKVzEiZv2aln
OYMJBk1XRAdTHdvc5GiSnEXZOJQ1Cvhl/NxnDE7DpMCDHXlYlKo3K9A4jncd
aGpIc4wsb8l8NmaatzKZF/kalolKmQD5LdP8WpJ7RacsvwTZuAXM5JiDIHdE
80KfVTL53pIXoU0jIFeTK9ETmr+pZ/mzcio2E1ITby9hE0xKzmkKgtE5Suaa
gn5KK9ktaBN2XdWq3XT0/SpyYqnFzefnZ2+1GV0oTPJwhenCfVYfiWMYzk78
0Zm5N2f0fhp21aa5OG5dPpANP8Vy8w9FGx+LTI7MsmZ6vWsaeSonS+JS9gjn
Ol/LmARr3OVHxmqxHeGhS/iXDKFzQMmHBBjXmb+cNY5YOAQw0dnncc8eIyvy
SY6H2+1p5Oaa2f2DAyP5Z+fmRBmudaRznGBjxLzH8IgKCM6kEo3IAWhclYYJ
AgQssd4U796OxRCuqVRa03C672sMrFOGpMXS7htpeIe+P5t+Ba/ypdazNzgJ
GiqeJIO3Z82gL2eibAK7kIT4Xpm46dzEhJQoEDIhnQ50JltanqWVAMvta+f6
idDsLF2jxZYjqPNRmxktvMu4dpIKXj9TwIxSNP08ZtmL+fkdeBiqIpaFKXef
GyRYh0ZNQWH9BGtsPOB2SxAmZXCfDB9ZH34R5as0FrYi+OS+drVjp8pnily5
zplMmcZ21cfoPT0+mKOtrqT0zQum5/oJj2WRLMIiSa/NdoLx0QfjFbFwc+9C
d4G65pg/feKofEDyKR9tDEC9ooJezioL/vDMaKfzHiGWQ23CWrm1QbGvlQmH
BaYYOqczTDSK9WJc11ovJFQjFgMeGXl4Zv5p7FKxkc/OTrVpL8Ob7PjJdeCk
8Ol94OXvAagJFcCQ0J2Wyq7DE+NjPBvnVEXCXlI5Heei2J8j2c0NmFuPMxHX
d2ot0BFunZHIznnScNzjTJWOUzjaT1uQrSb2RIBaybLdFeXvx6HjfNqBxzvD
AH1QO0x46FV6+g5jRw8eWFCxF+8MBjYA2rtQBTZ4dfr87C4t/rQKifaxzWBv
7y5NIuDC+UIVH7DUEYKKTQx6mQmI06Pkw5mNPqCXmcpxzHen2n+WYmUxfPT7
8QlWB7wRvxnyQqPIIWZ1LErK76AZ2emwgQxEikFHjp/pCjFYA+dC1rHyQ0Vt
3LpxUtNIRXEbsSuN1E7smXdBUjvtfUnChbmWoRjmKa0iqh88xSzQaYhnxyp3
1IZEb8ghUzDAObFyB2kLqjmAWdDxsPY4zTIEowAVbaJ/PZwrtJzg+4aDiZU5
A7YxYECSl85KMozoYmzRPvh4nXPolcW0SnlMgdlfLdEpTLwmDHZwUtDtjn+8
i4mE5ZNhcTXKaJ1hSYpHRZIITRMMuhlvJG8GDyyjZrhr6vdBwT9t4DodCTIb
XS0NRUigYYMG02/6uFEECbfh36QC4y48fNIfPBr0H+/3B/sPmS2AaHLdBM1N
jSwLVVlsvyqyIdbnHBbTaIjH9lv7qNwovtsPzxE6+u/Q55LqoazD6z5Zgj0x
LoWfYrhd08jD9i+Cf6R+XZaig8fMtpMZKgKcKU2RhVSFU3HVowfdnCS7Q3iB
PO5+cGFYw/xOElbEcQ+/Pnz08HB//3APeS/x/BWFEdonih+oq6XT9JHTtLoi
zD95vPfo4ZPDh73Hjwdx7+BJFPXCA/Wwt78XAoKePIkeDva5AewlbBDvfX1Q
xkW1//BgWobrhwdVsf+QYx0+gfxK8vhtiMOSxq2EgX1yiNhEhG/liyh5aObo
8tgJaCnCWPVB5kUXpayREdFfIKS/REx/kaD+rUR1i7BuEde4u+wOk2BXbRdt
CXdhdIuCXS2naUat3gUOR4XI26kmpRDMnap3+PVKMOdEkq5QFLimhBxD1WLO
ipPPHtLzTvlRJJvn5koV5EviL4fxQFGuEuvJsTBaCUwHg9wcrVo0blO+GToy
nBJ2EpCVbBs7N40zHmmqKH5d6nPPXJoEaSnUAbuFX6Fk4tUmcWLsf8XgvaM1
etUenOPRRn+pJQyGWxQWfdD+C+jAqzUoponlRIitSV55dfNcp11e+OZLw50n
dKMBsw5/PO9sA6kY+VzW8hZxF0z8xL7tapupvKdjOJ4dONEO+b7rTWqvm2Ns
SVR+2CWVmMqD7ndvTRomHjN38wxNauCmhvy6vge+ZCc3D1fVj68LmF6YXhBw
00J99XIKVCzDLcWxTXWuKBsJs+OmVHTFODPuSwql71Hc7bb582s1Piwz2JDj
Sv4I8eTWTQIpyceGPS7/K4ysmCp6oq7XskjFjN+If597akdMQSVOHCdwyPkJ
1p7vO6WF0uuuxJvM7tAyBBtJKRsQlMG7t6+Dc6OjUG/lkEoMD3kxqYA+rO0H
+nluEpaMl8Tx0vhFfnI3qs3Jzknpfuovx1sn49X48nyvg8mJqh0tVX5pvQtx
y1oUuwW1ePJGLJrwqPVnLJ2yzegqnsGSV6RXnJtgqetX1BIObW4AfgM6qRdB
J2FWV9E/Z794nGAi4J1GaHiI0VmJvVCYyO0CM9HAjuvFKk0WCfLdNGESxfhf
DzShMiHlviTjyc3uoJHvl7s8uJ81Zz1d7cFh5YdS2d3OjJ/p6A7Y/ByqpLlz
WF3T6cauazORYHwL2LqkGPp4Jy2loMR5pu1QLOb7HavoXY6O1Gs8URE8TLfV
SXIO1dKBZeaOniOWgMKNis4cvfVM+IH68WfOmO03MHIbxnX1TG9E+juXajTi
DLf6cyW5By7azd6pOwkd1ur4ICWy5HTaIgNNyAp/fBDGfG7C/1pTNQaCcQ2H
lKd/eLAq0B6KcmS/rsefEVoL0HpWWS3LgTUOM5BN7XPTBlH/2C7K5GCCB/Rd
Y70OJsTB/VfBhLNc2o/eEsghvi67ansKR7MYjidIr9vLO24IzvGQjrRXvj5w
mz6n6wZgUkSr6uA4zDiliRan1EoKr5AmkHowvt3LIrah1o3u4GRp2Qni1sIC
652TN4CDB1brElfeA97tRr7htQTBoD/ovMjxAprG963uhM4RByV6Z3R9ToiZ
Tjy/B1e99XrdQ4WnB8QktNTpWBn5DfDtv3s4Qs4N/zDvhj+Ie8O/VgzCD18Q
dr5qkxK39GflAf7Qs+t8pQXqN4gsePV3+8/hv9bJfkXr+Q1oSGgB99dYRAvF
ZB82Abx0Gdw36vr7+eS7KHmTfP/83Z/Hg9fJuBwvquUfj/r9/kX8h4/r+brW
5rNnwZU3PshEanwPIBgl4R+eTn98//YiWvz+z9H1+HB8NL569TFavTo6WL/8
eJy8PBolP+5fLf/4/tHe+GM+Gy8Glz8u0vKPp4N59GLkvf/Dwz+mUfZ6Odk/
gFmNkvjj8dU4efqkJZPXWDYbfRtCp5LLeyrCld/RNRNgKAhyenbOEtJtFViW
mfnqQYgXjbBihzePoLk5NqXoqFB3ZkSYFvJW73XtGiex8SG2uJtbhavVYe9v
1RS45ly+JtF5P+mrfvcOKkzBbUV67nYlYVZPo1nfLmxYZI027Akj9ISzQuk6
f9XazQoobCn3Nn/CZveJ7zNhjHIwqNRBb50gyXzRZoRuX98+lZ/mRbZ5pJ44
89c+LP0hYHECXB3PB8EO8FNE4ymjsUmUSJMWz70mfaIlaxBH09Pl82pFPJGf
1zUimhFdJSAeuJKjG26POC/S7TdhSaIr+fAONIVQfWCozkUjqANKA2ojyzd+
ON+IVS5KaHe9c042q58q5KfOtFMPnS2UcjiJSeLJTIhbm4Qm6GO+8KlUkh+T
LPAPSVrjUmu/Arze/qhSreeNE7KJvmfBSJ9fPQNKyL0VfLHrN0+B0tS347/l
oO822E3lQ8rCN3NYoMjDkzZYnXGdNYcjcCgNn7qnzPOwcnLe6xSGVRKlrHYf
T6k6tfZbykWFeGSS1sjtp2LXoZxA5vFNnJG9sKsMc0zyjNIwpnzak8O5aOUW
wXSFrluCnrLoRfHzincapx7ArffL3Fh9iLJrORtnypjaMqmlivAA827tcg4u
YUkupcmqdGNmwlwbOxKYit6QUrOUT55s8LedGH268/72sLPJ82jRKUl2ID+g
kwraAmzTuttVZRQjJkuFcxLDyquh7pRBtz5RjxJK64axHmLOyGmrPr/MQR3l
MrPu1uN6/TqQcefk2ddUg3s7ApsIqrN5Hw3GgUIZyzTgta7wzdxBKEK4QS0P
o0X0IgDmboMaiylvOQCx5WiQlvXbZ25kE21BTg7R/lA5hGLw3shW/KwBnENL
UrTNsrxGNkhrluRmo298yxe29rIxRl0slpKUoPeLv9pRXhTIwHgGvDCG5AxT
/xxUIMPyca22nPv5vL7xIJCDZk0/42fWtacFkn8o4pZBUEE0tGJPkjWEFQ3K
SPIOm7hRay0F/FQee1LLqIP5YpFUlO/Gt4kCBHcja4UQ6A3N0LQorexT9eLP
DqOiDG+PErwzIZu2OZWgD1u8Wp5HqOZsa4kO4WM8oO/4osBqtTEtybzMPS+n
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

-->

</rfc>
