<?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.5.24 -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-irtf-cfrg-cpace-05" category="info" tocInclude="true" sortRefs="true" symRefs="true" obsoletes="" updates="" submissionType="IETF" xml:lang="en" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.0 -->
  <front>
    <title abbrev="CPace">CPace, a balanced composable PAKE</title>
    <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-cpace-05"/>
    <author initials="M." surname="Abdalla" fullname="Michel Abdalla">
      <organization>DFINITY - Zurich</organization>
      <address>
        <email>michel.abdalla@gmail.com</email>
      </address>
    </author>
    <author initials="B." surname="Haase" fullname="Bjoern Haase">
      <organization>Endress + Hauser Liquid Analysis - Gerlingen</organization>
      <address>
        <email>bjoern.m.haase@web.de</email>
      </address>
    </author>
    <author initials="J." surname="Hesse" fullname="Julia Hesse">
      <organization>IBM Research Europe - Zurich</organization>
      <address>
        <email>JHS@zurich.ibm.com</email>
      </address>
    </author>
    <date year="2022" month="January" day="14"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document describes CPace which is a protocol for two
parties that share a low-entropy secret (password) to derive a strong shared key without
disclosing the secret to offline dictionary attacks. This method was tailored for constrained devices,
is compatible with any group of both prime- and non-prime order,
and comes with  a security proof providing composability guarantees.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
    Crypto Forum Research Group mailing list (cfrg@ietf.org),
    which is archived at <eref target="https://mailarchive.ietf.org/arch/search/?email_list=cfrg"/>.</t>
      <t>Source for this draft and an issue tracker can be found at
    <eref target="https://github.com/cfrg/draft-irtf-cfrg-cpace"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction" numbered="true" toc="default">
      <name>Introduction</name>
      <t>This document describes CPace which is a protocol for two
parties for deriving a strong shared secret from a shared low-entropy secret (password) without
exposing the secret to offline dictionary attacks.
The CPace design was tailored for efficiency on constrained devices such as secure-element chipsets
and considers mitigations with respect to adversaries that might become
capable of breaking the discrete logarithm problem on elliptic curves by quantum computers.
CPace comes with both game-based and simulation-based proofs, where the latter provides
composability guarantees that let CPace run securely in concurrent settings.</t>
    </section>
    <section anchor="requirements-notation" numbered="true" toc="default">
      <name>Requirements Notation</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>
    </section>
    <section anchor="definition-cpace" numbered="true" toc="default">
      <name>Definition CPace</name>
      <section anchor="setup" numbered="true" toc="default">
        <name>Setup</name>
        <t>For CPace both communication partners need to agree on a common cipher suite. Cipher suites consist of a combination of
a hash function H and an elliptic curve environment G. We assume both G and H to come with associated constants and functions
as detailed below. To access these we use an object-style notation such as, e.g., H.b_in_bytes and G.sample_scalar().</t>
        <section anchor="hash-function-h" numbered="true" toc="default">
          <name>Hash function H</name>
          <t>With H we denote a hash function.
Common choices for H are SHA-512 <xref target="RFC6234" format="default"/> or SHAKE-256 <xref target="FIPS202" format="default"/>. (I.e. the hash function
outputs octet strings, and not group elements.)
For considering both, variable-output-length hashes and fixed-length output hashes, we use the following convention.
In case that the hash function is specified for a fixed-size output, we define H.hash(m,l) such
that it returns the first l octets of the output.</t>
          <t>We use the following notation for referring to the specific properties of a hash function H:</t>
          <ul spacing="normal">
            <li>H.hash(m,l) is a function that operates on an input octet string m and returns a hashing result of l octets.</li>
            <li>H.b_in_bytes denotes the default output size in bytes corresponding to the symmetric
security level of the hash function. E.g. H.b_in_bytes = 64 for SHA-512 and SHAKE-256 and H.b_in_bytes = 32 for
SHA-256 and SHAKE-128. We use the notation H.hash(m) = H.hash(m, H.b_in_bytes) and let the hash operation
output the default length if no explicit length parameter is given.</li>
            <li>H.bmax_in_bytes denotes the <em>maximum</em> output size in octets supported by the hash function. In case of fixed-size
hashes such as SHA-256, this is the same as H.b_in_bytes, while there is no such limit for hash functions such as SHAKE-256.</li>
            <li>H.s_in_bytes denotes the <em>input block size</em> used by H. For instance, for SHA-512 the input block size s_in_bytes is 128,
while for SHAKE-256 the input block size amounts to 136 bytes.</li>
          </ul>
        </section>
        <section anchor="group-environment-g" numbered="true" toc="default">
          <name>Group environment G</name>
          <t>The group environment G specifies an elliptic curve group (also denoted G for convenience)  and associated constants
and functions as detailed below. In this document we use multiplicative notation for the group operation.</t>
          <ul spacing="normal">
            <li>G.calculate_generator(H,PRS,CI,sid) denotes a function that outputs a representation of a generator (referred to as "generator" from now on) of the group
which is derived from input octet strings PRS, CI, and sid and with the help of the hash function H.</li>
            <li>G.sample_scalar() is a function returning a representation of a scalar (referred to as "scalar" from now on) appropriate as a
private Diffie-Hellman key for the group.</li>
            <li>G.scalar_mult(y,g) is a function operating on a scalar
y and a group element g.
It returns an octet string representation of the group element Y = g^y.</li>
            <li>G.I denotes a unique octet string representation of the neutral element of the group. G.I is used for detecting and signaling certain error conditions.</li>
            <li>G.scalar_mult_vfy(y,g) is a function operating on
a scalar y and a group element g. It returns an octet string
representation of the group element g^y. Additionally, scalar_mult_vfy specifies validity conditions for y,g and g^y and outputs G.I in case they are not met.</li>
            <li>G.DSI denotes a domain-separation identifier string which SHALL be uniquely identifying the group environment G.</li>
          </ul>
        </section>
      </section>
      <section anchor="inputs" numbered="true" toc="default">
        <name>Inputs</name>
        <ul spacing="normal">
          <li>PRS denotes a password-related octet string which is a MANDATORY input for all CPace instantiations and needs to be available to both parties.
Typically PRS is derived from a low-entropy secret such as a user-supplied password (pw) or a personal
identification number, e.g. by use of a password-based key derivation function PRS = PBKDF(pw).</li>
          <li>CI denotes an OPTIONAL octet string identifying a communication channel that needs to be available to both parties. CI can be used for
binding a CPace execution to one specific channel. Typically CI is obtained by concatenating strings that
uniquely identify the protocol partner's identities, such as their networking addresses.</li>
          <li>sid denotes an OPTIONAL octet string serving as session identifier that needs to be available to both parties. In application scenarios
where a higher-level protocol has established a unique sid value, this parameter can be used to ensure strong composability guarantees of CPace, and to bind a CPace execution to the application.</li>
          <li>ADa and ADb denote OPTIONAL octet strings containing arbitrary associated data, each available to one of the parties. They are not required to be equal, and are publicly transmitted as part of the protocol flow. ADa and ADb can for instance include party identifiers or protocol version information
(to avoid, e.g., downgrade attacks). In a setting with initiator and responder roles, the information ADa sent by the
initiator can be used by the responder for identifying which among possibly several different PRS to use for the CPace session.</li>
        </ul>
      </section>
      <section anchor="notation" numbered="true" toc="default">
        <name>Notation</name>
        <ul spacing="normal">
          <li>bytes1 || bytes2 denotes concatenation of octet strings.</li>
          <li>oCat(bytes1,bytes2) denotes ordered concatenation of octet strings, which places the lexiographically larger octet string first. (Explicit code for this function is given in the appendix.)</li>
          <li>concat(MSGa,MSGb) denotes a concatenation method allows both parties to concatenate CPace's protocol messages in the same way. In applications where CPace is used without clear initiator and responder roles, i.e. where the ordering of messages is not enforced by the protocol flow, concat(MSGa,MSGb) = oCat(MSGa,MSGb) SHALL be used. In settings where the protocol flow enforces ordering, concat(MSGa,MSGb) SHOULD BE implemented such that the later message is appended to the earlier message, i.e., concat(MSGa,MSGb) = MSGa||MSGb if MSGa is sent first.</li>
          <li>len(S) denotes the number of octets in a string S.</li>
          <li>nil denotes an empty octet string, i.e., len(nil) = 0.</li>
          <li>prepend_len(octet_string) denotes the octet sequence that is obtained from prepending
the length of the octet string to the string itself. The length shall be prepended by using an LEB128 encoding of the length.
This will result in a single-byte encoding for values below 128. (Test vectors and reference implementations are given in the appendix.)</li>
          <li>prefix_free_cat(a0,a1, ...) denotes a function that outputs the prefix-free encoding of
all input octet strings as the concatenation of the individual strings with their respective
length prepended: prepend_len(a0) || prepend_len(a1) || ... . Such prefix-free encoding
of multiple substrings allows for parsing individual subcomponents of a network message. (Test vectors and reference implementations are given in the appendix.)</li>
          <li>sample_random_bytes(n) denotes a function that returns n octets
uniformly distributed between 0 and 255.</li>
          <li>zero_bytes(n) denotes a function that returns n octets with value 0.</li>
        </ul>
        <section anchor="notation-for-group-operations" numbered="true" toc="default">
          <name>Notation for group operations</name>
          <t>We use multiplicative notation for the group, i.e., X^2  denotes the element that is obtained by computing X*X, for group element X and group operation *.</t>
        </section>
      </section>
    </section>
    <section anchor="protocol-section" numbered="true" toc="default">
      <name>The CPace protocol</name>
      <t>CPace is a one round protocol between two parties, A and B. At invocation, A and B are provisioned with PRS,G,H and OPTIONAL public CI,sid,ADa (for A) and CI,sid,ADb (for B).
A sends a message MSGa to B. MSGa contains the public share Ya
and OPTIONAL associated data ADa (i.e. an ADa field that MAY have a length of 0 bytes).
Likewise, B sends a message MSGb to A. MSGb contains the public share Yb
and OPTIONAL associated data ADb (i.e. an ADb field that MAY have a length of 0 bytes).
Both A and B use the received messages for deriving a shared intermediate session key, ISK.
Naming of this
key as "intermediate" session key highlights the fact that it is RECOMMENDED to process ISK
by use of a suitable strong key derivation function KDF (such as defined in <xref target="RFC5869" format="default"/>) first,
before using the key in a higher-level protocol.</t>
      <section anchor="session-identifier-establishment" numbered="true" toc="default">
        <name>Session identifier establishment</name>
        <t>It is RECOMMENDED to establish a unique session identifier sid in the course of the higher-level protocol that invokes CPace, by concatenating random bytes produced by A with random bytes produced by B.
In settings where such establishment is not an option,
we can let initiator A choose a fresh random sid and send it to B together with the
first message. This method works whenever the message produced by party A comes first.</t>
        <t>The sid string SHOULD HAVE a length of at least 8 bytes and it MAY also be the empty string, nil. I.e., use of the sid string is OPTIONAL.</t>
      </section>
      <section anchor="protocol-flow" numbered="true" toc="default">
        <name>Protocol flow</name>
        <t>Optional parameters and messages are denoted with [].</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
            public: G, H, [CI], [sid]

  A: PRS,[ADa]                    B: PRS,[ADb]
    ---------------------------------------
 compute Ya   |     Ya, [ADa]    |  compute Yb
              |----------------->|
              |     Yb, [ADb]    |
              |<-----------------|
 verify data  |                  |  verify data
 derive ISK   |                  |  derive ISK
    ---------------------------------------
 output ISK                         output ISK

]]></artwork>
      </section>
      <section anchor="cpace-protocol-instructions" numbered="true" toc="default">
        <name>CPace protocol instructions</name>
        <t>A computes a generator g = G.calculate_generator(H,PRS,CI,sid), scalar ya = G.sample_scalar() and group element Ya = G.scalar_mult (ya,g). A then transmits MSGa = prefix_free_cat(Ya, ADa) with
optional associated data ADa to B. ADa MAY have length zero.</t>
        <t>B computes a generator g = G.calculate_generator(H,PRS,CI,sid), scalar yb = G.sample_scalar() and group element Yb = G.scalar_mult(yb,g). B sends MSGb = prefix_free_cat(Yb, ADb) to A.</t>
        <t>Note that as prefix_free_cat prepends the respectively length of the input fields, the receivers can parse MSGa and MSGb for subcomponents.</t>
        <t>Upon reception of MSGa, B checks that MSGa was properly generated by prefix_free_cat. I.e. it checks that the actual length of MSGa
matches the sum of the decoded prepended lengths for Ya and ADa. If this parsing fails, then B MUST abort. (Testvectors of examples for invalid messages are given in the appendix.)
B then computes K = G.scalar_mult_vfy(yb,Ya). B MUST abort if K=G.I.
Otherwise B returns
ISK = H.hash(prefix_free_cat(G.DSI || "_ISK", sid, K)||concat(MSGa, MSGb)). B returns ISK and terminates.</t>
        <t>Upon reception of MSGb, A parses MSGb for Yb and ADb. I.e. it checks that the actual length of MSGb
