<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.13 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-irtf-cfrg-voprf-11" category="info" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.13.0 -->
  <front>
    <title abbrev="OPRFs">Oblivious Pseudorandom Functions (OPRFs) using Prime-Order Groups</title>
    <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-voprf-11"/>
    <author initials="A." surname="Davidson" fullname="Alex Davidson">
      <organization>Brave Software</organization>
      <address>
        <email>alex.davidson92@gmail.com</email>
      </address>
    </author>
    <author initials="A." surname="Faz-Hernandez" fullname="Armando Faz-Hernandez">
      <organization>Cloudflare, Inc.</organization>
      <address>
        <postal>
          <street>101 Townsend St</street>
          <city>San Francisco</city>
          <country>United States of America</country>
        </postal>
        <email>armfazh@cloudflare.com</email>
      </address>
    </author>
    <author initials="N." surname="Sullivan" fullname="Nick Sullivan">
      <organization>Cloudflare, Inc.</organization>
      <address>
        <postal>
          <street>101 Townsend St</street>
          <city>San Francisco</city>
          <country>United States of America</country>
        </postal>
        <email>nick@cloudflare.com</email>
      </address>
    </author>
    <author initials="C. A." surname="Wood" fullname="Christopher A. Wood">
      <organization>Cloudflare, Inc.</organization>
      <address>
        <postal>
          <street>101 Townsend St</street>
          <city>San Francisco</city>
          <country>United States of America</country>
        </postal>
        <email>caw@heapingbits.net</email>
      </address>
    </author>
    <date year="2022" month="July" day="06"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>An Oblivious Pseudorandom Function (OPRF) is a two-party protocol between
client and server for computing the output of a Pseudorandom Function (PRF).
The server provides the PRF secret key, and the client provides the PRF
input. At the end of the protocol, the client learns the PRF output without
learning anything about the PRF secret key, and the server learns neither
the PRF input nor output. An OPRF can also satisfy a notion of 'verifiability',
called a VOPRF. A VOPRF ensures clients can verify that the server used a
specific private key during the execution of the protocol. A VOPRF can also
be partially-oblivious, called a POPRF. A POPRF allows clients and servers
to provide public input to the PRF computation. This document specifies an OPRF,
VOPRF, and POPRF instantiated within standard prime-order groups, including
elliptic curves.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Source for this draft and an issue tracker can be found at
  <eref target="https://github.com/cfrg/draft-irtf-cfrg-voprf"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>A Pseudorandom Function (PRF) F(k, x) is an efficiently computable
function taking a private key k and a value x as input. This function is
pseudorandom if the keyed function K(_) = F(k, _) is indistinguishable
from a randomly sampled function acting on the same domain and range as
K(). An Oblivious PRF (OPRF) is a two-party protocol between a server
and a client, where the server holds a PRF key k and the client holds
some input x. The protocol allows both parties to cooperate in computing
F(k, x) such that the client learns F(k, x) without learning anything
about k; and the server does not learn anything about x or F(k, x).
A Verifiable OPRF (VOPRF) is an OPRF wherein the server also proves
to the client that F(k, x) was produced by the key k corresponding
to the server's public key the client knows. A Partially-Oblivious PRF (POPRF)
is a variant of a VOPRF wherein client and server interact in computing
F(k, x, y), for some PRF F with server-provided key k, client-provided
input x, and public input y, and client receives proof
that F(k, x, y) was computed using k corresponding to the public key
that the client knows. A POPRF with fixed input y is functionally
equivalent to a VOPRF.</t>
      <t>OPRFs have a variety of applications, including: password-protected secret
sharing schemes <xref target="JKKX16"/>, privacy-preserving password stores <xref target="SJKS17"/>, and
password-authenticated key exchange or PAKE <xref target="I-D.irtf-cfrg-opaque"/>.
Verifiable POPRFs are necessary in some applications such as Privacy Pass
<xref target="I-D.ietf-privacypass-protocol"/>. Verifiable POPRFs have also been used for
password-protected secret sharing schemes such as that of <xref target="JKK14"/>.</t>
      <t>This document specifies OPRF, VOPRF, and POPRF protocols built upon
prime-order groups. The document describes each protocol variant,
along with application considerations, and their security properties.</t>
      <section anchor="change-log">
        <name>Change log</name>
        <t><eref target="https://tools.ietf.org/html/draft-irtf-cfrg-voprf-11">draft-11</eref>:</t>
        <ul spacing="normal">
          <li>Change Evaluate to BlindEvaluate, and add Evaluate for PRF evaluation</li>
        </ul>
        <t><eref target="https://tools.ietf.org/html/draft-irtf-cfrg-voprf-10">draft-10</eref>:</t>
        <ul spacing="normal">
          <li>Editorial improvements</li>
        </ul>
        <t><eref target="https://tools.ietf.org/html/draft-irtf-cfrg-voprf-09">draft-09</eref>:</t>
        <ul spacing="normal">
          <li>Split syntax for OPRF, VOPRF, and POPRF functionalities.</li>
          <li>Make Blind function fallible for invalid private and public inputs.</li>
          <li>Specify key generation.</li>
          <li>Remove serialization steps from core protocol functions.</li>
          <li>Refactor protocol presentation for clarity.</li>
          <li>Simplify security considerations.</li>
          <li>Update application interface considerations.</li>
          <li>Update test vectors.</li>
        </ul>
        <t><eref target="https://tools.ietf.org/html/draft-irtf-cfrg-voprf-08">draft-08</eref>:</t>
        <ul spacing="normal">
          <li>Adopt partially-oblivious PRF construction from <xref target="TCRSTW21"/>.</li>
          <li>Update P-384 suite to use SHA-384 instead of SHA-512.</li>
          <li>Update test vectors.</li>
          <li>Apply various editorial changes.</li>
        </ul>
        <t><eref target="https://tools.ietf.org/html/draft-irtf-cfrg-voprf-07">draft-07</eref>:</t>
        <ul spacing="normal">
          <li>Bind blinding mechanism to mode (additive for verifiable mode and
multiplicative for base mode).</li>
          <li>Add explicit errors for deserialization.</li>
          <li>Document explicit errors and API considerations.</li>
          <li>Adopt SHAKE-256 for decaf448 ciphersuite.</li>
          <li>Normalize HashToScalar functionality for all ciphersuites.</li>
          <li>Refactor and generalize DLEQ proof functionality and domain separation
tags for use in other protocols.</li>
          <li>Update test vectors.</li>
          <li>Apply various editorial changes.</li>
        </ul>
        <t><eref target="https://tools.ietf.org/html/draft-irtf-cfrg-voprf-06">draft-06</eref>:</t>
        <ul spacing="normal">
          <li>Specify of group element and scalar serialization.</li>
          <li>Remove info parameter from the protocol API and update domain separation guidance.</li>
          <li>Fold Unblind function into Finalize.</li>
          <li>Optimize ComputeComposites for servers (using knowledge of the private key).</li>
          <li>Specify deterministic key generation method.</li>
          <li>Update test vectors.</li>
          <li>Apply various editorial changes.</li>
        </ul>
        <t><eref target="https://tools.ietf.org/html/draft-irtf-cfrg-voprf-05">draft-05</eref>:</t>
        <ul spacing="normal">
          <li>Move to ristretto255 and decaf448 ciphersuites.</li>
          <li>Clean up ciphersuite definitions.</li>
          <li>Pin domain separation tag construction to draft version.</li>
          <li>Move key generation outside of context construction functions.</li>
          <li>Editorial changes.</li>
        </ul>
        <t><eref target="https://tools.ietf.org/html/draft-irtf-cfrg-voprf-04">draft-04</eref>:</t>
        <ul spacing="normal">
          <li>Introduce Client and Server contexts for controlling verifiability and
required functionality.</li>
          <li>Condense API.</li>
          <li>Remove batching from standard functionality (included as an extension)</li>
          <li>Add Curve25519 and P-256 ciphersuites for applications that prevent
strong-DH oracle attacks.</li>
          <li>Provide explicit prime-order group API and instantiation advice for
each ciphersuite.</li>
          <li>Proof-of-concept implementation in sage.</li>
          <li>Remove privacy considerations advice as this depends on applications.</li>
        </ul>
        <t><eref target="https://tools.ietf.org/html/draft-irtf-cfrg-voprf-03">draft-03</eref>:</t>
        <ul spacing="normal">
          <li>Certify public key during VerifiableFinalize.</li>
          <li>Remove protocol integration advice.</li>
          <li>Add text discussing how to perform domain separation.</li>
          <li>Drop OPRF_/VOPRF_ prefix from algorithm names.</li>
          <li>Make prime-order group assumption explicit.</li>
          <li>Changes to algorithms accepting batched inputs.</li>
          <li>Changes to construction of batched DLEQ proofs.</li>
          <li>Updated ciphersuites to be consistent with hash-to-curve and added
OPRF specific ciphersuites.</li>
        </ul>
        <t><eref target="https://tools.ietf.org/html/draft-irtf-cfrg-voprf-02">draft-02</eref>:</t>
        <ul spacing="normal">
          <li>Added section discussing cryptographic security and static DH oracles.</li>
          <li>Updated batched proof algorithms.</li>
        </ul>
        <t><eref target="https://tools.ietf.org/html/draft-irtf-cfrg-voprf-01">draft-01</eref>:</t>
        <ul spacing="normal">
          <li>Updated ciphersuites to be in line with
https://tools.ietf.org/html/draft-irtf-cfrg-hash-to-curve-04.</li>
          <li>Made some necessary modular reductions more explicit.</li>
        </ul>
      </section>
      <section anchor="requirements">
        <name>Requirements</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
"MAY", and "OPTIONAL" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      </section>
      <section anchor="notation-and-terminology">
        <name>Notation and Terminology</name>
        <t>The following functions and notation are used throughout the document.</t>
        <ul spacing="normal">
          <li>For any object <tt>x</tt>, we write <tt>len(x)</tt> to denote its length in bytes.</li>
          <li>For two byte arrays <tt>x</tt> and <tt>y</tt>, write <tt>x || y</tt> to denote their
concatenation.</li>
          <li>I2OSP(x, xLen): Converts a non-negative integer <tt>x</tt> into a byte array
of specified length <tt>xLen</tt> as described in <xref target="RFC8017"/>. Note that
this function returns a byte array in big-endian byte order.</li>
        </ul>
        <t>All algorithms and procedures described in this document are laid out
in a Python-like pseudocode. The data types <tt>PrivateInput</tt> and <tt>PublicInput</tt>
are opaque byte strings of arbitrary length no larger than 2^13 octets.</t>
        <t>String values such as "DeriveKeyPair", "Seed-", and "Finalize" are ASCII string literals.</t>
        <t>The following terms are used throughout this document.</t>
        <ul spacing="normal">
          <li>PRF: Pseudorandom Function.</li>
          <li>OPRF: Oblivious Pseudorandom Function.</li>
          <li>VOPRF: Verifiable Oblivious Pseudorandom Function.</li>
          <li>POPRF: Partially Oblivious Pseudorandom Function.</li>
          <li>Client: Protocol initiator. Learns pseudorandom function evaluation as
the output of the protocol.</li>
          <li>Server: Computes the pseudorandom function over a private key. Learns
nothing about the client's input or output.</li>
        </ul>
      </section>
    </section>
    <section anchor="preliminaries">
      <name>Preliminaries</name>
      <t>The protocols in this document have two primary dependencies:</t>
      <ul spacing="normal">
        <li>
          <tt>Group</tt>: A prime-order group implementing the API described below in <xref target="pog"/>,
with base point defined in the corresponding reference for each group.
(See <xref target="ciphersuites"/> for these base points.)</li>
        <li>
          <tt>Hash</tt>: A cryptographic hash function whose output length is <tt>Nh</tt> bytes.</li>
      </ul>
      <t><xref target="ciphersuites"/> specifies ciphersuites as combinations of <tt>Group</tt> and <tt>Hash</tt>.</t>
      <section anchor="pog">
        <name>Prime-Order Group</name>
        <t>In this document, we assume the construction of an additive, prime-order
group <tt>Group</tt> for performing all mathematical operations. Such groups are
uniquely determined by the choice of the prime <tt>p</tt> that defines the
order of the group. (There may, however, exist different representations
of the group for a single <tt>p</tt>. <xref target="ciphersuites"/> lists specific groups which
indicate both order and representation.)</t>
        <t>The fundamental group operation is addition <tt>+</tt> with identity element
<tt>I</tt>. For any elements <tt>A</tt> and <tt>B</tt> of the group, <tt>A + B = B + A</tt> is
also a member of the group. Also, for any <tt>A</tt> in the group, there exists an element
<tt>-A</tt> such that <tt>A + (-A) = (-A) + A = I</tt>. Scalar multiplication is
equivalent to the repeated application of the group operation on an
element A with itself <tt>r-1</tt> times, this is denoted as <tt>r*A = A + ... + A</tt>.
For any element <tt>A</tt>, <tt>p*A=I</tt>. Scalar base multiplication is equivalent
to the repeated application of the group operation on the fixed group
generator with itself <tt>r-1</tt> times, and is denoted as <tt>ScalarBaseMult(r)</tt>.
Given two elements A and B, the discrete logarithm problem is to find
an integer k such that B = k*A. Thus, k is the discrete logarithm of
B with respect to the base A.
The set of scalars corresponds to <tt>GF(p)</tt>, a prime field of order p, and are
represented as the set of integers defined by <tt>{0, 1, ..., p-1}</tt>.
This document uses types
<tt>Element</tt> and <tt>Scalar</tt> to denote elements of the group and its set of
scalars, respectively.</t>
        <t>We now detail a number of member functions that can be invoked on a
prime-order group.</t>
        <ul spacing="normal">
          <li>Order(): Outputs the order of the group (i.e. <tt>p</tt>).</li>
          <li>Identity(): Outputs the identity element of the group (i.e. <tt>I</tt>).</li>
          <li>HashToGroup(x): A member function of <tt>Group</tt> that deterministically maps
an array of bytes <tt>x</tt> to an element of <tt>Group</tt>. The map must ensure that,
for any adversary receiving <tt>R = HashToGroup(x)</tt>, it is
computationally difficult to reverse the mapping. This function is optionally
parameterized by a domain separation tag (DST); see <xref target="ciphersuites"/>.</li>
          <li>HashToScalar(x): A member function of <tt>Group</tt> that deterministically maps
an array of bytes <tt>x</tt> to an element in GF(p). This function is optionally
parameterized by a DST; see <xref target="ciphersuites"/>.</li>
          <li>RandomScalar(): A member function of <tt>Group</tt> that chooses at random a
non-zero element in GF(p).</li>
          <li>ScalarInverse(s): Returns the inverse of input Scalar <tt>s</tt> on <tt>GF(p)</tt>.</li>
          <li>SerializeElement(A): A member function of <tt>Group</tt> that maps a group element
<tt>A</tt> to a unique byte array <tt>buf</tt> of fixed length <tt>Ne</tt>.</li>
          <li>DeserializeElement(buf): A member function of <tt>Group</tt> that maps a byte
array <tt>buf</tt> to a group element <tt>A</tt>, or raise a DeserializeError if the
input is not a valid byte representation of an element.
See <xref target="input-validation"/> for further requirements on input validation.</li>
          <li>SerializeScalar(s): A member function of <tt>Group</tt> that maps a scalar element
<tt>s</tt> to a unique byte array <tt>buf</tt> of fixed length <tt>Ns</tt>.</li>
          <li>DeserializeScalar(buf): A member function of <tt>Group</tt> that maps a byte
array <tt>buf</tt> to a scalar <tt>s</tt>, or raise a DeserializeError if the input
is not a valid byte representation of a scalar.
See <xref target="input-validation"/> for further requirements on input validation.</li>
        </ul>
        <t>It is convenient in cryptographic applications to instantiate such
prime-order groups using elliptic curves, such as those detailed in
<xref target="SEC2"/>. For some choices of elliptic curves (e.g. those detailed in
<xref target="RFC7748"/>, which require accounting for cofactors) there are some
implementation issues that introduce inherent discrepancies between
standard prime-order groups and the elliptic curve instantiation. In
this document, all algorithms that we detail assume that the group is a
prime-order group, and this MUST be upheld by any implementation. That is,
any curve instantiation should be written such that any discrepancies
with a prime-order group instantiation are removed. See <xref target="ciphersuites"/>
for advice corresponding to the implementation of this interface for
specific definitions of elliptic curves.</t>
      </section>
      <section anchor="dleq">
        <name>Discrete Logarithm Equivalence Proofs</name>
        <t>A proof of knowledge allows a prover to convince a verifier that some
statement is true. If the prover can generate a proof without interaction
with the verifier, the proof is noninteractive. If the verifier learns
nothing other than whether the statement claimed by the prover is true or
false, the proof is zero-knowledge.</t>
        <t>This section describes a noninteractive zero-knowledge proof for discrete
logarithm equivalence (DLEQ). A DLEQ proof demonstrates that two pairs of
group elements have the same discrete logarithm without revealing the
discrete logarithm.</t>
        <t>The DLEQ proof resembles the Chaum-Pedersen <xref target="ChaumPedersen"/> proof, which
is shown to be zero-knowledge by Jarecki, et al. <xref target="JKK14"/> and is
noninteractive after applying the Fiat-Shamir transform <xref target="FS00"/>.
Furthermore, Davidson, et al. <xref target="DGSTV18"/> showed a proof system for
batching DLEQ proofs that has constant-size proofs with respect to the
number of inputs.
The specific DLEQ proof system presented below follows this latter
construction with two modifications: (1) the transcript used to generate
the seed includes more context information, and (2) the individual challenges
for each element in the proof is derived from a seed-prefixed hash-to-scalar
invocation rather than being sampled from a seeded PRNG.
The description is split into
two sub-sections: one for generating the proof, which is done by servers
in the verifiable protocols, and another for verifying the proof, which is
done by clients in the protocol.</t>
        <section anchor="proof-generation">
          <name>Proof Generation</name>
          <t>Generating a proof is done with the <tt>GenerateProof</tt> function, defined below.
Given elements A and B, two non-empty lists of elements C and D of length
<tt>m</tt>, and a scalar k; this function produces a proof that <tt>k*A == B</tt>
and <tt>k*C[i] == D[i]</tt> for each element in the list.
The output is a value of type Proof, which is a tuple of two Scalar
values.</t>
          <t><tt>GenerateProof</tt> accepts lists of inputs to amortize the cost of proof
generation. Applications can take advantage of this functionality to
produce a single, constant-sized proof for <tt>m</tt> DLEQ inputs, rather
than <tt>m</tt> proofs for <tt>m</tt> DLEQ inputs.</t>
          <artwork><![CDATA[
Input:

  Scalar k
  Element A
  Element B
  Element C[m]
  Element D[m]

Output:

  Proof proof

Parameters:

  Group G

def GenerateProof(k, A, B, C, D)
  (M, Z) = ComputeCompositesFast(k, B, C, D)

  r = G.RandomScalar()
  t2 = r * A
  t3 = r * M

  Bm = G.SerializeElement(B)
  a0 = G.SerializeElement(M)
  a1 = G.SerializeElement(Z)
  a2 = G.SerializeElement(t2)
  a3 = G.SerializeElement(t3)

  h2Input = I2OSP(len(Bm), 2) || Bm ||
            I2OSP(len(a0), 2) || a0 ||
            I2OSP(len(a1), 2) || a1 ||
            I2OSP(len(a2), 2) || a2 ||
            I2OSP(len(a3), 2) || a3 ||
            "Challenge"

  c = G.HashToScalar(h2Input)
  s = (r - c * k) mod G.Order()

  return [c, s]
]]></artwork>
          <t>The helper function ComputeCompositesFast is as defined below.</t>
          <artwork><![CDATA[
Input:

  Scalar k
  Element B
  Element C[m]
  Element D[m]

Output:

  Element M
  Element Z

Parameters:

  Group G
  PublicInput contextString

def ComputeCompositesFast(k, B, C, D):
  Bm = G.SerializeElement(B)
  seedDST = "Seed-" || contextString
  h1Input = I2OSP(len(Bm), 2) || Bm ||
            I2OSP(len(seedDST), 2) || seedDST
  seed = Hash(h1Input)

  M = G.Identity()
  for i in range(m):
    Ci = G.SerializeElement(C[i])
    Di = G.SerializeElement(D[i])
    h2Input = I2OSP(len(seed), 2) || seed || I2OSP(i, 2) ||
              I2OSP(len(Ci), 2) || Ci ||
              I2OSP(len(Di), 2) || Di ||
              "Composite"

    di = G.HashToScalar(h2Input)
    M = di * C[i] + M

  Z = k * M

  return (M, Z)
]]></artwork>
          <t>When used in the protocol described in <xref target="protocol"/>, the parameter <tt>contextString</tt> is
as defined in <xref target="offline"/>.</t>
        </section>
        <section anchor="proof-verification">
          <name>Proof Verification</name>
          <t>Verifying a proof is done with the <tt>VerifyProof</tt> function, defined below.
This function takes elements A and B, two non-empty lists of elements C and D
of length <tt>m</tt>, and a Proof value output from <tt>GenerateProof</tt>. It outputs a
single boolean value indicating whether or not the proof is valid for the
given DLEQ inputs. Note this function can verify proofs on lists of inputs
whenever the proof was generated as a batched DLEQ proof with the same inputs.</t>
          <artwork><![CDATA[
Input:

  Element A
  Element B
  Element C[m]
  Element D[m]
  Proof proof

Output:

  boolean verified

Parameters:

  Group G

def VerifyProof(A, B, C, D, proof):
  (M, Z) = ComputeComposites(B, C, D)
  c = proof[0]
  s = proof[1]

  t2 = ((s * A) + (c * B))
  t3 = ((s * M) + (c * Z))

  Bm = G.SerializeElement(B)
  a0 = G.SerializeElement(M)
  a1 = G.SerializeElement(Z)
  a2 = G.SerializeElement(t2)
  a3 = G.SerializeElement(t3)

  h2Input = I2OSP(len(Bm), 2) || Bm ||
            I2OSP(len(a0), 2) || a0 ||
            I2OSP(len(a1), 2) || a1 ||
            I2OSP(len(a2), 2) || a2 ||
            I2OSP(len(a3), 2) || a3 ||
            "Challenge"

  expectedC = G.HashToScalar(h2Input)

  return expectedC == c
]]></artwork>
          <t>The definition of <tt>ComputeComposites</tt> is given below.</t>
          <artwork><![CDATA[
Input:

  Element B
  Element C[m]
  Element D[m]

Output:

  Element M
  Element Z

Parameters:

  Group G
  PublicInput contextString

def ComputeComposites(B, C, D):
  Bm = G.SerializeElement(B)
  seedDST = "Seed-" || contextString
  h1Input = I2OSP(len(Bm), 2) || Bm ||
            I2OSP(len(seedDST), 2) || seedDST
  seed = Hash(h1Input)

  M = G.Identity()
  Z = G.Identity()
  for i in range(m):
    Ci = G.SerializeElement(C[i])
    Di = G.SerializeElement(D[i])
    h2Input = I2OSP(len(seed), 2) || seed || I2OSP(i, 2) ||
              I2OSP(len(Ci), 2) || Ci ||
              I2OSP(len(Di), 2) || Di ||
              "Composite"

    di = G.HashToScalar(h2Input)
    M = di * C[i] + M
    Z = di * D[i] + Z

  return (M, Z)
]]></artwork>
          <t>When used in the protocol described in <xref target="protocol"/>, the parameter <tt>contextString</tt> is
as defined in <xref target="offline"/>.</t>
        </section>
      </section>
    </section>
    <section anchor="protocol">
      <name>Protocol</name>
      <t>In this section, we define three OPRF protocol variants -- a base mode,
verifiable mode, and partially-oblivious mode -- with the following properties.</t>
      <t>In the base mode, a client and server interact to compute <tt>output = F(skS, input)</tt>,
where <tt>input</tt> is the client's private input, <tt>skS</tt> is the server's private key,
and <tt>output</tt> is the OPRF output. The client learns <tt>output</tt> and the server learns nothing.
This interaction is shown below.</t>
      <figure anchor="fig-oprf">
        <name>OPRF protocol overview</name>
        <artwork><![CDATA[
    Client                                                Server(skS)
  -------------------------------------------------------------------
  blind, blindedElement = Blind(input)

                             blindedElement
                               ---------->

                     evaluatedElement = BlindEvaluate(blindedElement)

                             evaluatedElement
                               <----------

  output = Finalize(input, blind, evaluatedElement)
]]></artwork>
      </figure>
      <t>In the verifiable mode, the client additionally receives proof that the server used <tt>skS</tt> in
computing the function. To achieve verifiability, as in the original work of <xref target="JKK14"/>, the
server provides a zero-knowledge proof that the key provided as input by the server in
the <tt>BlindEvaluate</tt> function is the same key as it used to produce the server's public key, <tt>pkS</tt>,
which the client receives as input to the protocol. This proof does not reveal the server's
private key to the client. This interaction is shown below.</t>
      <figure anchor="fig-voprf">
        <name>VOPRF protocol overview with additional proof</name>
        <artwork><![CDATA[
    Client(pkS)            <---- pkS ------               Server(skS)
  -------------------------------------------------------------------
  blind, blindedElement = Blind(input)

                             blindedElement
                               ---------->

              evaluatedElement, proof = BlindEvaluate(blindedElement)

                         evaluatedElement, proof
                               <----------

  output = Finalize(input, blind, evaluatedElement,
                    blindedElement, proof)
]]></artwork>
      </figure>
      <t>The partially-oblivious mode extends the VOPRF mode such that the client and
server can additionally provide a public input <tt>info</tt> that is used in computing
the pseudorandom function. That is, the client and server interact to compute
<tt>output = F(skS, input, info)</tt>. To support additional public input, the client
and server augment the <tt>pkS</tt> and <tt>skS</tt>, respectively, using the <tt>info</tt> value,
as in <xref target="TCRSTW21"/>.</t>
      <figure anchor="fig-poprf">
        <name>POPRF protocol overview with additional public input</name>
        <artwork><![CDATA[
    Client(pkS, info)        <---- pkS ------       Server(skS, info)
  -------------------------------------------------------------------
  blind, blindedElement, tweakedKey = Blind(input, info)

                             blindedElement
                               ---------->

        evaluatedElement, proof = BlindEvaluate(blindedElement, info)

                         evaluatedElement, proof
                               <----------

  output = Finalize(input, blind, evaluatedElement,
                    blindedElement, proof, info, tweakedKey)
]]></artwork>
      </figure>
      <t>Each protocol consists of an offline setup phase and an online phase,
described in <xref target="offline"/> and <xref target="online"/>, respectively. Configuration details
for the offline phase are described in <xref target="configuration"/>.</t>
      <section anchor="configuration">
        <name>Configuration</name>
        <t>Each of the three protocol variants are identified with a one-byte value:</t>
        <table anchor="tab-modes">
          <name>Identifiers for OPRF modes</name>
          <thead>
            <tr>
              <th align="left">Mode</th>
              <th align="left">Value</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">modeOPRF</td>
              <td align="left">0x00</td>
            </tr>
            <tr>
              <td align="left">modeVOPRF</td>
              <td align="left">0x01</td>
            </tr>
            <tr>
              <td align="left">modePOPRF</td>
              <td align="left">0x02</td>
            </tr>
          </tbody>
        </table>
        <t>Additionally, each protocol variant is instantiated with a ciphersuite,
or suite. Each ciphersuite is identified with a two-byte value, referred
to as <tt>suiteID</tt>; see <xref target="ciphersuites"/> for the registry of initial values.</t>
        <t>The mode and ciphersuite ID values are combined to create a "context string"
used throughout the protocol with the following function:</t>
        <artwork><![CDATA[
def CreateContextString(mode, suiteID):
  return "VOPRF10-" || I2OSP(mode, 1) || I2OSP(suiteID, 2)
]]></artwork>
        <t>[[RFC editor: please change "VOPRF10" to "RFCXXXX", where XXXX is the final number, here and elsewhere before publication.]]</t>
      </section>
      <section anchor="offline">
        <name>Key Generation and Context Setup</name>
        <t>In the offline setup phase, both the client and server create a context used