matches the sum of the decoded prepended lengths for Yb and ADb. If this parsing fails, then A MUST abort.
A then computes K = G.scalar_mult_vfy(ya,Yb). A MUST abort if K=G.I.
Otherwise A returns
ISK = H.hash(prefix_free_cat(G.DSI || "_ISK", sid, K) || concat(MSGa, MSGb). A returns ISK and terminates.</t>
        <t>The session key ISK returned by A and B is identical if and only if the supplied input parameters PRS, CI and sid match on both sides and transcript view (containing of MSGa and MSGb) of both parties match.</t>
        <t>We note that the above protocol instructions implement a parallel setting with no specific initiator/responder and no assumptions about the order in which messages arrive. If implemented as initiator-responder protocol, the responder, say, B, starts with computation of the generator only upon reception of MSGa.</t>
      </section>
    </section>
    <section anchor="cpace-cipher-suites" numbered="true" toc="default">
      <name>CPace cipher suites</name>
      <t>This section documents RECOMMENDED CPace cipher suite configurations. Any cipher suite configuration for CPace
is REQUIRED to specify</t>
      <ul spacing="normal">
        <li>
          <t>A group environment G specified by  </t>
          <ul spacing="normal">
            <li>Functions G.sample_scalar(), G.scalar_mult(), G.scalar_mult_vfy() and G.calculate_generator()</li>
            <li>A neutral element G.I</li>
            <li>A domain separation identifier string G.DSI unique for this cipher suite.</li>
          </ul>
        </li>
        <li>
          <t>A hash function H specified by  </t>
          <ul spacing="normal">
            <li>Function H.hash()</li>
            <li>Constants H.b_in_bytes, H.bmax_in_bytes and H.s_in_bytes</li>
          </ul>
        </li>
      </ul>
      <t>For naming cipher suites we use the convention "CPACE-G-H". Currently, test vectors are available for the following RECOMMENDED cipher suites:</t>
      <ul spacing="normal">
        <li>CPACE-X25519-SHA512. This suite uses curve G_X25519 defined in <xref target="CPaceMontgomery" format="default"/> and SHA-512 as hash function.</li>
        <li>CPACE-X448-SHAKE256. This suite uses curve G_X448 defined in <xref target="CPaceMontgomery" format="default"/> and SHAKE-256 as hash function.</li>
        <li>CPACE-P256_XMD:SHA-256_SSWU_NU_-SHA256.
This suite instantiates G as specified in <xref target="CPaceWeierstrass" format="default"/> using the encode_to_curve function P256_XMD:SHA-256_SSWU_NU_
from <xref target="I-D.irtf-cfrg-hash-to-curve" format="default"/> on curve NIST-P256, and hash function SHA-256.</li>
        <li>CPACE-P384_XMD:SHA-384_SSWU_NU_-SHA384.
This suite instantiates G as specified in <xref target="CPaceWeierstrass" format="default"/> using the encode_to_curve function P384_XMD:SHA-384_SSWU_NU_
from <xref target="I-D.irtf-cfrg-hash-to-curve" format="default"/> on curve NIST-P384 with H = SHA-384.</li>
        <li>CPACE-P521_XMD:SHA-512_SSWU_NU_-SHA512.
This suite instantiates G as specified in <xref target="CPaceWeierstrass" format="default"/> using the encode_to_curve function P521_XMD:SHA-384_SSWU_NU_
from <xref target="I-D.irtf-cfrg-hash-to-curve" format="default"/> on curve NIST-P384 with H = SHA-512.</li>
        <li>CPACE-RISTR255-SHA512.
This suite uses G_ristretto255 defined in <xref target="CPaceCoffee" format="default"/> and H = SHA-512.</li>
        <li>CPACE-DECAF448-SHAKE256
This suite uses G_decaf448 defined in <xref target="CPaceCoffee" format="default"/> and H = SHAKE-256.</li>
      </ul>
      <t>CPace can securely be implemented on further elliptic curves when following the guidance given in <xref target="sec-considerations" format="default"/>.</t>
    </section>
    <section anchor="implementation-of-recommended-cpace-cipher-suites" numbered="true" toc="default">
      <name>Implementation of recommended CPace cipher suites</name>
      <section anchor="common-function-for-computing-generators" numbered="true" toc="default">
        <name>Common function for computing generators</name>
        <t>The different cipher suites for CPace defined in the upcoming sections share the same method for deterministically combining the individual strings PRS, CI, sid and the domain-separation identifier DSI to a generator string that we describe here. Let CPACE-G-H denote the cipher suite.</t>
        <ul spacing="normal">
          <li>generator_string(G.DSI, PRS, CI, sid, s_in_bytes) denotes a function that returns the string
prefix_free_cat(G.DSI, PRS, zero_bytes(len_zpad), CI, sid).</li>
          <li>len_zpad = MAX(0, s_in_bytes - len(prepend_len(PRS)) - len(prepend_len(G.DSI)) - 1)</li>
        </ul>
        <t>The zero padding of length len_zpad is designed such that the encoding of G.DSI and PRS together with the zero padding field completely
fills the first input block (of length s_in_bytes) of the hash.
As a result the number of bytes to hash becomes independent of the actual length of the password (PRS). (A reference implementation
and test vectors are provided in the appendix.)</t>
        <t>The introduction of a zero-padding within the generator string also helps mitigating attacks of a side-channel adversary that
analyzes correlations between publicly known variable information with the low-entropy PRS string.
Note that the hash of the first block is intentionally made independent of session-specific inputs, such as sid or CI.</t>
      </section>
      <section anchor="CPaceMontgomery" numbered="true" toc="default">
        <name>CPace group objects G_X25519 and G_X448 for single-coordinate Ladders on Montgomery curves</name>
        <t>In this section we consider the case of CPace when using the X25519 and X448 Diffie-Hellman functions
from <xref target="RFC7748" format="default"/> operating on the Montgomery curves Curve25519 and Curve448 <xref target="RFC7748" format="default"/>.
CPace implementations using single-coordinate ladders on further Montgomery curves SHALL use the definitions in line
with the specifications for X25519 and X448 and review the guidance given in <xref target="sec-considerations" format="default"/>.</t>
        <t>For the group environment G_X25519 the following definitions apply:</t>
        <ul spacing="normal">
          <li>G_X25519.field_size_bytes = 32</li>
          <li>G_X25519.field_size_bits = 255</li>
          <li>G_X25519.sample_scalar() = sample_random_bytes(G.field_size_bytes)</li>
          <li>G_X25519.scalar_mult(y,g) = G.scalar_mult_vfy(y,g) = X25519(y,g)</li>
          <li>G_X25519.I = zero_bytes(G.field_size_bytes)</li>
          <li>G_X25519.DSI = "CPace255"</li>
        </ul>
        <t>CPace cipher suites using G_X25519 MUST use a hash function producing at least H.b_max_in_bytes &gt;= 32 bytes of output. It is RECOMMENDED
to use G_X25519 in combination with SHA-512.</t>
        <t>For X448 the following definitions apply:</t>
        <ul spacing="normal">
          <li>G_X448.field_size_bytes = 56</li>
          <li>G_X448.field_size_bits = 448</li>
          <li>G_X448.sample_scalar() = sample_random_bytes(G.field_size_bytes)</li>
          <li>G_X448.scalar_mult(y,g) = G.scalar_mult_vfy(y,g) = X448(y,g)</li>
          <li>G_X448.I = zero_bytes(G.field_size_bytes)</li>
          <li>G_X448.DSI = "CPace448"</li>
        </ul>
        <t>CPace cipher suites using G_X448 MUST use a hash function producing at least H.b_max_in_bytes &gt;= 56 bytes of output. It is RECOMMENDED
to use G_X448 in combination with SHAKE-256.</t>
        <t>For both G_X448 and G_X25519 the G.calculate_generator(H, PRS,sid,CI) function shall be implemented as follows.</t>
        <ul spacing="normal">
          <li>First gen_str = generator_string(G.DSI,PRS,CI,sid, H.s_in_bytes) SHALL BE calculated using the input block size of the
chosen hash function.</li>
          <li>This string SHALL then BE hashed to the required length
gen_str_hash = H.hash(gen_str, G.field_size_bytes).
Note that this implies that the permissible output length H.maxb_in_bytes MUST BE larger or equal to the
field size of the group G for making a hashing function suitable.</li>
          <li>This result is then considered as a field coordinate using
the u = decodeUCoordinate(gen_str_hash, G.field_size_bits) function from <xref target="RFC7748" format="default"/> which we
repeat in the appendix for convenience.</li>
          <li>The result point g is then calculated as (g,v) = map_to_curve_elligator2(u) using the function
from <xref target="I-D.irtf-cfrg-hash-to-curve" format="default"/>. Note that the v coordinate produced by the map_to_curve_elligator2 function
is not required for CPace and discarded. The appendix repeats the definitions from <xref target="I-D.irtf-cfrg-hash-to-curve" format="default"/> for convenience.</li>
        </ul>
        <t>In the appendix we show sage code that can be used as reference implementation.</t>
        <section anchor="verification-tests" numbered="true" toc="default">
          <name>Verification tests</name>
          <t>For single-coordinate Montgomery ladders on Montgomery curves verification tests according to <xref target="verification" format="default"/> SHALL
consider the u coordinate values that encode a low-order point on either, the curve or the quadratic twist.</t>
          <t>In addition to that in case of G_X25519 the tests SHALL also verify that the implementation of G.scalar_mult_vfy(y,g) produces the
expected results for non-canonical u coordinate values with bit #255 set, which also encode low-order points.</t>
          <t>Corresponding test vectors are provided in the appendix.</t>
        </section>
      </section>
      <section anchor="CPaceCoffee" numbered="true" toc="default">
        <name>CPace group objects G_Ristretto255 and G_Decaf448 for prime-order group abstractions</name>
        <t>In this section we consider the case of CPace using the Ristretto255 and Decaf448 group abstractions <xref target="I-D.draft-irtf-cfrg-ristretto255-decaf448" format="default"/>.
These abstractions define an encode and decode function, group operations using an internal encoding
and a one-way-map. With the group abstractions there is a distinction between an internal representation
of group elements and an external encoding of the same group element. In order to distinguish between these
different representations, we prepend an underscore before values using the internal representation within this
section.</t>
        <t>For Ristretto255 the following definitions apply:</t>
        <ul spacing="normal">
          <li>G_Ristretto255.DSI = "CPaceRistretto255"</li>
          <li>G_Ristretto255.field_size_bytes = 32</li>
          <li>G_Ristretto255.group_size_bits = 252</li>
          <li>G_Ristretto255.group_order = 2^252 + 27742317777372353535851937790883648493</li>
        </ul>
        <t>CPace cipher suites using G_Ristretto255 MUST use a hash function producing at least H.b_max_in_bytes &gt;= 64 bytes of output.
It is RECOMMENDED to use G_Ristretto255 in combination with SHA-512.</t>
        <t>For decaf448 the following definitions apply:</t>
        <ul spacing="normal">
          <li>G_Decaf448.DSI = "CPaceDecaf448"</li>
          <li>G_Decaf448.field_size_bytes = 56</li>
          <li>G_Decaf448.group_size_bits = 445</li>
          <li>G_Decaf448.group_order = l = 2^446 -
  1381806680989511535200738674851542
  6880336692474882178609894547503885</li>
        </ul>
        <t>CPace cipher suites using G_Decaf448 MUST use a hash function producing at least H.b_max_in_bytes &gt;= 112 bytes of output.
It is RECOMMENDED to use G_Decaf448 in combination with SHAKE-256.</t>
        <t>For both abstractions the following definitions apply:</t>
        <ul spacing="normal">
          <li>
            <t>It is RECOMMENDED to implement G.sample_scalar() as follows.  </t>
            <ul spacing="normal">
              <li>Set scalar = sample_random_bytes(G.group_size_bytes).</li>
              <li>Then clear the most significant bits larger than G.group_size_bits.</li>
              <li>Interpret the result as the little-endian encoding of an integer value and return the result.</li>
            </ul>
          </li>
          <li>Alternatively, if G.sample_scalar() is not implemented according to the above recommendation, it SHALL be implemented using uniform sampling between 1 and (G.group_order - 1). Note that the more complex
uniform sampling process can provide a larger side-channel attack surface for embedded systems in hostile environments.</li>
          <li>G.scalar_mult(y,_g) SHALL operate on a scalar y and a group element _g in the internal representation of the group abstraction environment. It returns the value Y = encode((_g)^y), i.e. it returns a value using the public encoding.</li>
          <li>G.I = is the public encoding representation of the identity element.</li>
          <li>G.scalar_mult_vfy(y,X) operates on a value using the public encoding and a scalar and is implemented as follows. If the decode(X) function fails, it returns G.I. Otherwise it returns encode( decode(X)^y ).</li>
          <li>
            <t>The G.calculate_generator(H, PRS,sid,CI) function SHALL return a decoded point and SHALL BE implemented as follows.  </t>
            <ul spacing="normal">
              <li>First gen_str = generator_string(G.DSI,PRS,CI,sid, H.s_in_bytes) is calculated using the input block size of the chosen hash function.</li>
              <li>This string is then hashed to the required length gen_str_hash = H.hash(gen_str, 2 * G.field_size_bytes).  Note that this
implies that the permissible output length H.maxb_in_bytes MUST BE larger or equal to twice the field size of the group
G for making a
hash function suitable.</li>
              <li>Finally the internal representation of the generator _g is calculated as _g = one_way_map(gen_str_hash)
using the one-way map function from the abstraction.</li>
            </ul>
          </li>
        </ul>
        <t>Note that with these definitions the scalar_mult function operates on a decoded point _g and returns an encoded point,
while the scalar_mult_vfy(y,X) function operates on an encoded point X (and also returns an encoded point).</t>
        <section anchor="verification-tests-1" numbered="true" toc="default">
          <name>Verification tests</name>
          <t>For group abstractions verification tests according to <xref target="verification" format="default"/> SHALL consider encodings of the neutral element and an octet string
that does not decode to a valid group element.</t>
        </section>
      </section>
      <section anchor="CPaceWeierstrass" numbered="true" toc="default">
        <name>CPace group objects for curves in Short-Weierstrass representation</name>
        <t>The group environment objects G defined in this section for use with Short-Weierstrass curves,
are parametrized by the choice of an elliptic curve and by choice of a suitable encode_to_curve(str) function.
encode_to_curve(str) must map an octet string str to a point on the curve.</t>
        <section anchor="curves-and-associated-functions" numbered="true" toc="default">
          <name>Curves and associated functions</name>
          <t>Elliptic curves in Short-Weierstrass form are considered in <xref target="IEEE1363" format="default"/>.
<xref target="IEEE1363" format="default"/> allows for both, curves of prime and non-prime order. However, for the procedures described in this section any suitable
group MUST BE of prime order.</t>
          <t>The specification for the group environment objects specified in this section closely follow the ECKAS-DH1 method from <xref target="IEEE1363" format="default"/>.
I.e. we use the same methods and encodings and protocol substeps as employed in the TLS
 <xref target="RFC5246" format="default"/> <xref target="RFC8446" format="default"/> protocol family.</t>
          <t>For CPace only the uncompressed full-coordinate encodings from <xref target="SEC1" format="default"/> (x and y coordinate) SHOULD be used.
Commonly used curve groups are specified in <xref target="SEC2" format="default"/> and <xref target="RFC5639" format="default"/>. A typical representative of such a Short-Weierstrass curve is NIST-P256.
Point verification as used in ECKAS-DH1 is described in Annex A.16.10. of <xref target="IEEE1363" format="default"/>.</t>
          <t>For deriving Diffie-Hellman shared secrets ECKAS-DH1 from <xref target="IEEE1363" format="default"/> specifies the use of an ECSVDP-DH method. We use ECSVDP-DH in combination with the identy map such that it either returns "error" or the x-coordinate of the Diffie-Hellman result point as shared secret in big endian format (fixed length output by FE2OSP without truncating leading zeros).</t>
        </section>
        <section anchor="suitable-encodetocurve-methods" numbered="true" toc="default">
          <name>Suitable encode_to_curve methods</name>
          <t>All the encode_to_curve methods specified in <xref target="I-D.irtf-cfrg-hash-to-curve" format="default"/>
are suitable for CPace. For Short-Weierstrass curves it is RECOMMENDED to use the non-uniform variant of the SSWU
mapping primitive from <xref target="I-D.irtf-cfrg-hash-to-curve" format="default"/> if a SSWU mapping is available for the chosen curve. (We recommend non-uniform maps in order to give implementations
the flexibility to opt for x-coordinate-only scalar multiplication algorithms.)</t>
        </section>
        <section anchor="definition-of-the-group-environment-g-for-short-weierstrass-curves" numbered="true" toc="default">
          <name>Definition of the group environment G for Short-Weierstrass curves</name>
          <t>In this paragraph we use the following notation for defining the group object G for a selected curve and encode_to_curve method:</t>
          <ul spacing="normal">
            <li>With group_order we denote the order of the elliptic curve which MUST BE a prime.</li>
            <li>With is_valid(X) we denote a method which operates on an octet stream according to <xref target="SEC1" format="default"/> of a point on the group and returns true if the point is valid or false otherwise. This is_valid(X) method SHALL be implemented according to Annex A.16.10. of <xref target="IEEE1363" format="default"/>. I.e. it shall return false if X encodes either the neutral element on the group or does not form a valid encoding of a point on the group.</li>
            <li>With encode_to_curve(str) we denote a selected mapping function from <xref target="I-D.irtf-cfrg-hash-to-curve" format="default"/>. I.e. a function that maps
octet string str to a point on the group. <xref target="I-D.irtf-cfrg-hash-to-curve" format="default"/> considers both, uniform and non-uniform mappings based on several different strategies. It is RECOMMENDED to use the nonuniform variant of the SSWU mapping primitive within <xref target="I-D.irtf-cfrg-hash-to-curve" format="default"/>.</li>
            <li>G.DSI denotes a domain-separation identifier string. G.DSI which SHALL BE obtained by the concatenation of "CPace" and the associated name of the cipher suite used for the encode_to_curve function as specified in <xref target="I-D.irtf-cfrg-hash-to-curve" format="default"/>. E.g. when using the map with the name "P384_XMD:SHA-384_SSWU_NU_"
on curve NIST-P384 the resulting value SHALL BE G.DSI = "CPaceP384_XMD:SHA-384_SSWU_NU_".</li>
          </ul>
          <t>Using the above definitions, the CPace functions required for the group object G are defined as follows.</t>
          <ul spacing="normal">
            <li>G.sample_scalar() SHALL return a value between 1 and (G.group_order - 1). The value sampling MUST BE uniformly random. It is RECOMMENDED to use rejection sampling for converting a uniform bitstring to a uniform value between 1 and (G.group_order - 1).</li>
            <li>
              <t>G.calculate_generator(H, PRS,sid,CI) function SHALL be implemented as follows.  </t>
              <ul spacing="normal">
                <li>First gen_str = generator_string(G.DSI,PRS,CI,sid, H.s_in_bytes) is calculated.</li>
                <li>Then the output of a call to encode_to_curve(gen_str) is returned, using the selected function from <xref target="I-D.irtf-cfrg-hash-to-curve" format="default"/>.</li>
              </ul>
            </li>
            <li>G.scalar_mult(s,X) is a function that operates on a scalar s and an input point X. The input X shall use the same encoding as produced by the G.calculate_generator method above.
G.scalar_mult(s,X) SHALL return an encoding of either the point X^s or the point X^(-s) according to <xref target="SEC1" format="default"/>. Implementations SHOULD use the full-coordinate format without compression, as important protocols such as TLS 1.3 removed support for compression. Implementations of scalar_mult(s,X) MAY output either X^s or X^(-s) as both points X^s and X^(-s) have the same x-coordinate and
result in the same Diffie-Hellman shared secrets K.
(This allows implementations to opt for x-coordinate-only scalar multiplication algorithms.)</li>
            <li>
              <t>G.scalar_mult_vfy(s,X) merges verification of point X according to <xref target="IEEE1363" format="default"/> A.16.10. and the the ECSVDP-DH procedure from <xref target="IEEE1363" format="default"/>.
It SHALL BE implemented as follows:  </t>
              <ul spacing="normal">
                <li>If is_valid(X) = False then G.scalar_mult_vfy(s,X) SHALL return "error" as specified in <xref target="IEEE1363" format="default"/> A.16.10 and 7.2.1.</li>
                <li>Otherwise G.scalar_mult_vfy(s,X) SHALL return the result of the ECSVDP-DH procedure from <xref target="IEEE1363" format="default"/> (section 7.2.1). I.e. it shall
either return "error" (in case that X^s is the neutral element) or the secret shared value "z" (otherwise). "z" SHALL be encoded by using
the big-endian encoding of the x-coordinate of the result point X^s according to <xref target="SEC1" format="default"/>.</li>
              </ul>
            </li>
            <li>We represent the neutral element G.I by using the representation of the "error" result case from <xref target="IEEE1363" format="default"/> as used in the G.scalar_mult_vfy method above.</li>
          </ul>
        </section>
        <section anchor="verification-tests-2" numbered="true" toc="default">
          <name>Verification tests</name>
          <t>For Short-Weierstrass curves verification tests according to <xref target="verification" format="default"/> SHALL consider encodings of the point at infinity and an encoding of a point not on the group.</t>
        </section>
      </section>
    </section>
    <section anchor="verification" numbered="true" toc="default">
      <name>Implementation verification</name>
      <t>Any CPace implementation MUST be tested against invalid or weak point attacks.
Implementation MUST be verified to abort upon conditions where G.scalar_mult_vfy functions outputs G.I.
For testing an implementation it is RECOMMENDED to include weak or invalid points in MSGa and MSGb and introduce this
in a protocol run. It SHALL be verified that the abort condition is properly handled.</t>
      <t>Moreover any implementation MUST be tested with respect invalid encodings of MSGa and MSGb where the length of the message
does not match the specified encoding (i.e. where the sum of the prepended length information does not match the actual length
of the message).</t>
      <t>Corresponding test vectors are given in the appendix for all recommended cipher suites.</t>
    </section>
    <section anchor="sec-considerations" numbered="true" toc="default">
      <name>Security Considerations</name>
      <t>A security proof of CPace is found in <xref target="AHH21" format="default"/>. This proof covers all recommended cipher suites included in this document.
In the following sections we describe how to protect CPace against several attack families, such as relay-, length extension- or side channel attacks. We also describe aspects to consider when deviating from recommended cipher suites.</t>
      <section anchor="party-identifiers-and-relay-attacks" numbered="true" toc="default">
        <name>Party identifiers and relay attacks</name>
        <t>If unique strings identifying the protocol partners are included either as part of the channel identifier CI, the session id sid or the associated data fields ADa, ADb, the ISK will provide implicit authentication also regarding the party identities. Incorporating party identifier strings
is important for fending off relay attacks.
Such attacks become relevant in a setting where several parties, say, A, B and C, share the same password PRS. An adversary might relay messages from a honest user A, who aims at interacting with user B, to a party C instead. If no party identifier strings are used, and B and C use the same PRS value, A might be establishing a common ISK key with C while assuming to interact with party B.
Including and checking party identifiers can fend off such relay attacks.</t>
      </section>
      <section anchor="key-derivation" numbered="true" toc="default">
        <name>Hashing and key derivation</name>
        <t>In order to prevent analysis of length extension attacks on hash functions, all hash input strings in CPace are designed to be prefix-free strings which have the length of individual substrings prepended, enforced by the prefix_free_cat() function.
This choice was made in order to make CPace suitable also for hash function instantiations using
Merkle-Damgard constructions such as SHA-256 or SHA-512 along the lines of <xref target="CDMP05" format="default"/>.
In case that an application whishes to use another form of encoding, the guidance given in <xref target="CDMP05" format="default"/> SHOULD BE considered.</t>
        <t>Although already K is a shared value, it MUST NOT itself be used as an application key. Instead, ISK MUST BE used. Leakage of K to an adversary can lead to offline dictionary attacks.</t>
        <t>As noted already in <xref target="protocol-section" format="default"/> it is RECOMMENDED to process ISK
by use of a suitable strong key derivation function KDF (such as defined in <xref target="RFC5869" format="default"/>) first,
before using the key in a higher-level protocol.</t>
      </section>
      <section anchor="key-confirmation" numbered="true" toc="default">
        <name>Key confirmation</name>
        <t>In many applications it is advisable to add an explicit key confirmation round after the CPace protocol flow. However, as some applications
might only require implicit authentication and as explicit authentication messages are already a built-in feature in many higher-level protocols (e.g. TLS 1.3) the CPace protocol described here does not mandate
use of a key confirmation on the level of the CPace sub-protocol.</t>
        <t>Already without explicit key confirmation, CPace enjoys weak forward security under the sCDH and sSDH assumptions <xref target="AHH21" format="default"/>.
With added explicit confirmation, CPace enjoys perfect forward security also under the strong sCDH and sSDH assumptions <xref target="AHH21" format="default"/>.</t>
        <t>Note that in <xref target="ABKLX21" format="default"/> it was shown that an idealized variant of CPace
also enjoys perfect forward security without explicit key confirmation. However this proof does not explicitly cover
the recommended cipher suites
in this document and requires the stronger assumption of an algebraic adversary model. For this reason, we recommend adding
explicit key confirmation if perfect forward security is required.</t>
        <t>When implementing explicit key confirmation, it is recommended to use an appropriate message-authentication code (MAC)
such as HMAC <xref target="RFC2104" format="default"/> or
CMAC <xref target="RFC4493" format="default"/> using a key mac_key derived from ISK.</t>
        <t>One suitable option that works also in the parallel setting without message ordering is to proceed as follows.</t>
        <ul spacing="normal">
          <li>First calculate mac_key as as mac_key = H.hash(b"CPaceMac" || ISK).</li>
          <li>Then let each party send an authenticator tag Ta, Tb that is calculated over the protocol message that it has sent previously. I.e.
let party A calculate its transmitted authentication code Ta as Ta = MAC(mac_key, MSGa) and let party B calculate its transmitted
authentication code Tb as Tb = MAC(mac_key, MSGb).</li>
          <li>Let the receiving party check the remote authentication tag for the correct value and abort in case that it's incorrect.</li>
        </ul>
      </section>
      <section anchor="sampling-of-scalars" numbered="true" toc="default">
        <name>Sampling of scalars</name>
        <t>For curves over fields F_p where p is a prime close to a power of two, we recommend sampling scalars as a uniform bit string of length field_size_bits. We do so in order to reduce both, complexity of the implementation and reducing the attack surface
with respect to side-channels for embedded systems in hostile environments.
The effect of non-uniform sampling on security was demonstrated to be begning in <xref target="AHH21" format="default"/> for the case of Curve25519 and Curve448.
This analysis however does not transfer to most curves in Short-Weierstrass form. As a result, we recommend rejection sampling if G is as in <xref target="CPaceWeierstrass" format="default"/>.</t>
      </section>
      <section anchor="single-coordinate-cpace-on-montgomery-curves" numbered="true" toc="default">
        <name>Single-coordinate CPace on Montgomery curves</name>
        <t>The recommended cipher suites for the Montgomery curves Curve25519 and Curve448 in <xref target="CPaceMontgomery" format="default"/> rely on the following properties  <xref target="AHH21" format="default"/>:</t>
        <ul spacing="normal">
          <li>The curve has order (p * c) with p prime and c a small cofactor. Also the curve's quadratic twist must be of order (p' * c') with p' prime and c' a cofactor.</li>
          <li>The cofactor c' of the twist MUST BE EQUAL to or an integer multiple of the cofactor c of the curve.</li>
          <li>Both field order q and group order p MUST BE close to a power of two along the lines of <xref target="AHH21" format="default"/>, Appendix E.</li>
          <li>The representation of the neutral element G.I MUST BE the same for both, the curve and its twist.</li>
          <li>The implementation of G.scalar_mult_vfy(y,X) MUST map all c low-order points on the curve and all c' low-order points on the twist to G.I.</li>
        </ul>
        <t>Montgomery curves other than the ones recommended here can use the specifications given in <xref target="CPaceMontgomery" format="default"/>, given that the above properties hold.</t>
      </section>
      <section anchor="nonce-values" numbered="true" toc="default">
        <name>Nonce values</name>
        <t>Secret scalars ya and yb MUST NOT be reused. Values for sid SHOULD NOT be reused since the composability
guarantees established by the simulation-based proof rely on the uniqueness of session ids <xref target="AHH21" format="default"/>.</t>
        <t>If CPace is used in a concurrent system, it is RECOMMENDED that a unique sid is generated by the higher-level protocol and passed to CPace. One suitable option is that sid is generated by concatenating ephemeral random strings contributed by both parties.</t>
      </section>
      <section anchor="side-channel-attacks" numbered="true" toc="default">
        <name>Side channel attacks</name>
        <t>All state-of-the art methods for realizing constant-time execution SHOULD be used.
In case that side channel attacks are to be considered practical for a given application, it is RECOMMENDED to pay special
attention on computing
the secret generator G.calculate_generator(PRS,CI,sid).
The most critical substep to consider might be the processing of the first block of the hash that includes
the PRS string.
The zero-padding introduced when hashing the sensitive PRS string can be expected to make
the task for a side-channel attack somewhat more complex. Still this feature alone is not sufficient for ruling out power analysis attacks.</t>
      </section>
      <section anchor="quantum-computers" numbered="true" toc="default">
        <name>Quantum computers</name>
        <t>CPace is proven secure under the hardness of the strong computational Simultaneous Diffie-Hellmann (sSDH) and strong computational Diffie-Hellmann (sCDH)
assumptions in the group G (as defined in <xref target="AHH21" format="default"/>).
These assumptions are not expected to hold any longer when large-scale quantum computers (LSQC) are available.
Still, even in case that LSQC emerge, it is reasonable to assume that discrete-logarithm computations will remain costly. CPace with ephemeral session id values
sid forces the adversary to solve one computational Diffie-Hellman problem per password guess <xref target="ES21" format="default"/>.
In this sense, using the wording suggested by Steve Thomas on the CFRG mailing list, CPace is "quantum-annoying".</t>
      </section>
    </section>
    <section anchor="iana-considerations" numbered="true" toc="default">
      <name>IANA Considerations</name>
      <t>No IANA action is required.</t>
    </section>
    <section anchor="acknowledgements" numbered="true" toc="default">
      <name>Acknowledgements</name>
      <t>Thanks to the members of the CFRG for comments and advice. Any comment and advice is appreciated.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="SEC1" target="http://www.secg.org/sec1-v2.pdf">
          <front>
            <title>SEC 1: Elliptic Curve Cryptography</title>
            <author>
              <organization>Standards for Efficient Cryptography Group (SECG)</organization>
            </author>
            <date year="2009" month="May"/>
          </front>
        </reference>
        <reference anchor="IEEE1363">
          <front>
            <title>Standard Specifications for Public Key Cryptography, IEEE 1363</title>
            <author>
              <organization/>
            </author>
            <date year="2000"/>
          </front>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <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="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <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="I-D.irtf-cfrg-hash-to-curve">
          <front>
            <title>Hashing to Elliptic Curves</title>
            <author fullname="Armando Faz-Hernandez">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <author fullname="Sam Scott">
              <organization>Cornell Tech</organization>
            </author>
            <author fullname="Nick Sullivan">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <author fullname="Riad S. Wahby">
              <organization>Stanford University</organization>
            </author>
            <author fullname="Christopher A. Wood">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <date day="10" month="November" year="2021"/>
            <abstract>
              <t>   This document specifies a number of algorithms for encoding or
   hashing an arbitrary string to a point on an elliptic curve.  This
   document is a product of the Crypto Forum Research Group (CFRG) in
   the IRTF.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-hash-to-curve-13"/>
        </reference>
        <reference anchor="RFC7748">
          <front>
            <title>Elliptic Curves for Security</title>
            <author fullname="A. Langley" initials="A." surname="Langley">
              <organization/>
            </author>
            <author fullname="M. Hamburg" initials="M." surname="Hamburg">
              <organization/>
            </author>
            <author fullname="S. Turner" initials="S." surname="Turner">
              <organization/>
            </author>
            <date month="January" year="2016"/>
            <abstract>
              <t>This memo specifies two elliptic curves over prime fields that offer a high level of practical security in cryptographic applications, including Transport Layer Security (TLS).  These curves are intended to operate at the ~128-bit and ~224-bit security level, respectively, and are generated deterministically based on a list of required properties.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7748"/>
          <seriesInfo name="DOI" value="10.17487/RFC7748"/>
        </reference>
        <reference anchor="I-D.draft-irtf-cfrg-ristretto255-decaf448">
          <front>
            <title>The ristretto255 and decaf448 Groups</title>
            <author fullname="Henry de Valence">
	 </author>
            <author fullname="Jack Grigg">
	 </author>
            <author fullname="George Tankersley">
	 </author>
            <author fullname="Filippo Valsorda">
	 </author>
            <author fullname="Isis Lovecruft">
	 </author>
            <author fullname="Mike Hamburg">
	 </author>
            <date day="4" month="August" year="2021"/>
            <abstract>
              <t>   This memo specifies two prime-order groups, ristretto255 and
   decaf448, suitable for safely implementing higher-level and complex
   cryptographic protocols.  The ristretto255 group can be implemented
   using Curve25519, allowing existing Curve25519 implementations to be
   reused and extended to provide a prime-order group.  Likewise, the
   decaf448 group can be implemented using edwards448.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-ristretto255-decaf448-01"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="ES21" target="https://eprint.iacr.org/2021/696">
          <front>
            <title>The 'quantum annoying' property of password-authenticated key exchange protocols.</title>
            <author initials="E." surname="Eaton">
              <organization/>
            </author>
            <author initials="D." surname="Stebila">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="ABKLX21" target="https://eprint.iacr.org/2021/1218">
          <front>
            <title>Algebraic Adversaries in the Universal Composability Framework.</title>
            <author initials="M." surname="Abdalla">
              <organization/>
            </author>
            <author initials="M." surname="Barbosa">
              <organization/>
            </author>
            <author initials="J." surname="Katz">
              <organization/>
            </author>
            <author initials="J." surname="Loss">
              <organization/>
            </author>
            <author initials="J." surname="Xu">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="AHH21" target="https://eprint.iacr.org/2021/114">
          <front>
            <title>Security analysis of CPace</title>
            <author initials="M." surname="Abdalla">
              <organization/>
            </author>
            <author initials="B." surname="Haase">
              <organization/>
            </author>
            <author initials="J." surname="Hesse">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="CDMP05" target="https://doi.org/10.1007/11535218_26">
          <front>
            <title>Merkle-Damgaard Revisited: How to Construct a Hash Function</title>
            <author initials="J-S." surname="Coron" fullname="Jean-Sebastien Coron">
              <organization>University of Luxembourg</organization>
            </author>
            <author initials="Y." surname="Dodis" fullname="Yevgeniy Dodis">
              <organization>New York University</organization>
            </author>
            <author initials="C." surname="Malinaud" fullname="Cecile Malinaud">
              <organization>University of Luxembourg</organization>
            </author>
            <author initials="P." surname="Puniya" fullname="Prashant Puniya">
              <organization>New York University</organization>
            </author>
            <date year="2005"/>
          </front>
          <seriesInfo name="In" value="Advances in Cryptology - CRYPTO 2005"/>
          <seriesInfo name="pages" value="430-448"/>
          <seriesInfo name="DOI" value="10.1007/11535218_26"/>
        </reference>
        <reference anchor="FIPS202" target="https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.202.pdf">
          <front>
            <title>SHA-3 Standard: Permutation-Based Hash and Extendable-Output Functions</title>
            <author>
              <organization>National Institute of Standards and Technology (NIST)</organization>
            </author>
            <date year="2015" month="August"/>
          </front>
        </reference>
        <reference anchor="SEC2" target="http://www.secg.org/sec2-v2.pdf">
          <front>
            <title>SEC 2: Recommended Elliptic Curve Domain Parameters</title>
            <author>
              <organization>Standards for Efficient Cryptography Group (SECG)</organization>
            </author>
            <date year="2010" month="January"/>
          </front>
        </reference>
        <reference anchor="RFC6234">
          <front>
            <title>US Secure Hash Algorithms (SHA and SHA-based HMAC and HKDF)</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd">
              <organization/>
            </author>
            <author fullname="T. Hansen" initials="T." surname="Hansen">
              <organization/>
            </author>
            <date month="May" year="2011"/>
            <abstract>
              <t>Federal Information Processing Standard, FIPS</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6234"/>
          <seriesInfo name="DOI" value="10.17487/RFC6234"/>
        </reference>
        <reference anchor="RFC5869">
          <front>
            <title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <author fullname="P. Eronen" initials="P." surname="Eronen">
              <organization/>
            </author>
            <date month="May" year="2010"/>
            <abstract>
              <t>This document specifies a simple Hashed Message Authentication Code (HMAC)-based key derivation function (HKDF), which can be used as a building block in various protocols and applications.  The key derivation function (KDF) is intended to support a wide range of applications and requirements, and is conservative in its use of cryptographic hash functions.  This document is not an Internet  Standards Track specification; it is published for informational  purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5869"/>
          <seriesInfo name="DOI" value="10.17487/RFC5869"/>
        </reference>
        <reference anchor="RFC5246">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.2</title>
            <author fullname="T. Dierks" initials="T." surname="Dierks">
              <organization/>
            </author>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date month="August" year="2008"/>
            <abstract>
              <t>This document specifies Version 1.2 of the Transport Layer Security (TLS) protocol.  The TLS protocol provides communications security over the Internet.  The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5246"/>
          <seriesInfo name="DOI" value="10.17487/RFC5246"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <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="RFC5639">
          <front>
            <title>Elliptic Curve Cryptography (ECC) Brainpool Standard Curves and Curve Generation</title>
            <author fullname="M. Lochter" initials="M." surname="Lochter">
              <organization/>
            </author>
            <author fullname="J. Merkle" initials="J." surname="Merkle">
              <organization/>
            </author>
            <date month="March" year="2010"/>
            <abstract>
              <t>This memo proposes several elliptic curve domain parameters over finite prime fields for use in cryptographic applications.  The domain parameters are consistent with the relevant international standards, and can be used in X.509 certificates and certificate revocation lists (CRLs), for Internet Key Exchange (IKE), Transport Layer Security (TLS), XML signatures, and all applications or protocols based on the cryptographic message syntax (CMS).  This document is  not an Internet Standards Track specification; it is published for  informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5639"/>
          <seriesInfo name="DOI" value="10.17487/RFC5639"/>
        </reference>
        <reference anchor="RFC2104">
          <front>
            <title>HMAC: Keyed-Hashing for Message Authentication</title>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <author fullname="M. Bellare" initials="M." surname="Bellare">
              <organization/>
            </author>
            <author fullname="R. Canetti" initials="R." surname="Canetti">
              <organization/>
            </author>
            <date month="February" year="1997"/>
            <abstract>
              <t>This document describes HMAC, a mechanism for message authentication using cryptographic hash functions. HMAC can be used with any iterative cryptographic hash function, e.g., MD5, SHA-1, in combination with a secret shared key.  The cryptographic strength of HMAC depends on the properties of the underlying hash function.  This memo provides information for the Internet community.  This memo does not specify an Internet standard of any kind</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2104"/>
          <seriesInfo name="DOI" value="10.17487/RFC2104"/>
        </reference>
        <reference anchor="RFC4493">
          <front>
            <title>The AES-CMAC Algorithm</title>
            <author fullname="JH. Song" initials="JH." surname="Song">
              <organization/>
            </author>
            <author fullname="R. Poovendran" initials="R." surname="Poovendran">
              <organization/>
            </author>
            <author fullname="J. Lee" initials="J." surname="Lee">
              <organization/>
            </author>
            <author fullname="T. Iwata" initials="T." surname="Iwata">
              <organization/>
            </author>
            <date month="June" year="2006"/>
            <abstract>
              <t>The National Institute of Standards and Technology (NIST) has recently specified the Cipher-based Message Authentication Code (CMAC), which is equivalent to the One-Key CBC MAC1 (OMAC1) submitted by Iwata and Kurosawa.  This memo specifies an authentication algorithm based on CMAC with the 128-bit Advanced Encryption Standard (AES). This new authentication algorithm is named AES-CMAC. The purpose of this document is to make the AES-CMAC algorithm conveniently available to the Internet Community.  This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4493"/>
          <seriesInfo name="DOI" value="10.17487/RFC4493"/>
        </reference>
      </references>
    </references>
    <section anchor="cpace-function-definitions" numbered="true" toc="default">
      <name>CPace function definitions</name>
      <section anchor="definition-and-test-vectors-for-string-utility-functions" numbered="true" toc="default">
        <name>Definition and test vectors for string utility functions</name>
        <section anchor="prependlen-function" numbered="true" toc="default">
          <name>prepend_len function</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
def prepend_len(data):
    "prepend LEB128 encoding of length"
    length = len(data)
    length_encoded = b""
    while True:
        if length < 128:
            length_encoded += bytes([length])
        else:
            length_encoded += bytes([(length & 0x7f) + 0x80])
        length = int(length >> 7)
        if length == 0:
            break;
    return length_encoded + data
]]></artwork>
        </section>
        <section anchor="prependlen-test-vectors" numbered="true" toc="default">
          <name>prepend_len test vectors</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  prepend_len(b""): (length: 1 bytes)
    00
  prepend_len(b"1234"): (length: 5 bytes)
    0431323334
  prepend_len(bytes(range(127))): (length: 128 bytes)
    7f000102030405060708090a0b0c0d0e0f101112131415161718191a1b
    1c1d1e1f202122232425262728292a2b2c2d2e2f303132333435363738
    393a3b3c3d3e3f404142434445464748494a4b4c4d4e4f505152535455
    565758595a5b5c5d5e5f606162636465666768696a6b6c6d6e6f707172
    737475767778797a7b7c7d7e
  prepend_len(bytes(range(128))): (length: 130 bytes)
    8001000102030405060708090a0b0c0d0e0f101112131415161718191a
    1b1c1d1e1f202122232425262728292a2b2c2d2e2f3031323334353637
    38393a3b3c3d3e3f404142434445464748494a4b4c4d4e4f5051525354
    55565758595a5b5c5d5e5f606162636465666768696a6b6c6d6e6f7071
    72737475767778797a7b7c7d7e7f
]]></artwork>
        </section>
        <section anchor="prefixfreecat-function" numbered="true" toc="default">
          <name>prefix_free_cat function</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  def prefix_free_cat(*args):
      result = b""
      for arg in args:
          result += prepend_len(arg)
      return result
]]></artwork>
        </section>
        <section anchor="testvector-for-prefixfreecat" numbered="true" toc="default">
          <name>Testvector for prefix_free_cat()</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  prefix_free_cat(b"1234",b"5",b"",b"6789"):
  (length: 13 bytes)
    04313233340135000436373839
]]></artwork>
        </section>
        <section anchor="examples-for-invalid-encoded-messages" numbered="true" toc="default">
          <name>Examples for invalid encoded messages</name>
          <t>The following messages are examples which have invalid encoded length fields. I.e. they are examples
where parsing for the sum of the length of subfields as expected for a message generated for the prefix free concatenation
does not give the correct length of the message. Parties MUST abort upon reception of such invalid messages as MSGa or MSGb.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inv_MSG1 with invalid encoded length: (length: 3 bytes)
    ffffff
  Inv_MSG2 with invalid encoded length: (length: 3 bytes)
    ffff03
  Inv_MSG3 with invalid encoded length: (length: 4 bytes)
    00ffff03
  Inv_MSG4 with invalid encoded length: (length: 4 bytes)
    00ffffff
]]></artwork>
        </section>
      </section>
      <section anchor="definition-of-generatorstring-function" numbered="true" toc="default">
        <name>Definition of generator_string function.</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
def generator_string(DSI,PRS,CI,sid,s_in_bytes):
    # Concat all input fields with prepended length information.
    # Add zero padding in the first hash block after DSI and PRS.
    len_zpad = max(0,s_in_bytes - 1 - len(prepend_len(PRS))
                     - len(prepend_len(DSI)))
    return prefix_free_cat(DSI, PRS, zero_bytes(len_zpad),
                           CI, sid)
]]></artwork>
      </section>
      <section anchor="definitions-and-test-vector-ordered-concatenation" numbered="true" toc="default">
        <name>Definitions and test vector ordered concatenation</name>
        <section anchor="definitions-for-lexiographical-ordering" numbered="true" toc="default">
          <name>Definitions for lexiographical ordering</name>
          <t>For ordered concatenation lexiographical ordering of byte sequences is used:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
   def lexiographically_larger(bytes1,bytes2):
      "Returns True if bytes1 > bytes2 using lexiographical ordering."
      min_len = min (len(bytes1), len(bytes2))
      for m in range(min_len):
          if bytes1[m] > bytes2[m]:
              return True;
          elif bytes1[m] < bytes2[m]:
              return False;
      return len(bytes1) > len(bytes2)
]]></artwork>
        </section>
        <section anchor="definitions-for-ordered-concatenation" numbered="true" toc="default">
          <name>Definitions for ordered concatenation</name>
          <t>With the above definition of lexiographical ordering ordered concatenation is specified as follows.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  def oCAT(bytes1,bytes2):
      if lexiographically_larger(bytes1,bytes2):
          return bytes1 + bytes2
      else:
          return bytes2 + bytes1
]]></artwork>
        </section>
        <section anchor="test-vectors-ordered-concatenation" numbered="true" toc="default">
          <name>Test vectors ordered concatenation</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  string comparison for oCAT:
    lexiographically_larger(b"\0", b"\0\0") == False
    lexiographically_larger(b"\1", b"\0\0") == True
    lexiographically_larger(b"\0\0", b"\0") == True
    lexiographically_larger(b"\0\0", b"\1") == False
    lexiographically_larger(b"\0\1", b"\1") == False
    lexiographically_larger(b"ABCD", b"BCD") == False

  oCAT(b"ABCD",b"BCD"): (length: 7 bytes)
    42434441424344
  oCAT(b"BCD",b"ABCDE"): (length: 8 bytes)
    4243444142434445
]]></artwork>
        </section>
      </section>
      <section anchor="decoding-and-encoding-functions-according-to-rfc7748" numbered="true" toc="default">
        <name>Decoding and Encoding functions according to RFC7748</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
   def decodeLittleEndian(b, bits):
       return sum([b[i] << 8*i for i in range((bits+7)/8)])

   def decodeUCoordinate(u, bits):
       u_list = [ord(b) for b in u]
       # Ignore any unused bits.
       if bits % 8:
           u_list[-1] &= (1<<(bits%8))-1
       return decodeLittleEndian(u_list, bits)

   def encodeUCoordinate(u, bits):
       u = u % p
       return ''.join([chr((u >> 8*i) & 0xff)
                       for i in range((bits+7)/8)])
]]></artwork>
      </section>
      <section anchor="elligator-2-reference-implementation" numbered="true" toc="default">
        <name>Elligator 2 reference implementation</name>
        <t>The Elligator 2 map requires a non-square field element Z which shall be calculated
as follows.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
    def find_z_ell2(F):
        # Find nonsquare for Elligator2
        # Argument: F, a field object, e.g., F = GF(2^255 - 19)
        ctr = F.gen()
        while True:
            for Z_cand in (F(ctr), F(-ctr)):
                # Z must be a non-square in F.
                if is_square(Z_cand):
                    continue
                return Z_cand
            ctr += 1
]]></artwork>
        <t>The values of the non-square Z only depend on the curve. The algorithm above
results in a value of Z = 2 for Curve25519 and Z=-1 for Ed448.</t>
        <t>The following code maps a field element r to an encoded field element which
is a valid u-coordinate of a Montgomery curve with curve parameter A.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
    def elligator2(r, q, A, field_size_bits):
        # Inputs: field element r, field order q,
        #         curve parameter A and field size in bits
        Fq = GF(q); A = Fq(A); B = Fq(1);

        # get non-square z as specified in the hash2curve draft.
        z = Fq(find_z_ell2(Fq))
        powerForLegendreSymbol = floor((q-1)/2)

        v = - A / (1 + z * r^2)
        epsilon = (v^3 + A * v^2 + B * v)^powerForLegendreSymbol
        x = epsilon * v - (1 - epsilon) * A/2
        return encodeUCoordinate(Integer(x), field_size_bits)
]]></artwork>
      </section>
    </section>
    <section anchor="test-vectors" numbered="true" toc="default">
      <name>Test vectors</name>
      <section anchor="test-vector-for-cpace-using-group-x25519-and-hash-sha-512" numbered="true" toc="default">
        <name>Test vector for CPace using group X25519 and hash SHA-512</name>
        <section anchor="test-vectors-for-calculategenerator-with-group-x25519" numbered="true" toc="default">
          <name>Test vectors for calculate_generator with group X25519</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inputs
    H   = SHA-512 with input block size 128 bytes.
    PRS = b'Password' ; ZPAD length: 109 ; DSI = b'CPace255'
    CI = b'\nAinitiator\nBresponder'
    CI = 0a41696e69746961746f720a42726573706f6e646572
    sid = 7e4b4791d6a8ef019b936c79fb7f2c57
  Outputs
    generator_string(G.DSI,PRS,CI,sid,H.s_in_bytes):
    (length: 168 bytes)
      0843506163653235350850617373776f72646d000000000000000000
      00000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000160a41696e69746961746f72
      0a42726573706f6e646572107e4b4791d6a8ef019b936c79fb7f2c57
    hash generator string: (length: 32 bytes)
      10047198e8c4cacf0ab8a6d0ac337b8ae497209d042f7f3a50945863
      94e821fc
    decoded field element of 255 bits: (length: 32 bytes)
      10047198e8c4cacf0ab8a6d0ac337b8ae497209d042f7f3a50945863
      94e8217c
    generator g: (length: 32 bytes)
      4e6098733061c0e8486611a904fe5edb049804d26130a44131a6229e
      55c5c321
]]></artwork>
        </section>
        <section anchor="test-vector-for-msga" numbered="true" toc="default">
          <name>Test vector for MSGa</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inputs
    ADa = b'ADa'
    ya (little endian): (length: 32 bytes)
      45acf93116ae5d3dae995a7c627df2924321a8e857d9a200807131e3
      8839b0c2
  Outputs
    Ya: (length: 32 bytes)
      6f7fd31863b18b0cc9830fc842c60dea80120ccf2fd375498225e45a
      52065361
    MSGa: (length: 37 bytes)
      206f7fd31863b18b0cc9830fc842c60dea80120ccf2fd375498225e4
      5a5206536103414461
]]></artwork>
        </section>
        <section anchor="test-vector-for-msgb" numbered="true" toc="default">
          <name>Test vector for MSGb</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inputs
    ADb = b'ADb'
    yb (little endian): (length: 32 bytes)
      a145e914b347002d298ce2051394f0ed68cf3623dfe5db082c78ffa5
      a667acdc
  Outputs
    Yb: (length: 32 bytes)
      e1b730a4956c0f853d96c5d125cebeeea46952c07c6f66da65bd9ffd
      2f71a462
    MSGb: (length: 37 bytes)
      20e1b730a4956c0f853d96c5d125cebeeea46952c07c6f66da65bd9f
      fd2f71a46203414462
]]></artwork>
        </section>
        <section anchor="test-vector-for-secret-points-k" numbered="true" toc="default">
          <name>Test vector for secret points K</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    scalar_mult_vfy(ya,Yb): (length: 32 bytes)
      2a905bc5f0b93ee72ac4b6ea8723520941adfc892935bf6f86d9e199
      befa6024
    scalar_mult_vfy(yb,Ya): (length: 32 bytes)
      2a905bc5f0b93ee72ac4b6ea8723520941adfc892935bf6f86d9e199
      befa6024
]]></artwork>
        </section>
        <section anchor="test-vector-for-isk-calculation-initiatorresponder" numbered="true" toc="default">
          <name>Test vector for ISK calculation initiator/responder</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    unordered cat of transcript : (length: 74 bytes)
      206f7fd31863b18b0cc9830fc842c60dea80120ccf2fd375498225e4
      5a520653610341446120e1b730a4956c0f853d96c5d125cebeeea469
      52c07c6f66da65bd9ffd2f71a46203414462
    DSI = G.DSI_ISK, b'CPace255_ISK': (length: 12 bytes)
      43506163653235355f49534b
    prefix_free_cat(DSI,sid,K)||MSGa||MSGb: (length: 137 bytes)
      0c43506163653235355f49534b107e4b4791d6a8ef019b936c79fb7f
      2c57202a905bc5f0b93ee72ac4b6ea8723520941adfc892935bf6f86
      d9e199befa6024206f7fd31863b18b0cc9830fc842c60dea80120ccf
      2fd375498225e45a520653610341446120e1b730a4956c0f853d96c5
      d125cebeeea46952c07c6f66da65bd9ffd2f71a46203414462
    ISK result: (length: 64 bytes)
      99a9e0ff35acb94ad8af1cd6b32ac409dc7d00557ccd9a7d19d3b462
      9e5f1f084f9332096162438c7ecc78331b4eda17e1a229a47182eccc
      9ea58cd9cdcd8e9a
]]></artwork>
        </section>
        <section anchor="test-vector-for-isk-calculation-parallel-execution" numbered="true" toc="default">
          <name>Test vector for ISK calculation parallel execution</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    ordered cat of transcript : (length: 74 bytes)
      20e1b730a4956c0f853d96c5d125cebeeea46952c07c6f66da65bd9f
      fd2f71a46203414462206f7fd31863b18b0cc9830fc842c60dea8012
      0ccf2fd375498225e45a5206536103414461
    DSI = G.DSI_ISK, b'CPace255_ISK': (length: 12 bytes)
      43506163653235355f49534b
    prefix_free_cat(DSI,sid,K)||oCAT(MSGa,MSGb):
    (length: 137 bytes)
      0c43506163653235355f49534b107e4b4791d6a8ef019b936c79fb7f
      2c57202a905bc5f0b93ee72ac4b6ea8723520941adfc892935bf6f86
      d9e199befa602420e1b730a4956c0f853d96c5d125cebeeea46952c0
      7c6f66da65bd9ffd2f71a46203414462206f7fd31863b18b0cc9830f
      c842c60dea80120ccf2fd375498225e45a5206536103414461
    ISK result: (length: 64 bytes)
      3cd6a9670fa3ff211d829b845baa0f5ba9ad580c3ba0ee790bd0e9cd
      556290a8ffce44419fbf94e4cb8e7fe9f454fd25dc13e689e4d6ab0a
      c2211c70a8ac0062
]]></artwork>
        </section>
        <section anchor="corresponding-ansi-c-initializers" numbered="true" toc="default">
          <name>Corresponding ANSI-C initializers</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
const uint8_t tc_PRS[] = {
 0x50,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,
};
const uint8_t tc_CI[] = {
 0x0a,0x41,0x69,0x6e,0x69,0x74,0x69,0x61,0x74,0x6f,0x72,0x0a,
 0x42,0x72,0x65,0x73,0x70,0x6f,0x6e,0x64,0x65,0x72,
};
const uint8_t tc_sid[] = {
 0x7e,0x4b,0x47,0x91,0xd6,0xa8,0xef,0x01,0x9b,0x93,0x6c,0x79,
 0xfb,0x7f,0x2c,0x57,
};
const uint8_t tc_g[] = {
 0x4e,0x60,0x98,0x73,0x30,0x61,0xc0,0xe8,0x48,0x66,0x11,0xa9,
 0x04,0xfe,0x5e,0xdb,0x04,0x98,0x04,0xd2,0x61,0x30,0xa4,0x41,
 0x31,0xa6,0x22,0x9e,0x55,0xc5,0xc3,0x21,
};
const uint8_t tc_ya[] = {
 0x45,0xac,0xf9,0x31,0x16,0xae,0x5d,0x3d,0xae,0x99,0x5a,0x7c,
 0x62,0x7d,0xf2,0x92,0x43,0x21,0xa8,0xe8,0x57,0xd9,0xa2,0x00,
 0x80,0x71,0x31,0xe3,0x88,0x39,0xb0,0xc2,
};
const uint8_t tc_ADa[] = {
 0x41,0x44,0x61,
};
const uint8_t tc_Ya[] = {
 0x6f,0x7f,0xd3,0x18,0x63,0xb1,0x8b,0x0c,0xc9,0x83,0x0f,0xc8,
 0x42,0xc6,0x0d,0xea,0x80,0x12,0x0c,0xcf,0x2f,0xd3,0x75,0x49,
 0x82,0x25,0xe4,0x5a,0x52,0x06,0x53,0x61,
};
const uint8_t tc_yb[] = {
 0xa1,0x45,0xe9,0x14,0xb3,0x47,0x00,0x2d,0x29,0x8c,0xe2,0x05,
 0x13,0x94,0xf0,0xed,0x68,0xcf,0x36,0x23,0xdf,0xe5,0xdb,0x08,
 0x2c,0x78,0xff,0xa5,0xa6,0x67,0xac,0xdc,
};
const uint8_t tc_ADb[] = {
 0x41,0x44,0x62,
};
const uint8_t tc_Yb[] = {
 0xe1,0xb7,0x30,0xa4,0x95,0x6c,0x0f,0x85,0x3d,0x96,0xc5,0xd1,
 0x25,0xce,0xbe,0xee,0xa4,0x69,0x52,0xc0,0x7c,0x6f,0x66,0xda,
 0x65,0xbd,0x9f,0xfd,0x2f,0x71,0xa4,0x62,
};
const uint8_t tc_K[] = {
 0x2a,0x90,0x5b,0xc5,0xf0,0xb9,0x3e,0xe7,0x2a,0xc4,0xb6,0xea,
 0x87,0x23,0x52,0x09,0x41,0xad,0xfc,0x89,0x29,0x35,0xbf,0x6f,
 0x86,0xd9,0xe1,0x99,0xbe,0xfa,0x60,0x24,
};
const uint8_t tc_ISK_IR[] = {
 0x99,0xa9,0xe0,0xff,0x35,0xac,0xb9,0x4a,0xd8,0xaf,0x1c,0xd6,
 0xb3,0x2a,0xc4,0x09,0xdc,0x7d,0x00,0x55,0x7c,0xcd,0x9a,0x7d,
 0x19,0xd3,0xb4,0x62,0x9e,0x5f,0x1f,0x08,0x4f,0x93,0x32,0x09,
 0x61,0x62,0x43,0x8c,0x7e,0xcc,0x78,0x33,0x1b,0x4e,0xda,0x17,
 0xe1,0xa2,0x29,0xa4,0x71,0x82,0xec,0xcc,0x9e,0xa5,0x8c,0xd9,
 0xcd,0xcd,0x8e,0x9a,
};
const uint8_t tc_ISK_SY[] = {
 0x3c,0xd6,0xa9,0x67,0x0f,0xa3,0xff,0x21,0x1d,0x82,0x9b,0x84,
 0x5b,0xaa,0x0f,0x5b,0xa9,0xad,0x58,0x0c,0x3b,0xa0,0xee,0x79,
 0x0b,0xd0,0xe9,0xcd,0x55,0x62,0x90,0xa8,0xff,0xce,0x44,0x41,
 0x9f,0xbf,0x94,0xe4,0xcb,0x8e,0x7f,0xe9,0xf4,0x54,0xfd,0x25,
 0xdc,0x13,0xe6,0x89,0xe4,0xd6,0xab,0x0a,0xc2,0x21,0x1c,0x70,
 0xa8,0xac,0x00,0x62,
};
]]></artwork>
        </section>
        <section anchor="test-vectors-for-gx25519scalarmultvfy-low-order-points" numbered="true" toc="default">
          <name>Test vectors for G_X25519.scalar_mult_vfy: low order points</name>
          <t>Test vectors for which G_X25519.scalar_mult_vfy(s_in,ux) must return the neutral
element or would return the neutral element if bit #255 of field element
representation was not correctly cleared. (The decodeUCoordinate function from RFC7748 mandates clearing bit #255 for field element representations for use in the X25519 function.).</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
u0: 0000000000000000000000000000000000000000000000000000000000000000
u1: 0100000000000000000000000000000000000000000000000000000000000000
u2: ecffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7f
u3: e0eb7a7c3b41b8ae1656e3faf19fc46ada098deb9c32b1fd866205165f49b800
u4: 5f9c95bca3508c24b1d0b1559c83ef5b04445cc4581c8e86d8224eddd09f1157
u5: edffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7f
u6: daffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
u7: eeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7f
u8: dbffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
u9: d9ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
ua: cdeb7a7c3b41b8ae1656e3faf19fc46ada098deb9c32b1fd866205165f49b880
ub: 4c9c95bca3508c24b1d0b1559c83ef5b04445cc4581c8e86d8224eddd09f11d7

u0 ... ub MUST be verified to produce the correct results q0 ... qb:

Additionally, u0,u1,u2,u3,u4,u5 and u7 MUST trigger the abort case
when included in MSGa or MSGb.

s = af46e36bf0527c9d3b16154b82465edd62144c0ac1fc5a18506a2244ba449aff
qN = G_X25519.scalar_mult_vfy(s, uX)
q0: 0000000000000000000000000000000000000000000000000000000000000000
q1: 0000000000000000000000000000000000000000000000000000000000000000
q2: 0000000000000000000000000000000000000000000000000000000000000000
q3: 0000000000000000000000000000000000000000000000000000000000000000
q4: 0000000000000000000000000000000000000000000000000000000000000000
q5: 0000000000000000000000000000000000000000000000000000000000000000
q6: d8e2c776bbacd510d09fd9278b7edcd25fc5ae9adfba3b6e040e8d3b71b21806
q7: 0000000000000000000000000000000000000000000000000000000000000000
q8: c85c655ebe8be44ba9c0ffde69f2fe10194458d137f09bbff725ce58803cdb38
q9: db64dafa9b8fdd136914e61461935fe92aa372cb056314e1231bc4ec12417456
qa: e062dcd5376d58297be2618c7498f55baa07d7e03184e8aada20bca28888bf7a
qb: 993c6ad11c4c29da9a56f7691fd0ff8d732e49de6250b6c2e80003ff4629a175
]]></artwork>
        </section>
      </section>
      <section anchor="test-vector-for-cpace-using-group-x448-and-hash-shake-256" numbered="true" toc="default">
        <name>Test vector for CPace using group X448 and hash SHAKE-256</name>
        <section anchor="test-vectors-for-calculategenerator-with-group-x448" numbered="true" toc="default">
          <name>Test vectors for calculate_generator with group X448</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inputs
    H   = SHAKE-256 with input block size 136 bytes.
    PRS = b'Password' ; ZPAD length: 117 ; DSI = b'CPace448'
    CI = b'\nAinitiator\nBresponder'
    CI = 0a41696e69746961746f720a42726573706f6e646572
    sid = 5223e0cdc45d6575668d64c552004124
  Outputs
    generator_string(G.DSI,PRS,CI,sid,H.s_in_bytes):
    (length: 176 bytes)
      0843506163653434380850617373776f726475000000000000000000
      00000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000000000000000
      000000000000000000000000000000000000000000000000160a4169
      6e69746961746f720a42726573706f6e646572105223e0cdc45d6575
      668d64c552004124
    hash generator string: (length: 56 bytes)
      769e06d6c41c8cf1c87aa3df8e687167f6d0a2e41821e856276a0221
      d88272359d0b43204b546174c9179c83c107b707f296eafaa1c5a293
    decoded field element of 448 bits: (length: 56 bytes)
      769e06d6c41c8cf1c87aa3df8e687167f6d0a2e41821e856276a0221
      d88272359d0b43204b546174c9179c83c107b707f296eafaa1c5a293
    generator g: (length: 56 bytes)
      6fdae14718eb7506dd96e3f7797896efdb8db9ec0797485c9c48a192
      2e44961da097f2908b084a5de33ab671630660d27d79ffd6ee8ec846
]]></artwork>
        </section>
        <section anchor="test-vector-for-msga-1" numbered="true" toc="default">
          <name>Test vector for MSGa</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inputs
    ADa = b'ADa'
    ya (little endian): (length: 56 bytes)
      21b4f4bd9e64ed355c3eb676a28ebedaf6d8f17bdc365995b3190971
      53044080516bd083bfcce66121a3072646994c8430cc382b8dc543e8
  Outputs
    Ya: (length: 56 bytes)
      396bd11daf223711e575cac6021e3fa31558012048a1cec7876292b9
      6c61eda353fe04f33028d2352779668a934084da776c1c51a58ce4b5
    MSGa: (length: 61 bytes)
      38396bd11daf223711e575cac6021e3fa31558012048a1cec7876292
      b96c61eda353fe04f33028d2352779668a934084da776c1c51a58ce4
      b503414461
]]></artwork>
        </section>
        <section anchor="test-vector-for-msgb-1" numbered="true" toc="default">
          <name>Test vector for MSGb</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inputs
    ADb = b'ADb'
    yb (little endian): (length: 56 bytes)
      848b0779ff415f0af4ea14df9dd1d3c29ac41d836c7808896c4eba19
      c51ac40a439caf5e61ec88c307c7d619195229412eaa73fb2a5ea20d
  Outputs
    Yb: (length: 56 bytes)
      53c519fb490fde5a04bda8c18b327d0fc1a9391d19e0ac00c59df9c6
      0422284e593d6b092eac94f5aa644ed883f39bd4f04e4beb6af86d58
    MSGb: (length: 61 bytes)
      3853c519fb490fde5a04bda8c18b327d0fc1a9391d19e0ac00c59df9
      c60422284e593d6b092eac94f5aa644ed883f39bd4f04e4beb6af86d
      5803414462
]]></artwork>
        </section>
        <section anchor="test-vector-for-secret-points-k-1" numbered="true" toc="default">
          <name>Test vector for secret points K</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    scalar_mult_vfy(ya,Yb): (length: 56 bytes)
      e00af217556a40ccbc9822cc27a43542e45166a653aa4df746d5f8e1
      e8df483e9baff71c9eb03ee20a688ad4e4d359f70ac9ec3f6a659997
    scalar_mult_vfy(yb,Ya): (length: 56 bytes)
      e00af217556a40ccbc9822cc27a43542e45166a653aa4df746d5f8e1
      e8df483e9baff71c9eb03ee20a688ad4e4d359f70ac9ec3f6a659997
]]></artwork>
        </section>
        <section anchor="test-vector-for-isk-calculation-initiatorresponder-1" numbered="true" toc="default">
          <name>Test vector for ISK calculation initiator/responder</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    unordered cat of transcript : (length: 122 bytes)
      38396bd11daf223711e575cac6021e3fa31558012048a1cec7876292
      b96c61eda353fe04f33028d2352779668a934084da776c1c51a58ce4
      b5034144613853c519fb490fde5a04bda8c18b327d0fc1a9391d19e0
      ac00c59df9c60422284e593d6b092eac94f5aa644ed883f39bd4f04e
      4beb6af86d5803414462
    DSI = G.DSI_ISK, b'CPace448_ISK': (length: 12 bytes)
      43506163653434385f49534b
    prefix_free_cat(DSI,sid,K)||MSGa||MSGb: (length: 209 bytes)
      0c43506163653434385f49534b105223e0cdc45d6575668d64c55200
      412438e00af217556a40ccbc9822cc27a43542e45166a653aa4df746
      d5f8e1e8df483e9baff71c9eb03ee20a688ad4e4d359f70ac9ec3f6a
      65999738396bd11daf223711e575cac6021e3fa31558012048a1cec7
      876292b96c61eda353fe04f33028d2352779668a934084da776c1c51
      a58ce4b5034144613853c519fb490fde5a04bda8c18b327d0fc1a939
      1d19e0ac00c59df9c60422284e593d6b092eac94f5aa644ed883f39b
      d4f04e4beb6af86d5803414462
    ISK result: (length: 64 bytes)
      4030297722c1914711da6b2a224a44b53b30c05ab02c2a3d3ccc7272
      a3333ce3a4564c17031b634e89f65681f52d5c3d1df7baeb88523d2e
      481b3858aed86315
]]></artwork>
        </section>
        <section anchor="test-vector-for-isk-calculation-parallel-execution-1" numbered="true" toc="default">
          <name>Test vector for ISK calculation parallel execution</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    ordered cat of transcript : (length: 122 bytes)
      3853c519fb490fde5a04bda8c18b327d0fc1a9391d19e0ac00c59df9
      c60422284e593d6b092eac94f5aa644ed883f39bd4f04e4beb6af86d
      580341446238396bd11daf223711e575cac6021e3fa31558012048a1
      cec7876292b96c61eda353fe04f33028d2352779668a934084da776c
      1c51a58ce4b503414461
    DSI = G.DSI_ISK, b'CPace448_ISK': (length: 12 bytes)
      43506163653434385f49534b
    prefix_free_cat(DSI,sid,K)||oCAT(MSGa,MSGb):
    (length: 209 bytes)
      0c43506163653434385f49534b105223e0cdc45d6575668d64c55200
      412438e00af217556a40ccbc9822cc27a43542e45166a653aa4df746
      d5f8e1e8df483e9baff71c9eb03ee20a688ad4e4d359f70ac9ec3f6a
      6599973853c519fb490fde5a04bda8c18b327d0fc1a9391d19e0ac00
      c59df9c60422284e593d6b092eac94f5aa644ed883f39bd4f04e4beb
      6af86d580341446238396bd11daf223711e575cac6021e3fa3155801
      2048a1cec7876292b96c61eda353fe04f33028d2352779668a934084
      da776c1c51a58ce4b503414461
    ISK result: (length: 64 bytes)
      925e95d1095dad1af6378d5ef8b9a998bd3855bfc7d36cb5ca05b0a7
      a93346abcb8cef04bceb28c38fdaf0cc608fd1dcd462ab523f3b7f75
      2c77c411be3ac8fb
]]></artwork>
        </section>
        <section anchor="corresponding-ansi-c-initializers-1" numbered="true" toc="default">
          <name>Corresponding ANSI-C initializers</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
const uint8_t tc_PRS[] = {
 0x50,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,
};
const uint8_t tc_CI[] = {
 0x0a,0x41,0x69,0x6e,0x69,0x74,0x69,0x61,0x74,0x6f,0x72,0x0a,
 0x42,0x72,0x65,0x73,0x70,0x6f,0x6e,0x64,0x65,0x72,
};
const uint8_t tc_sid[] = {
 0x52,0x23,0xe0,0xcd,0xc4,0x5d,0x65,0x75,0x66,0x8d,0x64,0xc5,
 0x52,0x00,0x41,0x24,
};
const uint8_t tc_g[] = {
 0x6f,0xda,0xe1,0x47,0x18,0xeb,0x75,0x06,0xdd,0x96,0xe3,0xf7,
 0x79,0x78,0x96,0xef,0xdb,0x8d,0xb9,0xec,0x07,0x97,0x48,0x5c,
 0x9c,0x48,0xa1,0x92,0x2e,0x44,0x96,0x1d,0xa0,0x97,0xf2,0x90,
 0x8b,0x08,0x4a,0x5d,0xe3,0x3a,0xb6,0x71,0x63,0x06,0x60,0xd2,
 0x7d,0x79,0xff,0xd6,0xee,0x8e,0xc8,0x46,
};
const uint8_t tc_ya[] = {
 0x21,0xb4,0xf4,0xbd,0x9e,0x64,0xed,0x35,0x5c,0x3e,0xb6,0x76,
 0xa2,0x8e,0xbe,0xda,0xf6,0xd8,0xf1,0x7b,0xdc,0x36,0x59,0x95,
 0xb3,0x19,0x09,0x71,0x53,0x04,0x40,0x80,0x51,0x6b,0xd0,0x83,
 0xbf,0xcc,0xe6,0x61,0x21,0xa3,0x07,0x26,0x46,0x99,0x4c,0x84,
 0x30,0xcc,0x38,0x2b,0x8d,0xc5,0x43,0xe8,
};
const uint8_t tc_ADa[] = {
 0x41,0x44,0x61,
};
const uint8_t tc_Ya[] = {
 0x39,0x6b,0xd1,0x1d,0xaf,0x22,0x37,0x11,0xe5,0x75,0xca,0xc6,
 0x02,0x1e,0x3f,0xa3,0x15,0x58,0x01,0x20,0x48,0xa1,0xce,0xc7,
 0x87,0x62,0x92,0xb9,0x6c,0x61,0xed,0xa3,0x53,0xfe,0x04,0xf3,
 0x30,0x28,0xd2,0x35,0x27,0x79,0x66,0x8a,0x93,0x40,0x84,0xda,
 0x77,0x6c,0x1c,0x51,0xa5,0x8c,0xe4,0xb5,
};
const uint8_t tc_yb[] = {
 0x84,0x8b,0x07,0x79,0xff,0x41,0x5f,0x0a,0xf4,0xea,0x14,0xdf,
 0x9d,0xd1,0xd3,0xc2,0x9a,0xc4,0x1d,0x83,0x6c,0x78,0x08,0x89,
 0x6c,0x4e,0xba,0x19,0xc5,0x1a,0xc4,0x0a,0x43,0x9c,0xaf,0x5e,
 0x61,0xec,0x88,0xc3,0x07,0xc7,0xd6,0x19,0x19,0x52,0x29,0x41,
 0x2e,0xaa,0x73,0xfb,0x2a,0x5e,0xa2,0x0d,
};
const uint8_t tc_ADb[] = {
 0x41,0x44,0x62,
};
const uint8_t tc_Yb[] = {
 0x53,0xc5,0x19,0xfb,0x49,0x0f,0xde,0x5a,0x04,0xbd,0xa8,0xc1,
 0x8b,0x32,0x7d,0x0f,0xc1,0xa9,0x39,0x1d,0x19,0xe0,0xac,0x00,
 0xc5,0x9d,0xf9,0xc6,0x04,0x22,0x28,0x4e,0x59,0x3d,0x6b,0x09,
 0x2e,0xac,0x94,0xf5,0xaa,0x64,0x4e,0xd8,0x83,0xf3,0x9b,0xd4,
 0xf0,0x4e,0x4b,0xeb,0x6a,0xf8,0x6d,0x58,
};
const uint8_t tc_K[] = {
 0xe0,0x0a,0xf2,0x17,0x55,0x6a,0x40,0xcc,0xbc,0x98,0x22,0xcc,
 0x27,0xa4,0x35,0x42,0xe4,0x51,0x66,0xa6,0x53,0xaa,0x4d,0xf7,
 0x46,0xd5,0xf8,0xe1,0xe8,0xdf,0x48,0x3e,0x9b,0xaf,0xf7,0x1c,
 0x9e,0xb0,0x3e,0xe2,0x0a,0x68,0x8a,0xd4,0xe4,0xd3,0x59,0xf7,
 0x0a,0xc9,0xec,0x3f,0x6a,0x65,0x99,0x97,
};
const uint8_t tc_ISK_IR[] = {
 0x40,0x30,0x29,0x77,0x22,0xc1,0x91,0x47,0x11,0xda,0x6b,0x2a,
 0x22,0x4a,0x44,0xb5,0x3b,0x30,0xc0,0x5a,0xb0,0x2c,0x2a,0x3d,
 0x3c,0xcc,0x72,0x72,0xa3,0x33,0x3c,0xe3,0xa4,0x56,0x4c,0x17,
 0x03,0x1b,0x63,0x4e,0x89,0xf6,0x56,0x81,0xf5,0x2d,0x5c,0x3d,
 0x1d,0xf7,0xba,0xeb,0x88,0x52,0x3d,0x2e,0x48,0x1b,0x38,0x58,
 0xae,0xd8,0x63,0x15,
};
const uint8_t tc_ISK_SY[] = {
 0x92,0x5e,0x95,0xd1,0x09,0x5d,0xad,0x1a,0xf6,0x37,0x8d,0x5e,
 0xf8,0xb9,0xa9,0x98,0xbd,0x38,0x55,0xbf,0xc7,0xd3,0x6c,0xb5,
 0xca,0x05,0xb0,0xa7,0xa9,0x33,0x46,0xab,0xcb,0x8c,0xef,0x04,
 0xbc,0xeb,0x28,0xc3,0x8f,0xda,0xf0,0xcc,0x60,0x8f,0xd1,0xdc,
 0xd4,0x62,0xab,0x52,0x3f,0x3b,0x7f,0x75,0x2c,0x77,0xc4,0x11,
 0xbe,0x3a,0xc8,0xfb,
};
]]></artwork>
        </section>
        <section anchor="test-vectors-for-gx448scalarmultvfy-low-order-points" numbered="true" toc="default">
          <name>Test vectors for G_X448.scalar_mult_vfy: low order points</name>
          <t>Test vectors for which G_X448.scalar_mult_vfy(s_in,ux) must return the neutral
element.
This includes points that are non-canonicaly encoded, i.e. have coordinate values
larger
than the field prime.</t>
          <t>Weak points for X448 smaller than the field prime (canonical)</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  u0: (length: 56 bytes)
    0000000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000
  u1: (length: 56 bytes)
    0100000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000
  u2: (length: 56 bytes)
    fefffffffffffffffffffffffffffffffffffffffffffffffffffffffe
    ffffffffffffffffffffffffffffffffffffffffffffffffffffff
]]></artwork>
          <t>Weak points for X448 larger or equal to the field prime (non-canonical)</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  u3: (length: 56 bytes)
    fffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
    ffffffffffffffffffffffffffffffffffffffffffffffffffffff
  u4: (length: 56 bytes)
    00000000000000000000000000000000000000000000000000000000ff
    ffffffffffffffffffffffffffffffffffffffffffffffffffffff

All of the above points u0 ... u4 MUST trigger the abort case
when included in the protocol messages MSGa or MSGb.
]]></artwork>
          <t>Expected results for X448 resp. G_X448.scalar_mult_vfy</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  scalar s: (length: 56 bytes)
    af8a14218bf2a2062926d2ea9b8fe4e8b6817349b6ed2feb1e5d64d7a4
    523f15fceec70fb111e870dc58d191e66a14d3e9d482d04432cadd
  G_X448.scalar_mult_vfy(s,u0): (length: 56 bytes)
    0000000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000
  G_X448.scalar_mult_vfy(s,u1): (length: 56 bytes)
    0000000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000
  G_X448.scalar_mult_vfy(s,u2): (length: 56 bytes)
    0000000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000
  G_X448.scalar_mult_vfy(s,u3): (length: 56 bytes)
    0000000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000
  G_X448.scalar_mult_vfy(s,u4): (length: 56 bytes)
    0000000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000
]]></artwork>
          <t>Test vectors for scalar_mult with nonzero outputs</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  scalar s: (length: 56 bytes)
    af8a14218bf2a2062926d2ea9b8fe4e8b6817349b6ed2feb1e5d64d7a4
    523f15fceec70fb111e870dc58d191e66a14d3e9d482d04432cadd
  point coordinate u_curve on the curve: (length: 56 bytes)
    ab0c68d772ec2eb9de25c49700e46d6325e66d6aa39d7b65eb84a68c55
    69d47bd71b41f3e0d210f44e146dec8926b174acb3f940a0b82cab
  G_X448.scalar_mult_vfy(s,u_curve): (length: 56 bytes)
    3b0fa9bc40a6fdc78c9e06ff7a54c143c5d52f365607053bf0656f5142
    0496295f910a101b38edc1acd3bd240fd55dcb7a360553b8a7627e

  point coordinate u_twist on the twist: (length: 56 bytes)
    c981cd1e1f72d9c35c7d7cf6be426757c0dc8206a2fcfa564a8e7618c0
    3c0e61f9a2eb1c3e0dd97d6e9b1010f5edd03397a83f5a914cb3ff
  G_X448.scalar_mult_vfy(s,u_twist): (length: 56 bytes)
    d0a2bb7e9c5c2c627793d8342f23b759fe7d9e3320a85ca4fd61376331
    50ffd9a9148a9b75c349fac43d64bec49a6e126cc92cbfbf353961
]]></artwork>
        </section>
      </section>
      <section anchor="test-vector-for-cpace-using-group-ristretto255-and-hash-sha-512" numbered="true" toc="default">
        <name>Test vector for CPace using group ristretto255 and hash SHA-512</name>
        <section anchor="test-vectors-for-calculategenerator-with-group-ristretto255" numbered="true" toc="default">
          <name>Test vectors for calculate_generator with group ristretto255</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inputs
    H   = SHA-512 with input block size 128 bytes.
    PRS = b'Password' ; ZPAD length: 100 ;
    DSI = b'CPaceRistretto255'
    CI = b'\nAinitiator\nBresponder'
    CI = 0a41696e69746961746f720a42726573706f6e646572
    sid = 7e4b4791d6a8ef019b936c79fb7f2c57
  Outputs
    generator_string(G.DSI,PRS,CI,sid,H.s_in_bytes):
    (length: 168 bytes)
      11435061636552697374726574746f3235350850617373776f726464
      00000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000160a41696e69746961746f72
      0a42726573706f6e646572107e4b4791d6a8ef019b936c79fb7f2c57
    hash result: (length: 64 bytes)
      a5ce446f63a1ae6d1fee80fa67d0b4004a4b1283ec5549a462bf33a6
      c1ae06a0871f9bf48545f49b2a792eed255ac04f52758c9c60448306
      810b44e986e3dcbb
    encoded generator g: (length: 32 bytes)
      9c5712178570957204d89ac11acbef789dd076992ba361429acb2bc3
      8c71d14c
]]></artwork>
        </section>
        <section anchor="test-vector-for-msga-2" numbered="true" toc="default">
          <name>Test vector for MSGa</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inputs
    ADa = b'ADa'
    ya (little endian): (length: 32 bytes)
      1433dd19359992d4e06d740d3993d429af6338ffb4531ce175d22449
      853a790b
  Outputs
    Ya: (length: 32 bytes)
      a8fc42c4d57b3c7346661011122a00563d0995fd72b62123ae244400
      e86d7b1a
    MSGa: (length: 37 bytes)
      20a8fc42c4d57b3c7346661011122a00563d0995fd72b62123ae2444
      00e86d7b1a03414461
]]></artwork>
        </section>
        <section anchor="test-vector-for-msgb-2" numbered="true" toc="default">
          <name>Test vector for MSGb</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inputs
    ADb = b'ADb'
    yb (little endian): (length: 32 bytes)
      0e6566d32d80a5a1135f99c27f2d637aa24da23027c3fa76b9d1cfd9
      742fdc00
  Outputs
    Yb: (length: 32 bytes)
      fc8e84ae4ab725909af05a56ef9714db6930e4a5589b3fee6cdd2662
      36676d63
    MSGb: (length: 37 bytes)
      20fc8e84ae4ab725909af05a56ef9714db6930e4a5589b3fee6cdd26
      6236676d6303414462
]]></artwork>
        </section>
        <section anchor="test-vector-for-secret-points-k-2" numbered="true" toc="default">
          <name>Test vector for secret points K</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    scalar_mult_vfy(ya,Yb): (length: 32 bytes)
      3efef1706f42efa354020b087b37fbd9f81cf72a16f4947e4a042a7f
      1aaa2b6f
    scalar_mult_vfy(yb,Ya): (length: 32 bytes)
      3efef1706f42efa354020b087b37fbd9f81cf72a16f4947e4a042a7f
      1aaa2b6f
]]></artwork>
        </section>
        <section anchor="test-vector-for-isk-calculation-initiatorresponder-2" numbered="true" toc="default">
          <name>Test vector for ISK calculation initiator/responder</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    unordered cat of transcript : (length: 74 bytes)
      20a8fc42c4d57b3c7346661011122a00563d0995fd72b62123ae2444
      00e86d7b1a0341446120fc8e84ae4ab725909af05a56ef9714db6930
      e4a5589b3fee6cdd266236676d6303414462
    DSI = G.DSI_ISK, b'CPaceRistretto255_ISK':
    (length: 21 bytes)
      435061636552697374726574746f3235355f49534b
    prefix_free_cat(DSI,sid,K)||MSGa||MSGb: (length: 146 bytes)
      15435061636552697374726574746f3235355f49534b107e4b4791d6
      a8ef019b936c79fb7f2c57203efef1706f42efa354020b087b37fbd9
      f81cf72a16f4947e4a042a7f1aaa2b6f20a8fc42c4d57b3c73466610
      11122a00563d0995fd72b62123ae244400e86d7b1a0341446120fc8e
      84ae4ab725909af05a56ef9714db6930e4a5589b3fee6cdd26623667
      6d6303414462
    ISK result: (length: 64 bytes)
      0e33c5822bd495dea94ba7af161501f1b2d6a16d464b5d6e1a53dcbf
      b9244b9ba66c09c430fffdfe4fb4e99b4ea46f991a272de0431c132c
      2c79fd6de1a7e5e4
]]></artwork>
        </section>
        <section anchor="test-vector-for-isk-calculation-parallel-execution-2" numbered="true" toc="default">
          <name>Test vector for ISK calculation parallel execution</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    ordered cat of transcript : (length: 74 bytes)
      20fc8e84ae4ab725909af05a56ef9714db6930e4a5589b3fee6cdd26
      6236676d630341446220a8fc42c4d57b3c7346661011122a00563d09
      95fd72b62123ae244400e86d7b1a03414461
    DSI = G.DSI_ISK, b'CPaceRistretto255_ISK':
    (length: 21 bytes)
      435061636552697374726574746f3235355f49534b
    prefix_free_cat(DSI,sid,K)||oCAT(MSGa,MSGb):
    (length: 146 bytes)
      15435061636552697374726574746f3235355f49534b107e4b4791d6
      a8ef019b936c79fb7f2c57203efef1706f42efa354020b087b37fbd9
      f81cf72a16f4947e4a042a7f1aaa2b6f20fc8e84ae4ab725909af05a
      56ef9714db6930e4a5589b3fee6cdd266236676d630341446220a8fc
      42c4d57b3c7346661011122a00563d0995fd72b62123ae244400e86d
      7b1a03414461
    ISK result: (length: 64 bytes)
      ca36335be682a480a9fc63977d044a10ff7adfcda0f2978fbcf8713d
      2a4e23e25c05a9a02edcfbff2ede65b752f8ea1f4454d764ad8ed860
      7c158ef662614567
]]></artwork>
        </section>
        <section anchor="corresponding-ansi-c-initializers-2" numbered="true" toc="default">
          <name>Corresponding ANSI-C initializers</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