for executing the online phase of the protocol after agreeing on a mode and
ciphersuite value suiteID. The server key pair (<tt>skS</tt>, <tt>pkS</tt>) is generated
using the following function, which accepts a randomly generated seed of length
<tt>Ns</tt> and optional public <tt>info</tt> string. The constant <tt>Ns</tt> corresponds to the
size of a serialized Scalar and is defined in <xref target="pog"/>.</t>
        <artwork><![CDATA[
Input:

  opaque seed[Ns]
  PublicInput info

Output:

  Scalar skS
  Element pkS

Parameters:

  Group G
  PublicInput contextString

Errors: DeriveKeyPairError

def DeriveKeyPair(seed, info):
  contextString = CreateContextString(mode, suiteID)
  deriveInput = seed || I2OSP(len(info), 2) || info
  counter = 0
  skS = 0
  while skS == 0:
    if counter > 255:
      raise DeriveKeyPairError
    skS = G.HashToScalar(deriveInput || I2OSP(counter, 1),
                          DST = "DeriveKeyPair" || contextString)
    counter = counter + 1
  pkS = G.ScalarBaseMult(skS)
  return skS, pkS
]]></artwork>
        <t>The OPRF variant server and client contexts are created as follows:</t>
        <artwork><![CDATA[
def SetupOPRFServer(suiteID, skS):
  contextString = CreateContextString(modeOPRF, suiteID)
  return OPRFServerContext(contextString, skS)

def SetupOPRFClient(suiteID):
  contextString = CreateContextString(modeOPRF, suiteID)
  return OPRFClientContext(contextString)
]]></artwork>
        <t>The VOPRF variant server and client contexts are created as follows:</t>
        <artwork><![CDATA[
def SetupVOPRFServer(suiteID, skS, pkS):
  contextString = CreateContextString(modeVOPRF, suiteID)
  return VOPRFServerContext(contextString, skS)

def SetupVOPRFClient(suiteID, pkS):
  contextString = CreateContextString(modeVOPRF, suiteID)
  return VOPRFClientContext(contextString, pkS)
]]></artwork>
        <t>The POPRF variant server and client contexts are created as follows:</t>
        <artwork><![CDATA[
def SetupPOPRFServer(suiteID, skS, pkS):
  contextString = CreateContextString(modePOPRF, suiteID)
  return POPRFServerContext(contextString, skS)

def SetupPOPRFClient(suiteID, pkS):
  contextString = CreateContextString(modePOPRF, suiteID)
  return POPRFClientContext(contextString, pkS)
]]></artwork>
      </section>
      <section anchor="online">
        <name>Online Protocol</name>
        <t>In the online phase, the client and server engage in a two message protocol
to compute the protocol output. This section describes the protocol details
for each protocol variant. Throughout each description the following parameters
are assumed to exist:</t>
        <ul spacing="normal">
          <li>G, a prime-order Group implementing the API described in <xref target="pog"/>.</li>
          <li>contextString, a PublicInput domain separation tag constructed during context setup as created in <xref target="configuration"/>.</li>
          <li>skS and pkS, a Scalar and Element representing the private and public keys configured for client and server in <xref target="offline"/>.</li>
        </ul>
        <t>Applications serialize protocol messages between client and server for
transmission. Elements and scalars are serialized to byte arrays, and values
of type Proof are serialized as the concatenation of two serialized scalars.
Deserializing these values can fail, in which case the application MUST abort
the protocol with a <tt>DeserializeError</tt> failure.</t>
        <t>Applications MUST check that input Element values received over the wire
are not the group identity element. This check is handled after deserializing
Element values; see <xref target="input-validation"/> for more information on input
validation.</t>
        <section anchor="oprf">
          <name>OPRF Protocol</name>
          <t>The OPRF protocol begins with the client blinding its input, as described
by the <tt>Blind</tt> function below. Note that this function can fail with an
<tt>InvalidInputError</tt> error for certain inputs that map to the group identity
element. Dealing with this failure is an application-specific decision;
see <xref target="errors"/>.</t>
          <artwork><![CDATA[
Input:

  PrivateInput input

Output:

  Scalar blind
  Element blindedElement

Parameters:

  Group G

Errors: InvalidInputError

def Blind(input):
  blind = G.RandomScalar()
  inputElement = G.HashToGroup(input)
  if inputElement == G.Identity():
    raise InvalidInputError
  blindedElement = blind * inputElement

  return blind, blindedElement
]]></artwork>
          <t>Clients store <tt>blind</tt> locally, and send <tt>blindedElement</tt> to the server for evaluation.
Upon receipt, servers process <tt>blindedElement</tt> using the <tt>BlindEvaluate</tt> function described
below.</t>
          <artwork><![CDATA[
Input:

  Element blindedElement

Output:

  Element evaluatedElement

Parameters:

  Scalar skS

def BlindEvaluate(blindedElement):
  evaluatedElement = skS * blindedElement
  return evaluatedElement
]]></artwork>
          <t>Servers send the output <tt>evaluatedElement</tt> to clients for processing.
Recall that servers may batch multiple client inputs to <tt>BlindEvaluate</tt>.</t>
          <t>Upon receipt of <tt>evaluatedElement</tt>, clients process it to complete the
OPRF evaluation with the <tt>Finalize</tt> function described below.</t>
          <artwork><![CDATA[
Input:

  PrivateInput input
  Scalar blind
  Element evaluatedElement

Output:

  opaque output[Nh]

Parameters:

  Group G

def Finalize(input, blind, evaluatedElement):
  N = G.ScalarInverse(blind) * evaluatedElement
  unblindedElement = G.SerializeElement(N)

  hashInput = I2OSP(len(input), 2) || input ||
              I2OSP(len(unblindedElement), 2) || unblindedElement ||
              "Finalize"
  return Hash(hashInput)
]]></artwork>
          <t>Servers can compute the PRF result using a given input using the following
<tt>Evaluate</tt> function.</t>
          <artwork><![CDATA[
Input:

  PrivateInput input

Output:

  opaque output[Nh]

Parameters:

  Group G
  Scalar skS

Errors: InvalidInputError

def Evaluate(input):
  inputElement = G.HashToGroup(input)
  if inputElement == G.Identity():
    raise InvalidInputError
  evaluatedElement = skS * inputElement
  issuedElement = G.SerializeElement(evaluatedElement)

  hashInput = I2OSP(len(input), 2) || input ||
              I2OSP(len(issuedElement), 2) || issuedElement ||
              "Finalize"
  return Hash(hashInput)
]]></artwork>
        </section>
        <section anchor="voprf">
          <name>VOPRF Protocol</name>
          <t>The VOPRF protocol begins with the client blinding its input, using the same
<tt>Blind</tt> function as in <xref target="oprf"/>. Clients store the output <tt>blind</tt> locally
and send <tt>blindedElement</tt> to the server for evaluation. Upon receipt,
servers process <tt>blindedElement</tt> to compute an evaluated element and DLEQ
proof using the following <tt>BlindEvaluate</tt> function.</t>
          <artwork><![CDATA[
Input:

  Element blindedElement

Output:

  Element evaluatedElement
  Proof proof

Parameters:

  Group G
  Scalar skS
  Element pkS

def BlindEvaluate(blindedElement):
  evaluatedElement = skS * blindedElement
  blindedElements = [blindedElement]     // list of length 1
  evaluatedElements = [evaluatedElement] // list of length 1
  proof = GenerateProof(skS, G.Generator(), pkS,
                        blindedElements, evaluatedElements)
  return evaluatedElement, proof
]]></artwork>
          <t>In the description above, inputs to <tt>GenerateProof</tt> are one-item
lists. Using larger lists allows servers to batch the evaluation of multiple
elements while producing a single batched DLEQ proof for them.</t>
          <t>The server sends both <tt>evaluatedElement</tt> and <tt>proof</tt> back to the client.
Upon receipt, the client processes both values to complete the VOPRF computation
using the <tt>Finalize</tt> function below.</t>
          <artwork><![CDATA[
Input:

  PrivateInput input
  Scalar blind
  Element evaluatedElement
  Element blindedElement
  Proof proof

Output:

  opaque output[Nh]

Parameters:

  Group G
  Element pkS

Errors: VerifyError

def Finalize(input, blind, evaluatedElement, blindedElement, proof):
  blindedElements = [blindedElement]     // list of length 1
  evaluatedElements = [evaluatedElement] // list of length 1
  if VerifyProof(G.Generator(), pkS, blindedElements,
                 evaluatedElements, proof) == false:
    raise VerifyError

  N = G.ScalarInverse(blind) * evaluatedElement
  unblindedElement = G.SerializeElement(N)

  hashInput = I2OSP(len(input), 2) || input ||
              I2OSP(len(unblindedElement), 2) || unblindedElement ||
              "Finalize"
  return Hash(hashInput)
]]></artwork>
          <t>As in <tt>BlindEvaluate</tt>, inputs to <tt>VerifyProof</tt> are one-item lists. Clients can
verify multiple inputs at once whenever the server produced a batched DLEQ proof
for them.</t>
          <t>Finally, servers can compute the PRF result using a given input using the <tt>Evaluate</tt>
function described in <xref target="oprf"/>.</t>
        </section>
        <section anchor="poprf">
          <name>POPRF Protocol</name>
          <t>The POPRF protocol begins with the client blinding its input, using the
following modified <tt>Blind</tt> function. Note that this function can fail with an
<tt>InvalidInputError</tt> error for certain private inputs that map to the group
identity element, as well as certain public inputs that map to invalid
public keys for server evaluation. Dealing with either failure is an
application-specific decision; see <xref target="errors"/>.</t>
          <artwork><![CDATA[
Input:

  PrivateInput input
  PublicInput info

Output:

  Scalar blind
  Element blindedElement
  Element tweakedKey

Parameters:

  Group G
  Element pkS

Errors: InvalidInputError

def Blind(input, info):
  framedInfo = "Info" || I2OSP(len(info), 2) || info
  m = G.HashToScalar(framedInfo)
  T = G.ScalarBaseMult(m)
  tweakedKey = T + pkS
  if tweakedKey == G.Identity():
    raise InvalidInputError

  blind = G.RandomScalar()
  inputElement = G.HashToGroup(input)
  if inputElement == G.Identity():
    raise InvalidInputError

  blindedElement = blind * inputElement

  return blind, blindedElement, tweakedKey
]]></artwork>
          <t>Clients store the outputs <tt>blind</tt> and <tt>tweakedKey</tt> locally and send <tt>blindedElement</tt> to
the server for evaluation. Upon receipt, servers process <tt>blindedElement</tt> to
compute an evaluated element and DLEQ proof using the following <tt>BlindEvaluate</tt> function.</t>
          <artwork><![CDATA[
Input:

  Element blindedElement
  PublicInput info

Output:

  Element evaluatedElement
  Proof proof

Parameters:

  Group G
  Scalar skS
  Element pkS

Errors: InverseError

def BlindEvaluate(blindedElement, info):
  framedInfo = "Info" || I2OSP(len(info), 2) || info
  m = G.HashToScalar(framedInfo)
  t = skS + m
  if t == 0:
    raise InverseError

  evaluatedElement = G.ScalarInverse(t) * blindedElement

  tweakedKey = G.ScalarBaseMult(t)
  evaluatedElements = [evaluatedElement] // list of length 1
  blindedElements = [blindedElement]     // list of length 1
  proof = GenerateProof(t, G.Generator(), tweakedKey,
                        evaluatedElements, blindedElements)

  return evaluatedElement, proof
]]></artwork>
          <t>In the description above, inputs to <tt>GenerateProof</tt> are one-item
lists. Using larger lists allows servers to batch the evaluation of multiple
elements while producing a single batched DLEQ proof for them.</t>
          <t>The server sends both <tt>evaluatedElement</tt> and <tt>proof</tt> back to the client.
Upon receipt, the client processes both values to complete the POPRF computation
using the <tt>Finalize</tt> function below.</t>
          <artwork><![CDATA[
Input:

  PrivateInput input
  Scalar blind
  Element evaluatedElement
  Element blindedElement
  Proof proof
  PublicInput info
  Element tweakedKey

Output:

  opaque output[Nh]

Parameters:

  Group G
  Element pkS

Errors: VerifyError

def Finalize(input, blind, evaluatedElement, blindedElement,
             proof, info, tweakedKey):
  evaluatedElements = [evaluatedElement] // list of length 1
  blindedElements = [blindedElement]     // list of length 1
  if VerifyProof(G.Generator(), tweakedKey, evaluatedElements,
                 blindedElements, proof) == false:
    raise VerifyError

  N = G.ScalarInverse(blind) * evaluatedElement
  unblindedElement = G.SerializeElement(N)

  hashInput = I2OSP(len(input), 2) || input ||
              I2OSP(len(info), 2) || info ||
              I2OSP(len(unblindedElement), 2) || unblindedElement ||
              "Finalize"
  return Hash(hashInput)
]]></artwork>
          <t>As in <tt>BlindEvaluate</tt>, inputs to <tt>VerifyProof</tt> are one-item lists.
Clients can verify multiple inputs at once whenever the server produced a
batched DLEQ proof for them.</t>
          <t>Finally, servers can compute the PRF result using a given input using the <tt>Evaluate</tt>