const uint8_t tc_PRS[] = {
 0x50,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,
};
const uint8_t tc_CI[] = {
 0x0a,0x41,0x69,0x6e,0x69,0x74,0x69,0x61,0x74,0x6f,0x72,0x0a,
 0x42,0x72,0x65,0x73,0x70,0x6f,0x6e,0x64,0x65,0x72,
};
const uint8_t tc_sid[] = {
 0x7e,0x4b,0x47,0x91,0xd6,0xa8,0xef,0x01,0x9b,0x93,0x6c,0x79,
 0xfb,0x7f,0x2c,0x57,
};
const uint8_t tc_g[] = {
 0x9c,0x57,0x12,0x17,0x85,0x70,0x95,0x72,0x04,0xd8,0x9a,0xc1,
 0x1a,0xcb,0xef,0x78,0x9d,0xd0,0x76,0x99,0x2b,0xa3,0x61,0x42,
 0x9a,0xcb,0x2b,0xc3,0x8c,0x71,0xd1,0x4c,
};
const uint8_t tc_ya[] = {
 0x14,0x33,0xdd,0x19,0x35,0x99,0x92,0xd4,0xe0,0x6d,0x74,0x0d,
 0x39,0x93,0xd4,0x29,0xaf,0x63,0x38,0xff,0xb4,0x53,0x1c,0xe1,
 0x75,0xd2,0x24,0x49,0x85,0x3a,0x79,0x0b,
};
const uint8_t tc_ADa[] = {
 0x41,0x44,0x61,
};
const uint8_t tc_Ya[] = {
 0xa8,0xfc,0x42,0xc4,0xd5,0x7b,0x3c,0x73,0x46,0x66,0x10,0x11,
 0x12,0x2a,0x00,0x56,0x3d,0x09,0x95,0xfd,0x72,0xb6,0x21,0x23,
 0xae,0x24,0x44,0x00,0xe8,0x6d,0x7b,0x1a,
};
const uint8_t tc_yb[] = {
 0x0e,0x65,0x66,0xd3,0x2d,0x80,0xa5,0xa1,0x13,0x5f,0x99,0xc2,
 0x7f,0x2d,0x63,0x7a,0xa2,0x4d,0xa2,0x30,0x27,0xc3,0xfa,0x76,
 0xb9,0xd1,0xcf,0xd9,0x74,0x2f,0xdc,0x00,
};
const uint8_t tc_ADb[] = {
 0x41,0x44,0x62,
};
const uint8_t tc_Yb[] = {
 0xfc,0x8e,0x84,0xae,0x4a,0xb7,0x25,0x90,0x9a,0xf0,0x5a,0x56,
 0xef,0x97,0x14,0xdb,0x69,0x30,0xe4,0xa5,0x58,0x9b,0x3f,0xee,
 0x6c,0xdd,0x26,0x62,0x36,0x67,0x6d,0x63,
};
const uint8_t tc_K[] = {
 0x3e,0xfe,0xf1,0x70,0x6f,0x42,0xef,0xa3,0x54,0x02,0x0b,0x08,
 0x7b,0x37,0xfb,0xd9,0xf8,0x1c,0xf7,0x2a,0x16,0xf4,0x94,0x7e,
 0x4a,0x04,0x2a,0x7f,0x1a,0xaa,0x2b,0x6f,
};
const uint8_t tc_ISK_IR[] = {
 0x0e,0x33,0xc5,0x82,0x2b,0xd4,0x95,0xde,0xa9,0x4b,0xa7,0xaf,
 0x16,0x15,0x01,0xf1,0xb2,0xd6,0xa1,0x6d,0x46,0x4b,0x5d,0x6e,
 0x1a,0x53,0xdc,0xbf,0xb9,0x24,0x4b,0x9b,0xa6,0x6c,0x09,0xc4,
 0x30,0xff,0xfd,0xfe,0x4f,0xb4,0xe9,0x9b,0x4e,0xa4,0x6f,0x99,
 0x1a,0x27,0x2d,0xe0,0x43,0x1c,0x13,0x2c,0x2c,0x79,0xfd,0x6d,
 0xe1,0xa7,0xe5,0xe4,
};
const uint8_t tc_ISK_SY[] = {
 0xca,0x36,0x33,0x5b,0xe6,0x82,0xa4,0x80,0xa9,0xfc,0x63,0x97,
 0x7d,0x04,0x4a,0x10,0xff,0x7a,0xdf,0xcd,0xa0,0xf2,0x97,0x8f,
 0xbc,0xf8,0x71,0x3d,0x2a,0x4e,0x23,0xe2,0x5c,0x05,0xa9,0xa0,
 0x2e,0xdc,0xfb,0xff,0x2e,0xde,0x65,0xb7,0x52,0xf8,0xea,0x1f,
 0x44,0x54,0xd7,0x64,0xad,0x8e,0xd8,0x60,0x7c,0x15,0x8e,0xf6,
 0x62,0x61,0x45,0x67,
};
]]></artwork>
        </section>
        <section anchor="test-case-for-scalarmult-with-valid-inputs" numbered="true" toc="default">
          <name>Test case for scalar_mult with valid inputs</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    s: (length: 32 bytes)
      7cd0e075fa7955ba52c02759a6c90dbbfc10e6d40aea8d283e407d88
      cf538a05
    X: (length: 32 bytes)
      021ca069484e890c9e494d8ed6bb0f66cbd9a8f0ef67168f36c51e0e
      feb8f347
    G.scalar_mult(s,decode(X)): (length: 32 bytes)
      62aaa018755dc881902097c2a993c0b7c0a4fe33bce2c0182b46a44c
      40b95119
    G.scalar_mult_vfy(s,X): (length: 32 bytes)
      62aaa018755dc881902097c2a993c0b7c0a4fe33bce2c0182b46a44c
      40b95119
]]></artwork>
        </section>
        <section anchor="invalid-inputs-for-scalarmultvfy" numbered="true" toc="default">
          <name>Invalid inputs for scalar_mult_vfy</name>
          <t>For these test cases scalar_mult_vfy(y,.) MUST return the representation of the neutral element G.I. When points Y_i1 or Y_i2 are included in MSGa or MSGb the protocol MUST abort.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    s: (length: 32 bytes)
      7cd0e075fa7955ba52c02759a6c90dbbfc10e6d40aea8d283e407d88
      cf538a05
    Y_i1: (length: 32 bytes)
      011ca069484e890c9e494d8ed6bb0f66cbd9a8f0ef67168f36c51e0e
      feb8f347
    Y_i2 == G.I: (length: 32 bytes)
      00000000000000000000000000000000000000000000000000000000
      00000000
    G.scalar_mult_vfy(s,Y_i1) = G.scalar_mult_vfy(s,Y_i2) = G.I
]]></artwork>
        </section>
      </section>
      <section anchor="test-vector-for-cpace-using-group-decaf448-and-hash-shake-256" numbered="true" toc="default">
        <name>Test vector for CPace using group decaf448 and hash SHAKE-256</name>
        <section anchor="test-vectors-for-calculategenerator-with-group-decaf448" numbered="true" toc="default">
          <name>Test vectors for calculate_generator with group decaf448</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inputs
    H   = SHAKE-256 with input block size 136 bytes.
    PRS = b'Password' ; ZPAD length: 112 ;
    DSI = b'CPaceDecaf448'
    CI = b'\nAinitiator\nBresponder'
    CI = 0a41696e69746961746f720a42726573706f6e646572
    sid = 5223e0cdc45d6575668d64c552004124
  Outputs
    generator_string(G.DSI,PRS,CI,sid,H.s_in_bytes):
    (length: 176 bytes)
      0d435061636544656361663434380850617373776f72647000000000
      00000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000000000000000
      000000000000000000000000000000000000000000000000160a4169
      6e69746961746f720a42726573706f6e646572105223e0cdc45d6575
      668d64c552004124
    hash result: (length: 112 bytes)
      8955b426ff1d3a22032d21c013cf94134cee9a4235e93261a4911edb
      f68f2945f0267c983954262c7f59badb9caf468ebe21b7e9885657af
      b8f1a3b783c2047ba519e113ecf81b2b580dd481f499beabd401cc77
      1d28915fb750011209040f5f03b2ceb5e5eb259c96b478382d5a5c57
    encoded generator g: (length: 56 bytes)
      c811b3f6b0d27b58a74d8274bf5f9ca6b7ada15b0bf57b79a6b45c13
      2eb0c28bdcc3abf4e5932cea97a80997ead1c146b98b1a1f1def30f3
]]></artwork>
        </section>
        <section anchor="test-vector-for-msga-3" numbered="true" toc="default">
          <name>Test vector for MSGa</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inputs
    ADa = b'ADa'
    ya (little endian): (length: 56 bytes)
      d8d2e26c821a12d7f59a8dee023d3f6155976152e16c73cbf68c303d
      f0404399f0a7b614a65df50a9788f00b410586b443f738ad7ff03930
  Outputs
    Ya: (length: 56 bytes)
      223f95a5430a2f2a499431696d23ea2d0a90f432e5491e45e4005f3d
      d785e7be1235b79252670099bc993c2df5c261dfb7a8989f091e2be3
    MSGa: (length: 61 bytes)
      38223f95a5430a2f2a499431696d23ea2d0a90f432e5491e45e4005f
      3dd785e7be1235b79252670099bc993c2df5c261dfb7a8989f091e2b
      e303414461
]]></artwork>
        </section>
        <section anchor="test-vector-for-msgb-3" numbered="true" toc="default">
          <name>Test vector for MSGb</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inputs
    ADb = b'ADb'
    yb (little endian): (length: 56 bytes)
      91bae9793f4a8aceb1b5c54375a7ed1858a79a6e72dab959c8bdf3a7
      5ac9bb4de2a25af4d4a9a5c5bc5441d19b8e3f6fcce7196c6afc2236
  Outputs
    Yb: (length: 56 bytes)
      b6ba0a336c103c6c92019ae4cfbcb88d8f6bfc361e979c9e0d3a0967
      e630094ba3d1555821ac1f979996ef5ce79f012ffe279ac89b287bee
    MSGb: (length: 61 bytes)
      38b6ba0a336c103c6c92019ae4cfbcb88d8f6bfc361e979c9e0d3a09
      67e630094ba3d1555821ac1f979996ef5ce79f012ffe279ac89b287b
      ee03414462
]]></artwork>
        </section>
        <section anchor="test-vector-for-secret-points-k-3" numbered="true" toc="default">
          <name>Test vector for secret points K</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    scalar_mult_vfy(ya,Yb): (length: 56 bytes)
      dc504938fb70eb13916697aa3e076e82537c171aa326121399c896fe
      ea0e198b41b6bae300bb86f8c61d4b170eee4717b5497016f34364a9
    scalar_mult_vfy(yb,Ya): (length: 56 bytes)
      dc504938fb70eb13916697aa3e076e82537c171aa326121399c896fe
      ea0e198b41b6bae300bb86f8c61d4b170eee4717b5497016f34364a9
]]></artwork>
        </section>
        <section anchor="test-vector-for-isk-calculation-initiatorresponder-3" numbered="true" toc="default">
          <name>Test vector for ISK calculation initiator/responder</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    unordered cat of transcript : (length: 122 bytes)
      38223f95a5430a2f2a499431696d23ea2d0a90f432e5491e45e4005f
      3dd785e7be1235b79252670099bc993c2df5c261dfb7a8989f091e2b
      e30341446138b6ba0a336c103c6c92019ae4cfbcb88d8f6bfc361e97
      9c9e0d3a0967e630094ba3d1555821ac1f979996ef5ce79f012ffe27
      9ac89b287bee03414462
    DSI = G.DSI_ISK, b'CPaceDecaf448_ISK': (length: 17 bytes)
      435061636544656361663434385f49534b
    prefix_free_cat(DSI,sid,K)||MSGa||MSGb: (length: 214 bytes)
      11435061636544656361663434385f49534b105223e0cdc45d657566
      8d64c55200412438dc504938fb70eb13916697aa3e076e82537c171a
      a326121399c896feea0e198b41b6bae300bb86f8c61d4b170eee4717
      b5497016f34364a938223f95a5430a2f2a499431696d23ea2d0a90f4
      32e5491e45e4005f3dd785e7be1235b79252670099bc993c2df5c261
      dfb7a8989f091e2be30341446138b6ba0a336c103c6c92019ae4cfbc
      b88d8f6bfc361e979c9e0d3a0967e630094ba3d1555821ac1f979996
      ef5ce79f012ffe279ac89b287bee03414462
    ISK result: (length: 64 bytes)
      ebe28369491f8899a5af3b339d4993881b69d22607c58719da6eaab3
      8f0d9025eae413ca2b072b156ce4a0d4778ff471a63c4d908cab70bc
      2081951d504cbb03
]]></artwork>
        </section>
        <section anchor="test-vector-for-isk-calculation-parallel-execution-3" numbered="true" toc="default">
          <name>Test vector for ISK calculation parallel execution</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    ordered cat of transcript : (length: 122 bytes)
      38b6ba0a336c103c6c92019ae4cfbcb88d8f6bfc361e979c9e0d3a09
      67e630094ba3d1555821ac1f979996ef5ce79f012ffe279ac89b287b
      ee0341446238223f95a5430a2f2a499431696d23ea2d0a90f432e549
      1e45e4005f3dd785e7be1235b79252670099bc993c2df5c261dfb7a8
      989f091e2be303414461
    DSI = G.DSI_ISK, b'CPaceDecaf448_ISK': (length: 17 bytes)
      435061636544656361663434385f49534b
    prefix_free_cat(DSI,sid,K)||oCAT(MSGa,MSGb):
    (length: 214 bytes)
      11435061636544656361663434385f49534b105223e0cdc45d657566
      8d64c55200412438dc504938fb70eb13916697aa3e076e82537c171a
      a326121399c896feea0e198b41b6bae300bb86f8c61d4b170eee4717
      b5497016f34364a938b6ba0a336c103c6c92019ae4cfbcb88d8f6bfc
      361e979c9e0d3a0967e630094ba3d1555821ac1f979996ef5ce79f01
      2ffe279ac89b287bee0341446238223f95a5430a2f2a499431696d23
      ea2d0a90f432e5491e45e4005f3dd785e7be1235b79252670099bc99
      3c2df5c261dfb7a8989f091e2be303414461
    ISK result: (length: 64 bytes)
      2996d1953320581b587f473cfd5c974c5a8597b22b37fefe49bdb7b8
      4073424f7f7a6e456498665a69530741398c6010bdb346f79944acc9
      0c5c537fa35cd29a
]]></artwork>
        </section>
        <section anchor="corresponding-ansi-c-initializers-3" numbered="true" toc="default">
          <name>Corresponding ANSI-C initializers</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
const uint8_t tc_PRS[] = {
 0x50,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,
};
const uint8_t tc_CI[] = {
 0x0a,0x41,0x69,0x6e,0x69,0x74,0x69,0x61,0x74,0x6f,0x72,0x0a,
 0x42,0x72,0x65,0x73,0x70,0x6f,0x6e,0x64,0x65,0x72,
};
const uint8_t tc_sid[] = {
 0x52,0x23,0xe0,0xcd,0xc4,0x5d,0x65,0x75,0x66,0x8d,0x64,0xc5,
 0x52,0x00,0x41,0x24,
};
const uint8_t tc_g[] = {
 0xc8,0x11,0xb3,0xf6,0xb0,0xd2,0x7b,0x58,0xa7,0x4d,0x82,0x74,
 0xbf,0x5f,0x9c,0xa6,0xb7,0xad,0xa1,0x5b,0x0b,0xf5,0x7b,0x79,
 0xa6,0xb4,0x5c,0x13,0x2e,0xb0,0xc2,0x8b,0xdc,0xc3,0xab,0xf4,
 0xe5,0x93,0x2c,0xea,0x97,0xa8,0x09,0x97,0xea,0xd1,0xc1,0x46,
 0xb9,0x8b,0x1a,0x1f,0x1d,0xef,0x30,0xf3,
};
const uint8_t tc_ya[] = {
 0xd8,0xd2,0xe2,0x6c,0x82,0x1a,0x12,0xd7,0xf5,0x9a,0x8d,0xee,
 0x02,0x3d,0x3f,0x61,0x55,0x97,0x61,0x52,0xe1,0x6c,0x73,0xcb,
 0xf6,0x8c,0x30,0x3d,0xf0,0x40,0x43,0x99,0xf0,0xa7,0xb6,0x14,
 0xa6,0x5d,0xf5,0x0a,0x97,0x88,0xf0,0x0b,0x41,0x05,0x86,0xb4,
 0x43,0xf7,0x38,0xad,0x7f,0xf0,0x39,0x30,
};
const uint8_t tc_ADa[] = {
 0x41,0x44,0x61,
};
const uint8_t tc_Ya[] = {
 0x22,0x3f,0x95,0xa5,0x43,0x0a,0x2f,0x2a,0x49,0x94,0x31,0x69,
 0x6d,0x23,0xea,0x2d,0x0a,0x90,0xf4,0x32,0xe5,0x49,0x1e,0x45,
 0xe4,0x00,0x5f,0x3d,0xd7,0x85,0xe7,0xbe,0x12,0x35,0xb7,0x92,
 0x52,0x67,0x00,0x99,0xbc,0x99,0x3c,0x2d,0xf5,0xc2,0x61,0xdf,
 0xb7,0xa8,0x98,0x9f,0x09,0x1e,0x2b,0xe3,
};
const uint8_t tc_yb[] = {
 0x91,0xba,0xe9,0x79,0x3f,0x4a,0x8a,0xce,0xb1,0xb5,0xc5,0x43,
 0x75,0xa7,0xed,0x18,0x58,0xa7,0x9a,0x6e,0x72,0xda,0xb9,0x59,
 0xc8,0xbd,0xf3,0xa7,0x5a,0xc9,0xbb,0x4d,0xe2,0xa2,0x5a,0xf4,
 0xd4,0xa9,0xa5,0xc5,0xbc,0x54,0x41,0xd1,0x9b,0x8e,0x3f,0x6f,
 0xcc,0xe7,0x19,0x6c,0x6a,0xfc,0x22,0x36,
};
const uint8_t tc_ADb[] = {
 0x41,0x44,0x62,
};
const uint8_t tc_Yb[] = {
 0xb6,0xba,0x0a,0x33,0x6c,0x10,0x3c,0x6c,0x92,0x01,0x9a,0xe4,
 0xcf,0xbc,0xb8,0x8d,0x8f,0x6b,0xfc,0x36,0x1e,0x97,0x9c,0x9e,
 0x0d,0x3a,0x09,0x67,0xe6,0x30,0x09,0x4b,0xa3,0xd1,0x55,0x58,
 0x21,0xac,0x1f,0x97,0x99,0x96,0xef,0x5c,0xe7,0x9f,0x01,0x2f,
 0xfe,0x27,0x9a,0xc8,0x9b,0x28,0x7b,0xee,
};
const uint8_t tc_K[] = {
 0xdc,0x50,0x49,0x38,0xfb,0x70,0xeb,0x13,0x91,0x66,0x97,0xaa,
 0x3e,0x07,0x6e,0x82,0x53,0x7c,0x17,0x1a,0xa3,0x26,0x12,0x13,
 0x99,0xc8,0x96,0xfe,0xea,0x0e,0x19,0x8b,0x41,0xb6,0xba,0xe3,
 0x00,0xbb,0x86,0xf8,0xc6,0x1d,0x4b,0x17,0x0e,0xee,0x47,0x17,
 0xb5,0x49,0x70,0x16,0xf3,0x43,0x64,0xa9,
};
const uint8_t tc_ISK_IR[] = {
 0xeb,0xe2,0x83,0x69,0x49,0x1f,0x88,0x99,0xa5,0xaf,0x3b,0x33,
 0x9d,0x49,0x93,0x88,0x1b,0x69,0xd2,0x26,0x07,0xc5,0x87,0x19,
 0xda,0x6e,0xaa,0xb3,0x8f,0x0d,0x90,0x25,0xea,0xe4,0x13,0xca,
 0x2b,0x07,0x2b,0x15,0x6c,0xe4,0xa0,0xd4,0x77,0x8f,0xf4,0x71,
 0xa6,0x3c,0x4d,0x90,0x8c,0xab,0x70,0xbc,0x20,0x81,0x95,0x1d,
 0x50,0x4c,0xbb,0x03,
};
const uint8_t tc_ISK_SY[] = {
 0x29,0x96,0xd1,0x95,0x33,0x20,0x58,0x1b,0x58,0x7f,0x47,0x3c,
 0xfd,0x5c,0x97,0x4c,0x5a,0x85,0x97,0xb2,0x2b,0x37,0xfe,0xfe,
 0x49,0xbd,0xb7,0xb8,0x40,0x73,0x42,0x4f,0x7f,0x7a,0x6e,0x45,
 0x64,0x98,0x66,0x5a,0x69,0x53,0x07,0x41,0x39,0x8c,0x60,0x10,
 0xbd,0xb3,0x46,0xf7,0x99,0x44,0xac,0xc9,0x0c,0x5c,0x53,0x7f,
 0xa3,0x5c,0xd2,0x9a,
};
]]></artwork>
        </section>
        <section anchor="test-case-for-scalarmult-with-valid-inputs-1" numbered="true" toc="default">
          <name>Test case for scalar_mult with valid inputs</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    s: (length: 56 bytes)
      dd1bc7015daabb7672129cc35a3ba815486b139deff9bdeca7a4fc61
      34323d34658761e90ff079972a7ca8aa5606498f4f4f0ebc0933a819
    X: (length: 56 bytes)
      c803a6c8171ac38b66c5306553f45a487a24eb8581414444715bd2e5
      cf4c749a3b56a550f3c9a6ea3efa6e11ae6a6da12b98ef2f51174b9a
    G.scalar_mult(s,decode(X)): (length: 56 bytes)
      b831a1f804fd3c902ae82f731d298aebf9152ea855f5b5da5ee88584
      84c55a7f65cc3ccf5f678496dc4cb1c8d6bc7ed17d2fe535fdc8f60e
    G.scalar_mult_vfy(s,X): (length: 56 bytes)
      b831a1f804fd3c902ae82f731d298aebf9152ea855f5b5da5ee88584
      84c55a7f65cc3ccf5f678496dc4cb1c8d6bc7ed17d2fe535fdc8f60e
]]></artwork>
        </section>
        <section anchor="invalid-inputs-for-scalarmultvfy-1" numbered="true" toc="default">
          <name>Invalid inputs for scalar_mult_vfy</name>
          <t>For these test cases scalar_mult_vfy(y,.) MUST return the representation of the neutral element G.I. When points Y_i1 or Y_i2 are included in MSGa or MSGb the protocol MUST abort.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    s: (length: 56 bytes)
      dd1bc7015daabb7672129cc35a3ba815486b139deff9bdeca7a4fc61
      34323d34658761e90ff079972a7ca8aa5606498f4f4f0ebc0933a819
    Y_i1: (length: 56 bytes)
      c703a6c8171ac38b66c5306553f45a487a24eb8581414444715bd2e5
      cf4c749a3b56a550f3c9a6ea3efa6e11ae6a6da12b98ef2f51174b9a
    Y_i2 == G.I: (length: 56 bytes)
      00000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000000000000000
    G.scalar_mult_vfy(s,Y_i1) = G.scalar_mult_vfy(s,Y_i2) = G.I
]]></artwork>
        </section>
      </section>
      <section anchor="test-vector-for-cpace-using-group-nist-p-256-and-hash-sha-256" numbered="true" toc="default">
        <name>Test vector for CPace using group NIST P-256 and hash SHA-256</name>
        <section anchor="test-vectors-for-calculategenerator-with-group-nist-p-256" numbered="true" toc="default">
          <name>Test vectors for calculate_generator with group NIST P-256</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inputs
    H   = SHA-256 with input block size 64 bytes.
    PRS = b'Password' ; ZPAD length: 23 ;
    DSI = b'CPaceP256_XMD:SHA-256_SSWU_NU_'
    CI = b'\nAinitiator\nBresponder'
    CI = 0a41696e69746961746f720a42726573706f6e646572
    sid = 34b36454cab2e7842c389f7d88ecb7df
  Outputs
    generator_string(PRS,G.DSI,CI,sid,H.s_in_bytes):
    (length: 104 bytes)
      1e4350616365503235365f584d443a5348412d3235365f535357555f
      4e555f0850617373776f726417000000000000000000000000000000
      0000000000000000160a41696e69746961746f720a42726573706f6e
      6465721034b36454cab2e7842c389f7d88ecb7df
    generator g: (length: 65 bytes)
      04993b46e30ba9cfc3dc2d3ae2cf9733cf03994e74383c4e1b4a92e8
      d6d466b321c4a642979162fbde9e1c9a6180bd27a0594491e4c231f5
      1006d0bf7992d07127
]]></artwork>
        </section>
        <section anchor="test-vector-for-msga-4" numbered="true" toc="default">
          <name>Test vector for MSGa</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inputs
    ADa = b'ADa'
    ya (big endian): (length: 32 bytes)
      c9e47ca5debd2285727af47e55f5b7763fa79719da428f800190cc66
      59b4eafb
  Outputs
    Ya: (length: 65 bytes)
      0478ac925a6e3447a537627a2163be005a422f55c08385c1ef7d051c
      a94593df5946314120faa87165cba131c1da3aac429dc3d99a9bac7d
      4c4cbb8570b4d5ea10
    Alternative correct value for Ya: g^(-ya):
    (length: 65 bytes)
      0478ac925a6e3447a537627a2163be005a422f55c08385c1ef7d051c
      a94593df59b9cebede05578e9b345ece3e25c553bd623c2666645382
      b3b3447a8f4b2a15ef
    MSGa: (length: 70 bytes)
      410478ac925a6e3447a537627a2163be005a422f55c08385c1ef7d05
      1ca94593df5946314120faa87165cba131c1da3aac429dc3d99a9bac
      7d4c4cbb8570b4d5ea1003414461
]]></artwork>
        </section>
        <section anchor="test-vector-for-msgb-4" numbered="true" toc="default">
          <name>Test vector for MSGb</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inputs
    ADb = b'ADb'
    yb (big endian): (length: 32 bytes)
      a0b768ba7555621d133012d1dee27a0013c1bcfddd675811df12771e
      44d77b10
  Outputs
    Yb: (length: 65 bytes)
      04df13ffa89b0ce3cc553b1495ff027886564d94b8d9165cd50e5f65
      4247959951bfac90839fca218bf8e2d1258eb7d7d9f733fe4cd558e6
      fa57bf1f801aae7d3a
    Alternative correct value for Yb: g^(-yb):
    (length: 65 bytes)
      04df13ffa89b0ce3cc553b1495ff027886564d94b8d9165cd50e5f65
      424795995140536f7b6035de75071d2eda7148282608cc01b42aa719
      05a840e07fe55182c5
    MSGb: (length: 70 bytes)
      4104df13ffa89b0ce3cc553b1495ff027886564d94b8d9165cd50e5f
      654247959951bfac90839fca218bf8e2d1258eb7d7d9f733fe4cd558
      e6fa57bf1f801aae7d3a03414462
]]></artwork>
        </section>
        <section anchor="test-vector-for-secret-points-k-4" numbered="true" toc="default">
          <name>Test vector for secret points K</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    scalar_mult_vfy(ya,Yb): (length: 32 bytes)
      27f7059d88f02007dc18c911c9b4034d3c0f13f8f7ed9603b0927f23
      fbab1037
    scalar_mult_vfy(yb,Ya): (length: 32 bytes)
      27f7059d88f02007dc18c911c9b4034d3c0f13f8f7ed9603b0927f23
      fbab1037
]]></artwork>
        </section>
        <section anchor="test-vector-for-isk-calculation-initiatorresponder-4" numbered="true" toc="default">
          <name>Test vector for ISK calculation initiator/responder</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    unordered cat of transcript : (length: 140 bytes)
      410478ac925a6e3447a537627a2163be005a422f55c08385c1ef7d05
      1ca94593df5946314120faa87165cba131c1da3aac429dc3d99a9bac
      7d4c4cbb8570b4d5ea10034144614104df13ffa89b0ce3cc553b1495
      ff027886564d94b8d9165cd50e5f654247959951bfac90839fca218b
      f8e2d1258eb7d7d9f733fe4cd558e6fa57bf1f801aae7d3a03414462
    DSI = G.DSI_ISK, b'CPaceP256_XMD:SHA-256_SSWU_NU__ISK':
    (length: 34 bytes)
      4350616365503235365f584d443a5348412d3235365f535357555f4e
      555f5f49534b
    prefix_free_cat(DSI,sid,K)||MSGa||MSGb: (length: 225 bytes)
      224350616365503235365f584d443a5348412d3235365f535357555f
      4e555f5f49534b1034b36454cab2e7842c389f7d88ecb7df2027f705
      9d88f02007dc18c911c9b4034d3c0f13f8f7ed9603b0927f23fbab10
      37410478ac925a6e3447a537627a2163be005a422f55c08385c1ef7d
      051ca94593df5946314120faa87165cba131c1da3aac429dc3d99a9b
      ac7d4c4cbb8570b4d5ea10034144614104df13ffa89b0ce3cc553b14
      95ff027886564d94b8d9165cd50e5f654247959951bfac90839fca21
      8bf8e2d1258eb7d7d9f733fe4cd558e6fa57bf1f801aae7d3a034144
      62
    ISK result: (length: 32 bytes)
      ddc1b133c387ecf344c0b496bc1223656cd6e7d99a5def8b3b026796
      50811fc9
]]></artwork>
        </section>
        <section anchor="test-vector-for-isk-calculation-parallel-execution-4" numbered="true" toc="default">
          <name>Test vector for ISK calculation parallel execution</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    ordered cat of transcript : (length: 140 bytes)
      4104df13ffa89b0ce3cc553b1495ff027886564d94b8d9165cd50e5f
      654247959951bfac90839fca218bf8e2d1258eb7d7d9f733fe4cd558
      e6fa57bf1f801aae7d3a03414462410478ac925a6e3447a537627a21
      63be005a422f55c08385c1ef7d051ca94593df5946314120faa87165
      cba131c1da3aac429dc3d99a9bac7d4c4cbb8570b4d5ea1003414461
    DSI = G.DSI_ISK, b'CPaceP256_XMD:SHA-256_SSWU_NU__ISK':
    (length: 34 bytes)
      4350616365503235365f584d443a5348412d3235365f535357555f4e
      555f5f49534b
    prefix_free_cat(DSI,sid,K)||oCAT(MSGa,MSGb):
    (length: 225 bytes)
      224350616365503235365f584d443a5348412d3235365f535357555f
      4e555f5f49534b1034b36454cab2e7842c389f7d88ecb7df2027f705
      9d88f02007dc18c911c9b4034d3c0f13f8f7ed9603b0927f23fbab10
      374104df13ffa89b0ce3cc553b1495ff027886564d94b8d9165cd50e
      5f654247959951bfac90839fca218bf8e2d1258eb7d7d9f733fe4cd5
      58e6fa57bf1f801aae7d3a03414462410478ac925a6e3447a537627a
      2163be005a422f55c08385c1ef7d051ca94593df5946314120faa871
      65cba131c1da3aac429dc3d99a9bac7d4c4cbb8570b4d5ea10034144
      61
    ISK result: (length: 32 bytes)
      6ea775b0fb3c31502687565a52150fc595c63fe901a11d5fc1995cd5
      089a17ae
]]></artwork>
        </section>
        <section anchor="corresponding-ansi-c-initializers-4" numbered="true" toc="default">
          <name>Corresponding ANSI-C initializers</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
const uint8_t tc_PRS[] = {
 0x50,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,
};
const uint8_t tc_CI[] = {
 0x0a,0x41,0x69,0x6e,0x69,0x74,0x69,0x61,0x74,0x6f,0x72,0x0a,
 0x42,0x72,0x65,0x73,0x70,0x6f,0x6e,0x64,0x65,0x72,
};
const uint8_t tc_sid[] = {
 0x34,0xb3,0x64,0x54,0xca,0xb2,0xe7,0x84,0x2c,0x38,0x9f,0x7d,
 0x88,0xec,0xb7,0xdf,
};
const uint8_t tc_g[] = {
 0x04,0x99,0x3b,0x46,0xe3,0x0b,0xa9,0xcf,0xc3,0xdc,0x2d,0x3a,
 0xe2,0xcf,0x97,0x33,0xcf,0x03,0x99,0x4e,0x74,0x38,0x3c,0x4e,
 0x1b,0x4a,0x92,0xe8,0xd6,0xd4,0x66,0xb3,0x21,0xc4,0xa6,0x42,
 0x97,0x91,0x62,0xfb,0xde,0x9e,0x1c,0x9a,0x61,0x80,0xbd,0x27,
 0xa0,0x59,0x44,0x91,0xe4,0xc2,0x31,0xf5,0x10,0x06,0xd0,0xbf,
 0x79,0x92,0xd0,0x71,0x27,
};
const uint8_t tc_ya[] = {
 0xc9,0xe4,0x7c,0xa5,0xde,0xbd,0x22,0x85,0x72,0x7a,0xf4,0x7e,
 0x55,0xf5,0xb7,0x76,0x3f,0xa7,0x97,0x19,0xda,0x42,0x8f,0x80,
 0x01,0x90,0xcc,0x66,0x59,0xb4,0xea,0xfb,
};
const uint8_t tc_ADa[] = {
 0x41,0x44,0x61,
};
const uint8_t tc_Ya[] = {
 0x04,0x78,0xac,0x92,0x5a,0x6e,0x34,0x47,0xa5,0x37,0x62,0x7a,
 0x21,0x63,0xbe,0x00,0x5a,0x42,0x2f,0x55,0xc0,0x83,0x85,0xc1,
 0xef,0x7d,0x05,0x1c,0xa9,0x45,0x93,0xdf,0x59,0x46,0x31,0x41,
 0x20,0xfa,0xa8,0x71,0x65,0xcb,0xa1,0x31,0xc1,0xda,0x3a,0xac,
 0x42,0x9d,0xc3,0xd9,0x9a,0x9b,0xac,0x7d,0x4c,0x4c,0xbb,0x85,
 0x70,0xb4,0xd5,0xea,0x10,
};
const uint8_t tc_yb[] = {
 0xa0,0xb7,0x68,0xba,0x75,0x55,0x62,0x1d,0x13,0x30,0x12,0xd1,
 0xde,0xe2,0x7a,0x00,0x13,0xc1,0xbc,0xfd,0xdd,0x67,0x58,0x11,
 0xdf,0x12,0x77,0x1e,0x44,0xd7,0x7b,0x10,
};
const uint8_t tc_ADb[] = {
 0x41,0x44,0x62,
};
const uint8_t tc_Yb[] = {
 0x04,0xdf,0x13,0xff,0xa8,0x9b,0x0c,0xe3,0xcc,0x55,0x3b,0x14,
 0x95,0xff,0x02,0x78,0x86,0x56,0x4d,0x94,0xb8,0xd9,0x16,0x5c,
 0xd5,0x0e,0x5f,0x65,0x42,0x47,0x95,0x99,0x51,0xbf,0xac,0x90,
 0x83,0x9f,0xca,0x21,0x8b,0xf8,0xe2,0xd1,0x25,0x8e,0xb7,0xd7,
 0xd9,0xf7,0x33,0xfe,0x4c,0xd5,0x58,0xe6,0xfa,0x57,0xbf,0x1f,
 0x80,0x1a,0xae,0x7d,0x3a,
};
const uint8_t tc_K[] = {
 0x27,0xf7,0x05,0x9d,0x88,0xf0,0x20,0x07,0xdc,0x18,0xc9,0x11,
 0xc9,0xb4,0x03,0x4d,0x3c,0x0f,0x13,0xf8,0xf7,0xed,0x96,0x03,
 0xb0,0x92,0x7f,0x23,0xfb,0xab,0x10,0x37,
};
const uint8_t tc_ISK_IR[] = {
 0xdd,0xc1,0xb1,0x33,0xc3,0x87,0xec,0xf3,0x44,0xc0,0xb4,0x96,
 0xbc,0x12,0x23,0x65,0x6c,0xd6,0xe7,0xd9,0x9a,0x5d,0xef,0x8b,
 0x3b,0x02,0x67,0x96,0x50,0x81,0x1f,0xc9,
};
const uint8_t tc_ISK_SY[] = {
 0x6e,0xa7,0x75,0xb0,0xfb,0x3c,0x31,0x50,0x26,0x87,0x56,0x5a,
 0x52,0x15,0x0f,0xc5,0x95,0xc6,0x3f,0xe9,0x01,0xa1,0x1d,0x5f,
 0xc1,0x99,0x5c,0xd5,0x08,0x9a,0x17,0xae,
};
]]></artwork>
        </section>
        <section anchor="test-case-for-scalarmultvfy-with-correct-inputs" numbered="true" toc="default">
          <name>Test case for scalar_mult_vfy with correct inputs</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    s: (length: 32 bytes)
      f012501c091ff9b99a123fffe571d8bc01e8077ee581362e1bd21399
      0835643b
    X: (length: 65 bytes)
      0476ab88669dc640ca098b3d19ed87084d22d7e7c86b3b87451554d6
      93a7d98fb6bf0a6938fe0cec7be7563499ba3792909c8b9f4c936ef5
      2828b78a8d6254f49c
    G.scalar_mult(s,X) (full coordinates): (length: 65 bytes)
      0492b0eb1fe6a988797a85e6de8ec5de7ec685c83164570d79f0d568
      b918bfe7718b049dac20ea4631d8c4f321ddb48d70416f4929eb9a85
      2528114d3a560537c7
    G.scalar_mult_vfy(s,X) (only X-coordinate):
    (length: 32 bytes)
      92b0eb1fe6a988797a85e6de8ec5de7ec685c83164570d79f0d568b9
      18bfe771
]]></artwork>
        </section>
        <section anchor="invalid-inputs-for-scalarmultvfy-2" numbered="true" toc="default">
          <name>Invalid inputs for scalar_mult_vfy</name>
          <t>For these test cases scalar_mult_vfy(y,.) MUST return the representation of the neutral element G.I. When including Y_i1 or Y_i2 in MSGa or MSGb the protocol MUST abort.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    s: (length: 32 bytes)
      f012501c091ff9b99a123fffe571d8bc01e8077ee581362e1bd21399
      0835643b
    Y_i1: (length: 65 bytes)
      0476ab88669dc640ca098b3d19ed87084d22d7e7c86b3b87451554d6
      93a7d98fb6bf0a6938fe0cec7be7563499ba3792909c8b9f4c936ef5
      2828b78a8d6254f4f3
    Y_i2: (length: 1 bytes)
      00
    G.scalar_mult_vfy(s,Y_i1) = G.scalar_mult_vfy(s,Y_i2) = G.I
]]></artwork>
        </section>
      </section>
      <section anchor="test-vector-for-cpace-using-group-nist-p-384-and-hash-sha-384" numbered="true" toc="default">
        <name>Test vector for CPace using group NIST P-384 and hash SHA-384</name>
        <section anchor="test-vectors-for-calculategenerator-with-group-nist-p-384" numbered="true" toc="default">
          <name>Test vectors for calculate_generator with group NIST P-384</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inputs
    H   = SHA-384 with input block size 128 bytes.
    PRS = b'Password' ; ZPAD length: 87 ;
    DSI = b'CPaceP384_XMD:SHA-384_SSWU_NU_'
    CI = b'\nAinitiator\nBresponder'
    CI = 0a41696e69746961746f720a42726573706f6e646572
    sid = 5b3773aa90e8f23c61563a4b645b276c
  Outputs
    generator_string(PRS,G.DSI,CI,sid,H.s_in_bytes):
    (length: 168 bytes)
      1e4350616365503338345f584d443a5348412d3338345f535357555f
      4e555f0850617373776f726457000000000000000000000000000000
      00000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000160a41696e69746961746f72
      0a42726573706f6e646572105b3773aa90e8f23c61563a4b645b276c
    generator g: (length: 97 bytes)
      04bb6f046a601d0a0b134c6221e20e83c3f9ac0390be56c5a95b68eb
      f41c82ade6f4977ea21341239d194c38dabd1a7eb5887d9fed2550a1
      d5e6789327f2a039cd9c41239b240f775f5f2bef8744561b3a7e98f3
      2234cb1b318f66616de777aeef
]]></artwork>
        </section>
        <section anchor="test-vector-for-msga-5" numbered="true" toc="default">
          <name>Test vector for MSGa</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inputs
    ADa = b'ADa'
    ya (big endian): (length: 48 bytes)
      ef433dd5ad142c860e7cb6400dd315d388d5ec5420c550e9d6f0907f
      375d988bc4d704837e43561c497e7dd93edcdb9d
  Outputs
    Ya: (length: 97 bytes)
      047214fc512921b3fa0b555b41d841c9c20227fa1ab0dda5bfc051f6
      de9be7983e6df11d4e8da738b739adfbd85d8f5e80b2b4bbc66f3dff
      c02136ee19773d05f9c0242c0dd51857763de98a2fdfec73a4b1010c
      bc419c7b23b50adedbb3ff6644
    Alternative correct value for Ya: g^(-ya):
    (length: 97 bytes)
      047214fc512921b3fa0b555b41d841c9c20227fa1ab0dda5bfc051f6
      de9be7983e6df11d4e8da738b739adfbd85d8f5e804d4b443990c200
      3fdec911e688c2fa063fdbd3f22ae7a889c21675d020138c5a4efef3
      42be6384dc4af521254c0099bb
    MSGa: (length: 102 bytes)
      61047214fc512921b3fa0b555b41d841c9c20227fa1ab0dda5bfc051
      f6de9be7983e6df11d4e8da738b739adfbd85d8f5e80b2b4bbc66f3d
      ffc02136ee19773d05f9c0242c0dd51857763de98a2fdfec73a4b101
      0cbc419c7b23b50adedbb3ff664403414461
]]></artwork>
        </section>
        <section anchor="test-vector-for-msgb-5" numbered="true" toc="default">
          <name>Test vector for MSGb</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inputs
    ADb = b'ADb'
    yb (big endian): (length: 48 bytes)
      50b0e36b95a2edfaa8342b843dddc90b175330f2399c1b36586dedda
      3c255975f30be6a750f9404fccc62a6323b5e471
  Outputs
    Yb: (length: 97 bytes)
      04e34cbd45b13ad11552ea7100b19899fa52662e268f2086e21262f7
      46efcb18e4b51ecfaf2e8ebab82addb6245f9bb1ff8138317c8045c4
      d2550e1566832b94acb91b670c4c4c00e59f5c15c74d4260e490caca
      aa860c11b8f369b72d5871bd94
    Alternative correct value for Yb: g^(-yb):
    (length: 97 bytes)
      04e34cbd45b13ad11552ea7100b19899fa52662e268f2086e21262f7
      46efcb18e4b51ecfaf2e8ebab82addb6245f9bb1ff7ec7ce837fba3b
      2daaf1ea997cd46b5346e498f3b3b3ff1a60a3ea38b2bd9f1a6f3535
      5479f3ee470c9648d3a78e426b
    MSGb: (length: 102 bytes)
      6104e34cbd45b13ad11552ea7100b19899fa52662e268f2086e21262
      f746efcb18e4b51ecfaf2e8ebab82addb6245f9bb1ff8138317c8045
      c4d2550e1566832b94acb91b670c4c4c00e59f5c15c74d4260e490ca
      caaa860c11b8f369b72d5871bd9403414462
]]></artwork>
        </section>
        <section anchor="test-vector-for-secret-points-k-5" numbered="true" toc="default">
          <name>Test vector for secret points K</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    scalar_mult_vfy(ya,Yb): (length: 48 bytes)
      e5ef578c410effb4ec114998a59fa5832f6101be479f1a97b021f224
      e378c3fb1f77f87a92e39fb415edf5458b3815bf
    scalar_mult_vfy(yb,Ya): (length: 48 bytes)
      e5ef578c410effb4ec114998a59fa5832f6101be479f1a97b021f224
      e378c3fb1f77f87a92e39fb415edf5458b3815bf
]]></artwork>
        </section>
        <section anchor="test-vector-for-isk-calculation-initiatorresponder-5" numbered="true" toc="default">
          <name>Test vector for ISK calculation initiator/responder</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    unordered cat of transcript : (length: 204 bytes)
      61047214fc512921b3fa0b555b41d841c9c20227fa1ab0dda5bfc051
      f6de9be7983e6df11d4e8da738b739adfbd85d8f5e80b2b4bbc66f3d
      ffc02136ee19773d05f9c0242c0dd51857763de98a2fdfec73a4b101
      0cbc419c7b23b50adedbb3ff6644034144616104e34cbd45b13ad115
      52ea7100b19899fa52662e268f2086e21262f746efcb18e4b51ecfaf
      2e8ebab82addb6245f9bb1ff8138317c8045c4d2550e1566832b94ac
      b91b670c4c4c00e59f5c15c74d4260e490cacaaa860c11b8f369b72d
      5871bd9403414462
    DSI = G.DSI_ISK, b'CPaceP384_XMD:SHA-384_SSWU_NU__ISK':
    (length: 34 bytes)
      4350616365503338345f584d443a5348412d3338345f535357555f4e
      555f5f49534b
    prefix_free_cat(DSI,sid,K)||MSGa||MSGb: (length: 305 bytes)
      224350616365503338345f584d443a5348412d3338345f535357555f
      4e555f5f49534b105b3773aa90e8f23c61563a4b645b276c30e5ef57
      8c410effb4ec114998a59fa5832f6101be479f1a97b021f224e378c3
      fb1f77f87a92e39fb415edf5458b3815bf61047214fc512921b3fa0b
      555b41d841c9c20227fa1ab0dda5bfc051f6de9be7983e6df11d4e8d
      a738b739adfbd85d8f5e80b2b4bbc66f3dffc02136ee19773d05f9c0
      242c0dd51857763de98a2fdfec73a4b1010cbc419c7b23b50adedbb3
      ff6644034144616104e34cbd45b13ad11552ea7100b19899fa52662e
      268f2086e21262f746efcb18e4b51ecfaf2e8ebab82addb6245f9bb1
      ff8138317c8045c4d2550e1566832b94acb91b670c4c4c00e59f5c15
      c74d4260e490cacaaa860c11b8f369b72d5871bd9403414462
    ISK result: (length: 48 bytes)
      401601de4a9f25bd57fc85985c9abf1de75191d68306b584547e6ac9
      e959cf2df49a9bf2205c3617ce99a169971bdbf8
]]></artwork>
        </section>
        <section anchor="test-vector-for-isk-calculation-parallel-execution-5" numbered="true" toc="default">
          <name>Test vector for ISK calculation parallel execution</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    ordered cat of transcript : (length: 204 bytes)
      6104e34cbd45b13ad11552ea7100b19899fa52662e268f2086e21262
      f746efcb18e4b51ecfaf2e8ebab82addb6245f9bb1ff8138317c8045
      c4d2550e1566832b94acb91b670c4c4c00e59f5c15c74d4260e490ca
      caaa860c11b8f369b72d5871bd940341446261047214fc512921b3fa
      0b555b41d841c9c20227fa1ab0dda5bfc051f6de9be7983e6df11d4e
      8da738b739adfbd85d8f5e80b2b4bbc66f3dffc02136ee19773d05f9
      c0242c0dd51857763de98a2fdfec73a4b1010cbc419c7b23b50adedb
      b3ff664403414461
    DSI = G.DSI_ISK, b'CPaceP384_XMD:SHA-384_SSWU_NU__ISK':
    (length: 34 bytes)
      4350616365503338345f584d443a5348412d3338345f535357555f4e
      555f5f49534b
    prefix_free_cat(DSI,sid,K)||oCAT(MSGa,MSGb):
    (length: 305 bytes)
      224350616365503338345f584d443a5348412d3338345f535357555f
      4e555f5f49534b105b3773aa90e8f23c61563a4b645b276c30e5ef57
      8c410effb4ec114998a59fa5832f6101be479f1a97b021f224e378c3
      fb1f77f87a92e39fb415edf5458b3815bf6104e34cbd45b13ad11552
      ea7100b19899fa52662e268f2086e21262f746efcb18e4b51ecfaf2e
      8ebab82addb6245f9bb1ff8138317c8045c4d2550e1566832b94acb9
      1b670c4c4c00e59f5c15c74d4260e490cacaaa860c11b8f369b72d58
      71bd940341446261047214fc512921b3fa0b555b41d841c9c20227fa
      1ab0dda5bfc051f6de9be7983e6df11d4e8da738b739adfbd85d8f5e
      80b2b4bbc66f3dffc02136ee19773d05f9c0242c0dd51857763de98a
      2fdfec73a4b1010cbc419c7b23b50adedbb3ff664403414461
    ISK result: (length: 48 bytes)
      1eb17f7f7126a07acd510e9d60c84f63dc0113ac34f8d359e8f692a9
      06f828bde926d9ff65202c9801e9884aa05a43b6
]]></artwork>
        </section>
        <section anchor="corresponding-ansi-c-initializers-5" numbered="true" toc="default">
          <name>Corresponding ANSI-C initializers</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
const uint8_t tc_PRS[] = {
 0x50,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,
};
const uint8_t tc_CI[] = {
 0x0a,0x41,0x69,0x6e,0x69,0x74,0x69,0x61,0x74,0x6f,0x72,0x0a,
 0x42,0x72,0x65,0x73,0x70,0x6f,0x6e,0x64,0x65,0x72,
};
const uint8_t tc_sid[] = {
 0x5b,0x37,0x73,0xaa,0x90,0xe8,0xf2,0x3c,0x61,0x56,0x3a,0x4b,
 0x64,0x5b,0x27,0x6c,
};
const uint8_t tc_g[] = {
 0x04,0xbb,0x6f,0x04,0x6a,0x60,0x1d,0x0a,0x0b,0x13,0x4c,0x62,
 0x21,0xe2,0x0e,0x83,0xc3,0xf9,0xac,0x03,0x90,0xbe,0x56,0xc5,
 0xa9,0x5b,0x68,0xeb,0xf4,0x1c,0x82,0xad,0xe6,0xf4,0x97,0x7e,
 0xa2,0x13,0x41,0x23,0x9d,0x19,0x4c,0x38,0xda,0xbd,0x1a,0x7e,
 0xb5,0x88,0x7d,0x9f,0xed,0x25,0x50,0xa1,0xd5,0xe6,0x78,0x93,
 0x27,0xf2,0xa0,0x39,0xcd,0x9c,0x41,0x23,0x9b,0x24,0x0f,0x77,
 0x5f,0x5f,0x2b,0xef,0x87,0x44,0x56,0x1b,0x3a,0x7e,0x98,0xf3,
 0x22,0x34,0xcb,0x1b,0x31,0x8f,0x66,0x61,0x6d,0xe7,0x77,0xae,
 0xef,
};
const uint8_t tc_ya[] = {
 0xef,0x43,0x3d,0xd5,0xad,0x14,0x2c,0x86,0x0e,0x7c,0xb6,0x40,
 0x0d,0xd3,0x15,0xd3,0x88,0xd5,0xec,0x54,0x20,0xc5,0x50,0xe9,
 0xd6,0xf0,0x90,0x7f,0x37,0x5d,0x98,0x8b,0xc4,0xd7,0x04,0x83,
 0x7e,0x43,0x56,0x1c,0x49,0x7e,0x7d,0xd9,0x3e,0xdc,0xdb,0x9d,
};
const uint8_t tc_ADa[] = {
 0x41,0x44,0x61,
};
const uint8_t tc_Ya[] = {
 0x04,0x72,0x14,0xfc,0x51,0x29,0x21,0xb3,0xfa,0x0b,0x55,0x5b,
 0x41,0xd8,0x41,0xc9,0xc2,0x02,0x27,0xfa,0x1a,0xb0,0xdd,0xa5,
 0xbf,0xc0,0x51,0xf6,0xde,0x9b,0xe7,0x98,0x3e,0x6d,0xf1,0x1d,
 0x4e,0x8d,0xa7,0x38,0xb7,0x39,0xad,0xfb,0xd8,0x5d,0x8f,0x5e,
 0x80,0xb2,0xb4,0xbb,0xc6,0x6f,0x3d,0xff,0xc0,0x21,0x36,0xee,
 0x19,0x77,0x3d,0x05,0xf9,0xc0,0x24,0x2c,0x0d,0xd5,0x18,0x57,
 0x76,0x3d,0xe9,0x8a,0x2f,0xdf,0xec,0x73,0xa4,0xb1,0x01,0x0c,
 0xbc,0x41,0x9c,0x7b,0x23,0xb5,0x0a,0xde,0xdb,0xb3,0xff,0x66,
 0x44,
};
const uint8_t tc_yb[] = {
 0x50,0xb0,0xe3,0x6b,0x95,0xa2,0xed,0xfa,0xa8,0x34,0x2b,0x84,
 0x3d,0xdd,0xc9,0x0b,0x17,0x53,0x30,0xf2,0x39,0x9c,0x1b,0x36,
 0x58,0x6d,0xed,0xda,0x3c,0x25,0x59,0x75,0xf3,0x0b,0xe6,0xa7,
 0x50,0xf9,0x40,0x4f,0xcc,0xc6,0x2a,0x63,0x23,0xb5,0xe4,0x71,
};
const uint8_t tc_ADb[] = {
 0x41,0x44,0x62,
};
const uint8_t tc_Yb[] = {
 0x04,0xe3,0x4c,0xbd,0x45,0xb1,0x3a,0xd1,0x15,0x52,0xea,0x71,
 0x00,0xb1,0x98,0x99,0xfa,0x52,0x66,0x2e,0x26,0x8f,0x20,0x86,
 0xe2,0x12,0x62,0xf7,0x46,0xef,0xcb,0x18,0xe4,0xb5,0x1e,0xcf,
 0xaf,0x2e,0x8e,0xba,0xb8,0x2a,0xdd,0xb6,0x24,0x5f,0x9b,0xb1,
 0xff,0x81,0x38,0x31,0x7c,0x80,0x45,0xc4,0xd2,0x55,0x0e,0x15,
 0x66,0x83,0x2b,0x94,0xac,0xb9,0x1b,0x67,0x0c,0x4c,0x4c,0x00,
 0xe5,0x9f,0x5c,0x15,0xc7,0x4d,0x42,0x60,0xe4,0x90,0xca,0xca,
 0xaa,0x86,0x0c,0x11,0xb8,0xf3,0x69,0xb7,0x2d,0x58,0x71,0xbd,
 0x94,
};
const uint8_t tc_K[] = {
 0xe5,0xef,0x57,0x8c,0x41,0x0e,0xff,0xb4,0xec,0x11,0x49,0x98,
 0xa5,0x9f,0xa5,0x83,0x2f,0x61,0x01,0xbe,0x47,0x9f,0x1a,0x97,
 0xb0,0x21,0xf2,0x24,0xe3,0x78,0xc3,0xfb,0x1f,0x77,0xf8,0x7a,
 0x92,0xe3,0x9f,0xb4,0x15,0xed,0xf5,0x45,0x8b,0x38,0x15,0xbf,
};
const uint8_t tc_ISK_IR[] = {
 0x40,0x16,0x01,0xde,0x4a,0x9f,0x25,0xbd,0x57,0xfc,0x85,0x98,
 0x5c,0x9a,0xbf,0x1d,0xe7,0x51,0x91,0xd6,0x83,0x06,0xb5,0x84,
 0x54,0x7e,0x6a,0xc9,0xe9,0x59,0xcf,0x2d,0xf4,0x9a,0x9b,0xf2,
 0x20,0x5c,0x36,0x17,0xce,0x99,0xa1,0x69,0x97,0x1b,0xdb,0xf8,
};
const uint8_t tc_ISK_SY[] = {
 0x1e,0xb1,0x7f,0x7f,0x71,0x26,0xa0,0x7a,0xcd,0x51,0x0e,0x9d,
 0x60,0xc8,0x4f,0x63,0xdc,0x01,0x13,0xac,0x34,0xf8,0xd3,0x59,
 0xe8,0xf6,0x92,0xa9,0x06,0xf8,0x28,0xbd,0xe9,0x26,0xd9,0xff,
 0x65,0x20,0x2c,0x98,0x01,0xe9,0x88,0x4a,0xa0,0x5a,0x43,0xb6,
};
]]></artwork>
        </section>
        <section anchor="test-case-for-scalarmultvfy-with-correct-inputs-1" numbered="true" toc="default">
          <name>Test case for scalar_mult_vfy with correct inputs</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    s: (length: 48 bytes)
      6e8a99a5cdd408eae98e1b8aed286e7b12adbbdac7f2c628d9060ce9
      2ae0d90bd57a564fd3500fbcce3425dc94ba0ade
    X: (length: 97 bytes)
      04a32d8d8e1057d37b090d92f46d0bac1874e6cd7c13774774385c30
      39fa8fa3539884b436e49743d2d6279f5bd69dda5fe79fc6ecfb8547
      bf32d8c64ac51f177a70041a1300944f255eea38ca7e964c9d02c5e7
      e28d744e7cdc0bd80437363999
    G.scalar_mult(s,X) (full coordinates): (length: 97 bytes)
      045eb8202664ec20fed23ed6005c7be398174946a0f6a8a2e5fd2fed
      9ca159f22652899f820a2d472f926f57de30035a9d11e8006fb66e79
      f3db5d58bd5688954c7284d1e4a616a935dfb761955be13d29de5745
      074a863140dcc9a5c0056ced3b
    G.scalar_mult_vfy(s,X) (only X-coordinate):
    (length: 48 bytes)
      5eb8202664ec20fed23ed6005c7be398174946a0f6a8a2e5fd2fed9c
      a159f22652899f820a2d472f926f57de30035a9d
]]></artwork>
        </section>
        <section anchor="invalid-inputs-for-scalarmultvfy-3" numbered="true" toc="default">
          <name>Invalid inputs for scalar_mult_vfy</name>
          <t>For these test cases scalar_mult_vfy(y,.) MUST return the representation of the neutral element G.I. When including Y_i1 or Y_i2 in MSGa or MSGb the protocol MUST abort.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    s: (length: 48 bytes)
      6e8a99a5cdd408eae98e1b8aed286e7b12adbbdac7f2c628d9060ce9
      2ae0d90bd57a564fd3500fbcce3425dc94ba0ade
    Y_i1: (length: 97 bytes)
      04a32d8d8e1057d37b090d92f46d0bac1874e6cd7c13774774385c30
      39fa8fa3539884b436e49743d2d6279f5bd69dda5fe79fc6ecfb8547
      bf32d8c64ac51f177a70041a1300944f255eea38ca7e964c9d02c5e7
      e28d744e7cdc0bd80437363938
    Y_i2: (length: 1 bytes)
      00
    G.scalar_mult_vfy(s,Y_i1) = G.scalar_mult_vfy(s,Y_i2) = G.I
]]></artwork>
        </section>
      </section>
      <section anchor="test-vector-for-cpace-using-group-nist-p-521-and-hash-sha-512" numbered="true" toc="default">
        <name>Test vector for CPace using group NIST P-521 and hash SHA-512</name>
        <section anchor="test-vectors-for-calculategenerator-with-group-nist-p-521" numbered="true" toc="default">
          <name>Test vectors for calculate_generator with group NIST P-521</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inputs
    H   = SHA-512 with input block size 128 bytes.
    PRS = b'Password' ; ZPAD length: 87 ;
    DSI = b'CPaceP521_XMD:SHA-512_SSWU_NU_'
    CI = b'\nAinitiator\nBresponder'
    CI = 0a41696e69746961746f720a42726573706f6e646572
    sid = 7e4b4791d6a8ef019b936c79fb7f2c57
  Outputs
    generator_string(PRS,G.DSI,CI,sid,H.s_in_bytes):
    (length: 168 bytes)
      1e4350616365503532315f584d443a5348412d3531325f535357555f
      4e555f0850617373776f726457000000000000000000000000000000
      00000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000160a41696e69746961746f72
      0a42726573706f6e646572107e4b4791d6a8ef019b936c79fb7f2c57
    generator g: (length: 133 bytes)
      0400523c2be75a6fdb50e33d917597f182810ea6afe04b7297fccdfc
      f8c1c9f0f1a0c794056c729c275a654d1f9f52cd3d1d0ecc8f2f6a1b
      ab958d36cc539c558496a901bbe4fd573f2a6e6cc0c9afee3ee25c4b
      6f0474dd012eff5af0cbf55c4ec3c0ab4f1187353f815eb2a01ebc52
      d076d45a77a9b86d14fb21066df1d09f10b0a97546
]]></artwork>
        </section>
        <section anchor="test-vector-for-msga-6" numbered="true" toc="default">
          <name>Test vector for MSGa</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inputs
    ADa = b'ADa'
    ya (big endian): (length: 66 bytes)
      016fac7bb757452e7b788d68a1510eda90113c65db1213fa08927d50
      bcf2635fd66ca254e82927071001353e265082fd609af47ad06fab42
      0c2295df4056ee9ff997
  Outputs
    Ya: (length: 133 bytes)
      0400484dcee6d54cb356830cd764079360a03b06a7db1a82188e09c9
      2e02d7e78a1e3710da9554db11697d242893e2114d6cbee89f5999b7
      e545d9fdf59f4c9acd408901ad73e01ec22ae6ecc122cf257e81826e
      348cd410ddb9245c61889fe97b2bbb98b2038eb2ed23e989ec7013a6
      10fb2f3b4fb958cc860dd10c98745b9d89e37f2bf9
    Alternative correct value for Ya: g^(-ya):
    (length: 133 bytes)
      0400484dcee6d54cb356830cd764079360a03b06a7db1a82188e09c9
      2e02d7e78a1e3710da9554db11697d242893e2114d6cbee89f5999b7
      e545d9fdf59f4c9acd408900528c1fe13dd519133edd30da817e7d91
      cb732bef2246dba39e77601684d444674dfc714d12dc1676138fec59
      ef04d0c4b046a73379f22ef3678ba462761c80d406
    MSGa: (length: 139 bytes)
      85010400484dcee6d54cb356830cd764079360a03b06a7db1a82188e
      09c92e02d7e78a1e3710da9554db11697d242893e2114d6cbee89f59
      99b7e545d9fdf59f4c9acd408901ad73e01ec22ae6ecc122cf257e81
      826e348cd410ddb9245c61889fe97b2bbb98b2038eb2ed23e989ec70
      13a610fb2f3b4fb958cc860dd10c98745b9d89e37f2bf903414461
]]></artwork>
        </section>
        <section anchor="test-vector-for-msgb-6" numbered="true" toc="default">
          <name>Test vector for MSGb</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Inputs
    ADb = b'ADb'
    yb (big endian): (length: 66 bytes)
      011a946e2d0f48dc440ae3f4fd9126198237042fd1d41d037068c284
      6d43ec130cbc55ef1208496be068f8682bcaf6156e51598e27c1fb24
      d77b43957bbc129bab80
  Outputs
    Yb: (length: 133 bytes)
      0401edf767bd7d9e67ff137b8f3210c55e9192e9ac8a10f32a2f0eef
      9ce34524a543e0d4eb9b3328ca114b02ab23b291f61b5bc814639a9e
      caff07e870733131747637004c2df1bec8abe6b252e7fe91bdb6f724
      2e65c36e7b960646c89aaf0262a4803ee4c90d1b58775a409a135bd1
      8fedbf4ba0eae172b4fe8a0fada83d699e44f2f861
    Alternative correct value for Yb: g^(-yb):
    (length: 133 bytes)
      0401edf767bd7d9e67ff137b8f3210c55e9192e9ac8a10f32a2f0eef
      9ce34524a543e0d4eb9b3328ca114b02ab23b291f61b5bc814639a9e
      caff07e87073313174763701b3d20e413754194dad18016e424908db
      d19a3c918469f9b9376550fd9d5b7fc11b36f2e4a788a5bf65eca42e
      701240b45f151e8d4b0175f05257c29661bb0d079e
    MSGb: (length: 139 bytes)
      85010401edf767bd7d9e67ff137b8f3210c55e9192e9ac8a10f32a2f
      0eef9ce34524a543e0d4eb9b3328ca114b02ab23b291f61b5bc81463
      9a9ecaff07e870733131747637004c2df1bec8abe6b252e7fe91bdb6
      f7242e65c36e7b960646c89aaf0262a4803ee4c90d1b58775a409a13
      5bd18fedbf4ba0eae172b4fe8a0fada83d699e44f2f86103414462
]]></artwork>
        </section>
        <section anchor="test-vector-for-secret-points-k-6" numbered="true" toc="default">
          <name>Test vector for secret points K</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    scalar_mult_vfy(ya,Yb): (length: 66 bytes)
      0070a7460122c65d86bf9dd012ab45fc94be362619d1a1f0e75f1433
      3ed8b873b5724616b88dadaaba5f28bb783aeb01f60df5fdb8c0a237
      45900f462f405debfd51
    scalar_mult_vfy(yb,Ya): (length: 66 bytes)
      0070a7460122c65d86bf9dd012ab45fc94be362619d1a1f0e75f1433
      3ed8b873b5724616b88dadaaba5f28bb783aeb01f60df5fdb8c0a237
      45900f462f405debfd51
]]></artwork>
        </section>
        <section anchor="test-vector-for-isk-calculation-initiatorresponder-6" numbered="true" toc="default">
          <name>Test vector for ISK calculation initiator/responder</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    unordered cat of transcript : (length: 278 bytes)
      85010400484dcee6d54cb356830cd764079360a03b06a7db1a82188e
      09c92e02d7e78a1e3710da9554db11697d242893e2114d6cbee89f59
      99b7e545d9fdf59f4c9acd408901ad73e01ec22ae6ecc122cf257e81
      826e348cd410ddb9245c61889fe97b2bbb98b2038eb2ed23e989ec70
      13a610fb2f3b4fb958cc860dd10c98745b9d89e37f2bf90341446185
      010401edf767bd7d9e67ff137b8f3210c55e9192e9ac8a10f32a2f0e
      ef9ce34524a543e0d4eb9b3328ca114b02ab23b291f61b5bc814639a
      9ecaff07e870733131747637004c2df1bec8abe6b252e7fe91bdb6f7
      242e65c36e7b960646c89aaf0262a4803ee4c90d1b58775a409a135b
      d18fedbf4ba0eae172b4fe8a0fada83d699e44f2f86103414462
    DSI = G.DSI_ISK, b'CPaceP521_XMD:SHA-512_SSWU_NU__ISK':
    (length: 34 bytes)
      4350616365503532315f584d443a5348412d3531325f535357555f4e
      555f5f49534b
    prefix_free_cat(DSI,sid,K)||MSGa||MSGb: (length: 397 bytes)
      224350616365503532315f584d443a5348412d3531325f535357555f
      4e555f5f49534b107e4b4791d6a8ef019b936c79fb7f2c57420070a7
      460122c65d86bf9dd012ab45fc94be362619d1a1f0e75f14333ed8b8
      73b5724616b88dadaaba5f28bb783aeb01f60df5fdb8c0a23745900f
      462f405debfd5185010400484dcee6d54cb356830cd764079360a03b
      06a7db1a82188e09c92e02d7e78a1e3710da9554db11697d242893e2
      114d6cbee89f5999b7e545d9fdf59f4c9acd408901ad73e01ec22ae6
      ecc122cf257e81826e348cd410ddb9245c61889fe97b2bbb98b2038e
      b2ed23e989ec7013a610fb2f3b4fb958cc860dd10c98745b9d89e37f
      2bf90341446185010401edf767bd7d9e67ff137b8f3210c55e9192e9
      ac8a10f32a2f0eef9ce34524a543e0d4eb9b3328ca114b02ab23b291
      f61b5bc814639a9ecaff07e870733131747637004c2df1bec8abe6b2
      52e7fe91bdb6f7242e65c36e7b960646c89aaf0262a4803ee4c90d1b
      58775a409a135bd18fedbf4ba0eae172b4fe8a0fada83d699e44f2f8
      6103414462
    ISK result: (length: 64 bytes)
      2b2c534c352c446773bd334fac2f2c50ef8cd7991bd4e070f85b0367
      a2f7ffca445066cf20b756773687e1038b170896ec2677fe722acb0f
      9e6c2f11830e808a
]]></artwork>
        </section>
        <section anchor="test-vector-for-isk-calculation-parallel-execution-6" numbered="true" toc="default">
          <name>Test vector for ISK calculation parallel execution</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    ordered cat of transcript : (length: 278 bytes)
      85010401edf767bd7d9e67ff137b8f3210c55e9192e9ac8a10f32a2f
      0eef9ce34524a543e0d4eb9b3328ca114b02ab23b291f61b5bc81463
      9a9ecaff07e870733131747637004c2df1bec8abe6b252e7fe91bdb6
      f7242e65c36e7b960646c89aaf0262a4803ee4c90d1b58775a409a13
      5bd18fedbf4ba0eae172b4fe8a0fada83d699e44f2f8610341446285
      010400484dcee6d54cb356830cd764079360a03b06a7db1a82188e09
      c92e02d7e78a1e3710da9554db11697d242893e2114d6cbee89f5999
      b7e545d9fdf59f4c9acd408901ad73e01ec22ae6ecc122cf257e8182
      6e348cd410ddb9245c61889fe97b2bbb98b2038eb2ed23e989ec7013
      a610fb2f3b4fb958cc860dd10c98745b9d89e37f2bf903414461
    DSI = G.DSI_ISK, b'CPaceP521_XMD:SHA-512_SSWU_NU__ISK':
    (length: 34 bytes)
      4350616365503532315f584d443a5348412d3531325f535357555f4e
      555f5f49534b
    prefix_free_cat(DSI,sid,K)||oCAT(MSGa,MSGb):
    (length: 397 bytes)
      224350616365503532315f584d443a5348412d3531325f535357555f
      4e555f5f49534b107e4b4791d6a8ef019b936c79fb7f2c57420070a7
      460122c65d86bf9dd012ab45fc94be362619d1a1f0e75f14333ed8b8
      73b5724616b88dadaaba5f28bb783aeb01f60df5fdb8c0a23745900f
      462f405debfd5185010401edf767bd7d9e67ff137b8f3210c55e9192
      e9ac8a10f32a2f0eef9ce34524a543e0d4eb9b3328ca114b02ab23b2
      91f61b5bc814639a9ecaff07e870733131747637004c2df1bec8abe6
      b252e7fe91bdb6f7242e65c36e7b960646c89aaf0262a4803ee4c90d
      1b58775a409a135bd18fedbf4ba0eae172b4fe8a0fada83d699e44f2
      f8610341446285010400484dcee6d54cb356830cd764079360a03b06
      a7db1a82188e09c92e02d7e78a1e3710da9554db11697d242893e211
      4d6cbee89f5999b7e545d9fdf59f4c9acd408901ad73e01ec22ae6ec
      c122cf257e81826e348cd410ddb9245c61889fe97b2bbb98b2038eb2
      ed23e989ec7013a610fb2f3b4fb958cc860dd10c98745b9d89e37f2b
      f903414461
    ISK result: (length: 64 bytes)
      78c4dd7136309a2bbe1fdef3cf24a08690006b0c9de253b770c147dd
      0800681c82e4e67a388ed1cd9182e595b8e9e3f2976a0e6dab48b2cd
      205b19489e20f571
]]></artwork>
        </section>
        <section anchor="corresponding-ansi-c-initializers-6" numbered="true" toc="default">
          <name>Corresponding ANSI-C initializers</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