function described below.</t>
          <artwork><![CDATA[
Input:

  PrivateInput input
  PublicInput info

Output:

  opaque output[Nh]

Parameters:

  Group G
  Scalar skS

Errors: InvalidInputError, InverseError

def Evaluate(input, info):
  inputElement = G.HashToGroup(input)
  if inputElement == G.Identity():
    raise InvalidInputError

  framedInfo = "Info" || I2OSP(len(info), 2) || info
  m = G.HashToScalar(framedInfo)
  t = skS + m
  if t == 0:
    raise InverseError
  evaluatedElement = G.ScalarInverse(t) * inputElement
  issuedElement = G.SerializeElement(evaluatedElement)

  hashInput = I2OSP(len(input), 2) || input ||
              I2OSP(len(info), 2) || info ||
              I2OSP(len(issuedElement), 2) || issuedElement ||
              "Finalize"
  return Hash(hashInput)
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="ciphersuites">
      <name>Ciphersuites</name>
      <t>A ciphersuite (also referred to as 'suite' in this document) for the protocol
wraps the functionality required for the protocol to take place. The
ciphersuite should be available to both the client and server, and agreement
on the specific instantiation is assumed throughout.</t>
      <t>A ciphersuite contains instantiations of the following functionalities:</t>
      <ul spacing="normal">
        <li>
          <tt>Group</tt>: A prime-order Group exposing the API detailed in <xref target="pog"/>, with base
point defined in the corresponding reference for each group. Each group also
specifies HashToGroup, HashToScalar, and serialization functionalities. For
HashToGroup, the domain separation tag (DST) is constructed in accordance
with the recommendations in <xref target="I-D.irtf-cfrg-hash-to-curve"/>, Section 3.1.
For HashToScalar, each group specifies an integer order that is used in
reducing integer values to a member of the corresponding scalar field.</li>
        <li>
          <tt>Hash</tt>: A cryptographic hash function whose output length is Nh bytes long.</li>
      </ul>
      <t>This section specifies an initial registry of ciphersuites with supported groups
and hash functions. It also includes implementation details for each ciphersuite,
focusing on input validation, as well as requirements for future ciphersuites.</t>
      <section anchor="ciphersuite-registry">
        <name>Ciphersuite Registry</name>
        <t>For each ciphersuite, contextString is that which is computed in the Setup functions.
Applications should take caution in using ciphersuites targeting P-256 and ristretto255.
See <xref target="cryptanalysis"/> for related discussion.</t>
        <section anchor="oprfristretto255-sha-512">
          <name>OPRF(ristretto255, SHA-512)</name>
          <ul spacing="normal">
            <li>
              <t>Group: ristretto255 <xref target="RISTRETTO"/>
              </t>
              <ul spacing="normal">
                <li>HashToGroup(): Use hash_to_ristretto255
<xref target="I-D.irtf-cfrg-hash-to-curve"/> with DST =
"HashToGroup-" || contextString, and <tt>expand_message</tt> = <tt>expand_message_xmd</tt>
using SHA-512.</li>
                <li>HashToScalar(): Compute <tt>uniform_bytes</tt> using <tt>expand_message</tt> = <tt>expand_message_xmd</tt>,
DST = "HashToScalar-" || contextString, and output length 64, interpret
<tt>uniform_bytes</tt> as a 512-bit integer in little-endian order, and reduce the integer
modulo <tt>Order()</tt>.</li>
                <li>Serialization: Both group elements and scalars are encoded in Ne = Ns = 32
bytes. For group elements, use the 'Encode' and 'Decode' functions from
<xref target="RISTRETTO"/>. For scalars, ensure they are fully reduced modulo <tt>Order()</tt>
and in little-endian order.</li>
              </ul>
            </li>
            <li>Hash: SHA-512, and Nh = 64.</li>
            <li>ID: 0x0001</li>
          </ul>
        </section>
        <section anchor="oprfdecaf448-shake-256">
          <name>OPRF(decaf448, SHAKE-256)</name>
          <ul spacing="normal">
            <li>
              <t>Group: decaf448 <xref target="RISTRETTO"/>
              </t>
              <ul spacing="normal">
                <li>HashToGroup(): Use hash_to_decaf448
<xref target="I-D.irtf-cfrg-hash-to-curve"/> with DST =
"HashToGroup-" || contextString, and <tt>expand_message</tt> = <tt>expand_message_xof</tt>
using SHAKE-256.</li>
                <li>HashToScalar(): Compute <tt>uniform_bytes</tt> using <tt>expand_message</tt> = <tt>expand_message_xof</tt>,
DST = "HashToScalar-" || contextString, and output length 64, interpret
<tt>uniform_bytes</tt> as a 512-bit integer in little-endian order, and reduce the integer
modulo <tt>Order()</tt>.</li>
                <li>Serialization: Both group elements and scalars are encoded in Ne = Ns = 56
bytes. For group elements, use the 'Encode' and 'Decode' functions from
<xref target="RISTRETTO"/>. For scalars, ensure they are fully reduced modulo <tt>Order()</tt>
and in little-endian order.</li>
              </ul>
            </li>
            <li>Hash: SHAKE-256, and Nh = 64.</li>
            <li>ID: 0x0002</li>
          </ul>
        </section>
        <section anchor="oprfp-256-sha-256">
          <name>OPRF(P-256, SHA-256)</name>
          <ul spacing="normal">
            <li>
              <t>Group: P-256 (secp256r1) <xref target="x9.62"/>
              </t>
              <ul spacing="normal">
                <li>HashToGroup(): Use hash_to_curve with suite P256_XMD:SHA-256_SSWU_RO_
<xref target="I-D.irtf-cfrg-hash-to-curve"/> and DST =
"HashToGroup-" || contextString.</li>
                <li>HashToScalar(): Use hash_to_field from <xref target="I-D.irtf-cfrg-hash-to-curve"/>
using L = 48, <tt>expand_message_xmd</tt> with SHA-256,
DST = "HashToScalar-" || contextString, and
prime modulus equal to <tt>Order()</tt>.</li>
                <li>Serialization: Elements are serialized as Ne = 33 byte strings using
compressed point encoding for the curve <xref target="SEC1"/>. Scalars are serialized as
Ns = 32 byte strings by fully reducing the value modulo <tt>Order()</tt> and in big-endian
order.</li>
              </ul>
            </li>
            <li>Hash: SHA-256, and Nh = 32.</li>
            <li>ID: 0x0003</li>
          </ul>
        </section>
        <section anchor="oprfp-384-sha-384">
          <name>OPRF(P-384, SHA-384)</name>
          <ul spacing="normal">
            <li>
              <t>Group: P-384 (secp384r1) <xref target="x9.62"/>
              </t>
              <ul spacing="normal">
                <li>HashToGroup(): Use hash_to_curve with suite P384_XMD:SHA-384_SSWU_RO_
<xref target="I-D.irtf-cfrg-hash-to-curve"/> and DST =
"HashToGroup-" || contextString.</li>
                <li>HashToScalar(): Use hash_to_field from <xref target="I-D.irtf-cfrg-hash-to-curve"/>
using L = 72, <tt>expand_message_xmd</tt> with SHA-384,
DST = "HashToScalar-" || contextString, and
prime modulus equal to <tt>Order()</tt>.</li>
                <li>Serialization: Elements are serialized as Ne = 49 byte strings using
compressed point encoding for the curve <xref target="SEC1"/>. Scalars are serialized as
Ns = 48 byte strings by fully reducing the value modulo <tt>Order()</tt> and in big-endian
order.</li>
              </ul>
            </li>
            <li>Hash: SHA-384, and Nh = 48.</li>
            <li>ID: 0x0004</li>
          </ul>
        </section>
        <section anchor="oprfp-521-sha-512">
          <name>OPRF(P-521, SHA-512)</name>
          <ul spacing="normal">
            <li>
              <t>Group: P-521 (secp521r1) <xref target="x9.62"/>
              </t>
              <ul spacing="normal">
                <li>HashToGroup(): Use hash_to_curve with suite P521_XMD:SHA-512_SSWU_RO_
<xref target="I-D.irtf-cfrg-hash-to-curve"/> and DST =
"HashToGroup-" || contextString.</li>
                <li>HashToScalar(): Use hash_to_field from <xref target="I-D.irtf-cfrg-hash-to-curve"/>
using L = 98, <tt>expand_message_xmd</tt> with SHA-512,
DST = "HashToScalar-" || contextString, and
prime modulus equal to <tt>Order()</tt>.</li>
                <li>Serialization: Elements are serialized as Ne = 67 byte strings using
compressed point encoding for the curve <xref target="SEC1"/>. Scalars are serialized as
Ns = 66 byte strings by fully reducing the value modulo <tt>Order()</tt> and in big-endian
order.</li>
              </ul>
            </li>
            <li>Hash: SHA-512, and Nh = 64.</li>
            <li>ID: 0x0005</li>
          </ul>
        </section>
      </section>
      <section anchor="input-validation">
        <name>Input Validation</name>
        <t>Since messages are serialized before transmission between client and server,
deserialization is followed by input validation to prevent malformed or
invalid inputs from being used in the protocol.
The DeserializeElement and DeserializeScalar functions instantiated for a
particular prime-order group corresponding to a ciphersuite MUST adhere
to the description in <xref target="pog"/>. This section describes how input validation
of elements and scalars is implemented for all prime-order groups included
in the above ciphersuite list.</t>
        <section anchor="element-validation">
          <name>Element Validation</name>
          <t>Recovering a group element from an arbitrary byte array must validate that
the element is a proper member of the group and is not the identity element,
and returns an error if either condition is not met.</t>
          <t>For P-256, P-384, and P-521 ciphersuites, it is required to perform partial
public-key validation as defined in Section 5.6.2.3.4 of <xref target="keyagreement"/>.
This includes checking that the coordinates are in the correct range, that
the point is on the curve, and that the point is not the identity.
If these checks fail, validation returns an InputValidationError.</t>
          <t>For ristretto255 and decaf448, elements are deserialized by invoking the Decode
function from <xref section="4.3.1" sectionFormat="comma" target="RISTRETTO"/> and <xref section="5.3.1" sectionFormat="comma" target="RISTRETTO"/>, respectively,
which returns false if the input is invalid. If this function returns false
or if the decoded element is the identity, validation returns an
InputValidationError.</t>
        </section>
        <section anchor="scalar-validation">
          <name>Scalar Validation</name>
          <t>The DeserializeScalar function attempts to recover a scalar field element from an arbitrary
byte array. Like DeserializeElement, this function validates that the element
is a member of the scalar field and returns an error if this condition is not met.</t>
          <t>For P-256, P-384, and P-521 ciphersuites, this function ensures that the input,
when treated as a big-endian integer, is a value between 0 and <tt>Order() - 1</tt>. For
ristretto255 and decaf448, this function ensures that the input, when treated as
a little-endian integer, is a value between 0 and <tt>Order() - 1</tt>.</t>
        </section>
      </section>
      <section anchor="future-ciphersuites">
        <name>Future Ciphersuites</name>
        <t>A critical requirement of implementing the prime-order group using
elliptic curves is a method to instantiate the function
<tt>HashToGroup</tt>, that maps inputs to group elements. In the elliptic
curve setting, this deterministically maps inputs x (as byte arrays) to
uniformly chosen points on the curve.</t>
        <t>In the security proof of the construction Hash is modeled as a random
oracle. This implies that any instantiation of <tt>HashToGroup</tt> must be
pre-image and collision resistant. In <xref target="ciphersuites"/> we give
instantiations of this functionality based on the functions described in
<xref target="I-D.irtf-cfrg-hash-to-curve"/>. Consequently, any OPRF implementation
must adhere to the implementation and security considerations discussed
in <xref target="I-D.irtf-cfrg-hash-to-curve"/> when instantiating the function.</t>
        <t>Additionally, future ciphersuites must take care when choosing the
security level of the group. See <xref target="limits"/> for additional details.</t>
      </section>
    </section>
    <section anchor="apis">
      <name>Application Considerations</name>
      <t>This section describes considerations for applications, including external interface
recommendations, explicit error treatment, and public input representation for the
POPRF protocol variant.</t>
      <section anchor="input-limits">
        <name>Input Limits</name>
        <t>Application inputs, expressed as PrivateInput or PublicInput values, MUST be smaller
than 2^13 bytes in length. Applications that require longer inputs can use a cryptographic
hash function to map these longer inputs to a fixed-length input that fits within the
PublicInput or PrivateInput length bounds. Note that some cryptographic hash functions
have input length restrictions themselves, but these limits are often large enough to
not be a concern in practice. For example, SHA-256 has an input limit of 2^61 bytes.</t>
      </section>
      <section anchor="external-interface-recommendations">
        <name>External Interface Recommendations</name>
        <t>The protocol functions in <xref target="online"/> are specified in terms of prime-order group
Elements and Scalars. However, applications can treat these as internal functions,
and instead expose interfaces that operate in terms of wire format messages.</t>
      </section>
      <section anchor="errors">
        <name>Error Considerations</name>
        <t>Some OPRF variants specified in this document have fallible operations. For example, <tt>Finalize</tt>
and <tt>BlindEvaluate</tt> can fail if any element received from the peer fails input validation.
The explicit errors generated throughout this specification, along with the
conditions that lead to each error, are as follows:</t>
        <ul spacing="normal">
          <li>
            <tt>VerifyError</tt>: Verifiable OPRF proof verification failed; <xref target="voprf"/> and <xref target="poprf"/>.</li>
          <li>
            <tt>DeserializeError</tt>: Group Element or Scalar deserialization failure; <xref target="pog"/> and <xref target="online"/>.</li>
          <li>
            <tt>InputValidationError</tt>: Validation of byte array inputs failed; <xref target="input-validation"/>.</li>
        </ul>
        <t>There are other explicit errors generated in this specification, however they occur with
negligible probability in practice. We note them here for completeness.</t>
        <ul spacing="normal">
          <li>
            <tt>InvalidInputError</tt>: OPRF Blind input produces an invalid output element; <xref target="oprf"/> and <xref target="poprf"/>.</li>
          <li>
            <tt>InverseError</tt>: A tweaked private key is invalid (has no multiplicative inverse); <xref target="pog"/> and <xref target="online"/>.</li>
        </ul>
        <t>In general, the errors in this document are meant as a guide to implementors.
They are not an exhaustive list of all the errors an implementation might emit.
For example, implementations might run out of memory and return a corresponding error.</t>
      </section>
      <section anchor="poprf-public-input">
        <name>POPRF Public Input</name>
        <t>Functionally, the VOPRF and POPRF variants differ in that the POPRF variant
admits public input, whereas the VOPRF variant does not. Public input allows
clients and servers to cryptographically bind additional data to the POPRF output.
A POPRF with fixed public input is functionally equivalent to a VOPRF. However, there
are differences in the underlying security assumptions made about each variant;
see <xref target="cryptanalysis"/> for more details.</t>
        <t>This public input is known to both parties at the start of the protocol. It is RECOMMENDED
that this public input be constructed with some type of higher-level domain separation
to avoid cross protocol attacks or related issues. For example, protocols using
this construction might ensure that the public input uses a unique, prefix-free encoding.
See <xref section="10.4" sectionFormat="comma" target="I-D.irtf-cfrg-hash-to-curve"/> for further discussion on
constructing domain separation values.</t>
        <t>Implementations of the POPRF may choose to not let applications control <tt>info</tt> in
cases where this value is fixed or otherwise not useful to the application. In this
case, the resulting protocol is functionally equivalent to the VOPRF, which does not
admit public input.</t>
      </section>
    </section>
    <section anchor="sec">
      <name>Security Considerations</name>
      <t>This section discusses the cryptographic security of our protocol, along
with some suggestions and trade-offs that arise from the implementation
of the OPRF variants in this document. Note that the syntax of the POPRF
variant is different from that of the OPRF and POPRF variants since it
admits an additional public input, but the same security considerations apply.</t>
      <section anchor="properties">
        <name>Security Properties</name>
        <t>The security properties of an OPRF protocol with functionality y = F(k, x)
include those of a standard PRF. Specifically:</t>
        <ul spacing="normal">
          <li>Pseudorandomness: F is pseudorandom if the output y = F(k, x) on any
input x is indistinguishable from uniformly sampling any element in
F's range, for a random sampling of k.</li>
        </ul>
        <t>In other words, consider an adversary that picks inputs x from the
domain of F and evaluates F on (k, x) (without knowledge of randomly
sampled k). Then the output distribution F(k, x) is indistinguishable
from the output distribution of a randomly chosen function with the same
domain and range.</t>
        <t>A consequence of showing that a function is pseudorandom, is that it is
necessarily non-malleable (i.e. we cannot compute a new evaluation of F
from an existing evaluation). A genuinely random function will be
non-malleable with high probability, and so a pseudorandom function must
be non-malleable to maintain indistinguishability.</t>
        <ul spacing="normal">
          <li>Unconditional input secrecy: The server does not learn anything about
the client input x, even with unbounded computation.</li>
        </ul>
        <t>In other words, an attacker with infinite compute cannot recover any information
about the client's private input x from an invocation of the protocol.</t>
        <t>Additionally, for the VOPRF and POPRF protocol variants, there is an additional
security property:</t>
        <ul spacing="normal">
          <li>Verifiable: The client must only complete execution of the protocol if
it can successfully assert that the POPRF output it computes is
correct. This is taken with respect to the POPRF key held by the
server.</li>
        </ul>
        <t>Any VOPRF or POPRF that satisfies the 'verifiable' security property is known
as 'verifiable'. In practice, the notion of verifiability requires that
the server commits to the key before the actual protocol execution takes
place. Then the client verifies that the server has used the key in the
protocol using this commitment. In the following, we may also refer to this
commitment as a public key.</t>
        <t>Finally, the POPRF variant also has the following security property:</t>
        <ul spacing="normal">
          <li>Partial obliviousness: The server must learn nothing about the client's
private input or the output of the function. In addition, the client must
learn nothing about the server's private key. Both client and server learn
the public input (info).</li>
        </ul>
        <t>Essentially, partial obliviousness tells us that, even if the server learns
the client's private input x at some point in the future, then the server will
not be able to link any particular POPRF evaluation to x. This property is
also known as unlinkability <xref target="DGSTV18"/>.</t>
      </section>
      <section anchor="cryptanalysis">
        <name>Security Assumptions</name>
        <t>Below, we discuss the cryptographic security of each protocol variant
from <xref target="protocol"/>, relative to the necessary cryptographic assumptions
that need to be made.</t>
        <section anchor="oprf-and-voprf-assumptions">
          <name>OPRF and VOPRF Assumptions</name>
          <t>The OPRF and VOPRF protocol variants in this document are based on <xref target="JKK14"/>.
In fact, the VOPRF construction is identical to the <xref target="JKK14"/> construction, except
that this document supports batching so that multiple evaluations can happen
at once whilst only constructing one DLEQ proof object. This is enabled using
an established batching technique <xref target="DGSTV18"/>.</t>
          <t>The pseudorandomness and input secrecy (and verifiability) of the OPRF (and VOPRF) variants
is based on the assumption that the One-More Gap Computational Diffie Hellman (CDH) is computationally
difficult to solve in the corresponding prime-order group. The original paper <xref target="JKK14"/>
gives a security proof that the construction satisfies the security guarantees of a
VOPRF protocol <xref target="properties"/> under the One-More Gap CDH assumption in the universal
composability (UC) security framework.</t>
        </section>
        <section anchor="poprf-assumptions">
          <name>POPRF Assumptions</name>
          <t>The POPRF construction in this document is based on the construction known
as 3HashSDHI given by <xref target="TCRSTW21"/>. The construction is identical to
3HashSDHI, except that this design can optionally perform multiple POPRF
evaluations in one go, whilst only constructing one DLEQ proof object.
This is enabled using an established batching technique <xref target="DGSTV18"/>.</t>
          <t>Pseudorandomness, input secrecy, verifiability, and partial obliviousness of the POPRF variant is
based on the assumption that the One-More Gap Strong Diffie-Hellman Inversion (SDHI)
assumption from <xref target="TCRSTW21"/> is computationally difficult to solve in the corresponding
prime-order group. Tyagi et al. <xref target="TCRSTW21"/> show that both the One-More Gap CDH assumption
and the One-More Gap SDHI assumption reduce to the q-DL (Discrete Log) assumption
in the algebraic group model, for some q number of <tt>BlindEvaluate</tt> queries.
(The One-More Gap CDH assumption was the hardness assumption used to
evaluate the OPRF and VOPRF designs based on <xref target="JKK14"/>, which is a predecessor
to the POPRF variant in <xref target="poprf"/>.)</t>
        </section>
        <section anchor="limits">
          <name>Static Diffie Hellman Attack and Security Limits</name>
          <t>A side-effect of the OPRF protocol variants in this document is that they allow
instantiation of an oracle for constructing static DH samples; see <xref target="BG04"/> and <xref target="Cheon06"/>.
These attacks are meant to recover (bits of) the server private key.
Best-known attacks reduce the security of the prime-order group instantiation by log_2(Q)/2
bits, where Q is the number of <tt>BlindEvalute</tt> calls made by the attacker.</t>
          <t>As a result of this class of attack, choosing prime-order groups with a 128-bit security
level instantiates an OPRF with a reduced security level of 128-(log_2(Q)/2) bits of security.
Moreover, such attacks are only possible for those certain applications where the
adversary can query the OPRF directly. Applications can mitigate against this problem
in a variety of ways, e.g., by rate-limiting client queries to <tt>BlindEvaluate</tt> or by
rotating private keys. In applications where such an oracle is not made available
this security loss does not apply.</t>
          <t>In most cases, it would require an informed and persistent attacker to
launch a highly expensive attack to reduce security to anything much
below 100 bits of security. Applications that admit the aforementioned
oracle functionality, and that cannot tolerate discrete logarithm security
of lower than 128 bits, are RECOMMENDED to choose groups that target a
higher security level, such as decaf448 (used by ciphersuite 0x0002),
P-384 (used by 0x0004), or P-521 (used by 0x0005).</t>
        </section>
      </section>
      <section anchor="domain-separation">
        <name>Domain Separation</name>
        <t>Applications SHOULD construct input to the protocol to provide domain
separation. Any system which has multiple OPRF applications should
distinguish client inputs to ensure the OPRF results are separate.
Guidance for constructing info can be found in <xref section="3.1" sectionFormat="comma" target="I-D.irtf-cfrg-hash-to-curve"/>.</t>
      </section>
      <section anchor="timing-leaks">
        <name>Timing Leaks</name>
        <t>To ensure no information is leaked during protocol execution, all
operations that use secret data MUST run in constant time. This includes
all prime-order group operations and proof-specific operations that
operate on secret data, including <tt>GenerateProof</tt> and <tt>BlindEvaluate</tt>.</t>
      </section>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>This document resulted from the work of the Privacy Pass team
<xref target="PrivacyPass"/>. The authors would also like to acknowledge helpful
conversations with Hugo Krawczyk. Eli-Shaoul Khedouri provided
additional review and comments on key consistency. Daniel Bourdrez,
Tatiana Bradley, Sofia Celi, Frank Denis, Kevin Lewi, Christopher Patton,
and Bas Westerbaan also provided helpful input and contributions to the document.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <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="I-D.irtf-cfrg-opaque">
          <front>
            <title>The OPAQUE Asymmetric PAKE Protocol</title>
            <author fullname="Daniel Bourdrez">
	 </author>
            <author fullname="Hugo Krawczyk">
              <organization>Algorand Foundation</organization>
            </author>
            <author fullname="Kevin Lewi">
              <organization>Novi Research</organization>
            </author>
            <author fullname="Christopher A. Wood">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <date day="7" month="March" year="2022"/>
            <abstract>
              <t>   This document describes the OPAQUE protocol, a secure asymmetric
   password-authenticated key exchange (aPAKE) that supports mutual
   authentication in a client-server setting without reliance on PKI and
   with security against pre-computation attacks upon server compromise.
   In addition, the protocol provides forward secrecy and the ability to
   hide the password from the server, even during password registration.
   This document specifies the core OPAQUE protocol and one
   instantiation based on 3DH.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-opaque-08"/>
        </reference>
        <reference anchor="I-D.ietf-privacypass-protocol">
          <front>
            <title>Privacy Pass Issuance Protocol</title>
            <author fullname="Sofía Celi">
              <organization>Cloudflare</organization>
            </author>
            <author fullname="Alex Davidson">
              <organization>Brave Software</organization>
            </author>
            <author fullname="Armando Faz-Hernandez">
              <organization>Cloudflare</organization>
            </author>
            <author fullname="Steven Valdez">
              <organization>Google LLC</organization>
            </author>
            <author fullname="Christopher A. Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="1" month="July" year="2022"/>
            <abstract>
              <t>   This document specifies two variants of the the two-message issuance
   protocol for Privacy Pass tokens: one that produces tokens that are
   privately verifiable, and another that produces tokens that are
   publicly verifiable.  The privately verifiable issuance protocol
   optionally supports public metadata during the issuance flow.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-privacypass-protocol-05"/>
        </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="RFC8017">
          <front>
            <title>PKCS #1: RSA Cryptography Specifications Version 2.2</title>
            <author fullname="K. Moriarty" initials="K." role="editor" surname="Moriarty">
              <organization/>
            </author>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski">
              <organization/>
            </author>
            <author fullname="J. Jonsson" initials="J." surname="Jonsson">
              <organization/>
            </author>
            <author fullname="A. Rusch" initials="A." surname="Rusch">
              <organization/>
            </author>
            <date month="November" year="2016"/>
            <abstract>
              <t>This document provides recommendations for the implementation of public-key cryptography based on the RSA algorithm, covering cryptographic primitives, encryption schemes, signature schemes with appendix, and ASN.1 syntax for representing keys and for identifying the schemes.</t>
              <t>This document represents a republication of PKCS #1 v2.2 from RSA Laboratories' Public-Key Cryptography Standards (PKCS) series.  By publishing this RFC, change control is transferred to the IETF.</t>
              <t>This document also obsoletes RFC 3447.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8017"/>
          <seriesInfo name="DOI" value="10.17487/RFC8017"/>
        </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="15" month="June" year="2022"/>
            <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-16"/>
        </reference>
        <reference anchor="RISTRETTO">
          <front>
            <title>The ristretto255 and decaf448 Groups</title>
            <author fullname="Henry de Valence">
	 </author>
            <author fullname="Jack Grigg">
	 </author>
            <author fullname="Mike Hamburg">
	 </author>
            <author fullname="Isis Lovecruft">
	 </author>
            <author fullname="George Tankersley">
	 </author>
            <author fullname="Filippo Valsorda">
	 </author>
            <date day="25" month="February" year="2022"/>
            <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-03"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <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="PrivacyPass" target="https://github.com/privacypass/team">
          <front>
            <title>Privacy Pass</title>
            <author>
              <organization/>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="BG04" target="https://eprint.iacr.org/2004/306">
          <front>
            <title>The Static Diffie-Hellman Problem</title>
            <author initials="D." surname="Brown">
              <organization>Certicom Research</organization>
            </author>
            <author initials="R." surname="Gallant">
              <organization>Certicom Research</organization>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="ChaumPedersen">
          <front>
            <title>Wallet Databases with Observers</title>
            <author fullname="David Chaum" initials="D." surname="Chaum">
              <organization/>
            </author>
            <author fullname="Torben Pryds Pedersen" initials="T." surname="Pedersen">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
          <seriesInfo name="Advances in Cryptology - CRYPTO' 92" value="pp. 89-105"/>
          <seriesInfo name="DOI" value="10.1007/3-540-48071-4_7"/>
        </reference>
        <reference anchor="Cheon06">
          <front>
            <title>Security Analysis of the Strong Diffie-Hellman Problem</title>
            <author fullname="Jung Hee Cheon" initials="J." surname="Cheon">
              <organization/>
            </author>
            <date year="2006"/>
          </front>
          <seriesInfo name="Advances in Cryptology - EUROCRYPT 2006" value="pp. 1-11"/>
          <seriesInfo name="DOI" value="10.1007/11761679_1"/>
        </reference>
        <reference anchor="FS00" target="https://doi.org/10.1007/3-540-47721-7_12">
          <front>
            <title>How To Prove Yourself: Practical Solutions to Identification and Signature Problems</title>
            <author initials="A." surname="Fiat">
              <organization>The Weizmann Institute of Science, Israel</organization>
            </author>
            <author initials="A." surname="Shamir">
              <organization>The Weizmann Institute of Science, Israel</organization>
            </author>
            <date year="2000" month="December"/>
          </front>
        </reference>
        <reference anchor="JKKX16">
          <front>
            <title>Highly-Efficient and Composable Password-Protected Secret Sharing (Or: How to Protect Your Bitcoin Wallet Online)</title>
            <author fullname="Stanislaw Jarecki" initials="S." surname="Jarecki">
              <organization/>
            </author>
            <author fullname="Aggelos Kiayias" initials="A." surname="Kiayias">
              <organization/>
            </author>
            <author fullname="Hugo Krawczyk" initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <author fullname="Jiayu Xu" initials="J." surname="Xu">
              <organization/>
            </author>
            <date month="March" year="2016"/>
          </front>
          <seriesInfo name="2016 IEEE European Symposium on Security and Privacy" value="(EuroS&amp;P)"/>
          <seriesInfo name="DOI" value="10.1109/eurosp.2016.30"/>
        </reference>
        <reference anchor="JKK14">
          <front>
            <title>Round-Optimal Password-Protected Secret Sharing and T-PAKE in the Password-Only Model</title>
            <author fullname="Stanislaw Jarecki" initials="S." surname="Jarecki">
              <organization/>
            </author>
            <author fullname="Aggelos Kiayias" initials="A." surname="Kiayias">
              <organization/>
            </author>
            <author fullname="Hugo Krawczyk" initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <date year="2014"/>
          </front>
          <seriesInfo name="Lecture Notes in Computer Science" value="pp. 233-253"/>
          <seriesInfo name="DOI" value="10.1007/978-3-662-45608-8_13"/>
        </reference>
        <reference anchor="SJKS17">
          <front>
            <title>SPHINX: A Password Store that Perfectly Hides Passwords from Itself</title>
            <author fullname="Maliheh Shirvanian" initials="M." surname="Shirvanian">
              <organization/>
            </author>
            <author fullname="Stanislaw Jareckiy" initials="S." surname="Jareckiy">
              <organization/>
            </author>
            <author fullname="Hugo Krawczykz" initials="H." surname="Krawczykz">
              <organization/>
            </author>
            <author fullname="Nitesh Saxena" initials="N." surname="Saxena">
              <organization/>
            </author>
            <date month="June" year="2017"/>
          </front>
          <seriesInfo name="2017 IEEE 37th International Conference on Distributed Computing Systems" value="(ICDCS)"/>
          <seriesInfo name="DOI" value="10.1109/icdcs.2017.64"/>
        </reference>
        <reference anchor="TCRSTW21" target="https://eprint.iacr.org/2021/864">
          <front>
            <title>A Fast and Simple Partially Oblivious PRF, with Applications</title>
            <author initials="N." surname="Tyagi">
              <organization>Cornell University, USA</organization>
            </author>
            <author initials="S." surname="Celi">
              <organization>Cloudflare, Portugal</organization>
            </author>
            <author initials="T." surname="Ristenpart">
              <organization>Cornell Tech, USA</organization>
            </author>
            <author initials="N." surname="Sullivan">
              <organization>Cloudflare, USA</organization>
            </author>
            <author initials="S." surname="Tessaro">
              <organization>University of Washington, UK</organization>
            </author>
            <author initials="C." surname="Wood">
              <organization>Cloudflare, USA</organization>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="DGSTV18">
          <front>
            <title>Privacy Pass: Bypassing Internet Challenges Anonymously</title>
            <author fullname="Alex Davidson" initials="A." surname="Davidson">
              <organization/>
            </author>
            <author fullname="Ian Goldberg" initials="I." surname="Goldberg">
              <organization/>
            </author>
            <author fullname="Nick Sullivan" initials="N." surname="Sullivan">
              <organization/>
            </author>
            <author fullname="George Tankersley" initials="G." surname="Tankersley">
              <organization/>
            </author>
            <author fullname="Filippo Valsorda" initials="F." surname="Valsorda">
              <organization/>
            </author>
            <date month="April" year="2018"/>
          </front>
          <seriesInfo name="Proceedings on Privacy Enhancing Technologies" value="Vol. 2018, pp. 164-180"/>
          <seriesInfo name="DOI" value="10.1515/popets-2018-0026"/>
        </reference>
        <reference anchor="SEC1" target="https://www.secg.org/sec1-v2.pdf">
          <front>
            <title>SEC 1: Elliptic Curve Cryptography</title>
            <author initials="" surname="Standards for Efficient Cryptography Group (SECG)">
              <organization/>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="SEC2" target="http://www.secg.org/sec2-v2.pdf">
          <front>
            <title>SEC 2: Recommended Elliptic Curve Domain Parameters</title>
            <author initials="" surname="Standards for Efficient Cryptography Group (SECG)">
              <organization/>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="x9.62">
          <front>
            <title>Public Key Cryptography for the Financial Services Industry: the Elliptic Curve Digital Signature Algorithm (ECDSA)</title>
            <author>
              <organization>ANSI</organization>
            </author>
            <date year="1998" month="September"/>
          </front>
          <seriesInfo name="ANSI" value="X9.62-1998"/>
        </reference>
        <reference anchor="keyagreement">
          <front>
            <title>Recommendation for pair-wise key-establishment schemes using discrete logarithm cryptography</title>
            <author fullname="Elaine Barker" initials="E." surname="Barker">
              <organization/>
            </author>
            <author fullname="Lily Chen" initials="L." surname="Chen">
              <organization/>
            </author>
            <author fullname="Allen Roginsky" initials="A." surname="Roginsky">
              <organization/>
            </author>
            <author fullname="Apostol Vassilev" initials="A." surname="Vassilev">
              <organization/>
            </author>
            <author fullname="Richard Davis" initials="R." surname="Davis">
              <organization/>
            </author>
            <date month="April" year="2018"/>
          </front>
          <seriesInfo name="National Institute of Standards and Technology" value="report"/>
          <seriesInfo name="DOI" value="10.6028/nist.sp.800-56ar3"/>
        </reference>
      </references>
    </references>
    <section anchor="test-vectors">
      <name>Test Vectors</name>
      <t>This section includes test vectors for the protocol variants specified
in this document. For each ciphersuite specified in <xref target="ciphersuites"/>,
there is a set of test vectors for the protocol when run the OPRF,
VOPRF, and POPRF modes. Each test vector lists the batch size for
the evaluation. Each test vector value is encoded as a hexadecimal
byte string. The label for each test vector value is described below.</t>
      <ul spacing="normal">
        <li>"Input": The private client input, an opaque byte string.</li>
        <li>"Info": The public info, an opaque byte string. Only present for POPRF vectors.</li>
        <li>"Blind": The blind value output by <tt>Blind()</tt>, a serialized <tt>Scalar</tt>
of <tt>Ns</tt> bytes long.</li>
        <li>"BlindedElement": The blinded value output by <tt>Blind()</tt>, a serialized
<tt>Element</tt> of <tt>Ne</tt> bytes long.</li>
        <li>"EvaluatedElement": The evaluated element output by <tt>BlindEvaluate()</tt>,
a serialized <tt>Element</tt> of <tt>Ne</tt> bytes long.</li>
        <li>"Proof": The serialized <tt>Proof</tt> output from <tt>GenerateProof()</tt> (only
listed for verifiable mode test vectors), composed of two serialized
<tt>Scalar</tt> values each of <tt>Ns</tt> bytes long. Only present for VOPRF and POPRF vectors.</li>
        <li>"ProofRandomScalar": The random scalar <tt>r</tt> computed in <tt>GenerateProof()</tt>
(only listed for verifiable mode test vectors), a serialized <tt>Scalar</tt> of
<tt>Ns</tt> bytes long. Only present for VOPRF and POPRF vectors.</li>
        <li>"Output": The OPRF output, a byte string of length <tt>Nh</tt> bytes.</li>
      </ul>
      <t>Test vectors with batch size B &gt; 1 have inputs separated by a comma
",". Applicable test vectors will have B different values for the
"Input", "Blind", "BlindedElement", "EvaluationElement", and
"Output" fields.</t>
      <t>The server key material, <tt>pkSm</tt> and <tt>skSm</tt>, are listed under the mode for
each ciphersuite. Both <tt>pkSm</tt> and <tt>skSm</tt> are the serialized values of
<tt>pkS</tt> and <tt>skS</tt>, respectively, as used in the protocol. Each key pair
is derived from a seed <tt>Seed</tt> and info string <tt>KeyInfo</tt>, which are
listed as well, using the <tt>DeriveKeyPair</tt> function from <xref target="offline"/>.</t>
      <section anchor="oprfristretto255-sha-512-1">
        <name>OPRF(ristretto255, SHA-512)</name>
        <section anchor="oprf-mode">
          <name>OPRF Mode</name>
          <artwork><![CDATA[
Seed = a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a
3a3
KeyInfo = 74657374206b6579
skSm = e617ae6f2d10de61e16cab73023c5a2df74335d13f89470957214664468d2
e0b
]]></artwork>
          <section anchor="test-vector-1-batch-size-1">
            <name>Test Vector 1, Batch Size 1</name>
            <artwork><![CDATA[
Input = 00
Blind = 64d37aed22a27f5191de1c1d69fadb899d8862b58eb4220029e036ec4c1f
6706
BlindedElement = c83d0d8a3e80be2ced8bf35c5f3e24d42260ca8fa9a0403ca83
033588c26614d
EvaluationElement = b29ca44d6dfafc77a50b72abc53cfb7abcbe9cf6714afc76
893ee8dcaf053b59
Output = 8a19c9b8f4459d541ebbfff4e29f36620e44e825a27b0f2e3a3c0d8e963
588ee04348312dc8b43a48c41d4e7d904f95c91813a6b4f624392433f0568409da62
8
]]></artwork>
          </section>
          <section anchor="test-vector-2-batch-size-1">
            <name>Test Vector 2, Batch Size 1</name>
            <artwork><![CDATA[
Input = 5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Blind = 64d37aed22a27f5191de1c1d69fadb899d8862b58eb4220029e036ec4c1f
6706
BlindedElement = 8673ffd2f26b2579922fc485c77e106def00982e0abb233b4c6
e54841d43ba29
EvaluationElement = 68ed7037846f48a1b4073a0d110f6e4de8f53ab845365c0f
3d7f1b67caa39126
Output = bcdbd421c0863495d63d81a868858f34f5215437c5777072a92703f36b3
6c4a2d3e7e54a5762e70b06223527c211e2d4364481270f72971a2db8b7ab8fad84e
e
]]></artwork>
          </section>
        </section>
        <section anchor="voprf-mode">
          <name>VOPRF Mode</name>
          <artwork><![CDATA[
Seed = a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a
3a3
KeyInfo = 74657374206b6579
skSm = a3b8dea4a99be2469da7f7d2d93fe5f2867317d6705350475d47739c7214d
a07
pkSm = c00fbee6832a8e5d6cc1d1a23315daf6a6018f19e29ba37b05499259da854
b48
]]></artwork>
          <section anchor="test-vector-1-batch-size-1-1">
            <name>Test Vector 1, Batch Size 1</name>
            <artwork><![CDATA[
Input = 00
Blind = 64d37aed22a27f5191de1c1d69fadb899d8862b58eb4220029e036ec4c1f
6706
BlindedElement = 6cce2c7913f4c8c0ac44ec149a1544b0e711e1630753d4efc7c
5fe36a4d50638
EvaluationElement = 826f2f3e553a039bcd69c9df6cb166e7943fd207089ae704
1f6041322ce7033a
Proof = 2e541a6962e783d2f42d5f4fb1364e51c368e95e83a962614714e9dfe21a
720cd8c8eb8106131b4a758b5a0987d3870adb348f5eae7b4a2bc26735928cc4b90c
ProofRandomScalar = 222a5e897cf59db8145db8d16e597e8facb80ae7d4e26d98
81aa6f61d645fc0e
Output = 4d5dd83db5bfd850e3e0c17519f1013aab904e7b131dc1ded31f7a76aac
f040f6b344b0e635cf6df30771a35157e0e3d9539f7a891b48cd8521692b15c51538
d
]]></artwork>
          </section>
          <section anchor="test-vector-2-batch-size-1-1">
            <name>Test Vector 2, Batch Size 1</name>
            <artwork><![CDATA[
Input = 5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Blind = 64d37aed22a27f5191de1c1d69fadb899d8862b58eb4220029e036ec4c1f
6706
BlindedElement = 6a4e632b76a2cfcb0295ee74098a15a3e858f6006fd9fa8576a
5813e051ac134
EvaluationElement = 2cb879d933a1af46c77e89f3f39a38f80347bf4716da3dc3
07c8aa1282179823
Proof = eabae3489c46b9e9a8da0cc921d2bc2960ef5fb0b38c8f067cc5c21f62f4
eb0ff5472009aec126f543b6051b5d62ccbf2625aab6684076c26cfdf0904257090c
ProofRandomScalar = 222a5e897cf59db8145db8d16e597e8facb80ae7d4e26d98
81aa6f61d645fc0e
Output = 5c3fe06ef39905710a124df0727c6c938f48234b35ccc4548c0736d7f6f
36e6b7333a9aefc93d6b1ee20151a40bce453866b62cf5d41799982fee6100680915
9
]]></artwork>
          </section>
          <section anchor="test-vector-3-batch-size-2">
            <name>Test Vector 3, Batch Size 2</name>
            <artwork><![CDATA[
Input = 00,5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Blind = 64d37aed22a27f5191de1c1d69fadb899d8862b58eb4220029e036ec4c1f
6706,222a5e897cf59db8145db8d16e597e8facb80ae7d4e26d9881aa6f61d645fc0
e
BlindedElement = 6cce2c7913f4c8c0ac44ec149a1544b0e711e1630753d4efc7c
5fe36a4d50638,aa9908e4c40b7fe5f091cf0f7fb8ec75ffdaaf2d19512b7b9939f0
ffaaa0654f
EvaluationElement = 826f2f3e553a039bcd69c9df6cb166e7943fd207089ae704
1f6041322ce7033a,902ef95488cc3c47fe569bc96c922a4ae3f9ebd8ccbc71bfefa
5f1e7da9ab953
Proof = d9bfee92cd7496cdf469947b534549ceb79ebd7b5695d20437b3e14758cf
de0998eaa13a480cc35b562cbfb1412b1677650cd901b5fb4d6805581a95b440320f
ProofRandomScalar = 419c4f4f5052c53c45f3da494d2b67b220d02118e0857cdb
cf037f9ea84bbe0c
Output = 4d5dd83db5bfd850e3e0c17519f1013aab904e7b131dc1ded31f7a76aac
f040f6b344b0e635cf6df30771a35157e0e3d9539f7a891b48cd8521692b15c51538
d,5c3fe06ef39905710a124df0727c6c938f48234b35ccc4548c0736d7f6f36e6b73
33a9aefc93d6b1ee20151a40bce453866b62cf5d41799982fee61006809159
]]></artwork>
          </section>
        </section>
        <section anchor="poprf-mode">
          <name>POPRF Mode</name>
          <artwork><![CDATA[
Seed = a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a
3a3
KeyInfo = 74657374206b6579
skSm = 024eaeb72e5b3729d7f19d90aa44e3d2f4c445fb29011ffd755655636f2b1
00a
pkSm = e001954ccd18ec5aa89bcbf26c03d84dc4d9c9b973d9f06b1e0ceb7b79f41
d65
]]></artwork>
          <section anchor="test-vector-1-batch-size-1-2">
            <name>Test Vector 1, Batch Size 1</name>
            <artwork><![CDATA[
Input = 00
Info = 7465737420696e666f
Blind = 64d37aed22a27f5191de1c1d69fadb899d8862b58eb4220029e036ec4c1f
6706
BlindedElement = 009ffa1ffc529e4f1d3d8de1c06d22fbb15e39920a72ad4efed
6c39af9438a2d
EvaluationElement = aa9af25bf4edead5e2e0a4b8f93db9b497017f93cf68c750
45f02172bfc5d304
Proof = bb893ccce54685a871185bb056cb5e0594d09d3b53f2f879de06a650b8ae
ff08371f2ff9f3d5cac7f393cc37b2c71c2a6fbb80f35fe36b8e5cbddf11469c8e03
ProofRandomScalar = 222a5e897cf59db8145db8d16e597e8facb80ae7d4e26d98
81aa6f61d645fc0e
Output = e7ed59e3f808c369598961ebfd9af74272894e0904d1c11653a21b08204
dba1a5fb5c3dd6be6c419190a84b576d91eb3d8d920d450fee0427fd24524950d72d
6
]]></artwork>
          </section>
          <section anchor="test-vector-2-batch-size-1-2">
            <name>Test Vector 2, Batch Size 1</name>
            <artwork><![CDATA[
Input = 5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Info = 7465737420696e666f
Blind = 64d37aed22a27f5191de1c1d69fadb899d8862b58eb4220029e036ec4c1f
6706
BlindedElement = 5e009e08e228f95ee3703cff60a1d54225bb282bdb6d7dc9a78
e287f8418315a
EvaluationElement = 2e528236481eb6d87b07ef5f8c17910323d04b3bf0cb2f2d
23d5a7ad9f069b22
Proof = 3796381ab287189839288bbaffc971eb87c3a28226fa99dc83b363adb2f4
b20e4ae81fb675ebcd43d13918f71846cb488d0ce7d473bfca68450a5a5472564500
ProofRandomScalar = 222a5e897cf59db8145db8d16e597e8facb80ae7d4e26d98
81aa6f61d645fc0e
Output = 9a0d8c55e2fef4bada9fb5877a0e739496e539a0d835722911dab9ec112
397e763a605acbc072619e8b8acefb8ee704a357556edc802648089d684baa763ce1
4
]]></artwork>
          </section>
          <section anchor="test-vector-3-batch-size-2-1">
            <name>Test Vector 3, Batch Size 2</name>
            <artwork><![CDATA[
Input = 00,5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Info = 7465737420696e666f
Blind = 64d37aed22a27f5191de1c1d69fadb899d8862b58eb4220029e036ec4c1f
6706,222a5e897cf59db8145db8d16e597e8facb80ae7d4e26d9881aa6f61d645fc0
e
BlindedElement = 009ffa1ffc529e4f1d3d8de1c06d22fbb15e39920a72ad4efed
6c39af9438a2d,1ee64b9e5148987ca6647ccddc11ef506231e986d5ce08ef9b8230
871f840b3a
EvaluationElement = aa9af25bf4edead5e2e0a4b8f93db9b497017f93cf68c750
45f02172bfc5d304,3073794fd68f64432b4d1f24752c4398f0e81e00b5b5842e463
5dd381331091b
Proof = 7d59db67715a9030d46ab50a614fb55927961c8d9322cb6973ef36775309
810b9f4a670ba4b9321f5cf753be2a58dee0730cfabd12b8f25a8a342e158ae2b608
ProofRandomScalar = 419c4f4f5052c53c45f3da494d2b67b220d02118e0857cdb
cf037f9ea84bbe0c
Output = e7ed59e3f808c369598961ebfd9af74272894e0904d1c11653a21b08204
dba1a5fb5c3dd6be6c419190a84b576d91eb3d8d920d450fee0427fd24524950d72d
6,9a0d8c55e2fef4bada9fb5877a0e739496e539a0d835722911dab9ec112397e763
a605acbc072619e8b8acefb8ee704a357556edc802648089d684baa763ce14
]]></artwork>
          </section>
        </section>
      </section>
      <section anchor="oprfdecaf448-shake-256-1">
        <name>OPRF(decaf448, SHAKE-256)</name>
        <section anchor="oprf-mode-1">
          <name>OPRF Mode</name>
          <artwork><![CDATA[
Seed = a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a
3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3
KeyInfo = 74657374206b6579
skSm = 30f71e5b5be9c91dd54c5a48e82be8d47eeb2cb2c45d7874a45dddc85af8d
3f95b1ce73a99c47edc26ac9ddd936bd9b6b73728995bf1d213
]]></artwork>
          <section anchor="test-vector-1-batch-size-1-3">
            <name>Test Vector 1, Batch Size 1</name>
            <artwork><![CDATA[
Input = 00
Blind = 64d37aed22a27f5191de1c1d69fadb899d8862b58eb4220029e036ec65fa
3833a26e9388336361686ff1f83df55046504dfecad8549ba112
BlindedElement = a4205d2af0410dccbd4464629ba1b835456d04d994cf93988cf
2c3b9d45d3c4671c7625f52c66c760a069e2c3c367826debb13da089d735c
EvaluationElement = e8d78cf5212fddf940f9f6fe02250ed83cc0595e3f0e7481
1cdb9f62c0fa7fea94c45795637dc5c3ac31ee1cff18d0d675396ae09b302f76
Output = 1c1a9df7d0616e0f5fdfb6479acec73a4f5562da8f9488f3b6112ef11c6
7c5900e0abc3a169486ac7230a306c8796562a045c66305ed7cb2a3fae658e45eae4
c
]]></artwork>
          </section>
          <section anchor="test-vector-2-batch-size-1-3">
            <name>Test Vector 2, Batch Size 1</name>
            <artwork><![CDATA[
Input = 5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Blind = 64d37aed22a27f5191de1c1d69fadb899d8862b58eb4220029e036ec65fa
3833a26e9388336361686ff1f83df55046504dfecad8549ba112
BlindedElement = ec5b609e5d3c0bb024c35256194694ea6e42aa24d13cf6b0597
49cb36911ccba0923cb73136acdf4bcecf23b6025f7b9b93d2eb0c09d964d
EvaluationElement = 524c3a644e381b4ae416724247f94b996f655167e0d4e1ba
d93cbc731c3beb36e3822e9dcbdc3600966226387a2306ba70eb68db5a64f92f
Output = 95f519e8ff2b54d8d596da2c54829ae3dd900f5c18eef48efa03ef6694c
505bea17b7982246c862d081b9fdcf295debc60abec8b0ddbfdf48bd302a3fe61b21
e
]]></artwork>
          </section>
        </section>
        <section anchor="voprf-mode-1">
          <name>VOPRF Mode</name>
          <artwork><![CDATA[
Seed = a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a
3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3
KeyInfo = 74657374206b6579
skSm = 44c46e78aa6386cee57a46c75d124b13ced3e5f055caa3baaad61501330a4
24463400453c97245a8f7b4c65f2c4c3dabd09a049c034f9e20
pkSm = 78f4233110896fd41531fce182094c3bc4cf65f97b23078476b3b68118736
617172d3735c5832081864e7c75cd3ddb449e93068b34ba863e
]]></artwork>
          <section anchor="test-vector-1-batch-size-1-4">
            <name>Test Vector 1, Batch Size 1</name>
            <artwork><![CDATA[
Input = 00
Blind = 64d37aed22a27f5191de1c1d69fadb899d8862b58eb4220029e036ec65fa
3833a26e9388336361686ff1f83df55046504dfecad8549ba112
BlindedElement = 38b758b69dfaaff8576eaaabfe70801813d95eb098f85516bcd
46a0f68d1ea8cc1dea3bc7c8d340ee77c5bbca6e7d723e51d77e0807acd0d
EvaluationElement = 7a8374bbae55dfc91e10a9d8042015419c505a6a8ac54e5b
93867747eb04252aba316d9f750fa0c54458aa8c90e963a60af5ae6f141af8d2
Proof = 2fd38cf9829c5f3fd294a5eb114356cd67cc5839cf797dc060273e07cf57
0dbabea029f0bf4675d84866865d1d146bfa38eff8195b59cf3c180bab30509061b9
d02e70f709f085dc8c98c0924259c9a3463ef5ceb97105989941155b98bd7b03b1e1
e538850139dc1a56beff1bb9401f
ProofRandomScalar = b1b748135d405ce48c6973401d9455bb8ccd18b01d0295c0
627f67661200dbf9569f73fbb3925daa043a070e5f953d80bb464ea369e5522b
Output = 3db64b6f803391e7c9803135457da250eb29778480c30f29d53e9ff46c3
ce5ba9555418fc28af347c18b77a990eb904d0043a3411837b6d316f749428a9a370
4
]]></artwork>
          </section>
          <section anchor="test-vector-2-batch-size-1-4">
            <name>Test Vector 2, Batch Size 1</name>
            <artwork><![CDATA[
Input = 5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Blind = 64d37aed22a27f5191de1c1d69fadb899d8862b58eb4220029e036ec65fa
3833a26e9388336361686ff1f83df55046504dfecad8549ba112
BlindedElement = ea9b2d51579f5c07c5c511cf3bba888f5fc76d6ce29075a0b02
5adb3daf4b568045c28e6bd00442251597ba6264e59beaf46220d8405fff6
EvaluationElement = f6d23094a82e33e231003a1ecdd4659029d613932b767451
c607ec428315283fe0b121bf09d7c88cf2ed50910463e38383fb52e5562a87f0
Proof = 104e45c171bd7ca9119af1091e3175c8af4e9efdbd4704b3d5a8dfc99465
9842ea021da27a9c1e0fbac369627eb5e9cf9e82964b7412081f15f6bfc5c68425f6
4f1a4dae420a03d582a6cfffc0fc4da71a145bb5305ae28985e15e067d28523578ea
696205cea28cf5831abed3e40f37
ProofRandomScalar = b1b748135d405ce48c6973401d9455bb8ccd18b01d0295c0
627f67661200dbf9569f73fbb3925daa043a070e5f953d80bb464ea369e5522b
Output = 4dc9ec52b6aa7f1f38a320d10cb58e0d86b040f6376d2f178f42c99986f
e932aca7162cb72dd94056724617979c0f7ea652b1492bbad1d82748a38ff4daf129
8
]]></artwork>
          </section>
          <section anchor="test-vector-3-batch-size-2-2">
            <name>Test Vector 3, Batch Size 2</name>
            <artwork><![CDATA[
Input = 00,5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Blind = 64d37aed22a27f5191de1c1d69fadb899d8862b58eb4220029e036ec65fa
3833a26e9388336361686ff1f83df55046504dfecad8549ba112,b1b748135d405ce
48c6973401d9455bb8ccd18b01d0295c0627f67661200dbf9569f73fbb3925daa043
a070e5f953d80bb464ea369e5522b
BlindedElement = 38b758b69dfaaff8576eaaabfe70801813d95eb098f85516bcd
46a0f68d1ea8cc1dea3bc7c8d340ee77c5bbca6e7d723e51d77e0807acd0d,5a788e
f7949021b22da4a4e89b2443458c96fcbec8b66b08df885eec8fb4070fefe8b50e08
5e043c368cc05a9339b5ae31eb6482efc0d933
EvaluationElement = 7a8374bbae55dfc91e10a9d8042015419c505a6a8ac54e5b
93867747eb04252aba316d9f750fa0c54458aa8c90e963a60af5ae6f141af8d2,0ac
81e0e5b9fa6d90be58a6fc3fb4fde57e0efacbe210cebc2c85a6e934114b5e0e5ba4
cc202bde7cd7708415cdcc2312a51fca6ad6f06bf
Proof = a221b134d99ba97cad98bf45341eeacd8a402a6e4c5ea5f93cee54ad0f2b
ee544f67d2859a5253cb9def403bfee9420a5224fad35e3f9a3fbb5f28f6b8abcb34
130beaa158a41d1497aacc2f073b2da5471067bb832ec8044f417f528e2e6ccb897f
992424220d608b5e7bbfd4257e1f
ProofRandomScalar = 63798726803c9451ba405f00ef3acb633ddf0c420574a2ec
6cbf28f840800e355c9fbaac10699686de2724ed22e797a00f3bd93d105a7f23
Output = 3db64b6f803391e7c9803135457da250eb29778480c30f29d53e9ff46c3
ce5ba9555418fc28af347c18b77a990eb904d0043a3411837b6d316f749428a9a370
4,4dc9ec52b6aa7f1f38a320d10cb58e0d86b040f6376d2f178f42c99986fe932aca
7162cb72dd94056724617979c0f7ea652b1492bbad1d82748a38ff4daf1298
]]></artwork>
          </section>
        </section>
        <section anchor="poprf-mode-1">
          <name>POPRF Mode</name>
          <artwork><![CDATA[
Seed = a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a
3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3
KeyInfo = 74657374206b6579
skSm = fdd59cb218c7fbdcd48b18ef21ab647a6c210110c765bc3da6c11e563671a
48402c23129ce2ffd021d99da5a2d04158883c65d7f74a4901b
pkSm = 1223e0aec4ee5bc19181078be380cc745d1896e1369aed3cc8a45b40ba3f9
aa1f79e23d542d6529e17465d1954d75e336910c6417de99200
]]></artwork>
          <section anchor="test-vector-1-batch-size-1-5">
            <name>Test Vector 1, Batch Size 1</name>
            <artwork><![CDATA[
Input = 00
Info = 7465737420696e666f
Blind = 64d37aed22a27f5191de1c1d69fadb899d8862b58eb4220029e036ec65fa
3833a26e9388336361686ff1f83df55046504dfecad8549ba112
BlindedElement = f86104fcefec6bdca7767bc3e6a2ac9de2b00546579fd50ff66
687df531f7a2dfa8689a6cfdf91efc32d6fff490e722990752b7bc4bda28f
EvaluationElement = 76f27e6fa79cd38638e35f5caa5d641e41526fbfd9272c19
be22dfc8cdd962e6d5d4e0c605c9bd6588eb9698a2bbf792a0827bb1116c8812
Proof = 3a1b3400ad16e1562e731c64520fa5a3664c1487ffe6537e85029842904d
3e01f9e7435b881ab9346847cc3470a2b37e6a10a4ef7bd36b2d06c602086a33252f
39c562aab5820a66c3bdf9d72583587e93ea893725be535cdeca1094d5b4dae119b4
9456162f60034a904f521f7cd818
ProofRandomScalar = b1b748135d405ce48c6973401d9455bb8ccd18b01d0295c0
627f67661200dbf9569f73fbb3925daa043a070e5f953d80bb464ea369e5522b
Output = 2a08f81bf204eb43a57dbc011946861ed715a2fd3d39a3b35e43c74d07d
4734149ba163389a02f6cd33fbb5b84e167d35dca7a7dc00b89418398c255c8293ac
6
]]></artwork>
          </section>
          <section anchor="test-vector-2-batch-size-1-5">
            <name>Test Vector 2, Batch Size 1</name>
            <artwork><![CDATA[
Input = 5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Info = 7465737420696e666f
Blind = 64d37aed22a27f5191de1c1d69fadb899d8862b58eb4220029e036ec65fa
3833a26e9388336361686ff1f83df55046504dfecad8549ba112
BlindedElement = e6f508abea28cbb0242f0dae1c0a92e017127edb7c8d8e0ec98
a5ea25c6bc9bb86bfc0bf9b8a086302e29a2a4b0a1d9d80f2d439cfba3ec1
EvaluationElement = 1ea637b039e0ab12c6959c74e275471e33655007a7fa23af
97ec578bcfc8c3381d4929ebf51433b76460d583f16b7cf1e75b9708f5d9d2f7
Proof = d53a1bfeafc5b47fc86406fba080e57434a7004a0739399ccb356f790b13
585da9d69a25c526e039fa06ad6a5781283ea7997eced063fd32e58bc95d57fd771c
ad4a7e23633ae2049eec5ad86ade6a5e98d44f78fd86b5f55ab3c7a03025d6aec1f4
f50a2bd7b9b554841f6b4cd23d14
ProofRandomScalar = b1b748135d405ce48c6973401d9455bb8ccd18b01d0295c0
627f67661200dbf9569f73fbb3925daa043a070e5f953d80bb464ea369e5522b
Output = 80ac73a09fbf8cbd329ff1b7f42d8d14e46ae5b732f776f3203f0680daf
265254360da0afcd9dc1d0cd3858ab21ce8e7a19f0426d7e701cfda34fb8238c9e43
4
]]></artwork>
          </section>
          <section anchor="test-vector-3-batch-size-2-3">
            <name>Test Vector 3, Batch Size 2</name>
            <artwork><![CDATA[
Input = 00,5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Info = 7465737420696e666f
Blind = 64d37aed22a27f5191de1c1d69fadb899d8862b58eb4220029e036ec65fa
3833a26e9388336361686ff1f83df55046504dfecad8549ba112,b1b748135d405ce
48c6973401d9455bb8ccd18b01d0295c0627f67661200dbf9569f73fbb3925daa043
a070e5f953d80bb464ea369e5522b
BlindedElement = f86104fcefec6bdca7767bc3e6a2ac9de2b00546579fd50ff66
687df531f7a2dfa8689a6cfdf91efc32d6fff490e722990752b7bc4bda28f,50c684
9c8f6355687bbc9d4675bcea953cb913c5447c9c8400062ae37f808ce8a75d592c56
f3393d4ea12ec72f9f84402002eb497201089a
EvaluationElement = 76f27e6fa79cd38638e35f5caa5d641e41526fbfd9272c19
be22dfc8cdd962e6d5d4e0c605c9bd6588eb9698a2bbf792a0827bb1116c8812,7ca
a4dd83ecae98fc3e282a0e7df1887393a3fc1e17935dfe355da394756fbfcad65386
eeedf1ba8498411645448c7027753cd9090198c02
Proof = b4f869bf5ec65e0152af5bd29f9fa32c3dfc00355e4e019feda07a281547
fb2f0c559c600bf6cb52a92753264d1c1367e0134b132880732ec70a8c741d60370e
5c22c4aca0e4564732b0157858f3c968bda06aab34c71386ec88afe76ec2c14bf56f
0adf7b05bab826e4aa034cc78837
ProofRandomScalar = 63798726803c9451ba405f00ef3acb633ddf0c420574a2ec
6cbf28f840800e355c9fbaac10699686de2724ed22e797a00f3bd93d105a7f23
Output = 2a08f81bf204eb43a57dbc011946861ed715a2fd3d39a3b35e43c74d07d
4734149ba163389a02f6cd33fbb5b84e167d35dca7a7dc00b89418398c255c8293ac
6,80ac73a09fbf8cbd329ff1b7f42d8d14e46ae5b732f776f3203f0680daf2652543
60da0afcd9dc1d0cd3858ab21ce8e7a19f0426d7e701cfda34fb8238c9e434
]]></artwork>
          </section>
        </section>
      </section>
      <section anchor="oprfp-256-sha-256-1">
        <name>OPRF(P-256, SHA-256)</name>
        <section anchor="oprf-mode-2">
          <name>OPRF Mode</name>
          <artwork><![CDATA[
Seed = a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a
3a3
KeyInfo = 74657374206b6579
skSm = 274d7747cf2e26352ecea6bd768c426087da3dfcd466b6841b441ada8412f
b33
]]></artwork>
          <section anchor="test-vector-1-batch-size-1-6">
            <name>Test Vector 1, Batch Size 1</name>
            <artwork><![CDATA[
Input = 00
Blind = 3338fa65ec36e0290022b48eb562889d89dbfa691d1cde91517fa222ed7a
d364
BlindedElement = 02ff9dc7d4350ab6fe1f41299ec5fa8283b6ef37fc62682ea69
6142e13aad4ae9c
EvaluationElement = 023a5facf92477164f10cc6bf35b4d9272bfadf98dbabbe7
b7a137efa1af6546fb
Output = 488d693c0d43ab75703901fa1398907cf7dc7a90978d1c2f0def63c88e8
1b8b0
]]></artwork>
          </section>
          <section anchor="test-vector-2-batch-size-1-6">
            <name>Test Vector 2, Batch Size 1</name>
            <artwork><![CDATA[
Input = 5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Blind = 3338fa65ec36e0290022b48eb562889d89dbfa691d1cde91517fa222ed7a
d364
BlindedElement = 03b3cd723330e42975e6e18a6157ecf9455894c18a0189e3e62
4a46d705f790fcc
EvaluationElement = 03f1ea590f2cc4afd45a841285c6be4d88825a9c6c04eb55
a1ca996583dd3e2e9f
Output = dacd8400f6fae62beabead9bc27869b5109fb5d87da338ae2488712ec25
f1be9
]]></artwork>
          </section>
        </section>
        <section anchor="voprf-mode-2">
          <name>VOPRF Mode</name>
          <artwork><![CDATA[
Seed = a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a
3a3
KeyInfo = 74657374206b6579
skSm = b3d12edba73e40401fdc27c0094a56337feb3646d1633345af7e7142a6b15
59d
pkSm = 03f9fc787c9a4dda44a4b811a961d1fd60f87be7465b8a1b9058dc534dae7
0624c
]]></artwork>
          <section anchor="test-vector-1-batch-size-1-7">
            <name>Test Vector 1, Batch Size 1</name>
            <artwork><![CDATA[
Input = 00
Blind = 3338fa65ec36e0290022b48eb562889d89dbfa691d1cde91517fa222ed7a
d364
BlindedElement = 02bf13d60f3e39e2018c7be9876d88b52e56c0fc2847c8550e3
cee152c51cf72ec
EvaluationElement = 0253e64b5251607348f2b46064805275a849e44db465f649
267c54bd7a774d670f
Proof = d0bff8c87ee38f2b2e9e28161fb0f3bc7e4c3bee7329276487d4fd98d4f4
74fff793a846ffcb44d48f9545e321d89e4e6bccea858089732abf10bf19a220a936
ProofRandomScalar = f9db001266677f62c095021db018cd8cbb55941d4073698c
e45c405d1348b7b1
Output = 9df5d51a9149a86c3660396feabaf790b8c838fc96012adba5acbd913f2
a4016
]]></artwork>
          </section>
          <section anchor="test-vector-2-batch-size-1-7">
            <name>Test Vector 2, Batch Size 1</name>
            <artwork><![CDATA[
Input = 5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Blind = 3338fa65ec36e0290022b48eb562889d89dbfa691d1cde91517fa222ed7a
d364
BlindedElement = 02a13e263fd9df5aa0078f8d5d6cbe8763e5bee69ee06841a66
dad0db8701480cf
EvaluationElement = 02d9f54fcb97bdab47e6664376a75911f1c3e447f5754550
89d926fbd032cb6e53
Proof = e3ccd78a2f2428d04599c90d4b45e3de49b38a3ba0c80a224b8125747648
718319238dd349cdeb533a6d24333b56aafbb202bec1831511717b231b89b8b36853
ProofRandomScalar = f9db001266677f62c095021db018cd8cbb55941d4073698c
e45c405d1348b7b1
Output = beef8ec835625f610d616d32b1d13f2f899f07c0b8089fa48a1f0ecbc5a
91b8b
]]></artwork>
          </section>
          <section anchor="test-vector-3-batch-size-2-4">
            <name>Test Vector 3, Batch Size 2</name>
            <artwork><![CDATA[
Input = 00,5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Blind = 3338fa65ec36e0290022b48eb562889d89dbfa691d1cde91517fa222ed7a
d364,f9db001266677f62c095021db018cd8cbb55941d4073698ce45c405d1348b7b
1
BlindedElement = 02bf13d60f3e39e2018c7be9876d88b52e56c0fc2847c8550e3
cee152c51cf72ec,0322b89e261428d77367cba2aa78fdfa2b21c2919150cafe802e
9020c7f95ec180
EvaluationElement = 0253e64b5251607348f2b46064805275a849e44db465f649
267c54bd7a774d670f,02182b225cfab1d2e25da200549d8b5e2c4581aa7b7bd85be
f9b61a14549f58230
Proof = 900fd64d21320b6059a2810f7046066c4c91a5f4e4f6063c7b51316a4862
2de8f3a28e5f1d0ebe8ae77fdaacbcb1ae92685243e9ceb813bb749dee6c7123270e
ProofRandomScalar = 350e8040f828bf6ceca27405420cdf3d63cb3aef005f40ba
51943c8026877963
Output = 9df5d51a9149a86c3660396feabaf790b8c838fc96012adba5acbd913f2
a4016,beef8ec835625f610d616d32b1d13f2f899f07c0b8089fa48a1f0ecbc5a91b
8b
]]></artwork>
          </section>
        </section>
        <section anchor="poprf-mode-2">
          <name>POPRF Mode</name>
          <artwork><![CDATA[
Seed = a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a
3a3
KeyInfo = 74657374206b6579
skSm = 59519f6c7da344f340ad35ad895a5b97437673cc3ac8b964b823cdb52c932
f86
pkSm = 0335065d006a3db4fb09154024dff38c3188a1027e19ce6932e6824c12764
47766
]]></artwork>
          <section anchor="test-vector-1-batch-size-1-8">
            <name>Test Vector 1, Batch Size 1</name>
            <artwork><![CDATA[
Input = 00
Info = 7465737420696e666f
Blind = 3338fa65ec36e0290022b48eb562889d89dbfa691d1cde91517fa222ed7a
d364
BlindedElement = 02811b5218bd2bb8361f990efb6062f1201241bcd6f053a5c35
c34dcd7292e7730
EvaluationElement = 02555fc8577c4f88eeb13bc6ac53994f8fb287a33a704592
05ddff91bc19b6a2da
Proof = d87b112dfa11b77f226b85693ab1b5f63adfa491b6e051e570a12392a926
c4816778b527526ba6212c4b0597f13e05f5f9b2223429aab82cd2596625ab1cad0b
ProofRandomScalar = f9db001266677f62c095021db018cd8cbb55941d4073698c
e45c405d1348b7b1
Output = af6525716fe5dd844076bb5cb118ceda08c02c2d1a02368922ddad63f40
f8b44
]]></artwork>
          </section>
          <section anchor="test-vector-2-batch-size-1-8">
            <name>Test Vector 2, Batch Size 1</name>
            <artwork><![CDATA[
Input = 5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Info = 7465737420696e666f
Blind = 3338fa65ec36e0290022b48eb562889d89dbfa691d1cde91517fa222ed7a
d364
BlindedElement = 03e9ddbb1fa70461119afcf0ffbfe3fcd105690c14cf0e07872
e72d4f63aa0e197
EvaluationElement = 03156037ca1ab2166e924e6197344a9885256de2cd7d9432
ae36e3f94049e94bbb
Proof = d087b632e2aa4a67e0bc8b7cf012646217a2dfdbf49c60f236a43c66c72b
7f2767b85dc93b96a11e3286ef1ff1864b544a68c2c2d8c2bc35ef7cf7dd34189d3e
ProofRandomScalar = f9db001266677f62c095021db018cd8cbb55941d4073698c
e45c405d1348b7b1
Output = 192f4e5d4f89ffe4b9cea5c1c9619ffe32443a5c04fc35f98c3821420cf
1890c
]]></artwork>
          </section>
          <section anchor="test-vector-3-batch-size-2-5">
            <name>Test Vector 3, Batch Size 2</name>
            <artwork><![CDATA[
Input = 00,5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Info = 7465737420696e666f
Blind = 3338fa65ec36e0290022b48eb562889d89dbfa691d1cde91517fa222ed7a
d364,f9db001266677f62c095021db018cd8cbb55941d4073698ce45c405d1348b7b
1
BlindedElement = 02811b5218bd2bb8361f990efb6062f1201241bcd6f053a5c35
c34dcd7292e7730,0366ff91265bb4a9d24130b9e8cd3ecc523084b512b6b0722de4
4049616b8c374f
EvaluationElement = 02555fc8577c4f88eeb13bc6ac53994f8fb287a33a704592
05ddff91bc19b6a2da,032bdb191ef5604cf43d0c37faead30c4b2b21e3f61c0d47c
cc84850fc5656e500
Proof = 1bd5f64dffa2ab8d6532122887ed55ad17d114020901a7a01cf2412d568e
22b6d0536fd6dbefe9f417060468ee3cc451a8f3750f4d8d4acf1e98437248cc7fa2
ProofRandomScalar = 350e8040f828bf6ceca27405420cdf3d63cb3aef005f40ba
51943c8026877963
Output = af6525716fe5dd844076bb5cb118ceda08c02c2d1a02368922ddad63f40
f8b44,192f4e5d4f89ffe4b9cea5c1c9619ffe32443a5c04fc35f98c3821420cf189
0c
]]></artwork>
          </section>
        </section>
      </section>
      <section anchor="oprfp-384-sha-384-1">
        <name>OPRF(P-384, SHA-384)</name>
        <section anchor="oprf-mode-3">
          <name>OPRF Mode</name>
          <artwork><![CDATA[
Seed = a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a
3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3
KeyInfo = 74657374206b6579
skSm = c0503759ddd1e31d8c7eae9304c9b1c16f83d1f6d962e3e7b789cd85fd581
800e96c5c4256131aafcff9a76919abbd55
]]></artwork>
          <section anchor="test-vector-1-batch-size-1-9">
            <name>Test Vector 1, Batch Size 1</name>
            <artwork><![CDATA[
Input = 00
Blind = 504650f53df8f16f6861633388936ea23338fa65ec36e0290022b48eb562
889d89dbfa691d1cde91517fa222ed7ad364
BlindedElement = 0396a1584fedc4d91ddb753a0c49e0aa2298c1936dbc935d60f
e793d82809f44ff05fbd1922a2cae789d700b5ef4310fb3
EvaluationElement = 0361804cebcb1873cee5e51efd5257cd8b095521cc0089cf
4c1100b1d749e212a044eae6d4f3d852e379eeb1bb54047823
Output = b7ccad41ed7f56be97621bbba8cc3a4f5e8a46a28d72b0fe089d12802f8
6f080b20726e01a99390aba3437ac50c640d6
]]></artwork>
          </section>
          <section anchor="test-vector-2-batch-size-1-9">
            <name>Test Vector 2, Batch Size 1</name>
            <artwork><![CDATA[
Input = 5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Blind = 504650f53df8f16f6861633388936ea23338fa65ec36e0290022b48eb562
889d89dbfa691d1cde91517fa222ed7ad364
BlindedElement = 0370b0b4649c0880d44c421a3ca7c915b1b6ffa61f5a1290aa2
2258b006d148e5c105d47725e1ee1b2483b9c5666384038
EvaluationElement = 036d0aaf31ec411ef8e11c68551434883468e56cbd5d615a
c8c52b9dc7af326889d52d7466c5eed47f8c89707976aadc64
Output = ca7dc32dc6434101f35a790717dd591e5963acc86d20fda68011fe228fb
76be8da7f42c6a92284df88fb8e69480a3cb9
]]></artwork>
          </section>
        </section>
        <section anchor="voprf-mode-3">
          <name>VOPRF Mode</name>
          <artwork><![CDATA[
Seed = a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a
3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3
KeyInfo = 74657374206b6579
skSm = 514fb6fe2e66af1383840759d56f71730331280f062930ee2a2f7ea42f935
acf94087355699d788abfdf09d19a5c85ac
pkSm = 02f773b99e65ad26e8cd20614910ce7ad74c1baa5bdbfd9f124389dc8ef44
b5989f5bf036f6802dc2242fd7068b73da29f
]]></artwork>
          <section anchor="test-vector-1-batch-size-1-10">
            <name>Test Vector 1, Batch Size 1</name>
            <artwork><![CDATA[
Input = 00
Blind = 504650f53df8f16f6861633388936ea23338fa65ec36e0290022b48eb562
889d89dbfa691d1cde91517fa222ed7ad364
BlindedElement = 03022e23d8356d74d8f9a24ade759fb4e7cf050d1a770110878
83d4db52f16751d8d987fa49764c157c1039c4cdfa5ef7a
EvaluationElement = 0202bdefbc2d55a37aa848df5efc561055235d9190da9ec3
0ccfb84d93b033a29c4fb1968c55c63a0b90a205e1e9c4c19f
Proof = 929ee0254047350f580cdbd6fca706a9d110e4fc0aa1383af8d35a536795
69c038d90900e8810eca177b9cfd6a2d0f1fb5ed7a2e0f3107719cbd9c74ab7d9502
79869f67551b629c3706c8f9cee651d700453ca44e43b0a08c05502cd28f3960
ProofRandomScalar = 803d955f0e073a04aa5d92b3fb739f56f9db001266677f62
c095021db018cd8cbb55941d4073698ce45c405d1348b7b1
Output = 7eb3cc88d920431c3a5ea3fb6e36b515b6d82c5ef537e285918fe7c741e
97819ce029657d6cced0f8850f47ff281c444
]]></artwork>
          </section>
          <section anchor="test-vector-2-batch-size-1-10">
            <name>Test Vector 2, Batch Size 1</name>
            <artwork><![CDATA[
Input = 5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Blind = 504650f53df8f16f6861633388936ea23338fa65ec36e0290022b48eb562
889d89dbfa691d1cde91517fa222ed7ad364
BlindedElement = 037ae30a62126a39ca791aadafb65769c812a559c7da92820e1
43350b6bb8cefb543af2e0179664f9cd0d1499c018a0b18
EvaluationElement = 0355f95a68e8c4f0d40910e9a85f09109e4e7fff84f75db1
a4aa8e21c451ac2d872113b497bea6c0be1b535241557032a2
Proof = f4ec262642fc9981fe5d1f0a3737f2d09ec9b056f577224013f5a3d09812
fb22c6b45e17150d8fe3a8c7e63094cdf40a60ae1e50fc2e1678954c1ecbaed2f7d0
7e6d597fffedc7aca450ed64164c46e62d1326ff1f6eaeba4b5dd151e953e060
ProofRandomScalar = 803d955f0e073a04aa5d92b3fb739f56f9db001266677f62
c095021db018cd8cbb55941d4073698ce45c405d1348b7b1
Output = fb538f84dae5f214c5adfcf529c6fe63bc46d6a4073d540cf0dabcc7c8e
0f3c1b43b606002a9aa52ae158a19d900c136
]]></artwork>
          </section>
          <section anchor="test-vector-3-batch-size-2-6">
            <name>Test Vector 3, Batch Size 2</name>
            <artwork><![CDATA[
Input = 00,5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Blind = 504650f53df8f16f6861633388936ea23338fa65ec36e0290022b48eb562
889d89dbfa691d1cde91517fa222ed7ad364,803d955f0e073a04aa5d92b3fb739f5
6f9db001266677f62c095021db018cd8cbb55941d4073698ce45c405d1348b7b1
BlindedElement = 03022e23d8356d74d8f9a24ade759fb4e7cf050d1a770110878
83d4db52f16751d8d987fa49764c157c1039c4cdfa5ef7a,031ee43111a2406b09eb
4fb2a3a5fd7c690c0aa51158af766c9df1428bb18195f054c5f68ae1863e6ab3dd42
98b3db712b
EvaluationElement = 0202bdefbc2d55a37aa848df5efc561055235d9190da9ec3
0ccfb84d93b033a29c4fb1968c55c63a0b90a205e1e9c4c19f,021fdbb3b92cf4f8e
04534bc1a9f62596667c3ea49a6e89f1610b9f7f89708e8730df159827ea92e26fcf
db2063920c89c
Proof = 9cc7fe5a120cec6ef0d877260cf1af1861f281aa0015f371c8830f93f286
8f5891ee6f32ec6fcbe130a50de24c93b131261eb4a242941c8d5ad9ad2f2be402d9
386ac4afcf5e5498f35cc3db0442a77e139eb56a7b3435177e7bf1a48cef184a
ProofRandomScalar = a097e722ed2427de86966910acba9f5c350e8040f828bf6c
eca27405420cdf3d63cb3aef005f40ba51943c8026877963
Output = 7eb3cc88d920431c3a5ea3fb6e36b515b6d82c5ef537e285918fe7c741e
97819ce029657d6cced0f8850f47ff281c444,fb538f84dae5f214c5adfcf529c6fe
63bc46d6a4073d540cf0dabcc7c8e0f3c1b43b606002a9aa52ae158a19d900c136
]]></artwork>
          </section>
        </section>
        <section anchor="poprf-mode-3">
          <name>POPRF Mode</name>
          <artwork><![CDATA[
Seed = a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a
3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3
KeyInfo = 74657374206b6579
skSm = 0fcba4a204f67d6c13f780e613915f755319aaa3cb03cd20a5a4a6c403a48
12a4fff5d3223e2c309aa66b05cb7611fd4
pkSm = 03a571100213c4356177af14a7039cfee270ad1f9abde42ac3418c501209e
d7b2fc0d4aa3373c12ba956fb555b02843fc8
]]></artwork>
          <section anchor="test-vector-1-batch-size-1-11">
            <name>Test Vector 1, Batch Size 1</name>
            <artwork><![CDATA[
Input = 00
Info = 7465737420696e666f
Blind = 504650f53df8f16f6861633388936ea23338fa65ec36e0290022b48eb562
889d89dbfa691d1cde91517fa222ed7ad364
BlindedElement = 03156aece0ce92e9eb8f7a9b7f6bd30230a048d41384f2fe49f
1f9f69e180c23390e3ba8d0ee66dde6d637f03c06385f76
EvaluationElement = 02352ec7586660cc4257a9e78366727341db0825e431fc82
4a70a91019b67be26d8b880b2d4d8e734207d4a21a23429d74
Proof = 77bb1ca3ba4013b93ccb302db838839098eca743de542d3c79d189f2adf0
01999583a01aead6c248a32ff13b7f1f3d6b2dd04f653a5beb0f0394ad83ce5e79ea
08ae029d669b918b6d62ed3b77b08a07f04bbc341fae06444d196746da4da884
ProofRandomScalar = 803d955f0e073a04aa5d92b3fb739f56f9db001266677f62
c095021db018cd8cbb55941d4073698ce45c405d1348b7b1
Output = fa15c0fe8706ac256dfd3c38d21ba0cd57b927cfcf3e4d6d5554ec1272e
670079b95cdbb2778e0df22baf50f33e12607
]]></artwork>
          </section>
          <section anchor="test-vector-2-batch-size-1-11">
            <name>Test Vector 2, Batch Size 1</name>
            <artwork><![CDATA[
Input = 5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Info = 7465737420696e666f
Blind = 504650f53df8f16f6861633388936ea23338fa65ec36e0290022b48eb562
889d89dbfa691d1cde91517fa222ed7ad364
BlindedElement = 02d46e0e2d27d8bb126e1201e881d0070b8807cb5635687b20d
d4a3a248e7a40c50a1ad3e905e43342771eb23bc8827a00
EvaluationElement = 030879805ff65cb536293a1449c00824e55c4c1b25379f2e
c17d97923055169a6d97b46ed7b11bb661cc8cb9535abc3d66
Proof = 9982a8501f45839213441d4ec501cf496d06fffab65f13ca3b3e66d21398
fe9e0e04aafdf50eae214fa9cccad3c53d524d0f8c185ed60b11fcf5c7e82e10a8d3
f3b2ce1e4a004d65e6ad596eeb5738453465d881f2770858cd46ac32f0e16121
ProofRandomScalar = 803d955f0e073a04aa5d92b3fb739f56f9db001266677f62
c095021db018cd8cbb55941d4073698ce45c405d1348b7b1
Output = 77cb533216c32cac017d706d5f0ee4630bcb0bfefbb980d95e98dc240ab
c70a944a44cde69b805aee3a39b2eb7d834be
]]></artwork>
          </section>
          <section anchor="test-vector-3-batch-size-2-7">
            <name>Test Vector 3, Batch Size 2</name>
            <artwork><![CDATA[
Input = 00,5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Info = 7465737420696e666f
Blind = 504650f53df8f16f6861633388936ea23338fa65ec36e0290022b48eb562
889d89dbfa691d1cde91517fa222ed7ad364,803d955f0e073a04aa5d92b3fb739f5
6f9db001266677f62c095021db018cd8cbb55941d4073698ce45c405d1348b7b1
BlindedElement = 03156aece0ce92e9eb8f7a9b7f6bd30230a048d41384f2fe49f
1f9f69e180c23390e3ba8d0ee66dde6d637f03c06385f76,025663d73e3418039fdd
ea1a212d254ec0103f28904e588b73c7da8298347706b2f69902a98e8d01c7aaa69a
297b14c7dc
EvaluationElement = 02352ec7586660cc4257a9e78366727341db0825e431fc82
4a70a91019b67be26d8b880b2d4d8e734207d4a21a23429d74,02f8e532fabdd09bb
2a7391a2a80c14f265c0456009199b77eefac1013d4a4f449dfe46d5d6d2d4d74f8c
9fb1e2868b611
Proof = f8c938b5d2aff7d1a05ecdcf4178d682fe7b35c375be5db88dfa59f488c6
e4a68d4f99f16330a06f918e264ad68a78fdfad91446b72e1a3da2a65e531d520dd0
4fd91dd49b09037648e04a44e83d0dfd2aab7627e7389818924ad9bff591d646
ProofRandomScalar = a097e722ed2427de86966910acba9f5c350e8040f828bf6c
eca27405420cdf3d63cb3aef005f40ba51943c8026877963
Output = fa15c0fe8706ac256dfd3c38d21ba0cd57b927cfcf3e4d6d5554ec1272e
670079b95cdbb2778e0df22baf50f33e12607,77cb533216c32cac017d706d5f0ee4
630bcb0bfefbb980d95e98dc240abc70a944a44cde69b805aee3a39b2eb7d834be
]]></artwork>
          </section>
        </section>
      </section>
      <section anchor="oprfp-521-sha-512-1">
        <name>OPRF(P-521, SHA-512)</name>
        <section anchor="oprf-mode-4">
          <name>OPRF Mode</name>
          <artwork><![CDATA[
Seed = a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a
3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a
3a3
KeyInfo = 74657374206b6579
skSm = 0152e55f3a5d836ab6c2091a904ba4b4f92e51ba59ecc211b4fc771f7c6c8
b17fcbbb2bed8a65afd7811ceeec3eac83df6a58515b6d3c71ee0ffc349e28c3fb78
d83
]]></artwork>
          <section anchor="test-vector-1-batch-size-1-12">
            <name>Test Vector 1, Batch Size 1</name>
            <artwork><![CDATA[
Input = 00
Blind = 00d1dccf7a51bafaf75d4a866d53d8cafe4d504650f53df8f16f68616333
88936ea23338fa65ec36e0290022b48eb562889d89dbfa691d1cde91517fa222ed7a
d364
BlindedElement = 03016480f33f005c8a8eb1003e48ebc22e082d0b86678f8460e
df21cc1518a13bfc0001fa143d474b18214188d93a7b3124b1b385db4cd4e356ad24
923ae55d70ce8a7
EvaluationElement = 03005fdb56bf49fcd073b1c4cfb42ceef5666c709785ae82
d659e4d75c0f5591cbf812ca9ffd992ac67c1877b63978f417687a2a6c17697e858c
f715843f9e4235566a
Output = ddcaaceceec790f4858a09f3e06e74e8b0841681a3d45ab1393d0948379
43f782d9ed22ae716a642d4ee428ddf1dae9ff631047864b99a305412aceb7efafa3
2
]]></artwork>
          </section>
          <section anchor="test-vector-2-batch-size-1-12">
            <name>Test Vector 2, Batch Size 1</name>
            <artwork><![CDATA[
Input = 5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Blind = 00d1dccf7a51bafaf75d4a866d53d8cafe4d504650f53df8f16f68616333
88936ea23338fa65ec36e0290022b48eb562889d89dbfa691d1cde91517fa222ed7a
d364
BlindedElement = 02000e860d3b8205e0cb4f289771c8e6189b47c60cbff24459e
12a60317ac242e9cb36ab033a620cdee5628ecae4a81303e7464d52194d801756911
fd7ddfa5430e69c
EvaluationElement = 0300e2663f17144682b25de378531abd6d065b770eec073a
42494719f27748f75b4ab11aecb06bf8815bcc9eeb3ce54978605bd8a54c22a1dea6
2da1ae5f9f5e5e90f4
Output = 287712c6dbed773f39925fec0ad686dfda4a679cc7e88fa60ba9d3a7d71
2a11d4a0445995391ba56cfb018922e0d4bb4b25ec0965a33170c9b00f45c361b021
5
]]></artwork>
          </section>
        </section>
        <section anchor="voprf-mode-4">
          <name>VOPRF Mode</name>
          <artwork><![CDATA[
Seed = a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a
3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a
3a3
KeyInfo = 74657374206b6579
skSm = 00fb5507f94782c5b72acc16b9eb21064f86b4aa525b9865258d157b0431a
b5c3515fc975fa19ddb28129c969992b31d8946c4e354bc49458bb25fae58f10ac3f
678
pkSm = 0301322c63ad53e079791739169e011f362f4396a8e93fceeee9cd814d471
80e75ffd717820fe9e9c763fa595340cd80989c31fbd0200572080752c73b80b7532
2f300
]]></artwork>
          <section anchor="test-vector-1-batch-size-1-13">
            <name>Test Vector 1, Batch Size 1</name>
            <artwork><![CDATA[
Input = 00
Blind = 00d1dccf7a51bafaf75d4a866d53d8cafe4d504650f53df8f16f68616333
88936ea23338fa65ec36e0290022b48eb562889d89dbfa691d1cde91517fa222ed7a
d364
BlindedElement = 02016dafe8eee47b591592705ce4d5231563b637e5a51b425b8
81f1cc576c53caae4ec59fd6e3a918d5c35e6db77cf3a5862b71a8b6c7eaded3ebdf
0c6e14778c03a8c
EvaluationElement = 020124a0ee09ade261bbf67e1e3d296655c97e6c5c14c71a
386e636d8f55d29f5f6dcec954ff28bfc7e6e63240a52bf278ae94b312be3d8bf850
55d2a1dbab687905b0
Proof = 00156561564a9128de6e2fb92d0ee065bb19192ff86549c37fab777f2d57
a951ff94b3832162cf02ad73287a0f0906045878105d8ab54a7cc9a1a0039d0cb241
ebd10197e5cef77e8fbe0414f86b86fe2e823e0d8dbdcf2ccac54d273e814da062ba
941a27d1e7e28c44cdbdaffe392cc915bf8b9add15d51b68afd6e88a52d07ff8b3d1
ProofRandomScalar = 015e80ae32363b32cb76ad4b95a5a34e46bb803d955f0e07
3a04aa5d92b3fb739f56f9db001266677f62c095021db018cd8cbb55941d4073698c
e45c405d1348b7b1
Output = 16a9387153bf7fa2c733d42f299877324cfce3b39093e72067c3d59948b
f745d77b2fe9180ffb442ec45b575eb4108d2b6f207cbfabd7bc540ad2a087cfabca
2
]]></artwork>
          </section>
          <section anchor="test-vector-2-batch-size-1-13">
            <name>Test Vector 2, Batch Size 1</name>
            <artwork><![CDATA[
Input = 5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Blind = 00d1dccf7a51bafaf75d4a866d53d8cafe4d504650f53df8f16f68616333
88936ea23338fa65ec36e0290022b48eb562889d89dbfa691d1cde91517fa222ed7a
d364
BlindedElement = 02008f585341e32244d67033ddcf4c1cc30f7661c4cfc177f09
82c69bf9c90e1da02d86a26ece60b8c42b278a1dc85afcc9cbc6aedff15cc092af03
5100b915c2bb4df
EvaluationElement = 03006cfeb22e141859e6a2050a714bde8ab8109abb2b42bc
8f18ace67121c1811c9e95e7cf8ffd4f13f8cee80fc3c69318b0eb30ecdf6e7d7e84
faefa6f0b8299217fe
Proof = 01db7070ab756e8c2b12cb81c40daac6ef1d5137be3626a10ee867b0b736
ae5ab05aadbc3ee3d1d0202b7687e1614765893cba67b307c67a8a4ce7b3eaf3ba64
204901ce6f8dc9234d27373b1027982d7e3bb196d157403f50c2f1bf0fa701753ef6
3d7265c0b1016e662456d4bdea55b3d983350b2c2ce80e192897161a1b780046b952
ProofRandomScalar = 015e80ae32363b32cb76ad4b95a5a34e46bb803d955f0e07
3a04aa5d92b3fb739f56f9db001266677f62c095021db018cd8cbb55941d4073698c
e45c405d1348b7b1
Output = 0163635204be5347419796f3564b36d6e89c9170e4fcca5b6df79d3f676
f641b2ae3ae1a64cc49f3d788e276abe14e3c38bb2f92fdba0b45ed122a6930e7d96
1
]]></artwork>
          </section>
          <section anchor="test-vector-3-batch-size-2-8">
            <name>Test Vector 3, Batch Size 2</name>
            <artwork><![CDATA[
Input = 00,5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Blind = 00d1dccf7a51bafaf75d4a866d53d8cafe4d504650f53df8f16f68616333
88936ea23338fa65ec36e0290022b48eb562889d89dbfa691d1cde91517fa222ed7a
d364,015e80ae32363b32cb76ad4b95a5a34e46bb803d955f0e073a04aa5d92b3fb7
39f56f9db001266677f62c095021db018cd8cbb55941d4073698ce45c405d1348b7b
1
BlindedElement = 02016dafe8eee47b591592705ce4d5231563b637e5a51b425b8
81f1cc576c53caae4ec59fd6e3a918d5c35e6db77cf3a5862b71a8b6c7eaded3ebdf
0c6e14778c03a8c,03005467c05309dd2b9ef584dd33ae30e93ae5508f2ceda71497
63b4b44fe797f7d0f4c7441298a0ed821ede9ebdc8c0215f96db57c64feb734a145f
00d00f0f222db1
EvaluationElement = 020124a0ee09ade261bbf67e1e3d296655c97e6c5c14c71a
386e636d8f55d29f5f6dcec954ff28bfc7e6e63240a52bf278ae94b312be3d8bf850
55d2a1dbab687905b0,0300fdf99a9eb28097074daf75ba9fe16868690b16165f58f
9c4fa266d5fffa5a87026a98ac3b0ca6dc7e42f49140a004c325646aec5ddc778db7
08748cc2f632ed937
Proof = 01935896f4c03ea5257d6471677f191ea7dfc777cc1e15f82e423cf1948c
440ee56a1c5a8627aad8da8e507a7f382b45255e55a1f1afc99c6b14237ce7cf0855
40fa000fe413be351bd11ac910b1d4af34d2c97c7b7a53438340dd659272f3d86470
35b13cd8072903b9a3adf8e89bfb1f77d732fa224f32674506e3e88e29ce182186e3
ProofRandomScalar = 01ec21c7bb69b0734cb48dfd68433dd93b0fa097e722ed24
27de86966910acba9f5c350e8040f828bf6ceca27405420cdf3d63cb3aef005f40ba
51943c8026877963
Output = 16a9387153bf7fa2c733d42f299877324cfce3b39093e72067c3d59948b
f745d77b2fe9180ffb442ec45b575eb4108d2b6f207cbfabd7bc540ad2a087cfabca
2,0163635204be5347419796f3564b36d6e89c9170e4fcca5b6df79d3f676f641b2a
e3ae1a64cc49f3d788e276abe14e3c38bb2f92fdba0b45ed122a6930e7d961
]]></artwork>
          </section>
        </section>
        <section anchor="poprf-mode-4">
          <name>POPRF Mode</name>
          <artwork><![CDATA[
Seed = a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a
3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a
3a3
KeyInfo = 74657374206b6579
skSm = 01e0993daeb97f8fc8176089e4e6adb4c03dc9b18daf7e976ed7fa6f3cb89
c40c6a84156f20371ef23bfe6e049423244d7d746c79ad380ac7fe285aba162419e9
012
pkSm = 0301264d23f5d1d615f9747d2a7177a419dabde6ca0f5a047979dbe9bce33
7241b7d2959025476f354c4f57017363d667b83b691fad8c172959963e6000de9533
f187a
]]></artwork>
          <section anchor="test-vector-1-batch-size-1-14">
            <name>Test Vector 1, Batch Size 1</name>
            <artwork><![CDATA[
Input = 00
Info = 7465737420696e666f
Blind = 00d1dccf7a51bafaf75d4a866d53d8cafe4d504650f53df8f16f68616333
88936ea23338fa65ec36e0290022b48eb562889d89dbfa691d1cde91517fa222ed7a
d364
BlindedElement = 0200e36b187060fef4f4cfef21cdb4ef8b5793a1bf44da95229
062303688d4cf6a50c16b7c943c79d91357223b56866351a17a9c7f49730fd28add9
301d399c0cf206c
EvaluationElement = 03014e216c05cf1d108829946891cc44693b0a411851a03f
c439130054d920eb8ad596a4dfa5314f68d298a094777855aa55c98480575a3816cf
ac52f838693e0e7fe5
Proof = 00c5a46ff1e7d8cd2711daf8ec8752451c4c7ed815f3e8d51db64f1eed83
a7cc33f0f99ce067676c478bd616a9ef6377994e4bd69051424a576a4e26f0ec7ed8
1fd000b7ae1eaee9e5b6991afdbb2c9c29a04e2ab3a2066df89308410a59267a60a2
2a47666de009646c78e9094c9f4de177a620e97f63e35ada0c8b438b4605248c9087
ProofRandomScalar = 015e80ae32363b32cb76ad4b95a5a34e46bb803d955f0e07
3a04aa5d92b3fb739f56f9db001266677f62c095021db018cd8cbb55941d4073698c
e45c405d1348b7b1
Output = 3be90ca19fbe2fc250de62792c7cf4b6b5555c8655fce1694fc7563d5d4
c5001efd1e91fbbaea31d75e33dbdefe57420c395f1ac805cc0095c4d81a0beddcb0
1
]]></artwork>
          </section>
          <section anchor="test-vector-2-batch-size-1-14">
            <name>Test Vector 2, Batch Size 1</name>
            <artwork><![CDATA[
Input = 5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Info = 7465737420696e666f
Blind = 00d1dccf7a51bafaf75d4a866d53d8cafe4d504650f53df8f16f68616333
88936ea23338fa65ec36e0290022b48eb562889d89dbfa691d1cde91517fa222ed7a
d364
BlindedElement = 0300357933cc17cdcce862b794a4161d8eb10d23009695639e3
fdc8dffc235e19e92e0a3d3c7c6249dd9dcd02da0a8f061d89b6809d3292951ee0e9
ead21a62d1335fe
EvaluationElement = 0300a5132ae9c429dd33b25c051f45451c6e54e154d698c3
f3d8820bd9607e7a65762911c647b3460be166f37ba443bf000b23552298f14e0555
b3f0ddf0e900e1d38c
Proof = 0004f0791cbe6ac6f4074834e172beedea19ecd3a2c504a71fd870b42314
d3b072633a8265c774668274dcbcaebf1726768fab4edec69a33a7d37095ebef3e1b
b44900f0a175b56ceeae8a87bc5553405e0b030ebcf8303befc5890c8afa1e61fd41
66480ff428eae4193f12bbf1fc31d5d7196ce8692e37bc9a63cdf4c9fafe10a2dc9a
ProofRandomScalar = 015e80ae32363b32cb76ad4b95a5a34e46bb803d955f0e07
3a04aa5d92b3fb739f56f9db001266677f62c095021db018cd8cbb55941d4073698c
e45c405d1348b7b1
Output = 1d90446522e3c131e90be2e4f372959ae5ab4f25ca98e83e5e62d6336c4
8b5ec22fc6083d2b050cad2bbc22ae7115c2b934d965ffe74aaa43c905cd2af76728
d
]]></artwork>
          </section>
          <section anchor="test-vector-3-batch-size-2-9">
            <name>Test Vector 3, Batch Size 2</name>
            <artwork><![CDATA[
Input = 00,5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a
Info = 7465737420696e666f
Blind = 00d1dccf7a51bafaf75d4a866d53d8cafe4d504650f53df8f16f68616333
88936ea23338fa65ec36e0290022b48eb562889d89dbfa691d1cde91517fa222ed7a
d364,015e80ae32363b32cb76ad4b95a5a34e46bb803d955f0e073a04aa5d92b3fb7
39f56f9db001266677f62c095021db018cd8cbb55941d4073698ce45c405d1348b7b
1
BlindedElement = 0200e36b187060fef4f4cfef21cdb4ef8b5793a1bf44da95229
062303688d4cf6a50c16b7c943c79d91357223b56866351a17a9c7f49730fd28add9
301d399c0cf206c,03007530916e8ec76199429667a82ca4df65b913d8b1fb157319
e73706f118b4f46047c01b7da024bdf5a06f2f4e879b1a1cd3fcb1ca2c37ce158cc8
625e76b3bb1cc4
EvaluationElement = 03014e216c05cf1d108829946891cc44693b0a411851a03f
c439130054d920eb8ad596a4dfa5314f68d298a094777855aa55c98480575a3816cf
ac52f838693e0e7fe5,0200005cf5e719b3066dcf0fbd6228bc921cebccc49feb1ac
be9d9c4c88f4169e1d0d5408f92ad9f599c2f5f6d7d4c6e575e86f64c4eead2bb9b3
e8e04d141a90b7382
Proof = 00d846f4a2a7722fe6a24e7257e43d88c3e01977282fba352c08fd38b69b
f1df64f90660b03b73abba50cb389af3d602da66411401d3c9f87bcb6363d6406e0a
cad3018a44bcda83524d4a48f0ed96ebca96d7626b634ba28fcba0c21956fc90c516
859df8ba6edeb7a44daeeec51c3a56b79c1f9e211e9974e5f293ade221523953d12f
ProofRandomScalar = 01ec21c7bb69b0734cb48dfd68433dd93b0fa097e722ed24
27de86966910acba9f5c350e8040f828bf6ceca27405420cdf3d63cb3aef005f40ba
51943c8026877963
Output = 3be90ca19fbe2fc250de62792c7cf4b6b5555c8655fce1694fc7563d5d4
c5001efd1e91fbbaea31d75e33dbdefe57420c395f1ac805cc0095c4d81a0beddcb0
1,1d90446522e3c131e90be2e4f372959ae5ab4f25ca98e83e5e62d6336c48b5ec22
fc6083d2b050cad2bbc22ae7115c2b934d965ffe74aaa43c905cd2af76728d
]]></artwork>
          </section>
        </section>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+y963rbRpYu/L+uAp/zI1I3qeB8UH+ZZ2zLdjxJHI3lpGd3
JhMVgILEbYpUE6RttTtzLfta9pXtd62qAgogKZ+TdD+T6UkoEqjDqnV416Gq
ptOpWM/Wc3XsfVfOZy9my03rnbZqUy9XclEvr7yHm0W1ni0XrXfw3enTh+2h
t2lniwvvdDW7UtPvVrVaeY9Wy811K2RZrtQLtETPiXpZLeQVGq5XsllPZ6t1
M62a1cX0xfJ61UyDQNRyrY5FhX9fLFc3x95s0SyFmF2vjr31atOuQ98v/FA8
Vzcvl6v62Hu8WKvVQq2nJ9SiEO0aQ/xZzpcL9HKjWnE9O/Z+XC+ridcuV+uV
alp8urmiDz8JITfry+XqWHhT4eGf2aI99u4eeSfyxaxulwv+Uo/47ly9Gn6/
XF0ce/dW8oXyzpbN+qVcKf5eXcnZ/NiTeOGoNi8U4b9e0NdH1fJq3NlD+bfp
V5gEBq7+5va4uiJy7/ide74/X27qZo5eJ6BCdcS/tJihWh97gR94z5YvF61a
1N7Zmn+rZmsQ9EwuvIdYx2rWVkv9/XKzWBOtv1/M1ooeB/Vbb9l4d6/UalbJ
waxWV4382+W/Vl3vW1N6cuSdbeZgHOnS78msej78/jecxQKDuW0K949oYf68
XNbODO5frmbtenl9Ce52f/0N51HJl/96qeQ1hK+crdsjCIIQiyUYZz17ATny
vKcP74dBUBxDhiBJwx+yLM7pI8T2haxuTmXbHnPrRvrN9x79oL+Xqwuaz+V6
fd0ef/HFxWx9uSmJel9c62ev8egXayWv+HkWZq+R85Yk494jPx60/+xS8fRm
lXcya5qZApvP52B69Lws5+pqZ6cKXS3WRzNZrY5A+i+gEeIvIj/d0aPndfLN
/0zNf80qnxxBfLEs3bd6JdUKI4KWe6paJVfV5e6Xnx55j+R8LhfrN79+/1Ju
rk4V1CI4AP1+9/go8PE/P/simiaxP41zPwum8c8ZP6yWCz8dPhYEWRqkWfFz
gCcenvn+gJB3vlq+BIMR2aCM/tdyg37mDS2ghJ6u5BwKar7RGnu99B7XarGe
NfiBvvIkMeXsYiHXm5WypG/v7CR+vZwx0UfDz7IwmGY/B6GzCCcKOheL4795
IUgJzuSIkMQdf1azv4EfFhCpFnPdrBUJwlk1U4uKBK1dSTXf2+bZpbyard6/
1X/7+uv/CJyFCPziiweb1fLs9Cj0g/Qo8vVDQTxcrCLLp9E0TcNpnKR+Ps1/
DiI8efZvX58F2bC5x/dP7p9Ra9lRGuOZZ/efnj37cxgMlvcuTEC7Nut0dT3H
IkkwGbjvxrXQTx9OvJeQSO/u9fXcLO5uud0WoTD4IucBvKMIQdc/u5EXs5EM
LGGS53NSYS/A89B0E+/7s7u7mzg7gszMxy046vQUdntzIfes87Mj7ynUslpc
gya7h/FMVZe3DGBsr3YO4rbhP1NtK1fL4cv93Im5/izbSyjp9XKBpr7e3dJ9
x6bcMoaTR2fPfgjyno+SIPnienmt1u0UjJRPfT8kZXj24P6Qje7gGy849h5g
rtekdO9vVlAX91c31+vlxUpeX97sFvqXL18etaq6YF7Bh2D6Ijy6rpt3Z5cz
QmdyVbcebJH3ADqfhG49GINGjt4BRvvoUM8j3J5HCA2soGavYFJhJUdzOlnC
Pi5ITGC5ARB3aLMd8wp/1Xm9Ko7S0cRON5Dmyvta3QzfpEbXUFwPZwuCCqTP
1erFrAIueLyogYoJL9ADYzLMYKHp6U67350DVkNHXHkHD+6fnN09vONM9kxd
T7ygKHINXoA2VEuowU76zt0nZ4/vHHv/QSOfdg/uowzzL72Cb4DX5QXAEJZr
3XFu6of5F08enz07gkbNfX+apHdXkRDT6dSTJWYF6yXE3cWb3BDthRx6s9aT
3vrlckqq4Ma7Xi2B+5dzr1Trl0otRDXnRSE9islBOpmwYKJr2Ea4L0TB5WaN
v0hk5b7OqK8jQYbEtIKOgPKxGNQAfsX31UqtadIT7o2+N52PnwUsQ3+Am2v+
hgAi+qaPdvgT9/U5IMWi78iMlrQ+Pgr+lWYiFzfrS/5Q4vtbx2XmYBpeKDSl
VsK+waPzgChNVxjogn05QE8gh3m79FoYmra5Ab0WSyYQxv85mgTAkOVsDgX4
+QQO3XwOMZXeD/QyWtEfMN8WbNma6bXcKr97g8HJtTvCTUsNiPZaVYRdPEac
MN2YjVdvVnYB1StVbew4XDr2ndqhixK/Wks6XVomm3jdaE/taPkDXpovX/aD
7RmpFYBVZmm9ay3FmnT43tJSMxqbZdiMS3Ar3OENSYRnJqWoTSbvRPBQ9TLp
zqFooGUwWPIKaMWh4Fqjd4gY8LyX7HlfsOc9wQvVfFODLkJZtVCRWmiPtIhd
zep6roT4jJzo1bLeMH9D4G5jfO/hwfOJ90oL28JTVtUBipj5AT2Kxr6zls+Z
DQer9ZxnJb0Xcr5R3itPtp6RAqZK9/IM3rs7kpleUDQBCnRPfX3wnz8fel/q
gdHHGTVXAxOg582svdQjWqEB6emWMNhWEpBymiGkjJHSmInnYDewPGxFaLB4
70JhoOLrg0MtAy7ueksFhB81uwg9f81HAG2QOOWy+uVyXlNT1HRPMEcN8AOi
XWKQms1eHTGy7Xo0nFouAQeZxRUj/2oJnLCidcC8OsUn7Jq2m+qyl7uhyrHP
GF3jbekaoXXN8z+NVUu9ROfQDfqVsW56BTthGz8C7/1gNAdQLrP9wQ89bY3q
YXrNFm4frIlIABWLojN8nk43eLDaNbM6lr68sewEAlfLFfTQ9XLBAmOa0I1/
3lqRpkedpp8vQGPWDp0SGbEFS+6hYL54IVczyK82LT8MJrJtmGYU1gJL7lqn
iXdzOGHTxQxADT3UwF+/PDWKqNZTm5jmu6+FYRmtXAbaytgFM56VqhRALJNs
2QiHkjQEJqYeG7rSAcARHa3268knxtzV01BThKbRzF6hRTMiz9EIRGKh/rqB
Kpnz2i47iyIERxi9SwrHaWIrDb2l4w05SvHYo1gFBRGJMGtV0Sy0gRTQGWxP
2uoSiKX1Xr/WruAvv0w8E+jAS4rITY/ZhqCOlyt+XLt69DjIKbqOCCmR612x
DqfVUa+qS1YtWM3Tu18/wLv/3+PpyVEfGV1ey79u1C+/HAlHMk71ZOEVwGJX
7H7cEKswQ7gT1iKNhRrEcmwnCp04gZupVR/ozdvuTZOWBK0kZcb2GFwo9tLR
G9PRDoaZAEvDdA1impzYZxC1Gdyyhnao0HGb2XztbcByYtsKarXYNQvgVa1m
JZpVEkPp1KWRzYmgwPGF5kKHjODqRQvRWVkuMhputqKZAntoZX+tWNFiMp99
RjEfWtf58kKIH3W4Owh+OrA+1XqJsfMKsPdxub6af7EvKH54DINtG3xAVpM0
OJj/3hyGzn6hRyXrun+EdASjLP0FW3c7Fv+9xuLrsTyoZ2B1ckRmV6x1ibpt
17hfvE/jfqEbPwPdwQE3i7V8xVPYwwK9Vphpsk+9b+VzpanSG3a4cPMZsTE1
NVuAFLO6gyNjDcitnDHz3bCAXqiFWXb65am6oggbuUZo5m+aOdq1uoaOIoAB
7ecYYTuEVr/aQJ8vV/3PrEEWGhBqTwRuPliJh0BxHhpDx19DFqRnvr+ueQoO
n7LZQD9q/+Nr1a4BsWkoxKl2xfL3WrFcr9jdenm93gWlDe4Fcl1tzGoQmV6/
tnEuEv1uaKfTKI+hJGaau6FgvLOv7vKXBH6VZN+IvkqCcO+Uphz/umGZpiGo
jle1qnVnnb3XrDM963vEZiUxG+m4K0XNz9orGvrVEn7AAWRxRuF2XtwXvT7l
X8kweN7VZr6emfUzD5ay1Y8c8lwgz+oVPQGZUKsVpshP1WrAhPToidVy4+eJ
ye+ePt7BE3rhQNGvH0zDJDUtV7KJ49yrZpTq4OWgZ59Q9gD9Ke8r2V4+W57B
S5KrgRTqSAVYwH13yP00Fi1T3NTJNw/+XcOLUUP0nMHfrQJnae1FIZwLTQDi
Dvy4JHe1twYfhSvS9+KK1GovrTwwIzZBnpqzdtToTtNsa+mMXqFgC4mRDlpp
WXFdWF5Famejp7hFIA8OTy0XFS/YQzgJ3veLcqgOoSKWHEgi+tNj38EzvKK1
uK+xHP1n2dLCaYypHVzvwCA84DX4TReqd687x+7QVZ41TeFqtiA/rBqpUggL
nIj6oyxW8l6LlejF+paoDnpQYg+AZb0Mk0Sz3g4h4IHdhxMD7HPt/oCnG0y0
k6pTrMn20oBzh6oQ/fLoPI4Ta0bgAY2IBS+JxJYIjvfX6tV6pFJdM/PgFlLF
70WqWJPKxgjAJ723cqa9FTOs1sTT6EnYXHDLIAxkVN6KAPzKcb1Z4Jm28BrU
AnINNnekopTrih1Glocu5DHUFwca2FPURgcmXq3RFH4+NEqUI6JY3qDQEIL1
nbu6Wne52JlhKqz0C8VJPlAc4HB68hXAuqygx+V6LavneslN7KdTvVtQtJPd
Po7DYYea4riMoz0NSkdq95SU4xT/A10rBW3NGaCrDjgQk8kL5dDLIPqRurc9
MfwmqK2u1aJuKeDhTtphl+i92CUyaJWwMNSA4zmbIF3vWLhaqBu70XSEZC5W
Lo2sNWQBqGdttWlZI10uX5IoAXxTfntb8Ng0ApwzjPz5C4aRP9Oyws3ULCW7
oDgl+nsgub2G8HQ2V9c8KLvSRx005whL1xYIXtF60RCZg61L247eGMgyZNw+
3JtGx6rVQ5Zdky+mF5pSYDoSDEetvZyul1OO9lmvQJHsMW7uIqhD3date/he
6x5aKFhr/4+n4yxT1Sc00HUHa9kqmhoAK1iD+VpyaJDQk9cZ8Hu5Vb5xq26h
K9gIWkwxUUG8d+ljsATQoZqnoCDYQ+99duC8DSEC6MONKam6Ih+i5y7yJZ9q
lWmcrGcmaEU+d+vd+fb7s2d3Jvq/3pPv+PPTB//+/eOnD07oM9DdN990H4R5
4uyr777/5qT/1L95/7tvv33w5ES/jG+9wVfizrd3/9cd7Ybd+e702ePvntz9
5o7H0TjXgafQhKUigADEbc26WVgXnKTBu3f/9P/+nyCmqIcpVPnlF/NHHmQx
/nh5qRa6t+UCiED/CdxxI6C1lCSPTgNOeU2pLvLNW6+FTlh4FFwD/YiAT5br
vtbhGeOSJTzzG03MZknRUrYwXWEbPbjo3sJkONyxvoQauLi0ORU7WwqoA24R
ugXwK/83uN87f3U+8V6CeVaEEM7nanHw6vCcjb5Cw6AL7CW+vYDAYg7ljQEY
1Mz65ZK/QMcredNSWzyg8xtqUzf4yvv7370bt0EOSAiqIFpQgGnRab/H4Xdn
pwevJt6rb9TikPLiCxhmSmBgiovpQl1o74N1LnQddccwUTqjQMOQPxuXqe3Q
z6nNcyL6YGHNGvoUBDsi8iu2pgTgByF+sMWGostuT0yO2cUU5mkmNWU8VsIg
8935fKBiF6wYKkgPBd4GQ9jmx7mE5095MuIZ7/QGGHQxnc9I03OaoYLTZQJG
ci299c012jw/1QD3Melusww6T6u/EdSyDtLpoUKZg5W4Ykuuytl6RXJuqLVY
YhArojGosfDC/woib1mtFRkFccYv6qxIHyu7cwJ7+UJ9rW5O5WzFAqtUPbUi
aG3oHZ7h3bP7jx+bEUB3UQyZfKIRlxMwb/cwtUMz5moYjOPd+SD2HfjnN6Rn
6cEf9JNucP/NL53ql3YWu+x7R4NTKn3qgMSMsNZydeR9ozMZg5xSx4l9jIy0
lDdKBg8SieTlMPA9tj6TzsjubnjJ+QnXT7IjQS8Q3FGeVsfFPzcpMa/PvFKi
7nSl5nDWFhTdNpagD4Ru8TwHbEmXEJAhLtSYTy0qvM3G75xrEs6pxGgb7HRA
06ZWCcH2IlYqsJOW9evlxS+/TDAdhh8cwLhezjjeCsfIiqMaJQeAwKChFxr9
auzLHVPt5AGYHA27RhnGwNRBtMrpoz0ihH9OMQmexxBnkB3ul+Ll5bLtVtXq
Xoj4k8tzq4DFVqd9KHoAEXTyo5wtDLwGkxhqah3BA9Lme6ss2nv9GZFMiMej
JWOLwSBTGYINsSElrk1QaeKumNArZgdAdDJ4mJkLSvNKoj2q/qRqQJ0EZLjv
nW0s3VkliM1iBlU27x34PlNWXS7Jg+gdf4zyHN2xn6SXmgVBaC4yz+k19Q6e
cZbzSt5MCLLDqVpNAHOAW4ESG+YEyji5QdFWuE1o/8wjMDnnfo+2GWSO5toe
4JppvQQnXAqK05Fd1ElRPURO7Q76BDdpbbmBl8le1tx03xGNU5G8Cvh8/sdz
zfUzLqoEojXxHnH+GCO0oMB8CV67a/jj3vmAQBP84v3Ru+d9if//o4enZq3g
ZIv0rtRVuUXPu/hNZwGpfWrWCJlpbs3kZgJrh9gOa4pH+0Qv93owvUsZdP4P
+sZHGrsJ8LkhSp2UH2bgqE/QUDGKdoPRg8XrqccoTNio2F1DvTVVrHrnq2kA
fgJjtRMtGeypErxhx/589QcaHY356OiI6XQkRjQmWoCa13+4+6UzCx1VHU/F
66ci3m8q9LXOV/KPwsRtMKS98+IgwHBaepD3MMZvMcSD1SGm9QhCvmD13THP
XX73nq4IIt+KUDWlmKR2X6917S61jtlAHmshFx2se+4sO/HZ8z/cJbRDBS/P
+ZXdjS4bcU9PhnQ3QVtDKSbpXVsJxWZSxzdbR9HzSM4fPTy4PsSqSKM1oE7n
HMzXYnhtcldQP500asqs+7bNNNrOqEArnb/2J14wIWaAPpwGv5wfjRKJQDit
RnLi/IGmoxFATXMXQHd0Hiw3LxdpFR6GMFOcWGpgleY30PN/hlsHewitKWdz
QtYbK7RGfHvfgleAipDYO3qxfK5qlort/CVDMDYcB8Dt37Hh0kTZVrHewewI
8BWKkeOwj40+Gr841lM723is29CBfjYqcF7Iuo7m4lo9YwWcqC9jtit5TUCH
LBeDe4pwkKllL4N8jIU7EtOYRuF4FSILA6GrxLgHQhlW6cmaIqcEbHSlAtm6
86fg7OG4wXezNektzy3B4sGR5ZlVEDkOApNNarXhRde0qWK7IgnS31UieH2s
HgicGVLuCfwenJw9O/wTvt1GNT2hNUf+GpTGAFkk32N+mMj+eTxl7Gvm8VbT
AKZYkojiowHOkmHxYvo3tVpuD5iwNzf/eMGrddAeUiWw9iKZv/X3WmMQzjMG
4Lw9JyEzqshgeM7CKKMXDu6+1YiJzKDDILmDIZMFZpdZAyjXnz0vNw1be20o
rOf8RPEwTrpMXjcQPP8uQ6GuaOGdzngkw/wTm0VIzkrOWiqRcfulPKEprxOe
odtMF21xmd6s1vMZYiWDSE0HBNs1auf3p/waP2eQe7NZcbJu5USzPI5gU3f9
44O1MbzUvgs9TJbNWZv2ndemHa+NGchHWpq2Y8q3WRNNIlqZt1sT0/xHXBHx
mBmiosjRYmYkcuhqDVMnS7delYHHjuocUzU2Kk+dOHVC5K9pk8peJLwz2g5A
MaWHtv5NeyVstEcNeQfqCCp8Vytm9xtVaLF3YElAQXvagMfBQE5m6bx1e2gA
NUVNqFsxTsPAaVPGtM+6VNlscakdG42rriW73l1B+i3lu10R5XBOw+zRkfd4
IUYOpBxGyHhAL1WHS6xvaarwjKff7gIftswJv3JsGWhlA4U/14YA9ndIArIl
NPl2IujHHcOluOyGXtdR0TXgbY9I6Z0BlYSuwtoVmBhm0FYkA5Q9qo+8XWED
wXhBZ792lieOlpIBERcR22Iays51TqWT7N3Bc9rjP7Ew+psORj+wnkaldE6v
9V5/Vs/VX3+himud3cD/+vy6KeGVuqx1ZVJFADkVFzhyJE0HEteaIymNYqxl
S5ulAeQed5ErTtNCWRv/ROl20aGt57UVp1RmwZSnF20vE9sMWVXSQYvu8Rd9
N92YdMmwsMEtXaPBEc+Xl8r8obx+vNVcYo27OIMZrpkF9KPgbTijQRA+mHbk
shWEXeapq/STo+GOXrTVJ1T5YlZN9M6PclbtgDJyVP3tVq3U4DyK0ci1lX4O
uMnZirhDDEywKaHs68u3nS27GoRF5dwE3sT2gyam6wyEbMAVvD+NgnjH6dRu
OYVIDLagQv3zSxMbGrEpE52xGREIq/JvELLq+WziwQeS86O+cNM4s2JEYtlQ
/QpZhBsbPKQNnlO9IxPLKhctZ2tfv6bNrAQeH2pbRNmvSbfP3unQbHujgByF
j+qOgdubFmzEMtpVCji5U70olxyu03pj2lK1i/l1h2MretfNJmzZxbUKwCG6
6bt3WXVQVIfaTaJ9LqHpVmIQytMC9pILxbqNuO2xdxCwndEEAv9er02IftkJ
rtAuMRsyrngwGUNbGtJt816avNlBeGgwRA0Xqd7o0pA5IR0o2S706iDtgZjV
nH6oTaace57q5Dm+tGlOjTcEObMmYrKSvdCXiouA7Y6LviH8dfr0ySNNXy2x
19YPabkKlNJQggjVbsqpkW3QabnQQWNbJWN4zGVqHjs9V950m3TM3JxSvC56
biIQC62ruoK9mz1NC9u03QvUk83kCGAGPtOK3nvU1fII8agfsXSIvDRpZm7k
3Dyk+PXzDmRO+tAHsZkNEe0ID4Fg5EKpq2s4+jooyqbKPHifHzyh7zTgFedX
54YCFpo+/9MoVWf2TbTduHX88DlF5L707p3zphb8ef/H2U/0zQn+e+7t4y8a
lF53E443eyRoRxC1fXNtzKSznNJbb2j3M/2OGWpELnS+DAQfk03XX7T9/LU0
MwCHyKxJC+gge8uxB73LwSn4HWykZuu5prIQQAloEWlL4Ab7EyiwAo41tOrC
1ZOh8qkdowPKa42iRzcxkiNYcuhHo6h2PIs5//d//7fgPOSxILBvlg4fH9j4
qvP5nvP5/o9XPzl/ntCfQseJuCnNuZokot9Hy7/pHMYjIcCO3oDotDnk7oRY
8D6UOO1yPfh24v2Fgstb1YW0p52e7x6m2jA8+OhoGEWgXFyI71feH3g268j8
8S29ce+KX9ny5e/Re9Lf/eO3/GOw+8e/8I/h7h/XIf8a7fk14llchrwkFEbn
zDvl/u9dHU48aOK//52G/Pe/d7tk6Z/+Mel3j2Hw+x8L+seCWx4L+8fCWx6L
+sei8WN37ltjcYfmVvHMB/EqM10iTEtZhJU3xWN/8J4fknnD0yaAyQvMkRrv
RzqO5yfmXtYB8CquXW96J7OwCmjHOvDNIvAubG9/+Nb5/Je9AgAx6SsBrAXW
aXwtHG9k+uM3sTCZyRM4X1/avD+t0rAnMFzw3gxn2u+eNX+bnk0s9cB0wEv4
LY+2Dy+bgOyMNDtvkzy4OtSbwe/Pdk+MLMQhP3Gy54mT7oldskQjGwyY/qt/
npmvB7N153t/1r2J4d3y4En/4MmOB+90a8pi4QHM3yoZmm546A8eG8g/avX1
F8rDWF1mhEOrTC0cf760O61GAGNcbtNv3TJuUldFfj7gFp1XbN3M/OvXy6ah
Qjfeh9XDFl2sURng8kMHh/bjFv3Mm1DLMORMJrV9fwwjOgzjORhGT8CgCY0v
GHaOIAI817X5nSIgJrVcLpdc5K1fN2ljmrh1XsHtFIUbwGQdkDMFCuKCgZlr
qm0NlDt1Z7O7MfLLxRitCKp4Uy+My2xcdqyfdQd0vfOOotF+WdjX3IMY3gcm
jMCBoz07yulAQH07cnC45aAHDRPdLquQ/eDhwIEYZJL4nR/9n4wN0n8GPwkL
Hg4OWoIPlN4+INt07/DQQgn907fdT385PPwfYPHrAwv16pr3jt6/RY32OtJ5
+kuv6oFEH5zjiPwW35D687R07sYPv0fQcPDPhRb+8j8A4iMBCPr2L/bbE/3t
X34/SKIvwnz9WddqX/RmwjkTnZ6gRqgUVZlzH8Z7s1uPTgXqd0dOxGhHpTnO
YMcmVN5vibc7i9iXwg52bT9e9HUtpsXbjmbggDyLqnduQAadQtI+P5toc3t4
PhH6bI/zma4eNlU2XY2nLQrlnyfeOd7tHuoPn+grRyc6yKJ76578rj8KSBdO
DE/u6B7fc+SPjtIbXOakAbwuLOyqSpZL3f47/qNrZok+xM/TD/+HEAdtbpzo
/6jaKt8v9R7wg1mnhm75Z/ju7c+6w/6XPe2aQuKt0dhd+QfDDt80vHFzbxrg
/+/QB8/2jGkKxQ8MrxnKjZvX2uL1sfdZM6PDJ1aNPp3syztDqaQMzYuZennn
l05utuTROebD1ktyocrwXJE+Geke9GREYSGGx3NZ7HxEx13K6nIGaDzcZTjR
xwmZIqnZBU2btso8Hxw4wYMT4/O75O7cUDdA2nXTHa5iTy2yWatOPXCE/nyw
5ueDEpsOlFN71Ewf5beBwz2nz1BdI+hCamVWXboE7mjaDcuevdIdf8XybbJW
9kgenWcadCfco5oGZ+mYJt5BRRxgtIdb3OnhWyNII+b9Z1cRY2kzzs4HqIg9
LX5iLTHZ2f5w1NaRGyiUF65G+WG3SjHHr3QaQ7dDiubZ5c4D27SB5x2/tZYu
3TJ/vfNMK9qJbOS16mrqjXayx7jJ4dFI55RYM8U9s7ZDUv3hTHt3gPSFEaMh
3IIoxG5EMeH03uE5q792c329XK0HlHJG7PYmnN7k5oIlgLUUaRNdDkv6dljU
OjHlOfygnj2HRCZCa9jhKR47JN+MdsBz27Lfy7x5/tNKPkWWlHyuajplc6AF
bPefXBe8nxZ48/B+97pAT8FdgaF2uHa1w+nbageH50lJPBic7GT2RremVtH4
J1TMDWf8+pKgvk780v5S+oW/m4iRU9T5Nfw0/l7oP0dl4LS1EhPZmMpfXXSl
k+yMR0zvpt+VGvtelfu6CceO2nz92fAhM2FTxa0dqG3fifqamWO/zfGRUHDL
hZpyDSHL9bEQf/e+JZ3Z//N37weOgv5d/P34y+E/9gv8xJqWl8u+5b/yfc+z
P/3Q/8Y/Bf1Pp6OfQvqJ+GEtyyk90Fp+sKeWK3MCTqfiW1r1u44Kn+w+3Usf
DDk6RJNcvL5abCKoqpCPXvAejA5j4Ne3SEinPfYknOhNbStV03YS2tnBrz4+
Od9dM92d7LtSF3QEyY0O/NKOxbnXJba5Ft6cGTQY0eMTu1tUcgUIbUfTOLJa
KV3kdcfWhehNoXfErn3MHaV2eMjWih1rDc8BKm78vhsMONCI38yWwzcmBqGt
fODrWJQOj+iHg8P+G/MiBUx0uOLHH58+vG8Ofjn2ruGrtsocadI1eYdmegfP
/Qf+uWPP0aQ/LMpuGP3rep6Jpws4QUM1b5V+uFQNH9nFOkRn/X/6iaWOzENf
uMGvmRnDYq15D59VCp0HtEO7TPR2s92Gv1slu0i0OLokR59iaw8ldlTTeDeq
rbWi05XNAaayP2HK5RadzzCU1oECMw72a+Rs5R0YGMC4gM/c7PIMogcD28xh
izRsyYVz0GqfqOBAm1Ny8qTV0MPuOLCa3GANzbAmoGGqJ7gwe7y7iD05KubQ
pc82FFjbXHC338qJU/GO1a3gr9nGTQP98Un70yhUq6+iceK+pn2QzAn8gnLv
F/rlgm+6lcLd781f6rDw4HsOYRpEQMI2aIsSJm8UUbykS7tseHQYB6UIJrdu
Y5g8e3M9iaI6Dbr8AFM3n7D+8Pv5b3yhw7ezpnv8X7wwSewR4brafcc86Ufd
5CgO6o60G6JpmxTJbgyi/zHx8OE2+q24uA6x9rOzn/7o0Y0b12ZQo316xk81
mo4RLC1/l41gE2Wtj4Xf/fmq3bFJrL1XyqbzTPmgo3FZ41BrFixbdUkjeJf1
12coOjxgxt63bd45GLSoOxLDsRig7+r8jzEM3ezOYRz2pP3h49L2hz3E5QV9
p6n9sG9uP7wrjX/YJvLHHs4ttNZd9QQ//bgEP/1oBD/dN8PTdyX46ccg+O3D
eUuCA398p22+k0IxPkePNlyHZQ/CgKmlQkU+8ITrjencoYsePQgniTFAFX06
YWdR/SiB1Ls5O5E3NdMBTn7CLfYdZWQ608knq+gNK4xpeS87H1vxaDLaF/Lo
bQ6scA3/1BvRXg5M8xtO70Nj5jCzDl0z4qMic8P5u925KZs3zlMRq0sXolgA
0e3n6kuPt86qBWDjenZuXR/DvDOuNMrIDepZO6DUL5fhjm6D0o42qcyeq9Ov
Zi0fWmjH3ToHXGol4CCx9eA8I52p056LGBT7jt8zO8AHJxrZ8l/nMdPrkej3
zxnitcp6SBTna8CmBJoMWq2k2e3rbvXnrU6yXK7WYts1kt75eIveObe64aOm
BvTlhqpLVT23u8KIs+wqm1GZsH2tT4mhDl/OVoo535YYmT1Po23bRjJ1+zPa
WbKo+c4K9gZqlw5i2Kf1RPfsCeTNBM4mgm4/oBjsB6QyMbYIroK6XjW/OMjH
uf/gAo53710aturOzp2tWxuzdA+SEiazonMpTg5FJxv6Y6V21FXRopg1W4jz
x/rYZxZus2p8Nq4WHLVak7Tb8nCzfdPmPob0Fx39T8wGHTMrGoBmBHNVgcNU
U2fzWDUjsfmT0IugT+jd4Yq4p04Z+u9wPZiCjvMxCk7uLb+yvsYWXbQ1dFMj
xzaQurs0mx/qkyoWt+u99zNbvDBrRg8OK0C0Y6Ddgu0hjYOJ6EYP6A+DRp26
h52BX21Z75v9GnxUv3deas6aLysdONKajuLhw5fPLTc4Fwf1J0Ydie+v+TAz
CPM1mNiemctHk7XtdmNOYH1fntCRglsLlcZLvqMuaSuFPOYLx5Ht139fMooW
a0eOmwzbH7aj47ZeazwEXowzQyem+LrfC3I+fpzJb7faNPoQdaIs1y08VbR4
ZiOkafFK3uiaSHvmS6d0+k0gI9KDwu4qcv3Y1jgm3Sjs2s66tM1caRAlvhue
ue8UyNqQ+q513lOQtkMR7BX/7YV2uMEENzSJf3xy+dPt1ZlvWy9A7PDEcY7t
uQz8/CFYYkcBw2axJdE7arie6JpH6JPtCi6tWfrYhA4M7K3FGnfYvbk1ku06
re6EvZ6bdZWbHdjhkJnJ+riQmpgBgI4OGdFiL00Boh71jrCaON/WB+9qIN5+
tYfi/wbL0CmF3jj8KhZgr8IZWABPb8O/na22K14+FpcNOu9fGwzp/fmLENcP
Y8j1wsFcP7w36Op5kMpSxBbesvle7uyXI29oRF3FPbSn4j3NqTcwp+KN5tRx
YqVjawZH71NlvNB51l2R7H12+KPa3bfbVndbYPkjW+fhF1Q5/+Pwq5+YR7/4
grcl9MF7DoqOu+HXx1/+tOdlm/Eebh/kANCjo0f2ELWDQ46K7A/vjiawbZ9a
JwKzLz/O4mWCKm5gAl4gnbPoIIbxDlM6+nWhprO1uhK8cQOsy8xlTnnVmznM
SQ6WjckZZmjCx3v0MIGOCjNgxXoZrYmr67IwbTzsLpXtHR8mmWgPBzCy1XJV
DGehduAqrv241tMpJfmqg4qvEbB19IgRRmWaNv7sCArZCxf7Y7ecNNIuNPQJ
MNBekd2/j+VdjOdAPK311FtbHLv5trUUe2qojn9TWZ0N9+rskM8tOdwW2K0R
2LkRFODzPVwMMCDg/wBM1lB32QqPDNVAPQ3237nKyTPKyRpuYFRhdp51/pFp
h25mo9NOBvvO+kJZfXXirg1nwlE/PCXyp9sPBcU9FBY7XCYXlZiti2OEdO0g
pNMPR0iihwz67A6qVR7hpY8emRpsE9gToRLjCCHH0l7S/ecUlrYtuXedDRoy
N6MJN8Lc3/8zQGeDyJe+MHgY+xK3x768d499vV0m/g3hsP6HvgDtXTX7myNm
Tla+oZbxbLOkDDT9986bM+xX2+nvvh1CM892paKveD+jW9n4zPsjD531t/vL
u3hev3nw72NF/9yiw12RwN6JaTsvhrFR/1rn1twaJRRv69a8OUqIxt7KrfE+
nVvzBrn7hJ6OI3Bk7seydnuR7KcTPutM/dG7MpLlFLx0TOyMeKc7NsYy68Nt
72wsz1siz8L1QcDugyDlbg9uveW/9ZPY78btAIejsQ02//6PH/dr+3Gn/zB+
3A6Ntdvu/y79vaGE7Cua3xXk+fUE/3Z30BH3HWK9rQG2Ijj/RF7hloX5x3ch
heNCeh/kQorbNd+v5UK+g6a6FQp99ITLZAf0GaZfHLDz6yDx3wekentE9btK
Dr2LLvjEmSTvvnuT0evPBptS6Dhid9vAAd9CY/e1eHpfy+f82+fe+M6pw25H
S1dh+HJFR6G7m7f1MYn9PbCjNxi68P2bc1npC9kG+xj6U6TlCzmb84ZzwmJ7
91mYU6FohwRzgqk57AITw/Ok+ZQ5U3TYVS0ejalChX+SokeDl7urQ7a3SJhb
6m+7dksrCPWKjgUZVDB2J5d3d231N20REv+Au7b0Nidz0wkWGs31F145SmQy
uKPCFso411iPJ8ontKO1QRuMzPdfkGGOmO+KLKlstcJE+Epr4fWROgDZ5RXW
sjZU1zcOPp6eHO25gpNIdmaqWKOjgE7GpwPkh3PqyeLQwLlAR6/SaAcwy5oB
9fbBHkSPL28aroo5apVvwzn60FvMnlya6z7mS6qKGR6HPZqP3mDmbjob3G3G
dDbbi+3NRi0ncwcjafn8NFYP3VnEo7PUTWlwz3WDzXYNtEZrNi1pBdrXGA7C
l4MLCvTNBWuKNo5usP1soNm8p2Z+gq+I2up+VNI9s4fl2+NmDdjoJEpv+3Ju
2x6W02qtxIqrkhutShYGhgwvlyWfkqt79SXUfAmZcwH5kTCn2BMPSMjTTTuz
ewVXas4hIHux7qAW88BtBfz+1d1pEoSHXDFNS3g8vOec7uh8fPbs6YNnz777
cig77nNTexf6L7+A14eXAh0ew09WzBU/r5c/u6+xcXqTUGpO4x06/Pwdp/Ed
h1dptXMODYn//myqlc9hlUdf/fzqqj7nBjX5DSWOnPH3d9Tct2f4bBYzqnr9
maXI1ui9ZWfasTFbjdwe9s5iKL9pPPG6i3K5rfFw+Jg/TGJa6mOxWdHwDcXr
9VxNzWWprKIm5l677iQR8zi3yzcOA+ibQ1nPNVHOXFV+7N0jWzo6u35c3g1r
sqy1dDxRmPYTciOjkDvRlymyih22QpkUPabPH/D7n3O7n58o/Ud/SRad12h5
qGPT7uIPewlXdzMUnaSyIoihD5jRPsZ4rtyevoN9F93sTUzHlmE0IaFYv8QC
8aVaJ8e8tdkPHKmz8sES9/UDkmlX5uzPo4m8SZbsa7+tHMELHMqRnt+nkiR0
9z+SpCUpSf9ZJEmzzH5ZCh1ZOtWPkvyNxEjbygMAmmt8WAWHmM6r4igN3yxK
+ioaA2oIGJyihZ//49uTY9PPz2dnf/7+56ff/efPbydtnHh5W2HbLSvu+PRt
iHxA7Zu6doTxG1CSlM4uc6Qna2b3zhLFz+uLGnndN3xPpmTH7HZu7wKK2/t4
mLOjaHhHNs+EuyOwtaI4dG3cGRYKew0TQ2deRb4Aig6cMUGUHV1xe8YaDbsr
b1y2tj6W3hc/5nDL3f1N5NzuDkMxZO4oHDB3NGDuKI81c+PDkLnxhWZufPhA
5kYLHXPT539U5s7CNzE3kfP3w9xx8asyNxDFr8DczLEdc8f5gLnjAXMnYbDT
6eBfNHPjwwcyN1romBv9/MMyd/FGzU348/fD3Gn2qzJ3mv4azH0rxE84nqDj
vj90YQnv9WdbGyeFOONb2brts6OJmUNm3G2z+3fY8tFTg8DazG6i1zekjQMl
+thI9YKauZJzQrq0n5RvY+JD6U1WhrlUX8W06xhgfRnP9mWkWmTG92A68HJw
pBJftSf4jL5qQ89t3963dQXf4AQms/+2ptN57JXcg5uh+k3c+/amXy5fbhFJ
uFcHuPh75oSs7Pjn810XMpoQV21vkeKqgsHQ9Z1GrBIt8XrGEbRPjXb5mlTV
4G5WfScW3WUIn2RFNxo7V5TyFchmKrqqkGuM7LszcyMTXaCy46Z4e/yN3U68
VSYotIujb9ClOiN78aip7KtopSwjUitXimZJzoNB66e9ldC63g13mcuX+3A/
sata8e1v5ixHU3M4pWOIHL4eni1to7fJUXoUHkVHsT7PFe90gX0qJTQnlJpo
JG+P1trCHgC5xKLOFnxdHx+K5kTLq7U+f3zSE1lrtFlrr3pnVWYvxjRNds+M
SXwk9MWIfHIVBtKaDejOHB26s6bp+YVzXYbOg7Ad9d2HHJSrt3vNYVXFi+Vz
qyy1Y9inQI3V6jzCPkAeg7xBd9TdjgcS/cDouEhhb1LVU+Ls/eACW30AG8/e
3Bnp1sYO3hP93be10t6xw+8ukfeQU+whJwmnUWGubI5030jJeXSF39W1TpGv
tBj3N6VpELBXlEUvykfeN7Pnu5TsZEQLK+1tz2WmfcHiPpTzwTj2STN38MGy
PBymjhk4g9Rpab6zBOauOwNGOrbYhlAm7o1v1hr6OjBlLDlQSnCu80i3SMBb
DckbDUnIUdjiXUfF4OChzkK42VTOE65mfCe7m7bgg/3G55NsG0cNq8b3GJs1
X18u6/HNym5eVZw7ePZ80pV3t06BxzCIRBcIG+7SPQqN1VqQmjGlTu7uvGre
NvrKO5Cte7zHIRWumpgbnq0oXbXQWnKoR/sj92HENysyStf2Hty1PfXNXplJ
UyNC0Bk7c8tW+pQ5KAtZzZU9nhpUnlkO4GuKB+ld2tbtkkmb11IJYKjp7IoO
x+FTjYC4uFqddNyMG2BibZ3g+FJx2YnYlQfeuhqQEra1pUEPodwNDeJNjgQf
MtqCs7CA+siCG33cxjD1JnheGkjtuehYg05DeT4otTbHHbY2waThzpvDz5dc
d9NRYHxa+/h8zh3pO70OJn220sVDxDtdLlx0Q50D7M4HIMde/DyfXc3WNlfm
nBFr0pB8KYWTtWNKOpN+/Zm8nrW/7L1KeEQj7sTJAU4M8KAB02nUK+q6u0Va
jJLWE8r0413AI62kWTuZnRv9UT/aco4uebf3TI02tNjjlhzP5RumyOBoGiO4
3L9x3CBMg4onsgdOsZPOZ0+6a8DbK7q5x9xRGf5XEJnMMwWDOQo/ujqTRdHe
sE7paQ64s/agqi4KZMthylsMU97gX96mwlhq2AA7EHwb7dTmwnnM3GdDW3jI
o9YwT7iTojm6czZvl8vNom7dLTz6lvn9CflW8LXOM7cV0BWea2Wnr65aNeer
7Ut95CpNg1dG19g1dBc61xrDgFHJCalQss+lOR20AjN5vBOIDt6nqhhOab/i
O3W7eDlfcyxtLp07IDEJ/ysNTCKBOeOB5c3H3Q3nT4e8aY5at3zlOnvO4cfa
zzWVBdqhhJ1o9V2qI8smHrjel4kAHHlfwavVFTpbV62SNBhSSXPpAI25G4t2
XEjpKFnrqhnVS5thOvKK9M6pfmx0wpKnzzfqXHZDGJbDLaVgNirBzSdOcM/B
a0fTd0uh9GXfQLPzGVUo6ZHoqonB2vXl0/pyl9GOjW7L2KxhVW9xZndyFANO
RhPK7MOyN0C4BzbReg71jXuH3OA84Fk3q8pWYpDIddU3okORhshzWgA6oI3v
+dW1i/rsNuf0v6mtLdW73EzNtL4uxGoxurPPuXSQJ6PqP4Hl9DkH1iW5tlv+
pjvO4zo2dVTWBQetDZwfB1bMnrU/2YjC6Gxvbn6XG0GD730ODNpx1m2wpRv5
9jFbuqx/pQ8A1/dN718Zy1WjFbnUcqPTdcsKhpGXRyzUxXx2MTNXW5fmTpSh
5vgzny3G0PFKn4nMew1Nuf8CEnEk9NTHWxOP9Uoxhxoe62+FXljfziZkDaf+
qduiuWP13MJOLnwy5ePupUeO2+hRLSNGb0uOmR6se7mZw/1LSUhTU3Wuy9AM
pbeklhblStEZl4wwLzZ0FwSBboudlit9IbxOk5KSJjfr1aUEfqGx2Ip5fSZR
1xHRZwi/rmYXl6ASlPSRGGiE4XOteXC1WRBleXuJulqubhxXj42EG1ZTnbtr
d8RqNPFYHxTzsEOlhMb6jfrs9g0VXD1rGp0f71yqwRNC1mzHhldP8Ona0r2M
w54caq+eObJD0nyk99YIe7pSHw/Ve1Fc68seSEks6CI8uZYW5p66F2LBH9N/
s/rS19YPoNUApKNlgilgNt4uQtiCh+9YqjWHJjncwqShqsruxiFgB7Wa8zWp
HVzlatJrs5Sy5sihPQfTUMUeB7er5IsP5OsBrL7FZzQBurFo0RXBclhNcR0+
O1dr/D0+NpxL9/Dm0wf3v/v22wdPTh6ciH7D8qD9Ug2KMnU2hiwhn9uIdi/B
n2o11bB8q7yTT8J/sYTwVqtl2zoHl6/XkoJiTlkbVziPDaR9wSYdbCSj9w2N
JNkKBhuXcyexafl+J7ilf91wmwqsMG3otgSbr7B1d7e4On0ILPCPYrNAzWbF
SryvyYOHJ/oBghe2a167w/0fj4TdrJPmWTrGjH0gVkGka6CiR1hpuVivQM1z
fWo63Zglaa76fHumlY5mEJ8z92PIbHVeUmU9tQnaNJu5lR6ndRMemLXc5sSU
3tKWC3N3nl7I2yWoUwH2kHirAbTmGCwTO2hnVnC2gBhEass5M36qOSh0gNI7
CaSQwmbVDdgAGtFzcru5AAjU3XBsdwU5nS6bxoYRVkSrDmmNPG2zZEO9OTYs
w0MB0OUNXn81WG7hXFRhdcva9io7Ed6nqVtOQs06jTy42Gikn40boq8h2xcD
IE640UakW5PT7sJEfamj+eMXu1Wxj+PYx/TFK0NHVeviQWjkhq86ej7xXh0K
E7/HCJetPdYfarGWq9pjZXxm0RDYjbHlqXPxEiGYY+8hUXFwH5OJJxt04vTH
dyYsbuw2Gu+VRhw1xbsWAADtJaNUXog+rtWSeuJkjoPKuR784eetTSRwiMCE
qfo3MKPnGpJo+PcSjlI76civV45sH2WCeOmvZ6Qpu4ib5URhFAsa1Cxh96+0
+BuzMvM7IHqTzelvtsMb9ooGweOCYnh+yJstFi6ZiAirWanrmS29dpFHdNKx
601ew+5OCBMS7Cva3auq7ZwY3RAV9d4LG/OqeOx06VyX15GD2/XcNZ90Vd2c
hAI8pr2uEBgMgi4X5zgGL+7B7AjQ+CUFnxakE7uN995CvRzt7n0obJCfj6Rm
vNU9ABreJaS5AfCkfPXwLjBMdU4Hj4hh70wAMqMuajebLAiD7LxXjCNmolSj
mXCsZLYwR9oOVombZXD//aJz4jhGRQsG4YVTeXPs3gzSXRTIl4USq/NloRrC
0N6ty+HBmt4r2vWpzJJuFhxNUbW7c3gH48uFAQNKuzG0P4o2KahuGcyqdLkX
Dut2ZxQLjaj6wYyvVrUio52UZdUfJD3IgI+jlKZ+YYyNt65XMqDQHvzbNSLG
+lArq97zPXava+UAKDyWm37rtbkGZnusUGakrtYcHmg3FbG1LpAA2kRHY7Bu
ZHLWMTYlFYRn8542dN5yANasnknuDVE1+WOXlGfSZzPTdiHmFCIeFkWTikJr
/EHHz0DttpkZE/15f03o51v24qYDs3THnPsoQxHrw2okAoYwlBlcAGoDjW2f
xbXX7Syv2DCaCdFUbGkG4Z5qvdGXDWoK97QnmrSi3422cNne3HXvZJxMb+Sp
msuWjBurY5BdB3aHqt5qgpFpmPB4dCI+349MQLDfh6dnQLCse097q/3hPe4O
2i2fTTd1afyzfq/abnY91Vl6r7tvURtYR0sw52oNYW4T9rYlko+McGXSXoqm
WdNunOvOUHrcS9LgwALWet7e7nZdm3yky7C3T7PnRowaG7gLersmiPig5aP4
NSGvd1HCW6s5+ybMAUb9GawxuGlZ3KqfbKDZVBPYFBHlSXj6C7dBsiJdfNgo
fSCL56wYneqb0/FRxHjuVX8TrBU5wfygnUjiWoqaPLfi9Pr1yaOzZz8Eub2P
rsOCdx3H9vVnQ99ViHu0sVpf7q0x+hsQ+s6bI4SpUnAvJWdnkSItRo6tUb8Z
Ne743dq1XShzFYFiP9w9xZ54QusuZ1LOUfb979t36+0MIXWZvu7K4SMyew20
jBtwGbix3QVzley8se71waOUu6GbthyXvevd7Ntr9ckiLNZLkwq2+/R7htCx
9ksgfQWV2+3bn817U+S4scuFcnfrL8v/PbAdakG8WBs3neARUDtEpaVd/t1o
1qq6ZC98xFmccRjBeFPK56AT74DvjnAV/uHAMTroluqwWyIqmhikXnvW6NX2
dws1/ZaMwSN5bbaySIOPTuCMzZT3FQT9CtM6uH/y1WG/Q1BaxCDIaSPJY5vZ
LucvhvVFXXRuKzuibznrrqu+llTM1S29uNA3O4/T5E5Rk8NFQ3PbvXKxkaDr
WhmPTIy4mUXMOnO/6DjWDrKcfOXSrgt6zdhZmfNxVcvWao6D7+8f9gPgTf90
EffgpL4tcTvdIRdjARsv5+DpDj5ElOY/O/nqsTkXorwZXlnb3yy3RwBF14KV
N8+RN9XOLvSJfvYCO7o82FS2daKmHXtX4MhdgxxdLCfvKmhip6B57ypoY195
MpSwydZ96pSM3mn5BrGqPngh3k3WztYrSi9pIZtaIdOZAXrrgFbgUDjtGKPQ
r+UOYfTeUhjFLmG8kRczjyJt86NhP+R36ml0xw3cIiBCmnsNhvMllnRmY7eX
aYX/1+nJN97BCUzmijyAb5YXh26Ltvh0fqHKlYSV0wU9XBWjPRZGEX81l15y
ucsoowiOWNEGfXHw7A3y/dIgxEu5qrU67n8zN9Zb1lbD0JTWLlpG2h3GcNJv
s6biVVWzDae7hZa7WGrhpI0OTREfLXU1Vs132Y3UOWareHQJBBCKqQ6hcALF
Waaqaci/ca3HW1j3WQ/1b3TaQmxVGPE+OKpJMqk1R7RbM+6vdDiov4/n3iM/
7hJX9y/VcuGnuqKVU+AmWN6np5xSxINyxjccH7oY0cW/AGPtemoAnmnJ2dXo
wrD1zrq04QyhSefLi5/Dg38//CIU1Lm9fPXfbXnmTvbT+WxCy5wHMdf7WNf/
iM8nkvZQH1tBVc2lVjX6uUlfFLSjSNvc0hSEOe/utBMTOjfhFM61XVDSvGJ3
Om5XGVFjB5jvf5oJH3qG3N2zR4IkaMnpIb5v3l0t1u6wii1nZXVMgcKa9kjW
QTTfRu2V6AOAZGJIZm96Nq1n5LXThdN3x3UTYPHZBV8XdkHnk9iEzgqaW10J
vgiOeFvp1X7J13Gpo4ujCS0H5ZynLCZ8aoH2l4y+2HFlCrlw5Y2AzEiTEehY
TpcW7pibpk8nH7YOlfNi9jgXneLpV4LSRl0kykal0fzVsl3zLV66yvwln8Bg
64w41mN2Q7AJI3PSrhmg22AT9NdcwuMkBqDwGyUvXgEKt+Re6Ke0nLGodAOi
jJaNhF1hPvqKHi/w/W3W2FEJpfMezPoUfeCKUFj8Wlid4QbGnWJzEwRbL+e6
qKW2RgLMiSVdX171DE9Hti1f6uNKFsTCnhZT4kgn58fJVZ1gMhKkdRsfUQGU
qFN7I6GwTN72e9sP2ByAg9z9EHp37+FEmO2N9hm9d+xwwnEivTls8FNyqB3N
Ex0IPuuzZq8/08HhaZ9J+2V07drZV999/81Jr3NtOdhyGD/jTTPLF5Tc102K
vkmsGdzo9qalY8+0naJYSYfptJXbPvxDOMHW7euG+g3WugGt5uxmIe4bLumj
zYxPu9k2HHxmFEl4ST9uFvWbT70ZnHlj3fdnEG/ahKbkc4Lc3cAWSzekSoI5
16UY5qrD7cAY5dHmoi9s0rxD1XwMJdc6Kc9Fg1S8MFv09zivobmt42g2a4id
+26cuiktxQSI+zOlR50LW+9FflA/Brcwc+vsz+2aK10mWnXJEq5bM3nHDgbo
5XPrr8i36SAxaUJ4q6eSA0TySrx+bb6jr6z3ITewBavWaC6OwsxphwApmL5/
CrheNxtyrxgUW31KhuurzcXS+3olX1Z/u3lOlzHOpmeXEs15X8MZWGLpLJ/X
wskGrtSLmXppKp2vdGEe+U7KJAFJT1ZQXidyMYMVvIeG6pX620Q8Q+dyIb17
K1nP6YzHsyVcBe++ms8m3kM4Fc+9E7WYQdN8jS4WYLOX+OH+JRXwL0k1gCTr
NXiHsfE9iNWfAU3UqpQUOScC2OHaWdsCER7qokspdWHcLsEqxHQ65cNPaf2e
oVnvB7A/6DvKGXfbg9b0zAv9zPYxZNs1fmI7qbvrZKFhUeC4Ynwi+mQBFdoz
y9w6EC6FJgmyumMiTEK9z0mQA9Ca07yc1szJtfSiPquWL0rnSzwv1eBs6q03
u6oBezwFR5gv1StJB7lfwdt3dmhqdobxBrN0Zz3tbG375MUpHSWIJb6jY8oW
RLgKlFNE5oRFt1f9brO0r9oQLp2XuvsNuleX4idcTM1DNa6GJj63yNrANKnP
GtejN5FqmCmtMA4OzyfDG+fPdaUhHY9ByJcuq3fP5LJtd4f4uZ2ot+4GrZ93
B/9yP2qrH6vMRj1tHyI+7q07YvKQj2IZTu9NvbJOvdPlBrr3jK41fbHGHOph
2rZ7QEiZIvukffRWzD4BxAw+kJPDiafDTeRajq+EJRKZtbCnsTFL7liVbY7Y
qoVzeINH6x6Eb2ZrU/y60vQc3brHh21NFuPj6b7DZHcymscnHn/YlPQhpmYe
TraQunRExzkF+PzJ5XlXUP7M1V3mWMJO09zz/sULvL4+vu2gDsM9ydZHijuT
Ox1Q5nTGsE0AA27inlMWY1bV7oQwKmRipXeyJWqTTiiojrf7knbNWxLoLXTt
8NxtsonAREz7iXd+/fzsyqCGlj5qSG2WsQ+b8gqSnh0bB5OL2mqHm1kP5cbM
EWtMj/dPn492Xnqy3b2nW2t1msG1nK0Eq99VXzVOLMXMhH/bbfMAmWa9z79W
N6Rcz22wBiMUZqLmbD736rjzE24aL52iL+cscBOtcy+iftOBdV1e5lvassqn
ltIYvS89GX3A/wn8S5hZ0QEjcZpkURaHflriUyFoIfC9SoNMqrQJ68Cv8YcK
UrBlFvlhVCUyrJssjqKkDqImL+LML5IsDOI0jeM0r0Oh/LK7sG8AQ7xgAsBD
onFGohE4Zw6jU98X98xNG2lcRxhAHYYyzJokKIJaBVVQp0Uj6zIvijrP07BM
clXGYQgXq1B+lKoqroJGpJmfinvjc66rPKr9OpeRyv1ShZWq87KJkippIhXG
NZpJ/UrmjSykH/sRPkbCxyTzvArTNIhrsSU7dBFHWFQyjuu0bmRTZZlM/DIL
ZVklUdWUGT6UqqiaNAti+j0VeREplddwGv0kKpPCHKCMpnIZFFVR5vAmk6JO
4kCVZdM0sQqLJkrT0FdxrPIQ5M9KvwkVVrLChFSRRgKjVMqPoziPgrCu8jKO
ZJxXcVDHKqsLP26KpCqCPIhkWsZNGsZRgf+PMIg0j/2ilmko8j2LFt62aIl8
0/99ykXN0yxqmjpswrQMwb9FGDZVnCdYCRX4aa0a3y/yUPmyLMMoKuMqFSqJ
cyJMVMqw2Lmoaa7qzI+yPE6bGMtSxn4WSb8OAr9JVVyrvEkiWeZxEqVJ5Tci
qrMmKNOskjIqgjDtF7Ws6hK8FVR+nkZxkdRpVOeBzNM8T/Imihv4/kkcZVWS
ZZkPzilC9Iz1LiORVjFELVIZRiyTLA1V5pd+GoZREmZVGAQqxCwgdHmAl5os
LLIAL5Q58R0Yuc5jJdT46szfRJ/IqMxrJWNZFJC9OAXDZU1Wh3URNSppQlrH
IKuxyEmU+HGW1HGWRUVFagVem5+Ja91Q5ftNqVSaR6HMFchZgYEw6ygKklo2
qUz9IG+CAkJTygiCksRgCsiTzJNYlPE+Hv8NFROmAHWUFVCmcZVXvqwg51UQ
FxKcEZe+ygLSv5GfJRHEGVqkEkmjolTGdeKnUb6Th/MQ2huqLQGn+lEBPkyh
XeomrcogTVVWxBHkxs/8vJDgq1gETerHQRRCM4IDsbKn5naTEOwXyLQg/oMO
DZs4rJMmbsoAvKeSoIogL0Wi8kjiGWhK6DqFnlQYSJGFflXnFciRQx6DCLIk
syQvEwm5zOooz3zQDXqrSRTGgV/DEvo2i5IizKsqLgu/EluIk0aFFUCfRVY1
WF20Hif4dx2kKikyCKisytxHi6BYmNZFLiB1Mm1SLFWcNJWvehkFGesaMyuT
sqnzxFeR8qsgw+I2gQ+NKTEIqFHMN6ix1KqOgiaTWSplJRrYigbCyguVwpw0
sARYKkhilARJptBaXSRRgTfyArPPQQ7IfFqEZQDjEyRYv/ofT/GC+TDdsAQV
wqqpSryTKJXBlEBfJmRkod5S30+bGp3k0F4SRioAZZNAVkEU72TaEIuWFVAK
kQxkE6ekxnNYvyYqZJQ3uR/FWdmAwdJaRnUFA51VuZRBmIdBBj0fdUyrZCkV
2Kqo4rQsVCHzWvpVVYRBTQxWpL5qkqb0ywjM2fhQ3VUClQrL2MRCwb42SQze
9SEcFRQ6/orKFGMvoXLCqiphcGCJZZmS+cxSsGzV1I0PRoEZ8n8Fpk0qaE4/
VSBN4SdZ4IMKMUaQwTSkVQFqxaBHXIIlIUYweRVsWAo7lcJcpSoFmAOVMb0G
D9dpGSgV+gEWJ/bLSsGy5SlUONYWqhi0LUDdBno3wJLmfhEkotjDtNGAacOx
Jp38mnw7eVeCj+gN6/nx1fVEwgr6uYorkDoj8wd6Vg0MeFPmqsoSABopCXoX
cAXKrCwKqA9fNI2U0k+TuPk0Cn9S+KECToyBeKuoimloKdopwE4gYwx5agpV
QptXZZUFZaMayHQTgHrgoxJKrpO+usCvqgirOovxeg1RLuAnlEkETiwqVWbU
EP5OgYhC4NasjBQMR5JXjaiVD25TEGvCsBDaKMGDUA2wODEIEqRZliYwK4UP
cWxKgO/cT6BcZJGUMaB7CES2S/pi4OsYhivxk5DwOZY4qmVcxFAJaVaCg2of
qCpXPvQVcJvAokQZ5izzuCxhE35PJmPyAQrAyL/4IAXQy78JqPwmwNIPY+AG
uFwqKSMgYALiMCC+hFOmGKxAPMEkIZglgGBlSZLifxFkpQyE70sLLJXvQ97i
qqrBAPBxQfqS1XzlA7HHdRXX5J0VGdYG9gLk8omPwclNHIg6Td4TWG7Pr8Dq
pNDSn9B6w65Bm4AeVYKn4yaoMUdqFS4TPKgSfKbAVqEv4ZGQElM1vBEY4QZa
JIePsVMDQa9BbUEiYgWsXyeK/K4Yngj4qyzKuMj8AOIExzjNoeZ8gYWBwGVh
iXHUEVSS1R8lphWBbYE80zyROVRqnpQA81BmCSAERBY+K9znCCqPEAMEQUIn
lLlU0JN+HmUBfmkAHeqkklUGIUF7UDPQ3EEVQsejCx/uPylmaN2kKuu6CQLo
KWBVP/rU1hs+XZ0UUKi5nwM/F0mRFykcfqAl2YALsjAvYkVwosZSByl0ehiU
fg5dKeoS4AgsDQVQQ24V3ETwBFgeWgo4qy7QDi0nlq+OE7+hwAAYpw7jJIQH
6tcZ1i/9RJDzN2FnsISPp3IVhmA24NAIBq1qYN9kUCdoBbwDiFjWJfRfXRUy
y4UK86zJ4yCH4yh3g1GV4CX4ODkImtY5nMmMQGMORV8EMDNR7UO9lo1flSHM
tcAXicwk64cC5qRj5ygrYPcDiUFkQV7kEXybvCwl5A8uO1yjrML65iEsOKBB
XeVRGaURqEFgtKTAj1R50MBIJQp2PY7qICrg5qIxYGQYiLyGMgLfZRhNJQFJ
E5+WAwg2AetBy3xidi6kD1iQQOIBCuJSAhCAP/Msk4BDUQEMoGDP6KEoycKw
CIIaFhKoKQhFhM4yzBboGj3CSMGFLFQOUa4UASLCKjCMpLgVSOOHWBBgGBh9
dASTGlUqEPGnA6O/Akd/Cpj6wSp+AkCQwv+Ghw83Ciwq0zSGm1QD0ASQAz8N
o0AVeQoNS7LXFCWkxRdgccgVHKvdUvXBRmICqASBihtwQJPGMZxQKMkmBHoM
qzgq4M1BWKARgM2SPA5VTPHRuoYARlEA5FJ2cpnVRG3ASaiAwo+gLlNZQnTS
IAb7JkUIuQ0qaFICyWUK2w+0hceTyC8gDX4J2y+xgCUmgGeCBlgOP5YKqwla
KwzUrxpZ1kCtOSYtcxlhQEECMwXI6eefGqb+9mZm8gGqwWgG8UGqodMMt91U
8gmTLe/6f2+BeSO4igHwbkKpBSgbmDgA1jhXMHEqhxVQCjgH/4MWyfIslvgv
pBZAqslrAScuKQOYC4B/MBo4pApTCU+xBp+nJVw38g2IM/Ac1EYYRL9RzDRN
4GBGObyUMFVwaPAJwD1I87RpoGOiukkSHzQC9zZYVjhJcQGmhU3Z0oYSRISn
KeF7BX4NB7aO4zROKUgclOC8OElhzGs4qRV0DxQs/NCwisoCrF1DBFOgxiwN
kwYimab46MMTLxQegVhlcL1rBY0KMSX2y+By7dR9WJwMLcOXCxvAzQJ+YAF3
TPlAKL6CBFQVsC30MlRYBtghAog3nggrv5FwxyWGF4MR4L8AxkAwZQUVDFqC
HoAANfBBVKQSAl1GfthkTh4C9JZF3WS1DwIqHzCmBp6IswKiVIEVoG7gY9cS
ehhwoonKFHRUQMRVKrIqKXyfcijoEW5onINfMuh6GflpBfid4lXpxwlIE/mJ
qjMwn4waqVKsaUyB3VhUv9MY50dkMriNUOowmOAYH95KGFdRAgUTFHAr4Kam
Kg6lhJMekHWDN1NkIi4qYD1oPfCk9IswqiB8QQQC19CWWJsmpMAjOC+DdYSN
DFXpV3B+inRPRjKhbmVK7m9O0XYVB2kWxrCPWNqyKIAbkgRfKahtFZRSQOwp
oBMF4Heo9BTvhaECDC1rMDdwRJoCmUZ5JrHkaSkzH3A4r8sEnTRF2DgwMCHC
A6/AuU5i2IakSGsJIxbnYSHhjsMxB+tVsF2wBYAM0odFTUGcSsDalUoG5FCj
e8BarFbtYwZFU4MIRQIJqyB2pary0q9r2DA0UQIREKupNCjD4NdIdn0CfR5D
qlOV5cB0UZ5WSiWZpNh3AtwQQ6tUqo4oSpgklF+EZZN1GiQ+4AyQkwihyaLY
h/hF8CZgfSHDGSU6kwYWAMYb+MOnnHZR+REWTIW+jXlkeRNT5iyA1kqbOg6S
KGhgM2H/sSRRidfBLE0B0AHQlcdZCncnzYE9sigVaZABlkHqKImeRyEWK09j
lWHgFcBmXcZxAYny07yMYI/zNFL/+IYkyktKX6XQpRL+GyU2FBakbIBFcp8S
7DUUeOkDhuYkZnDXBFClDzRbB0BolK5UWMQqA67EsgHDQL2WJdA14D2UKuB2
nUE4cz+DDvB3y3gmc/ARPEiVJDWcyEAFPtR7DgTmBwkBSIiTTIE3IXtACgKT
Bm6FsS8pQRHKUkYBIBzQKiyLj4diYFKMrvCpnACASzYJ1X8EcUCgoXdlYbgi
mDDIaEGVE4B7RQzXpQyCOErSquZEChxcAOECNsqH6gJq9smxyYQPTAkhx7o0
PhwAmKs6hzHBOoDV6yBOy0ZGUAtNHgB7JGgkgq4AvIY5S4BSIeSFAPhVlO2G
fwMADFhTFTkUIjQcXigAsMFn0DGqhGvtE+At4iBIkrLIKeLsRyWIJYA585xE
CGoOKBfwFpxQlrDIwe7YcRmUZJGjpI59NB7nFbkDeLwuYjRe5hw4LPE3ZcLg
kqXg0DRL0wB8CGUFmw1qR/C74PwntYQ8RtKHKoV4JYDRsBcAJOAMoIokCcOy
16rwi+CHpZT9gtcP+SrwKSDMkkG5AjiUYZFBOnO/AjIMizqJFHw/aJBIVFh8
WSQJeCJvqjCXTQQfDgMF/i6w2BSmrn0aSwQqganKtAZnwDcoYjwNcmb+Xuf6
n8l0y6IMa4q+F+AdsCvF2YGrIshYDjyUUO1ODd0cFn6WSB/GXSSUuK7hTZRJ
mhP6CXMF/AxqUsQpgHUvZRpSirwA02M9yHODZ5w0TZPuFOsGrjlcy1jmoYoi
Bf/a94G4FHxuTKPAxKH4o4LTrlmcBAIGMVMVVioKEvwLSLIM4MA1wAfQL5DT
EP4fXF6fhAKUwiNlEiqCejLPGr8TazwBoFZBo0NIKgk8AgeRnGUVBVDn4JtY
FaqhWpaMgl41rAwpHiCbRBTkZUOq4bmFYKsKzndTSvI3IQSqTKgACqggBGSB
EAVkKJogAQKCR1/BVwO4SUXcBDKugVZCQGu0n4cyBa5tAH0rfJ8FMoghZ3C9
oZjgnOQJ/Gjlp1kd5kkIJzBXUlCPJJ4yJJgNqkDdwHYCZ0fZ702s47qCm5vA
p4erCn6NcgkbWgd+RZwOTgFCpERRBMYLm4BtdUVpmLQR4PZQViAKpcVggzFa
PyGUB5tcZDD0TQa4ibaDuAjBwtCueYiJUhK9ATWbICz2lnv9DhK47y3Zk9GC
ijeu6FssqLh9RX97jIAlyfJcCdjcGFoCUBieHNx+lUOrxXEE414B4FWMnVPw
FWQX5k/hz4Zq2/xGNSovYUr8XCRUR0g1PeSMygI2B0gfagCgHzBeQSCpPuP3
AUsmvqwEBfvQGFgKr/qlwiuYK5YwbmrF6VSKn6owoIRdFVIchJgK9i6mZBJZ
SLinVeiHZQ3rCsr6OaBwVeO7KAhlElBMHZib0n5NpzJlCEIHEQUNYGKhNGsg
jAYoPIZLjmXJZQzXBD5fBQc4oYimojq+Gia6FPQxbrTyKiScRLhgRQ2nCPiE
MuekBcFcMcQkongADDFYkgrloDZzqiqNYhFEmK2UFE6MCT4VmZQYc+NnEYwZ
hf8D6EewfBRipWGWmjiAFMJMhSqFv5kXWSMKQk4kfHXqgwUUnocnEIJue5AQ
FFKRZyFMHvwNGCFQDybNB5UjkDmNgPwbv6J4SxZLdCxSSqPmFBPO8VQEL6aA
eZAVBgdvNE9rFUJzkZJQUF4SHmJUgsWgCcHWcH9/T0ho8gFa2yht8UFaO//0
WfdP4OE2dQ1wDg89r7KmrKsannsAoB/CQKdxBksP6YQbCpCVlOSyppRjoDQ9
7D50OCSJZbEAAGsaCn9D6sDhMqx9iCoQWgSbUWcNBTupLMR6uEEIbelLYCRI
XFkFVAINT7YEGPKrChgKtqBIVQBtDjMVVUA6QBkxXA7InIBsQaUqyuvFYZ1S
IiWgKVJlTlxnEEwK3fhVCrmqFSVT/N9dFcBHBMlNngInNhWMRQWgC/wBGIrl
UqkMKYCswtL3E5pC0QB2AuWmIs0z9MDVLyHMYZ7mheRSOcgvlDSoSiXukD+K
/RO2poKnKi4hz/nuOqcsbYAq00ZCYuCLpnAYo6Sh0EhSYyEU+CFMG0pxQK1g
xQVUP7qGnwiBS6H5amADhUUDPihKrCosZ1mkRS4hc1juUPqQuhIebZACQwdO
GlcGJUVaJCXmgoTqYaMAi5+EsFYJEEEaV0EMXN2oNIkyBQczJGxMmkWADQOg
4Axuckn5uxIWCNgX7jL0kI++8UIqYS9j1WRlHaVQ4X6KUQIupzKKYB4bAb+a
oLvEMsNApNBrJSgJSACsm+QZ1hfwoYjwN8xgBBOGFQWKj2vwNLA1UH0ZCyht
rH9I1ZlRLGlvQBJifWCxgt0Jqd8QJNNiNDk8mhAOCm1qgKYvK6gKOB7gRlVT
6o5iEjVViJawlcAuGRR5BkiFMQbMzDBKYDsfUwbHsCEt81gFML+YE9hYUqTC
hxBROUCRVyFsFNwV2LN/wDqJj+kVp03i5xSygT/FAW2AC+KjCrAuBENnAUSx
Lgmnwvgp2GMhgXZCuHUlhKvMycfzS0oNS9oA4YdwoKEs4pIqMwgZNrSFAf4h
FK6qgp0CD0icUiV/VFAKIggrymNikQEbCOKQEsaMAIWzRoaRBKSBTwx/sKxI
6LH0QQ17WqgSRIyjCL5znPpwMKMG0DurqIAR6BGgr0kwpLDJ+jLGhES+gfMO
+B1naC6NfegWzAXMC1GOZQbIAF6GU14UgFRRAsQAEBrQlhywOhz2gsgBlYTV
wcr5BCTBxdArOYQ1K2iwCpIegYnhmWPURVInWQMYGlRC1ugCBggcDK/XjwtF
tWlAGbKGtoBnndeAdUAZBDygBRNZgv/hQPsQtJRql5tYYBGhX2pKICS89wUY
Mq5qmLUg/r0JfA5ET3ttABEb8BxoUlBkLqNNB/COYgVHCZY8i7BOsATAXlFD
BYlARyKEhU7iCIsr4ShUNcX2ap+MBBAywEelcpXJoGjgbKR1Bm8sgCUC3muo
cgFeBpTHP2YlyT+2v/yr44pJ4lPcSRTwf1M4JGgM3nVRU0S6rBTcBHLHgogc
UDgZFfCnj4nDC864kkLlMoOQFiGssWjgi1Chtwzg7GRhU8DTAV7F4iiqZoHn
SxXXvw8oM4GbKmRMpctgA2gPkEqFeUi1GHUT5DkpMkDfCp57VoApGvLXICJF
nCU0EvBOSpXBcGAVXihlHgPhoPkYpAK490OqjqHSbKBwisv36AnueJ4WUMLE
rrAdcPebpKwh32DuKATqh6nw0Z3ClCCkClKMxc0DKHnRlLA8VQK9D9RSUk17
wlvlkihMuXYlooQmvHFo3jDPoZBpMXyJIcE1Tn04b0okVRhWMVwwXwECAR6A
rwKoYtqIV8ETBXNAPUODxlUWYJJwmuEmqgwfQP0YQ4eoAv01tK2slFAa8O7B
8Xi+yiBzu0OMv6G//Nujp8kH6HOjzsUH6fNR+Y+54tVcFvebb7OGd19T/IsC
9SE0EZYfYAemOs3BEakPJSdJLqCZ8CIErYzjQNaQugDeQBl9aGVOhKVtJMSx
ghWBfofSCssYSgReRp7D2hRQ8RI+LkQMDm6QBISxwHh1JgV8lHhH3SGVXddV
BlgH2FGmjQIEgedOURPoaaCekvYsAEylkIkQ0y1EGlBVXCQJ7ahid+2MD2iH
BqqmCGNAozRu4HjDXDQR+TakIDFSqP+ccoylykQJ1oBP1dBOshTWo3Fj73kO
m0rbpyEUZZZkwGZwz/BCkReUrARLZ3CNigw8ShG1WsFQQB2oXAQlrOEnzoh9
inWBfFcUPI4iqL+wyBIFJzaXKe04AVVh7CHBFb7xg7xQML6hiGUMuYK2AqRt
qj3rAhitZIIHwgrKtampAAELnpMPoGIAFtqyDr1dkQ5KEiGDSkKPAX/XNYyP
KpwCkpripjC2TUrFQyEcD/yvLsoqzMh2JAHpkaRmsYioiBILmZHdDRMBraKK
T1//8RZSXUIXYylKmVHqiVLKNSYAHUmpcmjTrKEyG5CWVGsEejXQXRABSH6Q
iKSobfQKtC0amBZgEDLaMo6pUjYIZJFi5RvYtQbIRdE4StqmXvhJXldJRL5+
JoBY4n1VV7+pgiibIKKxRyqiahQKCmLp8iwFs3B6MqWkX0jBkTyhvVWiUiqg
Yljo94xM5G4FkURUsAyjEaQAAHHeYKipTzWhCZACQRUVxzW+S5o0LuAuZAB4
ULbAmzFtPe9j+zUwBsxVnikVUTPgUsCkIA2akqxtlSkqj1EKZguaBz1A3QGl
wRmDu5XFgJ5AT5KOD2gqqOw6pm0JcaKiMADJAHDgHkPTw44BG6IRCZKgywC+
YgjXOkp3IgnoVQDhIITLkGVcFVgkFAotiYQ1eegASHSyAW30giEWlNIF2KiB
i3LA38Cp1AJ4rhMwEu1bzFOsLjBSAWUtS8kOLCaPmQMVoT+4HpIKcGva8xgC
P/rBpwqLfFK+g3onK4uFwuyB23z4zXlNZwiUCtwXAYcoBTdF+WRqJbyMWtZw
cnIAC8op7I5H+mFdNAncl7LIgCDLOCOfLo6yFE5CEQRNAIwNP6JJMrBA4guM
vSBYX/sRVZUrZ9+kiuBtZYDvTRiHee3HSVFUBaxUScxTK+AxSjiU0q8ArMKQ
tEEI3EgsKDLay1IA+ECvxnAoQCw4hGlN53xEIJyUwG6U5VIV73oJqH6rDCMY
tAI2LUrzZPe+p4/IdyBwkwNXRwkV08Ltq+GlAhSWAZ0lEzZwcRvYX/AfBKOR
dPhG46uqrMAbBVneT5+z/mDWm7wrvUbkEsEnUZoTsFuIpVZ0RAOYK0PnWVXC
xZYUP8IcCFKHRYAp+RX8nhwerCjgyVYZbaqiSqxPpXgnIE+O/sOEtksENdAw
vM6QvH4QvEwU1bLTppcM9KlzyKloijLlmpAY0scbT6wQUY0p3GcqXA992rRf
kBdJFWM0qLSKq4I2NsD1aPA3HB7giihIwWyAPCEd7kKbsVTSwNlQ0AywpRnt
yAYXlgHwKWBrAplStI85D6KyzDBIKA44jWEUkqO5S4iAhkHRGBY7zMmBhf8N
9I8J0gEZDZY2qspI0nk1GJpfSpHAS4t4U0Oe0f6xj6i8Jx8ghrR/xhHD33Lv
b1LQfmvQnXy+uIlin7LlEhIKgYY2Jh2c0bZPWeUlFR+BTaoafFoVUSiaPO1x
FlYnTWof7n8EPoWVhxDEPu2nbuBIRkEOCvhhpgIsOhyHUMF1AVgm2w9POUv3
2cMPz/t9EksIDAkyBHlZh1QeAFxDKfAGwpKGTQDtEsLVrKjiIYHXVUWJqAAq
yX0oQkhDtFcRJEkD9ZNlVdzQiVQlxKNKJSBpUeCbhjZAArnLjCxbKKDzQGBw
VBVAmmVY94fO0HbLIKDQHoYK+QvDtMwTkB7qoQTLRvD1ZIxXUzpRRMGDk7Rh
iIJCqajinA4JIL2YJXhRpmEADcIV9w2fQdIkDe3QDCN4QpIiOVUdJlTonqD9
Cla//NSWkJxSmO4AYktHCcR0igheh4pBUxT7ouBZFdaBhOeb5kUYwgGAloBy
AOsCVP5mialP4pyqoq7LEi44aemAyw/pSIymbFTUVBTbSgu/CmJ8qYDbslCo
LATcBiNIH2KZ7XFOg4SCf5Wkzbd0DEYRAnwHFOGOZZHntD2jVnRORQ1tC/Wo
aP8D7cyh2vW4LEvHJwBLphB9GEza9af8Emolw4DADzE4jCPRmHpMQcompAM/
It4sFJYCDEwxbapXLiLoInA1nIE8VU1Ae3fIemJAaV7RkuPfJWRONRyIAJiD
Qw5X+VNzJLAjjGICokLnNyouoesg/AHsSEBfRFRKhi8oVB9BfqAX8zAg+9UI
jNDf52v+KpmT3ylq+2BFC9SGaTZ0qFxSluBZwHmq+yoUBhWpqkoAfWhHZhCW
aelnUBMKJgnsC4sOIABq7XNbPlhZE6Is6zKglAvEDLIZR7WPLhupYIl9aFzC
lJCnNKBQW1aJqsrjPAFQTdIEno/vVCCXNaFDdAFEWuaUZoDSxtrRFlYY9SCr
g4DyKoUfyExSqBeUCOskzZXAWqc1SJgC+NWlahQdypH5GBN+JacqBlwCrqO6
QtqXFEtK+xY5EEIY51VFvPCpUdsHK/zJBwgo5FP0Ampj4VEe61g4Pvy2u2Df
Au1VfgJNntA+VapKh0RmStL+IuB52GzQNY/qoEk5MxYpeAp5QQfnNDU8B0Gp
lCKtILK0IS+CKwH70hQyg0ooZAnme98DXKwG0gnWJolqyA5GQxkWiu9B+0Al
0QmF+zWUeJOK2mc2yZIkedwoPp8mgA3N6PinKqZaCbwMHgjQfV1WlM2DWYLZ
LKIa3OxDROIGeqcp64DOdworODq0e5V2ziuIMlymcnedL3QSnMGYymlL2gtG
la0KKAykDmlL+v8r79yS7MaRJPrPtegDAEE8lkPisf8lzDlUz0jWI9VLrUrV
jJVZW1tV5s1LIuDhDkR4NPjzBeyNEdAPpAeocuRjo3ZQi219h6xtTyGUT72N
1lm7AMR+ALpq+/oSixQLIcveVm0bdXol1z72Zcjs875QaBk8QtGmJ+xlB27k
+VAxB7jawpNsHF/AhkZawSJj9j04Z+EeyucnH2V9SFxoFOq9ex+hNaA3E/fx
PsddEb8XL5qccpONLlizZkkI33SxbKHMmLXDgXBpwZmuZYPxA0pCW0DtUsCK
8B3PSeJi8mH7jGtkTSLasoHYInetaZsVbx5UPB66absymqW0XhfxS0Amj3ol
ggTWdIE8uXoI22uoXeusyXp9iYvhveOZ/JcwpBA30g/xW0kU8yIlXVaMk2/K
TAH5XpoGUK9DDHSs2Ch/ewtJxiP6W7YiXk8B25vD7f3/x/eS/hENrFUFKQVF
Wm60TXN5REkLkSIE4jzdDBu+AVQuyGuyyjinDSAcXqdleK01EJ2tj8x9XhtD
IIFE0q57/I9G9oKWGOirkI3ZT/APvkzMFsAuIrGyyZ8b4W1rbofc5LPpZQOU
5OOxEW9fzyZE2AGBZUtWk4E2BfZ0zjv1/U8EYD7D+mBPUngDs5FSUr7nYgn2
YzMsCBvI6bVa39xqO8hS2UMIvmK9ogYarSplq9WjoGcE1UeGXdwqgG8XjoTP
zQr7gS9AjkCzG141wUKZFXvXjqipW8e8+9IncwyCmxRxPlr9JR1GIG5FZ47B
PoFQhjsFd7t/HDrx5TgteSKeXmA+fb8t6GlcNhswsHl0RV4wjqBhXzvty2An
wsVqv45i03F7y0EgUo2fRIrVCpTA1KzeRv88OgbcaQVwQxe87mHVqPl+EGVQ
8KP2VvrmbV3gFl8ddCuDN03aKXbCfO591vAt83gvkbr4PeITytfLt92PWrAL
53rlJM+frbnp6Tk30dit9Pg3OXD8ST3wlbCq67Gy/LVKybbZWyPJHyp6j13A
cSEhA3jbomEbQmLbtlGT845em2dOhCu7XrfjxTuzdXUDjht9MfJPOwr42AyG
FA/vwU252RBAO5xt3lv006TNxhzLQAnw1FLQA8pTPEQQqoedcUGF91uj2os+
BfZJAVbEo1fc0JbvZLDLujWyBfiWN5nT7kntY1+XzuDdHe99Q7nqhfQ5bgKn
QWlehaF2rymio9jOz7rLCA/J8zovpMpllUG6vxREweVHskE02UjZorogbnIP
OL/ZGmzcruXdRqIBliGepGsEVrcmHXVG6vJaKNYIwhAxp9VOq9hAqnlEsF2K
/azaSpbrNO0NycyPBYY6gRzVCrLu8yxTMFtIG5KSY3kdCQpihKxsCWHRZPFG
ZkK+IXr9Olf4+I3FKusK7HX3tVE6lsZu/VX6ICUWDQwKMOMHTfBrWLz8DNvq
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
fdIY3oYBAA==

-->

</rfc>