const uint8_t tc_PRS[] = {
 0x50,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,
};
const uint8_t tc_CI[] = {
 0x0a,0x41,0x69,0x6e,0x69,0x74,0x69,0x61,0x74,0x6f,0x72,0x0a,
 0x42,0x72,0x65,0x73,0x70,0x6f,0x6e,0x64,0x65,0x72,
};
const uint8_t tc_sid[] = {
 0x7e,0x4b,0x47,0x91,0xd6,0xa8,0xef,0x01,0x9b,0x93,0x6c,0x79,
 0xfb,0x7f,0x2c,0x57,
};
const uint8_t tc_g[] = {
 0x04,0x00,0x52,0x3c,0x2b,0xe7,0x5a,0x6f,0xdb,0x50,0xe3,0x3d,
 0x91,0x75,0x97,0xf1,0x82,0x81,0x0e,0xa6,0xaf,0xe0,0x4b,0x72,
 0x97,0xfc,0xcd,0xfc,0xf8,0xc1,0xc9,0xf0,0xf1,0xa0,0xc7,0x94,
 0x05,0x6c,0x72,0x9c,0x27,0x5a,0x65,0x4d,0x1f,0x9f,0x52,0xcd,
 0x3d,0x1d,0x0e,0xcc,0x8f,0x2f,0x6a,0x1b,0xab,0x95,0x8d,0x36,
 0xcc,0x53,0x9c,0x55,0x84,0x96,0xa9,0x01,0xbb,0xe4,0xfd,0x57,
 0x3f,0x2a,0x6e,0x6c,0xc0,0xc9,0xaf,0xee,0x3e,0xe2,0x5c,0x4b,
 0x6f,0x04,0x74,0xdd,0x01,0x2e,0xff,0x5a,0xf0,0xcb,0xf5,0x5c,
 0x4e,0xc3,0xc0,0xab,0x4f,0x11,0x87,0x35,0x3f,0x81,0x5e,0xb2,
 0xa0,0x1e,0xbc,0x52,0xd0,0x76,0xd4,0x5a,0x77,0xa9,0xb8,0x6d,
 0x14,0xfb,0x21,0x06,0x6d,0xf1,0xd0,0x9f,0x10,0xb0,0xa9,0x75,
 0x46,
};
const uint8_t tc_ya[] = {
 0x01,0x6f,0xac,0x7b,0xb7,0x57,0x45,0x2e,0x7b,0x78,0x8d,0x68,
 0xa1,0x51,0x0e,0xda,0x90,0x11,0x3c,0x65,0xdb,0x12,0x13,0xfa,
 0x08,0x92,0x7d,0x50,0xbc,0xf2,0x63,0x5f,0xd6,0x6c,0xa2,0x54,
 0xe8,0x29,0x27,0x07,0x10,0x01,0x35,0x3e,0x26,0x50,0x82,0xfd,
 0x60,0x9a,0xf4,0x7a,0xd0,0x6f,0xab,0x42,0x0c,0x22,0x95,0xdf,
 0x40,0x56,0xee,0x9f,0xf9,0x97,
};
const uint8_t tc_ADa[] = {
 0x41,0x44,0x61,
};
const uint8_t tc_Ya[] = {
 0x04,0x00,0x48,0x4d,0xce,0xe6,0xd5,0x4c,0xb3,0x56,0x83,0x0c,
 0xd7,0x64,0x07,0x93,0x60,0xa0,0x3b,0x06,0xa7,0xdb,0x1a,0x82,
 0x18,0x8e,0x09,0xc9,0x2e,0x02,0xd7,0xe7,0x8a,0x1e,0x37,0x10,
 0xda,0x95,0x54,0xdb,0x11,0x69,0x7d,0x24,0x28,0x93,0xe2,0x11,
 0x4d,0x6c,0xbe,0xe8,0x9f,0x59,0x99,0xb7,0xe5,0x45,0xd9,0xfd,
 0xf5,0x9f,0x4c,0x9a,0xcd,0x40,0x89,0x01,0xad,0x73,0xe0,0x1e,
 0xc2,0x2a,0xe6,0xec,0xc1,0x22,0xcf,0x25,0x7e,0x81,0x82,0x6e,
 0x34,0x8c,0xd4,0x10,0xdd,0xb9,0x24,0x5c,0x61,0x88,0x9f,0xe9,
 0x7b,0x2b,0xbb,0x98,0xb2,0x03,0x8e,0xb2,0xed,0x23,0xe9,0x89,
 0xec,0x70,0x13,0xa6,0x10,0xfb,0x2f,0x3b,0x4f,0xb9,0x58,0xcc,
 0x86,0x0d,0xd1,0x0c,0x98,0x74,0x5b,0x9d,0x89,0xe3,0x7f,0x2b,
 0xf9,
};
const uint8_t tc_yb[] = {
 0x01,0x1a,0x94,0x6e,0x2d,0x0f,0x48,0xdc,0x44,0x0a,0xe3,0xf4,
 0xfd,0x91,0x26,0x19,0x82,0x37,0x04,0x2f,0xd1,0xd4,0x1d,0x03,
 0x70,0x68,0xc2,0x84,0x6d,0x43,0xec,0x13,0x0c,0xbc,0x55,0xef,
 0x12,0x08,0x49,0x6b,0xe0,0x68,0xf8,0x68,0x2b,0xca,0xf6,0x15,
 0x6e,0x51,0x59,0x8e,0x27,0xc1,0xfb,0x24,0xd7,0x7b,0x43,0x95,
 0x7b,0xbc,0x12,0x9b,0xab,0x80,
};
const uint8_t tc_ADb[] = {
 0x41,0x44,0x62,
};
const uint8_t tc_Yb[] = {
 0x04,0x01,0xed,0xf7,0x67,0xbd,0x7d,0x9e,0x67,0xff,0x13,0x7b,
 0x8f,0x32,0x10,0xc5,0x5e,0x91,0x92,0xe9,0xac,0x8a,0x10,0xf3,
 0x2a,0x2f,0x0e,0xef,0x9c,0xe3,0x45,0x24,0xa5,0x43,0xe0,0xd4,
 0xeb,0x9b,0x33,0x28,0xca,0x11,0x4b,0x02,0xab,0x23,0xb2,0x91,
 0xf6,0x1b,0x5b,0xc8,0x14,0x63,0x9a,0x9e,0xca,0xff,0x07,0xe8,
 0x70,0x73,0x31,0x31,0x74,0x76,0x37,0x00,0x4c,0x2d,0xf1,0xbe,
 0xc8,0xab,0xe6,0xb2,0x52,0xe7,0xfe,0x91,0xbd,0xb6,0xf7,0x24,
 0x2e,0x65,0xc3,0x6e,0x7b,0x96,0x06,0x46,0xc8,0x9a,0xaf,0x02,
 0x62,0xa4,0x80,0x3e,0xe4,0xc9,0x0d,0x1b,0x58,0x77,0x5a,0x40,
 0x9a,0x13,0x5b,0xd1,0x8f,0xed,0xbf,0x4b,0xa0,0xea,0xe1,0x72,
 0xb4,0xfe,0x8a,0x0f,0xad,0xa8,0x3d,0x69,0x9e,0x44,0xf2,0xf8,
 0x61,
};
const uint8_t tc_K[] = {
 0x00,0x70,0xa7,0x46,0x01,0x22,0xc6,0x5d,0x86,0xbf,0x9d,0xd0,
 0x12,0xab,0x45,0xfc,0x94,0xbe,0x36,0x26,0x19,0xd1,0xa1,0xf0,
 0xe7,0x5f,0x14,0x33,0x3e,0xd8,0xb8,0x73,0xb5,0x72,0x46,0x16,
 0xb8,0x8d,0xad,0xaa,0xba,0x5f,0x28,0xbb,0x78,0x3a,0xeb,0x01,
 0xf6,0x0d,0xf5,0xfd,0xb8,0xc0,0xa2,0x37,0x45,0x90,0x0f,0x46,
 0x2f,0x40,0x5d,0xeb,0xfd,0x51,
};
const uint8_t tc_ISK_IR[] = {
 0x2b,0x2c,0x53,0x4c,0x35,0x2c,0x44,0x67,0x73,0xbd,0x33,0x4f,
 0xac,0x2f,0x2c,0x50,0xef,0x8c,0xd7,0x99,0x1b,0xd4,0xe0,0x70,
 0xf8,0x5b,0x03,0x67,0xa2,0xf7,0xff,0xca,0x44,0x50,0x66,0xcf,
 0x20,0xb7,0x56,0x77,0x36,0x87,0xe1,0x03,0x8b,0x17,0x08,0x96,
 0xec,0x26,0x77,0xfe,0x72,0x2a,0xcb,0x0f,0x9e,0x6c,0x2f,0x11,
 0x83,0x0e,0x80,0x8a,
};
const uint8_t tc_ISK_SY[] = {
 0x78,0xc4,0xdd,0x71,0x36,0x30,0x9a,0x2b,0xbe,0x1f,0xde,0xf3,
 0xcf,0x24,0xa0,0x86,0x90,0x00,0x6b,0x0c,0x9d,0xe2,0x53,0xb7,
 0x70,0xc1,0x47,0xdd,0x08,0x00,0x68,0x1c,0x82,0xe4,0xe6,0x7a,
 0x38,0x8e,0xd1,0xcd,0x91,0x82,0xe5,0x95,0xb8,0xe9,0xe3,0xf2,
 0x97,0x6a,0x0e,0x6d,0xab,0x48,0xb2,0xcd,0x20,0x5b,0x19,0x48,
 0x9e,0x20,0xf5,0x71,
};
]]></artwork>
        </section>
        <section anchor="test-case-for-scalarmultvfy-with-correct-inputs-2" numbered="true" toc="default">
          <name>Test case for scalar_mult_vfy with correct inputs</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    s: (length: 66 bytes)
      0182dd7925f1753419e4bf83429763acd37d64000cd5a175edf53a15
      87dd986bc95acc1506991702b6ba1a9ee2458fee8efc00198cf0088c
      480965ef65ff2048b856
    X: (length: 133 bytes)
      0400bf0a2632f954515e65c55553e25cde4c8bf3a48e5df86a3ef845
      fcf15c8d9a4640171188ff835df48b8f934070d225daa591e270a9cc
      539b82e8dc145caf38aeb900c30b83a1c9792e95c4a25f75b58001d3
      6331c2b71a86591e1b510a1740335bc9947da1f6bab91b86900c9258
      b28ee7b5ea33af2a8138a75cde4287613ab6673bcc
    G.scalar_mult(s,X) (full coordinates): (length: 133 bytes)
      040100763e7ebe6a051e2195b1980686a2a5d7edbc1d9284e38d1e9e
      13673b65b6b3b5cb1b1ab146a315c32425edee8fdca06a07cf72d26d
      31e38ec6a38481b4f18d8600b2a7df9cc7db6cbf75b2eee98f9f14e5
      e24a789d45b9709278e8b74b30eb32d55fb8cfea4258dcf9de7fb36a
      67326584d5c8121c4802801115b908b937361c9828
    G.scalar_mult_vfy(s,X) (only X-coordinate):
    (length: 66 bytes)
      0100763e7ebe6a051e2195b1980686a2a5d7edbc1d9284e38d1e9e13
      673b65b6b3b5cb1b1ab146a315c32425edee8fdca06a07cf72d26d31
      e38ec6a38481b4f18d86
]]></artwork>
        </section>
        <section anchor="invalid-inputs-for-scalarmultvfy-4" numbered="true" toc="default">
          <name>Invalid inputs for scalar_mult_vfy</name>
          <t>For these test cases scalar_mult_vfy(y,.) MUST return the representation of the neutral element G.I. When including Y_i1 or Y_i2 in MSGa or MSGb the protocol MUST abort.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    s: (length: 66 bytes)
      0182dd7925f1753419e4bf83429763acd37d64000cd5a175edf53a15
      87dd986bc95acc1506991702b6ba1a9ee2458fee8efc00198cf0088c
      480965ef65ff2048b856
    Y_i1: (length: 133 bytes)
      0400bf0a2632f954515e65c55553e25cde4c8bf3a48e5df86a3ef845
      fcf15c8d9a4640171188ff835df48b8f934070d225daa591e270a9cc
      539b82e8dc145caf38aeb900c30b83a1c9792e95c4a25f75b58001d3
      6331c2b71a86591e1b510a1740335bc9947da1f6bab91b86900c9258
      b28ee7b5ea33af2a8138a75cde4287613ab6673b3a
    Y_i2: (length: 1 bytes)
      00
    G.scalar_mult_vfy(s,Y_i1) = G.scalar_mult_vfy(s,Y_i2) = G.I
]]></artwork>
        </section>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAGi44WEAA+y96XYcN5Yu+j+fIo68zjFZlUxHIGZVqW9Ts9qT2pK77LJc
WgACQWU7mUnnIJl2uZ/lPst9srsHAIGIjCQpWXa5TrdqFU1mRmDY2DM+bJyc
nEy28+3C3I7uPZXaTCMZKbmQS22aSK/OL1YbqRYmenr68YOJVGptXtsnJ81K
L+U5vNisZbs9ma+37Ylu12cn+gK+PonzSSO35vZEw8+z1frydjRftqvJZH6x
vh1t17vNVsRxHYvJd+byzWrd3I6eLLdmvTTbk/vY4mSy2cpl81IuVkvo5dJs
Jhfz29E325WeRpvVers27QZ+uzzHX76dTORu+2q1vj2JTiLoanM7+nQWnapG
LhZyEsE/Hu2nc/3KLHpfrNZnt6P7D5989uT51/DyX3dreIa+MedyvrgdndM7
M8nv/OsZfjoD6nRd3Z1Fj6XcmKCju/+5gtkEH1M3D5bN2mw20R/hi93GrKNP
5t/v5k10upSLy818Ay0+MuvFfHlmluEQFLU2O5+9wvb+9Y1Rs8Z0/f8b9A/N
hv3/224xl8Gn1P2Tu59GX5iNkWv9KnqwW68uzOiM/+3xs3/9kT6dzdU5zXWy
XK3P5Xb+GtY0ip49uJfcpjcs+9yCT6IEJrhYzC+2cx3d261fm+je+vJiuzpb
y4tXl7f4ebk+M9vb0avt9uL2Rx+9efNmtjH6bAbj+wh+SU5ei9lF09KzxEHR
p/JyGiGz0Gd+menfif2vnd8zZBm5bjZRu1pHD9p2rudmue0NI3q0Xu0uoiMY
8KPjCbz/5MGDB0lapL35uJaiZxdGz6EdmPpqye0+3akFzPBjc9lreEotRdhU
MHoYeAxcD7wfkO/BM9En3/NXJvrw+51cbnfnkVwuV5fAAh9GF7hC6+1ltGqj
C7nZoKCcIAVgUjgkkFIQn8j8oF9JYBl8HuRjtdjM9mi9AWKbi/V8uZ3NpV4T
vUUsko+KuriSsMRgD2bRA7ldLce/vT8Dehk1B4GCL07vfvzJV4P5nS7OjFpL
oNpp89qsN3I9Nxt4OYKpRF8u5/TZIrpnVc58MYdJP1wDJ8OUv3uL2SQiqa6f
zkA1jH1/V64VDGX8e5C3j+X2x4NffrLabA5++dWOqPT4sRiKkNEgczBx6bQB
LDtp233ROUyAJPvl8+/ps7E5OL1y7/6nT+O8P41Pzfq7hTm5L8/PJErQF+b1
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
9IIGGM6XF7QZqM2FC4soTId56VdGf2chctTOGxowOqgwGktcq36H02DNiEo0
bIViCr3F2KWbDDY9OZdb/cq60pvduZtkYzDD1ARBL7/HDs7XLkUpobvWp4LJ
5LdyvmC6LGEqhMCTarXe2ojIBUTQj/mB1n9jU5y0I9XXwYdiorvcvOfFj/eY
hPfk1PRrSZzSDQMzHh/feTR7Mpt8jrYQfU54wEYzE9QYHvCxz1K8yUWB5a0X
L+HhW1M0PNPo42P8MEy30MIfU+8uVMLGKc8NXh3C3sxBNkDOZUbadAwEsmAT
w2+3yOodFzns7opFPg0XeXJ67dLY/VI5/VqRHrtmbU7fw9rwp/urM+taH18c
8mMCvxsf4hect8fxwNxtBsE8cRYenDm3zonby2PlEfgdFmzgsQa0VLjZTklX
xNKxb0KKXq/nF9vo9dy8iY6CHQ0ry17dHHdIcZu0pVYZmrb0WpD4Ra1eH7B4
XZaC9g/XcrEAN7m3O4DoHrfr5n3Sj7o8LUMFGZ15YVMdamVRUZQTReHmlHgg
+GjziefChKjcdF2cdF24oU+92qbPYenx8OFd+O8WaGCzE8yV/U10b8RovXaj
SpnyARYiHaJZLRje5gI8gqYfp+y/h5zYzs92NhECXLi8vOIBkkYG6VIIxDhm
tGpM/EvaCrsSWYTMik7pSXcCZsT+ToeWdu8Tlt1jC2UddXqOuZ/TPSAGyLX7
irEB0ZXYABZnG9X5nY4etJjnPcQMH56z0x12iPc8EHgIYtsH3TGoMISLMUx6
yZF7jytC0GoHVY1u3Xt6eu/ByaOTx7dmeDgHt7AQpbHt5QnX4X6uy4B1MNKQ
sXqdEjKUe/hK5HlSnzx7fJonwgZ1zFY7tCeMK3v04iU/1w/oic0+BdVyBvHc
+vLnnx1WkoGWmyEGues0y6oTwsshhu+KTuG5G3bp8JyHO30K30OTn96/bTGK
L14+e/aXL19+9uWLlzgYghMGQ+ngHDCkR7S/7pmlG8tfDO6oAu9uNjCYLpFB
OWPzcrt6ybPpUBNXDGNC+xE//fS/npzcn3Vn7XFGJ9vVCbWE6OylJREe9qJ5
8SZyn7lt8yEF0irruqY/ehSAT34TClwxjHejALTBOvsx2HzbaDjvXCRdh8Cb
g3kj5/8W8+4N41eZN83Ez/sLeOgLkNuxOZKggYitMcUPZnoFz42I2r1V2xpj
xWy8l/sP7p0+DAV6rBvwHmU7Ls1jXXh0r7WHMjjwo0zP1FPucU2ZquHpJcxH
BeqQLPhu3hA4wkcLP/0ELZ+4owhsZH/+mYz4k97OC9r3dXB2ctTEY16AT1r4
ZWf4rdtb8LZvww5jB1DomwVvxkOK4Qx2F9AYA38cKpqy2X773KbkHGARHVRY
Y4sX4EM0jhoj22oez+qSguT7XwXPQ8uLeJHAO3Lbpeg40nEJPrLEJ4qiT+gg
lzVvDopD9m9or32LbneX/fZpb5TTHjD7+j2obgd3ciAusO2He1sQ67x4+eOF
xLyE7ffY7XzzF7hZfvrVUdwfTsR7473tRmj8+HjsC+qcvkqOmTtwCOBON263
2IZqXaeEFUQk6h4KINxkZvcIV5NRMIPMbr8b3uVAjl0A+ywuJ+18sQjPsoTQ
9qNuUP1VCEDPEOcxTpv2tPvYACYSsA/ZLj67iL57w0FmB8ndi1UZZeXAjkjT
WXR0enDfdMLh2sB7skcPm7Gt1OckIN1hVt4GQVKdOFIhAe2be8xPKWnEf3en
OPFThk/ZLRXo+sQhHt1xzkvGFVJxiB/dwZiF3ft1G4QeKvbdEk/quWNTPXiV
X90QPYrrzwOcBSmu7kRKG6wzrzBGq6Bolw4pDOFhY4YrZMPekyDAQxxAh3RE
bYIa7cksyJ3arVQ6HbcJnEwKGKz3R8kwRkDoFSw1RdvRJ7AABGRbRp0z6NT+
Tx8MvcTJxJ1bcNHXG+NPn7HqsQdb3LlkoHFn0YNh0ZgGcPnuVKA14rjRVZZZ
hQY7hMRjW/vDpaP3XQ/0J/YStuPO3A6xADzGffosOvo447jfMWOUXPDR+DOe
BNXBQ9ATz0Kb/fI4Q6IwaIHSDW9paB/2zoj0YlLPEv3AJhwrosQuKaDxT89I
hYHNmP9oXgTHuq56CLPidxDW0H9oL+t85wDA4tFIp8eDtvaOTxzIdvFX/Bb9
1W/nCXwZ2qYbdI3q/w4GlcBE8Mkt71j1fA7mpo7olGyjM6yD0IL39Fif2U05
iooHcfC/0Fk6/h1xYHzmMdrbnZ1YXGbXMx3q7o77Eh92nicyDPHcTbkCnh3n
CXBWDz7CHIEVZYJH3g8/UEtvyQ3wTo8XsI234gR8IeQD+PtaPkAivwcuyIu3
5ALs9wAP+NAAuYDPcNsXnNnoNMbBrTZy8NB3vPfkuJuQR+8NUonMYpjixfwQ
2cYz9MDAkOIZpANOareXNR1kgxw89O6DyI+vCezN3tlBNsu4q6lfrTagToc5
DhgXB11uCx2b512VB3w82oM/PQadXSls1E3mxUtq16fN3eeY2BthLKrXFToR
c04D+4IU5KJhAEKgbHfo2flwj2fAKL2zusRpMGAHal4zQt6OHHtj3zSgiTUa
fMjxnMtcdGeUu5W14JWAVA5iuXF7EGyXeMWl94K9SaXlwTFQEAZE4g2RL+/5
R476dNynGmiUgNtcxN85C5zbfkMzxbiAoCU9v3R4ltPNx7jpXKzmeLyrm1bH
XzCto7Ppa1Qm5/LixcstqA3yBF68xMD5DFlYHO2OA0b0p/uR9DdJUMyivlP5
OqRgiAQhhMjBUfQ6tuAWz7ddZIwCj/VM5LpBkPXzkFBMv82ea3OzPMs+mZ8M
FgIcSKySERHGhQD2NOnw5ILcHIxGLOTxPxDh4M7bYHBiE8X7Dl3gvS2u8n1f
77WIRSmoGYIv//RT+ATMlIua9HzhXbhoFmRMk+PMlj2PxjsyzG9YOWaOXiZv
rHCKynp1IMENens62r6ZE94Hof326CGLNvO5c8EfhRqcp8D6jCIqCwrxHDbf
y9EcNKKW/4gnsPwPhAKmsYLDPi0WSIIVXC1pa26MDlzuZr6NPsB82cZs3SEN
Gpwl0IA8aDju9csb3DgOvSpa+iJM3Vnjd9/l2QiMTKWfeCT8tquaRaJg4ySb
f3vbGKnTEnvj8IMY65RFb1hONkxDnrhkIUYHz6mWSq8JW30DTwxYhkQ9YPiU
i1Uc0z0EcYfCJ6Qkolo8rpsP2a6W5uSNvDwBvTSL/uJCn5E5bF3BAkkI6blV
6C44D7voH8ZFAHm/EoovWvPDYEweqYYpvd47dJqEFxWrkdEAINqi9ImFDyPN
Jl1msT8ILpRiE0/Y9w73QDcagZgWj2mZPfRIRufTJUDmm4llG+uZ9Zjihn56
+E7PVQ2/uDX28NUBX+9RouVe2HfVo0xreOpv8Fz0x0iAuRZpUsK/tBRpjv+r
QGGlZVnHVZUWWZXV6TWudY8+78HFLrI9F3scBmtd7F7/14dbPn9/w6V0KqC3
jO7DW8OHro7N/GNjS5dl+YHH3LItaOmyrLCVB5O0Sqq4KKq4ruqcC33GcZlW
BXhheZJngh4rqipO06KoRQafVyIpqwLfyPKszOO0qvJrVthrwfewukmyH0df
uby+8xtHUUMNd+0qj3bfwUDGEHu9UAoc12d4/IdRfofj6P6q28iDXn9OHi4d
/iN/crXZUlUG8m/wXCmyiA0mwGFYRsPG5ls3kieuyJpDhqAzbU8kLebbLXhj
aJCdzbEK2mp6bJ/PsnSlkoJ2aJ8gOl2QCmWU4BSxPuPFP9DX7cWfofvWoXD8
TpQ9DQIuiT9zGL7O7GiP9DCNqdyWNRUJDbmjMgsNbkAMXflzNAy8K/DDZK89
d2qAMI3szKCfyLTv57kpAw7Ssm5ReKhq4rkyDXo/m8vN1pxT/hHi3C1W1gnS
gWP1NMCzg8jeBdS2mlVYfuRACQ14yflah2xbL8AMpCMcUq8QBwU8xAZYmoR9
k6MjHN7fLo/tAdSgOJi0D3dW1p5OcRzmK5vccXWUBg8cGLGtNHDpHYbDZUi+
Ou5XALtuSJaWlrQEwN8cypYwDtABB4++CkNfRgQGxEAcX9Th+IJvLB27Zv52
GfHW2/O3z/Awm1gJlR2mkaIYiyThxMzhFFD0vpJAiFB6i/TPwdxPNMj+uNj/
yrzPDZI+IvrDgcTPMO3DiP9fLffzZq5thbzx9A93388B8Wd9extmgXgVeUfr
JlrAb++R5tgMEiv44R0MIF68hAgCLfjFIBt0zAPqVtlGG5gFGeSEWMl7fdMD
o7sdmU0/q0GRQoj8H9QVcuLdZ3gcda+4n4uo7AOuutmw9UB7jPczaCf6Kjoi
xYEx8qHOjq/JiYzEYe+W7OiCWqfVfFXGIQrRBme98kq0DM3KsKW2YSfhHxiT
3o/VDsbvlGHinA3YoWevVuvtSYAoGrKhjdVDzNGhEnE+Q9BHjgSBPfaNfiI7
g3td87CmE0pMMPh4DSLn83ZcQ9T6P4MKdEgxPP/WPdIdHOTlDlJ+R9DhcaDK
DjxwvsNjZyAmwyphqHqJ8j4L5bNPlpnuMYUH9e66DdvJgwFkaHQtyNWRaxMm
iWlD090pgomK8K/wRDgXNrXNU0ltLMA9Uo57hvcm4PG5qYdyklfV7NZU1TAo
+9tbTSz57Wg8YXZwytR3xx1YiHq4lzso0DfGRz3sW69nrHGOiCw2jtTMg3sf
nz47uf848TAkzreGlKLjCAHsNUAt8VJ1cinD09F04t5cUKUAA7ZmddklzJ5/
8mzijpiKrKAqyPhHldEfXaUNeT5fXM7CssUE5aa85xLdW6q/hDyyWIQJ2G5M
dkZ4Nw60fPQDDfIyyBX6Kh2u/Ictvru45LxwUKuRs38DdCFW7rdwODujIq0x
t34abblIVU87vCY5Y6DFIWlGi+XBorPJU5KXnvqUtqYKjKBbw/mA707Bg/8h
Op0lxSyJZ9htf2VtqsAeaB7AJHol2zdBL3ssElSeo3XZOGXz4N6z/7j/FF6y
7OKrsXZfjMW73ilma9vhpMDN5Ly1t0q3qIbfLZe8/iFkAWskBtPqbbzIzaAy
Pda3nZ9FNnZkcE50ROVTPZaJPSPQmg8fiM+fPfVlbbbrHZ5BQVJCjEtGDTd7
N85SPjuoWJ00TSani0WHBht7ZMh8V2+MkE3wCt3vxHAp1UOWZPyceVdEd3ni
wknCMXWYL0THTmDFLjjCxKqwyO0328LBgzXUQuRawITtHlreOtVsNKKjvwSR
dW9o0AhZB594RVzLEI9D9WNaLNJkq5dhUbALrhMYstIJKQMbRYUVLVAQF2cr
qsuPVbJpnYPq6/1ijr3TG+0VK9Dl9tGeU/2o8WLZvXIa7GD2qiqyTbC9YfWu
BW+idMb/EKNRyoiS6r1MQ1exfOtP+dhJDjwL3mZxlk2yYZv5VucQW5EDhoFm
WAfdnVCn1wdeqvcmjDwfuo5Wv3NBxNC/sI5o4DeDoBp3eIsfnduamahHWnB7
YWoutrXHHXrjtWMcTeD0hnWNAvYn/RjJYONcHgCM7yu7Ohun9cZ83t4skQuc
q8tekJ1XLws2Qp9uYQ44deESeTZykrq3R37NpjNNe4j3RYmd3MBftMVer1Uo
3a0c7NI5zSD3NcUFOQpcPRPjzr1idCidW3PGZRev0Y5XKMdoXznaHZlrafaO
VVhn9qWwGCs6mkEdne2rkSJOvAFwyyPKA28cr3zyKY7wXJuvuztuwPxq75/P
uI5fqFD8AOSJnoH3FmhMtw4cVHlBJzZuTUYOY3RJX2yWk2meSI96myFXN45n
ff3QOOMbxPu8zc7ua1euu4eQGNHZXKiCQ8JeSmu0DvUgVcZzuUna+LlPg/rs
sNPaXWUpTvJfwfxr8582yvCteFDGmqHUXgIxj+8LtHUf33jIVxYjvyqReCVU
7NfJE3YJP97ode4jX5GCWn+7GtG5bgjUmjuUPA3Y3+vgt9S9Iyn5DSaGrrtr
wnk/fgfcHnbmfBFzEX/0lbVmvXCxS0hv9nBF40vpy1SiMM0mY2Pus3x/qyew
mHaMf9u4KMF9cHSCtzyMuRGzwVmijQsRvQs2CDdtpOArXNrAlLZ6JKXcwdND
a+DvAvVQewiFo2SWwjzOV6/pWAhd6+DPIdl29oeEUeQeTbC2h2UxSwI7cTdd
V/GTkC70JUHC+VuqCuIXrRdNwVOTrsyhf+bqoPHj2eSI3CebYBni4X+xvz2+
UUKUODfrsyHCChMsNsM5WPcgmvXumjN+nChxEatP8ozmSrbXbUnctgoBT8CH
PuWd6CH5fbQVcHBSPZZ3we++Qd2fDU2mnIlZ4jRSt3tzs96CjVZr/W9Ek+jI
pZ+o9+OB08tp9l5U7+d1NA/v/0FWtftqAx/42Am2q7XOTMj25NaP0JD35qF7
/MCbA5fSdlU/eTjYlpqfjW0hH8oy9NIKJFWjeoXcbNPlg0ZdetxD9GVIufGx
PQ5HJts1UWqf/EGiiJXt/sUBfU17ZVb/YM7gvef2bYIGtQ35UZceejUSymC8
Mwhn9o6D9kb40we94UwmWKVh7MwO+0KKkY0oyGdYnHDrS9qsMCaW3/nh2qsH
n4w3wp3aaz+oKgrVpAiuaeCacWOr1DmOwbUNMz6NYzZbB5brdzyaynGFxmng
QXkeaxOAU/oFjmjf2J6sM7yBSDX/fJZ2vVuSa+jFqptnUItkve0miqPyRY9e
QQcLcpU+Xa3N6jUVF7m8ZiF61yu6GfS4qD+J4BrD3plEW5pk4uNmLtKyfRXm
eT3PHQ3KUgcFd4aFdnqH+0Za752QnPRHc3w9BHW0fJK/4SI8+NzDO/EFgf5O
63u9410gFiNnviZUVrR3z6hHlWJ9cqqJSmaHbs9G74lsPj+qV1Q868pBOY7s
tixctZWZA3J3OS9/jrp3UpmvsEaORH6weHMrqy6et1AW2lPo3euABzYvT6Zu
4RDcuaTzkdGK0TBRHw2z4XsJ+domOwJJnOhKqLNSo5AVbxLlrDAp56tWBqsZ
7hX/58wVDNB1PpmA7+AqYtpj4MNLVYYXWjDPeDJbezu4rMBNMsgi4Nlptqyu
8qY7GjrIClCZOa6bhqXDqDgbv4pllahItsMZEe4A69zjPcNcV8l6drTdfCat
0XjVvwrBXXoBRgX8Y6bo8KoER4/JPPS5USharhiO98X2qTmbUP1od9CXjzTj
I+Y1vjvv3ZrABT0tO/mKv1SN6BSLu9GB0OnwhL8/9gxRI9YDCs4O8x2wPKCu
zCzfIvNqtUShx/tisPU3r8BmzM83bBO3hrbVXbEmeuju1KbLiCr3qC6GkQ0h
e5arg8Qi1kAfYeoqFOMs+vEbnkO2d4Oc+otru6qmHN/bG0Jxwd3tytAOYxKo
TJT1Bdzo+QkeFpVORe50qCUqfja2xgxaw/WkxSQZHqzoxN656doa1L796QP4
4KT7gLH0fqcAFPlrRhPIxeVmvgkO8nvN0B0MHwB88A7NxYI/43jYi+jSqaW1
u5DY3ywSVi/3BdMpZecjss5q9WuVu8e9+ZmO3IcwLJsQ7uKTrrYAAKxFaM+L
d/Q4l9/5uzfcVhLJ6t6Nf8Mrldil/tSsv1uYk/vyHEXb3rLs6pAN7iGMwpsf
FyurBvBw84az5/fuf/o0zinUCoMD2b8LB2hHtxza5JRcUgDAKXFMDlhzzgpq
7Oiz6ya4wKEDE8xwnw4D/TM8R7IGEbuMPuYMShh6EGDO3VJsbx8IDxsNxgw8
OaNb46E9Kh3dpeHoTopPwFvDw0sw/o9JzkM9wsWDZXPdldhY2oFL37qB03T3
Kp///E9ZbBrl/mNzyRXW3OU4yCjn6E/27ifh6QEB5xt3HZBs7NEOa56+G7Rk
q7/LdmvC+2gGV/x4UAhG5WhKwm4nrDopvWHTv4fNIYFguuEMvu7V0nSLKSO1
my+2J3NUkHK7I5vPsx+l2SY6otvEbA7qeGxaHaKArF/gySKY2Uw8E+zRy0Zk
vStgnR5RJ8G6ndrhu/TZwSWYusujlv+5utxwAANM8gb1indR6XwMm65797mk
/uYZ/hJUKux8Vb6LWRKe2XQ38BzsE0KWFl3MvW5JJQZ924vvbzKEADDIfvTd
jz/5Cr9CNn3jL/h2mg60EEQ7P5Ke8XtMXEPQHmu7eqTXktlzsd2EJkfeL7x7
jcoTwUMTTlEccGsn+1elk0NLzL8JSEX+qCOPBZDIxZlRaznXocu0avD+t4eu
aiCwzgZX6U0IBeCCL5PDsjxvD9Nn3u3NYFlNdOJ9LIq66Ar2ZLUSEsOboN51
nlZ6TwZCTeDEo09P7x1PnJZ8DH9Z/SiSmC/7ntzrPsyyOvX1zFgIz6V+8dKr
YHdtDl1GMPl8GVhxrhdtkapUEp74xwaVo2VBkW9cqXh/J9N8443D/l4V76n4
FH83OknIMP+nRzQr3nD7VOpbXNsVRu4R5Fwjn+5yY8dwY0/FBZREzpBn0XOI
Qp6ryN0dEiCAV67o/fBiKw8zeiXtnUnoDM5Xu83ikhOXk4gG4Cvj+2nh2ZXe
RXAjK/tcUsJfUu2pe0du6lSwVnYXTluP+HDjMIjR5hU1r8aaV0zBT/yJGaxq
3bnX5G3bb85pl7/fPtLTQ3AwMQFy0x2hsQV+Q4dsvv2Qwnp+1trmZ25r0G9d
2LSig1viutgg8uGLlxc24Lpg34qhkQRidLCANxZ+8mY1kH+/CWm7sVdvdhuQ
DmPQ+fZ7Z/8pyG9WEUuEd4dBK2AazOJE+YANag13mqOftWJlZ4+NUczcO08z
6aWxsOprcPZm85anbXAPzrSk01ZtD+PgybFaBmaAfLBzcsdJLDgWUeaMUERh
Rqdbe3emeLwIko0mfOT0ypoRbzuIiVsbV+D5r+twvBAvd8XIBos8sueMx7SI
WzaHKj/aO0n2Tuw7cOn+IX2G4R5OXjna3LxU1IHSqFQucTXMd3GalCo9dwty
2x2oYUQDqitm0KOL6A+RPrahdYBe1uimn2Nsqld4pcxqDaRFbb91rYDADg7/
M5Rb0Yq75j/E9j90HXwY9vAh5QBs436A9gP82ooIt+2imwf//uXpJxS3rMMD
ev7iLpec8u34Tyxw/CSi63v4sAkP8/vw6ic+2e/7O6BAxsNNS+5pdOoyrA/8
zG52RTVu5riufTqlA5r7idjrUTa+7AJ3ctN6Cbj1i70Q7h4Xea+qQQ9vz2ob
n/vw4IO8TEAo2meY7LP3ym6xS4tsQKqFYkLKGyNTn0rqlyUL4+2hMEztt/vF
zJ0wvFotGncJKEbvfAh+MnlmNwGt4r/kPYBL1YXiCteOg+r/4JPzXLWucdF+
7yGs7qFdwefgqttJcNVteJ+uTbps5uc7LgNor2VmLzqUcc7hLjGg7mrygXff
jw2eBLl2t5PHV3pymWlrF6ZjETsFDOH9vniHaHjFBA5j/KYkgvLLjb3y18KG
x7zHuT1BNtZ8/14lA1rznFKn7iKj4AJff2/d5eCybVbX+zl4BksD4REv0J4Q
j6y3HieNS7qmOAm71rYc+MkWtVV39/AQ+d9LKo1l/incZkMZnC65oGQsIv0Z
aMu8G0T+o6uDKVl7bbtcTKADW0x85a5YmNsrLu2+doeNGb+PJbiNhZ0BtrBg
7Glo9jxGb4fCp3KtN4zZnWCnOywsGVQIdaEq7SYwijosVIld9+pu+s3DhrdE
XL0nnhsMhaCQXROuLI8v+mKzkNTTVm6+c3jmsYPKoEDeEJ40OAA9i55t5wSt
xw0rmxlBhW/cEe7NrgXFNDd2u2C9Y3eJIE5vaEPSujS9JPO/74CndufuRgx0
Z72s4naHcXWQg8TAK4g1ncwHiYLg+gJYq2eoPYBhDYQeA4zNMjrCXAKHC6Mv
7z9/D56fhMmHeYgafhQdDdNxVv0c+4Iu4S0P9nbscHVQGdOm7YIjeVpmOht6
goqYygr1KRUdffLs3+8d94vizya0TtPIWMvQCSM+HRkC9XRhNkb+Pn2HQ7QP
Y5UpkBhzslidSUILhSTyl7bSRQUahASjO1tKlDDQXlEF+17WvqCasxf/ksrp
ysBipLB4TXbwygVBzoAxn2MCotsbOtshT/z004NnrPe76j5LvDixy4K+saCK
ze7sjLfCQWU+2wLFwGFYnUtvv+89/OIRiM2cOBmM03baGZJbdj1OgD9WuGt4
iyETp5+dDvaEMTnFn0t/DXWQHfkgOtVY1HZhmjMukYPuslx+t3EHmc8xgFl7
dqdRWWxbUFKneT1HA0OXZfAXwef2UuS14c1GdI5OTiIFcjjx/z4Y4GtD/C1H
n8G5jL3iwm1XCBjULp0FCU4dEiQmLP3cFTzj+8WgL/c9VYbG3dDj2wQmuuUq
94xcJsyR5y16zkahdyL/fvDxS4dTuhOpW/w8b6s9X+/MbX+B29wHs3/GC4a7
L0Za+uMdrlBy9A1/8e2xfxoiT3PDd49sf/8nin8o2+Poj/DfKg7a8tMCG+Ae
/pd/icrjkUHfuRPF/X4ViPh3f6KPLDZsOBK+bo7ueNtfpXCJeaGi3jIBLY9v
R3ZYt6PE3gdK/cXx3sOJSLPeC3nvhSxNUpGmaTZ8kUgFLs+ZOUpEeXzc61NU
YSNlG8dxEos4jbM4j4u4jKu4jmWsYh03sYnbJE6SRCRpkiV5UiRlUiV1IhO+
CzDRSZOYpBWxSIQQqchELgpRikrUQgoltGiEEW0au7GmeVqkZVrR62mdylSl
Om1Sk7ZZnCWZyNIsy/KswKo6WZ3JTGU6azKTtXmcJ7nI0zzLc3o9L/Iyr/I6
l7nKdd7kJm+LuEgKUaRFVuRFUZRFVdSFLFShi6YwRVvGZVJyBZ8yLbMyL4uy
LKuyLmWpSl02pbmSnNWAnGkckrNCYr4TQZmc6l0JyuSs3pWgTM78XQnK5BSH
CFq2fYEZ3JU30G14UWNrH6OnaAf5D2DbN8dOWi0EsdNOEXtoa0oj4aOhXNun
/3int67w1LFvjmSdnwvG2t0xZ+vl7e1rB1LeG64V3qm6leMP/H9RVvUtmkHA
PeMCHSdpDmyUsaiktbtT8oPowdg1d045uS26CWeQupROb+/O35QXbPgPWwpT
lBuLoAVjetlrYGKzpe4aNweK7SBqHYYAYgGbZ+UtRnuWgLxqlwvvIrnufDtS
NSKYQu/IUIeeo2OWYZZ4FG03I5zT3NURCaCQveu5aA9k//JAex8mDAoT25hb
tqv+ZPn6JXyUsBc3TsRAWfRWu6V/XSPiXRuJ066R9IaNZH3LM2wme/dm2tZf
gNo/l7p3siWsUeOdGv+UO/4yOPyyeTlf2nMvLOF4nwoyBiWXwts0bcLwCpDk
zDZw2jT9Gy5ssMLBKF88QREp78QHV2XMnMvkbvg4lz8cxcEg8fxQ/yaP7oaP
wTW49t/+w3Tnx3HokwyVTf9Kku5GEnshyXhH/M/dVeKVXrBqm6HbyqlN0wxk
cXgKmZUT7lKs6CgxJQPc3t2EN2BGWzr0jrsIBGITzF9hKGRzU7e9KJLR6L+/
uHzJ1YLYhCdT+o/wRuTWF/Z87nN7Ppcfi/6FfxE2BjowqJkzPOew2Oj83cHf
SDZsf8cE8DyyvR4HduocWYw9Cvv2cWiv/FC+Of/WjwZ+vz1YScsOOPw/BV+Z
Ra+BP1/bAB0E+VPfFgbTgCEE8+hs0XDFD3CHr5Q6PKbIEcmBFR/lj3l48KS3
7dvzHVb3Tp8fWPP52zJJQBLLHn+09Jw4aveDl/Bh4R5OOqo9D8PAAyTjqbjc
FIT2cj3f2FP3OLnbVu8cmMitF/GtaYT/gV+OMcyhFb7upWTwEvLVtR35rt7h
neQtBhe74b3FS6d3792nl/C/wVvwGrOIfcI+EBi2MjRs1oW2rnT3sn0X23jQ
e7s6/HaWh5o2KJr3wIXp3bGL3nkWWwW+p+64uNQnVH7yAR0dOlJTOu3asa9l
R3DKjr5R38xBHfw5qv4wZ/+xU0NH+NYfy+OPquNv6UbLoIOwhP1u2P7uJWZ6
QPl9A88cqWPeasKGd9+6Zz6InpwtMTuKCbvdkjYVuLZmoPBwK+p/R/0cAjf+
zUnybfR/7kRHyZ//TOP83xCEnSSDGY4Qg1+3I/aTYm/m6knBfHYwmotBHx9+
OPvP1Xx59I1+tT462mFiAWh5TNmItj1g0aOrac3sgPzwwNW3j8Tha6rQsQ8f
xP03D26StAm/+X6HbjrvT7ptwb9ad9/fYdHBUyY9TWr5i0gFmrp5+SMW3hdH
DwOV+AGWxqOqBq4vGIsflQieO12fEQjrdvRw6m9N4BPn0wihgNPoIV5s8vAI
qyfn6C/VHR01nYl+OAOv8Kj7dCwT5cj8V3CI+HTI0cMjeB1s8MOjE/zleGj8
cHh/9TvOPdLB6w9ne4/P8QTlS37kiDsaaZTGvULgltWE4T/LR/xy71ucKgSo
1lA8f+WLbLtt3m50f2U8J1+w1a9qxnccuBOrbHEnroL9vDunD43+Fcsec4me
Pmrgr3dOEl7QhhAWg1iSkD9U7UYOWGxtUcIuXOh/S+w3mW98iZDd4FSj3AM0
2HuW6Vd/y3V0OmDS4HKK9TT6nk5GUNcErXnZl2zURXT12O3h4Kf9Df1p8IZf
o+FIiF5B0Umq5rTd+Fcffs+8/f3xn+Bh4OTvj07h17v8a3L8p0nQy5nZhqv8
494xW7cbJngcVCK/49IfudGeyH4fRBm0rQSu9ycGpKlZm2eX52qFta/bBSzD
0dH3J8nxR+K4G9Fr+A6vRP4IFC/4MT9Gf4jWfxNB1vZiM1+s0O89ev23FJ44
hSde/w19nrv42/Hfxrv0DfyAVXBtI/A8dHaEwZL96Bg+O/2o0yVWdPa19xMG
cBz9cLy/7l679twu0rbhJ8GdIezz8z5VcIUZRYH2oIANePqeHO0wjJUVeONr
Gtn2uuQB8iHN7zH831+d6mLvQZFXn7jlJcfNyzuR+vCp3c/5MPpT9Nenp/d9
kJ7ENXzEFUXUh+5mrw/p5Xv84Yvlqb8F/cXyrr/vPHgolllS1IUp6jKD/ybw
sy0FfCpKUeRlWsZFC99m8DsvFW5X3YlKk6msrJOmkJVp46RWdVrosm5V2Qqd
Y7rycz5USi/tRf17RS8ez/Yi/y6LVvQcriiKqyzNMW2ZFnlKBfjjCv+G4aZl
iROAATfx3j/3+jv++6d4PSnGl9S9PrqySXyDBbXVdIcXXYapK9FfpySOszKp
K1PpTEvdxlJVEhZG6jQt4VeT1cBrdRNnoi3bVOZxneVVkdrX68xUImm1tQRj
RgfMCnoVqAt+7XGUus/K0VUzzwzeFVCmKXCljk2VVUWRJLKOs9bkplFxVldx
1ogiSWFFsiRNZCFE7RyKPNe5TkUQVe5pM8xYjmia0/uSRB/+y1J+KWGU5DTb
IoTHVw07B+rUaZIU0uRN2khT17ksdSHKphU1RDgiAf6o8rKppYjjKi5h6MYR
qqrSWsVaDKT/a3lFl8CbbZMmQG2VVPCyrqs0bnWVCV3EjZFVnAj4tBXwVJkD
2YTIDYzTUUrEoAMKDhaQJmFXZb8rePSdOnNdSddZnEK4lxXXLI8aXR5ll0fZ
5VFvsTwyyXJTJ5lKszKORSPqCpR+nCdpnbWxaYpKt2kh0gaYDHisErqs2lbm
7vWiKKVu9HB51BVdmkSVyKJ1Xui4rfK0qQudN4nItVHGGAkqJhc6Bh5pi6KR
Ra6aum2d7wvylMAjwi2PunJ53q0zl3drXGd2ecQVy2MBUBaf+HHncDLKj5CQ
DISU06/VVWsiQKhzpfM2Bo1pTCmkzlQBrIQ3w4BSyRLZAIfVok5z1RZtVTS1
Seravq5MK4tYZOOdq+nX8rfovNsR26MUnht0fg+fyLQOxUfeneiot1v6hJfk
U+AIz9br+cU2CrMv2a8smDdjJa9C9tl3j5XwQfa1yHV5CWSZBm4X/v1hbxd+
oFgH/krewsjSjDfZx9L96BN9fPz3v6NKo5+qtyk9EJ1YH+rgasvu6A8GXsRv
z0z2deYpx0w3X0yvI/qa/aaL6Xq/VheNLibyNQfOAWGLAWPWtaxN3LYp2EVV
Z7KpZJvoplApEgc8Bl2Cm5nnpdZgEMsmqZtUuR7gdZO3SQveKtjUFCiIG+1Z
WunSaNDMaZqozDQyKU0iwfhL8FEqAV9p/7rMK2gYVHZTmVpeoc+GUuqPWnlk
aiek7yii71k534xNPH/vOwB7xvgfJaKULUY5ndKxqGHw8vuW1Zuuqn39OtE6
tKr29evdutFVvZGspiCXsi7KuJVp24okaSpRqyrLlZRxCz9r2eRVrFMlY6BY
HasmNiBb3uUuRB1L8JfwZuQsAZq34PhnWlWmbE3dZnkG880bnaSmqGqTQXcq
dn6oFtCjLqEBqeO453v06+6cfvbsyck9a0bx0K1DkhGiPNqBQ1K93EZb/RKi
42++BW7+aRLFP+TxNP6hSOBHmfofJX7W4m8Cf8umk5//tN/OvSddM7GEBzNs
pqjxh3G/lZn/LPF/+qbhNXw7E76v3A8idk9yY5n/VowPB8SmG0+J72QKf+Bk
auy7KeCHrOCHwWZj/KzGR2rsr9DYdk3jafHTEh8S+Glejvd41vWX0RhxyHXl
ZpB60mr8zeAXGf4ocCAJfiG5vxgn12ITOf5osHv6jBqj3xrhGqNmZcb0xrdT
agnbFPhQTe0gpTT9wKGIZHwGlzKYAj4tcb4tLhe1mhDJqMEGP2vcnzU+kuOi
l5oGUdAS4vctDQJ/ZLZrR/WKaQmTwbclMUBMb1c4pzJx3Rp8scLHU3xS4bf6
wLJDQBrMAd/OMibV6ONfB08zH+KPBjtMaG3wN4XNVLQKSA+Ng6jwixgf1lXH
tBoJFOO0DRKD5pEI/yKxkO+gRApnvOQVPiTwA5M5Uub0IraYp1dM4VJ1U5A0
YWoGB5lgWyp1bB/jcASOTtAUcEyGOslpEAk+WRPzEYfik0XlBp4SS+EjDf5p
cs+aTACSjRIfb/F7mTs2LErHSY0+tGhqdNEOrPHXwdMGn1ZlTxBq7JoEmBao
yh2v1oUTg4ZlhSiukYMV/jDGNUEqihaAhLXExlj7YBMN6ynSP4oaxq/axi0v
sa68agofdzMQuNY19pIrNzyivyK5o3Hh/Og5TStaMIMR45RuVZhd8B2ioCTh
w3FXtVvxlAbc8lzo7cKJH9GRxJgo0WJnpMDEAXUPxvLlky+6adC7kpqKHQ+k
XofQXDJstEEOkfhtQixR0ECISbsZ0jQaYqjGMS7pMFoITSSX/C0xbu1kSlmi
O71H/bTMpDAA/I3Ue2qJRcuYuHdIQ5FYkMHQnqNTUghkPwyvP/xZTj0DkvIi
EtOq0/qTSBvt2qHxkFBQBw33TVOhH5XhSR0k9rOvO2KnlnSW4iRhxOsydbQn
RZs0biBk2aqMOiU+k9K9w3/WjmdyMjLYQUpfxE4wrDWM8dOGPq3d4GltmOwk
hV4LkGxlgXUiSSEWJEVD2k4rN3/SvtRsS2qQdBGJFWsoYglSU6ZwnE1NMC1I
GxETCU8BWkM2KzQsYkdiKCubfZhubyPm0Qt7R/j+0dXbePw0Co+fTiZ77/NW
+RWtHFEF7unuB3v7VFCy1p7HnfgUNDS32i2akWd8mprxD3xn+Krt57AnwyuV
JQNfLd4Vi6LgDad4uPQId2r3MBuDit0WSOLK6Wz4dXQ9/RCofl1/d7R/Q7S/
IczuStqNMg/oPLZbtLv49jvvZ/h9jV0CjSS/tBFxOzK6/QX/IMLapdBIbFQp
SwgTsgS3BpIiL0zaQtxftzorZCPjumqMqnUqVNI2VVFgBrbAIE5VOJLsdpS3
ta4hPpO4M6UFhHZNrJI8r3WVGohFYgQKaZ3lVaIrUxUQqojMNE0T122S5OVk
l8NIml86neJ21Mhf0kgLjZQwEvNLR1LBSNQvHUkNjdS/tBF5O9LNL1niCpZY
3Y4y/UuWuCknIDzRbDaLdmq0mu+Fr47bQd8d0ON7fvN7dXsyOW24AC4i46bR
Lp7ukulOTHfpdJdNdzltbu9K7mK7np+d2VOjtn6u3JgJna0MK6YO0PB4zbZs
M6BRodo4F6XGNFdSJHmmKpEVOUyrEBCu61jqpNW5THA7VsKEMyWzrAYenHz/
GSZm+gq3y3RvYOhfHU++fx/65PvkfTQi3kcj6ftoJHsfjeTvoxHUJ5URuiwL
paRu8iRGdm5qUVaqNI1uRI7Lb2rZtEqmqjBxFpsKuKVMlMBb1yffl+9jJKBP
dJXrIs+NMpUyyGi1jtu2MUXditYkcVKDAFZNkpZtXCtQPiXmtHK81V03Kq0m
36M+UUUGKlKCXLcNPFvUSWaKJCuSOs1bUwsp01JoFedFCt8kIk2UzoxORJaU
WQ7TkWgyCgFzz9OyaPJK1KUyokgqXWZ11eaUf8JTUnGaVJmpJOgXEYPiEBX8
U20pJyDIUV2nGlRPkuhMi7qRtcyLtoTxtA1Mq2rKVJishumJPFaFFgZsTZy2
IJailkmZ+1MZN8G9YM2YEPXCt8G/O+4l64CrY6gXbv4Q7iUt3g73kpRD3At0
/xvhXnIhUhPrBvR6g2fpiqJqikznuYjjLKFtvPeIeymLK3AvGfyv2se9lPmI
vNjX31Xc/hlfdzgYBzO40Uon8XCB3ev763w9HCYfLB9IM6iKptAZuAS6hR8l
qJemrUxRlUlRtghJASlPKpGYKi9EWchYCAeEbqpKYHq/BkcjS0WcqTzD6eg6
KdHr0ElcqjIuWwF8DTpNJqCKRZ1eDZ9BVTCAz/yexj0OtxmOsGgbcONw/ww8
O5CIpqnRoyvLuqzgt7ZRVaNqo2P4IAO7Ueuskknttpdg7BlwBvp9OIq4UiBp
Mm9MmkpVwBTTuCjiRoAWx02PwpjK6Corfm14znCaIlFZm6mmBnY1TZrnOjUw
PvC0YN4G7Bh4mW1SqkaDgqjBO02TGqbkFiJPwSmNK3RlVRNXqWq1NkWRiESm
MWHm6jqDeaWx1mklgGY6z1JTXQXnGQ4xraFt8G9lC4JUJokBGdJSFzGwBrjY
KXjItPWD9NdGl1UJ9ksoL6a6SGAiaZ624Dq0aRqLqsEtLVhKkEFZpzABsNig
7TSwSYIbpAYYagz+UySDoVXvNjgHlqjfbXDu9fy3Qg0Nl6TKgJ9L5NwsydsY
PHkjk6xpa3B4mhScDQmC3VS40Qj2BOQFHBwF0uF2tmAiOgN9mdZatjl4R8D7
lQaO0WUDflJSg86sQSkaKcu0VULmBhyc5iqU0XCIeQq91K3K6hg8uFyCjmhk
pZNKpSB0casTIG6dNAkoItxf06BMIMR2m5pxJoQA3yqv06ZQcQ1D0XXW5lIW
GQhKVaVtWqsma+MMmAVERiISJq/GUEn7XPNug3PUK95tcI4w1a8KZhqug4mB
PQR4k3khM9ACSuPGrNaihOXPM9CToDsKCd6HlMBBYEqbHMyAUzDg6bcZhL+1
goivTHRtVJwaA8a2qCqJJQlAadVtCWQCZZy22FJd1+XNwE+/l8H+xmCpRIjf
px57O8lwGMRAet9GMhxII5DeG2GzwL15C+AH+dS/DJsl4voKvEevg31vM3Qz
3egShAy9Pa8754tY/u153dljYvm35zhneqx1f1uOc8xirfvbcpx9fd9e3Izj
HOn27MXbA8iyGKZalyWsFVhKcFCBhAWYSCEymcHMUgXOVpxLFQstwKdOtdal
8Gh9mcI/bVKZ5cAWSRmniSrSzFR1W+RFlbS5aMAJBDvelkoaVVW5SBvhpaVK
FNCskjC1AtbotwSQjait34chfTtmdr0HrurbMLPjxMBVvRFe7ddUW1fj1f7v
1F9vy3re9317S4Ws53of6I2bsp7HXA6jpJuxniPdXpT09qC6WuSmzpskhh+y
SSDCTMuqyU1bqVrWdaUaoG0OgWTZQPygYC5xrmLp9D8MKM0KqbSCAQBxlDZK
QOxQQbzeAhsUMfyWNLoB4kgFuqtNVdn6rAtmmiE2SRRoQF216n9AdTcC1RHg
hKAnhPhgKANt2ze+HcIF0FZ94zrQvJWfC7cPT1M6BDM5G+CzCHpBmAuCNBFI
yyjXFaGlGg/1IeBYyziNkihV+a+oMeVGRvgUAmvEBBDEHwTOyxnPVmv3AUGs
CM8mPLaBWiSsBaEl6O3WoiEIZmNhUhYCQ/ShsaX4J8F5CDJCaDOaA0FvGsEj
b6Z2+ASpIKgDATIIMqGp2eJ6QB/BIQgfQ9gKxi35ZSewF+F1coJ+GD8wBugQ
wqXySClahpaoTVgP4jsChtDbBFrDEdd5B+8hlA4he2iyBGojMGOGkyWsXE5U
8ACTKuW3CUlCaLXCMTnjCFO3YKJgKlgcUka4J0a7EC6M3k5xqMKvOSGtCPJj
qvcOJiSkIs/EA3EI9USgzJR4l7CNXkw0AVeY2jE+lCChU4/qSWhxCJxDBIh7
HElAG112mLDC4y6JtwkOR5SjlaYWaQUIZ8qI07Sjl6imFmRKPCFKx4IszARZ
S/3SZVOPiWO9RjAd7Ra0Qz0RVkfl1wMZqUkWG981cT+tAsG6SB0SKxPWkrCO
DcPa6sbRnUBhhAaqPbiMQVEdyJdIij8qiwcjWSdWl45tiVeSDp8mHeuQYqCF
zU2HJiNNQohV7VlUE9S1cC0mHmEoLGaPhJRQYgRto8VBChAsjpDAjJFt3juI
khiBp1i7XjOSVlI4hKSTjk1IcRCUSieddks94JdBsRbObAWBSJ54cKDDYBEC
DrulBSOcMSNoMycoxIe0FqROCMVJUmWxe0wvwtcRC+eOfKTUGKxXueVuacFI
Jlk1EMwy89hwsiMFsRVhfy0a7joAJ02JuZHEFteZAXHSSQipH0XDrNzUNFsW
Ei1CDZKkkZlmDDDpQsK1eQwwTS0jYrGok8prcjdkMowErCaMLqkHUuU0a2LT
llSPtWrE5LF7yAg3EUL9kpQ3HqVHokSrYPtmpJ03nKSpaMpk+kkP1weg8kPw
KBGJFQ/Zh9ITiaxtZ+5JpqVjAsE6h54ky5pZ/WKxi6z6Y8e+NFOCKZNIpQwe
TT1Es/QuEqlHAn3St2SraY1ysjN66uGfsUeGkvEmZiJYIhlHerxKHGcS9prt
qwWuNm5FSNUQA5LaIMVA3M5eRuV6IRuWM+JaevYurIG4EXiUjALpk9pCoa1Z
Jr+EMKCJN+9kqchcWv1GfKY82Jf4mVQCj8wjjFndeS2r2BEgIxfnbjFk6doh
YmcexcmQUKI96XqWV5IgIpLwurXyXmHrJY28J/6CGIa5vfHYYOqCSdw6XiHo
KRliBrKTys6Y56hvssbE8uTxqJuAR7HwzS+Fjo62cXPgqL3ayF164NL3fMXG
mgsCaQk/serZpSu6M43ownAq6hqU17G15Lky2sTfoMK7vXSjDl485++V56kQ
DISu8AlvXQneiY78AHwhXIR8HkjJv+sOvw233/lVBJAeGtI740p/4ZDEwSG1
7wqm5KzeO+IeSR5GGYB5BuF+5nu8AthW2e+xQY8XO1ZID0/yXf/9oknCkLL3
zp1t+0uGRHfK2BJf9sYhpr9Df2ZvB80cu2RwWL6Y1vqBq8HsQKN+wTFvMjus
wXx1SvoiOgwMkW0lk0wklWqFFDFmqIpGGMLSmcxUqqiSMs1qVZhGtEYlJm+K
rCmlrUYu0jbJW22MLuNWJUliqjJuNGL26sQUBW5Sp6Zusko0cZalQssG07mP
woGHENJdfHi78F1X/5cqgsODTf6ZBiv+mQab/jMNNvu9DZY9pz2/Jxg6AznB
GlBR7ZUFefze1Qbp3dBn2r3kOnthgcXDo1axLqqmLIXRwqi6MSLXWV3GscmK
pkhFDl03hZRp3ZSqyI2qMllU2t5kUcB4StWUicqSNjVxI5K4zTKTwMsGz+kX
KikzqVXa1hleJlHBsNWVjMOjP8w9qYoR14zQnaJtdFlpRPG1bSnzTCdZitc/
iDYtcrzCIk9VG8OvbQ5Lw9yT1bA0eVsnsUxi3Ec0jU6kblLViCxumzxvtCpl
WsQ5vF3JshAlld4dITTf/BdeA3hw2LquEk1XZJSiqXWa4w0Tui2UyURR5qWG
ta4Eni5odSvzIpOVKRFtzUyf6tgUSVtLWKREI6WbumwKUyuYRNziUYU4TetS
VmmbyzrJkOTt1YSmAR8mNIIflSpNrXMtsFRWWadNlWaiFakq87o1ZVMbLAAi
q1zLrG2KJC2LNOV9mBxR6zUOpYLlKnMNvN9KnaXA9coAj8nCJKLQuhZatapN
87TuQGQ3gXuvYfgQh2xXePbrvRU7DFv9zUoextGfgn1Tu1n6RTCS/xb1D5Ok
25LNBQwd72XB4WY4/IMVEd3G4C+yKr/313/1+ofX7pnKHPfvofFUJtIUTdIa
U4EuLkoEQMcx3tADnJ8aMA4g3VkhQKhT6Xa8QcmCnpZxVYIaU21W5RkdPBOy
rIUBm5jnUsdZm4syB52Om9NZlcbu9SqBTjJTV4VJQUHzVrSr2Huz4oWgyMpE
JGWVl3GN1WaypqqlTkD7K9OWVQ06tCzqWijQ/mAv4DsllPZVAHWZNKBYrwLK
/SrVC0Eq0qbBkzs1DK7JELReZnGT1qCQcZiwJGnVtirL00SbpMwbPKLmECZV
nkosCzN5i+qFsmp1JnTW5KVKNbgtRVHw/U9CxnhoqIlrMKJNKVQhEpFKAx1m
npnxXGCp7OVQ11YvfLfOvNy4zv5R1QvBMOfgI6WiqWKZyyRJwbuotQABAweq
lFJkjRRpLEqdtuBOgJOVaDCN9vUSDGrD0IwbVy9s8ehlJk0mVSnyOgYWiHNw
Gkxbl+AmqqJOwX+TeV7V4AYYU+imEYWv35XidViNrQN6bfXCd+vMQUWE6+w3
rV6Ymta0CarCTJhWpnkWi1iB7lFp2WKJJ3DGQHnKBB6oM1CSMs5AEbl6TomE
VVNFO975ddUL31fn//Dqhe9ZMG/GSk6FjLDvHivhg4egZqH3xJizASAsOYQ7
O+R6/MLihtkA553kN+8yNOReRY/ZcxFfx31OhRxgQsd9h1bfu2rXmYLx1Xc2
6R2UF66+0ypDJrgR6CuGYAXiaSFUA1RtIDTPlCxliye+46RNFOhroEcDHqWC
2NwkMkdXw8mlqvHcd61kUei4hkAG7w1rILYHw2vqGn6AzwOaP5HgiTUGb8XT
CYTpHeirhhCpgWZLg0U+/6FVD9+zUr+ZrnB+2A245fcq2tcURfxnk/FxNrCv
30wk99nAUf0d/EfTIZv3uOFGMq7BdU/TXJmiEjIDh6xudZHWZYk5M5nEmCdq
Wt3IuBV1WbVKtxCQpL6us8yMSDEHBmSoZSxMo1vVtvBf8PJUmYu2MjJp8WLS
piywcipi0LsykkkOSwaUgfghL8r/AXb+Lqsl1vY5WyuPADRUtI2mUed+wpnD
OzCYizfmGZWl3MgY4kkAMKrc5jGBBPyTqSNmxuDK2r9N3+uuAlji4APZgap1
IbiS0GeEYWg81CntYDA4ekbS0MI0bjFjC0GpHSHpIS4kRqtHEBRfTYvQmwQE
InCdYQIQaIGweoJAT7UjH6EVCDoXq/cOcOQaX3rqKh/S2tBSEUxFO1YkTAeX
uIw7NAUtNKFwuLYbQU0IPVa7Jae6X7TuhEMlwKdIO+ALTzZzTRgP2aIBJAcq
qYUgw9g4seCqflSDjsCBhE0hLBmBNwn51LrV1BaW27rHaZVKnAwB9AifRb8x
oql0fEVF9SyelhA0xF5UXLHx4s71IR1A7j0D/bgeIGGU8BWiIwGnqIIiVUOk
Am61x9NwJUoeM8kXgZsZbEmop9rNk0Bi0oNUSTkQvMaYDlZJ0kFgXQLipL4+
ZGEJeR3YjoBqhFllzLFXdAyc82hZKh1HMNo4qFHJvEnwbOWoToAmkqfWl1mk
QqeELSVYYckzyDwGkh4iBiDtQ7A80h9YV/EmgDdivdTDLrn8p0UmOlwWQRsJ
G0qai6BSjG+l4REemPQwUUKRjikczxI9SfbobYbkm05hkhYhNiO0FrEjS5Ry
i8fFO4kTie0DOHXr613SUmReOVHtvtoXSpTeYtV11zdJBEkOqcPMKzQSNAbo
WYNieymaoNYivm1sqdQbAd4IdEasRhSneodcP1C4MbLEU396aiW6Ljv4PePU
iTX8/EniCWepPfSfUf9kwNoOskYsxvVsG8c9RB8+PUF4PKJz7kYh4w7eSqtE
/MqFHY1jDq4/SnBT4XphLDT3nfkaig2JGAmorzXJwEFf3ZTYib5oi66Eb+EL
yhblGOAN0SPBvu2LYOOWb2ebc1ovyB1dkakpNd5sX+atLGssaIQVwUWZ17LQ
ddwo1eokNhAQxtLIqsHcdhaXTVU5Z7PN00rGvBX61VUpQpFoGRd1hoWS6ljX
BvxxdB0LpWJwFzX47OA5x+A6lklRteDu54mJXbTcGgWfZRz9Pgr38o42U66A
cvTV8VUpqUKAyx8nVYm7m1WV1BAv1KUWEsszxarUscxaCI+VNkCCpBIqK2SW
eVc+VnWe2NIJj0Y2E7/6LTrvWOHJMlzsPX6weJ+HfBs7MMzWsc5m/7mjy+ns
mMFKAahxULzSXWY4qH/5aPZkFv0FsUw2Z/n1i5fzBBFL+IuI+E7G8QJ0fchT
d7377Ldn3a9h0Fdxb/L+uPdrJMsdDOqfXNXj+9lLO8iuOOFjSi2Mfif4uydv
sxkNYijb91x/zLX5G9YgE2Mb0fftOP57FCNrupRNBkOD/yZFcbAs2dvu496Q
df85Xv+tipHtpX2S4anxCpVgJoq2TZpUChGnogGjGyepbussSTNtTA3DSXNT
p6JIZFYniWncieYW1Jaos7yNRVHi1R51Do0JXbZ5rWSjsERQVmA1KpEgJKaq
chi49Knhqk1kqsoq1SLOStDGSW2SJDW6rRIlVF7FTZNVSZvhHSVSgVpOtC5d
OjsB/VwneYs1vkDZgnWMs7iFwaRKaKNykxsl8lrXhcqgj0o0uczd5v3Ve+DD
4jK6ShKVtoXCsl8wLlmCJhdlplqs7SsLVcpGJrmK4YNSlWBOVJbrxO2BC4P3
4FWq0TqVqqWT4zBEicCjuK5LI5tEJ1mh6kolMoHFMG0at+mvvmc+nGcDNs+I
QlcChiEaXEcwg8bEIm1g+ljQtoSfwiSFLlOtgAF0Gvs8YAsLkKV13cayVEWS
ySJv2jyGeVZg6GKVARNXQJosbUuwo9A+LBZvXt24pBgIQVvDQmZpLEUrgCPr
LEV92YB0SNFAb3GbpcLkwKsmy8GAx3nrh9iUVW5KhbU7c1gokQPnxrAGSqNb
JWC4Gvi8AaaSVV3BTKARoYzf9L26pNi7Dc693rzb4NzWX/qPKilWJ0qauqzT
NsMLb4xKVI614spclqZJsOQIioQpRSPBKa01SEKb+rIAudS1UlljhBQ5KIwm
w3KnGi80yjIswqAqA8yH5enKBIseyFYDoYurtv6HQ1SFkrFMwcdK4lSDsyfi
pJYm0y1WI6iaCmS71WCzcB4IjQR1GNd+58wUKaxDpmTagAzkKB46aeHRGusJ
5jAwWIxEtK0RMFNd1UpUsI5mDCqwzzXvNjin/st3G5ybmflNS4o1Oo+zOq2A
hWPgk7QGJ6HG+pHglBemEnla6qRM4AOBlQhBl8B4i9Y5xUbGJgElmSVIM+D4
WKmqaCsNUpGpBNo0JisTUNEIxk0KcKDTAtjpZoiE38tg//ElxX4feuztJMMp
o0B630Yy3OuB9N4IMOG8/L0CPeWh3dShe/wLK4wlg728EA56qKuxWj3OJew5
k2l1UyFwe68DWbipEDg9PZCFm7KiY709s38zVnQCv2f2b8aK3p89bEiuYkXH
+FcYkreHbaDTXaVFDeRoq6oGiyrbVKVp3QAF0woc7KJuhCjiUucV2NUGDLSU
ysM227ipY5EbmCJEA1KouBQqyQuN++FNVuJdwrBwskh1Bk9WWgKDeFKIuErq
PGmAd7RScfoPrjX2+7Cwb6dXnTi/NTMzFzt9NsLMvxd9dk3psf/LFdvNeNKx
8FsplI4nnTgeVChX86T3ZA7HVVfxpBv8FXHV22NVBEwQgoIcj9DkoMZAe4Ei
SnXb5LouYYllBVGqEgJRPaY1Wa0aVSonEFlcppnI2rItQeNhJcW6KopcFtBi
XIKuq2EJ4ySGl1JMxwA1Mqm1m0usITKBhmWa60b0buH9H6zK76cIGRV/oDIk
VNOKamQoW6zL7i/T9jftUmb++rUy6ypZMZKA6gYVbgOPtuVo45Z2J2nPuvVo
Cous4cczt1vIu6W+hAtVOap8DS5CHFChi5b7pi3T2u+w0kYh7VQSkiOu3Z/0
BSMTaPMvwCtUFllh79Sj6iW05c6bwgd270OcTOPrStGuJ+0uE4G4VeH2Kmnu
hEKgNbMQgthXReFiM0Sv3A2c/6S2E9c2cZhWDEwiFtBuuNQOVwDyu9CE72h9
ZRICniRZR3xiKhpb7MlH9VroHVo1YiTayK3schHj20p0Fs1Dy034AXoxtSCK
943REb7ECSEKpC94RqMnpAnvRdPiE4TJSjZtANNedepYgjbsY39ZJaEjqOqT
yV0TVLEsY9EyHplD/E7Ubjyyi260pJIqiS8yRoJQi04wC39pKV9Mqd1vhC4S
fi2036m29b+UZ2sqT0N3DsZ+gISzMIeYNUDLEPCNC/OQhqsdNQkIQOWR+O5Q
es5fsZulHSyLwQoECbOFe+xnxNuk8EgdUgEbkrHcXgzp6+pQ1Sp6J/cFlxRx
GkkGQRiE+9bKOqFIGEjgh0XkyzPHoo1H8FW+zpy9FZRL7RHOpysdR60T3S1w
531jk0jYiNrEZKnHFRLigpac/iQwHeMPaWl4xoSioikqql1FmpfmpNzACQFC
HEByW9tbOUmxkE6Rjk2I8QghQpoi7kA4qaNcboFOvrIiFSFLPEKKcX++0mTu
SVp7+KRgahOCRnie0B48RTWOSP+j+rsGF0U6n2w8SWJqaxRZ80o1k/h6X19V
jHU/22VCVVGVOmJJ0siEECptqSsHdCLzQXQU3CLJSe3HTbgpqiVGxDSOhyqv
GrtlNvw2CTgxNClMQrFoX1CTyE4DiP0NvVwKjNE5yisfmigDtwh3SPxj5eBG
mCwiEskTFwesXcu0qqTmay9S0heOStOu5mDmgZyVr9hF7TA8s3BUZtCXlTBa
Pq8OCEumfGUr4kxSuHw7tGV5u5raFkDzhRLpt8Tff8yYPHJPCMdWumZbe02t
t2wkX5nvjMyk9PxDgkUVJ6mYGVmThDFZzHParWF8QK8OMVnCy0fjWySRp15y
Tz36jSwlrXrKpbxaX0iNK7US85NS9t6A8pA6xvtZ3CDpJVKhVPaVnqQagwSE
IsYhDKe/C7z0K2MNW+FvYicxom75umhf6pEYPfV3bBPIKmFEF3frgbGt1xWk
J6W/X5wu4KUZshyyrmBoo3YMZa8Lfq+YrL1cdZMoDQFm3kipVFmUIhG11mku
UyWrJM+qAmPcxrQtxEMQ45cya7XPfEFUilt8EFVXJYaacdvGEPqUQpZaVlLm
RYyBUpvB/yBa1nGdptBsvYfh2t85jVNZ6AojaY1BbwHhU1zkedpmucyqUorM
qAoCOYwDM4iYc9VAkOkBNxlenAeTyAuZ53GbatxJgiC9xUIIeKJaFo1MhKor
04o2T5IyU7W8OeZrb6eoSnELtoqztoHOYiFNJdoyTSDaq6RRbY37nxBj5m2u
gNq5MRUM32UgK8wxyLItciC+1m3eFmWVQcSqM60SXTUFLJNpkhKrmeRp3jYa
An2L+rkWI/Z7Gex/a0zZ70n0Bhi0Pekr/3HSN45ZG47wN4be9F7/jTBunz0B
hnpKeLNeuZVfgnHr2ryy2MphjJvLqt0Q4ibSMYTbU2j/5Vef3r9t+3r57Nlf
vnz52ZcvfyPIW5qptMjyTEslDGguATxet4jXNFqVTXsd5A3Bbgx7uwnkLR7m
o01wSjGmU4kF6Nkqa7IslXmaVVkiGv85Hlos89xvk2YG/9jHxiXlDVh3n/MP
VToZEtFtalhQ2Q1IeOjaxSIfiDJuLCm8GDrG63dbnTYa5i+N0G1dpqlGsE+d
mTJLq1RnJlGZrIVxidkGjxAXKhWJzmSRibqsk0K0oDFrk6DeSaoYlFMp47zO
KAetRZq0TlclcVw0scKErWjiMhHl1TCYG4On1PzsBuUsEN4L+jpvDIxRVEDb
UrZZacjywtJiDYuattkyUYHBjpMab7xwmxM5HYRur6w2sk/vspK6Fjno4hR0
t8Qrh6FbARypTByDghegk3MdV2mV68TAssZ54rYUZJ3hBSYtUBNvM8aT5lLi
DZ65VjLBU9iNTKXUsBINLGVdy1pJXTogVYY+gsKiMCprciPtGffTxdb8/+1d
yY4kOXK96yv6OAJyAO7Ln/RJAFddBiNAggTM38vs0WmeHUtGVHRl9lZ1qarM
CCdptI3OZ8/++58Uqv/vbFQOOlrIndfzn//xt7//q1xa16ctrubG3TCH8j6m
kat1frSBYlVmKuvB2GYC/XHeJumKZisGpahbTdF+zFv4r6gursT0a7PeGtxe
25Lj67Ffb8l3RoQ9ZwpFURKUamFnF4zu2lpFjlD3Mdh6GVxKCdPsvYdImYfu
k4w1amlT5XqMVX/I7HKtLfQQO2dJuSra3Ya91S57SqZMTCn44Hp2NfXM0uxe
DUp2t+SdcTFzi1RdJ20fbU6erYCUMA2aufHcSbbHTp7R2kmep3v60TbeWXys
k9NwXcqI5PKeMYV6mMLVxeenLc4pikQz1qAs+anoyUtSstdL1C6ZZIJKrSny
yqbQj+TCy5fkuGaCTgBeJ9Oku2p9YAqvzHpHJ//aluz7ynC9JV9KpGPijBSm
OsNejVKxN51a1hTGqqOJ0FlNsXDSpNNVpu3gJlJxyn3rrIUMwD7ZCfOzBv9q
GJr7w7jTj7R7S/FD07yv3fvrH/qdD7Sbv3wP2nE3Xb/FBmIvexe+lOtKq07+
z68EupkLv2jMd8i/T+DIo0zYqGVYG1jzzfa1DGuf+uNr6i1e+TX13iG6vabe
e+0PIs899d6vnR6E1XvqvYPDByi4S1/YaXMqJSC0l3G0SVJutNwcatMMIfeh
9cCErJkz95ko7+NSFoHkeUX5yWz5S+Frt/zg7zOWfqTCe/QPs/X7KryPVR8e
RT5IeP8UfvABQO5P6BC/Xc+3XD+Mqvf1fH/9w6h6X8+35B+cSu/puZjoa3q+
v/4Beu6qqnyUGH1Vs5JP1J68XYo++OIN/Wc2n30LJJpMMqCTmZ9NkzxPOamU
i45l/IC9PQV7s25fIwYheQDNBa49ATQAw4uRvofAHcR1Z4vLaTTtwgVov0Na
8g72Bv6Lhb2p++4SXbGAeQLSBAiMJrQi5oBU4Gbd7N/janbxnsy3o3vWuv4c
W3qYrT168IEzBCMCeITFAUKGm2O3L2EhCcAwgP3DjfYmeBIKKxBaLN4XgEAA
TmhvG4vDHwENCK5ozYIX4O7cy/0snoNLdWCOrHT2AkZldR/FI+bZc3SRP+F6
WR8PfoSSW03VcEWPe3ihg1lTA0RBWLGi9EE8aGoATZmCqAID1mojKa1NgckA
5gCqCUhAWhfUC1lzttKSVp5VWi3O788mBf0CdVcRjI+Xm3doO+7/IQor/S1j
OQE44GwBpEwJcRFWB5wbhNKOpqKH+A4CsXFYxgHbg0os3h1BTILlZalB2Pu+
OzYCDAdwjLC8wI5BKgZIpxUwJUQOnFFpp2cAdGRZTt7quBh42p4ZEA4nyiIt
KMLCZgjz1jj4aR4C26DVUA40+gMaB3C11bYQ0B5g1kA/BvQClHituEuvwCgE
XguNAnwP2GqA9gPaFsC1AzSLb8/9OLhhLU10AQ5c3F3fn/hKub2LmCmIdIog
rZQ0+YPOe2kgeGA/Fx8ZHJbZepqkv99CzcAhp72HwCEdvYOxN0AvAQkZpM3j
YtcTljg0fARCeNnA0TsYLhK+FShMuClg2tLeBiBojPD3LJ++/Fc/+jUeTnex
NbWtMNgX4NygwKDgwwQOAiG4wwX8GlsT7R1itXdYNIDZMKiS5p4nShYGA5gM
4gRwkXB4h4I0cTaIDpAuwoE6ty/tAYb0elZHr2DARbFLgLdKF9VyaBbcx1N4
MOjv0mm9Bbj4ATEy9NxuJWxiijmcxE9a0OlBMFmrf3N8e2/tXpDUaWGVoX1K
QLBYoRf8FQBp7QNY23uk1UKVwbik7+IUjj74JjwZ6DQszR+4JgHiLqoxDOq3
yjYJKwDHImwUaXXsDySpFuUWpVNC4AhYXxlPY5iA5VjXzvu19zfRS3EplVe6
qawZMUFZsKazwpzDR91TbUqPpGIcwydtgxm6dtTlSIpq6ZRg1+nq54/vz0Kp
dKgIlG0Hp1pROVXbdR49RUXHJmN6HLGlUG1N0XntvROW2WwLnSTSrKFOVQJX
Eg06tLRYB2XUljkrio3ZZMUF73m6li1X5uwjQzKp0qEi9WC8o0NXu8YkAP7z
09/m//7jH+866PzPv398CWsq1zPNEUpOKTLHhB+hDzq18Vv/0QKdTJLVdLSL
qnOVUPdhn/Zr5tPSiJH+okf10oxigmZLkm9uWqN7ry71qBzocU0eNdMAe1He
JM0dlxi1wgVUN8i3BNf009/+65//+NdPP//9XNrlEfeqF8VLa6tSS3es7XeN
X1ooJT5LXUCYnkctfbmZXcCQft+WNu2e8/u2nPoSl3RXcz8PImST+yVEiH7w
ayFCeMQHECEe8/v0Y0rxJkaIBpCXbfzvL8YI+WpjtKVkNdI0tgVNKlNcJRdR
TQzt374rRuiqN9MvMULWJutuvJLbP38WI+Rfwwh9Ezru99qb6YkNvYdYyvHS
L9UapnKhBKU7N9pjyqtgjB4U9pJtdubSlM2qDh+aL9lXprPaHtTplkzpgyMh
ecpC/pG202ZybK7Z1Evt3LageopVPU90a1JF2AYodMWULb8LLTRI67nh65U7
6sXI72JNHZP8ofNBV/KCg7ygkEoZyyjdanWazBNPYTDGWMaYnwp8chcaPib6
LPnStTPkwBW5cdoLpXq32nebEq2zeWdUo8WP3EngWUnbFhs9uXYKN45zimQj
G0zQ3ExxxN6zHb31mvslGqR8uK2kJ242r002zNtFG+uZ6IziGm1ZppzGkNCL
LpVmWXydTXk9d7jpI1NgyclSZjG17m7QTkZLMcTm0mftyfc0PUXHaippUAth
2j73ipoiNQhjaFIJ2xUThClDoqGhvE6esWA0QiqGu2C0yKrLzQiFRIJ0IFNo
M7aSrvTRK7ckDOF42/sqvuo3kxF5Oib8ylnRI+Vl/+yDbwhGSKkZGjvQT2q3
05gyKKlLNL4OpBrKKG0TWZ7j3g1b9R2ZRaBY0psr0xvKY1xDzXnd2JT36qHV
5Ttw/drqt9mH1zREkAGvacjeuHZfQ74E7nXpALyinNyGmn0xo/O9hqX9SY6c
Qm/kOXX01iry1Dk3EnXwieRHQt2q0AyzyvlpycmGEr3inqe0N40ccQmWV8lE
CpcOoH7oAAb7xk4RQVtyTJRNmlGiVjSbnHKexXMfjmGYv1ClMEiFgpmbq8FR
8kieNQ1XvR5tlmnohFEpgyVn32swFKpJ1yhtpsyYThuUtyrn276OgZcfmgk4
ramZ+7hmXUNUje9xlBo+T9+0b5Fsw5DDdGQbpQnRRCEn2rRm+teQazSd+Vlq
z085gLuost9MRnQqi42CaZyUpe/QaXopU4+Sc2zdhUqZUBhc5WAZejmnpohc
7ChkU4Z7f9H/udWpXNc5OttZJthQLQc6j1JsTNwSVhxAfeQAXln9tuD4mobs
AOFe05D99XJfQz4V5HYV+T2dsWIib6QGt1EcNCU6i6XiWXy0ssnNa+rgvdIl
x0pujxz8NpNh6bt2kpBipByHoeA202O0Jy/inacDYtK+PtlN7rea3BeD5Mxl
EcKfPpbdstXtBZ5yWNe2un3QU0792lbPV2VPOPVrWxXEwYXJ8g/vIlbuHaK/
GbHy9An0OyL3rPoYqPLaqfgd5dODE6FVyxscX/92p7C8wdb5h07htk2e4nyY
ZN+yyZ0dPHEQuWWTW/JPHERu2aTY+yPTvG2Te/SHpnnbJmX0R6Z52yZ34Hxo
mjdt8ias5jLcOH6boftwJU/ja/dxtuRz8i2XynzO0WvuUMetmSspOiUwlOwK
q9RgVtxpOql0yZVUTnlmo6O8iV/LBsqSaF51pq/EId4MNX/qrOmW3e5I9dTh
+Nput8t56gXCtd2erxRestsdqS6Ph3+KUPMxOPKvGHOujXO7l5fSJHHbr6VJ
563bS2mSAJAf2+ht49yjPxFbbxnnXvsTsfWWcW6teyK23jDOp2KOHlVH5jGk
DSwqlkYzwAtW1ZKbNI+mNGlCs27SAdlnUtSQTZELvDD5YoxmawKdsGfwJLiW
k9LcqMGVwmhWW8MPqOdzDIfCYYOHFWFgAxASDccWOZbe0A0AzFw92WrwCKBy
wp1elpdQz1r3lPFfsH8tGhthgVPCKQVAUTAnFA+oJCCekoBmJqiT2tsGfQIv
M/aUDz5GwO4wWwDTxkFfeIDyVrs2QGXO/nwQzAI+FiMz0ht3k6UdpxMo7CJb
wy/K+W0wSQGmBJwTIFeAFwFZBeUCvmVB7XgCq9Xowh0tzBMmKIx+IKMEzdi7
+WAr3MbTxAXT8sILaaSRKaA4q4Ub2LDq3lm0ZwUB0TzGhg4AhVTlk8CJQefC
Vg4Q+gF5FDfyZsEfHwJSMSEwai0eP783QgvIGHg47Dkwq6D5cupkV0N3TQCJ
uvBjLVEKLx2QYU2kPQ5qLOy12joDWBfMAaApyAF4uCYgQqhsOlj4xp75kiJ2
I28pYqcBw7LSaQ9tLUltPgfiarbQQEkHyB+osMxJKSrGtTjmlh0vzr60dakd
jUgPkNjSvrI1ehGSglLUn7yjgKhhRDBhLhB03SoBQUIKUJN5QLkwNiwZjxMG
S4AMoeXQgwWrTntXoHh+nCBCwNKreBaAx4LwQk6ZHsQAor6D8hOmC3W1gtCF
K1kfF/VTopeLaPHo3Sh9ZQFSS0J7CSjoEIZQ9IAEyg84NtVOCB/EDSMGNhVG
XIUBFEKExlTBlYawuy8+BOJCz7FbQJ+Cq3BRdQLp3t/eQ4th4fAP6WjFKSjb
lrfOAFPnBbe7wkPeS1iuYc3PS8NcjLOgyUDuQ+0gd0hbYP5weiWetG/YiMWe
ih1se2vBKgpA9imvsSnnPgPaOyQOwa8Dub1Qm8JmC9+z6GHLm5DfLfZBvQ1g
EcCW/Un4TlDsLnQkPDRgmOEsbADIcxUXwGUL6ePyxmmvHVIA3rkdbG7SznPh
dmG6aYsPG7taHyMIoHyirtmCAw9BAmuEdiAngSdWWwLLJQJLLxhkfbDYYT12
a1QW9jmQkC7iwvh2QKNP9LlS77iEhdgSom3CeIwcKEhP4FVMUN6ErhApzIoX
+Lbe657Cu1ilRawXVH1d3ijfsat3AOTVHRbTQyWM2DEkcLbSHjL8Im5cdJ5F
Fod/LSEJ3zAcRBUayixNgI92sVXc2JSW3NBOZAtN8Mj6CP+7O+wSzapwEcg3
ZgnpDmG7xc4i4mHf8dv6ZNthJxyZWEaX/s8YDYYP+4HYVrNofwrGS7FMPemf
4W9gP9ImHhJDMczKqZa38keJypFNrhqXg/H2KAdalL5ujwJtn+Yss/AnjStY
NBHBEIMkXV/lLYhGB0j+KZC0Fh7feDI/IjjD56m3o9gBKZ0XVcpLJaHrIEB1
0rV9tfCW9uGwLXhwbDdyoIPqd+XxoGRF/pi39PBJI0TAEBbms1D9y4ngIAHp
IA7Ci2HYFfHS3uFyFsXAJYdPg11fHifDSIXroFvvTqVR6BQ46DxeRjcpjFi1
KXRa7aXFaVowqWdFJ82xj5OmDO4Ywq8+iw/MR+iVmrW1YZ3xvXGrAj7x4uM/
f3h5X6zpqdPoysduY1WZnmymY36n0nSKboTWY9M2RheZTso3K9CSPEtien7L
p9jqLN8r02e66cHEPH3tIfMLgckdEloYbdbknfRpmDx4C640r6eOsURuGFE0
ui24abwffC3dGIwVXMudDs1+SKMwkkt0bsRGp+/ak3I22mBzvtEE+Al097Vs
/KiJzukhuNGMYkiZHXTiV57RsLRkHV12oagZSipm+MnUjfvyILeifZ7G0Fmf
XwXRk4rpLpqZTZgkbG5jYX3JXTP4V4VZA2393uJpe/Xdp8qg6pS9a9Ek1/Vw
JehQsvXc3yFobio5NEk89+GjvMFV0ZXE5a+qt8aKRrMObfQDFPAySPwKkPKS
iLJQRz0por8kiPy3dBoXIPO/hN+waS/994ZV90b/Eqvutfm1WHV65odYdRri
c7HqNAG5+6DBvhqrHgcpXuR7wpLGVDrXbEMjdatsPrhM+DqsurfG6hs3JN5q
a35g1Z/Cqj+xofew6traS/9GIYzJCrnqpYRJsVgNa3vW0ec4dTJJq1FCmUO5
Gg39rLUuHaRmarrlqaYuimbgOPbSh5rhh3mK4pN8nGnddt3VaC1NQwFSC2NQ
zT51mnwjB9m8Z5rokpWudZDbpoVPU2jdrSkK7XMMO5hh0e2vM8o+ut6VNmNO
X6ZqlXkyKETbpkp1U5N/JpWaSXPb5qL0qE0usLqKoTtfyK3mmkLXblYSb+Ar
nK7y1Kpyl2Hvwqdi38MlebEOk0JbrZHTHEPxLqbUQ6IUgrais3y0bcH3yp3D
ZlEpm9j9VrrapgnMqh1CK8a7kQz9XvFdnSZRDFIolQz9WmXmEi2ddItEJUrX
jMmUcvFWjpHnzPnSQ/wCJn9ToxyjqMcInbK5aj0DFChEBqciaaoqTNYSSqQF
lGR0SkNlAS2YoVC1RcsdliZN6+WqrarJTmI3jvInWgOXA4ZWx0ikX5QHVwl5
3vmeJ5OicMVWaZxBMO9Ij3bQ9jfGglOYZaYmEpSPI5GOC4EtuSP6Bo3aazbO
t0Czy3Nw569auZG2UTaRJiH9yykPpui2ZQPYNaUZZlpSPFbsxoULvWtSXq4+
q7nTFyzZaD3u4F+F3f8xZE5+hbzD5Jy9M07FUsLcLT2ccmVmx9oAnFaj5YoU
YyinqsXmQU6ejAAhwgUy8NkijU1houkQuW3mHM0LyoWcQFfkFLjiJlobOc8e
04aYanGUZQXdkqIprU26hPHbfNG83iv9ijj3TpBUXxHnPkuRVF9R4T15w0RC
367CW31Jk59X4S+pC7h2jrrQOWuYrqZLvTmnyrCTokXWhg6JyVCwdOTeNMmg
K46cqRnpTUD+3g5K1fnOnHLnqY3imFMHfWymkExthTvSh+HpwJaGobye5CEg
/Bgph8+enDNJPzOA4UNG2VuGqkefMcTKjFEjxDnp4MAABYo8PKWsSX+4p2Kh
nbCmmKnG2NlQ5iOMN477KtIZx42aq7VkZoW0qSpTGAJgsqYlVF9b0o6y/ZK3
ctLaJmUPiaKBpXyLso0YLJ8ouJWiroMGrSNUw0GHNIbRYZyOOHETgQFkFJAy
dw8ILeVCMdcEU1xSDJxvdDZC70QK/47iCwWc2kU56TxcJ5+96ESnoyEVo3Oe
moU8gqVjUB58oqFd0M84x7slCX8MmetKZ0DFXXApv9DZ9dJ1Iqc3nHFZJUFZ
dZ2LbVknSg+5ntpGTqNJ27unbI+xLTZMM1yhHIHhKMGPRmnjHp0GMk5V5ycl
DyN1mjAldpNcs4/N5EBzroryoHyzqfw95/jN4tw7QVJ9RZx7J0iqr6iwQAXJ
9b6gwvsFEGny8yr8qTUTV05RRVXo6KA4IlBimAK5Z6TFhbeeX3gMyyin3Lmx
i6JUf2pn98ooLqdKeXKl0wUDcLlPbOG2I8VPkygPTbYMUpxJoWBSYlkTJdfG
StGOp1g/aa2cM/ZRKXHXt9dxWV7xB1jHV1dixPQjHfl16YjQhrzmqoT78TVX
lTdG7zVXJZVwr7kqf4aNF1wVf/EugPfeS6xvBvA+/Qboe9aKXL7WvcDtvvZW
6sTtPnoj48xybfvr3+zhlmvbQf2bPdxybTL6ew/3vIPZZnV1inzOwWyjvjpF
PudgtlVendyfczD75cjVyf05B7PV5hd+5nkHs193XWSYzzqYncBcZJjPOpht
RhdZ/bMOZn/9Iqt/1sHsk5d+XP9y1ZS9kvFY16w3jd8EkOJ3a90szbBZqTFp
62PmJblBBjaTr4oO/lvcZtJ+UDrsyNQD6Yyq0fNTQoqDppOqjqRpFLsM/XSO
SIrWqtgJbSeNozVZwkgqlS8tk7mTB/zIvJ8OZ7/MA154PbYPcC8lUMJo9VoC
JT2DXkugRHQvvc/hL/7h84AHhTw/EoIHCcETnmaH5Ks3J895mu1brt6cPOdp
JKK/Ftd2OnL1tuo5TyP3X+8dzvOeZpvnS5mU3gnBa5nU2Jd3r2VSsnGvZVJG
eK7y4+Kky4SAqRd6j9oGS/tFsxp69jEtrcIVlQIptQqVhuzDeFtjVE272KW/
CaOPEtNrDUc6XSyJvevWMy1/+OxrGjTHaXIMtPuhkwnSotv+ulG+6uxoHUZN
H/WPGqanaphWFQZ43IWOHVBRANuB1F2848AiAwUMxP0CSK4+9nNDHP0d/t7L
GqZFAy71UUZKHRax+NwYUS/4e3sgjCEa6SSOUgjUHiUBfoJhHvjtofbS4jvC
eWBnARbFv1ZTeyncQDULHgtUJpDTeaFklfAEYwOA2jfnpAEARuEN4OBzr7D1
syJglWgBZw4ELwSHnUOBiJAho9AAZR1HRUCTduNZaLDTQWm8calAP0OSwLIe
YGGMjXGEsx1rQJEGlrxkBTJ3oQ8HnHfXqUmtGXQS4HcMZgSyDQlAdADWAwx9
UGyjQgXYaoyI5QGKC3A3KqksSL0FM+8B+DUnyf9CALct0EXYL10GMPaqmgI8
/aidAHQYgkBtCNQjvL0vocFzFkhcaj3KUVuBmYfH1VeQQxBicNShACAPmDbw
4JASfrHIyUG9fsDZsVzR3C71g5DNKh1EWRZQ6VJCN5cvWGzNcAjYa7WlBHQ7
kM6oTIA1Y89RuuLdCW1e9U0oJohbDljS2hKprlj81maplcCq89neoGx5Lllg
k+G2YCRmq3RfwGhg3X3Yaoc9mAdE/FNqu+BvHADXqMmBnkODYLUorpBCtIWR
Pwji4eDdFtDyf1AUlBLWrVWovlrbVJaooH/YcPQ9AJA+b3VAZRievfqBlK3l
9tgGjF222IDPX0+XwIE9X0VWac9s1bysGhQsFLuOioghjUaA6c9SyTGkcGFB
19f+Tim0cFJZAJ+JrUsnrTj/DFFoHJYKb4XyirKFjFoOuFgj3UZQ0IDYk8SH
h/VtQPFRGAL71lIxh/qXVXEjVbVJ1nXUJK5SMNghPCkw+lBFuzejSgUXSqAW
Gv8A/MOKpW0CYokWWna4aiseDPNBEUxb2rIKZ1CypbfyYwJRSn0X4z4KLBC7
j8JSyPwOa/z7qrRVtQDFcG+HO0dpBkpWoeGoboB5INXAMHPZPGJCltoJFPBB
8lZqM1cJnhbh9zfh7195BpaLiIsJQCfs3mRt97KrhKmxbB7uCy4LBT2opxvy
RERh/Atbh5Ik1F3smiiUI+utvthG+C2o1ZTK3bNTBSaV/akTJ+t/ljibPqmd
xaryQKSBA0H3BpgKdmDsn03pmxCXDiAjsGZr3aq4HXvXVgmSVGunItp5VBtL
ESXiCZK3LA00VjRCNZmXXVNrp6H7dcsG/RTgVrARqwxL2h6Us9jSrJlBt6QS
GnqOkhvEXwSiVTQ0ZGsxR7ifdOoW/IiVtiwwmlUmCvWED5f+RfMo9oK/SXta
8DeYlpduS1PkV6VuD9ti1rrhkVdfGLh3idereQWqpcNeEhZSjn4j0EyIxL0d
xX0rhULBN5xkF6nAD0i6eNRfr2YLdkutS2k4lAe1XBA8wg2KIwdEs8ZGDRqW
B1WAD4BHXkWpiAB5Cx4ajNRgLpnfi57vqvUgc+xNkfpJdTpypAZwaGHPFv6t
q9PkVy6AalW4Q/d2RCQUi51+qEuXinkUMkJWc6sRdHKVgsOlp60wVdotYXr6
6PEhudYSCErjyn7iqtySnAyVqFB/9U6ZldT1wW/iiSuHFZe52hCpLXu3xoYF
rhyn7wfPozrtqVpA+EAjKf+iR/D7Z8sVCesElBrScUftKmzkPJNBdZBdI6Yi
j5FKUnj5cWwzlp62MiJgYpwiFbRTut0s+gM4cBjHPGsBq3QqWdXh0r0Eurvi
sBREryw2nNHXyBeh2VFyCRwtIOcspxhznCTgOxF8YA1qmcRT9YWr+FNONlHK
3K3kuCudQIkuwiPOPcvlrmQGTlVtQ1gKAdFICyPYxTpa2SUicXsIYTh8r6NV
km/Dhwq9BrzKYrdYBwAr6SWMp0l0Xx+XfjDQ3CE5x3x3GMa5Uwm1wDJWSZnw
xFXeif3K67f49ti/goUcxeOfUbN4jTFMpveYjZ9MM+x0Hq5OJiDOMdjSuo2d
uchV677QJ5gzyRZhhEvMMJ5CbdmX1rRXIWcdlamhFl3yGMb5NMdIYzaldE5t
KpXSfivnksrBjxn8nEa5VJNfrwt/foS65j4WJlgzs+deF/wa1NMfy5j5PlxL
ddri0vB9plDsmEmq6Gab2rfUc3G0Mh21TmnSkhkITjOY2ToVVTfG91J81sNE
VXLbc/Y212RG6k0738q0qYyaSUBW1USiaTnyxZRvrpBQo68+0cr7vqUI1upm
atQlBX64rl4rkqxT1nqSY3axFz1JfszNhtd83DVT2suYNEasfhRryzSFOaRK
xJpNYrxwqSFEW9trzXBuAgqVIlUYcTC7tPIkD5355WBSgURriu9x9Np0zya5
YVPXQxCB2vJkgq/clsQz2b4uVTvaEdoCa5whhSLtmL0VxRRMbUbTTdhvIa2m
541GH08uaa5xSD0F2n1TYp+0J7HX0CpL2YzB3P55ajf2TpP2lZgyE3rlyC1T
00g1umrVqNZ072clhRyFpkHbOXMfcVYbNqyFpm4CX4uQtmijG2mrSUprTY9T
ifGJNtB2J5OuZf0t5ZfXNvmKxOUe7DWJ2/2i/ZbE/5KVmn8QV3lR1PnDW77g
LW3ZovyCIlH68//sqfx2QdoBAA==

-->

</rfc>
