<?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.17 (Ruby 2.6.10) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-mcnally-envelope-00" category="exp" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.2 -->
  <front>
    <title abbrev="Envelope">The Envelope Structured Data Format</title>
    <seriesInfo name="Internet-Draft" value="draft-mcnally-envelope-00"/>
    <author initials="W." surname="McNally" fullname="Wolf McNally">
      <organization>Blockchain Commons</organization>
      <address>
        <email>wolf@wolfmcnally.com</email>
      </address>
    </author>
    <author initials="C." surname="Allen" fullname="Christopher Allen">
      <organization>Blockchain Commons</organization>
      <address>
        <email>christophera@lifewithalacrity.com</email>
      </address>
    </author>
    <date year="2022" month="December" day="01"/>
    <area>Applications and Real-Time</area>
    <workgroup>Network Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>The <tt>envelope</tt> protocol specifies a structured format for hierarchical binary data focused on the ability to transmit it in a privacy-focused way. Envelopes are designed to facilitate "smart documents" and have a number of unique features including: easy representation of a variety of semantic structures, a built-in Merkle-like digest tree, deterministic representation using CBOR, and the ability for the holder of a document to selectively encrypt or elide specific parts of a document without invalidating the document structure including the digest tree, or any cryptographic signatures that rely on it.</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/BlockchainCommons/envelope-internet-draft"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>Gordian Envelope was designed with two key goals in mind: to be <em>Structure-Ready</em>, allowing for the reliable and interopable storage of information; and to be <em>Privacy-Ready</em>, ensuring that transmission of that data can occur in a privacy-protecting manner.</t>
      <ul spacing="normal">
        <li>
          <strong>Structure-Ready.</strong> Gordian Envelope is designed as a Smart Document, meant to store information about a subject. More than that, it's a meta-document that can contain or refer to other documents. It can support multiple data formats, from simple hierarchical structures to labeled property graphs, semantic triples, and other forms of structured graphs. Though its fundamental structure is a tree, it can be used to create Directed Acyclic Graphs (DAGs) through references between Envelopes.</li>
        <li>
          <strong>Privacy-Ready.</strong> Gordian Envelope protects the privacy of its data through progressive trust, allowing for holders to minimally disclose information by using elision or encryption, and then to optionally increase that disclosure over time. The fact that a holder can control data revelation, not just an issuer, creates a new level of privacy for all stakeholders. The progressive trust in Gordian Envelopes is accomplished through hashing of all elements, which creates foundational support for cryptographic functions such as signing and encryption, without actually defining which cryptographic functions must be used.</li>
      </ul>
      <t>The following architectural decisions support these goals:</t>
      <ul spacing="normal">
        <li>
          <strong>Structured Merkle Tree.</strong> A variant of the Merkle Tree structure is created by forming the hashing of the elements in the Envelope into a tree of digests. (In this "structured Merkele Tree", all nodes contain both semantic content and digests, rather than semantic content being limited to leaves.)</li>
        <li>
          <strong>Deterministic Representation.</strong> There is only one way to encode any semantic representation within a Gordian Envelope. This is accomplished through the use of Deterministic CBOR and the sorting of the Envelope by hashes to create a lexicographic order. Any Envelope that doesn't follow these strict rules can be rejected; as a result, there's no need to worry about different people adding the assertions in a different order or at different times: if two Envelopes contain the same data, they will be encoded the same way.</li>
      </ul>
      <section anchor="elision-support">
        <name>Elision Support</name>
        <ul spacing="normal">
          <li>
            <strong>Elision of All Elements.</strong> Gordian Envelopes innately support elision for any part of its data, including subjects, predicates, and objects.</li>
          <li>
            <strong>Elision, Compression, and Encryption.</strong> Elision can be used for a variety of purposes including redaction (removing information), compression (removing duplicate information), and encryption (enciphering information).</li>
          <li>
            <strong>Holder-initiated Elision.</strong> Elision can be performed by the Holder of a Gordian Envelope, not just the Issuer.</li>
          <li>
            <strong>Granular Holder Control.</strong> Elision can not only be performed by any Holder, but also for any data, allowing each entity to elide data as is appropriate for the management of their personal (or business) risk.</li>
          <li>
            <strong>Progressive Trust.</strong> The elision mechanics in Gordian Envelopes allow for progressive trust, where increasing amounts of data are revealed over time, and can be combined with encryption to escrow data to later be revealed.</li>
          <li>
            <strong>Consistent Hashing.</strong> Even when elided or encrypted, hashes for those parts of the Gordian Envelope remain the same.</li>
        </ul>
      </section>
      <section anchor="privacy-support">
        <name>Privacy Support</name>
        <ul spacing="normal">
          <li>
            <strong>Proof of Inclusion.</strong> As an alternative to presenting elided structures, proofs of inclusion can be included in top-level hashes.</li>
          <li>
            <strong>Herd Privacy.</strong> Proofs of inclusion allow for herd privacy where all members of a class can share data such as a VC or DID without revealing individual information.</li>
          <li>
            <strong>Non-Correlation.</strong> Encrypted Gordian Envelope data can optionally be made less correlatable with the addition of salt.</li>
        </ul>
      </section>
      <section anchor="authentication-support">
        <name>Authentication Support</name>
        <ul spacing="normal">
          <li>
            <strong>Symmetric Key Permits.</strong> Gordian Envelopes can be locked ("closed") using a symmetric key.</li>
          <li>
            <strong>SSKR Permits.</strong> Gordian Envelopes can alternatively be locked ("closed") using a symmetric key sharded with Shamir's Secret Sharing, with the shares stored with copies of the Envelope, and the whole enveloped thus openable if copies of the Envelope with a quorum of different shares are gathered.</li>
          <li>
            <strong>Public Key Permits.</strong> Gordian Envelopes can alternatively be locked ("closed") with a public key and then be opened with the associated private key, or vice versa.</li>
          <li>
            <strong>Multiple Permits.</strong> Gordian Envelopes can simultaneously be locked ("closed") via a variety of means and then openable by any appropriate individual method, with different methods likely held by different people.</li>
        </ul>
      </section>
      <section anchor="future-looking">
        <name>Future Looking</name>
        <ul spacing="normal">
          <li>
            <strong>Data Storage.</strong> The initial inspiration for Gordian Envelopes was for secure data storage.</li>
          <li>
            <strong>Credentials &amp; Presentations.</strong> The usage of Gordian Envelope signing techniques allows for the creation of credentials and the ability to present them to different verifiers in different ways.</li>
          <li>
            <strong>Distributed or Decentralized Identifiers.</strong> Self-Certifying Identifiers (SCIDs) can be created and shared with peers, certified with a trust authority, or registered on blockchain.</li>
          <li>
            <strong>Future Techniques.</strong> Beyonds its technical specifics, Gordian Envelopes still allows for cl-sigs, bbs+, and other privacy-preserving techniques such as zk-proofs, differential privacy, etc.</li>
          <li>
            <strong>Cryptography Agnostic.</strong> Generally, the Gordian Envelope architecture is cryptography agnostic, allowing it to work with everything from older algorithms with silicon support through more modern algorithms suited to blockchains and to future zk-proof or quantum-attack resistent cryptographic choices. These choices are made in sets via ciphersuites.</li>
        </ul>
      </section>
    </section>
    <section anchor="terminology">
      <name>Terminology</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <t>This specification makes use of the following terminology:</t>
      <dl>
        <dt>byte</dt>
        <dd>
          <t>Used in its now-customary sense as a synonym for "octet".</t>
        </dd>
        <dt>element</dt>
        <dd>
          <t>An envelope is a tree of elements, each of which is itself an envelope.</t>
        </dd>
        <dt>image</dt>
        <dd>
          <t>The source data from which a cryptographic digest is calculated.</t>
        </dd>
      </dl>
    </section>
    <section anchor="envelope-format-specification">
      <name>Envelope Format Specification</name>
      <t>This section is normative, and specifies the binary format of envelopes in terms of its CBOR components and their sequencing. The formal language used is the Concise Data Definition Language (CDDL) <xref target="RFC8610"/>. To be considered a well-formed envelope, a sequence of bytes <bcp14>MUST</bcp14> be well-formed deterministic CBOR <xref target="RFC8949"/> and <bcp14>MUST</bcp14> conform to the specifications in this section.</t>
      <section anchor="top-level">
        <name>Top Level</name>
        <t>An envelope is a tagged enumerated type with seven cases. Four of these cases have no children:</t>
        <ul spacing="normal">
          <li>
            <tt>leaf</tt></li>
          <li>
            <tt>known-value</tt></li>
          <li>
            <tt>encrypted</tt></li>
          <li>
            <tt>elided</tt></li>
        </ul>
        <t>Two of these cases, <tt>encrypted</tt> and <tt>elided</tt> "declare" their digest, i.e., they actually encode their digest in the envelope serialization. For all other cases, their digest is implicit in the data itself and may be computed and cached by implementations when an envelope is deserialized.</t>
        <t>The other three cases have one or more children:</t>
        <ul spacing="normal">
          <li>The <tt>node</tt> case has a child for its <tt>subject</tt> and an additional child for each of its <tt>assertion</tt>s.</li>
          <li>The <tt>wrapped-envelope</tt> case has exactly one child: the envelope that has been wrapped.</li>
          <li>The <tt>assertion</tt> case has exactly two children: the <tt>predicate</tt> and the <tt>object</tt>.</li>
        </ul>
        <sourcecode type="cddl"><![CDATA[
envelope = #6.200(
    envelope-content
)

envelope-content = (
    leaf /
    known-value /
    encrypted /
    elided /
    node /
    wrapped-envelope /
    assertion
)
]]></sourcecode>
      </section>
      <section anchor="cases-without-children">
        <name>Cases Without Children</name>
        <section anchor="leaf-case-format">
          <name>Leaf Case Format</name>
          <t>A <tt>leaf</tt> case is used when the envelope contains only user-defined CBOR content. It is tagged using #6.24, per <xref target="RFC8949"/> section 3.4.5.1, "Encoded CBOR Data Item".</t>
          <sourcecode type="cddl"><![CDATA[
leaf = #6.24(bytes)
]]></sourcecode>
        </section>
        <section anchor="known-value-case-format">
          <name>Known Value Case Format</name>
          <t>A <tt>known-value</tt> case is used to specify an unsigned integer in a namespace of well-known values. Known values are frequently used as predicates. Any envelope can be used as a predicate in an assertion, but many predicates are commonly used, e.g., <tt>verifiedBy</tt> for signatures, hence it is desirable to keep common predicates short.</t>
          <sourcecode type="cddl"><![CDATA[
known-value = #6.223(uint)
]]></sourcecode>
        </section>
        <section anchor="encrypted-case-format">
          <name>Encrypted Case Format</name>
          <t>An <tt>encrypted</tt> case is used for an envelope that has been encrypted using an Authenticated Encryption with Associated Data (AEAD), and where the digest of the plaintext is declared by the encrypted structure's Additional Authenticated Data (AAD) field. This subsection specifies the construct used in the current reference implementation and is informative.</t>
          <sourcecode type="cddl"><![CDATA[
encrypted = crypto-msg
]]></sourcecode>
          <t>For <tt>crypto-msg</tt>, the reference implementation <xref target="ENVELOPE-REFIMPL"/> uses the definition in "UR Type Definition for Secure Messages" <xref target="CRYPTO-MSG"/> and we repeat the salient specification here. This format specifies the use of "ChaCha20 and Poly1305 for IETF Protocols" as described in <xref target="RFC8439"/>. When used with envelopes, the <tt>crypto-msg</tt> construct <tt>aad</tt> (additional authenticated data) field contains the <tt>digest</tt> of the plaintext, authenticating the declared digest using the Poly1305 MAC.</t>
          <sourcecode type="cddl"><![CDATA[
crypto-msg = #6.201([ ciphertext, nonce, auth, ? aad ])

ciphertext = bytes       ; encrypted using ChaCha20
aad = digest             ; Additional Authenticated Data
nonce = bytes .size 12   ; Random, generated at encryption-time
auth = bytes .size 16    ; Authentication tag created by Poly1305
]]></sourcecode>
        </section>
        <section anchor="elided-case-format">
          <name>Elided Case Format</name>
          <t>An <tt>elided</tt> case is used as a placeholder for an element that has been elided and its digest, produced by a cryptographic hash algorithm is left as a placeholder. This subsection specifies the construct used in the current reference implementation and is informative.</t>
          <sourcecode type="cddl"><![CDATA[
elided = digest
]]></sourcecode>
          <t>For <tt>digest</tt>, the reference implementation <xref target="ENVELOPE-REFIMPL"/> uses of the BLAKE3 cryptographic hash function <xref target="BLAKE3"/> to generate a 32 byte digest.</t>
          <sourcecode type="cddl"><![CDATA[
digest = #6.203(blake3-digest)

blake3-digest = bytes .size 32
]]></sourcecode>
        </section>
      </section>
      <section anchor="cases-with-children">
        <name>Cases With Children</name>
        <section anchor="node-case-format">
          <name>Node Case Format</name>
          <t>A <tt>node</tt> case is encoded as a CBOR array, and <bcp14>MUST</bcp14> be used when one or more assertions are present on the envelope. It <bcp14>MUST NOT</bcp14> be present when there is not at least one assertion. The first element of the array is the envelope's <tt>subject</tt>, Followed by one or more <tt>assertion-element</tt>s, each of which <bcp14>MUST</bcp14> be an <tt>assertion</tt>, or the <tt>encrypted</tt> or <tt>elided</tt> transformation of that assertion. The assertion elements <bcp14>MUST</bcp14> appear in ascending lexicographic order by their digest. The array <bcp14>MUST NOT</bcp14> contain any assertion elements with identical digests.</t>
          <sourcecode type="cddl"><![CDATA[
node = [envelope-content, + assertion-element]

assertion-element = ( assertion / encrypted / elided )
]]></sourcecode>
        </section>
        <section anchor="wrapped-envelope-case-format">
          <name>Wrapped Envelope Case Format</name>
          <t>A <tt>wrapped-envelope</tt> case is used where an envelope including all its assertions should be treated as a single element, e.g. for the purpose of signing.</t>
          <sourcecode type="cddl"><![CDATA[
wrapped-envelope = #6.224(envelope-content)
]]></sourcecode>
        </section>
        <section anchor="assertion-case-format">
          <name>Assertion Case Format</name>
          <t>An <tt>assertion</tt> case is used for each of the assertions in an envelope. It is encoded as a CBOR array with exactly two elements in order:</t>
          <ol spacing="normal" type="1"><li>the envelope representing the predicate of the assertion, followed by</li>
            <li>the envelope representing the object of the assertion.</li>
          </ol>
          <sourcecode type="cddl"><![CDATA[
assertion = #6.221([predicate-envelope, object-envelope])
predicate-envelope = envelope
object-envelope = envelope
]]></sourcecode>
        </section>
      </section>
    </section>
    <section anchor="computing-the-digest-tree">
      <name>Computing the Digest Tree</name>
      <t>This section specifies how the digests for each of the envelope cases are computed. The minimum size of the digest and order of operations specified is normative, but the specific cryptographic hash algorithm used by the reference implementation <xref target="BLAKE3"/> is informative. When implementing using BLAKE3, the examples in this section may be used as test vectors.</t>
      <t>Each of the seven enumerated envelope cases produces an image which is used as input to a cryptographic hash function to produce a digest of its contents.</t>
      <t>The overall digest of an envelope is the digest of its specific case.</t>
      <t>In this and subsequenct sections:</t>
      <ul spacing="normal">
        <li>
          <tt>digest(image)</tt> is the BLAKE3 hash function that produces a 32-byte digest.</li>
        <li>The <tt>.digest</tt> attribute is the digest of the named element computed as specified herein.</li>
        <li>The <tt>||</tt> operator represents contactenation of byte sequences.</li>
      </ul>
      <section anchor="leaf-case-digest-calculation">
        <name>Leaf Case Digest Calculation</name>
        <t>The <tt>leaf</tt> case consists of any CBOR object. Tagging the leaf CBOR is <bcp14>RECOMMENDED</bcp14>, especially for compound structures with a specified layout. The envelope image is the CBOR serialization of that object:</t>
        <artwork><![CDATA[
digest(cbor)
]]></artwork>
        <section anchor="example">
          <name>Example</name>
          <t>The CBOR serialization of the plaintext string <tt>"Hello"</tt> (not including the quotes) is <tt>6548656C6C6F</tt>. The following command line calculates the BLAKE3 sum of this sequence:</t>
          <artwork><![CDATA[
$ echo "6548656C6C6F" | xxd -r -p | b3sum --no-names
bd6c78899fc1f22c667cfe6893aa2414f8124f25ae6ea80a1a66c2d1d6b455ea
]]></artwork>
          <t>Using the envelope command line tool <xref target="ENVELOPE-CLI"/>, we create an envelope with this string as the subject and display the envelope's digest. The digest below matches the one above.</t>
          <artwork><![CDATA[
$ envelope subject "Hello" | envelope digest --hex
bd6c78899fc1f22c667cfe6893aa2414f8124f25ae6ea80a1a66c2d1d6b455ea
]]></artwork>
        </section>
      </section>
      <section anchor="known-value-case-digest-calculation">
        <name>Known Value Case Digest Calculation</name>
        <t>The envelope image of the <tt>known-value</tt> case is the CBOR serialization of the unsigned integer value of the value tagged with #6.223, as specified in the Known Value Case Format section above.</t>
        <artwork><![CDATA[
digest(#6.223(uint))
]]></artwork>
        <section anchor="example-1">
          <name>Example</name>
          <t>The known value <tt>verifiedBy</tt> in CBOR diagnostic notation is <tt>223(3)</tt>, which in hex is <tt>D8DF03</tt>. The BLAKE3 sum of this sequence is:</t>
          <artwork><![CDATA[
$ echo "D8DF03" | xxd -r -p | b3sum --no-names
d59f8c0ffd798eac7602d1dfb15c457d8e51c3ce34d499e5d2a4fbd2cfe3773f
]]></artwork>
          <t>Using the envelope command line tool <xref target="ENVELOPE-CLI"/>, we create an envelope with this known value as the subject and display the envelope's digest. The digest below matches the one above.</t>
          <artwork><![CDATA[
$ envelope subject --known verifiedBy | envelope digest --hex
d59f8c0ffd798eac7602d1dfb15c457d8e51c3ce34d499e5d2a4fbd2cfe3773f
]]></artwork>
        </section>
      </section>
      <section anchor="encrypted-case-digest-calculation">
        <name>Encrypted Case Digest Calculation</name>
        <t>The <tt>encrypted</tt> case declares its digest to be the digest of plaintext before encryption. The declaration is made using an MAC, and when decrypting an element the implementation <bcp14>MUST</bcp14> compare the digest of the decrypted element to the declared digest and flag an error if they do not match.</t>
        <section anchor="example-2">
          <name>Example</name>
          <t>If we create the envelope from the leaf example above, encrypt it, and then request its digest:</t>
          <artwork><![CDATA[
$ KEY=`envelope generate key`
$ envelope subject "Hello" | \
    envelope encrypt --key $KEY | \
    envelope digest --hex
bd6c78899fc1f22c667cfe6893aa2414f8124f25ae6ea80a1a66c2d1d6b455ea
]]></artwork>
          <t>...we see that its digest is the same as its plaintext form:</t>
          <artwork><![CDATA[
$ envelope subject "Hello" | envelope digest --hex
bd6c78899fc1f22c667cfe6893aa2414f8124f25ae6ea80a1a66c2d1d6b455ea
]]></artwork>
        </section>
      </section>
      <section anchor="elided-case-digest-calculation">
        <name>Elided Case Digest Calculation</name>
        <t>The <tt>elided</tt> case declares its digest to be the digest of the envelope for which it is a placeholder.</t>
        <section anchor="example-3">
          <name>Example</name>
          <t>If we create the envelope from the leaf example above, elide it, and then request its digest:</t>
          <artwork><![CDATA[
$ envelope subject "Hello" | envelope elide | envelope digest --hex
bd6c78899fc1f22c667cfe6893aa2414f8124f25ae6ea80a1a66c2d1d6b455ea
]]></artwork>
          <t>...we see that its digest is the same as its unelided form:</t>
          <artwork><![CDATA[
$ envelope subject "Hello" | envelope digest --hex
bd6c78899fc1f22c667cfe6893aa2414f8124f25ae6ea80a1a66c2d1d6b455ea
]]></artwork>
        </section>
      </section>
      <section anchor="node-case-digest-calculation">
        <name>Node Case Digest Calculation</name>
        <t>The envelope image of the <tt>node</tt> case is the concatenation of the digest of its <tt>subject</tt> and the digests of its assertions sorted in ascending lexicographic order.</t>
        <t>With a <tt>node</tt> case, there <bcp14>MUST</bcp14> always be at least one assertion.</t>
        <artwork><![CDATA[
digest(subject.digest || assertion-0.digest ||
    assertion-1.digest || ... || assertion-n.digest)
]]></artwork>
        <section anchor="example-4">
          <name>Example</name>
          <t>We create four separate envelopes and display their digests:</t>
          <artwork><![CDATA[
$ SUBJECT=`envelope subject "Alice"`
$ envelope digest --hex $SUBJECT
278403504ad3a9a9c24c1b35a3673eee165a5d523f8d2a5cf5ce6dd25a37f110

$ ASSERTION_0=`envelope subject assertion "knows" "Bob"`
$ envelope digest --hex $ASSERTION_0
55560bdf060f1220199c87e84e29cecef96ef811de4f399dab2fde9425d0d418

$ ASSERTION_1=`envelope subject assertion "knows" "Carol"`
$ envelope digest --hex $ASSERTION_1
71a3069088c61c928f54ec50859f3f09b9318e9ca6734e6a3b5f77aa3159a711

$ ASSERTION_2=`envelope subject assertion "knows" "Edward"`
$ envelope digest --hex $ASSERTION_2
1e0b049b8d2b21d4bb32f90b4a9e6b5031526f868da303268a9c1c75c0082446
]]></artwork>
          <t>We combine the envelopes into a single envelope with three assertions:</t>
          <artwork><![CDATA[
$ ENVELOPE=`envelope assertion add envelope $ASSERTION_0 $SUBJECT | \
    envelope assertion add envelope $ASSERTION_1 | \
    envelope assertion add envelope $ASSERTION_2`

$ envelope $ENVELOPE
"Alice" [
    "knows": "Bob"
    "knows": "Carol"
    "knows": "Edward"
]

$ envelope digest --hex $ENVELOPE
0abac60ae3a45a8a7b448b309cca30bdd747f42f508a9a97ea64d657d1f7ea81
]]></artwork>
          <t>Note that in the envelope notation representation above, the assertions are sorted alphabetically, with <tt>"knows": "Edward"</tt> coming last. But internally, the three assertions are ordered by digest in ascending lexicographic order, with "Edward" coming first because its digest starting with <tt>1e0b049b</tt> is the lowest, as in the tree formatted display below:</t>
          <artwork><![CDATA[
$ envelope --tree $ENVELOPE
0abac60a NODE
    27840350 subj "Alice"
    1e0b049b ASSERTION
        7092d620 pred "knows"
        d5a375ff obj "Edward"
    55560bdf ASSERTION
        7092d620 pred "knows"
        9a771715 obj "Bob"
    71a30690 ASSERTION
        7092d620 pred "knows"
        ad2c454b obj "Carol"
]]></artwork>
          <t>To replicate this, we make a list of digests, starting with the subject, and then each assertion's digest in ascending lexicographic order:</t>
          <artwork><![CDATA[
278403504ad3a9a9c24c1b35a3673eee165a5d523f8d2a5cf5ce6dd25a37f110
1e0b049b8d2b21d4bb32f90b4a9e6b5031526f868da303268a9c1c75c0082446
55560bdf060f1220199c87e84e29cecef96ef811de4f399dab2fde9425d0d418
71a3069088c61c928f54ec50859f3f09b9318e9ca6734e6a3b5f77aa3159a711
]]></artwork>
          <t>We then calculate the BLAKE3 hash of the concatenation of these four digests, and note that this is the same digest as the composite envelope's digest:</t>
          <artwork><![CDATA[
echo "278403504ad3a9a9c24c1b35a3673eee165a5d523f8d2a5cf5ce6dd2\
5a37f1101e0b049b8d2b21d4bb32f90b4a9e6b5031526f868da303268a9c1c\
75c008244655560bdf060f1220199c87e84e29cecef96ef811de4f399dab2f\
de9425d0d41871a3069088c61c928f54ec50859f3f09b9318e9ca6734e6a3b\
5f77aa3159a711" | xxd -r -p | b3sum --no-names
0abac60ae3a45a8a7b448b309cca30bdd747f42f508a9a97ea64d657d1f7ea81

$ envelope digest --hex $ENVELOPE
0abac60ae3a45a8a7b448b309cca30bdd747f42f508a9a97ea64d657d1f7ea81
]]></artwork>
        </section>
      </section>
      <section anchor="wrapped-envelope-case-digest-calculation">
        <name>Wrapped Envelope Case Digest Calculation</name>
        <t>The envelope image of the <tt>wrapped-envelope</tt> case is the digest of the wrapped envelope:</t>
        <artwork><![CDATA[
digest(envelope.digest)
]]></artwork>
        <section anchor="example-5">
          <name>Example</name>
          <t>As above, we note the digest of a leaf envelope is the digest of its CBOR:</t>
          <artwork><![CDATA[
$ envelope subject "Hello" | envelope digest --hex
bd6c78899fc1f22c667cfe6893aa2414f8124f25ae6ea80a1a66c2d1d6b455ea

$ echo "6548656C6C6F" | xxd -r -p | b3sum --no-names
bd6c78899fc1f22c667cfe6893aa2414f8124f25ae6ea80a1a66c2d1d6b455ea
]]></artwork>
          <t>Now we note that the digest of a wrapped envelope is the digest of the wrapped envelope's digest:</t>
          <artwork><![CDATA[
$ envelope subject "Hello" | \
    envelope subject --wrapped | \
    envelope digest --hex
55d4e04399c54bec23346ebf612bf237e659a72e34df14420e18e0290f2\
8c31b

$ echo "bd6c78899fc1f22c667cfe6893aa2414f8124f25ae6ea80a1a66\
c2d1d6b455ea" | xxd -r -p | b3sum --no-names
55d4e04399c54bec23346ebf612bf237e659a72e34df14420e18e0290f28c31b
]]></artwork>
        </section>
      </section>
      <section anchor="assertion-case-digest-calculation">
        <name>Assertion Case Digest Calculation</name>
        <t>The envelope image of the <tt>assertion</tt> case is the concatenation of the digests of the assertion's predicate and object in that order:</t>
        <artwork><![CDATA[
digest(predicate.digest || object.digest)
]]></artwork>
        <section anchor="example-6">
          <name>Example</name>
          <t>We create an assertion from two separate envelopes and display their digests:</t>
          <artwork><![CDATA[
$ PREDICATE=`envelope subject "knows"`
$ envelope digest --hex $PREDICATE
7092d62002c3d0f3c889058092e6915bad908f03263c2dc91bfea6fd8ee62fab

$ OBJECT=`envelope subject "Bob"`
$ envelope digest --hex $OBJECT
9a7717153d7a31b0390011413bdf9500ff4d8870ccf102ae31eaa165ab25df1a

$ ASSERTION=`envelope subject assertion "knows" "Bob"`
$ envelope digest --hex $ASSERTION
55560bdf060f1220199c87e84e29cecef96ef811de4f399dab2fde9425d0d418
]]></artwork>
          <t>To replicate this, we make a list of the predicate digest and the object digest, in that order:</t>
          <artwork><![CDATA[
7092d62002c3d0f3c889058092e6915bad908f03263c2dc91bfea6fd8ee62fab
9a7717153d7a31b0390011413bdf9500ff4d8870ccf102ae31eaa165ab25df1a
]]></artwork>
          <t>We then calculate the BLAKE3 hash of the concatenation of these two digests, and note that this is the same digest as the composite envelope's digest:</t>
          <artwork><![CDATA[
echo "7092d62002c3d0f3c889058092e6915bad908f03263c2dc91bfea6fd8e\
e62fab9a7717153d7a31b0390011413bdf9500ff4d8870ccf102ae31eaa165ab\
25df1a" | xxd -r -p | b3sum --no-names
55560bdf060f1220199c87e84e29cecef96ef811de4f399dab2fde9425d0d418

$ envelope digest --hex $ASSERTION
55560bdf060f1220199c87e84e29cecef96ef811de4f399dab2fde9425d0d418
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="envelope-hierarchy">
      <name>Envelope Hierarchy</name>
      <t>This section is informative, and describes envelopes from the perspective of their hierachical structure and the various ways they can be formatted.</t>
      <t>An envelope consists of a <tt>subject</tt> and one or more <tt>predicate-object</tt> pairs called <tt>assertions</tt>:</t>
      <artwork><![CDATA[
subject [
    predicate0: object0
    predicate1: object1
    ...
    predicateN: objectN
]
]]></artwork>
      <t>A concrete example of this might be:</t>
      <artwork><![CDATA[
"Alice" [
    "knows": "Bob"
    "knows": "Carol"
    "knows": "Edward"
]
]]></artwork>
      <t>In the diagram above, there are five distinct "positions" of elements, each of which is itself an envelope and which therefore produces its own digest:</t>
      <ol spacing="normal" type="1"><li>envelope</li>
        <li>subject</li>
        <li>assertion</li>
        <li>predicate</li>
        <li>object</li>
      </ol>
      <t>The examples above are printed in "envelope notation," which is designed to make the semantic content of envelopes human-readable, but it doesn't show the actual digests associated with each of the positions. To see the structure more completely, we can display every element of the envelope in Tree Notation:</t>
      <artwork><![CDATA[
0abac60a NODE
    27840350 subj "Alice"
    1e0b049b ASSERTION
        7092d620 pred "knows"
        d5a375ff obj "Edward"
    55560bdf ASSERTION
        7092d620 pred "knows"
        9a771715 obj "Bob"
    71a30690 ASSERTION
        7092d620 pred "knows"
        ad2c454b obj "Carol"
]]></artwork>
      <t>We can also show the digest tree graphically using Mermaid <xref target="MERMAID"/>:</t>
      <artwork type="svg">  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny" width="529.3px" height="531.5px" viewBox="0 0 529.3 531.5" xml:space="preserve">
          <path fill="none" stroke="#000000" stroke-width="1.4997" d="M72.5,174.7l8.5-21.3c8.5-21.3,25.5-63.8,39-85s23.4-21.3,28.3-21.3h5"/>
          <polygon fill="black" points="145.2,42.6 154.2,47.1 145.2,51.6 "/>
          <rect x="143.7" y="42.6" fill-rule="evenodd" fill="none" width="12" height="9"/>
          <path fill="none" stroke="#000000" stroke-width="1.4997" d="M81.1,179.7l7.1-8.8c7.1-8.8,21.2-26.5,36.8-35.4s32.5-8.8,41-8.8h8.5"/>
          <polygon fill="black" points="166.3,122.1 175.3,126.6 166.3,131.1 "/>
          <rect x="164.8" y="122.1" fill-rule="evenodd" fill="none" width="12" height="9"/>
          <path fill="none" stroke="#000000" stroke-width="1.4997" d="M269,107.7l8.6-3.5c8.6-3.5,25.9-10.4,40.3-13.9  c14.3-3.5,25.7-3.5,31.4-3.5h5.7"/>
          <polygon fill="black" points="346.9,82.4 355.9,86.9 346.9,91.4 "/>
          <rect x="345.4" y="82.4" fill-rule="evenodd" fill="none" width="12" height="9"/>
          <path fill="none" stroke="#000000" stroke-width="1.4997" d="M269,145.6l8.6,3.5c8.6,3.5,25.9,10.4,39.7,13.9  c13.8,3.5,24,3.5,29.1,3.5h5.1"/>
          <polygon fill="black" points="343.5,161.9 352.5,166.4 343.5,170.9 "/>
          <rect x="342" y="161.9" fill-rule="evenodd" fill="none" width="12" height="9"/>
          <path fill="none" stroke="#000000" stroke-width="1.4997" d="M81.1,232.6l7.1,8.8c7.1,8.8,21.2,26.5,36.8,35.4s32.5,8.8,41,8.8h8.5"/>
          <polygon fill="black" points="166.3,281.1 175.3,285.6 166.3,290.1 "/>
          <rect x="164.8" y="281.1" fill-rule="evenodd" fill="none" width="12" height="9"/>
          <path fill="none" stroke="#000000" stroke-width="1.4997" d="M269,266.7l8.6-3.5c8.6-3.5,25.9-10.4,40.3-13.9  c14.3-3.5,25.7-3.5,31.4-3.5h5.7"/>
          <polygon fill="black" points="346.9,241.4 355.9,245.9 346.9,250.4 "/>
          <rect x="345.4" y="241.4" fill-rule="evenodd" fill="none" width="12" height="9"/>
          <path fill="none" stroke="#000000" stroke-width="1.4997" d="M269,304.6l8.6,3.5c8.6,3.5,25.9,10.4,41.3,13.9s28.9,3.5,35.6,3.5h6.7  "/>
          <polygon fill="black" points="353.2,320.9 362.2,325.4 353.2,329.9 "/>
          <rect x="351.7" y="320.9" fill-rule="evenodd" fill="none" width="12" height="9"/>
          <path fill="none" stroke="#000000" stroke-width="1.4997" d="M68.7,238.8l9.1,34.3c9.1,34.3,27.4,102.9,45.1,137.2  s34.6,34.3,43.1,34.3h8.5"/>
          <polygon fill="black" points="166.3,440.1 175.3,444.6 166.3,449.1 "/>
          <rect x="164.8" y="440.1" fill-rule="evenodd" fill="none" width="12" height="9"/>
          <path fill="none" stroke="#000000" stroke-width="1.4997" d="M269,425.7l8.6-3.5c8.6-3.5,25.9-10.4,40.3-13.9  c14.3-3.5,25.7-3.5,31.4-3.5h5.7"/>
          <polygon fill="black" points="346.9,400.4 355.9,404.9 346.9,409.4 "/>
          <rect x="345.4" y="400.4" fill-rule="evenodd" fill="none" width="12" height="9"/>
          <path fill="none" stroke="#000000" stroke-width="1.4997" d="M269,463.6l8.6,3.5c8.6,3.5,25.9,10.4,40.7,13.9  c14.8,3.5,27,3.5,33.1,3.5h6.1"/>
          <polygon fill="black" points="349.5,479.9 358.5,484.4 349.5,488.9 "/>
          <rect x="348" y="479.9" fill-rule="evenodd" fill="none" width="12" height="9"/>
          <path d="M112.9,49l1-0.2c0.1,0.4,0.2,0.7,0.5,1c0.3,0.2,0.6,0.3,1.1,0.3c0.5,0,0.8-0.1,1.1-0.3s0.4-0.4,0.4-0.7  c0-0.2-0.1-0.4-0.3-0.6c-0.1-0.1-0.5-0.2-1.1-0.4c-0.8-0.2-1.3-0.4-1.6-0.5s-0.5-0.3-0.7-0.6s-0.2-0.5-0.2-0.8  c0-0.3,0.1-0.5,0.2-0.8s0.3-0.4,0.5-0.6c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.5,0,0.9,0.1,1.3,0.2  c0.4,0.1,0.6,0.3,0.8,0.6s0.3,0.6,0.4,1l-1,0.1c0-0.3-0.2-0.6-0.4-0.8s-0.5-0.3-1-0.3c-0.5,0-0.8,0.1-1,0.2  c-0.2,0.2-0.3,0.3-0.3,0.6c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.4,0.3c0.1,0,0.4,0.1,0.9,0.3c0.7,0.2,1.3,0.4,1.6,0.5  c0.3,0.1,0.5,0.3,0.7,0.6s0.3,0.5,0.3,0.9c0,0.4-0.1,0.7-0.3,1s-0.5,0.6-0.9,0.7c-0.4,0.2-0.8,0.3-1.3,0.3c-0.8,0-1.4-0.2-1.8-0.5  S113.1,49.7,112.9,49z"/>
          <path d="M123.4,50.9V50c-0.5,0.7-1.1,1.1-2,1.1c-0.4,0-0.7-0.1-1-0.2c-0.3-0.1-0.6-0.3-0.7-0.5s-0.3-0.5-0.3-0.8  c0-0.2-0.1-0.5-0.1-1v-3.9h1.1v3.5c0,0.6,0,0.9,0.1,1.1c0.1,0.3,0.2,0.5,0.4,0.7s0.5,0.2,0.8,0.2c0.3,0,0.6-0.1,0.9-0.2  s0.5-0.4,0.6-0.7s0.2-0.7,0.2-1.2v-3.3h1.1v6.2H123.4z"/>
          <path d="M127,50.9h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2c0.3,0.2,0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V50.9z M127,47.7c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8c-0.3-0.4-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S127,47,127,47.7z"/>
          <path d="M131.4,53.3l0.2-0.9c0.2,0.1,0.4,0.1,0.5,0.1c0.2,0,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.5,0.2-1.1v-6.5h1.1v6.6  c0,0.8-0.1,1.3-0.3,1.6c-0.3,0.4-0.7,0.6-1.3,0.6C131.9,53.4,131.6,53.4,131.4,53.3z M132.7,43.5v-1.2h1.1v1.2H132.7z"/>
          <rect x="112.6" y="40.4" fill-rule="evenodd" fill="none" width="21.7" height="13.5"/>
          <path d="M309.7,93v-8.6h1v0.8c0.2-0.3,0.5-0.6,0.8-0.7s0.6-0.2,1-0.2c0.5,0,1,0.1,1.4,0.4s0.7,0.7,0.9,1.2s0.3,1,0.3,1.6  c0,0.6-0.1,1.2-0.3,1.7c-0.2,0.5-0.6,0.9-1,1.2s-0.9,0.4-1.4,0.4c-0.4,0-0.7-0.1-0.9-0.2s-0.5-0.3-0.7-0.6v3H309.7z M310.6,87.5  c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8  c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.2-1.2,0.6S310.6,86.7,310.6,87.5z"/>
          <path d="M316.3,90.6v-6.2h0.9v0.9c0.2-0.4,0.5-0.7,0.7-0.9s0.4-0.2,0.7-0.2c0.4,0,0.7,0.1,1.1,0.3l-0.4,1c-0.3-0.2-0.5-0.2-0.8-0.2  c-0.2,0-0.4,0.1-0.6,0.2s-0.3,0.3-0.4,0.6c-0.1,0.4-0.2,0.8-0.2,1.2v3.3H316.3z"/>
          <path d="M324.6,88.6l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5s-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8c-0.5-0.6-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4s1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8s0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6c0,0.7,0.2,1.2,0.6,1.6  s0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S324.4,89.1,324.6,88.6z M321.1,86.9h3.5c0-0.5-0.2-0.9-0.4-1.2c-0.3-0.4-0.8-0.6-1.3-0.6  c-0.5,0-0.9,0.2-1.2,0.5S321.2,86.4,321.1,86.9z"/>
          <path d="M331,90.6v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6V82h1v8.6H331z M327.7,87.5c0,0.8,0.2,1.4,0.5,1.8  s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  S327.7,86.7,327.7,87.5z"/>
          <rect x="308.9" y="80.1" fill-rule="evenodd" fill="none" width="24" height="13.5"/>
          <path d="M313.3,167c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8c0.5,0.6,0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  c-0.2,0.5-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8S313.3,168.1,313.3,167z M314.4,167c0,0.8,0.2,1.4,0.5,1.8  c0.3,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7c-0.3-0.4-0.8-0.6-1.3-0.6  c-0.5,0-1,0.2-1.3,0.6C314.5,165.6,314.4,166.2,314.4,167z"/>
          <path d="M321.3,170.1h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V170.1z M321.3,167c0,0.7,0.1,1.3,0.3,1.6c0.3,0.5,0.8,0.8,1.3,0.8  c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6S321.3,166.2,321.3,167z"/>
          <path d="M325.7,172.5l0.2-0.9c0.2,0.1,0.4,0.1,0.5,0.1c0.2,0,0.4-0.1,0.5-0.2s0.2-0.5,0.2-1.1v-6.5h1.1v6.6c0,0.8-0.1,1.3-0.3,1.6  c-0.3,0.4-0.7,0.6-1.3,0.6C326.2,172.7,325.9,172.6,325.7,172.5z M327,162.8v-1.2h1.1v1.2H327z"/>
          <rect x="312.9" y="159.6" fill-rule="evenodd" fill="none" width="15.7" height="13.5"/>
          <path d="M309.7,252v-8.6h1v0.8c0.2-0.3,0.5-0.6,0.8-0.7s0.6-0.2,1-0.2c0.5,0,1,0.1,1.4,0.4s0.7,0.7,0.9,1.2s0.3,1,0.3,1.6  c0,0.6-0.1,1.2-0.3,1.7c-0.2,0.5-0.6,0.9-1,1.2s-0.9,0.4-1.4,0.4c-0.4,0-0.7-0.1-0.9-0.2s-0.5-0.3-0.7-0.6v3H309.7z M310.6,246.5  c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8  c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.2-1.2,0.6S310.6,245.7,310.6,246.5z"/>
          <path d="M316.3,249.6v-6.2h0.9v0.9c0.2-0.4,0.5-0.7,0.7-0.9s0.4-0.2,0.7-0.2c0.4,0,0.7,0.1,1.1,0.3l-0.4,1c-0.3-0.2-0.5-0.2-0.8-0.2  c-0.2,0-0.4,0.1-0.6,0.2s-0.3,0.3-0.4,0.6c-0.1,0.4-0.2,0.8-0.2,1.2v3.3H316.3z"/>
          <path d="M324.6,247.6l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5s-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8c-0.5-0.6-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4s1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8s0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6c0,0.7,0.2,1.2,0.6,1.6  s0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S324.4,248.1,324.6,247.6z M321.1,245.9h3.5c0-0.5-0.2-0.9-0.4-1.2c-0.3-0.4-0.8-0.6-1.3-0.6  c-0.5,0-0.9,0.2-1.2,0.5S321.2,245.4,321.1,245.9z"/>
          <path d="M331,249.6v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6V241h1v8.6H331z M327.7,246.5c0,0.8,0.2,1.4,0.5,1.8  s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  S327.7,245.7,327.7,246.5z"/>
          <rect x="308.9" y="239.1" fill-rule="evenodd" fill="none" width="24" height="13.5"/>
          <path d="M313.3,326c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8c0.5,0.6,0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  c-0.2,0.5-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8S313.3,327.1,313.3,326z M314.4,326c0,0.8,0.2,1.4,0.5,1.8  c0.3,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7c-0.3-0.4-0.8-0.6-1.3-0.6  c-0.5,0-1,0.2-1.3,0.6C314.5,324.6,314.4,325.2,314.4,326z"/>
          <path d="M321.3,329.1h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V329.1z M321.3,326c0,0.7,0.1,1.3,0.3,1.6c0.3,0.5,0.8,0.8,1.3,0.8  c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6S321.3,325.2,321.3,326z"/>
          <path d="M325.7,331.5l0.2-0.9c0.2,0.1,0.4,0.1,0.5,0.1c0.2,0,0.4-0.1,0.5-0.2s0.2-0.5,0.2-1.1v-6.5h1.1v6.6c0,0.8-0.1,1.3-0.3,1.6  c-0.3,0.4-0.7,0.6-1.3,0.6C326.2,331.7,325.9,331.6,325.7,331.5z M327,321.8v-1.2h1.1v1.2H327z"/>
          <rect x="312.9" y="318.6" fill-rule="evenodd" fill="none" width="15.7" height="13.5"/>
          <path d="M309.7,411v-8.6h1v0.8c0.2-0.3,0.5-0.6,0.8-0.7s0.6-0.2,1-0.2c0.5,0,1,0.1,1.4,0.4s0.7,0.7,0.9,1.2s0.3,1,0.3,1.6  c0,0.6-0.1,1.2-0.3,1.7c-0.2,0.5-0.6,0.9-1,1.2s-0.9,0.4-1.4,0.4c-0.4,0-0.7-0.1-0.9-0.2s-0.5-0.3-0.7-0.6v3H309.7z M310.6,405.5  c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8  c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.2-1.2,0.6S310.6,404.7,310.6,405.5z"/>
          <path d="M316.3,408.6v-6.2h0.9v0.9c0.2-0.4,0.5-0.7,0.7-0.9s0.4-0.2,0.7-0.2c0.4,0,0.7,0.1,1.1,0.3l-0.4,1c-0.3-0.2-0.5-0.2-0.8-0.2  c-0.2,0-0.4,0.1-0.6,0.2s-0.3,0.3-0.4,0.6c-0.1,0.4-0.2,0.8-0.2,1.2v3.3H316.3z"/>
          <path d="M324.6,406.6l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5s-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8c-0.5-0.6-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4s1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8s0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6c0,0.7,0.2,1.2,0.6,1.6  s0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S324.4,407.1,324.6,406.6z M321.1,404.9h3.5c0-0.5-0.2-0.9-0.4-1.2c-0.3-0.4-0.8-0.6-1.3-0.6  c-0.5,0-0.9,0.2-1.2,0.5S321.2,404.4,321.1,404.9z"/>
          <path d="M331,408.6v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6V400h1v8.6H331z M327.7,405.5c0,0.8,0.2,1.4,0.5,1.8  s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  S327.7,404.7,327.7,405.5z"/>
          <rect x="308.9" y="398.1" fill-rule="evenodd" fill="none" width="24" height="13.5"/>
          <path d="M313.3,485c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8c0.5,0.6,0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  c-0.2,0.5-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8S313.3,486.1,313.3,485z M314.4,485c0,0.8,0.2,1.4,0.5,1.8  c0.3,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7c-0.3-0.4-0.8-0.6-1.3-0.6  c-0.5,0-1,0.2-1.3,0.6C314.5,483.6,314.4,484.2,314.4,485z"/>
          <path d="M321.3,488.1h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V488.1z M321.3,485c0,0.7,0.1,1.3,0.3,1.6c0.3,0.5,0.8,0.8,1.3,0.8  c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6S321.3,484.2,321.3,485z"/>
          <path d="M325.7,490.5l0.2-0.9c0.2,0.1,0.4,0.1,0.5,0.1c0.2,0,0.4-0.1,0.5-0.2s0.2-0.5,0.2-1.1v-6.5h1.1v6.6c0,0.8-0.1,1.3-0.3,1.6  c-0.3,0.4-0.7,0.6-1.3,0.6C326.2,490.7,325.9,490.6,325.7,490.5z M327,480.8v-1.2h1.1v1.2H327z"/>
          <rect x="312.9" y="477.6" fill-rule="evenodd" fill="none" width="15.7" height="13.5"/>
          <path fill="none" stroke="#000000" stroke-width="2.2496" d="M93.8,206.1c0,1.1-0.1,2.2-0.2,3.3c-0.1,1.1-0.3,2.2-0.5,3.3  c-0.2,1.1-0.5,2.2-0.8,3.2c-0.3,1.1-0.7,2.1-1.1,3.1c-0.4,1-0.9,2-1.4,3c-0.5,1-1.1,1.9-1.7,2.9c-0.6,0.9-1.3,1.8-2,2.7  c-0.7,0.9-1.4,1.7-2.2,2.5c-0.8,0.8-1.6,1.5-2.5,2.2c-0.9,0.7-1.7,1.4-2.7,2c-0.9,0.6-1.9,1.2-2.8,1.7s-2,1-3,1.4  c-1,0.4-2.1,0.8-3.1,1.1c-1.1,0.3-2.1,0.6-3.2,0.8c-1.1,0.2-2.2,0.4-3.3,0.5S61.1,240,60,240s-2.2-0.1-3.3-0.2s-2.2-0.3-3.3-0.5  c-1.1-0.2-2.2-0.5-3.2-0.8c-1.1-0.3-2.1-0.7-3.1-1.1c-1-0.4-2-0.9-3-1.4c-1-0.5-1.9-1.1-2.8-1.7s-1.8-1.3-2.7-2s-1.7-1.4-2.5-2.2  c-0.8-0.8-1.5-1.6-2.2-2.5c-0.7-0.9-1.4-1.7-2-2.7c-0.6-0.9-1.2-1.9-1.7-2.9c-0.5-1-1-2-1.4-3c-0.4-1-0.8-2.1-1.1-3.1  c-0.3-1.1-0.6-2.1-0.8-3.2s-0.4-2.2-0.5-3.3c-0.1-1.1-0.2-2.2-0.2-3.3s0.1-2.2,0.2-3.3c0.1-1.1,0.3-2.2,0.5-3.3s0.5-2.2,0.8-3.2  c0.3-1.1,0.7-2.1,1.1-3.1c0.4-1,0.9-2,1.4-3c0.5-1,1.1-1.9,1.7-2.9c0.6-0.9,1.3-1.8,2-2.7c0.7-0.9,1.4-1.7,2.2-2.5  c0.8-0.8,1.6-1.5,2.5-2.2s1.7-1.4,2.7-2s1.9-1.2,2.8-1.7c1-0.5,2-1,3-1.4c1-0.4,2.1-0.8,3.1-1.1c1.1-0.3,2.1-0.6,3.2-0.8  c1.1-0.2,2.2-0.4,3.3-0.5s2.2-0.2,3.3-0.2s2.2,0.1,3.3,0.2s2.2,0.3,3.3,0.5c1.1,0.2,2.2,0.5,3.2,0.8c1.1,0.3,2.1,0.7,3.1,1.1  c1,0.4,2,0.9,3,1.4s1.9,1.1,2.8,1.7c0.9,0.6,1.8,1.3,2.7,2s1.7,1.4,2.5,2.2c0.8,0.8,1.5,1.6,2.2,2.5c0.7,0.9,1.4,1.7,2,2.7  c0.6,0.9,1.2,1.9,1.7,2.9c0.5,1,1,2,1.4,3c0.4,1,0.8,2.1,1.1,3.1c0.3,1.1,0.6,2.1,0.8,3.2c0.2,1.1,0.4,2.2,0.5,3.3  C93.8,203.9,93.8,205,93.8,206.1z"/>
          <path d="M34.1,198.9c0-1,0.1-1.8,0.3-2.5s0.5-1.1,0.9-1.4c0.4-0.3,0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3c0.3,0.2,0.6,0.5,0.9,0.8  c0.2,0.3,0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9  C34.4,201.7,34.1,200.5,34.1,198.9z M35.2,198.9c0,1.4,0.2,2.3,0.5,2.8c0.3,0.5,0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7  c0.3-0.5,0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8c-0.3-0.5-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C35.4,196.5,35.2,197.5,35.2,198.9  z"/>
          <path d="M45.1,202.4c-0.4,0.3-0.8,0.6-1.1,0.7s-0.7,0.2-1.2,0.2c-0.7,0-1.2-0.2-1.6-0.5s-0.6-0.8-0.6-1.3c0-0.3,0.1-0.6,0.2-0.8  c0.1-0.3,0.3-0.5,0.5-0.6s0.5-0.3,0.8-0.3c0.2-0.1,0.5-0.1,0.9-0.2c0.9-0.1,1.5-0.2,1.9-0.4c0-0.1,0-0.2,0-0.3  c0-0.4-0.1-0.7-0.3-0.9c-0.3-0.2-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.1-1.1,0.3s-0.4,0.5-0.5,0.9l-1-0.1c0.1-0.4,0.2-0.8,0.5-1.1  s0.5-0.5,0.9-0.6c0.4-0.1,0.9-0.2,1.4-0.2c0.5,0,1,0.1,1.3,0.2s0.6,0.3,0.7,0.5c0.2,0.2,0.3,0.4,0.3,0.7c0,0.2,0.1,0.5,0.1,1v1.4  c0,1,0,1.6,0.1,1.9s0.1,0.5,0.3,0.7h-1.1C45.2,202.9,45.2,202.7,45.1,202.4z M45.1,200c-0.4,0.2-1,0.3-1.7,0.4  c-0.4,0.1-0.7,0.1-0.9,0.2s-0.3,0.2-0.4,0.3c-0.1,0.2-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.7c0.2,0.2,0.5,0.3,0.9,0.3  c0.4,0,0.8-0.1,1.1-0.3s0.5-0.4,0.7-0.7c0.1-0.2,0.2-0.6,0.2-1.1V200z"/>
          <path d="M48.7,203.1h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2c0.3,0.2,0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V203.1z M48.7,200c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8c-0.3-0.4-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S48.7,199.2,48.7,200z"/>
          <path d="M58.5,202.4c-0.4,0.3-0.8,0.6-1.1,0.7s-0.7,0.2-1.2,0.2c-0.7,0-1.2-0.2-1.6-0.5s-0.6-0.8-0.6-1.3c0-0.3,0.1-0.6,0.2-0.8  c0.1-0.3,0.3-0.5,0.5-0.6s0.5-0.3,0.8-0.3c0.2-0.1,0.5-0.1,0.9-0.2c0.9-0.1,1.5-0.2,1.9-0.4c0-0.1,0-0.2,0-0.3  c0-0.4-0.1-0.7-0.3-0.9c-0.3-0.2-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.1-1.1,0.3s-0.4,0.5-0.5,0.9l-1-0.1c0.1-0.4,0.2-0.8,0.5-1.1  s0.5-0.5,0.9-0.6c0.4-0.1,0.9-0.2,1.4-0.2c0.5,0,1,0.1,1.3,0.2s0.6,0.3,0.7,0.5c0.2,0.2,0.3,0.4,0.3,0.7c0,0.2,0.1,0.5,0.1,1v1.4  c0,1,0,1.6,0.1,1.9s0.1,0.5,0.3,0.7h-1.1C58.6,202.9,58.5,202.7,58.5,202.4z M58.4,200c-0.4,0.2-1,0.3-1.7,0.4  c-0.4,0.1-0.7,0.1-0.9,0.2s-0.3,0.2-0.4,0.3c-0.1,0.2-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.7c0.2,0.2,0.5,0.3,0.9,0.3  c0.4,0,0.8-0.1,1.1-0.3s0.5-0.4,0.7-0.7c0.1-0.2,0.2-0.6,0.2-1.1V200z"/>
          <path d="M65.2,200.8l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7s-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8s-0.8-1.4-0.8-2.4c0-0.7,0.1-1.3,0.3-1.8  c0.2-0.5,0.6-0.9,1-1.1c0.5-0.3,0.9-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5s0.7,0.8,0.8,1.5l-1,0.2c-0.1-0.4-0.3-0.7-0.5-0.9  c-0.2-0.2-0.5-0.3-0.9-0.3c-0.5,0-1,0.2-1.3,0.6c-0.3,0.4-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.3,0.6  c0.4,0,0.8-0.1,1-0.4C64.9,201.8,65.1,201.4,65.2,200.8z"/>
          <path d="M72.3,196.6l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  c-0.2,0.5-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9s0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8c0.5,0.5,0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5  c-0.2,0.5-0.6,0.8-1,1.1s-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.1-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6  c0.5-0.7,1.3-1,2.2-1c0.7,0,1.2,0.2,1.7,0.6C71.9,195.4,72.2,196,72.3,196.6z M68,200.3c0,0.4,0.1,0.7,0.2,1  c0.2,0.3,0.4,0.6,0.6,0.8s0.6,0.3,0.9,0.3c0.4,0,0.8-0.2,1.1-0.5c0.3-0.4,0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4  c-0.3-0.3-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5C68.1,199.3,68,199.8,68,200.3z"/>
          <path d="M73.5,198.9c0-1,0.1-1.8,0.3-2.5s0.5-1.1,0.9-1.4c0.4-0.3,0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3c0.3,0.2,0.6,0.5,0.9,0.8  c0.2,0.3,0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9  C73.8,201.7,73.5,200.5,73.5,198.9z M74.6,198.9c0,1.4,0.2,2.3,0.5,2.8c0.3,0.5,0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7  c0.3-0.5,0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8c-0.3-0.5-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C74.7,196.5,74.6,197.5,74.6,198.9  z"/>
          <path d="M84.5,202.4c-0.4,0.3-0.8,0.6-1.1,0.7s-0.7,0.2-1.2,0.2c-0.7,0-1.2-0.2-1.6-0.5s-0.6-0.8-0.6-1.3c0-0.3,0.1-0.6,0.2-0.8  c0.1-0.3,0.3-0.5,0.5-0.6s0.5-0.3,0.8-0.3c0.2-0.1,0.5-0.1,0.9-0.2c0.9-0.1,1.5-0.2,1.9-0.4c0-0.1,0-0.2,0-0.3  c0-0.4-0.1-0.7-0.3-0.9c-0.3-0.2-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.1-1.1,0.3s-0.4,0.5-0.5,0.9l-1-0.1c0.1-0.4,0.2-0.8,0.5-1.1  s0.5-0.5,0.9-0.6c0.4-0.1,0.9-0.2,1.4-0.2c0.5,0,1,0.1,1.3,0.2s0.6,0.3,0.7,0.5c0.2,0.2,0.3,0.4,0.3,0.7c0,0.2,0.1,0.5,0.1,1v1.4  c0,1,0,1.6,0.1,1.9s0.1,0.5,0.3,0.7h-1.1C84.6,202.9,84.5,202.7,84.5,202.4z M84.4,200c-0.4,0.2-1,0.3-1.7,0.4  c-0.4,0.1-0.7,0.1-0.9,0.2s-0.3,0.2-0.4,0.3c-0.1,0.2-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.7c0.2,0.2,0.5,0.3,0.9,0.3  c0.4,0,0.8-0.1,1.1-0.3s0.5-0.4,0.7-0.7c0.1-0.2,0.2-0.6,0.2-1.1V200z"/>
          <path d="M43.6,216.6V208h1.2l4.5,6.7V208h1.1v8.6h-1.2l-4.5-6.8v6.8H43.6z"/>
          <path d="M51.9,212.4c0-1.4,0.4-2.5,1.1-3.3c0.8-0.8,1.8-1.2,3-1.2c0.8,0,1.5,0.2,2.1,0.6c0.6,0.4,1.1,0.9,1.5,1.6  c0.3,0.7,0.5,1.4,0.5,2.3c0,0.9-0.2,1.7-0.5,2.3c-0.4,0.7-0.8,1.2-1.5,1.6c-0.6,0.4-1.3,0.5-2.1,0.5c-0.8,0-1.5-0.2-2.2-0.6  c-0.6-0.4-1.1-0.9-1.4-1.6S51.9,213.2,51.9,212.4z M53.1,212.5c0,1,0.3,1.9,0.8,2.4s1.3,0.9,2.1,0.9c0.9,0,1.6-0.3,2.1-0.9  c0.6-0.6,0.8-1.5,0.8-2.6c0-0.7-0.1-1.3-0.4-1.8s-0.6-0.9-1-1.2s-1-0.4-1.5-0.4c-0.8,0-1.5,0.3-2.1,0.8  C53.3,210.2,53.1,211.2,53.1,212.5z"/>
          <path d="M61.6,216.6V208h3c0.7,0,1.2,0,1.5,0.1c0.5,0.1,0.9,0.3,1.3,0.6c0.5,0.4,0.8,0.9,1,1.5s0.3,1.3,0.3,2c0,0.7-0.1,1.2-0.2,1.7  s-0.3,0.9-0.6,1.3s-0.5,0.6-0.8,0.8s-0.6,0.3-1,0.4c-0.4,0.1-0.9,0.1-1.4,0.1H61.6z M62.7,215.6h1.8c0.6,0,1-0.1,1.3-0.2  s0.6-0.3,0.8-0.4c0.3-0.3,0.5-0.6,0.6-1.1s0.2-1,0.2-1.7c0-0.9-0.1-1.6-0.4-2.1s-0.7-0.8-1.1-1c-0.3-0.1-0.8-0.2-1.5-0.2h-1.8V215.6  z"/>
          <path d="M70.2,216.6V208h6.2v1h-5.1v2.6h4.8v1h-4.8v2.9h5.3v1H70.2z"/>
          <rect x="33.6" y="192.6" fill-rule="evenodd" fill="none" width="52.5" height="27"/>
          <rect x="153.3" y="26.1" fill="none" stroke="#000000" stroke-width="2.2496" width="136.8" height="42"/>
          <path d="M201.1,43.1v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1s0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8  c0.3-0.4,0.5-0.9,0.5-1.3c0-0.4-0.1-0.8-0.4-1.1c-0.3-0.3-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.3  l-1.1-0.1c0.1-0.8,0.4-1.4,0.8-1.8c0.5-0.4,1.1-0.6,2-0.6c0.8,0,1.5,0.2,2,0.7c0.5,0.5,0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1  c-0.1,0.3-0.4,0.7-0.7,1s-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1s-0.3,0.4-0.4,0.6H201.1z"/>
          <path d="M202.3,36.7v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3c-0.5,1-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8c0.5-0.9,1-1.6,1.5-2.2H202.3z"/>
          <path d="M210.5,39.5c-0.4-0.2-0.8-0.4-1-0.7s-0.3-0.7-0.3-1.1c0-0.6,0.2-1.2,0.7-1.6c0.4-0.4,1-0.6,1.8-0.6c0.8,0,1.4,0.2,1.8,0.7  s0.7,1,0.7,1.6c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.5,0.5-1,0.7c0.5,0.2,0.9,0.4,1.2,0.8c0.3,0.4,0.4,0.8,0.4,1.4c0,0.7-0.3,1.4-0.8,1.9  c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.8-1.1-0.8-1.9c0-0.6,0.1-1,0.4-1.4S210,39.6,210.5,39.5z M210,41.6  c0,0.3,0.1,0.6,0.2,0.9c0.1,0.3,0.4,0.5,0.6,0.7s0.6,0.2,0.9,0.2c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2  c0-0.5-0.2-0.9-0.5-1.3c-0.3-0.3-0.8-0.5-1.3-0.5c-0.5,0-0.9,0.2-1.2,0.5C210.1,40.7,210,41.2,210,41.6z M210.3,37.7  c0,0.4,0.1,0.7,0.4,1s0.6,0.4,1,0.4c0.4,0,0.7-0.1,1-0.4c0.3-0.3,0.4-0.6,0.4-0.9c0-0.4-0.1-0.7-0.4-1c-0.3-0.3-0.6-0.4-1-0.4  c-0.4,0-0.7,0.1-1,0.4S210.3,37.3,210.3,37.7z"/>
          <path d="M218.9,44.1v-2.1h-3.7v-1l3.9-5.6h0.9v5.6h1.2v1H220v2.1H218.9z M218.9,41.1v-3.9l-2.7,3.9H218.9z"/>
          <path d="M222.2,39.9c0-1,0.1-1.8,0.3-2.5s0.5-1.1,0.9-1.4c0.4-0.3,0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3c0.3,0.2,0.6,0.5,0.9,0.8  c0.2,0.3,0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9  C222.5,42.7,222.2,41.5,222.2,39.9z M223.3,39.9c0,1.4,0.2,2.3,0.5,2.8c0.3,0.5,0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7  c0.3-0.5,0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8c-0.3-0.5-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C223.5,37.5,223.3,38.5,223.3,39.9  z"/>
          <path d="M228.9,41.9l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3s0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5c0.3-0.3,0.5-0.8,0.5-1.3  c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1l0.1-0.9c0.1,0,0.1,0,0.2,0c0.4,0,0.9-0.1,1.2-0.4  c0.4-0.2,0.5-0.6,0.5-1.1c0-0.4-0.1-0.7-0.4-1c-0.3-0.3-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4s-0.4,0.6-0.5,1.2l-1.1-0.2  c0.1-0.7,0.4-1.3,0.9-1.6c0.5-0.4,1-0.6,1.7-0.6c0.5,0,0.9,0.1,1.3,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.3,1.1  c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-0.9,0.7c0.5,0.1,0.9,0.4,1.2,0.7c0.3,0.4,0.4,0.8,0.4,1.4c0,0.8-0.3,1.4-0.8,1.9  c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7S229,42.6,228.9,41.9z"/>
          <path d="M235.6,41.9l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2c0.3,0.3,0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6c0.4-0.4,0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4L237,39  c0.5-0.4,1.1-0.5,1.6-0.5c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1  c-0.8,0-1.4-0.2-1.9-0.7C235.9,43.2,235.6,42.6,235.6,41.9z"/>
          <path d="M242.2,39.9c0-1,0.1-1.8,0.3-2.5s0.5-1.1,0.9-1.4c0.4-0.3,0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3c0.3,0.2,0.6,0.5,0.9,0.8  c0.2,0.3,0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9  C242.5,42.7,242.2,41.5,242.2,39.9z M243.3,39.9c0,1.4,0.2,2.3,0.5,2.8c0.3,0.5,0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7  c0.3-0.5,0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8c-0.3-0.5-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C243.5,37.5,243.3,38.5,243.3,39.9  z"/>
          <path d="M205.3,52.1l-0.3-1.6V49h1.2v1.4l-0.3,1.6H205.3z M207.3,52.1l-0.3-1.6V49h1.2v1.4l-0.3,1.6H207.3z"/>
          <path d="M208.7,57.6L212,49h1.2l3.5,8.6h-1.3l-1-2.6h-3.6l-0.9,2.6H208.7z M211.2,54.1h2.9l-0.9-2.4c-0.3-0.7-0.5-1.3-0.6-1.8  c-0.1,0.6-0.3,1.1-0.5,1.6L211.2,54.1z"/>
          <path d="M217.5,57.6V49h1.1v8.6H217.5z"/>
          <path d="M220.2,50.2V49h1.1v1.2H220.2z M220.2,57.6v-6.2h1.1v6.2H220.2z"/>
          <path d="M226.9,55.3l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7s-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8s-0.8-1.4-0.8-2.4c0-0.7,0.1-1.3,0.3-1.8  c0.2-0.5,0.6-0.9,1-1.1c0.5-0.3,0.9-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5s0.7,0.8,0.8,1.5l-1,0.2c-0.1-0.4-0.3-0.7-0.5-0.9  c-0.2-0.2-0.5-0.3-0.9-0.3c-0.5,0-1,0.2-1.3,0.6c-0.3,0.4-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.3,0.6  c0.4,0,0.8-0.1,1-0.4C226.7,56.3,226.8,55.9,226.9,55.3z"/>
          <path d="M233.1,55.6l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5s-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8s-0.8-1.3-0.8-2.4c0-1,0.3-1.9,0.8-2.4  s1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8c0.5,0.6,0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6c0,0.7,0.2,1.2,0.6,1.6s0.8,0.5,1.3,0.5  c0.4,0,0.7-0.1,1-0.3C232.7,56.4,232.9,56.1,233.1,55.6z M229.6,53.9h3.5c0-0.5-0.2-0.9-0.4-1.2c-0.3-0.4-0.8-0.6-1.3-0.6  c-0.5,0-0.9,0.2-1.2,0.5S229.7,53.4,229.6,53.9z"/>
          <path d="M235.6,52.1l-0.3-1.6V49h1.2v1.4l-0.3,1.6H235.6z M237.5,52.1l-0.3-1.6V49h1.2v1.4l-0.3,1.6H237.5z"/>
          <rect x="160.8" y="33.6" fill-rule="evenodd" fill="none" width="122.2" height="27"/>
          <path fill="none" stroke="#000000" stroke-width="2.2496" d="M195.4,105.6H248c0.7,0,1.4,0,2.1,0.1c0.7,0.1,1.4,0.2,2,0.3  c0.7,0.1,1.3,0.3,2,0.5c0.7,0.2,1.3,0.4,1.9,0.7c0.6,0.3,1.3,0.6,1.9,0.9c0.6,0.3,1.2,0.7,1.8,1.1c0.6,0.4,1.1,0.8,1.7,1.2  s1,0.9,1.5,1.4s0.9,1,1.4,1.5s0.8,1.1,1.2,1.7c0.4,0.6,0.7,1.2,1.1,1.8s0.6,1.2,0.9,1.9c0.3,0.6,0.5,1.3,0.7,1.9  c0.2,0.7,0.4,1.3,0.5,2s0.2,1.4,0.3,2s0.1,1.4,0.1,2.1s0,1.4-0.1,2.1c-0.1,0.7-0.2,1.4-0.3,2s-0.3,1.3-0.5,2  c-0.2,0.7-0.4,1.3-0.7,1.9c-0.3,0.6-0.6,1.3-0.9,1.9c-0.3,0.6-0.7,1.2-1.1,1.8c-0.4,0.6-0.8,1.1-1.2,1.7s-0.9,1-1.4,1.5  s-1,0.9-1.5,1.4s-1.1,0.8-1.7,1.2c-0.6,0.4-1.2,0.7-1.8,1.1c-0.6,0.3-1.2,0.6-1.9,0.9c-0.6,0.3-1.3,0.5-1.9,0.7  c-0.7,0.2-1.3,0.4-2,0.5c-0.7,0.1-1.4,0.2-2,0.3c-0.7,0.1-1.4,0.1-2.1,0.1h-52.6c-0.7,0-1.4,0-2.1-0.1c-0.7-0.1-1.4-0.2-2-0.3  c-0.7-0.1-1.3-0.3-2-0.5c-0.7-0.2-1.3-0.4-1.9-0.7c-0.6-0.3-1.3-0.6-1.9-0.9c-0.6-0.3-1.2-0.7-1.8-1.1c-0.6-0.4-1.1-0.8-1.7-1.2  c-0.5-0.4-1-0.9-1.5-1.4s-0.9-1-1.4-1.5s-0.8-1.1-1.2-1.7c-0.4-0.6-0.7-1.2-1.1-1.8s-0.6-1.2-0.9-1.9c-0.3-0.6-0.5-1.3-0.7-1.9  c-0.2-0.7-0.4-1.3-0.5-2s-0.2-1.4-0.3-2s-0.1-1.4-0.1-2.1s0-1.4,0.1-2.1c0.1-0.7,0.2-1.4,0.3-2s0.3-1.3,0.5-2  c0.2-0.7,0.4-1.3,0.7-1.9c0.3-0.6,0.6-1.3,0.9-1.9c0.3-0.6,0.7-1.2,1.1-1.8c0.4-0.6,0.8-1.1,1.2-1.7s0.9-1,1.4-1.5s1-0.9,1.5-1.4  c0.5-0.4,1.1-0.8,1.7-1.2c0.6-0.4,1.2-0.7,1.8-1.1c0.6-0.3,1.2-0.6,1.9-0.9c0.6-0.3,1.3-0.5,1.9-0.7c0.7-0.2,1.3-0.4,2-0.5  c0.7-0.1,1.4-0.2,2-0.3C194.1,105.7,194.7,105.6,195.4,105.6z"/>
          <path d="M199.5,123.6h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1c0.4-0.4,0.8-0.8,0.9-1.1h0.7  V123.6z"/>
          <path d="M206.8,121.6l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5s-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8s-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4s1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8c0.5,0.6,0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6c0,0.7,0.2,1.2,0.6,1.6  s0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3C206.4,122.4,206.6,122.1,206.8,121.6z M203.3,119.9h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5S203.3,119.4,203.3,119.9z"/>
          <path d="M208.9,119.4c0-1,0.1-1.8,0.3-2.5s0.5-1.1,0.9-1.4c0.4-0.3,0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3c0.3,0.2,0.6,0.5,0.9,0.8  c0.2,0.3,0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9  C209.2,122.2,208.9,121,208.9,119.4z M210,119.4c0,1.4,0.2,2.3,0.5,2.8c0.3,0.5,0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7  c0.3-0.5,0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8c-0.3-0.5-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C210.1,117,210,118,210,119.4z"/>
          <path d="M216.8,123.6h-1V115h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2c0.3,0.2,0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V123.6z M216.8,120.5  c0,0.7,0.1,1.3,0.3,1.6c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8  c-0.3-0.4-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6S216.8,119.7,216.8,120.5z"/>
          <path d="M222.2,119.4c0-1,0.1-1.8,0.3-2.5s0.5-1.1,0.9-1.4c0.4-0.3,0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3c0.3,0.2,0.6,0.5,0.9,0.8  c0.2,0.3,0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9  C222.5,122.2,222.2,121,222.2,119.4z M223.3,119.4c0,1.4,0.2,2.3,0.5,2.8c0.3,0.5,0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7  c0.3-0.5,0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8c-0.3-0.5-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C223.5,117,223.3,118,223.3,119.4z  "/>
          <path d="M232.3,123.6v-2.1h-3.7v-1l3.9-5.6h0.9v5.6h1.2v1h-1.2v2.1H232.3z M232.3,120.6v-3.9l-2.7,3.9H232.3z"/>
          <path d="M235.7,121.6l1-0.1c0.1,0.5,0.2,0.8,0.5,1s0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.6s0.3-0.6,0.4-1  s0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8c-0.4,0.2-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8s-0.7-1.2-0.7-2  c0-0.9,0.3-1.6,0.8-2.1c0.5-0.5,1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5c0.5,0.3,0.8,0.7,1.1,1.3c0.2,0.6,0.4,1.4,0.4,2.4  c0,1.1-0.1,2-0.4,2.6c-0.2,0.7-0.6,1.1-1.1,1.5c-0.5,0.3-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.6-0.6C236.1,122.8,235.8,122.3,235.7,121.6  z M240,117.8c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.4-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6s-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3  c0.3,0.3,0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5C239.9,118.9,240,118.5,240,117.8z"/>
          <path d="M243.5,123.6h-1V115h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2c0.3,0.2,0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V123.6z M243.5,120.5  c0,0.7,0.1,1.3,0.3,1.6c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8  c-0.3-0.4-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6S243.5,119.7,243.5,120.5z"/>
          <path d="M187.2,137.1l3.3-8.6h1.2l3.5,8.6h-1.3l-1-2.6h-3.6l-0.9,2.6H187.2z M189.6,133.6h2.9l-0.9-2.4c-0.3-0.7-0.5-1.3-0.6-1.8  c-0.1,0.6-0.3,1.1-0.5,1.6L189.6,133.6z"/>
          <path d="M195.7,134.4l1.1-0.1c0.1,0.4,0.2,0.8,0.4,1.1c0.2,0.3,0.5,0.5,0.9,0.7c0.4,0.2,0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.1-0.2  c0.3-0.1,0.6-0.3,0.7-0.5s0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.4-0.8-0.5c-0.2-0.1-0.7-0.2-1.5-0.4s-1.3-0.4-1.7-0.5  c-0.4-0.2-0.7-0.5-0.9-0.8s-0.3-0.7-0.3-1.1c0-0.4,0.1-0.8,0.4-1.2s0.6-0.7,1.1-0.9s1-0.3,1.6-0.3c0.6,0,1.2,0.1,1.7,0.3  c0.5,0.2,0.9,0.5,1.1,0.9c0.3,0.4,0.4,0.8,0.4,1.4l-1.1,0.1c-0.1-0.5-0.3-1-0.6-1.2c-0.3-0.3-0.8-0.4-1.5-0.4  c-0.7,0-1.2,0.1-1.5,0.4s-0.5,0.6-0.5,0.9c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.8,0.4,1.7,0.6s1.6,0.4,1.9,0.5c0.5,0.2,0.9,0.5,1.1,0.9  c0.2,0.4,0.4,0.8,0.4,1.2c0,0.5-0.1,0.9-0.4,1.3c-0.3,0.4-0.6,0.7-1.1,0.9c-0.5,0.2-1,0.3-1.7,0.3c-0.8,0-1.4-0.1-2-0.3  c-0.5-0.2-0.9-0.6-1.2-1S195.7,134.9,195.7,134.4z"/>
          <path d="M203.7,134.4l1.1-0.1c0.1,0.4,0.2,0.8,0.4,1.1c0.2,0.3,0.5,0.5,0.9,0.7c0.4,0.2,0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.1-0.2  c0.3-0.1,0.6-0.3,0.7-0.5s0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.4-0.8-0.5c-0.2-0.1-0.7-0.2-1.5-0.4s-1.3-0.4-1.7-0.5  c-0.4-0.2-0.7-0.5-0.9-0.8s-0.3-0.7-0.3-1.1c0-0.4,0.1-0.8,0.4-1.2s0.6-0.7,1.1-0.9s1-0.3,1.6-0.3c0.6,0,1.2,0.1,1.7,0.3  c0.5,0.2,0.9,0.5,1.1,0.9c0.3,0.4,0.4,0.8,0.4,1.4l-1.1,0.1c-0.1-0.5-0.3-1-0.6-1.2c-0.3-0.3-0.8-0.4-1.5-0.4  c-0.7,0-1.2,0.1-1.5,0.4s-0.5,0.6-0.5,0.9c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.8,0.4,1.7,0.6s1.6,0.4,1.9,0.5c0.5,0.2,0.9,0.5,1.1,0.9  c0.2,0.4,0.4,0.8,0.4,1.2c0,0.5-0.1,0.9-0.4,1.3c-0.3,0.4-0.6,0.7-1.1,0.9c-0.5,0.2-1,0.3-1.7,0.3c-0.8,0-1.4-0.1-2-0.3  c-0.5-0.2-0.9-0.6-1.2-1S203.7,134.9,203.7,134.4z"/>
          <path d="M212.1,137.1v-8.6h6.2v1h-5.1v2.6h4.8v1h-4.8v2.9h5.3v1H212.1z"/>
          <path d="M220.1,137.1v-8.6h3.8c0.8,0,1.3,0.1,1.7,0.2s0.7,0.4,1,0.8s0.4,0.8,0.4,1.3c0,0.6-0.2,1.1-0.6,1.5c-0.4,0.4-1,0.7-1.8,0.8  c0.3,0.1,0.5,0.3,0.7,0.4c0.3,0.3,0.6,0.7,0.9,1.1l1.5,2.3h-1.4l-1.1-1.8c-0.3-0.5-0.6-0.9-0.8-1.2s-0.4-0.5-0.6-0.6  c-0.2-0.1-0.3-0.2-0.5-0.2c-0.1,0-0.3,0-0.6,0h-1.3v3.8H220.1z M221.3,132.3h2.4c0.5,0,0.9-0.1,1.2-0.2c0.3-0.1,0.5-0.3,0.7-0.5  s0.2-0.5,0.2-0.8c0-0.4-0.1-0.7-0.4-1s-0.8-0.4-1.4-0.4h-2.7V132.3z"/>
          <path d="M230.7,137.1v-7.6h-2.8v-1h6.8v1h-2.8v7.6H230.7z"/>
          <path d="M236.1,137.1v-8.6h1.1v8.6H236.1z"/>
          <path d="M238.9,132.9c0-1.4,0.4-2.5,1.1-3.3c0.8-0.8,1.8-1.2,3-1.2c0.8,0,1.5,0.2,2.1,0.6c0.6,0.4,1.1,0.9,1.5,1.6  c0.3,0.7,0.5,1.4,0.5,2.3c0,0.9-0.2,1.7-0.5,2.3c-0.4,0.7-0.8,1.2-1.5,1.6c-0.6,0.4-1.3,0.5-2.1,0.5c-0.8,0-1.5-0.2-2.2-0.6  c-0.6-0.4-1.1-0.9-1.4-1.6S238.9,133.7,238.9,132.9z M240,133c0,1,0.3,1.9,0.8,2.4s1.3,0.9,2.1,0.9c0.9,0,1.6-0.3,2.1-0.9  c0.6-0.6,0.8-1.5,0.8-2.6c0-0.7-0.1-1.3-0.4-1.8s-0.6-0.9-1-1.2s-1-0.4-1.5-0.4c-0.8,0-1.5,0.3-2.1,0.8  C240.3,130.7,240,131.7,240,133z"/>
          <path d="M248.5,137.1v-8.6h1.2l4.5,6.7v-6.7h1.1v8.6h-1.2l-4.5-6.8v6.8H248.5z"/>
          <rect x="187.2" y="113.1" fill-rule="evenodd" fill="none" width="69" height="27"/>
          <rect x="355" y="65.9" fill="none" stroke="#000000" stroke-width="2.2496" width="144.8" height="42"/>
          <path d="M401.3,76.4v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H401.3z"/>
          <path d="M407.9,79.6c0-1,0.1-1.8,0.3-2.5s0.5-1.1,0.9-1.4s0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3s0.6,0.5,0.9,0.8s0.4,0.8,0.5,1.3  s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9C408.1,82.4,407.9,81.3,407.9,79.6z   M408.9,79.6c0,1.4,0.2,2.3,0.5,2.8s0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7s0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8s-0.7-0.7-1.2-0.7  c-0.5,0-0.9,0.2-1.2,0.6C409.1,77.3,408.9,78.2,408.9,79.6z"/>
          <path d="M414.7,81.9l1-0.1c0.1,0.5,0.2,0.8,0.5,1s0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.6s0.3-0.6,0.4-1  s0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8s-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8c-0.5-0.5-0.7-1.2-0.7-2  c0-0.9,0.3-1.6,0.8-2.1c0.5-0.5,1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5s0.8,0.7,1.1,1.3s0.4,1.4,0.4,2.4c0,1.1-0.1,2-0.4,2.6  s-0.6,1.1-1.1,1.5s-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.6-0.6C415,83.1,414.8,82.6,414.7,81.9z M419,78.1c0-0.6-0.2-1.1-0.5-1.4  s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6s-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3s0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5  S419,78.7,419,78.1z"/>
          <path d="M426.7,82.9v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1c0.3-0.4,0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8  s0.5-0.9,0.5-1.3c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5s-0.5,0.7-0.5,1.3l-1.1-0.1  c0.1-0.8,0.4-1.4,0.8-1.8c0.5-0.4,1.1-0.6,2-0.6c0.8,0,1.5,0.2,2,0.7s0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1  s-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1s-0.3,0.4-0.4,0.6H426.7z"/>
          <path d="M432.2,83.9v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6v-3.1h1v8.6H432.2z M428.9,80.8  c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S428.9,79.9,428.9,80.8z"/>
          <path d="M440,77.4l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  s-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9s0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8s0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5s-0.6,0.8-1,1.1  S438,84,437.5,84c-0.9,0-1.6-0.3-2.2-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6c0.5-0.7,1.3-1,2.2-1c0.7,0,1.2,0.2,1.7,0.6  S439.9,76.7,440,77.4z M435.7,81.1c0,0.4,0.1,0.7,0.2,1s0.4,0.6,0.6,0.8s0.6,0.3,0.9,0.3c0.4,0,0.8-0.2,1.1-0.5s0.5-0.8,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5S435.7,80.5,435.7,81.1z"/>
          <path d="M446.8,82.9v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1c0.3-0.4,0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8  s0.5-0.9,0.5-1.3c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5s-0.5,0.7-0.5,1.3l-1.1-0.1  c0.1-0.8,0.4-1.4,0.8-1.8c0.5-0.4,1.1-0.6,2-0.6c0.8,0,1.5,0.2,2,0.7s0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1  s-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1s-0.3,0.4-0.4,0.6H446.8z"/>
          <path d="M447.9,79.6c0-1,0.1-1.8,0.3-2.5s0.5-1.1,0.9-1.4s0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3s0.6,0.5,0.9,0.8s0.4,0.8,0.5,1.3  s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9C448.2,82.4,447.9,81.3,447.9,79.6z   M449,79.6c0,1.4,0.2,2.3,0.5,2.8s0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7s0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8s-0.7-0.7-1.2-0.7  c-0.5,0-0.9,0.2-1.2,0.6C449.2,77.3,449,78.2,449,79.6z"/>
          <path d="M407,91.8l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H407z M408.9,91.8l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H408.9z"/>
          <path d="M411.2,97.4v-8.6h1.1v4.9l2.5-2.5h1.4l-2.4,2.3l2.6,3.9H415l-2.1-3.2l-0.7,0.7v2.5H411.2z"/>
          <path d="M417.2,97.4v-6.2h0.9V92c0.5-0.7,1.1-1,2-1c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.5s0.3,0.5,0.3,0.8c0,0.2,0.1,0.5,0.1,1v3.8  h-1.1v-3.8c0-0.4,0-0.8-0.1-1s-0.2-0.4-0.4-0.5s-0.5-0.2-0.7-0.2c-0.4,0-0.8,0.1-1.2,0.4s-0.5,0.8-0.5,1.6v3.4H417.2z"/>
          <path d="M423.4,94.3c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8s0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  s-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8C423.7,96.1,423.4,95.3,423.4,94.3z M424.5,94.3c0,0.8,0.2,1.4,0.5,1.8  s0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7s-0.8-0.6-1.3-0.6c-0.5,0-1,0.2-1.3,0.6  S424.5,93.5,424.5,94.3z"/>
          <path d="M431.7,97.4l-1.9-6.2h1.1l1,3.6l0.4,1.3c0-0.1,0.1-0.5,0.3-1.3l1-3.6h1.1l0.9,3.6l0.3,1.2l0.4-1.2l1.1-3.6h1l-1.9,6.2h-1.1  l-1-3.7l-0.2-1.1l-1.3,4.8H431.7z"/>
          <path d="M438.7,95.5l1-0.2c0.1,0.4,0.2,0.7,0.5,1s0.6,0.3,1.1,0.3c0.5,0,0.8-0.1,1.1-0.3s0.4-0.4,0.4-0.7c0-0.2-0.1-0.4-0.3-0.6  c-0.1-0.1-0.5-0.2-1.1-0.4c-0.8-0.2-1.3-0.4-1.6-0.5c-0.3-0.1-0.5-0.3-0.7-0.6s-0.2-0.5-0.2-0.8c0-0.3,0.1-0.5,0.2-0.8  s0.3-0.4,0.5-0.6c0.2-0.1,0.4-0.2,0.7-0.3s0.6-0.1,0.9-0.1c0.5,0,0.9,0.1,1.3,0.2c0.4,0.1,0.6,0.3,0.8,0.6s0.3,0.6,0.4,1l-1,0.1  c0-0.3-0.2-0.6-0.4-0.8c-0.2-0.2-0.5-0.3-1-0.3c-0.5,0-0.8,0.1-1,0.2s-0.3,0.3-0.3,0.6c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.4,0.3  c0.1,0,0.4,0.1,0.9,0.3c0.7,0.2,1.3,0.4,1.6,0.5s0.5,0.3,0.7,0.6s0.3,0.5,0.3,0.9c0,0.4-0.1,0.7-0.3,1s-0.5,0.6-0.9,0.7  s-0.8,0.3-1.3,0.3c-0.8,0-1.4-0.2-1.8-0.5C439.1,96.7,438.9,96.2,438.7,95.5z"/>
          <path d="M445.2,91.8l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H445.2z M447.2,91.8l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H447.2z"/>
          <rect x="362.5" y="73.4" fill-rule="evenodd" fill="none" width="129.7" height="27"/>
          <rect x="351.6" y="145.4" fill="none" stroke="#000000" stroke-width="2.2496" width="151.5" height="42"/>
          <path d="M409,163.4v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6v-3.1h1v8.6H409z M405.6,160.3c0,0.8,0.2,1.4,0.5,1.8  s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  S405.6,159.4,405.6,160.3z"/>
          <path d="M411.3,161.1l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2s0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6s0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4s-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4l-0.5,2.3  c0.5-0.4,1.1-0.5,1.6-0.5c0.7,0,1.4,0.3,1.9,0.8s0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1c-0.8,0-1.4-0.2-1.9-0.7  C411.7,162.4,411.4,161.8,411.3,161.1z"/>
          <path d="M422.3,162.6c-0.4,0.3-0.8,0.6-1.1,0.7c-0.4,0.1-0.7,0.2-1.2,0.2c-0.7,0-1.2-0.2-1.6-0.5c-0.4-0.3-0.6-0.8-0.6-1.3  c0-0.3,0.1-0.6,0.2-0.8s0.3-0.5,0.5-0.6c0.2-0.2,0.5-0.3,0.8-0.3c0.2-0.1,0.5-0.1,0.9-0.2c0.9-0.1,1.5-0.2,1.9-0.4  c0-0.1,0-0.2,0-0.3c0-0.4-0.1-0.7-0.3-0.9c-0.3-0.2-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.1-1.1,0.3s-0.4,0.5-0.5,0.9l-1-0.1  c0.1-0.4,0.2-0.8,0.5-1.1c0.2-0.3,0.5-0.5,0.9-0.6s0.9-0.2,1.4-0.2c0.5,0,1,0.1,1.3,0.2s0.6,0.3,0.7,0.5s0.3,0.4,0.3,0.7  c0,0.2,0.1,0.5,0.1,1v1.4c0,1,0,1.6,0.1,1.9s0.1,0.5,0.3,0.7h-1.1C422.4,163.2,422.4,162.9,422.3,162.6z M422.2,160.3  c-0.4,0.2-1,0.3-1.7,0.4c-0.4,0.1-0.7,0.1-0.9,0.2s-0.3,0.2-0.4,0.3s-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.7s0.5,0.3,0.9,0.3  c0.4,0,0.8-0.1,1.1-0.3c0.3-0.2,0.5-0.4,0.7-0.7c0.1-0.2,0.2-0.6,0.2-1.1V160.3z"/>
          <path d="M424.7,161.1l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3s0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5s0.5-0.8,0.5-1.3c0-0.5-0.2-0.9-0.5-1.2  s-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1l0.1-0.9c0.1,0,0.1,0,0.2,0c0.4,0,0.9-0.1,1.2-0.4s0.5-0.6,0.5-1.1c0-0.4-0.1-0.7-0.4-1  s-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4s-0.4,0.6-0.5,1.2l-1.1-0.2c0.1-0.7,0.4-1.3,0.9-1.6c0.5-0.4,1-0.6,1.7-0.6  c0.5,0,0.9,0.1,1.3,0.3s0.7,0.5,0.9,0.8s0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-0.9,0.7c0.5,0.1,0.9,0.4,1.2,0.7  s0.4,0.8,0.4,1.4c0,0.8-0.3,1.4-0.8,1.9s-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7C425,162.4,424.7,161.8,424.7,161.1z"/>
          <path d="M431.4,155.9v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H431.4z"/>
          <path d="M438,161.1l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2s0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6s0.5-0.9,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4  s-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4l-0.5,2.3c0.5-0.4,1.1-0.5,1.6-0.5  c0.7,0,1.4,0.3,1.9,0.8s0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1c-0.8,0-1.4-0.2-1.9-0.7  C438.4,162.4,438.1,161.8,438,161.1z"/>
          <path d="M445.2,163.4V158h-0.9v-0.8h0.9v-0.7c0-0.4,0-0.7,0.1-0.9c0.1-0.3,0.3-0.5,0.5-0.7s0.6-0.3,1.1-0.3c0.3,0,0.6,0,1,0.1  l-0.2,0.9c-0.2,0-0.4-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.7,0.2s-0.2,0.4-0.2,0.8v0.6h1.2v0.8h-1.2v5.4H445.2z"/>
          <path d="M448.3,163.4V158h-0.9v-0.8h0.9v-0.7c0-0.4,0-0.7,0.1-0.9c0.1-0.3,0.3-0.5,0.5-0.7s0.6-0.3,1.1-0.3c0.3,0,0.6,0,1,0.1  l-0.2,0.9c-0.2,0-0.4-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.7,0.2s-0.2,0.4-0.2,0.8v0.6h1.2v0.8h-1.2v5.4H448.3z"/>
          <path d="M403.6,171.3l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H403.6z M405.6,171.3l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H405.6z"/>
          <path d="M408,176.9v-8.6h6.2v1h-5.1v2.6h4.8v1h-4.8v2.9h5.3v1H408z"/>
          <path d="M419.9,176.9v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6v-3.1h1v8.6H419.9z M416.5,173.8  c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S416.5,172.9,416.5,173.8z"/>
          <path d="M423.7,176.9l-1.9-6.2h1.1l1,3.6l0.4,1.3c0-0.1,0.1-0.5,0.3-1.3l1-3.6h1.1l0.9,3.6l0.3,1.2l0.4-1.2l1.1-3.6h1l-1.9,6.2h-1.1  l-1-3.7l-0.2-1.1l-1.3,4.8H423.7z"/>
          <path d="M435.2,176.1c-0.4,0.3-0.8,0.6-1.1,0.7c-0.4,0.1-0.7,0.2-1.2,0.2c-0.7,0-1.2-0.2-1.6-0.5c-0.4-0.3-0.6-0.8-0.6-1.3  c0-0.3,0.1-0.6,0.2-0.8s0.3-0.5,0.5-0.6c0.2-0.2,0.5-0.3,0.8-0.3c0.2-0.1,0.5-0.1,0.9-0.2c0.9-0.1,1.5-0.2,1.9-0.4  c0-0.1,0-0.2,0-0.3c0-0.4-0.1-0.7-0.3-0.9c-0.3-0.2-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.1-1.1,0.3s-0.4,0.5-0.5,0.9l-1-0.1  c0.1-0.4,0.2-0.8,0.5-1.1c0.2-0.3,0.5-0.5,0.9-0.6s0.9-0.2,1.4-0.2c0.5,0,1,0.1,1.3,0.2s0.6,0.3,0.7,0.5s0.3,0.4,0.3,0.7  c0,0.2,0.1,0.5,0.1,1v1.4c0,1,0,1.6,0.1,1.9s0.1,0.5,0.3,0.7h-1.1C435.3,176.7,435.3,176.4,435.2,176.1z M435.1,173.8  c-0.4,0.2-1,0.3-1.7,0.4c-0.4,0.1-0.7,0.1-0.9,0.2s-0.3,0.2-0.4,0.3s-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.7s0.5,0.3,0.9,0.3  c0.4,0,0.8-0.1,1.1-0.3c0.3-0.2,0.5-0.4,0.7-0.7c0.1-0.2,0.2-0.6,0.2-1.1V173.8z"/>
          <path d="M437.8,176.9v-6.2h0.9v0.9c0.2-0.4,0.5-0.7,0.7-0.9s0.4-0.2,0.7-0.2c0.4,0,0.7,0.1,1.1,0.3l-0.4,1c-0.3-0.2-0.5-0.2-0.8-0.2  c-0.2,0-0.4,0.1-0.6,0.2s-0.3,0.3-0.4,0.6c-0.1,0.4-0.2,0.8-0.2,1.2v3.3H437.8z"/>
          <path d="M445.9,176.9v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6v-3.1h1v8.6H445.9z M442.5,173.8  c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S442.5,172.9,442.5,173.8z"/>
          <path d="M448.6,171.3l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H448.6z M450.5,171.3l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H450.5z"/>
          <rect x="359.1" y="152.9" fill-rule="evenodd" fill="none" width="136.4" height="27"/>
          <path fill="none" stroke="#000000" stroke-width="2.2496" d="M195.4,264.6H248c0.7,0,1.4,0,2.1,0.1c0.7,0.1,1.4,0.2,2,0.3  c0.7,0.1,1.3,0.3,2,0.5c0.7,0.2,1.3,0.4,1.9,0.7c0.6,0.3,1.3,0.6,1.9,0.9c0.6,0.3,1.2,0.7,1.8,1.1c0.6,0.4,1.1,0.8,1.7,1.2  s1,0.9,1.5,1.4s0.9,1,1.4,1.5s0.8,1.1,1.2,1.7c0.4,0.6,0.7,1.2,1.1,1.8s0.6,1.2,0.9,1.9c0.3,0.6,0.5,1.3,0.7,1.9  c0.2,0.7,0.4,1.3,0.5,2s0.2,1.4,0.3,2s0.1,1.4,0.1,2.1s0,1.4-0.1,2.1c-0.1,0.7-0.2,1.4-0.3,2s-0.3,1.3-0.5,2  c-0.2,0.7-0.4,1.3-0.7,1.9c-0.3,0.6-0.6,1.3-0.9,1.9c-0.3,0.6-0.7,1.2-1.1,1.8c-0.4,0.6-0.8,1.1-1.2,1.7c-0.4,0.5-0.9,1-1.4,1.5  s-1,0.9-1.5,1.4s-1.1,0.8-1.7,1.2c-0.6,0.4-1.2,0.7-1.8,1.1c-0.6,0.3-1.2,0.6-1.9,0.9c-0.6,0.3-1.3,0.5-1.9,0.7  c-0.7,0.2-1.3,0.4-2,0.5c-0.7,0.1-1.4,0.2-2,0.3s-1.4,0.1-2.1,0.1h-52.6c-0.7,0-1.4,0-2.1-0.1s-1.4-0.2-2-0.3  c-0.7-0.1-1.3-0.3-2-0.5c-0.7-0.2-1.3-0.4-1.9-0.7c-0.6-0.3-1.3-0.6-1.9-0.9c-0.6-0.3-1.2-0.7-1.8-1.1c-0.6-0.4-1.1-0.8-1.7-1.2  c-0.5-0.4-1-0.9-1.5-1.4s-0.9-1-1.4-1.5c-0.4-0.5-0.8-1.1-1.2-1.7c-0.4-0.6-0.7-1.2-1.1-1.8s-0.6-1.2-0.9-1.9  c-0.3-0.6-0.5-1.3-0.7-1.9c-0.2-0.7-0.4-1.3-0.5-2s-0.2-1.4-0.3-2s-0.1-1.4-0.1-2.1s0-1.4,0.1-2.1c0.1-0.7,0.2-1.4,0.3-2  s0.3-1.3,0.5-2c0.2-0.7,0.4-1.3,0.7-1.9c0.3-0.6,0.6-1.3,0.9-1.9c0.3-0.6,0.7-1.2,1.1-1.8c0.4-0.6,0.8-1.1,1.2-1.7s0.9-1,1.4-1.5  s1-0.9,1.5-1.4c0.5-0.4,1.1-0.8,1.7-1.2c0.6-0.4,1.2-0.7,1.8-1.1c0.6-0.3,1.2-0.6,1.9-0.9c0.6-0.3,1.3-0.5,1.9-0.7  c0.7-0.2,1.3-0.4,2-0.5c0.7-0.1,1.4-0.2,2-0.3C194.1,264.7,194.7,264.6,195.4,264.6z"/>
          <path d="M197.2,280.4l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2c0.3,0.3,0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6c0.4-0.4,0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4l-0.5,2.3  c0.5-0.4,1.1-0.5,1.6-0.5c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1  c-0.8,0-1.4-0.2-1.9-0.7C197.6,281.7,197.3,281.1,197.2,280.4z"/>
          <path d="M203.9,280.4l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2c0.3,0.3,0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6c0.4-0.4,0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4l-0.5,2.3  c0.5-0.4,1.1-0.5,1.6-0.5c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1  c-0.8,0-1.4-0.2-1.9-0.7C204.2,281.7,204,281.1,203.9,280.4z"/>
          <path d="M210.6,280.4l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2c0.3,0.3,0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6c0.4-0.4,0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4l-0.5,2.3  c0.5-0.4,1.1-0.5,1.6-0.5c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1  c-0.8,0-1.4-0.2-1.9-0.7C210.9,281.7,210.6,281.1,210.6,280.4z"/>
          <path d="M222.7,276.1l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  c-0.2,0.5-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9s0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8c0.5,0.5,0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5  c-0.2,0.5-0.6,0.8-1,1.1s-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.1-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6  c0.5-0.7,1.3-1,2.2-1c0.7,0,1.2,0.2,1.7,0.6C222.4,274.9,222.6,275.5,222.7,276.1z M218.4,279.8c0,0.4,0.1,0.7,0.2,1  c0.2,0.3,0.4,0.6,0.6,0.8s0.6,0.3,0.9,0.3c0.4,0,0.8-0.2,1.1-0.5c0.3-0.4,0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4  c-0.3-0.3-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5C218.6,278.8,218.4,279.3,218.4,279.8z"/>
          <path d="M223.9,278.4c0-1,0.1-1.8,0.3-2.5s0.5-1.1,0.9-1.4c0.4-0.3,0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3c0.3,0.2,0.6,0.5,0.9,0.8  c0.2,0.3,0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9  C224.2,281.2,223.9,280,223.9,278.4z M225,278.4c0,1.4,0.2,2.3,0.5,2.8c0.3,0.5,0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7  c0.3-0.5,0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8c-0.3-0.5-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C225.2,276,225,277,225,278.4z"/>
          <path d="M231.8,282.6h-1V274h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2c0.3,0.2,0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V282.6z M231.8,279.5  c0,0.7,0.1,1.3,0.3,1.6c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8  c-0.3-0.4-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6S231.8,278.7,231.8,279.5z"/>
          <path d="M241.6,282.6v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4c-0.4-0.3-0.7-0.7-1-1.1c-0.2-0.5-0.3-1.1-0.3-1.7  c0-0.6,0.1-1.2,0.3-1.7s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6V274h1v8.6H241.6z   M238.2,279.5c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9  c-0.3-0.4-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6C238.4,278.1,238.2,278.7,238.2,279.5z"/>
          <path d="M244.5,282.6v-5.4h-0.9v-0.8h0.9v-0.7c0-0.4,0-0.7,0.1-0.9c0.1-0.3,0.3-0.5,0.5-0.7c0.3-0.2,0.6-0.3,1.1-0.3  c0.3,0,0.6,0,1,0.1l-0.2,0.9c-0.2,0-0.4-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.7,0.2s-0.2,0.4-0.2,0.8v0.6h1.2v0.8h-1.2v5.4H244.5z"/>
          <path d="M187.2,296.1l3.3-8.6h1.2l3.5,8.6h-1.3l-1-2.6h-3.6l-0.9,2.6H187.2z M189.6,292.6h2.9l-0.9-2.4c-0.3-0.7-0.5-1.3-0.6-1.8  c-0.1,0.6-0.3,1.1-0.5,1.6L189.6,292.6z"/>
          <path d="M195.7,293.4l1.1-0.1c0.1,0.4,0.2,0.8,0.4,1.1c0.2,0.3,0.5,0.5,0.9,0.7c0.4,0.2,0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.1-0.2  c0.3-0.1,0.6-0.3,0.7-0.5s0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.4-0.8-0.5c-0.2-0.1-0.7-0.2-1.5-0.4s-1.3-0.4-1.7-0.5  c-0.4-0.2-0.7-0.5-0.9-0.8s-0.3-0.7-0.3-1.1c0-0.4,0.1-0.8,0.4-1.2s0.6-0.7,1.1-0.9s1-0.3,1.6-0.3c0.6,0,1.2,0.1,1.7,0.3  c0.5,0.2,0.9,0.5,1.1,0.9c0.3,0.4,0.4,0.8,0.4,1.4l-1.1,0.1c-0.1-0.5-0.3-1-0.6-1.2c-0.3-0.3-0.8-0.4-1.5-0.4  c-0.7,0-1.2,0.1-1.5,0.4s-0.5,0.6-0.5,0.9c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.8,0.4,1.7,0.6s1.6,0.4,1.9,0.5c0.5,0.2,0.9,0.5,1.1,0.9  c0.2,0.4,0.4,0.8,0.4,1.2c0,0.5-0.1,0.9-0.4,1.3c-0.3,0.4-0.6,0.7-1.1,0.9c-0.5,0.2-1,0.3-1.7,0.3c-0.8,0-1.4-0.1-2-0.3  c-0.5-0.2-0.9-0.6-1.2-1S195.7,293.9,195.7,293.4z"/>
          <path d="M203.7,293.4l1.1-0.1c0.1,0.4,0.2,0.8,0.4,1.1c0.2,0.3,0.5,0.5,0.9,0.7c0.4,0.2,0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.1-0.2  c0.3-0.1,0.6-0.3,0.7-0.5s0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.4-0.8-0.5c-0.2-0.1-0.7-0.2-1.5-0.4s-1.3-0.4-1.7-0.5  c-0.4-0.2-0.7-0.5-0.9-0.8s-0.3-0.7-0.3-1.1c0-0.4,0.1-0.8,0.4-1.2s0.6-0.7,1.1-0.9s1-0.3,1.6-0.3c0.6,0,1.2,0.1,1.7,0.3  c0.5,0.2,0.9,0.5,1.1,0.9c0.3,0.4,0.4,0.8,0.4,1.4l-1.1,0.1c-0.1-0.5-0.3-1-0.6-1.2c-0.3-0.3-0.8-0.4-1.5-0.4  c-0.7,0-1.2,0.1-1.5,0.4s-0.5,0.6-0.5,0.9c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.8,0.4,1.7,0.6s1.6,0.4,1.9,0.5c0.5,0.2,0.9,0.5,1.1,0.9  c0.2,0.4,0.4,0.8,0.4,1.2c0,0.5-0.1,0.9-0.4,1.3c-0.3,0.4-0.6,0.7-1.1,0.9c-0.5,0.2-1,0.3-1.7,0.3c-0.8,0-1.4-0.1-2-0.3  c-0.5-0.2-0.9-0.6-1.2-1S203.7,293.9,203.7,293.4z"/>
          <path d="M212.1,296.1v-8.6h6.2v1h-5.1v2.6h4.8v1h-4.8v2.9h5.3v1H212.1z"/>
          <path d="M220.1,296.1v-8.6h3.8c0.8,0,1.3,0.1,1.7,0.2s0.7,0.4,1,0.8s0.4,0.8,0.4,1.3c0,0.6-0.2,1.1-0.6,1.5c-0.4,0.4-1,0.7-1.8,0.8  c0.3,0.1,0.5,0.3,0.7,0.4c0.3,0.3,0.6,0.7,0.9,1.1l1.5,2.3h-1.4l-1.1-1.8c-0.3-0.5-0.6-0.9-0.8-1.2s-0.4-0.5-0.6-0.6  c-0.2-0.1-0.3-0.2-0.5-0.2c-0.1,0-0.3,0-0.6,0h-1.3v3.8H220.1z M221.3,291.3h2.4c0.5,0,0.9-0.1,1.2-0.2c0.3-0.1,0.5-0.3,0.7-0.5  s0.2-0.5,0.2-0.8c0-0.4-0.1-0.7-0.4-1s-0.8-0.4-1.4-0.4h-2.7V291.3z"/>
          <path d="M230.7,296.1v-7.6h-2.8v-1h6.8v1h-2.8v7.6H230.7z"/>
          <path d="M236.1,296.1v-8.6h1.1v8.6H236.1z"/>
          <path d="M238.9,291.9c0-1.4,0.4-2.5,1.1-3.3c0.8-0.8,1.8-1.2,3-1.2c0.8,0,1.5,0.2,2.1,0.6c0.6,0.4,1.1,0.9,1.5,1.6  c0.3,0.7,0.5,1.4,0.5,2.3c0,0.9-0.2,1.7-0.5,2.3c-0.4,0.7-0.8,1.2-1.5,1.6c-0.6,0.4-1.3,0.5-2.1,0.5c-0.8,0-1.5-0.2-2.2-0.6  c-0.6-0.4-1.1-0.9-1.4-1.6S238.9,292.7,238.9,291.9z M240,292c0,1,0.3,1.9,0.8,2.4s1.3,0.9,2.1,0.9c0.9,0,1.6-0.3,2.1-0.9  c0.6-0.6,0.8-1.5,0.8-2.6c0-0.7-0.1-1.3-0.4-1.8s-0.6-0.9-1-1.2s-1-0.4-1.5-0.4c-0.8,0-1.5,0.3-2.1,0.8  C240.3,289.7,240,290.7,240,292z"/>
          <path d="M248.5,296.1v-8.6h1.2l4.5,6.7v-6.7h1.1v8.6h-1.2l-4.5-6.8v6.8H248.5z"/>
          <rect x="187.2" y="272.1" fill-rule="evenodd" fill="none" width="69" height="27"/>
          <rect x="355" y="224.9" fill="none" stroke="#000000" stroke-width="2.2496" width="144.8" height="42"/>
          <path d="M401.3,235.4v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H401.3z"/>
          <path d="M407.9,238.6c0-1,0.1-1.8,0.3-2.5s0.5-1.1,0.9-1.4s0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3s0.6,0.5,0.9,0.8s0.4,0.8,0.5,1.3  s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9C408.1,241.4,407.9,240.3,407.9,238.6z   M408.9,238.6c0,1.4,0.2,2.3,0.5,2.8s0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7s0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8  s-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C409.1,236.3,408.9,237.2,408.9,238.6z"/>
          <path d="M414.7,240.9l1-0.1c0.1,0.5,0.2,0.8,0.5,1s0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.6s0.3-0.6,0.4-1  s0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8s-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8c-0.5-0.5-0.7-1.2-0.7-2  c0-0.9,0.3-1.6,0.8-2.1c0.5-0.5,1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5s0.8,0.7,1.1,1.3s0.4,1.4,0.4,2.4c0,1.1-0.1,2-0.4,2.6  s-0.6,1.1-1.1,1.5s-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.6-0.6C415,242.1,414.8,241.6,414.7,240.9z M419,237.1c0-0.6-0.2-1.1-0.5-1.4  s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6s-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3s0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5  S419,237.7,419,237.1z"/>
          <path d="M426.7,241.9v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1c0.3-0.4,0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8  s0.5-0.9,0.5-1.3c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5s-0.5,0.7-0.5,1.3l-1.1-0.1  c0.1-0.8,0.4-1.4,0.8-1.8c0.5-0.4,1.1-0.6,2-0.6c0.8,0,1.5,0.2,2,0.7s0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1  s-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1s-0.3,0.4-0.4,0.6H426.7z"/>
          <path d="M432.2,242.9v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6v-3.1h1v8.6H432.2z M428.9,239.8  c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S428.9,238.9,428.9,239.8z"/>
          <path d="M440,236.4l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  s-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9s0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8s0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5s-0.6,0.8-1,1.1  s-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.2-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6c0.5-0.7,1.3-1,2.2-1c0.7,0,1.2,0.2,1.7,0.6  S439.9,235.7,440,236.4z M435.7,240.1c0,0.4,0.1,0.7,0.2,1s0.4,0.6,0.6,0.8s0.6,0.3,0.9,0.3c0.4,0,0.8-0.2,1.1-0.5s0.5-0.8,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5S435.7,239.5,435.7,240.1z"/>
          <path d="M446.8,241.9v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1c0.3-0.4,0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8  s0.5-0.9,0.5-1.3c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5s-0.5,0.7-0.5,1.3l-1.1-0.1  c0.1-0.8,0.4-1.4,0.8-1.8c0.5-0.4,1.1-0.6,2-0.6c0.8,0,1.5,0.2,2,0.7s0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1  s-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1s-0.3,0.4-0.4,0.6H446.8z"/>
          <path d="M447.9,238.6c0-1,0.1-1.8,0.3-2.5s0.5-1.1,0.9-1.4s0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3s0.6,0.5,0.9,0.8s0.4,0.8,0.5,1.3  s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9C448.2,241.4,447.9,240.3,447.9,238.6z   M449,238.6c0,1.4,0.2,2.3,0.5,2.8s0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7s0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8s-0.7-0.7-1.2-0.7  c-0.5,0-0.9,0.2-1.2,0.6C449.2,236.3,449,237.2,449,238.6z"/>
          <path d="M407,250.8l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H407z M408.9,250.8l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H408.9z"/>
          <path d="M411.2,256.4v-8.6h1.1v4.9l2.5-2.5h1.4l-2.4,2.3l2.6,3.9H415l-2.1-3.2l-0.7,0.7v2.5H411.2z"/>
          <path d="M417.2,256.4v-6.2h0.9v0.9c0.5-0.7,1.1-1,2-1c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.5s0.3,0.5,0.3,0.8c0,0.2,0.1,0.5,0.1,1v3.8  h-1.1v-3.8c0-0.4,0-0.8-0.1-1s-0.2-0.4-0.4-0.5s-0.5-0.2-0.7-0.2c-0.4,0-0.8,0.1-1.2,0.4s-0.5,0.8-0.5,1.6v3.4H417.2z"/>
          <path d="M423.4,253.3c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8s0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  s-0.6,0.8-1,1.1c-0.5,0.3-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8C423.7,255.1,423.4,254.3,423.4,253.3z M424.5,253.3  c0,0.8,0.2,1.4,0.5,1.8s0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7s-0.8-0.6-1.3-0.6  c-0.5,0-1,0.2-1.3,0.6S424.5,252.5,424.5,253.3z"/>
          <path d="M431.7,256.4l-1.9-6.2h1.1l1,3.6l0.4,1.3c0-0.1,0.1-0.5,0.3-1.3l1-3.6h1.1l0.9,3.6l0.3,1.2l0.4-1.2l1.1-3.6h1l-1.9,6.2h-1.1  l-1-3.7l-0.2-1.1l-1.3,4.8H431.7z"/>
          <path d="M438.7,254.5l1-0.2c0.1,0.4,0.2,0.7,0.5,1s0.6,0.3,1.1,0.3c0.5,0,0.8-0.1,1.1-0.3s0.4-0.4,0.4-0.7c0-0.2-0.1-0.4-0.3-0.6  c-0.1-0.1-0.5-0.2-1.1-0.4c-0.8-0.2-1.3-0.4-1.6-0.5c-0.3-0.1-0.5-0.3-0.7-0.6s-0.2-0.5-0.2-0.8c0-0.3,0.1-0.5,0.2-0.8  s0.3-0.4,0.5-0.6c0.2-0.1,0.4-0.2,0.7-0.3s0.6-0.1,0.9-0.1c0.5,0,0.9,0.1,1.3,0.2c0.4,0.1,0.6,0.3,0.8,0.6s0.3,0.6,0.4,1l-1,0.1  c0-0.3-0.2-0.6-0.4-0.8c-0.2-0.2-0.5-0.3-1-0.3c-0.5,0-0.8,0.1-1,0.2s-0.3,0.3-0.3,0.6c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.4,0.3  c0.1,0,0.4,0.1,0.9,0.3c0.7,0.2,1.3,0.4,1.6,0.5s0.5,0.3,0.7,0.6s0.3,0.5,0.3,0.9c0,0.4-0.1,0.7-0.3,1s-0.5,0.6-0.9,0.7  s-0.8,0.3-1.3,0.3c-0.8,0-1.4-0.2-1.8-0.5C439.1,255.7,438.9,255.2,438.7,254.5z"/>
          <path d="M445.2,250.8l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H445.2z M447.2,250.8l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H447.2z"/>
          <rect x="362.5" y="232.4" fill-rule="evenodd" fill="none" width="129.7" height="27"/>
          <rect x="361.3" y="304.4" fill="none" stroke="#000000" stroke-width="2.2496" width="132.2" height="42"/>
          <path d="M401.4,320.4l1-0.1c0.1,0.5,0.2,0.8,0.5,1s0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.6s0.3-0.6,0.4-1  s0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8s-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8c-0.5-0.5-0.7-1.2-0.7-2  c0-0.9,0.3-1.6,0.8-2.1c0.5-0.5,1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5s0.8,0.7,1.1,1.3s0.4,1.4,0.4,2.4c0,1.1-0.1,2-0.4,2.6  s-0.6,1.1-1.1,1.5s-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.6-0.6C401.7,321.6,401.4,321.1,401.4,320.4z M405.7,316.6c0-0.6-0.2-1.1-0.5-1.4  s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6s-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3s0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5  S405.7,317.2,405.7,316.6z"/>
          <path d="M412.2,321.6c-0.4,0.3-0.8,0.6-1.1,0.7c-0.4,0.1-0.7,0.2-1.2,0.2c-0.7,0-1.2-0.2-1.6-0.5c-0.4-0.3-0.6-0.8-0.6-1.3  c0-0.3,0.1-0.6,0.2-0.8s0.3-0.5,0.5-0.6c0.2-0.2,0.5-0.3,0.8-0.3c0.2-0.1,0.5-0.1,0.9-0.2c0.9-0.1,1.5-0.2,1.9-0.4  c0-0.1,0-0.2,0-0.3c0-0.4-0.1-0.7-0.3-0.9c-0.3-0.2-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.1-1.1,0.3s-0.4,0.5-0.5,0.9l-1-0.1  c0.1-0.4,0.2-0.8,0.5-1.1c0.2-0.3,0.5-0.5,0.9-0.6s0.9-0.2,1.4-0.2c0.5,0,1,0.1,1.3,0.2s0.6,0.3,0.7,0.5s0.3,0.4,0.3,0.7  c0,0.2,0.1,0.5,0.1,1v1.4c0,1,0,1.6,0.1,1.9s0.1,0.5,0.3,0.7h-1.1C412.3,322.2,412.3,321.9,412.2,321.6z M412.1,319.3  c-0.4,0.2-1,0.3-1.7,0.4c-0.4,0.1-0.7,0.1-0.9,0.2s-0.3,0.2-0.4,0.3s-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.7s0.5,0.3,0.9,0.3  c0.4,0,0.8-0.1,1.1-0.3c0.3-0.2,0.5-0.4,0.7-0.7c0.1-0.2,0.2-0.6,0.2-1.1V319.3z"/>
          <path d="M414.6,314.9v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H414.6z"/>
          <path d="M421.3,314.9v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H421.3z"/>
          <path d="M431.9,322.4h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1s0.8-0.8,0.9-1.1h0.7V322.4z"/>
          <path d="M434.6,314.9v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H434.6z"/>
          <path d="M445.2,322.4h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1s0.8-0.8,0.9-1.1h0.7V322.4z"/>
          <path d="M447.9,320.1l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2s0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6s0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4s-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4l-0.5,2.3  c0.5-0.4,1.1-0.5,1.6-0.5c0.7,0,1.4,0.3,1.9,0.8s0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1c-0.8,0-1.4-0.2-1.9-0.7  C448.2,321.4,448,320.8,447.9,320.1z"/>
          <path d="M413.3,330.3l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H413.3z M415.2,330.3l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H415.2z"/>
          <path d="M417.6,335.9v-8.6h3.2c0.7,0,1.2,0.1,1.6,0.3s0.7,0.4,0.9,0.8s0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1s-0.5,0.6-0.9,0.8  c0.5,0.2,0.9,0.4,1.2,0.8s0.4,0.8,0.4,1.3c0,0.4-0.1,0.8-0.3,1.1s-0.4,0.6-0.6,0.8c-0.2,0.2-0.6,0.3-0.9,0.4s-0.8,0.1-1.4,0.1H417.6  z M418.7,330.9h1.9c0.5,0,0.9,0,1.1-0.1c0.3-0.1,0.5-0.2,0.7-0.4s0.2-0.4,0.2-0.8c0-0.3-0.1-0.5-0.2-0.8s-0.3-0.4-0.6-0.4  s-0.7-0.1-1.3-0.1h-1.7V330.9z M418.7,334.9h2.1c0.4,0,0.6,0,0.8,0c0.3,0,0.5-0.1,0.7-0.2s0.3-0.3,0.4-0.5s0.2-0.5,0.2-0.7  c0-0.3-0.1-0.6-0.2-0.8s-0.4-0.4-0.7-0.5s-0.7-0.1-1.3-0.1h-2V334.9z"/>
          <path d="M425.1,332.8c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8s0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  s-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8C425.4,334.6,425.1,333.8,425.1,332.8z M426.2,332.8c0,0.8,0.2,1.4,0.5,1.8  s0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7s-0.8-0.6-1.3-0.6c-0.5,0-1,0.2-1.3,0.6  S426.2,332,426.2,332.8z"/>
          <path d="M433.1,335.9h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V335.9z M433.1,332.7c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  S433.1,332,433.1,332.7z"/>
          <path d="M438.9,330.3l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H438.9z M440.8,330.3l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H440.8z"/>
          <rect x="368.8" y="311.9" fill-rule="evenodd" fill="none" width="117" height="27"/>
          <path fill="none" stroke="#000000" stroke-width="2.2496" d="M195.4,423.6H248c0.7,0,1.4,0,2.1,0.1s1.4,0.2,2,0.3  c0.7,0.1,1.3,0.3,2,0.5c0.7,0.2,1.3,0.4,1.9,0.7c0.6,0.3,1.3,0.6,1.9,0.9c0.6,0.3,1.2,0.7,1.8,1.1c0.6,0.4,1.1,0.8,1.7,1.2  s1,0.9,1.5,1.4s0.9,1,1.4,1.5c0.4,0.5,0.8,1.1,1.2,1.7c0.4,0.6,0.7,1.2,1.1,1.8s0.6,1.2,0.9,1.9c0.3,0.6,0.5,1.3,0.7,1.9  c0.2,0.7,0.4,1.3,0.5,2s0.2,1.4,0.3,2c0.1,0.7,0.1,1.4,0.1,2.1s0,1.4-0.1,2.1c-0.1,0.7-0.2,1.4-0.3,2s-0.3,1.3-0.5,2  c-0.2,0.7-0.4,1.3-0.7,1.9c-0.3,0.6-0.6,1.3-0.9,1.9c-0.3,0.6-0.7,1.2-1.1,1.8c-0.4,0.6-0.8,1.1-1.2,1.7c-0.4,0.5-0.9,1-1.4,1.5  s-1,0.9-1.5,1.4s-1.1,0.8-1.7,1.2c-0.6,0.4-1.2,0.7-1.8,1.1c-0.6,0.3-1.2,0.6-1.9,0.9c-0.6,0.3-1.3,0.5-1.9,0.7  c-0.7,0.2-1.3,0.4-2,0.5c-0.7,0.1-1.4,0.2-2,0.3s-1.4,0.1-2.1,0.1h-52.6c-0.7,0-1.4,0-2.1-0.1s-1.4-0.2-2-0.3  c-0.7-0.1-1.3-0.3-2-0.5c-0.7-0.2-1.3-0.4-1.9-0.7c-0.6-0.3-1.3-0.6-1.9-0.9c-0.6-0.3-1.2-0.7-1.8-1.1c-0.6-0.4-1.1-0.8-1.7-1.2  c-0.5-0.4-1-0.9-1.5-1.4s-0.9-1-1.4-1.5c-0.4-0.5-0.8-1.1-1.2-1.7c-0.4-0.6-0.7-1.2-1.1-1.8s-0.6-1.2-0.9-1.9  c-0.3-0.6-0.5-1.3-0.7-1.9c-0.2-0.7-0.4-1.3-0.5-2s-0.2-1.4-0.3-2c-0.1-0.7-0.1-1.4-0.1-2.1s0-1.4,0.1-2.1c0.1-0.7,0.2-1.4,0.3-2  s0.3-1.3,0.5-2c0.2-0.7,0.4-1.3,0.7-1.9c0.3-0.6,0.6-1.3,0.9-1.9c0.3-0.6,0.7-1.2,1.1-1.8c0.4-0.6,0.8-1.1,1.2-1.7  c0.4-0.5,0.9-1,1.4-1.5s1-0.9,1.5-1.4c0.5-0.4,1.1-0.8,1.7-1.2c0.6-0.4,1.2-0.7,1.8-1.1c0.6-0.3,1.2-0.6,1.9-0.9  c0.6-0.3,1.3-0.5,1.9-0.7c0.7-0.2,1.3-0.4,2-0.5c0.7-0.1,1.4-0.2,2-0.3S194.7,423.6,195.4,423.6z"/>
          <path d="M195.6,434.2v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3c-0.5,1-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8c0.5-0.9,1-1.6,1.5-2.2H195.6z"/>
          <path d="M206.2,441.6h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1c0.4-0.4,0.8-0.8,0.9-1.1h0.7  V441.6z"/>
          <path d="M213.2,440.9c-0.4,0.3-0.8,0.6-1.1,0.7s-0.7,0.2-1.2,0.2c-0.7,0-1.2-0.2-1.6-0.5s-0.6-0.8-0.6-1.3c0-0.3,0.1-0.6,0.2-0.8  c0.1-0.3,0.3-0.5,0.5-0.6s0.5-0.3,0.8-0.3c0.2-0.1,0.5-0.1,0.9-0.2c0.9-0.1,1.5-0.2,1.9-0.4c0-0.1,0-0.2,0-0.3  c0-0.4-0.1-0.7-0.3-0.9c-0.3-0.2-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.1-1.1,0.3s-0.4,0.5-0.5,0.9l-1-0.1c0.1-0.4,0.2-0.8,0.5-1.1  s0.5-0.5,0.9-0.6c0.4-0.1,0.9-0.2,1.4-0.2c0.5,0,1,0.1,1.3,0.2s0.6,0.3,0.7,0.5c0.2,0.2,0.3,0.4,0.3,0.7c0,0.2,0.1,0.5,0.1,1v1.4  c0,1,0,1.6,0.1,1.9s0.1,0.5,0.3,0.7h-1.1C213.3,441.4,213.3,441.2,213.2,440.9z M213.1,438.5c-0.4,0.2-1,0.3-1.7,0.4  c-0.4,0.1-0.7,0.1-0.9,0.2s-0.3,0.2-0.4,0.3c-0.1,0.2-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.7c0.2,0.2,0.5,0.3,0.9,0.3  c0.4,0,0.8-0.1,1.1-0.3s0.5-0.4,0.7-0.7c0.1-0.2,0.2-0.6,0.2-1.1V438.5z"/>
          <path d="M215.6,439.4l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3s0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5c0.3-0.3,0.5-0.8,0.5-1.3  c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1l0.1-0.9c0.1,0,0.1,0,0.2,0c0.4,0,0.9-0.1,1.2-0.4  c0.4-0.2,0.5-0.6,0.5-1.1c0-0.4-0.1-0.7-0.4-1c-0.3-0.3-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4s-0.4,0.6-0.5,1.2l-1.1-0.2  c0.1-0.7,0.4-1.3,0.9-1.6c0.5-0.4,1-0.6,1.7-0.6c0.5,0,0.9,0.1,1.3,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.3,1.1  c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-0.9,0.7c0.5,0.1,0.9,0.4,1.2,0.7c0.3,0.4,0.4,0.8,0.4,1.4c0,0.8-0.3,1.4-0.8,1.9  c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7S215.6,440.1,215.6,439.4z"/>
          <path d="M222.2,437.4c0-1,0.1-1.8,0.3-2.5s0.5-1.1,0.9-1.4c0.4-0.3,0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3c0.3,0.2,0.6,0.5,0.9,0.8  c0.2,0.3,0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9  C222.5,440.2,222.2,439,222.2,437.4z M223.3,437.4c0,1.4,0.2,2.3,0.5,2.8c0.3,0.5,0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7  c0.3-0.5,0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8c-0.3-0.5-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C223.5,435,223.3,436,223.3,437.4z  "/>
          <path d="M234.4,435.1l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  c-0.2,0.5-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9s0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8c0.5,0.5,0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5  c-0.2,0.5-0.6,0.8-1,1.1s-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.1-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6  c0.5-0.7,1.3-1,2.2-1c0.7,0,1.2,0.2,1.7,0.6C234,433.9,234.3,434.5,234.4,435.1z M230.1,438.8c0,0.4,0.1,0.7,0.2,1  c0.2,0.3,0.4,0.6,0.6,0.8s0.6,0.3,0.9,0.3c0.4,0,0.8-0.2,1.1-0.5c0.3-0.4,0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4  c-0.3-0.3-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5C230.2,437.8,230.1,438.3,230.1,438.8z"/>
          <path d="M235.7,439.6l1-0.1c0.1,0.5,0.2,0.8,0.5,1s0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.6s0.3-0.6,0.4-1  s0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8c-0.4,0.2-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8s-0.7-1.2-0.7-2  c0-0.9,0.3-1.6,0.8-2.1c0.5-0.5,1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5c0.5,0.3,0.8,0.7,1.1,1.3c0.2,0.6,0.4,1.4,0.4,2.4  c0,1.1-0.1,2-0.4,2.6c-0.2,0.7-0.6,1.1-1.1,1.5c-0.5,0.3-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.6-0.6C236.1,440.8,235.8,440.3,235.7,439.6  z M240,435.8c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.4-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6s-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3  c0.3,0.3,0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5C239.9,436.9,240,436.5,240,435.8z"/>
          <path d="M242.2,437.4c0-1,0.1-1.8,0.3-2.5s0.5-1.1,0.9-1.4c0.4-0.3,0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3c0.3,0.2,0.6,0.5,0.9,0.8  c0.2,0.3,0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9  C242.5,440.2,242.2,439,242.2,437.4z M243.3,437.4c0,1.4,0.2,2.3,0.5,2.8c0.3,0.5,0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7  c0.3-0.5,0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8c-0.3-0.5-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C243.5,435,243.3,436,243.3,437.4z  "/>
          <path d="M187.2,455.1l3.3-8.6h1.2l3.5,8.6h-1.3l-1-2.6h-3.6l-0.9,2.6H187.2z M189.6,451.6h2.9l-0.9-2.4c-0.3-0.7-0.5-1.3-0.6-1.8  c-0.1,0.6-0.3,1.1-0.5,1.6L189.6,451.6z"/>
          <path d="M195.7,452.4l1.1-0.1c0.1,0.4,0.2,0.8,0.4,1.1c0.2,0.3,0.5,0.5,0.9,0.7c0.4,0.2,0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.1-0.2  c0.3-0.1,0.6-0.3,0.7-0.5s0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.4-0.8-0.5c-0.2-0.1-0.7-0.2-1.5-0.4s-1.3-0.4-1.7-0.5  c-0.4-0.2-0.7-0.5-0.9-0.8s-0.3-0.7-0.3-1.1c0-0.4,0.1-0.8,0.4-1.2s0.6-0.7,1.1-0.9s1-0.3,1.6-0.3c0.6,0,1.2,0.1,1.7,0.3  c0.5,0.2,0.9,0.5,1.1,0.9c0.3,0.4,0.4,0.8,0.4,1.4l-1.1,0.1c-0.1-0.5-0.3-1-0.6-1.2c-0.3-0.3-0.8-0.4-1.5-0.4  c-0.7,0-1.2,0.1-1.5,0.4s-0.5,0.6-0.5,0.9c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.8,0.4,1.7,0.6s1.6,0.4,1.9,0.5c0.5,0.2,0.9,0.5,1.1,0.9  c0.2,0.4,0.4,0.8,0.4,1.2c0,0.5-0.1,0.9-0.4,1.3c-0.3,0.4-0.6,0.7-1.1,0.9c-0.5,0.2-1,0.3-1.7,0.3c-0.8,0-1.4-0.1-2-0.3  c-0.5-0.2-0.9-0.6-1.2-1S195.7,452.9,195.7,452.4z"/>
          <path d="M203.7,452.4l1.1-0.1c0.1,0.4,0.2,0.8,0.4,1.1c0.2,0.3,0.5,0.5,0.9,0.7c0.4,0.2,0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.1-0.2  c0.3-0.1,0.6-0.3,0.7-0.5s0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.4-0.8-0.5c-0.2-0.1-0.7-0.2-1.5-0.4s-1.3-0.4-1.7-0.5  c-0.4-0.2-0.7-0.5-0.9-0.8s-0.3-0.7-0.3-1.1c0-0.4,0.1-0.8,0.4-1.2s0.6-0.7,1.1-0.9s1-0.3,1.6-0.3c0.6,0,1.2,0.1,1.7,0.3  c0.5,0.2,0.9,0.5,1.1,0.9c0.3,0.4,0.4,0.8,0.4,1.4l-1.1,0.1c-0.1-0.5-0.3-1-0.6-1.2c-0.3-0.3-0.8-0.4-1.5-0.4  c-0.7,0-1.2,0.1-1.5,0.4s-0.5,0.6-0.5,0.9c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.8,0.4,1.7,0.6s1.6,0.4,1.9,0.5c0.5,0.2,0.9,0.5,1.1,0.9  c0.2,0.4,0.4,0.8,0.4,1.2c0,0.5-0.1,0.9-0.4,1.3c-0.3,0.4-0.6,0.7-1.1,0.9c-0.5,0.2-1,0.3-1.7,0.3c-0.8,0-1.4-0.1-2-0.3  c-0.5-0.2-0.9-0.6-1.2-1S203.7,452.9,203.7,452.4z"/>
          <path d="M212.1,455.1v-8.6h6.2v1h-5.1v2.6h4.8v1h-4.8v2.9h5.3v1H212.1z"/>
          <path d="M220.1,455.1v-8.6h3.8c0.8,0,1.3,0.1,1.7,0.2s0.7,0.4,1,0.8s0.4,0.8,0.4,1.3c0,0.6-0.2,1.1-0.6,1.5c-0.4,0.4-1,0.7-1.8,0.8  c0.3,0.1,0.5,0.3,0.7,0.4c0.3,0.3,0.6,0.7,0.9,1.1l1.5,2.3h-1.4l-1.1-1.8c-0.3-0.5-0.6-0.9-0.8-1.2s-0.4-0.5-0.6-0.6  c-0.2-0.1-0.3-0.2-0.5-0.2c-0.1,0-0.3,0-0.6,0h-1.3v3.8H220.1z M221.3,450.3h2.4c0.5,0,0.9-0.1,1.2-0.2c0.3-0.1,0.5-0.3,0.7-0.5  s0.2-0.5,0.2-0.8c0-0.4-0.1-0.7-0.4-1s-0.8-0.4-1.4-0.4h-2.7V450.3z"/>
          <path d="M230.7,455.1v-7.6h-2.8v-1h6.8v1h-2.8v7.6H230.7z"/>
          <path d="M236.1,455.1v-8.6h1.1v8.6H236.1z"/>
          <path d="M238.9,450.9c0-1.4,0.4-2.5,1.1-3.3c0.8-0.8,1.8-1.2,3-1.2c0.8,0,1.5,0.2,2.1,0.6c0.6,0.4,1.1,0.9,1.5,1.6  c0.3,0.7,0.5,1.4,0.5,2.3c0,0.9-0.2,1.7-0.5,2.3c-0.4,0.7-0.8,1.2-1.5,1.6c-0.6,0.4-1.3,0.5-2.1,0.5c-0.8,0-1.5-0.2-2.2-0.6  c-0.6-0.4-1.1-0.9-1.4-1.6S238.9,451.7,238.9,450.9z M240,451c0,1,0.3,1.9,0.8,2.4s1.3,0.9,2.1,0.9c0.9,0,1.6-0.3,2.1-0.9  c0.6-0.6,0.8-1.5,0.8-2.6c0-0.7-0.1-1.3-0.4-1.8s-0.6-0.9-1-1.2s-1-0.4-1.5-0.4c-0.8,0-1.5,0.3-2.1,0.8  C240.3,448.7,240,449.7,240,451z"/>
          <path d="M248.5,455.1v-8.6h1.2l4.5,6.7v-6.7h1.1v8.6h-1.2l-4.5-6.8v6.8H248.5z"/>
          <rect x="187.2" y="431.1" fill-rule="evenodd" fill="none" width="69" height="27"/>
          <rect x="355" y="383.9" fill="none" stroke="#000000" stroke-width="2.2496" width="144.8" height="42"/>
          <path d="M401.3,394.4v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H401.3z"/>
          <path d="M407.9,397.6c0-1,0.1-1.8,0.3-2.5s0.5-1.1,0.9-1.4s0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3s0.6,0.5,0.9,0.8s0.4,0.8,0.5,1.3  s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9C408.1,400.4,407.9,399.3,407.9,397.6z   M408.9,397.6c0,1.4,0.2,2.3,0.5,2.8s0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7s0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8  s-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C409.1,395.3,408.9,396.2,408.9,397.6z"/>
          <path d="M414.7,399.9l1-0.1c0.1,0.5,0.2,0.8,0.5,1s0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.6s0.3-0.6,0.4-1  s0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8s-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8c-0.5-0.5-0.7-1.2-0.7-2  c0-0.9,0.3-1.6,0.8-2.1c0.5-0.5,1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5s0.8,0.7,1.1,1.3s0.4,1.4,0.4,2.4c0,1.1-0.1,2-0.4,2.6  s-0.6,1.1-1.1,1.5s-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.6-0.6C415,401.1,414.8,400.6,414.7,399.9z M419,396.1c0-0.6-0.2-1.1-0.5-1.4  s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6s-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3s0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5  S419,396.7,419,396.1z"/>
          <path d="M426.7,400.9v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1c0.3-0.4,0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8  s0.5-0.9,0.5-1.3c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5s-0.5,0.7-0.5,1.3l-1.1-0.1  c0.1-0.8,0.4-1.4,0.8-1.8c0.5-0.4,1.1-0.6,2-0.6c0.8,0,1.5,0.2,2,0.7s0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1  s-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1s-0.3,0.4-0.4,0.6H426.7z"/>
          <path d="M432.2,401.9v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6v-3.1h1v8.6H432.2z M428.9,398.8  c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S428.9,397.9,428.9,398.8z"/>
          <path d="M440,395.4l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  s-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9s0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8s0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5s-0.6,0.8-1,1.1  s-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.2-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6c0.5-0.7,1.3-1,2.2-1c0.7,0,1.2,0.2,1.7,0.6  S439.9,394.7,440,395.4z M435.7,399.1c0,0.4,0.1,0.7,0.2,1s0.4,0.6,0.6,0.8s0.6,0.3,0.9,0.3c0.4,0,0.8-0.2,1.1-0.5s0.5-0.8,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5S435.7,398.5,435.7,399.1z"/>
          <path d="M446.8,400.9v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1c0.3-0.4,0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8  s0.5-0.9,0.5-1.3c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5s-0.5,0.7-0.5,1.3l-1.1-0.1  c0.1-0.8,0.4-1.4,0.8-1.8c0.5-0.4,1.1-0.6,2-0.6c0.8,0,1.5,0.2,2,0.7s0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1  s-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1s-0.3,0.4-0.4,0.6H446.8z"/>
          <path d="M447.9,397.6c0-1,0.1-1.8,0.3-2.5s0.5-1.1,0.9-1.4s0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3s0.6,0.5,0.9,0.8s0.4,0.8,0.5,1.3  s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9C448.2,400.4,447.9,399.3,447.9,397.6z   M449,397.6c0,1.4,0.2,2.3,0.5,2.8s0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7s0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8s-0.7-0.7-1.2-0.7  c-0.5,0-0.9,0.2-1.2,0.6C449.2,395.3,449,396.2,449,397.6z"/>
          <path d="M407,409.8l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H407z M408.9,409.8l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H408.9z"/>
          <path d="M411.2,415.4v-8.6h1.1v4.9l2.5-2.5h1.4l-2.4,2.3l2.6,3.9H415l-2.1-3.2l-0.7,0.7v2.5H411.2z"/>
          <path d="M417.2,415.4v-6.2h0.9v0.9c0.5-0.7,1.1-1,2-1c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.5s0.3,0.5,0.3,0.8c0,0.2,0.1,0.5,0.1,1v3.8  h-1.1v-3.8c0-0.4,0-0.8-0.1-1s-0.2-0.4-0.4-0.5s-0.5-0.2-0.7-0.2c-0.4,0-0.8,0.1-1.2,0.4s-0.5,0.8-0.5,1.6v3.4H417.2z"/>
          <path d="M423.4,412.3c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8s0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  s-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8C423.7,414.1,423.4,413.3,423.4,412.3z M424.5,412.3c0,0.8,0.2,1.4,0.5,1.8  s0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7s-0.8-0.6-1.3-0.6c-0.5,0-1,0.2-1.3,0.6  S424.5,411.5,424.5,412.3z"/>
          <path d="M431.7,415.4l-1.9-6.2h1.1l1,3.6l0.4,1.3c0-0.1,0.1-0.5,0.3-1.3l1-3.6h1.1l0.9,3.6l0.3,1.2l0.4-1.2l1.1-3.6h1l-1.9,6.2h-1.1  l-1-3.7l-0.2-1.1l-1.3,4.8H431.7z"/>
          <path d="M438.7,413.5l1-0.2c0.1,0.4,0.2,0.7,0.5,1s0.6,0.3,1.1,0.3c0.5,0,0.8-0.1,1.1-0.3s0.4-0.4,0.4-0.7c0-0.2-0.1-0.4-0.3-0.6  c-0.1-0.1-0.5-0.2-1.1-0.4c-0.8-0.2-1.3-0.4-1.6-0.5c-0.3-0.1-0.5-0.3-0.7-0.6s-0.2-0.5-0.2-0.8c0-0.3,0.1-0.5,0.2-0.8  s0.3-0.4,0.5-0.6c0.2-0.1,0.4-0.2,0.7-0.3s0.6-0.1,0.9-0.1c0.5,0,0.9,0.1,1.3,0.2c0.4,0.1,0.6,0.3,0.8,0.6s0.3,0.6,0.4,1l-1,0.1  c0-0.3-0.2-0.6-0.4-0.8c-0.2-0.2-0.5-0.3-1-0.3c-0.5,0-0.8,0.1-1,0.2s-0.3,0.3-0.3,0.6c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.4,0.3  c0.1,0,0.4,0.1,0.9,0.3c0.7,0.2,1.3,0.4,1.6,0.5s0.5,0.3,0.7,0.6s0.3,0.5,0.3,0.9c0,0.4-0.1,0.7-0.3,1s-0.5,0.6-0.9,0.7  s-0.8,0.3-1.3,0.3c-0.8,0-1.4-0.2-1.8-0.5C439.1,414.7,438.9,414.2,438.7,413.5z"/>
          <path d="M445.2,409.8l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H445.2z M447.2,409.8l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H447.2z"/>
          <rect x="362.5" y="391.4" fill-rule="evenodd" fill="none" width="129.7" height="27"/>
          <rect x="357.6" y="463.4" fill="none" stroke="#000000" stroke-width="2.2496" width="139.5" height="42"/>
          <path d="M405.9,480.6c-0.4,0.3-0.8,0.6-1.1,0.7c-0.4,0.1-0.7,0.2-1.2,0.2c-0.7,0-1.2-0.2-1.6-0.5c-0.4-0.3-0.6-0.8-0.6-1.3  c0-0.3,0.1-0.6,0.2-0.8s0.3-0.5,0.5-0.6c0.2-0.2,0.5-0.3,0.8-0.3c0.2-0.1,0.5-0.1,0.9-0.2c0.9-0.1,1.5-0.2,1.9-0.4  c0-0.1,0-0.2,0-0.3c0-0.4-0.1-0.7-0.3-0.9c-0.3-0.2-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.1-1.1,0.3s-0.4,0.5-0.5,0.9l-1-0.1  c0.1-0.4,0.2-0.8,0.5-1.1c0.2-0.3,0.5-0.5,0.9-0.6s0.9-0.2,1.4-0.2c0.5,0,1,0.1,1.3,0.2s0.6,0.3,0.7,0.5s0.3,0.4,0.3,0.7  c0,0.2,0.1,0.5,0.1,1v1.4c0,1,0,1.6,0.1,1.9s0.1,0.5,0.3,0.7h-1.1C406,481.2,405.9,480.9,405.9,480.6z M405.8,478.3  c-0.4,0.2-1,0.3-1.7,0.4c-0.4,0.1-0.7,0.1-0.9,0.2s-0.3,0.2-0.4,0.3s-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.7s0.5,0.3,0.9,0.3  c0.4,0,0.8-0.1,1.1-0.3c0.3-0.2,0.5-0.4,0.7-0.7c0.1-0.2,0.2-0.6,0.2-1.1V478.3z"/>
          <path d="M412.5,481.4v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6v-3.1h1v8.6H412.5z M409.2,478.3  c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S409.2,477.4,409.2,478.3z"/>
          <path d="M420.4,480.4v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1c0.3-0.4,0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8  s0.5-0.9,0.5-1.3c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5s-0.5,0.7-0.5,1.3l-1.1-0.1  c0.1-0.8,0.4-1.4,0.8-1.8c0.5-0.4,1.1-0.6,2-0.6c0.8,0,1.5,0.2,2,0.7s0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1  s-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1s-0.3,0.4-0.4,0.6H420.4z"/>
          <path d="M425.9,479.1l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7s-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8c-0.5-0.6-0.8-1.4-0.8-2.4  c0-0.7,0.1-1.3,0.3-1.8s0.6-0.9,1-1.1s1-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5s0.7,0.8,0.8,1.5l-1,0.2c-0.1-0.4-0.3-0.7-0.5-0.9  s-0.5-0.3-0.9-0.3c-0.5,0-1,0.2-1.3,0.6s-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.3,0.6c0.4,0,0.8-0.1,1-0.4  S425.8,479.6,425.9,479.1z"/>
          <path d="M430.9,481.4v-2.1h-3.7v-1l3.9-5.6h0.9v5.6h1.2v1H432v2.1H430.9z M430.9,478.4v-3.9l-2.7,3.9H430.9z"/>
          <path d="M434.2,479.1l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2s0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6s0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4s-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4l-0.5,2.3  c0.5-0.4,1.1-0.5,1.6-0.5c0.7,0,1.4,0.3,1.9,0.8s0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1c-0.8,0-1.4-0.2-1.9-0.7  C434.6,480.4,434.3,479.8,434.2,479.1z"/>
          <path d="M444.3,481.4v-2.1h-3.7v-1l3.9-5.6h0.9v5.6h1.2v1h-1.2v2.1H444.3z M444.3,478.4v-3.9l-2.7,3.9H444.3z"/>
          <path d="M448.8,481.4h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V481.4z M448.8,478.2c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  S448.8,477.5,448.8,478.2z"/>
          <path d="M409.6,489.3l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H409.6z M411.6,489.3l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H411.6z"/>
          <path d="M420.1,491.9l1.1,0.3c-0.2,0.9-0.7,1.6-1.3,2.1c-0.6,0.5-1.4,0.7-2.3,0.7c-0.9,0-1.7-0.2-2.3-0.6s-1-0.9-1.3-1.6  c-0.3-0.7-0.5-1.5-0.5-2.3c0-0.9,0.2-1.7,0.5-2.3c0.3-0.7,0.8-1.2,1.5-1.5s1.3-0.5,2.1-0.5c0.9,0,1.6,0.2,2.2,0.7  c0.6,0.4,1,1.1,1.2,1.8l-1.1,0.3c-0.2-0.6-0.5-1.1-0.9-1.4c-0.4-0.3-0.9-0.4-1.4-0.4c-0.7,0-1.2,0.2-1.7,0.5s-0.8,0.7-0.9,1.3  s-0.3,1.1-0.3,1.6c0,0.7,0.1,1.4,0.3,1.9s0.5,1,1,1.2s0.9,0.4,1.5,0.4c0.6,0,1.2-0.2,1.6-0.6C419.6,493.1,419.9,492.6,420.1,491.9z"/>
          <path d="M426.6,494.1c-0.4,0.3-0.8,0.6-1.1,0.7c-0.4,0.1-0.7,0.2-1.2,0.2c-0.7,0-1.2-0.2-1.6-0.5c-0.4-0.3-0.6-0.8-0.6-1.3  c0-0.3,0.1-0.6,0.2-0.8s0.3-0.5,0.5-0.6c0.2-0.2,0.5-0.3,0.8-0.3c0.2-0.1,0.5-0.1,0.9-0.2c0.9-0.1,1.5-0.2,1.9-0.4  c0-0.1,0-0.2,0-0.3c0-0.4-0.1-0.7-0.3-0.9c-0.3-0.2-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.1-1.1,0.3s-0.4,0.5-0.5,0.9l-1-0.1  c0.1-0.4,0.2-0.8,0.5-1.1c0.2-0.3,0.5-0.5,0.9-0.6s0.9-0.2,1.4-0.2c0.5,0,1,0.1,1.3,0.2s0.6,0.3,0.7,0.5s0.3,0.4,0.3,0.7  c0,0.2,0.1,0.5,0.1,1v1.4c0,1,0,1.6,0.1,1.9s0.1,0.5,0.3,0.7h-1.1C426.7,494.7,426.6,494.4,426.6,494.1z M426.5,491.8  c-0.4,0.2-1,0.3-1.7,0.4c-0.4,0.1-0.7,0.1-0.9,0.2s-0.3,0.2-0.4,0.3s-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.7s0.5,0.3,0.9,0.3  c0.4,0,0.8-0.1,1.1-0.3c0.3-0.2,0.5-0.4,0.7-0.7c0.1-0.2,0.2-0.6,0.2-1.1V491.8z"/>
          <path d="M429.2,494.9v-6.2h0.9v0.9c0.2-0.4,0.5-0.7,0.7-0.9s0.4-0.2,0.7-0.2c0.4,0,0.7,0.1,1.1,0.3l-0.4,1c-0.3-0.2-0.5-0.2-0.8-0.2  c-0.2,0-0.4,0.1-0.6,0.2s-0.3,0.3-0.4,0.6c-0.1,0.4-0.2,0.8-0.2,1.2v3.3H429.2z"/>
          <path d="M432.8,491.8c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8s0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  s-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8C433,493.6,432.8,492.8,432.8,491.8z M433.9,491.8c0,0.8,0.2,1.4,0.5,1.8  s0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7s-0.8-0.6-1.3-0.6c-0.5,0-1,0.2-1.3,0.6  S433.9,491,433.9,491.8z"/>
          <path d="M439.8,494.9v-8.6h1.1v8.6H439.8z"/>
          <path d="M442.6,489.3l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H442.6z M444.5,489.3l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H444.5z"/>
          <rect x="365.1" y="470.9" fill-rule="evenodd" fill="none" width="124.5" height="27"/>
        </svg>
      </artwork>
      <t>For easy recognition, envelope trees and Mermaid diagrams only show the first four bytes of each digest, but internally all digests are 32 bytes.</t>
      <t>From the above envelope and its tree, we make the following observations:</t>
      <ul spacing="normal">
        <li>The envelope is a <tt>node</tt> case, which holds the overall envelope digest.</li>
        <li>The subject "Alice" has its own digest.</li>
        <li>Each of the three assertions have their own digests</li>
        <li>The predicate and object of each assertion each have their own digests.</li>
        <li>The assertions appear in the structure in ascending lexicographic order by digest, which is distinct from envelope notation where they appear sorted alphabeticaly.</li>
      </ul>
      <t>The following subsections present each of the seven enumerated envelope cases in five different output formats:</t>
      <ul spacing="normal">
        <li>Envelope Notation</li>
        <li>Envelope Tree</li>
        <li>Mermaid</li>
        <li>CBOR Diagnostic Notation</li>
        <li>CBOR hex</li>
      </ul>
      <t>These examples may be used as test vectors. In addition, each subsection starts with the envelope command line <xref target="ENVELOPE-CLI"/> needed to generate the envelope being formatted.</t>
      <section anchor="leaf-case">
        <name>Leaf Case</name>
        <section anchor="envelope-cli-command-line">
          <name>Envelope CLI Command Line</name>
          <artwork><![CDATA[
envelope subject "Alice"
]]></artwork>
        </section>
        <section anchor="envelope-notation">
          <name>Envelope Notation</name>
          <artwork><![CDATA[
"Alice"
]]></artwork>
        </section>
        <section anchor="tree">
          <name>Tree</name>
          <artwork><![CDATA[
27840350 "Alice"
]]></artwork>
        </section>
        <section anchor="mermaid">
          <name>Mermaid</name>
          <artwork type="svg">  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny" width="189.5px" height="94.3px" viewBox="0 0 189.5 94.3" xml:space="preserve">
              <rect x="26.1" y="26.1" fill="none" stroke="#000000" stroke-width="2.2528" width="137.2" height="42"/>
              <path d="M74,43.1v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1s0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8s0.5-0.9,0.5-1.3  c0-0.4-0.1-0.8-0.4-1.1c-0.3-0.3-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.3L68.5,38c0.1-0.8,0.4-1.4,0.8-1.8  c0.5-0.4,1.1-0.6,2-0.6c0.8,0,1.5,0.2,2,0.7c0.5,0.5,0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1c-0.3,0.4-0.9,0.9-1.6,1.5  c-0.6,0.5-1,0.9-1.2,1.1s-0.3,0.4-0.4,0.6H74z"/>
              <path d="M75.2,36.7v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8c0.5-0.9,1-1.6,1.5-2.2H75.2z"/>
              <path d="M83.5,39.5c-0.4-0.2-0.8-0.4-1-0.7s-0.3-0.7-0.3-1.1c0-0.6,0.2-1.2,0.7-1.6c0.5-0.4,1-0.6,1.8-0.6c0.8,0,1.4,0.2,1.8,0.7  c0.5,0.4,0.7,1,0.7,1.6c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-1,0.7c0.5,0.2,0.9,0.4,1.2,0.8c0.3,0.4,0.4,0.8,0.4,1.4c0,0.7-0.3,1.4-0.8,1.9  c-0.5,0.5-1.2,0.8-2.1,0.8s-1.5-0.3-2.1-0.8c-0.5-0.5-0.8-1.1-0.8-1.9c0-0.6,0.1-1,0.4-1.4C82.6,39.9,83,39.6,83.5,39.5z M82.9,41.6  c0,0.3,0.1,0.6,0.2,0.9s0.4,0.5,0.6,0.7c0.3,0.2,0.6,0.2,0.9,0.2c0.5,0,0.9-0.2,1.3-0.5c0.3-0.3,0.5-0.7,0.5-1.2  c0-0.5-0.2-0.9-0.5-1.3c-0.3-0.3-0.8-0.5-1.3-0.5c-0.5,0-0.9,0.2-1.2,0.5C83.1,40.7,82.9,41.2,82.9,41.6z M83.3,37.7  c0,0.4,0.1,0.7,0.4,1c0.3,0.3,0.6,0.4,1,0.4c0.4,0,0.7-0.1,1-0.4c0.3-0.3,0.4-0.6,0.4-0.9c0-0.4-0.1-0.7-0.4-1s-0.6-0.4-1-0.4  c-0.4,0-0.7,0.1-1,0.4C83.4,37,83.3,37.3,83.3,37.7z"/>
              <path d="M91.9,44.1v-2.1h-3.7v-1l3.9-5.6H93v5.6h1.2v1H93v2.1H91.9z M91.9,41.1v-3.9l-2.7,3.9H91.9z"/>
              <path d="M95.2,39.9c0-1,0.1-1.8,0.3-2.5s0.5-1.1,0.9-1.4s0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3s0.6,0.5,0.9,0.8  c0.2,0.3,0.4,0.8,0.5,1.3c0.1,0.5,0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9  C95.5,42.7,95.2,41.5,95.2,39.9z M96.3,39.9c0,1.4,0.2,2.3,0.5,2.8c0.3,0.5,0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7s0.5-1.4,0.5-2.8  c0-1.4-0.2-2.4-0.5-2.8s-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C96.5,37.5,96.3,38.5,96.3,39.9z"/>
              <path d="M101.9,41.9l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3c0.3,0.3,0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5s0.5-0.8,0.5-1.3  c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1l0.1-0.9c0.1,0,0.1,0,0.2,0c0.5,0,0.9-0.1,1.2-0.4  s0.5-0.6,0.5-1.1c0-0.4-0.1-0.7-0.4-1c-0.3-0.3-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4c-0.3,0.3-0.5,0.6-0.5,1.2l-1.1-0.2  c0.1-0.7,0.4-1.3,0.9-1.6c0.5-0.4,1-0.6,1.7-0.6c0.5,0,0.9,0.1,1.3,0.3s0.7,0.5,0.9,0.8s0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1  s-0.5,0.5-0.9,0.7c0.5,0.1,0.9,0.4,1.2,0.7c0.3,0.4,0.4,0.8,0.4,1.4c0,0.8-0.3,1.4-0.8,1.9s-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7  S102,42.6,101.9,41.9z"/>
              <path d="M108.6,41.9l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2c0.3,0.3,0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6c0.4-0.4,0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2c-0.3,0.2-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4  L110,39c0.5-0.4,1.1-0.5,1.6-0.5c0.8,0,1.4,0.3,1.9,0.8s0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1  c-0.8,0-1.4-0.2-1.9-0.7C109,43.2,108.7,42.6,108.6,41.9z"/>
              <path d="M115.3,39.9c0-1,0.1-1.8,0.3-2.5s0.5-1.1,0.9-1.4s0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3s0.6,0.5,0.9,0.8  c0.2,0.3,0.4,0.8,0.5,1.3c0.1,0.5,0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9  C115.6,42.7,115.3,41.5,115.3,39.9z M116.4,39.9c0,1.4,0.2,2.3,0.5,2.8c0.3,0.5,0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7  s0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8s-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C116.6,37.5,116.4,38.5,116.4,39.9z"/>
              <path d="M78.3,52.1L78,50.4V49h1.2v1.4l-0.3,1.6H78.3z M80.2,52.1l-0.3-1.6V49h1.2v1.4l-0.3,1.6H80.2z"/>
              <path d="M81.7,57.6L85,49h1.2l3.5,8.6h-1.3l-1-2.6h-3.6l-0.9,2.6H81.7z M84.2,54.1h2.9l-0.9-2.4c-0.3-0.7-0.5-1.3-0.6-1.8  c-0.1,0.6-0.3,1.1-0.5,1.6L84.2,54.1z"/>
              <path d="M90.5,57.6V49h1.1v8.6H90.5z"/>
              <path d="M93.2,50.2V49h1.1v1.2H93.2z M93.2,57.6v-6.2h1.1v6.2H93.2z"/>
              <path d="M99.9,55.3l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7c-0.5,0.4-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8c-0.5-0.6-0.8-1.4-0.8-2.4  c0-0.7,0.1-1.3,0.3-1.8s0.6-0.9,1-1.1c0.5-0.3,1-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5c0.4,0.3,0.7,0.8,0.8,1.5l-1,0.2  c-0.1-0.4-0.3-0.7-0.5-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.5,0-1,0.2-1.3,0.6c-0.3,0.4-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8  c0.3,0.4,0.7,0.6,1.3,0.6c0.4,0,0.8-0.1,1-0.4C99.7,56.3,99.9,55.9,99.9,55.3z"/>
              <path d="M106.1,55.6l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5c-0.5,0.4-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8c-0.5-0.6-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4c0.5-0.6,1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8c0.5,0.6,0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.7  c0,0.7,0.2,1.2,0.6,1.6s0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3C105.8,56.4,106,56.1,106.1,55.6z M102.7,53.9h3.5  c0-0.5-0.2-0.9-0.4-1.2c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5S102.7,53.4,102.7,53.9z"/>
              <path d="M108.6,52.1l-0.3-1.6V49h1.2v1.4l-0.3,1.6H108.6z M110.6,52.1l-0.3-1.6V49h1.2v1.4l-0.3,1.6H110.6z"/>
            </svg>
          </artwork>
        </section>
        <section anchor="cbor-diagnostic-notation">
          <name>CBOR Diagnostic Notation</name>
          <artwork><![CDATA[
200(   ; envelope
   24("Alice")   ; leaf
)
]]></artwork>
        </section>
        <section anchor="cbor-hex">
          <name>CBOR Hex</name>
          <artwork><![CDATA[
d8c8d81865416c696365
]]></artwork>
        </section>
      </section>
      <section anchor="known-value-case">
        <name>Known Value Case</name>
        <section anchor="envelope-cli-command-line-1">
          <name>Envelope CLI Command Line</name>
          <artwork><![CDATA[
envelope subject --known verifiedBy
]]></artwork>
        </section>
        <section anchor="envelope-notation-1">
          <name>Envelope Notation</name>
          <artwork><![CDATA[
verifiedBy
]]></artwork>
        </section>
        <section anchor="tree-1">
          <name>Tree</name>
          <artwork><![CDATA[
d59f8c0f verifiedBy
]]></artwork>
        </section>
        <section anchor="mermaid-1">
          <name>Mermaid</name>
          <artwork type="svg">  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny" width="149.6px" height="94.3px" viewBox="0 0 149.6 94.3" xml:space="preserve">
              <polygon fill="none" stroke="#000000" stroke-width="2.2532" points="26.8,68.1 101.7,68.1 122.8,26.1 47.9,26.1 "/>
              <path d="M56.6,44.1v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4c-0.4-0.3-0.7-0.7-1-1.1c-0.2-0.5-0.3-1.1-0.3-1.7  c0-0.6,0.1-1.2,0.3-1.7s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1.1v8.6H56.6z M53.2,41  c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C53.4,39.6,53.2,40.2,53.2,41z"/>
              <path d="M58.9,41.9l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2s0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6s0.5-0.9,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4  s-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2c-0.3,0.2-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4L60.3,39c0.5-0.4,1.1-0.5,1.6-0.5  c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1c-0.8,0-1.4-0.2-1.9-0.7S59,42.6,58.9,41.9z  "/>
              <path d="M65.8,42.1l1-0.1c0.1,0.5,0.3,0.8,0.5,1c0.2,0.2,0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.6  s0.3-0.6,0.4-1c0.1-0.4,0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8s-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8  s-0.7-1.2-0.7-2c0-0.9,0.3-1.6,0.8-2.1c0.5-0.5,1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5s0.8,0.7,1.1,1.3c0.2,0.6,0.4,1.4,0.4,2.4  c0,1.1-0.1,2-0.4,2.6c-0.2,0.7-0.6,1.1-1.1,1.5s-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.7-0.6C66.1,43.3,65.9,42.8,65.8,42.1z M70.1,38.3  c0-0.6-0.2-1.1-0.5-1.4s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6c-0.3,0.4-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3s0.7,0.5,1.2,0.5  c0.5,0,0.9-0.2,1.2-0.5S70.1,39,70.1,38.3z"/>
              <path d="M72.9,44.1v-5.4h-0.9v-0.8h0.9v-0.7c0-0.4,0-0.7,0.1-0.9c0.1-0.3,0.3-0.5,0.5-0.7c0.3-0.2,0.6-0.3,1.1-0.3  c0.3,0,0.6,0,1,0.1l-0.2,0.9c-0.2,0-0.4-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.7,0.2c-0.1,0.1-0.2,0.4-0.2,0.8v0.6h1.2v0.8h-1.2v5.4H72.9z"/>
              <path d="M77.3,39.5c-0.4-0.2-0.8-0.4-1-0.7c-0.2-0.3-0.3-0.7-0.3-1.1c0-0.6,0.2-1.1,0.7-1.6c0.5-0.4,1-0.6,1.8-0.6  c0.8,0,1.4,0.2,1.8,0.7c0.5,0.4,0.7,1,0.7,1.6c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.5,0.5-1,0.7c0.5,0.2,0.9,0.4,1.2,0.8s0.4,0.8,0.4,1.4  c0,0.7-0.3,1.4-0.8,1.9s-1.2,0.8-2.1,0.8s-1.5-0.3-2.1-0.8c-0.5-0.5-0.8-1.1-0.8-1.9c0-0.6,0.1-1,0.4-1.4  C76.3,39.9,76.8,39.6,77.3,39.5z M76.7,41.6c0,0.3,0.1,0.6,0.2,0.9c0.1,0.3,0.4,0.5,0.6,0.7c0.3,0.2,0.6,0.2,0.9,0.2  c0.5,0,0.9-0.2,1.3-0.5s0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.3s-0.8-0.5-1.3-0.5c-0.5,0-0.9,0.2-1.2,0.5S76.7,41.2,76.7,41.6z   M77.1,37.7c0,0.4,0.1,0.7,0.4,1c0.3,0.3,0.6,0.4,1,0.4c0.4,0,0.7-0.1,1-0.4c0.3-0.3,0.4-0.6,0.4-0.9c0-0.4-0.1-0.7-0.4-1  c-0.3-0.3-0.6-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4C77.2,37,77.1,37.3,77.1,37.7z"/>
              <path d="M86.7,41.8l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7c-0.5,0.4-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8s-0.8-1.4-0.8-2.4  c0-0.7,0.1-1.3,0.3-1.8c0.2-0.5,0.6-0.9,1-1.1c0.5-0.3,1-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5c0.4,0.3,0.7,0.8,0.8,1.5l-1,0.2  c-0.1-0.4-0.3-0.7-0.5-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.5,0-1,0.2-1.3,0.6s-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.3,0.6  c0.4,0,0.8-0.1,1-0.4C86.5,42.8,86.6,42.4,86.7,41.8z"/>
              <path d="M88.4,39.9c0-1,0.1-1.8,0.3-2.5c0.2-0.6,0.5-1.1,0.9-1.4c0.4-0.3,0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3s0.6,0.5,0.9,0.8  s0.4,0.8,0.5,1.3c0.1,0.5,0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4c-0.2,0.6-0.5,1.1-0.9,1.4c-0.4,0.3-0.9,0.5-1.6,0.5  c-0.8,0-1.5-0.3-2-0.9C88.6,42.7,88.4,41.5,88.4,39.9z M89.4,39.9c0,1.4,0.2,2.3,0.5,2.8s0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7  s0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8s-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C89.6,37.5,89.4,38.5,89.4,39.9z"/>
              <path d="M95.6,44.1v-5.4h-0.9v-0.8h0.9v-0.7c0-0.4,0-0.7,0.1-0.9c0.1-0.3,0.3-0.5,0.5-0.7c0.3-0.2,0.6-0.3,1.1-0.3  c0.3,0,0.6,0,1,0.1l-0.2,0.9c-0.2,0-0.4-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.7,0.2c-0.1,0.1-0.2,0.4-0.2,0.8v0.6h1.2v0.8h-1.2v5.4H95.6z"/>
              <path d="M50.9,57.6l-2.4-6.2h1.1l1.3,3.7c0.1,0.4,0.3,0.8,0.4,1.3c0.1-0.3,0.2-0.7,0.4-1.2l1.4-3.8h1.1l-2.4,6.2H50.9z"/>
              <path d="M59.5,55.6l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5s-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8c-0.5-0.6-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4c0.5-0.6,1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8c0.5,0.6,0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.7  c0,0.7,0.2,1.2,0.6,1.6c0.3,0.4,0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S59.3,56.1,59.5,55.6z M56,53.9h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5S56,53.4,56,53.9z"/>
              <path d="M61.9,57.6v-6.2h1v0.9c0.2-0.4,0.5-0.7,0.7-0.9s0.4-0.2,0.7-0.2c0.4,0,0.7,0.1,1.1,0.3l-0.4,1c-0.3-0.2-0.5-0.2-0.8-0.2  c-0.2,0-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.4,0.6c-0.1,0.4-0.2,0.8-0.2,1.2v3.3H61.9z"/>
              <path d="M65.9,50.2V49H67v1.2H65.9z M65.9,57.6v-6.2H67v6.2H65.9z"/>
              <path d="M68.8,57.6v-5.4h-0.9v-0.8h0.9v-0.7c0-0.4,0-0.7,0.1-0.9c0.1-0.3,0.3-0.5,0.5-0.7c0.3-0.2,0.6-0.3,1.1-0.3  c0.3,0,0.6,0,1,0.1l-0.2,0.9c-0.2,0-0.4-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.7,0.2c-0.1,0.1-0.2,0.4-0.2,0.8v0.6h1.2v0.8h-1.2v5.4H68.8z"/>
              <path d="M71.9,50.2V49H73v1.2H71.9z M71.9,57.6v-6.2H73v6.2H71.9z"/>
              <path d="M78.9,55.6l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5s-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8c-0.5-0.6-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4c0.5-0.6,1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8c0.5,0.6,0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.7  c0,0.7,0.2,1.2,0.6,1.6c0.3,0.4,0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S78.7,56.1,78.9,55.6z M75.4,53.9h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5S75.4,53.4,75.4,53.9z"/>
              <path d="M85.3,57.6v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4c-0.4-0.3-0.7-0.7-1-1.1c-0.2-0.5-0.3-1.1-0.3-1.7  c0-0.6,0.1-1.2,0.3-1.7s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6V49h1.1v8.6H85.3z M82,54.5  c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C82.1,53.1,82,53.7,82,54.5z"/>
              <path d="M88.1,57.6V49h3.2c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.4,0.9,0.8c0.2,0.4,0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1  c-0.2,0.3-0.5,0.6-0.9,0.8c0.5,0.2,0.9,0.4,1.2,0.8c0.3,0.4,0.4,0.8,0.4,1.3c0,0.4-0.1,0.8-0.3,1.1s-0.4,0.6-0.6,0.8  c-0.3,0.2-0.6,0.3-0.9,0.4s-0.8,0.1-1.4,0.1H88.1z M89.2,52.6h1.9c0.5,0,0.9,0,1.1-0.1c0.3-0.1,0.5-0.2,0.7-0.4s0.2-0.4,0.2-0.8  c0-0.3-0.1-0.5-0.2-0.8s-0.3-0.4-0.6-0.4c-0.3-0.1-0.7-0.1-1.3-0.1h-1.7V52.6z M89.2,56.6h2.1c0.4,0,0.6,0,0.8,0  c0.3,0,0.5-0.1,0.7-0.2s0.3-0.3,0.4-0.5c0.1-0.2,0.2-0.5,0.2-0.7c0-0.3-0.1-0.6-0.2-0.8s-0.4-0.4-0.7-0.5s-0.7-0.1-1.3-0.1h-2V56.6z  "/>
              <path d="M96,60l-0.1-1c0.2,0.1,0.4,0.1,0.6,0.1c0.2,0,0.4,0,0.6-0.1c0.1-0.1,0.3-0.2,0.3-0.3c0.1-0.1,0.2-0.4,0.3-0.8  c0-0.1,0.1-0.1,0.1-0.3l-2.4-6.2h1.1l1.3,3.6c0.2,0.5,0.3,0.9,0.5,1.4c0.1-0.5,0.3-1,0.4-1.4l1.3-3.6h1.1l-2.4,6.3  c-0.3,0.7-0.5,1.2-0.6,1.4c-0.2,0.3-0.4,0.6-0.6,0.8c-0.2,0.2-0.5,0.2-0.9,0.2C96.4,60.2,96.2,60.1,96,60z"/>
            </svg>
          </artwork>
        </section>
        <section anchor="cbor-diagnostic-notation-1">
          <name>CBOR Diagnostic Notation</name>
          <artwork><![CDATA[
200(   ; envelope
   223(3)   ; known-value
)
]]></artwork>
        </section>
        <section anchor="cbor-hex-1">
          <name>CBOR Hex</name>
          <artwork><![CDATA[
d8c8d8df03
]]></artwork>
        </section>
      </section>
      <section anchor="encrypted-case">
        <name>Encrypted Case</name>
        <section anchor="envelope-cli-command-line-2">
          <name>Envelope CLI Command Line</name>
          <artwork><![CDATA[
envelope subject "Alice" | envelope encrypt \
    --key `envelope generate key`
]]></artwork>
        </section>
        <section anchor="envelope-notation-2">
          <name>Envelope Notation</name>
          <artwork><![CDATA[
ENCRYPTED
]]></artwork>
        </section>
        <section anchor="tree-2">
          <name>Tree</name>
          <artwork><![CDATA[
27840350 ENCRYPTED
]]></artwork>
        </section>
        <section anchor="mermaid-2">
          <name>Mermaid</name>
          <artwork type="svg">  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny" width="160.8px" height="94.2px" viewBox="0 0 160.8 94.2" xml:space="preserve">
              <path d="M25.1,67h3.7v2.2h-3.7V67z M30.2,64.7l-2.6,2.7l-1.6-1.6l2.6-2.7L30.2,64.7z M35.5,59.4L32.8,62l-1.6-1.6l2.6-2.7L35.5,59.4  z M40.7,54.1l-2.6,2.7l-1.6-1.6l2.6-2.7L40.7,54.1z M46,48.8l-2.6,2.7l-1.6-1.6l2.6-2.7L46,48.8z M42.5,41.9l2.6,2.7l-1.6,1.6  l-2.6-2.7L42.5,41.9z M37.2,36.6l2.6,2.7l-1.6,1.6l-2.6-2.7L37.2,36.6z M31.9,31.3l2.6,2.7l-1.6,1.6l-2.6-2.7L31.9,31.3z M26.6,26  l2.6,2.7l-1.6,1.6L25,27.6L26.6,26z M31.7,27.2H28V25h3.7V27.2z M39.2,27.2h-3.7V25h3.7V27.2z M46.7,27.2h-3.7V25h3.7V27.2z   M54.2,27.2h-3.7V25h3.7V27.2z M61.6,27.2h-3.7V25h3.7V27.2z M69.1,27.2h-3.7V25h3.7V27.2z M76.6,27.2h-3.7V25h3.7V27.2z M84.1,27.2  h-3.7V25h3.7V27.2z M91.6,27.2h-3.7V25h3.7V27.2z M99.1,27.2h-3.7V25h3.7V27.2z M106.5,27.2h-3.7V25h3.7V27.2z M114,27.2h-3.7V25  h3.7V27.2z M121.5,27.2h-3.7V25h3.7V27.2z M129,27.2h-3.7V25h3.7V27.2z M133.6,27.9v-1.8h1.1v1.1h-2V25h3.1v2.9H133.6z M133.6,35.4  v-3.8h2.2v3.8H133.6z M133.6,42.9v-3.8h2.2v3.8H133.6z M133.6,50.4v-3.8h2.2v3.8H133.6z M133.6,57.9v-3.8h2.2v3.8H133.6z   M133.6,65.4v-3.8h2.2v3.8H133.6z M129.9,67h3.7v2.2h-3.7V67z M122.4,67h3.7v2.2h-3.7V67z M114.9,67h3.7v2.2h-3.7V67z M107.5,67h3.7  v2.2h-3.7V67z M100,67h3.7v2.2H100V67z M92.5,67h3.7v2.2h-3.7V67z M85,67h3.7v2.2H85V67z M77.5,67h3.7v2.2h-3.7V67z M70,67h3.7v2.2  H70V67z M62.6,67h3.7v2.2h-3.7V67z M55.1,67h3.7v2.2h-3.7V67z M47.6,67h3.7v2.2h-3.7V67z M40.1,67h3.7v2.2h-3.7V67z M32.6,67h3.7  v2.2h-3.7V67z"/>
              <path d="M69.8,43.1v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1c0.3-0.4,0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8  s0.5-0.9,0.5-1.3c0-0.4-0.1-0.8-0.4-1.1c-0.3-0.3-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.3L64.3,38  c0.1-0.8,0.4-1.4,0.8-1.8s1.1-0.6,1.9-0.6c0.8,0,1.5,0.2,2,0.7c0.5,0.5,0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1c-0.1,0.3-0.4,0.7-0.7,1  c-0.3,0.4-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1s-0.3,0.4-0.4,0.6H69.8z"/>
              <path d="M71,36.7v-1h5.5v0.8c-0.5,0.6-1.1,1.4-1.6,2.3c-0.5,1-0.9,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H71z"/>
              <path d="M79.2,39.5c-0.4-0.2-0.8-0.4-1-0.7s-0.3-0.7-0.3-1.1c0-0.6,0.2-1.2,0.7-1.6c0.4-0.4,1-0.6,1.8-0.6c0.7,0,1.4,0.2,1.8,0.7  s0.7,1,0.7,1.6c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-0.9,0.7c0.5,0.2,0.9,0.4,1.2,0.8c0.3,0.4,0.4,0.8,0.4,1.4c0,0.7-0.3,1.4-0.8,1.9  c-0.5,0.5-1.2,0.8-2,0.8c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.8-1.1-0.8-1.9c0-0.6,0.1-1,0.4-1.4C78.3,39.9,78.7,39.6,79.2,39.5z   M78.6,41.6c0,0.3,0.1,0.6,0.2,0.9s0.4,0.5,0.6,0.7s0.6,0.2,0.9,0.2c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2  c0-0.5-0.2-0.9-0.5-1.3c-0.3-0.3-0.8-0.5-1.3-0.5c-0.5,0-0.9,0.2-1.2,0.5C78.8,40.7,78.6,41.2,78.6,41.6z M79,37.7  c0,0.4,0.1,0.7,0.4,1c0.3,0.3,0.6,0.4,1,0.4c0.4,0,0.7-0.1,1-0.4c0.3-0.3,0.4-0.6,0.4-0.9c0-0.4-0.1-0.7-0.4-1  c-0.3-0.3-0.6-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4C79.1,37,79,37.3,79,37.7z"/>
              <path d="M87.6,44.1v-2.1h-3.7v-1l3.9-5.6h0.9v5.6h1.2v1h-1.2v2.1H87.6z M87.6,41.1v-3.9l-2.7,3.9H87.6z"/>
              <path d="M90.9,39.9c0-1,0.1-1.8,0.3-2.5s0.5-1.1,0.9-1.4s0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3c0.3,0.2,0.6,0.5,0.9,0.8  c0.2,0.3,0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-1.9-0.9  C91.2,42.7,90.9,41.5,90.9,39.9z M92,39.9c0,1.4,0.2,2.3,0.5,2.8c0.3,0.5,0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7  c0.3-0.5,0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8c-0.3-0.5-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C92.1,37.5,92,38.5,92,39.9z"/>
              <path d="M97.5,41.9l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3c0.3,0.3,0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5c0.3-0.3,0.5-0.8,0.5-1.3  c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1l0.1-0.9c0.1,0,0.1,0,0.2,0c0.4,0,0.9-0.1,1.2-0.4  s0.5-0.6,0.5-1.1c0-0.4-0.1-0.7-0.4-1s-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4s-0.4,0.6-0.5,1.2l-1.1-0.2c0.1-0.7,0.4-1.3,0.9-1.6  c0.5-0.4,1-0.6,1.7-0.6c0.5,0,0.9,0.1,1.3,0.3s0.7,0.5,0.9,0.8s0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-0.9,0.7  c0.5,0.1,0.9,0.4,1.2,0.7c0.3,0.4,0.4,0.8,0.4,1.4c0,0.8-0.3,1.4-0.8,1.9c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7  C97.9,43.2,97.6,42.6,97.5,41.9z"/>
              <path d="M104.2,41.9l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2c0.3,0.3,0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6c0.4-0.4,0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2c-0.3,0.2-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4  l-0.5,2.3c0.5-0.4,1.1-0.5,1.6-0.5c0.7,0,1.4,0.3,1.9,0.8c0.5,0.5,0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.5,0.7-1.3,1-2.3,1  c-0.8,0-1.4-0.2-1.9-0.7C104.5,43.2,104.3,42.6,104.2,41.9z"/>
              <path d="M110.9,39.9c0-1,0.1-1.8,0.3-2.5s0.5-1.1,0.9-1.4s0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3c0.3,0.2,0.6,0.5,0.9,0.8  c0.2,0.3,0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-1.9-0.9  C111.1,42.7,110.9,41.5,110.9,39.9z M111.9,39.9c0,1.4,0.2,2.3,0.5,2.8c0.3,0.5,0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7  c0.3-0.5,0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8c-0.3-0.5-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C112.1,37.5,111.9,38.5,111.9,39.9  z"/>
              <path d="M54.5,57.6V49h6.2v1h-5.1v2.6h4.7v1h-4.7v2.9h5.3v1H54.5z"/>
              <path d="M62.5,57.6V49h1.2l4.5,6.7V49h1.1v8.6h-1.2l-4.5-6.8v6.8H62.5z"/>
              <path d="M77.2,54.6l1.1,0.3c-0.2,0.9-0.7,1.6-1.3,2.1s-1.4,0.7-2.3,0.7c-0.9,0-1.7-0.2-2.3-0.6s-1-0.9-1.3-1.6  c-0.3-0.7-0.5-1.5-0.5-2.3c0-0.9,0.2-1.7,0.5-2.3c0.3-0.7,0.8-1.2,1.5-1.5s1.3-0.5,2.1-0.5c0.9,0,1.6,0.2,2.2,0.7  c0.6,0.4,1,1.1,1.2,1.8l-1.1,0.3c-0.2-0.6-0.5-1.1-0.9-1.4s-0.9-0.4-1.4-0.4c-0.7,0-1.2,0.2-1.7,0.5s-0.8,0.7-0.9,1.3  S72,52.7,72,53.3c0,0.7,0.1,1.4,0.3,1.9s0.5,1,1,1.2c0.4,0.3,0.9,0.4,1.5,0.4c0.6,0,1.2-0.2,1.6-0.6C76.8,55.9,77.1,55.3,77.2,54.6z  "/>
              <path d="M79.8,57.6V49h3.8c0.8,0,1.3,0.1,1.7,0.2s0.7,0.4,1,0.8s0.4,0.8,0.4,1.3c0,0.6-0.2,1.1-0.6,1.5s-1,0.7-1.8,0.8  c0.3,0.1,0.5,0.3,0.7,0.4c0.3,0.3,0.6,0.7,0.9,1.1l1.5,2.3h-1.4l-1.1-1.8c-0.3-0.5-0.6-0.9-0.8-1.2s-0.4-0.5-0.6-0.6  c-0.2-0.1-0.3-0.2-0.5-0.2c-0.1,0-0.3,0-0.6,0h-1.3v3.8H79.8z M80.9,52.8h2.4c0.5,0,0.9-0.1,1.2-0.2c0.3-0.1,0.5-0.3,0.7-0.5  c0.2-0.2,0.2-0.5,0.2-0.8c0-0.4-0.1-0.7-0.4-1c-0.3-0.3-0.8-0.4-1.4-0.4h-2.7V52.8z"/>
              <path d="M90.6,57.6V54l-3.3-5h1.4l1.7,2.6c0.3,0.5,0.6,1,0.9,1.5c0.3-0.4,0.6-1,0.9-1.5l1.7-2.5h1.3l-3.4,5v3.6H90.6z"/>
              <path d="M96.2,57.6V49h3.2c0.6,0,1,0,1.3,0.1c0.4,0.1,0.8,0.2,1.1,0.4c0.3,0.2,0.5,0.5,0.7,0.8s0.3,0.7,0.3,1.2  c0,0.7-0.2,1.3-0.7,1.9c-0.5,0.5-1.3,0.8-2.5,0.8h-2.2v3.5H96.2z M97.3,53.1h2.2c0.7,0,1.3-0.1,1.6-0.4c0.3-0.3,0.5-0.7,0.5-1.2  c0-0.4-0.1-0.7-0.3-0.9s-0.4-0.4-0.7-0.5c-0.2-0.1-0.5-0.1-1.1-0.1h-2.2V53.1z"/>
              <path d="M106.4,57.6V50h-2.8v-1h6.8v1h-2.8v7.6H106.4z"/>
              <path d="M111.5,57.6V49h6.2v1h-5.1v2.6h4.7v1h-4.7v2.9h5.3v1H111.5z"/>
              <path d="M119.5,57.6V49h3c0.7,0,1.2,0,1.5,0.1c0.5,0.1,0.9,0.3,1.3,0.6c0.5,0.4,0.8,0.9,1,1.5s0.3,1.3,0.3,2c0,0.7-0.1,1.2-0.2,1.7  c-0.2,0.5-0.3,0.9-0.6,1.3c-0.2,0.3-0.5,0.6-0.8,0.8c-0.3,0.2-0.6,0.3-1,0.4s-0.9,0.1-1.4,0.1H119.5z M120.6,56.6h1.8  c0.6,0,1-0.1,1.3-0.2c0.3-0.1,0.6-0.3,0.8-0.4c0.3-0.3,0.5-0.6,0.6-1.1s0.2-1,0.2-1.7c0-0.9-0.1-1.6-0.4-2.1c-0.3-0.5-0.7-0.8-1.1-1  c-0.3-0.1-0.8-0.2-1.5-0.2h-1.8V56.6z"/>
            </svg>
          </artwork>
        </section>
        <section anchor="cbor-diagnostic-notation-2">
          <name>CBOR Diagnostic Notation</name>
          <artwork><![CDATA[
200(   ; envelope
   201(   ; crypto-msg
      [
         h'6bfa027df241def0',
         h'5520ca6d9d798ffd32d075c4',
         h'd4b43d97a37eb280fdd89cf152ccf57d',
         h'd8cb5820278403504ad3a9a9c24c1b35a3673eee165a5d52\
         3f8d2a5cf5ce6dd25a37f110'
      ]
   )
)
]]></artwork>
        </section>
        <section anchor="cbor-hex-2">
          <name>CBOR Hex</name>
          <artwork><![CDATA[
d8c8d8c984486bfa027df241def04c5520ca6d9d798ffd32d075c450d4b4\
3d97a37eb280fdd89cf152ccf57d5824d8cb5820278403504ad3a9a9c24c\
1b35a3673eee165a5d523f8d2a5cf5ce6dd25a37f110
]]></artwork>
        </section>
      </section>
      <section anchor="elided-case">
        <name>Elided Case</name>
        <section anchor="envelope-cli-command-line-3">
          <name>Envelope CLI Command Line</name>
          <artwork><![CDATA[
envelope subject "Alice" | envelope elide
]]></artwork>
        </section>
        <section anchor="envelope-notation-3">
          <name>Envelope Notation</name>
          <artwork><![CDATA[
ELIDED
]]></artwork>
        </section>
        <section anchor="tree-3">
          <name>Tree</name>
          <artwork><![CDATA[
27840350 ELIDED
]]></artwork>
        </section>
        <section anchor="mermaid-3">
          <name>Mermaid</name>
          <artwork type="svg">  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny" width="141.1px" height="94.2px" viewBox="0 0 141.1 94.2" xml:space="preserve">
              <path d="M36.1,67h3.7v2.2h-3.7V67z M34.5,62.5l1.7,3.4l-2,1l-1.7-3.4L34.5,62.5z M31.2,55.8l1.7,3.4l-2,1l-1.7-3.4L31.2,55.8z   M27.8,49.1l1.7,3.4l-2,1l-1.7-3.4L27.8,49.1z M28.7,43.4L27,46.8l-2-1l1.7-3.4L28.7,43.4z M32,36.7l-1.7,3.4l-2-1l1.7-3.4L32,36.7z   M35.4,30l-1.7,3.4l-2-1l1.7-3.4L35.4,30z M39.8,27.2h-3.7v-1.1l1,0.5l0,0l-2-1l0.3-0.6h4.4V27.2z M47.3,27.2h-3.7V25h3.7V27.2z   M54.8,27.2H51V25h3.7V27.2z M62.3,27.2h-3.7V25h3.7V27.2z M69.8,27.2H66V25h3.7V27.2z M77.2,27.2h-3.7V25h3.7V27.2z M84.7,27.2H81  V25h3.7V27.2z M92.2,27.2h-3.7V25h3.7V27.2z M99.7,27.2H96V25h3.7V27.2z M104.6,29.2l-1.3-2.5l1-0.5v1.1h-0.9V25h1.6l1.6,3.2  L104.6,29.2z M108,35.9l-1.7-3.4l2-1l1.7,3.4L108,35.9z M111.3,42.6l-1.7-3.4l2-1l1.7,3.4L111.3,42.6z M113,48.3l0.8-1.7l1,0.5  l-1,0.5l-0.8-1.7l2-1l1.1,2.2l-1.1,2.2L113,48.3z M109.7,55l1.7-3.4l2,1l-1.7,3.4L109.7,55z M106.3,61.7l1.7-3.4l2,1l-1.7,3.4  L106.3,61.7z M103.5,67h0.9v1.1l-1-0.5l1.3-2.6l2,1l-1.6,3.2h-1.6V67z M96,67h3.7v2.2H96V67z M88.5,67h3.7v2.2h-3.7V67z M81,67h3.7  v2.2H81V67z M73.5,67h3.7v2.2h-3.7V67z M66,67h3.7v2.2H66V67z M58.5,67h3.7v2.2h-3.7V67z M51,67h3.7v2.2H51V67z M43.5,67h3.7v2.2  h-3.7V67z"/>
              <path d="M49.6,43.1v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1c0.3-0.4,0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8  s0.5-0.9,0.5-1.3c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5s-0.5,0.7-0.5,1.3L44.1,38c0.1-0.8,0.4-1.4,0.8-1.8  s1.1-0.6,1.9-0.6c0.8,0,1.5,0.2,2,0.7s0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1c-0.1,0.3-0.4,0.7-0.7,1s-0.9,0.9-1.6,1.5  c-0.6,0.5-1,0.9-1.2,1.1c-0.2,0.2-0.3,0.4-0.4,0.6H49.6z"/>
              <path d="M50.8,36.7v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3c-0.5,1-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4H52c0-0.7,0.1-1.5,0.4-2.4  c0.3-1,0.6-1.9,1.1-2.8c0.5-0.9,1-1.6,1.5-2.2H50.8z"/>
              <path d="M59,39.5c-0.4-0.2-0.8-0.4-1-0.7c-0.2-0.3-0.3-0.7-0.3-1.1c0-0.6,0.2-1.2,0.7-1.6c0.4-0.4,1-0.6,1.8-0.6  c0.7,0,1.4,0.2,1.8,0.7c0.5,0.4,0.7,1,0.7,1.6c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.5,0.5-1,0.7c0.5,0.2,0.9,0.4,1.2,0.8  c0.3,0.4,0.4,0.8,0.4,1.4c0,0.7-0.3,1.4-0.8,1.9c-0.5,0.5-1.2,0.8-2,0.8c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.8-1.1-0.8-1.9  c0-0.6,0.1-1,0.4-1.4C58.1,39.9,58.5,39.6,59,39.5z M58.4,41.6c0,0.3,0.1,0.6,0.2,0.9c0.1,0.3,0.4,0.5,0.6,0.7s0.6,0.2,0.9,0.2  c0.5,0,0.9-0.2,1.2-0.5s0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.3s-0.8-0.5-1.3-0.5c-0.5,0-0.9,0.2-1.2,0.5S58.4,41.2,58.4,41.6z   M58.8,37.7c0,0.4,0.1,0.7,0.4,1c0.3,0.3,0.6,0.4,1,0.4c0.4,0,0.7-0.1,1-0.4c0.3-0.3,0.4-0.6,0.4-0.9c0-0.4-0.1-0.7-0.4-1  c-0.3-0.3-0.6-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4C58.9,37,58.8,37.3,58.8,37.7z"/>
              <path d="M67.4,44.1v-2.1h-3.7v-1l3.9-5.6h0.9v5.6h1.2v1h-1.2v2.1H67.4z M67.4,41.1v-3.9l-2.7,3.9H67.4z"/>
              <path d="M70.7,39.9c0-1,0.1-1.8,0.3-2.5c0.2-0.6,0.5-1.1,0.9-1.4s0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3s0.6,0.5,0.9,0.8  c0.2,0.3,0.4,0.8,0.5,1.3c0.1,0.5,0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4c-0.2,0.6-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5  c-0.8,0-1.5-0.3-1.9-0.9C71,42.7,70.7,41.5,70.7,39.9z M71.8,39.9c0,1.4,0.2,2.3,0.5,2.8s0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7  s0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8s-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C72,37.5,71.8,38.5,71.8,39.9z"/>
              <path d="M77.4,41.9l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3s0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5s0.5-0.8,0.5-1.3c0-0.5-0.2-0.9-0.5-1.2  s-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1l0.1-0.9c0.1,0,0.1,0,0.2,0c0.4,0,0.9-0.1,1.2-0.4s0.5-0.6,0.5-1.1c0-0.4-0.1-0.7-0.4-1  s-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4c-0.3,0.3-0.4,0.6-0.5,1.2l-1.1-0.2c0.1-0.7,0.4-1.3,0.9-1.6c0.5-0.4,1-0.6,1.7-0.6  c0.5,0,0.9,0.1,1.3,0.3s0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.5,0.5-0.9,0.7  c0.5,0.1,0.9,0.4,1.2,0.7S83,41,83,41.6c0,0.8-0.3,1.4-0.8,1.9c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7  C77.7,43.2,77.4,42.6,77.4,41.9z"/>
              <path d="M84,41.9l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2s0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6s0.5-0.9,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4  s-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2c-0.3,0.2-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4L85.4,39c0.5-0.4,1.1-0.5,1.6-0.5  c0.7,0,1.4,0.3,1.9,0.8c0.5,0.5,0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.5,0.7-1.3,1-2.3,1c-0.8,0-1.4-0.2-1.9-0.7S84.1,42.6,84,41.9z  "/>
              <path d="M90.7,39.9c0-1,0.1-1.8,0.3-2.5c0.2-0.6,0.5-1.1,0.9-1.4s0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3s0.6,0.5,0.9,0.8  c0.2,0.3,0.4,0.8,0.5,1.3c0.1,0.5,0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4c-0.2,0.6-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5  c-0.8,0-1.5-0.3-1.9-0.9C91,42.7,90.7,41.5,90.7,39.9z M91.8,39.9c0,1.4,0.2,2.3,0.5,2.8s0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7  s0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8s-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C92,37.5,91.8,38.5,91.8,39.9z"/>
              <path d="M49.5,57.6V49h6.2v1h-5.1v2.6h4.7v1h-4.7v2.9h5.3v1H49.5z"/>
              <path d="M57.4,57.6V49h1.1v7.6h4.2v1H57.4z"/>
              <path d="M64.3,57.6V49h1.1v8.6H64.3z"/>
              <path d="M67.5,57.6V49h3c0.7,0,1.2,0,1.5,0.1c0.5,0.1,0.9,0.3,1.3,0.6c0.5,0.4,0.8,0.9,1,1.5s0.3,1.3,0.3,2c0,0.7-0.1,1.2-0.2,1.7  c-0.2,0.5-0.3,0.9-0.6,1.3c-0.2,0.3-0.5,0.6-0.8,0.8c-0.3,0.2-0.6,0.3-1,0.4c-0.4,0.1-0.9,0.1-1.4,0.1H67.5z M68.6,56.6h1.8  c0.6,0,1-0.1,1.3-0.2s0.6-0.3,0.8-0.4c0.3-0.3,0.5-0.6,0.6-1.1c0.2-0.5,0.2-1,0.2-1.7c0-0.9-0.1-1.6-0.4-2.1c-0.3-0.5-0.7-0.8-1.1-1  c-0.3-0.1-0.8-0.2-1.5-0.2h-1.8V56.6z"/>
              <path d="M76.1,57.6V49h6.2v1h-5.1v2.6H82v1h-4.7v2.9h5.3v1H76.1z"/>
              <path d="M84.1,57.6V49h3c0.7,0,1.2,0,1.5,0.1c0.5,0.1,0.9,0.3,1.3,0.6c0.5,0.4,0.8,0.9,1,1.5s0.3,1.3,0.3,2c0,0.7-0.1,1.2-0.2,1.7  c-0.2,0.5-0.3,0.9-0.6,1.3c-0.2,0.3-0.5,0.6-0.8,0.8c-0.3,0.2-0.6,0.3-1,0.4c-0.4,0.1-0.9,0.1-1.4,0.1H84.1z M85.2,56.6h1.8  c0.6,0,1-0.1,1.3-0.2s0.6-0.3,0.8-0.4c0.3-0.3,0.5-0.6,0.6-1.1c0.2-0.5,0.2-1,0.2-1.7c0-0.9-0.1-1.6-0.4-2.1c-0.3-0.5-0.7-0.8-1.1-1  c-0.3-0.1-0.8-0.2-1.5-0.2h-1.8V56.6z"/>
            </svg>
          </artwork>
        </section>
        <section anchor="cbor-diagnostic-notation-3">
          <name>CBOR Diagnostic Notation</name>
          <artwork><![CDATA[
200(   ; envelope
   203(   ; crypto-digest
      h'278403504ad3a9a9c24c1b35a3673eee165a5d523f8d2a5cf5ce6dd25a37\
      f110'
   )
)
]]></artwork>
        </section>
        <section anchor="cbor-hex-3">
          <name>CBOR Hex</name>
          <artwork><![CDATA[
d8c8d8cb5820278403504ad3a9a9c24c1b35a3673eee165a5d523f8d2a5cf5ce6dd2\
5a37f110
]]></artwork>
        </section>
      </section>
      <section anchor="node-case">
        <name>Node Case</name>
        <section anchor="envelope-cli-command-line-4">
          <name>Envelope CLI Command Line</name>
          <artwork><![CDATA[
envelope subject "Alice" | envelope assertion "knows" "Bob"
]]></artwork>
        </section>
        <section anchor="envelope-notation-4">
          <name>Envelope Notation</name>
          <artwork><![CDATA[
"Alice" [
    "knows": "Bob"
]
]]></artwork>
        </section>
        <section anchor="tree-4">
          <name>Tree</name>
          <artwork><![CDATA[
e54d6fd3 NODE
    27840350 subj "Alice"
    55560bdf ASSERTION
        7092d620 pred "knows"
        9a771715 obj "Bob"
]]></artwork>
        </section>
        <section anchor="mermaid-4">
          <name>Mermaid</name>
          <artwork type="svg">  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny" width="520.2px" height="213.5px" viewBox="0 0 520.2 213.5" xml:space="preserve">
              <path fill="none" stroke="#000000" stroke-width="1.5002" d="M86.1,69.4l5.8-3.7c5.8-3.7,17.4-11.1,28.2-14.8  c10.8-3.7,20.7-3.7,25.7-3.7h5"/>
              <polygon fill="black" points="142.6,42.6 151.6,47.1 142.6,51.6 "/>
              <rect x="141.1" y="42.6" fill-rule="evenodd" fill="none" width="12" height="9"/>
              <path fill="none" stroke="#000000" stroke-width="1.5002" d="M86.1,104.4l5.8,3.7c5.8,3.7,17.4,11.1,31.7,14.8  c14.3,3.7,31.3,3.7,39.7,3.7h8.5"/>
              <polygon fill="black" points="163.8,122.1 172.8,126.6 163.8,131.1 "/>
              <rect x="162.3" y="122.1" fill-rule="evenodd" fill="none" width="12" height="9"/>
              <path fill="none" stroke="#000000" stroke-width="1.5002" d="M266.5,107.7l8.7-3.5c8.7-3.5,26-10.4,39.7-13.9  c13.8-3.5,24-3.5,29.2-3.5h5.1"/>
              <polygon fill="black" points="341.1,82.4 350.1,86.9 341.1,91.4 "/>
              <rect x="339.6" y="82.4" fill-rule="evenodd" fill="none" width="12" height="9"/>
              <path fill="none" stroke="#000000" stroke-width="1.5002" d="M266.5,145.6l8.7,3.5c8.7,3.5,26,10.4,40.8,13.9  c14.8,3.5,27.2,3.5,33.4,3.5h6.2"/>
              <polygon fill="black" points="347.4,161.9 356.4,166.4 347.4,170.9 "/>
              <rect x="345.9" y="161.9" fill-rule="evenodd" fill="none" width="12" height="9"/>
              <path d="M110.3,49l1-0.2c0.1,0.4,0.2,0.7,0.5,1s0.6,0.3,1.1,0.3c0.5,0,0.8-0.1,1.1-0.3s0.4-0.4,0.4-0.7c0-0.2-0.1-0.4-0.3-0.6  c-0.1-0.1-0.5-0.2-1.1-0.4c-0.8-0.2-1.3-0.4-1.6-0.5s-0.5-0.3-0.7-0.6c-0.2-0.3-0.2-0.5-0.2-0.8c0-0.3,0.1-0.5,0.2-0.8  s0.3-0.4,0.5-0.6c0.2-0.1,0.4-0.2,0.7-0.3s0.6-0.1,0.9-0.1c0.5,0,0.9,0.1,1.3,0.2c0.4,0.1,0.6,0.3,0.8,0.6s0.3,0.6,0.4,1l-1,0.1  c0-0.3-0.2-0.6-0.4-0.8c-0.2-0.2-0.5-0.3-1-0.3c-0.5,0-0.8,0.1-1,0.2s-0.3,0.3-0.3,0.6c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.4,0.3  c0.1,0,0.4,0.1,0.9,0.3c0.7,0.2,1.3,0.4,1.6,0.5s0.5,0.3,0.7,0.6s0.3,0.5,0.3,0.9c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.5,0.6-0.9,0.7  S113.5,51,113,51c-0.8,0-1.4-0.2-1.8-0.5C110.7,50.2,110.4,49.7,110.3,49z"/>
              <path d="M120.8,50.9V50c-0.5,0.7-1.1,1.1-2,1.1c-0.4,0-0.7-0.1-1-0.2s-0.6-0.3-0.7-0.5s-0.3-0.5-0.3-0.8c0-0.2-0.1-0.5-0.1-1v-3.9  h1.1v3.5c0,0.6,0,0.9,0.1,1.1c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.5,0.2,0.8,0.2s0.6-0.1,0.9-0.2c0.3-0.2,0.5-0.4,0.6-0.7  s0.2-0.7,0.2-1.2v-3.3h1.1v6.2H120.8z"/>
              <path d="M124.4,50.9h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V50.9z M124.4,47.7c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  C124.6,46.4,124.4,47,124.4,47.7z"/>
              <path d="M128.8,53.3l0.2-0.9c0.2,0.1,0.4,0.1,0.5,0.1c0.2,0,0.4-0.1,0.5-0.2s0.2-0.5,0.2-1.1v-6.5h1.1v6.6c0,0.8-0.1,1.3-0.3,1.6  c-0.3,0.4-0.7,0.6-1.3,0.6C129.3,53.4,129,53.4,128.8,53.3z M130.1,43.5v-1.2h1.1v1.2H130.1z"/>
              <rect x="110" y="40.4" fill-rule="evenodd" fill="none" width="21.8" height="13.5"/>
              <path d="M307.2,93v-8.6h1v0.8c0.2-0.3,0.5-0.6,0.8-0.7c0.3-0.2,0.6-0.2,1-0.2c0.5,0,1,0.1,1.4,0.4s0.7,0.7,0.9,1.2s0.3,1,0.3,1.6  c0,0.6-0.1,1.2-0.3,1.7s-0.6,0.9-1,1.2s-0.9,0.4-1.4,0.4c-0.4,0-0.7-0.1-0.9-0.2c-0.3-0.1-0.5-0.3-0.7-0.6v3H307.2z M308.2,87.5  c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6  c-0.4,0-0.8,0.2-1.2,0.6C308.3,86.1,308.2,86.7,308.2,87.5z"/>
              <path d="M313.9,90.6v-6.2h0.9v0.9c0.2-0.4,0.5-0.7,0.7-0.9c0.2-0.1,0.4-0.2,0.7-0.2c0.4,0,0.7,0.1,1.1,0.3l-0.4,1  c-0.3-0.2-0.5-0.2-0.8-0.2c-0.2,0-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.4,0.6c-0.1,0.4-0.2,0.8-0.2,1.2v3.3H313.9z"/>
              <path d="M322.1,88.6l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5s-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8c-0.5-0.6-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4c0.5-0.6,1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8s0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6c0,0.7,0.2,1.2,0.6,1.6  c0.3,0.4,0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S322,89.1,322.1,88.6z M318.7,86.9h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5C318.9,85.9,318.7,86.4,318.7,86.9z"/>
              <path d="M328.6,90.6v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4c-0.4-0.3-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7  c0-0.6,0.1-1.2,0.3-1.7s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6V82h1v8.6H328.6z M325.3,87.5  c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9  c-0.3-0.4-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6S325.3,86.7,325.3,87.5z"/>
              <rect x="306.4" y="80.1" fill-rule="evenodd" fill="none" width="24" height="13.5"/>
              <path d="M310.8,167c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8c0.5,0.6,0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  s-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8C311.1,168.9,310.8,168.1,310.8,167z M311.9,167c0,0.8,0.2,1.4,0.5,1.8  s0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7s-0.8-0.6-1.3-0.6c-0.5,0-1,0.2-1.3,0.6  S311.9,166.2,311.9,167z"/>
              <path d="M318.9,170.1h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2c0.3,0.2,0.6,0.4,0.8,0.7s0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V170.1z M318.8,167c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8c-0.3-0.4-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C319,165.6,318.8,166.2,318.8,167z"/>
              <path d="M323.2,172.5l0.2-0.9c0.2,0.1,0.4,0.1,0.5,0.1c0.2,0,0.4-0.1,0.5-0.2s0.2-0.5,0.2-1.1v-6.5h1.1v6.6c0,0.8-0.1,1.3-0.3,1.6  c-0.3,0.4-0.7,0.6-1.3,0.6C323.8,172.7,323.5,172.6,323.2,172.5z M324.6,162.8v-1.2h1.1v1.2H324.6z"/>
              <rect x="310.4" y="159.6" fill-rule="evenodd" fill="none" width="15.8" height="13.5"/>
              <path fill="none" stroke="#000000" stroke-width="2.2504" d="M91.2,86.9c0,1.1-0.1,2.1-0.2,3.2s-0.3,2.1-0.5,3.2  c-0.2,1-0.5,2.1-0.8,3.1c-0.3,1-0.7,2-1.1,3c-0.4,1-0.9,1.9-1.4,2.9c-0.5,0.9-1,1.9-1.6,2.7c-0.6,0.9-1.2,1.7-1.9,2.6  c-0.7,0.8-1.4,1.6-2.1,2.4c-0.8,0.8-1.5,1.5-2.4,2.1c-0.8,0.7-1.7,1.3-2.6,1.9c-0.9,0.6-1.8,1.1-2.7,1.6c-0.9,0.5-1.9,1-2.9,1.4  c-1,0.4-2,0.8-3,1.1c-1,0.3-2.1,0.6-3.1,0.8s-2.1,0.4-3.2,0.5c-1.1,0.1-2.1,0.2-3.2,0.2s-2.1-0.1-3.2-0.2c-1.1-0.1-2.1-0.3-3.2-0.5  c-1-0.2-2.1-0.5-3.1-0.8c-1-0.3-2-0.7-3-1.1s-1.9-0.9-2.9-1.4c-0.9-0.5-1.9-1-2.7-1.6c-0.9-0.6-1.7-1.2-2.6-1.9  c-0.8-0.7-1.6-1.4-2.4-2.1c-0.8-0.8-1.5-1.5-2.1-2.4c-0.7-0.8-1.3-1.7-1.9-2.6c-0.6-0.9-1.1-1.8-1.6-2.7c-0.5-0.9-1-1.9-1.4-2.9  c-0.4-1-0.8-2-1.1-3c-0.3-1-0.6-2.1-0.8-3.1c-0.2-1-0.4-2.1-0.5-3.2s-0.2-2.1-0.2-3.2c0-1.1,0.1-2.1,0.2-3.2s0.3-2.1,0.5-3.2  c0.2-1,0.5-2.1,0.8-3.1c0.3-1,0.7-2,1.1-3c0.4-1,0.9-1.9,1.4-2.9c0.5-0.9,1-1.9,1.6-2.7c0.6-0.9,1.2-1.7,1.9-2.6  c0.7-0.8,1.4-1.6,2.1-2.4c0.8-0.8,1.5-1.5,2.4-2.1c0.8-0.7,1.7-1.3,2.6-1.9c0.9-0.6,1.8-1.1,2.7-1.6c0.9-0.5,1.9-1,2.9-1.4  s2-0.8,3-1.1c1-0.3,2.1-0.6,3.1-0.8c1-0.2,2.1-0.4,3.2-0.5c1.1-0.1,2.1-0.2,3.2-0.2s2.1,0.1,3.2,0.2c1.1,0.1,2.1,0.3,3.2,0.5  s2.1,0.5,3.1,0.8c1,0.3,2,0.7,3,1.1c1,0.4,1.9,0.9,2.9,1.4c0.9,0.5,1.9,1,2.7,1.6c0.9,0.6,1.7,1.2,2.6,1.9c0.8,0.7,1.6,1.4,2.4,2.1  c0.8,0.8,1.5,1.5,2.1,2.4c0.7,0.8,1.3,1.7,1.9,2.6c0.6,0.9,1.1,1.8,1.6,2.7c0.5,0.9,1,1.9,1.4,2.9c0.4,1,0.8,2,1.1,3  c0.3,1,0.6,2.1,0.8,3.1c0.2,1,0.4,2.1,0.5,3.2S91.2,85.8,91.2,86.9z"/>
              <path d="M38.7,81.9l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5C38.3,83.8,37.8,84,37,84c-0.9,0-1.6-0.3-2.2-0.8c-0.5-0.6-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4c0.5-0.6,1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8c0.5,0.6,0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6  c0,0.7,0.2,1.2,0.6,1.6c0.3,0.4,0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S38.5,82.3,38.7,81.9z M35.2,80.2h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5C35.4,79.2,35.3,79.6,35.2,80.2z"/>
              <path d="M40.8,81.6l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2c0.3,0.3,0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6s0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4s-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2c-0.3,0.2-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4l-0.5,2.3  c0.5-0.4,1.1-0.5,1.6-0.5c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1  c-0.8,0-1.4-0.2-1.9-0.7C41.2,82.9,40.9,82.3,40.8,81.6z"/>
              <path d="M50.9,83.9v-2.1h-3.7v-1l3.9-5.6h0.9v5.6h1.2v1h-1.2v2.1H50.9z M50.9,80.9V77l-2.7,3.9H50.9z"/>
              <path d="M58.5,83.9v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1c-0.2-0.5-0.3-1.1-0.3-1.7  c0-0.6,0.1-1.2,0.3-1.7c0.2-0.5,0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6v-3.1h1v8.6H58.5z   M55.2,80.8c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S55.2,79.9,55.2,80.8z"/>
              <path d="M66.3,77.4l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  s-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9c0.4-0.2,0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8c0.5,0.5,0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5  s-0.6,0.8-1,1.1S64.3,84,63.8,84c-0.9,0-1.6-0.3-2.2-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6c0.5-0.7,1.3-1,2.2-1  c0.7,0,1.2,0.2,1.7,0.6C66,76.2,66.2,76.7,66.3,77.4z M62,81.1c0,0.4,0.1,0.7,0.2,1s0.4,0.6,0.6,0.8c0.3,0.2,0.6,0.3,0.9,0.3  c0.4,0,0.8-0.2,1.1-0.5s0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5S62,80.5,62,81.1z"/>
              <path d="M68.1,83.9v-5.4h-0.9v-0.8h0.9V77c0-0.4,0-0.7,0.1-0.9c0.1-0.3,0.3-0.5,0.5-0.7s0.6-0.3,1.1-0.3c0.3,0,0.6,0,1,0.1l-0.2,0.9  c-0.2,0-0.4-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.7,0.2s-0.2,0.4-0.2,0.8v0.6h1.2v0.8h-1.2v5.4H68.1z"/>
              <path d="M75.2,83.9v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1c-0.2-0.5-0.3-1.1-0.3-1.7  c0-0.6,0.1-1.2,0.3-1.7c0.2-0.5,0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6v-3.1h1v8.6H75.2z   M71.8,80.8c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S71.8,79.9,71.8,80.8z"/>
              <path d="M77.5,81.6l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3s0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5s0.5-0.8,0.5-1.3c0-0.5-0.2-0.9-0.5-1.2  s-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1l0.1-0.9c0.1,0,0.1,0,0.2,0c0.4,0,0.9-0.1,1.2-0.4c0.4-0.2,0.5-0.6,0.5-1.1  c0-0.4-0.1-0.7-0.4-1s-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4s-0.4,0.6-0.5,1.2l-1.1-0.2c0.1-0.7,0.4-1.3,0.9-1.6s1-0.6,1.7-0.6  c0.5,0,0.9,0.1,1.3,0.3s0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.5,0.5-0.9,0.7  c0.5,0.1,0.9,0.4,1.2,0.7s0.4,0.8,0.4,1.4c0,0.8-0.3,1.4-0.8,1.9c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7  S77.6,82.3,77.5,81.6z"/>
              <path d="M42.2,97.4v-8.6h1.2l4.5,6.7v-6.7H49v8.6h-1.2l-4.5-6.8v6.8H42.2z"/>
              <path d="M50.6,93.2c0-1.4,0.4-2.5,1.1-3.3s1.8-1.2,3-1.2c0.8,0,1.5,0.2,2.1,0.6c0.6,0.4,1.1,0.9,1.5,1.6c0.3,0.7,0.5,1.4,0.5,2.3  c0,0.9-0.2,1.7-0.5,2.3c-0.4,0.7-0.8,1.2-1.5,1.6c-0.6,0.4-1.3,0.5-2.1,0.5c-0.8,0-1.5-0.2-2.2-0.6c-0.6-0.4-1.1-0.9-1.4-1.6  C50.7,94.7,50.6,93.9,50.6,93.2z M51.7,93.2c0,1,0.3,1.9,0.8,2.4c0.6,0.6,1.3,0.9,2.1,0.9c0.9,0,1.6-0.3,2.1-0.9  c0.6-0.6,0.8-1.5,0.8-2.6c0-0.7-0.1-1.3-0.4-1.8c-0.2-0.5-0.6-0.9-1-1.2s-1-0.4-1.5-0.4c-0.8,0-1.5,0.3-2.1,0.8  C52,91,51.7,91.9,51.7,93.2z"/>
              <path d="M60.2,97.4v-8.6h3c0.7,0,1.2,0,1.5,0.1c0.5,0.1,0.9,0.3,1.3,0.6c0.5,0.4,0.8,0.9,1,1.5s0.3,1.3,0.3,2c0,0.7-0.1,1.2-0.2,1.7  s-0.3,0.9-0.6,1.3c-0.2,0.3-0.5,0.6-0.8,0.8s-0.6,0.3-1,0.4c-0.4,0.1-0.9,0.1-1.4,0.1H60.2z M61.4,96.4h1.8c0.6,0,1-0.1,1.3-0.2  c0.3-0.1,0.6-0.3,0.8-0.4c0.3-0.3,0.5-0.6,0.6-1.1s0.2-1,0.2-1.7c0-0.9-0.1-1.6-0.4-2.1s-0.7-0.8-1.1-1c-0.3-0.1-0.8-0.2-1.5-0.2  h-1.8V96.4z"/>
              <path d="M68.9,97.4v-8.6h6.2v1h-5.1v2.6h4.8v1h-4.8v2.9h5.3v1H68.9z"/>
              <rect x="33.6" y="73.4" fill-rule="evenodd" fill="none" width="50.3" height="27"/>
              <rect x="150.7" y="26.1" fill="none" stroke="#000000" stroke-width="2.2504" width="136.9" height="42"/>
              <path d="M198.5,43.1v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1c0.3-0.4,0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8  s0.5-0.9,0.5-1.3c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.3l-1.1-0.1  c0.1-0.8,0.4-1.4,0.8-1.8s1.1-0.6,2-0.6c0.8,0,1.5,0.2,2,0.7c0.5,0.5,0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1  s-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1s-0.3,0.4-0.4,0.6H198.5z"/>
              <path d="M199.7,36.7v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  c0.3-1,0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H199.7z"/>
              <path d="M208,39.5c-0.4-0.2-0.8-0.4-1-0.7s-0.3-0.7-0.3-1.1c0-0.6,0.2-1.2,0.7-1.6s1-0.6,1.8-0.6c0.8,0,1.4,0.2,1.8,0.7  c0.5,0.4,0.7,1,0.7,1.6c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.5,0.5-1,0.7c0.5,0.2,0.9,0.4,1.2,0.8s0.4,0.8,0.4,1.4c0,0.7-0.3,1.4-0.8,1.9  c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.5-0.3-2.1-0.8c-0.5-0.5-0.8-1.1-0.8-1.9c0-0.6,0.1-1,0.4-1.4C207,39.9,207.4,39.6,208,39.5z   M207.4,41.6c0,0.3,0.1,0.6,0.2,0.9s0.4,0.5,0.6,0.7c0.3,0.2,0.6,0.2,0.9,0.2c0.5,0,0.9-0.2,1.2-0.5s0.5-0.7,0.5-1.2  c0-0.5-0.2-0.9-0.5-1.3s-0.8-0.5-1.3-0.5c-0.5,0-0.9,0.2-1.2,0.5S207.4,41.2,207.4,41.6z M207.8,37.7c0,0.4,0.1,0.7,0.4,1  c0.3,0.3,0.6,0.4,1,0.4c0.4,0,0.7-0.1,1-0.4s0.4-0.6,0.4-0.9c0-0.4-0.1-0.7-0.4-1s-0.6-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4  C207.9,37,207.8,37.3,207.8,37.7z"/>
              <path d="M216.4,44.1v-2.1h-3.7v-1l3.9-5.6h0.9v5.6h1.2v1h-1.2v2.1H216.4z M216.4,41.1v-3.9l-2.7,3.9H216.4z"/>
              <path d="M219.7,39.9c0-1,0.1-1.8,0.3-2.5c0.2-0.6,0.5-1.1,0.9-1.4s0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3s0.6,0.5,0.9,0.8  c0.2,0.3,0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9  C220,42.7,219.7,41.5,219.7,39.9z M220.8,39.9c0,1.4,0.2,2.3,0.5,2.8c0.3,0.5,0.7,0.7,1.2,0.7s0.9-0.2,1.2-0.7s0.5-1.4,0.5-2.8  c0-1.4-0.2-2.4-0.5-2.8s-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C221,37.5,220.8,38.5,220.8,39.9z"/>
              <path d="M226.4,41.9l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3s0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5s0.5-0.8,0.5-1.3c0-0.5-0.2-0.9-0.5-1.2  s-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1l0.1-0.9c0.1,0,0.1,0,0.2,0c0.4,0,0.9-0.1,1.2-0.4c0.4-0.2,0.5-0.6,0.5-1.1  c0-0.4-0.1-0.7-0.4-1s-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4s-0.4,0.6-0.5,1.2l-1.1-0.2c0.1-0.7,0.4-1.3,0.9-1.6s1-0.6,1.7-0.6  c0.5,0,0.9,0.1,1.3,0.3s0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.5,0.5-0.9,0.7  c0.5,0.1,0.9,0.4,1.2,0.7s0.4,0.8,0.4,1.4c0,0.8-0.3,1.4-0.8,1.9c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7  S226.4,42.6,226.4,41.9z"/>
              <path d="M233,41.9l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2c0.3,0.3,0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6s0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4s-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2c-0.3,0.2-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4l-0.5,2.3  c0.5-0.4,1.1-0.5,1.6-0.5c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1  c-0.8,0-1.4-0.2-1.9-0.7C233.4,43.2,233.1,42.6,233,41.9z"/>
              <path d="M239.7,39.9c0-1,0.1-1.8,0.3-2.5c0.2-0.6,0.5-1.1,0.9-1.4s0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3s0.6,0.5,0.9,0.8  c0.2,0.3,0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9  C240,42.7,239.7,41.5,239.7,39.9z M240.8,39.9c0,1.4,0.2,2.3,0.5,2.8c0.3,0.5,0.7,0.7,1.2,0.7s0.9-0.2,1.2-0.7s0.5-1.4,0.5-2.8  c0-1.4-0.2-2.4-0.5-2.8s-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C241,37.5,240.8,38.5,240.8,39.9z"/>
              <path d="M202.8,52.1l-0.3-1.6V49h1.2v1.4l-0.3,1.6H202.8z M204.7,52.1l-0.3-1.6V49h1.2v1.4l-0.3,1.6H204.7z"/>
              <path d="M206.2,57.6l3.3-8.6h1.2l3.5,8.6h-1.3l-1-2.6h-3.6l-0.9,2.6H206.2z M208.7,54.1h2.9l-0.9-2.4c-0.3-0.7-0.5-1.3-0.6-1.8  c-0.1,0.6-0.3,1.1-0.5,1.6L208.7,54.1z"/>
              <path d="M215,57.6V49h1.1v8.6H215z"/>
              <path d="M217.7,50.2V49h1.1v1.2H217.7z M217.7,57.6v-6.2h1.1v6.2H217.7z"/>
              <path d="M224.4,55.3l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7s-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8c-0.5-0.6-0.8-1.4-0.8-2.4  c0-0.7,0.1-1.3,0.3-1.8c0.2-0.5,0.6-0.9,1-1.1s1-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5s0.7,0.8,0.8,1.5l-1,0.2  c-0.1-0.4-0.3-0.7-0.5-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.5,0-1,0.2-1.3,0.6s-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.3,0.6  c0.4,0,0.8-0.1,1-0.4S224.3,55.9,224.4,55.3z"/>
              <path d="M230.6,55.6l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5c-0.5,0.4-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8c-0.5-0.6-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4c0.5-0.6,1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8c0.5,0.6,0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6  c0,0.7,0.2,1.2,0.6,1.6c0.3,0.4,0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S230.4,56.1,230.6,55.6z M227.1,53.9h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5C227.3,52.9,227.2,53.4,227.1,53.9z"/>
              <path d="M233.1,52.1l-0.3-1.6V49h1.2v1.4l-0.3,1.6H233.1z M235,52.1l-0.3-1.6V49h1.2v1.4l-0.3,1.6H235z"/>
              <rect x="158.2" y="33.6" fill-rule="evenodd" fill="none" width="122.3" height="27"/>
              <path fill="none" stroke="#000000" stroke-width="2.2504" d="M192.9,105.6h52.6c0.7,0,1.4,0,2.1,0.1c0.7,0.1,1.4,0.2,2,0.3  c0.7,0.1,1.3,0.3,2,0.5s1.3,0.4,1.9,0.7c0.6,0.3,1.3,0.6,1.9,0.9c0.6,0.3,1.2,0.7,1.8,1.1c0.6,0.4,1.1,0.8,1.7,1.2  c0.5,0.4,1,0.9,1.5,1.4s0.9,1,1.4,1.5s0.8,1.1,1.2,1.7c0.4,0.6,0.7,1.2,1.1,1.8c0.3,0.6,0.6,1.2,0.9,1.9c0.3,0.6,0.5,1.3,0.7,1.9  c0.2,0.7,0.4,1.3,0.5,2s0.2,1.4,0.3,2s0.1,1.4,0.1,2.1s0,1.4-0.1,2.1s-0.2,1.4-0.3,2s-0.3,1.3-0.5,2c-0.2,0.7-0.4,1.3-0.7,1.9  c-0.3,0.6-0.6,1.3-0.9,1.9c-0.3,0.6-0.7,1.2-1.1,1.8c-0.4,0.6-0.8,1.1-1.2,1.7s-0.9,1-1.4,1.5s-1,0.9-1.5,1.4  c-0.5,0.4-1.1,0.8-1.7,1.2c-0.6,0.4-1.2,0.7-1.8,1.1c-0.6,0.3-1.2,0.6-1.9,0.9c-0.6,0.3-1.3,0.5-1.9,0.7s-1.3,0.4-2,0.5  c-0.7,0.1-1.4,0.2-2,0.3c-0.7,0.1-1.4,0.1-2.1,0.1h-52.6c-0.7,0-1.4,0-2.1-0.1c-0.7-0.1-1.4-0.2-2-0.3c-0.7-0.1-1.3-0.3-2-0.5  s-1.3-0.4-1.9-0.7c-0.6-0.3-1.3-0.6-1.9-0.9c-0.6-0.3-1.2-0.7-1.8-1.1c-0.6-0.4-1.1-0.8-1.7-1.2c-0.5-0.4-1-0.9-1.5-1.4  s-0.9-1-1.4-1.5s-0.8-1.1-1.2-1.7c-0.4-0.6-0.7-1.2-1.1-1.8c-0.3-0.6-0.6-1.2-0.9-1.9c-0.3-0.6-0.5-1.3-0.7-1.9  c-0.2-0.7-0.4-1.3-0.5-2s-0.2-1.4-0.3-2s-0.1-1.4-0.1-2.1s0-1.4,0.1-2.1s0.2-1.4,0.3-2s0.3-1.3,0.5-2c0.2-0.7,0.4-1.3,0.7-1.9  c0.3-0.6,0.6-1.3,0.9-1.9c0.3-0.6,0.7-1.2,1.1-1.8c0.4-0.6,0.8-1.1,1.2-1.7s0.9-1,1.4-1.5s1-0.9,1.5-1.4c0.5-0.4,1.1-0.8,1.7-1.2  c0.6-0.4,1.2-0.7,1.8-1.1c0.6-0.3,1.2-0.6,1.9-0.9c0.6-0.3,1.3-0.5,1.9-0.7s1.3-0.4,2-0.5c0.7-0.1,1.4-0.2,2-0.3  C191.5,105.7,192.2,105.6,192.9,105.6z"/>
              <path d="M194.7,121.4l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2c0.3,0.3,0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6s0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4s-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2c-0.3,0.2-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4l-0.5,2.3  c0.5-0.4,1.1-0.5,1.6-0.5c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1  c-0.8,0-1.4-0.2-1.9-0.7C195,122.7,194.7,122.1,194.7,121.4z"/>
              <path d="M201.3,121.4l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2c0.3,0.3,0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6s0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4s-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2c-0.3,0.2-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4l-0.5,2.3  c0.5-0.4,1.1-0.5,1.6-0.5c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1  c-0.8,0-1.4-0.2-1.9-0.7C201.7,122.7,201.4,122.1,201.3,121.4z"/>
              <path d="M208,121.4l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2c0.3,0.3,0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6s0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4s-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2c-0.3,0.2-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4l-0.5,2.3  c0.5-0.4,1.1-0.5,1.6-0.5c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1  c-0.8,0-1.4-0.2-1.9-0.7C208.4,122.7,208.1,122.1,208,121.4z"/>
              <path d="M220.2,117.1l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  s-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9c0.4-0.2,0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8c0.5,0.5,0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5  s-0.6,0.8-1,1.1s-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.2-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6c0.5-0.7,1.3-1,2.2-1  c0.7,0,1.2,0.2,1.7,0.6C219.8,115.9,220.1,116.5,220.2,117.1z M215.9,120.8c0,0.4,0.1,0.7,0.2,1s0.4,0.6,0.6,0.8  c0.3,0.2,0.6,0.3,0.9,0.3c0.4,0,0.8-0.2,1.1-0.5s0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5  S215.9,120.3,215.9,120.8z"/>
              <path d="M221.4,119.4c0-1,0.1-1.8,0.3-2.5c0.2-0.6,0.5-1.1,0.9-1.4s0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3s0.6,0.5,0.9,0.8  c0.2,0.3,0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9  C221.6,122.2,221.4,121,221.4,119.4z M222.4,119.4c0,1.4,0.2,2.3,0.5,2.8c0.3,0.5,0.7,0.7,1.2,0.7s0.9-0.2,1.2-0.7s0.5-1.4,0.5-2.8  c0-1.4-0.2-2.4-0.5-2.8s-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C222.6,117,222.4,118,222.4,119.4z"/>
              <path d="M229.3,123.6h-1V115h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V123.6z M229.3,120.5  c0,0.7,0.1,1.3,0.3,1.6c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C229.5,119.1,229.3,119.7,229.3,120.5z"/>
              <path d="M239,123.6v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1c-0.2-0.5-0.3-1.1-0.3-1.7  c0-0.6,0.1-1.2,0.3-1.7c0.2-0.5,0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6V115h1v8.6H239z   M235.7,120.5c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S235.7,119.7,235.7,120.5z"/>
              <path d="M241.9,123.6v-5.4H241v-0.8h0.9v-0.7c0-0.4,0-0.7,0.1-0.9c0.1-0.3,0.3-0.5,0.5-0.7s0.6-0.3,1.1-0.3c0.3,0,0.6,0,1,0.1  l-0.2,0.9c-0.2,0-0.4-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.7,0.2s-0.2,0.4-0.2,0.8v0.6h1.2v0.8H243v5.4H241.9z"/>
              <path d="M184.6,137.1l3.3-8.6h1.2l3.5,8.6h-1.3l-1-2.6h-3.6l-0.9,2.6H184.6z M187.1,133.6h2.9l-0.9-2.4c-0.3-0.7-0.5-1.3-0.6-1.8  c-0.1,0.6-0.3,1.1-0.5,1.6L187.1,133.6z"/>
              <path d="M193.2,134.4l1.1-0.1c0.1,0.4,0.2,0.8,0.4,1.1s0.5,0.5,0.9,0.7s0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.1-0.2  c0.3-0.1,0.6-0.3,0.7-0.5s0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.4-0.8-0.5c-0.2-0.1-0.7-0.2-1.5-0.4  c-0.8-0.2-1.3-0.4-1.7-0.5c-0.4-0.2-0.7-0.5-0.9-0.8s-0.3-0.7-0.3-1.1c0-0.4,0.1-0.8,0.4-1.2s0.6-0.7,1.1-0.9c0.5-0.2,1-0.3,1.6-0.3  c0.6,0,1.2,0.1,1.7,0.3c0.5,0.2,0.9,0.5,1.1,0.9s0.4,0.8,0.4,1.4l-1.1,0.1c-0.1-0.5-0.3-1-0.6-1.2c-0.3-0.3-0.8-0.4-1.5-0.4  c-0.7,0-1.2,0.1-1.5,0.4c-0.3,0.3-0.5,0.6-0.5,0.9c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.8,0.4,1.7,0.6c0.9,0.2,1.6,0.4,1.9,0.5  c0.5,0.2,0.9,0.5,1.1,0.9c0.2,0.4,0.4,0.8,0.4,1.2c0,0.5-0.1,0.9-0.4,1.3c-0.3,0.4-0.6,0.7-1.1,0.9c-0.5,0.2-1,0.3-1.7,0.3  c-0.8,0-1.4-0.1-2-0.3c-0.5-0.2-0.9-0.6-1.2-1C193.3,135.5,193.2,134.9,193.2,134.4z"/>
              <path d="M201.2,134.4l1.1-0.1c0.1,0.4,0.2,0.8,0.4,1.1s0.5,0.5,0.9,0.7s0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.1-0.2  c0.3-0.1,0.6-0.3,0.7-0.5s0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.4-0.8-0.5c-0.2-0.1-0.7-0.2-1.5-0.4  c-0.8-0.2-1.3-0.4-1.7-0.5c-0.4-0.2-0.7-0.5-0.9-0.8s-0.3-0.7-0.3-1.1c0-0.4,0.1-0.8,0.4-1.2s0.6-0.7,1.1-0.9c0.5-0.2,1-0.3,1.6-0.3  c0.6,0,1.2,0.1,1.7,0.3c0.5,0.2,0.9,0.5,1.1,0.9s0.4,0.8,0.4,1.4l-1.1,0.1c-0.1-0.5-0.3-1-0.6-1.2c-0.3-0.3-0.8-0.4-1.5-0.4  c-0.7,0-1.2,0.1-1.5,0.4c-0.3,0.3-0.5,0.6-0.5,0.9c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.8,0.4,1.7,0.6c0.9,0.2,1.6,0.4,1.9,0.5  c0.5,0.2,0.9,0.5,1.1,0.9c0.2,0.4,0.4,0.8,0.4,1.2c0,0.5-0.1,0.9-0.4,1.3c-0.3,0.4-0.6,0.7-1.1,0.9c-0.5,0.2-1,0.3-1.7,0.3  c-0.8,0-1.4-0.1-2-0.3c-0.5-0.2-0.9-0.6-1.2-1C201.3,135.5,201.2,134.9,201.2,134.4z"/>
              <path d="M209.6,137.1v-8.6h6.2v1h-5.1v2.6h4.8v1h-4.8v2.9h5.3v1H209.6z"/>
              <path d="M217.6,137.1v-8.6h3.8c0.8,0,1.3,0.1,1.7,0.2s0.7,0.4,1,0.8s0.4,0.8,0.4,1.3c0,0.6-0.2,1.1-0.6,1.5c-0.4,0.4-1,0.7-1.8,0.8  c0.3,0.1,0.5,0.3,0.7,0.4c0.3,0.3,0.6,0.7,0.9,1.1l1.5,2.3h-1.4l-1.1-1.8c-0.3-0.5-0.6-0.9-0.8-1.2s-0.4-0.5-0.6-0.6  s-0.3-0.2-0.5-0.2c-0.1,0-0.3,0-0.6,0h-1.3v3.8H217.6z M218.7,132.3h2.4c0.5,0,0.9-0.1,1.2-0.2s0.5-0.3,0.7-0.5s0.2-0.5,0.2-0.8  c0-0.4-0.1-0.7-0.4-1s-0.8-0.4-1.4-0.4h-2.7V132.3z"/>
              <path d="M228.2,137.1v-7.6h-2.8v-1h6.8v1h-2.8v7.6H228.2z"/>
              <path d="M233.5,137.1v-8.6h1.1v8.6H233.5z"/>
              <path d="M236.3,132.9c0-1.4,0.4-2.5,1.1-3.3s1.8-1.2,3-1.2c0.8,0,1.5,0.2,2.1,0.6c0.6,0.4,1.1,0.9,1.5,1.6c0.3,0.7,0.5,1.4,0.5,2.3  c0,0.9-0.2,1.7-0.5,2.3c-0.4,0.7-0.8,1.2-1.5,1.6c-0.6,0.4-1.3,0.5-2.1,0.5c-0.8,0-1.5-0.2-2.2-0.6c-0.6-0.4-1.1-0.9-1.4-1.6  C236.5,134.4,236.3,133.7,236.3,132.9z M237.5,133c0,1,0.3,1.9,0.8,2.4c0.6,0.6,1.3,0.9,2.1,0.9c0.9,0,1.6-0.3,2.1-0.9  c0.6-0.6,0.8-1.5,0.8-2.6c0-0.7-0.1-1.3-0.4-1.8c-0.2-0.5-0.6-0.9-1-1.2s-1-0.4-1.5-0.4c-0.8,0-1.5,0.3-2.1,0.8  C237.8,130.7,237.5,131.7,237.5,133z"/>
              <path d="M246,137.1v-8.6h1.2l4.5,6.7v-6.7h1.1v8.6h-1.2l-4.5-6.8v6.8H246z"/>
              <rect x="184.6" y="113.1" fill-rule="evenodd" fill="none" width="69" height="27"/>
              <rect x="349.2" y="65.9" fill="none" stroke="#000000" stroke-width="2.2504" width="144.9" height="42"/>
              <path d="M395.5,76.4v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3c-0.5,1-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H395.5z"/>
              <path d="M402.1,79.6c0-1,0.1-1.8,0.3-2.5s0.5-1.1,0.9-1.4c0.4-0.3,0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3c0.3,0.2,0.6,0.5,0.9,0.8  s0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4c-0.4,0.3-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9  C402.4,82.4,402.1,81.3,402.1,79.6z M403.2,79.6c0,1.4,0.2,2.3,0.5,2.8s0.7,0.7,1.2,0.7s0.9-0.2,1.2-0.7c0.3-0.5,0.5-1.4,0.5-2.8  c0-1.4-0.2-2.4-0.5-2.8c-0.3-0.5-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C403.4,77.3,403.2,78.2,403.2,79.6z"/>
              <path d="M409,81.9l1-0.1c0.1,0.5,0.2,0.8,0.5,1s0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.6s0.3-0.6,0.4-1  s0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8s-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8c-0.5-0.5-0.7-1.2-0.7-2  c0-0.9,0.3-1.6,0.8-2.1c0.5-0.5,1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5c0.5,0.3,0.8,0.7,1.1,1.3s0.4,1.4,0.4,2.4  c0,1.1-0.1,2-0.4,2.6s-0.6,1.1-1.1,1.5c-0.5,0.3-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.6-0.6C409.3,83.1,409,82.6,409,81.9z M413.3,78.1  c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.4-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6s-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3s0.7,0.5,1.2,0.5  c0.5,0,0.9-0.2,1.2-0.5C413.1,79.2,413.3,78.7,413.3,78.1z"/>
              <path d="M421,82.9v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1s0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8  c0.3-0.4,0.5-0.9,0.5-1.3c0-0.4-0.1-0.8-0.4-1.1c-0.3-0.3-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5s-0.5,0.7-0.5,1.3l-1.1-0.1  c0.1-0.8,0.4-1.4,0.8-1.8c0.5-0.4,1.1-0.6,2-0.6c0.8,0,1.5,0.2,2,0.7s0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1  s-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1s-0.3,0.4-0.4,0.6H421z"/>
              <path d="M426.5,83.9v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4c-0.4-0.3-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7  c0-0.6,0.1-1.2,0.3-1.7s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1v8.6H426.5z   M423.1,80.8c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9  c-0.3-0.4-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6S423.1,79.9,423.1,80.8z"/>
              <path d="M434.3,77.4l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  c-0.2,0.5-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9s0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8s0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5  s-0.6,0.8-1,1.1c-0.4,0.2-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.2-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6  c0.5-0.7,1.3-1,2.2-1c0.7,0,1.2,0.2,1.7,0.6S434.2,76.7,434.3,77.4z M430,81.1c0,0.4,0.1,0.7,0.2,1s0.4,0.6,0.6,0.8s0.6,0.3,0.9,0.3  c0.4,0,0.8-0.2,1.1-0.5c0.3-0.4,0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5  S430,80.5,430,81.1z"/>
              <path d="M441,82.9v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1s0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8  c0.3-0.4,0.5-0.9,0.5-1.3c0-0.4-0.1-0.8-0.4-1.1c-0.3-0.3-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5s-0.5,0.7-0.5,1.3l-1.1-0.1  c0.1-0.8,0.4-1.4,0.8-1.8c0.5-0.4,1.1-0.6,2-0.6c0.8,0,1.5,0.2,2,0.7s0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1  s-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1s-0.3,0.4-0.4,0.6H441z"/>
              <path d="M442.2,79.6c0-1,0.1-1.8,0.3-2.5s0.5-1.1,0.9-1.4c0.4-0.3,0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3c0.3,0.2,0.6,0.5,0.9,0.8  s0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4c-0.4,0.3-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9  C442.5,82.4,442.2,81.3,442.2,79.6z M443.3,79.6c0,1.4,0.2,2.3,0.5,2.8s0.7,0.7,1.2,0.7s0.9-0.2,1.2-0.7c0.3-0.5,0.5-1.4,0.5-2.8  c0-1.4-0.2-2.4-0.5-2.8c-0.3-0.5-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C443.4,77.3,443.3,78.2,443.3,79.6z"/>
              <path d="M401.2,91.8l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H401.2z M403.2,91.8l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H403.2z"/>
              <path d="M405.4,97.4v-8.6h1.1v4.9l2.5-2.5h1.4l-2.4,2.3l2.6,3.9h-1.3l-2.1-3.2l-0.7,0.7v2.5H405.4z"/>
              <path d="M411.4,97.4v-6.2h1V92c0.5-0.7,1.1-1,2-1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.5,0.3,0.8c0,0.2,0.1,0.5,0.1,1  v3.8h-1.1v-3.8c0-0.4,0-0.8-0.1-1c-0.1-0.2-0.2-0.4-0.4-0.5s-0.5-0.2-0.7-0.2c-0.4,0-0.8,0.1-1.2,0.4s-0.5,0.8-0.5,1.6v3.4H411.4z"/>
              <path d="M417.7,94.3c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8s0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  s-0.6,0.8-1,1.1c-0.5,0.3-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8C418,96.1,417.7,95.3,417.7,94.3z M418.8,94.3c0,0.8,0.2,1.4,0.5,1.8  c0.3,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7c-0.4-0.4-0.8-0.6-1.3-0.6  c-0.5,0-1,0.2-1.3,0.6C419,92.9,418.8,93.5,418.8,94.3z"/>
              <path d="M425.9,97.4l-1.9-6.2h1.1l1,3.6l0.4,1.3c0-0.1,0.1-0.5,0.3-1.3l1-3.6h1.1l0.9,3.6l0.3,1.2l0.4-1.2l1.1-3.6h1l-1.9,6.2h-1.1  l-1-3.7l-0.2-1.1l-1.3,4.8H425.9z"/>
              <path d="M433,95.5l1-0.2c0.1,0.4,0.2,0.7,0.5,1c0.3,0.2,0.6,0.3,1.1,0.3c0.5,0,0.8-0.1,1.1-0.3s0.4-0.4,0.4-0.7  c0-0.2-0.1-0.4-0.3-0.6c-0.1-0.1-0.5-0.2-1.1-0.4c-0.8-0.2-1.3-0.4-1.6-0.5c-0.3-0.1-0.5-0.3-0.7-0.6s-0.2-0.5-0.2-0.8  c0-0.3,0.1-0.5,0.2-0.8s0.3-0.4,0.5-0.6c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.5,0,0.9,0.1,1.3,0.2s0.6,0.3,0.8,0.6  s0.3,0.6,0.4,1l-1,0.1c0-0.3-0.2-0.6-0.4-0.8s-0.5-0.3-1-0.3c-0.5,0-0.8,0.1-1,0.2c-0.2,0.2-0.3,0.3-0.3,0.6c0,0.1,0,0.3,0.1,0.4  c0.1,0.1,0.2,0.2,0.4,0.3c0.1,0,0.4,0.1,0.9,0.3c0.7,0.2,1.3,0.4,1.6,0.5c0.3,0.1,0.5,0.3,0.7,0.6s0.3,0.5,0.3,0.9  c0,0.4-0.1,0.7-0.3,1s-0.5,0.6-0.9,0.7c-0.4,0.2-0.8,0.3-1.3,0.3c-0.8,0-1.4-0.2-1.8-0.5S433.1,96.2,433,95.5z"/>
              <path d="M439.5,91.8l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H439.5z M441.4,91.8l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H441.4z"/>
              <rect x="356.7" y="73.4" fill-rule="evenodd" fill="none" width="129.8" height="27"/>
              <rect x="355.5" y="145.4" fill="none" stroke="#000000" stroke-width="2.2504" width="132.3" height="42"/>
              <path d="M395.6,161.4l1-0.1c0.1,0.5,0.2,0.8,0.5,1s0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.6s0.3-0.6,0.4-1  s0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8s-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8c-0.5-0.5-0.7-1.2-0.7-2  c0-0.9,0.3-1.6,0.8-2.1c0.5-0.5,1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5c0.5,0.3,0.8,0.7,1.1,1.3s0.4,1.4,0.4,2.4  c0,1.1-0.1,2-0.4,2.6s-0.6,1.1-1.1,1.5c-0.5,0.3-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.6-0.6C396,162.6,395.7,162.1,395.6,161.4z   M399.9,157.6c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.4-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6s-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3  s0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5C399.8,158.7,399.9,158.2,399.9,157.6z"/>
              <path d="M406.5,162.6c-0.4,0.3-0.8,0.6-1.1,0.7s-0.7,0.2-1.2,0.2c-0.7,0-1.2-0.2-1.6-0.5s-0.6-0.8-0.6-1.3c0-0.3,0.1-0.6,0.2-0.8  s0.3-0.5,0.5-0.6s0.5-0.3,0.8-0.3c0.2-0.1,0.5-0.1,0.9-0.2c0.9-0.1,1.5-0.2,1.9-0.4c0-0.1,0-0.2,0-0.3c0-0.4-0.1-0.7-0.3-0.9  c-0.3-0.2-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.1-1.1,0.3s-0.4,0.5-0.5,0.9l-1-0.1c0.1-0.4,0.2-0.8,0.5-1.1s0.5-0.5,0.9-0.6  c0.4-0.1,0.9-0.2,1.4-0.2c0.5,0,1,0.1,1.3,0.2c0.3,0.1,0.6,0.3,0.7,0.5s0.3,0.4,0.3,0.7c0,0.2,0.1,0.5,0.1,1v1.4c0,1,0,1.6,0.1,1.9  s0.1,0.5,0.3,0.7h-1.1C406.6,163.2,406.5,162.9,406.5,162.6z M406.4,160.3c-0.4,0.2-1,0.3-1.7,0.4c-0.4,0.1-0.7,0.1-0.9,0.2  s-0.3,0.2-0.4,0.3c-0.1,0.2-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.7c0.2,0.2,0.5,0.3,0.9,0.3c0.4,0,0.8-0.1,1.1-0.3s0.5-0.4,0.7-0.7  c0.1-0.2,0.2-0.6,0.2-1.1V160.3z"/>
              <path d="M408.9,155.9v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3c-0.5,1-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H408.9z"/>
              <path d="M415.6,155.9v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3c-0.5,1-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H415.6z"/>
              <path d="M426.1,163.4h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1s0.8-0.8,0.9-1.1h0.7V163.4z"/>
              <path d="M428.9,155.9v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3c-0.5,1-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H428.9z"/>
              <path d="M439.5,163.4h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1s0.8-0.8,0.9-1.1h0.7V163.4z"/>
              <path d="M442.2,161.1l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2s0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6c0.4-0.4,0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1H444l-0.5,2.3  c0.5-0.4,1.1-0.5,1.6-0.5c0.8,0,1.4,0.3,1.9,0.8s0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1c-0.8,0-1.4-0.2-1.9-0.7  C442.5,162.4,442.3,161.8,442.2,161.1z"/>
              <path d="M407.6,171.3l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H407.6z M409.5,171.3l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H409.5z"/>
              <path d="M411.9,176.9v-8.6h3.2c0.7,0,1.2,0.1,1.6,0.3s0.7,0.4,0.9,0.8s0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1s-0.5,0.6-0.9,0.8  c0.5,0.2,0.9,0.4,1.2,0.8s0.4,0.8,0.4,1.3c0,0.4-0.1,0.8-0.3,1.1s-0.4,0.6-0.6,0.8s-0.6,0.3-0.9,0.4s-0.8,0.1-1.4,0.1H411.9z   M413,171.9h1.9c0.5,0,0.9,0,1.1-0.1c0.3-0.1,0.5-0.2,0.7-0.4s0.2-0.4,0.2-0.8c0-0.3-0.1-0.5-0.2-0.8s-0.3-0.4-0.6-0.4  c-0.3-0.1-0.7-0.1-1.3-0.1H413V171.9z M413,175.9h2.1c0.4,0,0.6,0,0.8,0c0.3,0,0.5-0.1,0.7-0.2s0.3-0.3,0.4-0.5s0.2-0.5,0.2-0.7  c0-0.3-0.1-0.6-0.2-0.8s-0.4-0.4-0.7-0.5s-0.7-0.1-1.3-0.1h-2V175.9z"/>
              <path d="M419.4,173.8c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8s0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  s-0.6,0.8-1,1.1c-0.5,0.3-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8C419.6,175.6,419.4,174.8,419.4,173.8z M420.5,173.8  c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7  c-0.4-0.4-0.8-0.6-1.3-0.6c-0.5,0-1,0.2-1.3,0.6C420.6,172.4,420.5,173,420.5,173.8z"/>
              <path d="M427.4,176.9h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2c0.3,0.2,0.6,0.4,0.8,0.7s0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V176.9z M427.4,173.7c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8c-0.3-0.4-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S427.4,173,427.4,173.7z"/>
              <path d="M433.2,171.3l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H433.2z M435.1,171.3l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H435.1z"/>
              <rect x="363" y="152.9" fill-rule="evenodd" fill="none" width="117" height="27"/>
            </svg>
          </artwork>
        </section>
        <section anchor="cbor-diagnostic-notation-4">
          <name>CBOR Diagnostic Notation</name>
          <artwork><![CDATA[
200(   ; envelope
   [
      200(   ; envelope
         24("Alice")   ; leaf
      ),
      200(   ; envelope
         221(   ; assertion
            [
               200(   ; envelope
                  24("knows")   ; leaf
               ),
               200(   ; envelope
                  24("Bob")   ; leaf
               )
            ]
         )
      )
   ]
)
]]></artwork>
        </section>
        <section anchor="cbor-hex-4">
          <name>CBOR Hex</name>
          <artwork><![CDATA[
d8c882d8c8d81865416c696365d8c8d8dd82d8c8d818656b6e6f7773d8c8d8\
1863426f62
]]></artwork>
        </section>
      </section>
      <section anchor="wrapped-envelope-case">
        <name>Wrapped Envelope Case</name>
        <section anchor="envelope-cli-command-line-5">
          <name>Envelope CLI Command Line</name>
          <artwork><![CDATA[
envelope subject "Alice" | envelope subject --wrapped
]]></artwork>
        </section>
        <section anchor="envelope-notation-5">
          <name>Envelope Notation</name>
          <artwork><![CDATA[
{
    "Alice"
}
]]></artwork>
        </section>
        <section anchor="tree-5">
          <name>Tree</name>
          <artwork><![CDATA[
aaed47e8 WRAPPED
    27840350 subj "Alice"
]]></artwork>
        </section>
        <section anchor="mermaid-5">
          <name>Mermaid</name>
          <artwork type="svg">  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny" width="352.9px" height="94.2px" viewBox="0 0 352.9 94.2" xml:space="preserve">
              <path fill="none" stroke="#000000" stroke-width="1.4998" d="M120.4,47.5l6.6-0.1c6.6-0.1,19.9-0.2,31.5-0.2s21.5-0.1,26.5-0.1h5"/>
              <polygon fill="black" points="181.9,42.6 190.9,47.1 181.9,51.6 "/>
              <rect x="180.4" y="42.6" fill-rule="evenodd" fill="none" width="12" height="9"/>
              <path d="M149.6,49l1-0.2c0.1,0.4,0.2,0.7,0.5,1s0.6,0.3,1.1,0.3c0.5,0,0.8-0.1,1.1-0.3s0.4-0.4,0.4-0.7c0-0.2-0.1-0.4-0.3-0.6  c-0.1-0.1-0.5-0.2-1.1-0.4c-0.8-0.2-1.3-0.4-1.6-0.5s-0.5-0.3-0.7-0.6c-0.2-0.3-0.2-0.5-0.2-0.8c0-0.3,0.1-0.5,0.2-0.8  c0.1-0.2,0.3-0.4,0.5-0.6c0.2-0.1,0.4-0.2,0.7-0.3s0.6-0.1,0.9-0.1c0.5,0,0.9,0.1,1.3,0.2s0.6,0.3,0.8,0.6s0.3,0.6,0.4,1l-1,0.1  c0-0.3-0.2-0.6-0.4-0.8s-0.5-0.3-1-0.3c-0.5,0-0.8,0.1-1,0.2s-0.3,0.3-0.3,0.6c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.4,0.3  c0.1,0,0.4,0.1,0.9,0.3c0.7,0.2,1.3,0.4,1.6,0.5s0.5,0.3,0.7,0.6s0.3,0.5,0.3,0.9c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.5,0.6-0.9,0.7  s-0.8,0.3-1.3,0.3c-0.8,0-1.4-0.2-1.8-0.5C150,50.2,149.7,49.7,149.6,49z"/>
              <path d="M160.1,50.9V50c-0.5,0.7-1.1,1.1-2,1.1c-0.4,0-0.7-0.1-1-0.2s-0.6-0.3-0.7-0.5s-0.3-0.5-0.3-0.8c0-0.2-0.1-0.5-0.1-1v-3.9  h1.1v3.5c0,0.6,0,0.9,0.1,1.1c0.1,0.3,0.2,0.5,0.4,0.7s0.5,0.2,0.8,0.2c0.3,0,0.6-0.1,0.9-0.2s0.5-0.4,0.6-0.7s0.2-0.7,0.2-1.2v-3.3  h1.1v6.2H160.1z"/>
              <path d="M163.7,50.9h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V50.9z M163.6,47.7c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  S163.6,47,163.6,47.7z"/>
              <path d="M168,53.3l0.2-0.9c0.2,0.1,0.4,0.1,0.5,0.1c0.2,0,0.4-0.1,0.5-0.2s0.2-0.5,0.2-1.1v-6.5h1.1v6.6c0,0.8-0.1,1.3-0.3,1.6  c-0.3,0.4-0.7,0.6-1.3,0.6C168.6,53.4,168.3,53.4,168,53.3z M169.3,43.5v-1.2h1.1v1.2H169.3z"/>
              <rect x="149.2" y="40.4" fill-rule="evenodd" fill="none" width="21.7" height="13.5"/>
              <polygon fill="none" stroke="#000000" stroke-width="2.2497" points="26.8,68.1 130.5,68.1 109.5,26.1 47.8,26.1 "/>
              <path d="M56.8,43.4c-0.4,0.3-0.8,0.6-1.1,0.7s-0.7,0.2-1.2,0.2c-0.7,0-1.2-0.2-1.6-0.5c-0.4-0.3-0.6-0.8-0.6-1.3  c0-0.3,0.1-0.6,0.2-0.8c0.1-0.3,0.3-0.5,0.5-0.6s0.5-0.3,0.8-0.3c0.2-0.1,0.5-0.1,0.9-0.2c0.9-0.1,1.5-0.2,1.9-0.4  c0-0.1,0-0.2,0-0.3c0-0.4-0.1-0.7-0.3-0.9c-0.3-0.2-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.1-1.1,0.3s-0.4,0.5-0.5,0.9l-1-0.1  c0.1-0.4,0.2-0.8,0.5-1.1c0.2-0.3,0.5-0.5,0.9-0.6s0.9-0.2,1.4-0.2c0.5,0,1,0.1,1.3,0.2c0.3,0.1,0.6,0.3,0.7,0.5s0.3,0.4,0.3,0.7  c0,0.2,0.1,0.5,0.1,1v1.4c0,1,0,1.6,0.1,1.9s0.1,0.5,0.3,0.7H57C56.9,43.9,56.8,43.6,56.8,43.4z M56.7,41c-0.4,0.2-1,0.3-1.7,0.4  c-0.4,0.1-0.7,0.1-0.9,0.2s-0.3,0.2-0.4,0.3s-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.7s0.5,0.3,0.9,0.3c0.4,0,0.8-0.1,1.1-0.3  s0.5-0.4,0.7-0.7c0.1-0.2,0.2-0.6,0.2-1.1V41z"/>
              <path d="M63.5,43.4c-0.4,0.3-0.8,0.6-1.1,0.7s-0.7,0.2-1.2,0.2c-0.7,0-1.2-0.2-1.6-0.5c-0.4-0.3-0.6-0.8-0.6-1.3  c0-0.3,0.1-0.6,0.2-0.8c0.1-0.3,0.3-0.5,0.5-0.6s0.5-0.3,0.8-0.3c0.2-0.1,0.5-0.1,0.9-0.2c0.9-0.1,1.5-0.2,1.9-0.4  c0-0.1,0-0.2,0-0.3c0-0.4-0.1-0.7-0.3-0.9c-0.3-0.2-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.1-1.1,0.3s-0.4,0.5-0.5,0.9l-1-0.1  c0.1-0.4,0.2-0.8,0.5-1.1c0.2-0.3,0.5-0.5,0.9-0.6s0.9-0.2,1.4-0.2c0.5,0,1,0.1,1.3,0.2c0.3,0.1,0.6,0.3,0.7,0.5s0.3,0.4,0.3,0.7  c0,0.2,0.1,0.5,0.1,1v1.4c0,1,0,1.6,0.1,1.9s0.1,0.5,0.3,0.7h-1.1C63.6,43.9,63.5,43.6,63.5,43.4z M63.4,41c-0.4,0.2-1,0.3-1.7,0.4  c-0.4,0.1-0.7,0.1-0.9,0.2s-0.3,0.2-0.4,0.3s-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.7s0.5,0.3,0.9,0.3c0.4,0,0.8-0.1,1.1-0.3  s0.5-0.4,0.7-0.7c0.1-0.2,0.2-0.6,0.2-1.1V41z"/>
              <path d="M70.4,42.1l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5c-0.5,0.4-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8c-0.5-0.6-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4c0.5-0.6,1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8c0.5,0.6,0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6  c0,0.7,0.2,1.2,0.6,1.6s0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S70.2,42.6,70.4,42.1z M66.9,40.4h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5S66.9,39.9,66.9,40.4z"/>
              <path d="M76.8,44.1v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  c0.2-0.5,0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1v8.6H76.8z M73.5,41c0,0.8,0.2,1.4,0.5,1.8  s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  S73.5,40.2,73.5,41z"/>
              <path d="M82.5,44.1v-2.1h-3.7v-1l3.9-5.6h0.9v5.6h1.2v1h-1.2v2.1H82.5z M82.5,41.1v-3.9l-2.7,3.9H82.5z"/>
              <path d="M85.9,36.7v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3c-0.5,1-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8c0.5-0.9,1-1.6,1.5-2.2H85.9z"/>
              <path d="M97,42.1l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5c-0.5,0.4-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8c-0.5-0.6-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4c0.5-0.6,1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8c0.5,0.6,0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6  c0,0.7,0.2,1.2,0.6,1.6s0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S96.9,42.6,97,42.1z M93.6,40.4h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5S93.6,39.9,93.6,40.4z"/>
              <path d="M100.8,39.5c-0.4-0.2-0.8-0.4-1-0.7c-0.2-0.3-0.3-0.7-0.3-1.1c0-0.6,0.2-1.2,0.7-1.6s1-0.6,1.8-0.6c0.8,0,1.4,0.2,1.8,0.7  c0.5,0.4,0.7,1,0.7,1.6c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-1,0.7c0.5,0.2,0.9,0.4,1.2,0.8s0.4,0.8,0.4,1.4c0,0.7-0.3,1.4-0.8,1.9  c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.5-0.3-2.1-0.8c-0.5-0.5-0.8-1.1-0.8-1.9c0-0.6,0.1-1,0.4-1.4C99.9,39.9,100.3,39.6,100.8,39.5z   M100.2,41.6c0,0.3,0.1,0.6,0.2,0.9s0.4,0.5,0.6,0.7s0.6,0.2,0.9,0.2c0.5,0,0.9-0.2,1.2-0.5s0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.3  c-0.3-0.3-0.8-0.5-1.3-0.5c-0.5,0-0.9,0.2-1.2,0.5S100.2,41.2,100.2,41.6z M100.6,37.7c0,0.4,0.1,0.7,0.4,1s0.6,0.4,1,0.4  c0.4,0,0.7-0.1,1-0.4s0.4-0.6,0.4-0.9c0-0.4-0.1-0.7-0.4-1s-0.6-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4S100.6,37.3,100.6,37.7z"/>
              <path d="M50.7,57.6L48.5,49h1.2l1.3,5.6c0.1,0.6,0.3,1.2,0.4,1.8c0.2-0.9,0.3-1.4,0.4-1.6l1.6-5.8h1.4l1.2,4.3  c0.3,1.1,0.5,2.1,0.7,3c0.1-0.5,0.3-1.2,0.4-1.9l1.3-5.5h1.1l-2.4,8.6h-1.1l-1.8-6.5c-0.2-0.5-0.2-0.9-0.3-1c-0.1,0.4-0.2,0.7-0.3,1  l-1.8,6.5H50.7z"/>
              <path d="M60.6,57.6V49h3.8c0.8,0,1.3,0.1,1.7,0.2s0.7,0.4,1,0.8s0.4,0.8,0.4,1.3c0,0.6-0.2,1.1-0.6,1.5c-0.4,0.4-1,0.7-1.8,0.8  c0.3,0.1,0.5,0.3,0.7,0.4c0.3,0.3,0.6,0.7,0.9,1.1l1.5,2.3h-1.4l-1.1-1.8c-0.3-0.5-0.6-0.9-0.8-1.2c-0.2-0.3-0.4-0.5-0.6-0.6  s-0.3-0.2-0.5-0.2c-0.1,0-0.3,0-0.6,0h-1.3v3.8H60.6z M61.7,52.8h2.4c0.5,0,0.9-0.1,1.2-0.2s0.5-0.3,0.7-0.5s0.2-0.5,0.2-0.8  c0-0.4-0.1-0.7-0.4-1S65.1,50,64.4,50h-2.7V52.8z"/>
              <path d="M68.3,57.6l3.3-8.6h1.2l3.5,8.6H75L74,55h-3.6l-0.9,2.6H68.3z M70.8,54.1h2.9l-0.9-2.4c-0.3-0.7-0.5-1.3-0.6-1.8  c-0.1,0.6-0.3,1.1-0.5,1.6L70.8,54.1z"/>
              <path d="M77.2,57.6V49h3.2c0.6,0,1,0,1.3,0.1c0.4,0.1,0.8,0.2,1.1,0.4s0.5,0.5,0.7,0.8c0.2,0.4,0.3,0.7,0.3,1.2  c0,0.7-0.2,1.3-0.7,1.9c-0.5,0.5-1.3,0.8-2.5,0.8h-2.2v3.5H77.2z M78.4,53.1h2.2c0.7,0,1.3-0.1,1.6-0.4s0.5-0.7,0.5-1.2  c0-0.4-0.1-0.7-0.3-0.9s-0.4-0.4-0.7-0.5c-0.2-0.1-0.5-0.1-1.1-0.1h-2.2V53.1z"/>
              <path d="M85.2,57.6V49h3.2c0.6,0,1,0,1.3,0.1c0.4,0.1,0.8,0.2,1.1,0.4s0.5,0.5,0.7,0.8c0.2,0.4,0.3,0.7,0.3,1.2  c0,0.7-0.2,1.3-0.7,1.9c-0.5,0.5-1.3,0.8-2.5,0.8h-2.2v3.5H85.2z M86.4,53.1h2.2c0.7,0,1.3-0.1,1.6-0.4s0.5-0.7,0.5-1.2  c0-0.4-0.1-0.7-0.3-0.9s-0.4-0.4-0.7-0.5c-0.2-0.1-0.5-0.1-1.1-0.1h-2.2V53.1z"/>
              <path d="M93.3,57.6V49h6.2v1h-5.1v2.6h4.8v1h-4.8v2.9h5.3v1H93.3z"/>
              <path d="M101.2,57.6V49h3c0.7,0,1.2,0,1.5,0.1c0.5,0.1,0.9,0.3,1.3,0.6c0.5,0.4,0.8,0.9,1,1.5s0.3,1.3,0.3,2c0,0.7-0.1,1.2-0.2,1.7  s-0.3,0.9-0.6,1.3c-0.2,0.3-0.5,0.6-0.8,0.8s-0.6,0.3-1,0.4s-0.9,0.1-1.4,0.1H101.2z M102.4,56.6h1.8c0.6,0,1-0.1,1.3-0.2  c0.3-0.1,0.6-0.3,0.8-0.4c0.3-0.3,0.5-0.6,0.6-1.1s0.2-1,0.2-1.7c0-0.9-0.1-1.6-0.4-2.1s-0.7-0.8-1.1-1c-0.3-0.1-0.8-0.2-1.5-0.2  h-1.8V56.6z"/>
              <rect x="48.3" y="33.6" fill-rule="evenodd" fill="none" width="60.7" height="27"/>
              <rect x="190" y="26.1" fill="none" stroke="#000000" stroke-width="2.2497" width="136.8" height="42"/>
              <path d="M237.8,43.1v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1s0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8s0.5-0.9,0.5-1.3  c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5s-0.5,0.7-0.5,1.3l-1.1-0.1c0.1-0.8,0.4-1.4,0.8-1.8s1.1-0.6,2-0.6  c0.8,0,1.5,0.2,2,0.7c0.5,0.5,0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1c-0.3,0.4-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1  s-0.3,0.4-0.4,0.6H237.8z"/>
              <path d="M239,36.7v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3c-0.5,1-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8c0.5-0.9,1-1.6,1.5-2.2H239z"/>
              <path d="M247.2,39.5c-0.4-0.2-0.8-0.4-1-0.7c-0.2-0.3-0.3-0.7-0.3-1.1c0-0.6,0.2-1.2,0.7-1.6s1-0.6,1.8-0.6c0.8,0,1.4,0.2,1.8,0.7  c0.5,0.4,0.7,1,0.7,1.6c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-1,0.7c0.5,0.2,0.9,0.4,1.2,0.8s0.4,0.8,0.4,1.4c0,0.7-0.3,1.4-0.8,1.9  c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.5-0.3-2.1-0.8c-0.5-0.5-0.8-1.1-0.8-1.9c0-0.6,0.1-1,0.4-1.4C246.3,39.9,246.7,39.6,247.2,39.5z   M246.6,41.6c0,0.3,0.1,0.6,0.2,0.9s0.4,0.5,0.6,0.7s0.6,0.2,0.9,0.2c0.5,0,0.9-0.2,1.2-0.5s0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.3  c-0.3-0.3-0.8-0.5-1.3-0.5c-0.5,0-0.9,0.2-1.2,0.5S246.6,41.2,246.6,41.6z M247,37.7c0,0.4,0.1,0.7,0.4,1s0.6,0.4,1,0.4  c0.4,0,0.7-0.1,1-0.4s0.4-0.6,0.4-0.9c0-0.4-0.1-0.7-0.4-1s-0.6-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4S247,37.3,247,37.7z"/>
              <path d="M255.6,44.1v-2.1h-3.7v-1l3.9-5.6h0.9v5.6h1.2v1h-1.2v2.1H255.6z M255.6,41.1v-3.9l-2.7,3.9H255.6z"/>
              <path d="M258.9,39.9c0-1,0.1-1.8,0.3-2.5c0.2-0.6,0.5-1.1,0.9-1.4s0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3s0.6,0.5,0.9,0.8  s0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4c-0.4,0.3-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9  C259.2,42.7,258.9,41.5,258.9,39.9z M260,39.9c0,1.4,0.2,2.3,0.5,2.8s0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7s0.5-1.4,0.5-2.8  c0-1.4-0.2-2.4-0.5-2.8s-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C260.2,37.5,260,38.5,260,39.9z"/>
              <path d="M265.6,41.9l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3s0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5s0.5-0.8,0.5-1.3c0-0.5-0.2-0.9-0.5-1.2  s-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1l0.1-0.9c0.1,0,0.1,0,0.2,0c0.4,0,0.9-0.1,1.2-0.4s0.5-0.6,0.5-1.1c0-0.4-0.1-0.7-0.4-1  s-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4s-0.4,0.6-0.5,1.2l-1.1-0.2c0.1-0.7,0.4-1.3,0.9-1.6s1-0.6,1.7-0.6c0.5,0,0.9,0.1,1.3,0.3  s0.7,0.5,0.9,0.8s0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-0.9,0.7c0.5,0.1,0.9,0.4,1.2,0.7s0.4,0.8,0.4,1.4  c0,0.8-0.3,1.4-0.8,1.9c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7C265.9,43.2,265.6,42.6,265.6,41.9z"/>
              <path d="M272.2,41.9l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2s0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6s0.5-0.9,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4  c-0.3-0.3-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4l-0.5,2.3c0.5-0.4,1.1-0.5,1.6-0.5  c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1c-0.8,0-1.4-0.2-1.9-0.7  S272.3,42.6,272.2,41.9z"/>
              <path d="M278.9,39.9c0-1,0.1-1.8,0.3-2.5c0.2-0.6,0.5-1.1,0.9-1.4s0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3s0.6,0.5,0.9,0.8  s0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4c-0.4,0.3-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9  C279.2,42.7,278.9,41.5,278.9,39.9z M280,39.9c0,1.4,0.2,2.3,0.5,2.8s0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7s0.5-1.4,0.5-2.8  c0-1.4-0.2-2.4-0.5-2.8s-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C280.2,37.5,280,38.5,280,39.9z"/>
              <path d="M242,52.1l-0.3-1.6V49h1.2v1.4l-0.3,1.6H242z M243.9,52.1l-0.3-1.6V49h1.2v1.4l-0.3,1.6H243.9z"/>
              <path d="M245.4,57.6l3.3-8.6h1.2l3.5,8.6h-1.3l-1-2.6h-3.6l-0.9,2.6H245.4z M247.9,54.1h2.9l-0.9-2.4c-0.3-0.7-0.5-1.3-0.6-1.8  c-0.1,0.6-0.3,1.1-0.5,1.6L247.9,54.1z"/>
              <path d="M254.2,57.6V49h1.1v8.6H254.2z"/>
              <path d="M256.9,50.2V49h1.1v1.2H256.9z M256.9,57.6v-6.2h1.1v6.2H256.9z"/>
              <path d="M263.6,55.3l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7c-0.5,0.4-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8c-0.5-0.6-0.8-1.4-0.8-2.4  c0-0.7,0.1-1.3,0.3-1.8s0.6-0.9,1-1.1s1-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5c0.4,0.3,0.7,0.8,0.8,1.5l-1,0.2  c-0.1-0.4-0.3-0.7-0.5-0.9s-0.5-0.3-0.9-0.3c-0.5,0-1,0.2-1.3,0.6s-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.3,0.6  c0.4,0,0.8-0.1,1-0.4S263.5,55.9,263.6,55.3z"/>
              <path d="M269.8,55.6l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5c-0.5,0.4-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8c-0.5-0.6-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4c0.5-0.6,1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8c0.5,0.6,0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6  c0,0.7,0.2,1.2,0.6,1.6s0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S269.6,56.1,269.8,55.6z M266.3,53.9h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5S266.4,53.4,266.3,53.9z"/>
              <path d="M272.2,52.1l-0.3-1.6V49h1.2v1.4l-0.3,1.6H272.2z M274.2,52.1l-0.3-1.6V49h1.2v1.4l-0.3,1.6H274.2z"/>
              <rect x="197.5" y="33.6" fill-rule="evenodd" fill="none" width="122.2" height="27"/>
            </svg>
          </artwork>
        </section>
        <section anchor="cbor-diagnostic-notation-5">
          <name>CBOR Diagnostic Notation</name>
          <artwork><![CDATA[
200(   ; envelope
   224(   ; wrapped-envelope
      24("Alice")   ; leaf
   )
)
]]></artwork>
        </section>
        <section anchor="cbor-hex-5">
          <name>CBOR Hex</name>
          <artwork><![CDATA[
d8c8d8e0d81865416c696365
]]></artwork>
        </section>
      </section>
      <section anchor="assertion-case">
        <name>Assertion Case</name>
        <section anchor="envelope-cli-command-line-6">
          <name>Envelope CLI Command Line</name>
          <artwork><![CDATA[
envelope subject assertion "knows" "Bob"
]]></artwork>
        </section>
        <section anchor="envelope-notation-6">
          <name>Envelope Notation</name>
          <artwork><![CDATA[
"knows": "Bob"
]]></artwork>
        </section>
        <section anchor="tree-6">
          <name>Tree</name>
          <artwork><![CDATA[
55560bdf ASSERTION
    7092d620 pred "knows"
    9a771715 obj "Bob"
]]></artwork>
        </section>
        <section anchor="mermaid-6">
          <name>Mermaid</name>
          <artwork type="svg">  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny" width="353px" height="173.7px" viewBox="0 0 353 173.7" xml:space="preserve">
              <path fill="none" stroke="#000000" stroke-width="1.4993" d="M114.6,65.9l6.1-3.1c6.1-3.1,18.4-9.4,29.7-12.5  c11.3-3.1,21.5-3.1,26.6-3.1h5.1"/>
              <polygon fill="black" points="174,42.6 183,47.1 174,51.6 "/>
              <rect x="172.5" y="42.6" fill-rule="evenodd" fill="none" width="12" height="9"/>
              <path fill="none" stroke="#000000" stroke-width="1.4993" d="M114.6,107.9l6.1,3.1c6.1,3.1,18.4,9.4,30.7,12.5  c12.3,3.1,24.7,3.1,30.8,3.1h6.2"/>
              <polygon fill="black" points="180.4,122.1 189.4,126.6 180.4,131.1 "/>
              <rect x="178.9" y="122.1" fill-rule="evenodd" fill="none" width="12" height="9"/>
              <path d="M140.2,53.3v-8.6h1v0.8c0.2-0.3,0.5-0.6,0.8-0.7c0.3-0.2,0.6-0.2,1-0.2c0.5,0,1,0.1,1.4,0.4c0.4,0.3,0.7,0.7,0.9,1.2  s0.3,1,0.3,1.6c0,0.6-0.1,1.2-0.3,1.7c-0.2,0.5-0.6,0.9-1,1.2s-0.9,0.4-1.4,0.4c-0.4,0-0.7-0.1-0.9-0.2c-0.3-0.1-0.5-0.3-0.7-0.6v3  H140.2z M141.1,47.8c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8  c0-0.8-0.2-1.4-0.5-1.8c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.2-1.2,0.6C141.3,46.4,141.1,47,141.1,47.8z"/>
              <path d="M146.8,50.9v-6.2h0.9v0.9c0.2-0.4,0.5-0.7,0.7-0.9c0.2-0.1,0.4-0.2,0.7-0.2c0.4,0,0.7,0.1,1.1,0.3l-0.4,1  c-0.3-0.2-0.5-0.2-0.8-0.2c-0.2,0-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.4,0.6c-0.1,0.4-0.2,0.8-0.2,1.2v3.3H146.8z"/>
              <path d="M155.1,48.9l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5c-0.5,0.4-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8s-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4s1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8s0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6c0,0.7,0.2,1.2,0.6,1.6  s0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3C154.7,49.6,154.9,49.3,155.1,48.9z M151.6,47.2h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5S151.7,46.6,151.6,47.2z"/>
              <path d="M161.6,50.9v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1c-0.2-0.5-0.3-1.1-0.3-1.7  c0-0.6,0.1-1.2,0.3-1.7c0.2-0.5,0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6v-3.1h1v8.6H161.6z   M158.2,47.8c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9  s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6C158.4,46.3,158.2,46.9,158.2,47.8z"/>
              <rect x="139.4" y="40.4" fill-rule="evenodd" fill="none" width="24" height="13.5"/>
              <path d="M143.8,127.3c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8s0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  c-0.2,0.5-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8S143.8,128.3,143.8,127.3z M144.9,127.3c0,0.8,0.2,1.4,0.5,1.8  c0.3,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7c-0.3-0.4-0.8-0.6-1.3-0.6  c-0.5,0-1,0.2-1.3,0.6C145.1,125.9,144.9,126.5,144.9,127.3z"/>
              <path d="M151.8,130.4h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2c0.3,0.2,0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V130.4z M151.8,127.2c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8c-0.3-0.4-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C152,125.9,151.8,126.5,151.8,127.2z"/>
              <path d="M156.2,132.8l0.2-0.9c0.2,0.1,0.4,0.1,0.5,0.1c0.2,0,0.4-0.1,0.5-0.2s0.2-0.5,0.2-1.1v-6.5h1.1v6.6c0,0.8-0.1,1.3-0.3,1.6  c-0.3,0.4-0.7,0.6-1.3,0.6C156.7,132.9,156.5,132.9,156.2,132.8z M157.5,123v-1.2h1.1v1.2H157.5z"/>
              <rect x="143.4" y="119.9" fill-rule="evenodd" fill="none" width="15.7" height="13.5"/>
              <path fill="none" stroke="#000000" stroke-width="2.249" d="M47.1,65.9h52.6c0.7,0,1.4,0,2.1,0.1c0.7,0.1,1.4,0.2,2,0.3  c0.7,0.1,1.3,0.3,2,0.5s1.3,0.4,1.9,0.7c0.6,0.3,1.3,0.6,1.9,0.9c0.6,0.3,1.2,0.7,1.8,1.1c0.6,0.4,1.1,0.8,1.7,1.2  c0.5,0.4,1,0.9,1.5,1.4s0.9,1,1.4,1.5s0.8,1.1,1.2,1.7c0.4,0.6,0.7,1.2,1.1,1.8c0.3,0.6,0.6,1.2,0.9,1.9c0.3,0.6,0.5,1.3,0.7,1.9  c0.2,0.7,0.4,1.3,0.5,2s0.2,1.4,0.3,2c0.1,0.7,0.1,1.4,0.1,2.1s0,1.4-0.1,2.1c-0.1,0.7-0.2,1.4-0.3,2s-0.3,1.3-0.5,2  c-0.2,0.7-0.4,1.3-0.7,1.9c-0.3,0.6-0.6,1.3-0.9,1.9c-0.3,0.6-0.7,1.2-1.1,1.8c-0.4,0.6-0.8,1.1-1.2,1.7s-0.9,1-1.4,1.5  s-1,0.9-1.5,1.4c-0.5,0.4-1.1,0.8-1.7,1.2c-0.6,0.4-1.2,0.7-1.8,1.1c-0.6,0.3-1.2,0.6-1.9,0.9c-0.6,0.3-1.3,0.5-1.9,0.7  s-1.3,0.4-2,0.5c-0.7,0.1-1.4,0.2-2,0.3c-0.7,0.1-1.4,0.1-2.1,0.1H47.1c-0.7,0-1.4,0-2.1-0.1c-0.7-0.1-1.4-0.2-2-0.3  c-0.7-0.1-1.3-0.3-2-0.5s-1.3-0.4-1.9-0.7c-0.6-0.3-1.3-0.6-1.9-0.9c-0.6-0.3-1.2-0.7-1.8-1.1c-0.6-0.4-1.1-0.8-1.7-1.2  c-0.5-0.4-1-0.9-1.5-1.4c-0.5-0.5-0.9-1-1.4-1.5s-0.8-1.1-1.2-1.7c-0.4-0.6-0.7-1.2-1.1-1.8c-0.3-0.6-0.6-1.2-0.9-1.9  c-0.3-0.6-0.5-1.3-0.7-1.9c-0.2-0.7-0.4-1.3-0.5-2c-0.1-0.7-0.2-1.4-0.3-2c-0.1-0.7-0.1-1.4-0.1-2.1s0-1.4,0.1-2.1s0.2-1.4,0.3-2  c0.1-0.7,0.3-1.3,0.5-2c0.2-0.7,0.4-1.3,0.7-1.9c0.3-0.6,0.6-1.3,0.9-1.9c0.3-0.6,0.7-1.2,1.1-1.8c0.4-0.6,0.8-1.1,1.2-1.7  s0.9-1,1.4-1.5c0.5-0.5,1-0.9,1.5-1.4c0.5-0.4,1.1-0.8,1.7-1.2c0.6-0.4,1.2-0.7,1.8-1.1c0.6-0.3,1.2-0.6,1.9-0.9  c0.6-0.3,1.3-0.5,1.9-0.7s1.3-0.4,2-0.5c0.7-0.1,1.4-0.2,2-0.3C45.7,65.9,46.4,65.9,47.1,65.9z"/>
              <path d="M48.9,81.6l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2s0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6c0.4-0.4,0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2c-0.3,0.2-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4  l-0.5,2.3c0.5-0.4,1.1-0.5,1.6-0.5c0.7,0,1.4,0.3,1.9,0.8s0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1  c-0.8,0-1.4-0.2-1.9-0.7C49.2,82.9,49,82.3,48.9,81.6z"/>
              <path d="M55.6,81.6l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2s0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6c0.4-0.4,0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2c-0.3,0.2-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4  L57,78.7c0.5-0.4,1.1-0.5,1.6-0.5c0.7,0,1.4,0.3,1.9,0.8s0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1  c-0.8,0-1.4-0.2-1.9-0.7C55.9,82.9,55.6,82.3,55.6,81.6z"/>
              <path d="M62.2,81.6l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2c0.3,0.3,0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6c0.4-0.4,0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2c-0.3,0.2-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4  l-0.5,2.3c0.5-0.4,1.1-0.5,1.6-0.5c0.7,0,1.4,0.3,1.9,0.8s0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1  c-0.8,0-1.4-0.2-1.9-0.7C62.6,82.9,62.3,82.3,62.2,81.6z"/>
              <path d="M74.4,77.4l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  c-0.2,0.5-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9c0.4-0.2,0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8s0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5  c-0.2,0.5-0.6,0.8-1,1.1S72.3,84,71.8,84c-0.9,0-1.6-0.3-2.1-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6c0.5-0.7,1.3-1,2.2-1  c0.7,0,1.2,0.2,1.7,0.6C74,76.2,74.3,76.7,74.4,77.4z M70.1,81.1c0,0.4,0.1,0.7,0.2,1c0.2,0.3,0.4,0.6,0.6,0.8  c0.3,0.2,0.6,0.3,0.9,0.3c0.4,0,0.8-0.2,1.1-0.5c0.3-0.4,0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.7-0.5-1.2-0.5  c-0.5,0-0.9,0.2-1.2,0.5S70.1,80.5,70.1,81.1z"/>
              <path d="M75.6,79.6c0-1,0.1-1.8,0.3-2.5c0.2-0.6,0.5-1.1,0.9-1.4c0.4-0.3,0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3  c0.3,0.2,0.6,0.5,0.9,0.8s0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4c-0.2,0.6-0.5,1.1-0.9,1.4S79,84,78.4,84  c-0.8,0-1.5-0.3-1.9-0.9C75.8,82.4,75.6,81.3,75.6,79.6z M76.6,79.6c0,1.4,0.2,2.3,0.5,2.8c0.3,0.5,0.7,0.7,1.2,0.7s0.9-0.2,1.2-0.7  c0.3-0.5,0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8c-0.3-0.5-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C76.8,77.3,76.6,78.2,76.6,79.6z"/>
              <path d="M83.5,83.9h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2c0.3,0.2,0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5S86,84,85.2,84c-0.7,0-1.3-0.3-1.7-0.9V83.9z M83.5,80.7c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8c-0.3-0.4-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C83.7,79.4,83.5,80,83.5,80.7z"/>
              <path d="M93.2,83.9v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1c-0.2-0.5-0.3-1.1-0.3-1.7  c0-0.6,0.1-1.2,0.3-1.7c0.2-0.5,0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6v-3.1h1v8.6H93.2z   M89.9,80.8c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9  s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6C90.1,79.3,89.9,79.9,89.9,80.8z"/>
              <path d="M96.1,83.9v-5.4h-0.9v-0.8h0.9V77c0-0.4,0-0.7,0.1-0.9c0.1-0.3,0.3-0.5,0.5-0.7c0.3-0.2,0.6-0.3,1.1-0.3c0.3,0,0.6,0,1,0.1  l-0.2,0.9c-0.2,0-0.4-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.7,0.2c-0.1,0.1-0.2,0.4-0.2,0.8v0.6h1.2v0.8h-1.2v5.4H96.1z"/>
              <path d="M38.8,97.4l3.3-8.6h1.2l3.5,8.6h-1.3l-1-2.6H41l-0.9,2.6H38.8z M41.3,93.8h2.9l-0.9-2.4c-0.3-0.7-0.5-1.3-0.6-1.8  c-0.1,0.6-0.3,1.1-0.5,1.6L41.3,93.8z"/>
              <path d="M47.4,94.6l1.1-0.1c0.1,0.4,0.2,0.8,0.4,1.1c0.2,0.3,0.5,0.5,0.9,0.7c0.4,0.2,0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.1-0.2  c0.3-0.1,0.6-0.3,0.7-0.5c0.2-0.2,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.4-0.8-0.5c-0.2-0.1-0.7-0.2-1.5-0.4  s-1.3-0.4-1.7-0.5c-0.4-0.2-0.7-0.5-0.9-0.8c-0.2-0.3-0.3-0.7-0.3-1.1c0-0.4,0.1-0.8,0.4-1.2c0.2-0.4,0.6-0.7,1.1-0.9s1-0.3,1.6-0.3  c0.6,0,1.2,0.1,1.7,0.3s0.9,0.5,1.1,0.9c0.3,0.4,0.4,0.8,0.4,1.4l-1.1,0.1c-0.1-0.5-0.3-1-0.6-1.2s-0.8-0.4-1.5-0.4  c-0.7,0-1.2,0.1-1.5,0.4c-0.3,0.3-0.5,0.6-0.5,0.9c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.8,0.4,1.7,0.6c0.9,0.2,1.6,0.4,1.9,0.5  c0.5,0.2,0.9,0.5,1.1,0.9s0.4,0.8,0.4,1.2c0,0.5-0.1,0.9-0.4,1.3c-0.3,0.4-0.6,0.7-1.1,0.9s-1,0.3-1.7,0.3c-0.8,0-1.4-0.1-2-0.3  s-0.9-0.6-1.2-1C47.6,95.7,47.4,95.2,47.4,94.6z"/>
              <path d="M55.4,94.6l1.1-0.1c0.1,0.4,0.2,0.8,0.4,1.1c0.2,0.3,0.5,0.5,0.9,0.7c0.4,0.2,0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.1-0.2  c0.3-0.1,0.6-0.3,0.7-0.5c0.2-0.2,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.4-0.8-0.5c-0.2-0.1-0.7-0.2-1.5-0.4  s-1.3-0.4-1.7-0.5c-0.4-0.2-0.7-0.5-0.9-0.8c-0.2-0.3-0.3-0.7-0.3-1.1c0-0.4,0.1-0.8,0.4-1.2c0.2-0.4,0.6-0.7,1.1-0.9s1-0.3,1.6-0.3  c0.6,0,1.2,0.1,1.7,0.3s0.9,0.5,1.1,0.9c0.3,0.4,0.4,0.8,0.4,1.4l-1.1,0.1c-0.1-0.5-0.3-1-0.6-1.2s-0.8-0.4-1.5-0.4  c-0.7,0-1.2,0.1-1.5,0.4c-0.3,0.3-0.5,0.6-0.5,0.9c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.8,0.4,1.7,0.6c0.9,0.2,1.6,0.4,1.9,0.5  c0.5,0.2,0.9,0.5,1.1,0.9s0.4,0.8,0.4,1.2c0,0.5-0.1,0.9-0.4,1.3c-0.3,0.4-0.6,0.7-1.1,0.9s-1,0.3-1.7,0.3c-0.8,0-1.4-0.1-2-0.3  s-0.9-0.6-1.2-1C55.6,95.7,55.4,95.2,55.4,94.6z"/>
              <path d="M63.8,97.4v-8.6H70v1h-5.1v2.6h4.7v1h-4.7v2.9h5.3v1H63.8z"/>
              <path d="M71.8,97.4v-8.6h3.8c0.8,0,1.3,0.1,1.7,0.2s0.7,0.4,1,0.8c0.2,0.4,0.4,0.8,0.4,1.3c0,0.6-0.2,1.1-0.6,1.5  c-0.4,0.4-1,0.7-1.8,0.8c0.3,0.1,0.5,0.3,0.7,0.4c0.3,0.3,0.6,0.7,0.9,1.1l1.5,2.3h-1.4l-1.1-1.8c-0.3-0.5-0.6-0.9-0.8-1.2  c-0.2-0.3-0.4-0.5-0.6-0.6c-0.2-0.1-0.3-0.2-0.5-0.2c-0.1,0-0.3,0-0.6,0h-1.3v3.8H71.8z M72.9,92.6h2.4c0.5,0,0.9-0.1,1.2-0.2  c0.3-0.1,0.5-0.3,0.7-0.5s0.2-0.5,0.2-0.8c0-0.4-0.1-0.7-0.4-1c-0.3-0.3-0.8-0.4-1.4-0.4h-2.7V92.6z"/>
              <path d="M82.4,97.4v-7.6h-2.8v-1h6.8v1h-2.8v7.6H82.4z"/>
              <path d="M87.7,97.4v-8.6h1.1v8.6H87.7z"/>
              <path d="M90.5,93.2c0-1.4,0.4-2.5,1.1-3.3c0.8-0.8,1.8-1.2,3-1.2c0.8,0,1.5,0.2,2.1,0.6c0.6,0.4,1.1,0.9,1.5,1.6  c0.3,0.7,0.5,1.4,0.5,2.3c0,0.9-0.2,1.7-0.5,2.3c-0.4,0.7-0.8,1.2-1.5,1.6c-0.6,0.4-1.3,0.5-2.1,0.5c-0.8,0-1.5-0.2-2.2-0.6  S91.3,96,91,95.3S90.5,93.9,90.5,93.2z M91.7,93.2c0,1,0.3,1.9,0.8,2.4s1.3,0.9,2.1,0.9c0.9,0,1.6-0.3,2.1-0.9s0.8-1.5,0.8-2.6  c0-0.7-0.1-1.3-0.4-1.8c-0.2-0.5-0.6-0.9-1-1.2c-0.5-0.3-1-0.4-1.5-0.4c-0.8,0-1.5,0.3-2.1,0.8S91.7,91.9,91.7,93.2z"/>
              <path d="M100.2,97.4v-8.6h1.2l4.5,6.7v-6.7h1.1v8.6h-1.2l-4.5-6.8v6.8H100.2z"/>
              <rect x="38.9" y="73.4" fill-rule="evenodd" fill="none" width="68.9" height="27"/>
              <rect x="182.1" y="26.1" fill="none" stroke="#000000" stroke-width="2.249" width="144.7" height="42"/>
              <path d="M228.4,36.7v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  c0.3-1,0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H228.4z"/>
              <path d="M235,39.9c0-1,0.1-1.8,0.3-2.5c0.2-0.6,0.5-1.1,0.9-1.4c0.4-0.3,0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3  c0.3,0.2,0.6,0.5,0.9,0.8s0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4c-0.2,0.6-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5  c-0.8,0-1.5-0.3-1.9-0.9C235.3,42.7,235,41.5,235,39.9z M236.1,39.9c0,1.4,0.2,2.3,0.5,2.8c0.3,0.5,0.7,0.7,1.2,0.7s0.9-0.2,1.2-0.7  c0.3-0.5,0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8c-0.3-0.5-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C236.3,37.5,236.1,38.5,236.1,39.9  z"/>
              <path d="M241.8,42.1l1-0.1c0.1,0.5,0.2,0.8,0.5,1s0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.6  c0.2-0.2,0.3-0.6,0.4-1s0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8s-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8  s-0.7-1.2-0.7-2c0-0.9,0.3-1.6,0.8-2.1s1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5s0.8,0.7,1.1,1.3c0.2,0.6,0.4,1.4,0.4,2.4  c0,1.1-0.1,2-0.4,2.6c-0.2,0.7-0.6,1.1-1.1,1.5s-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.6-0.6S241.9,42.8,241.8,42.1z M246.1,38.3  c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.4-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6s-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3  c0.3,0.3,0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5C246,39.4,246.1,39,246.1,38.3z"/>
              <path d="M253.9,43.1v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1c0.3-0.4,0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8  c0.3-0.4,0.5-0.9,0.5-1.3c0-0.4-0.1-0.8-0.4-1.1c-0.3-0.3-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.3  l-1.1-0.1c0.1-0.8,0.4-1.4,0.8-1.8s1.1-0.6,1.9-0.6c0.8,0,1.5,0.2,2,0.7s0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1c-0.1,0.3-0.4,0.7-0.7,1  c-0.3,0.4-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1c-0.2,0.2-0.3,0.4-0.4,0.6H253.9z"/>
              <path d="M259.3,44.1v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1c-0.2-0.5-0.3-1.1-0.3-1.7  c0-0.6,0.1-1.2,0.3-1.7c0.2-0.5,0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6v-3.1h1v8.6H259.3z   M256,41c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9  s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6C256.2,39.6,256,40.2,256,41z"/>
              <path d="M267.1,37.6l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  c-0.2,0.5-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9c0.4-0.2,0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8s0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5  c-0.2,0.5-0.6,0.8-1,1.1s-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.1-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6  c0.5-0.7,1.3-1,2.2-1c0.7,0,1.2,0.2,1.7,0.6C266.8,36.4,267.1,37,267.1,37.6z M262.8,41.3c0,0.4,0.1,0.7,0.2,1  c0.2,0.3,0.4,0.6,0.6,0.8c0.3,0.2,0.6,0.3,0.9,0.3c0.4,0,0.8-0.2,1.1-0.5c0.3-0.4,0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4  c-0.3-0.3-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5S262.8,40.8,262.8,41.3z"/>
              <path d="M273.9,43.1v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1c0.3-0.4,0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8  c0.3-0.4,0.5-0.9,0.5-1.3c0-0.4-0.1-0.8-0.4-1.1c-0.3-0.3-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.3  l-1.1-0.1c0.1-0.8,0.4-1.4,0.8-1.8s1.1-0.6,1.9-0.6c0.8,0,1.5,0.2,2,0.7s0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1c-0.1,0.3-0.4,0.7-0.7,1  c-0.3,0.4-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1c-0.2,0.2-0.3,0.4-0.4,0.6H273.9z"/>
              <path d="M275,39.9c0-1,0.1-1.8,0.3-2.5c0.2-0.6,0.5-1.1,0.9-1.4c0.4-0.3,0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3  c0.3,0.2,0.6,0.5,0.9,0.8s0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4c-0.2,0.6-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5  c-0.8,0-1.5-0.3-1.9-0.9C275.3,42.7,275,41.5,275,39.9z M276.1,39.9c0,1.4,0.2,2.3,0.5,2.8c0.3,0.5,0.7,0.7,1.2,0.7s0.9-0.2,1.2-0.7  c0.3-0.5,0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8c-0.3-0.5-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C276.3,37.5,276.1,38.5,276.1,39.9  z"/>
              <path d="M234.1,52.1l-0.3-1.6V49h1.2v1.4l-0.3,1.6H234.1z M236,52.1l-0.3-1.6V49h1.2v1.4l-0.3,1.6H236z"/>
              <path d="M238.3,57.6V49h1.1v4.9l2.5-2.5h1.4l-2.4,2.3l2.6,3.9h-1.3l-2.1-3.2l-0.7,0.7v2.5H238.3z"/>
              <path d="M244.3,57.6v-6.2h0.9v0.9c0.5-0.7,1.1-1,2-1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.5,0.3,0.8  c0,0.2,0.1,0.5,0.1,1v3.8h-1.1v-3.8c0-0.4,0-0.8-0.1-1c-0.1-0.2-0.2-0.4-0.4-0.5c-0.2-0.1-0.5-0.2-0.7-0.2c-0.4,0-0.8,0.1-1.2,0.4  c-0.3,0.3-0.5,0.8-0.5,1.6v3.4H244.3z"/>
              <path d="M250.6,54.5c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8s0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  c-0.2,0.5-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8S250.6,55.6,250.6,54.5z M251.7,54.5c0,0.8,0.2,1.4,0.5,1.8  c0.3,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7c-0.3-0.4-0.8-0.6-1.3-0.6  c-0.5,0-1,0.2-1.3,0.6C251.8,53.1,251.7,53.7,251.7,54.5z"/>
              <path d="M258.8,57.6l-1.9-6.2h1.1l1,3.6l0.4,1.3c0-0.1,0.1-0.5,0.3-1.3l1-3.6h1.1l0.9,3.6l0.3,1.2l0.4-1.2l1.1-3.6h1l-1.9,6.2h-1.1  l-1-3.7l-0.2-1.1l-1.3,4.8H258.8z"/>
              <path d="M265.9,55.8l1-0.2c0.1,0.4,0.2,0.7,0.5,1c0.3,0.2,0.6,0.3,1.1,0.3c0.5,0,0.8-0.1,1.1-0.3c0.2-0.2,0.4-0.4,0.4-0.7  c0-0.2-0.1-0.4-0.3-0.6c-0.1-0.1-0.5-0.2-1.1-0.4c-0.8-0.2-1.3-0.4-1.6-0.5c-0.3-0.1-0.5-0.3-0.7-0.6c-0.2-0.3-0.2-0.5-0.2-0.8  c0-0.3,0.1-0.5,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.6c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.5,0,0.9,0.1,1.3,0.2  c0.4,0.1,0.6,0.3,0.8,0.6s0.3,0.6,0.4,1l-1,0.1c0-0.3-0.2-0.6-0.4-0.8c-0.2-0.2-0.5-0.3-1-0.3c-0.5,0-0.8,0.1-1,0.2  c-0.2,0.2-0.3,0.3-0.3,0.6c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.4,0.3c0.1,0,0.4,0.1,0.9,0.3c0.7,0.2,1.3,0.4,1.6,0.5  c0.3,0.1,0.5,0.3,0.7,0.6c0.2,0.2,0.3,0.5,0.3,0.9c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.5,0.6-0.9,0.7s-0.8,0.3-1.3,0.3  c-0.8,0-1.4-0.2-1.8-0.5C266.3,56.9,266,56.4,265.9,55.8z"/>
              <path d="M272.3,52.1l-0.3-1.6V49h1.2v1.4l-0.3,1.6H272.3z M274.3,52.1l-0.3-1.6V49h1.2v1.4l-0.3,1.6H274.3z"/>
              <rect x="189.6" y="33.6" fill-rule="evenodd" fill="none" width="129.6" height="27"/>
              <rect x="188.5" y="105.6" fill="none" stroke="#000000" stroke-width="2.249" width="132.1" height="42"/>
              <path d="M228.5,121.6l1-0.1c0.1,0.5,0.2,0.8,0.5,1s0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.6  c0.2-0.2,0.3-0.6,0.4-1s0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8s-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8  s-0.7-1.2-0.7-2c0-0.9,0.3-1.6,0.8-2.1s1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5s0.8,0.7,1.1,1.3c0.2,0.6,0.4,1.4,0.4,2.4  c0,1.1-0.1,2-0.4,2.6c-0.2,0.7-0.6,1.1-1.1,1.5s-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.6-0.6S228.6,122.3,228.5,121.6z M232.8,117.8  c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.4-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6s-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3  c0.3,0.3,0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5C232.7,118.9,232.8,118.5,232.8,117.8z"/>
              <path d="M239.4,122.9c-0.4,0.3-0.8,0.6-1.1,0.7s-0.7,0.2-1.2,0.2c-0.7,0-1.2-0.2-1.6-0.5s-0.6-0.8-0.6-1.3c0-0.3,0.1-0.6,0.2-0.8  c0.1-0.3,0.3-0.5,0.5-0.6c0.2-0.2,0.5-0.3,0.8-0.3c0.2-0.1,0.5-0.1,0.9-0.2c0.9-0.1,1.5-0.2,1.9-0.4c0-0.1,0-0.2,0-0.3  c0-0.4-0.1-0.7-0.3-0.9c-0.3-0.2-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.1-1.1,0.3s-0.4,0.5-0.5,0.9l-1-0.1c0.1-0.4,0.2-0.8,0.5-1.1  c0.2-0.3,0.5-0.5,0.9-0.6s0.9-0.2,1.4-0.2c0.5,0,1,0.1,1.3,0.2c0.3,0.1,0.6,0.3,0.7,0.5s0.3,0.4,0.3,0.7c0,0.2,0.1,0.5,0.1,1v1.4  c0,1,0,1.6,0.1,1.9s0.1,0.5,0.3,0.7h-1.1C239.5,123.4,239.4,123.1,239.4,122.9z M239.3,120.5c-0.4,0.2-1,0.3-1.7,0.4  c-0.4,0.1-0.7,0.1-0.9,0.2s-0.3,0.2-0.4,0.3s-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.7c0.2,0.2,0.5,0.3,0.9,0.3c0.4,0,0.8-0.1,1.1-0.3  c0.3-0.2,0.5-0.4,0.7-0.7c0.1-0.2,0.2-0.6,0.2-1.1V120.5z"/>
              <path d="M241.7,116.2v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  c0.3-1,0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H241.7z"/>
              <path d="M248.4,116.2v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  c0.3-1,0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H248.4z"/>
              <path d="M259,123.6h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7c-0.4,0.2-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1c0.4-0.4,0.8-0.8,0.9-1.1  h0.7V123.6z"/>
              <path d="M261.7,116.2v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  c0.3-1,0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H261.7z"/>
              <path d="M272.3,123.6h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7c-0.4,0.2-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1c0.4-0.4,0.8-0.8,0.9-1.1  h0.7V123.6z"/>
              <path d="M275,121.4l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2s0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6c0.4-0.4,0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2c-0.3,0.2-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4  l-0.5,2.3c0.5-0.4,1.1-0.5,1.6-0.5c0.7,0,1.4,0.3,1.9,0.8s0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1  c-0.8,0-1.4-0.2-1.9-0.7C275.4,122.7,275.1,122.1,275,121.4z"/>
              <path d="M240.4,131.6l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H240.4z M242.4,131.6l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H242.4z"/>
              <path d="M244.7,137.1v-8.6h3.2c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.4,0.9,0.8c0.2,0.4,0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1  c-0.2,0.3-0.5,0.6-0.9,0.8c0.5,0.2,0.9,0.4,1.2,0.8c0.3,0.4,0.4,0.8,0.4,1.3c0,0.4-0.1,0.8-0.3,1.1s-0.4,0.6-0.6,0.8  c-0.2,0.2-0.6,0.3-0.9,0.4c-0.4,0.1-0.8,0.1-1.4,0.1H244.7z M245.9,132.1h1.9c0.5,0,0.9,0,1.1-0.1c0.3-0.1,0.5-0.2,0.7-0.4  c0.1-0.2,0.2-0.4,0.2-0.8c0-0.3-0.1-0.5-0.2-0.8c-0.1-0.2-0.3-0.4-0.6-0.4c-0.3-0.1-0.7-0.1-1.3-0.1h-1.7V132.1z M245.9,136.1h2.1  c0.4,0,0.6,0,0.8,0c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.3-0.3,0.4-0.5s0.2-0.5,0.2-0.7c0-0.3-0.1-0.6-0.2-0.8s-0.4-0.4-0.7-0.5  c-0.3-0.1-0.7-0.1-1.3-0.1h-2V136.1z"/>
              <path d="M252.2,134c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8s0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  c-0.2,0.5-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8S252.2,135.1,252.2,134z M253.3,134c0,0.8,0.2,1.4,0.5,1.8  c0.3,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7c-0.3-0.4-0.8-0.6-1.3-0.6  c-0.5,0-1,0.2-1.3,0.6C253.5,132.6,253.3,133.2,253.3,134z"/>
              <path d="M260.3,137.1h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2c0.3,0.2,0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V137.1z M260.3,134c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8c-0.3-0.4-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C260.4,132.6,260.3,133.2,260.3,134z"/>
              <path d="M266,131.6l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H266z M268,131.6l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H268z"/>
              <rect x="196" y="113.1" fill-rule="evenodd" fill="none" width="116.9" height="27"/>
            </svg>
          </artwork>
        </section>
        <section anchor="cbor-diagnostic-notation-6">
          <name>CBOR Diagnostic Notation</name>
          <artwork><![CDATA[
200(   ; envelope
   221(   ; assertion
      [
         200(   ; envelope
            24("knows")   ; leaf
         ),
         200(   ; envelope
            24("Bob")   ; leaf
         )
      ]
   )
)
]]></artwork>
        </section>
        <section anchor="cbor-hex-6">
          <name>CBOR Hex</name>
          <artwork><![CDATA[
d8c8d8dd82d8c8d818656b6e6f7773d8c8d81863426f62
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="known-values">
      <name>Known Values</name>
      <t>This section is informative.</t>
      <t>Known values are a specific case of envelope that defines a namespace consisting of single unsigned integers. The expectation is that the most common and widely useful predicates will be assigned in this namespace, but known values may be used in any position in an envelope.</t>
      <t>Most of the examples in this document use UTF-8 strings as predicates, but in real-world applications the same predicate may be used many times in a document and across a body of knowledge. Since the size of an envelope is proportionate to the size of its content, a predicate made using a string like a human-readable sentence or a URL could take up a great deal of space in a typical envelope. Even emplacing the digest of a known structure takes 32 bytes. Known values provide a way to compactly represent predicates and other common values in as few as three bytes.</t>
      <t>Other CBOR tags can be used to define completely separate namespaces if desired, but the reference implementation <xref target="ENVELOPE-REFIMPL"/> and its tools <xref target="ENVELOPE-CLI"/> recognize specific known values and their human-readable names.</t>
      <t>Custom ontologies such as Web Ontology Language <xref target="OWL"/> or Friend of a Friend <xref target="FOAF"/> may someday be represented as ranges of integers in this known space, or be defined in their own namespaces.</t>
      <t>A specification for a standard minimal ontology of known values is TBD.</t>
      <t>The following table lists all the known values currently defined in the reference implementation <xref target="ENVELOPE-REFIMPL"/>. This list is currently informative, but all these known values have been used in the reference implementation for various examples and test vectors.</t>
      <t>Note that a work-in-progress specification for remote procedure calls using envelope has been assigned a namespace starting at 100.</t>
      <table>
        <thead>
          <tr>
            <th align="left">Value</th>
            <th align="left">Name</th>
            <th align="left">Used as</th>
            <th align="left">Description</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">1</td>
            <td align="left">
              <tt>id</tt></td>
            <td align="left">predicate</td>
            <td align="left">A domain-unique identifier of some kind.</td>
          </tr>
          <tr>
            <td align="left">2</td>
            <td align="left">
              <tt>isA</tt></td>
            <td align="left">predicate</td>
            <td align="left">A domain-specific type identifier.</td>
          </tr>
          <tr>
            <td align="left">3</td>
            <td align="left">
              <tt>verifiedBy</tt></td>
            <td align="left">predicate</td>
            <td align="left">A signature on the digest of the subject, verifiable with the signer's public key.</td>
          </tr>
          <tr>
            <td align="left">4</td>
            <td align="left">
              <tt>note</tt></td>
            <td align="left">predicate</td>
            <td align="left">A human-readable informative note.</td>
          </tr>
          <tr>
            <td align="left">5</td>
            <td align="left">
              <tt>hasRecipient</tt></td>
            <td align="left">predicate</td>
            <td align="left">A sealed message encrypting to a specific recipient the ephemeral encryption key that was used to encrypt the subject.</td>
          </tr>
          <tr>
            <td align="left">6</td>
            <td align="left">
              <tt>sskrShare</tt></td>
            <td align="left">predicate</td>
            <td align="left">A single SSKR <xref target="SSKR"/> share of the emphemeral encryption key that was used to encrypt the subject.</td>
          </tr>
          <tr>
            <td align="left">7</td>
            <td align="left">
              <tt>controller</tt></td>
            <td align="left">predicate</td>
            <td align="left">A domain-unique identifier of the party that controls the contents of this document.</td>
          </tr>
          <tr>
            <td align="left">8</td>
            <td align="left">
              <tt>publicKeys</tt></td>
            <td align="left">predicate</td>
            <td align="left">A "public key base" consisting of the information needed to encrypt messages to a party or verify messages signed by them.</td>
          </tr>
          <tr>
            <td align="left">9</td>
            <td align="left">
              <tt>dereferenceVia</tt></td>
            <td align="left">predicate</td>
            <td align="left">A domain-unique Pointer such as a URL indicating from where the elided envelope subject can be recovered.</td>
          </tr>
          <tr>
            <td align="left">10</td>
            <td align="left">
              <tt>entity</tt></td>
            <td align="left">predicate</td>
            <td align="left">A document representing an entity of interest in the current context.</td>
          </tr>
          <tr>
            <td align="left">11</td>
            <td align="left">
              <tt>hasName</tt></td>
            <td align="left">predicate</td>
            <td align="left">The human-readable name of the subject.</td>
          </tr>
          <tr>
            <td align="left">12</td>
            <td align="left">
              <tt>language</tt></td>
            <td align="left">predicate</td>
            <td align="left">The ISO 639 <xref target="ISO639"/> code for the human natural language used to write the subject.</td>
          </tr>
          <tr>
            <td align="left">13</td>
            <td align="left">
              <tt>issuer</tt></td>
            <td align="left">predicate</td>
            <td align="left">A domain-unique identifier of the document's issuing entity.</td>
          </tr>
          <tr>
            <td align="left">14</td>
            <td align="left">
              <tt>holder</tt></td>
            <td align="left">predicate</td>
            <td align="left">A domain-unique identifier of the document's holder, i.e., the entity to which the document pertains.</td>
          </tr>
          <tr>
            <td align="left">15</td>
            <td align="left">
              <tt>salt</tt></td>
            <td align="left">predicate</td>
            <td align="left">A block of random data used to deliberately perturb the digest tree for the purpose of decorrelation.</td>
          </tr>
          <tr>
            <td align="left">16</td>
            <td align="left">
              <tt>date</tt></td>
            <td align="left">predicate</td>
            <td align="left">A timestamp, e.g., the time at which a remote procedure call request was signed.</td>
          </tr>
          <tr>
            <td align="left">100</td>
            <td align="left">
              <tt>body</tt></td>
            <td align="left">predicate</td>
            <td align="left">RPC: The body of a function call. The object is the function identifier and the assertions on the object are the function parameters.</td>
          </tr>
          <tr>
            <td align="left">101</td>
            <td align="left">
              <tt>result</tt></td>
            <td align="left">predicate</td>
            <td align="left">RPC: A result of a successful function call. The object is the returned value.</td>
          </tr>
          <tr>
            <td align="left">102</td>
            <td align="left">
              <tt>error</tt></td>
            <td align="left">predicate</td>
            <td align="left">RPC: A result of an unsuccessful function call. The object is message or other diagnostic state.</td>
          </tr>
          <tr>
            <td align="left">103</td>
            <td align="left">
              <tt>ok</tt></td>
            <td align="left">object</td>
            <td align="left">RPC: The object of a <tt>result</tt> predicate for a successful remote procedure call that has no other return value.</td>
          </tr>
          <tr>
            <td align="left">104</td>
            <td align="left">
              <tt>processing</tt></td>
            <td align="left">object</td>
            <td align="left">RPC: The object of a <tt>result</tt> predicate where a function call is accepted for processing and has not yet produced a result or error.</td>
          </tr>
        </tbody>
      </table>
    </section>
    <section anchor="existence-proofs">
      <name>Existence Proofs</name>
      <t>This section is informative.</t>
      <t>Because each element of an envelope provides a unique digest, and because changing an element in an envelope changes the digest of all elements upwards towards its root, the structure of an envelope is comparable to a <xref target="MERKLE"/>.</t>
      <t>In a Merkle Tree, all semantically significant information is carried by the tree's leaves (for example, the transactions in a block of Bitcoin transactions) while the internal nodes of the tree are nothing but digests computed from combinations of pairs of lower nodes, all the way up to the root of the tree (the "Merkle root".)</t>
      <t>In an envelope, every digest references some semantically significant content: it could reference the subject of the envelope, or one of the assertions in the envelope, or at the predicate or object of a given assertion. Of course, those elements are all envelopes themselves, and thus potentially the root of their own subtree.</t>
      <t>In a merkle tree, the minumum subset of hashes necessary to confirm that a specific leaf node (the "target") must be present is called a "Merkle proof." For envelopes, an analogous proof would be a transformation of the envelope that is entirely elided but preserves the structure necesssary to reveal the target.</t>
      <t>As an example, we produce an envelope representing a simple FOAF <xref target="FOAF"/> style graph:</t>
      <sourcecode type="sh"><![CDATA[
$ ALICE_FRIENDS=`envelope subject Alice |
    envelope assertion knows Bob |
    envelope assertion knows Carol |
    envelope assertion knows Dan`

$ envelope $ALICE_FRIENDS
"Alice" [
    "knows": "Bob"
    "knows": "Carol"
    "knows": "Dan"
]
]]></sourcecode>
      <t>We then elide the entire envelope, leaving only the root-level digest. This digest is a cryptographic commitment to the envelope's contents.</t>
      <sourcecode type="sh"><![CDATA[
$ COMMITMENT=`envelope elide $ALICE_FRIENDS`
$ envelope --tree $COMMITMENT
cd84aa96 ELIDED
]]></sourcecode>
      <t>A third party, having received this commitment, can then request proof that the envelope contains a particular assertion, called the <em>target</em>.</t>
      <sourcecode type="sh"><![CDATA[
$ REQUESTED_ASSERTION=`envelope subject assertion knows Bob`

$ envelope --tree $REQUESTED_ASSERTION
55560bdf ASSERTION
    7092d620 pred "knows"
    9a771715 obj "Bob"
]]></sourcecode>
      <t>The holder can then produce a proof, which is an elided form of the original document that contains a minimum spanning set of digests including the target.</t>
      <sourcecode type="sh"><![CDATA[
$ KNOWS_BOB_DIGEST=`envelope digest $REQUESTED_ASSERTION`

$ KNOWS_BOB_PROOF=`envelope proof create $ALICE_FRIENDS \
    $KNOWS_BOB_DIGEST`

$ envelope --tree $KNOWS_BOB_PROOF
cd84aa96 NODE
    27840350 subj ELIDED
    55560bdf ELIDED
    71a30690 ELIDED
    907c8857 ELIDED
]]></sourcecode>
      <t>Note that the proof:</t>
      <ol spacing="normal" type="1"><li>has the same root digest as the commitment,</li>
        <li>includes the digest of the <tt>knows-Bob</tt> assertion: <tt>55560bdf</tt>,</li>
        <li>includes only the other digests necessary to calculate the digest tree from the target back to the root, without revealing any additional information about the envelope.</li>
      </ol>
      <t>Criteria 3 was met when the proof was produced. Critera 1 and 2 are checked by the command line tool when confirming the proof:</t>
      <sourcecode type="sh"><![CDATA[
$ envelope proof confirm --silent $COMMITMENT $KNOWS_BOB_PROOF \
    $KNOWS_BOB_DIGEST && echo "Success"
Success
]]></sourcecode>
    </section>
    <section anchor="reference-implementation">
      <name>Reference Implementation</name>
      <t>This section is informative.</t>
      <t>The current reference implementation of envelope is written in Swift and is part of the Blockchain Commons Secure Components Framework <xref target="ENVELOPE-REFIMPL"/>.</t>
      <t>The envelope command line tool <xref target="ENVELOPE-CLI"/> is also written in Swift.</t>
    </section>
    <section anchor="future-proofing">
      <name>Future Proofing</name>
      <t>This section is informative.</t>
      <t>Because envelope is a specification for documents that may persist indefinitely, it is a design goal of this specification that later implementation versions are able to parse envelopes produced by earlier versions. Furthermore, later implementations should be able to compose new envelopes using older envelopes as components.</t>
      <t>The authors considered adding a version number to every envelope, but deemed this unnecessary as any code that parses later envelopes can determine what features are required from the CBOR structure alone.</t>
      <t>The general migration strategy is that the specific structure of envelopes defined in the first general release of this specification is the baseline, and later specifications may incrementally add structural features such as envelope cases, new tags, or support for new structures or algorithms, but are generally expected to maintain backward compatibility.</t>
      <t>An example of addition would be to add an additional supported method of encryption. The <tt>crypto-msg</tt> specification CDDL is a CBOR array with either three or four elements:</t>
      <sourcecode type="cddl"><![CDATA[
crypto-msg = #6.201([ ciphertext, nonce, auth, ? aad ])
ciphertext = bytes       ; encrypted using ChaCha20
aad = digest             ; Additional Authenticated Data
nonce = bytes .size 12   ; Random, generated at encryption-time
auth = bytes .size 16    ; Authentication tag created by Poly1305
]]></sourcecode>
      <t>For the sake of this example we assume the new method to be supported has all the same fields, but needs to be processed differently. In this case, the first element of the array could become an optional integer:</t>
      <sourcecode type="cddl"><![CDATA[
crypto-msg = #6.201([ ? version, ciphertext, nonce, auth, ? aad ])
version = uint           ; absent for old method, 1 for new method
]]></sourcecode>
      <t>If present, the first field specifies the later encryption method. If absent, the original encryption method is specified. For low numbered versions, the storage cost of specifying a later version is one byte, and backwards compatibility is preserved.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>This section is informative unless noted otherwise.</t>
      <section anchor="structural-considerations">
        <name>Structural Considerations</name>
        <section anchor="cbor-considerations">
          <name>CBOR Considerations</name>
          <t>Generally, this document inherits the security considerations of CBOR <xref target="RFC8949"/>. Though CBOR has limited web usage, it has received strong usage in hardware, resulting in a mature specification.</t>
        </section>
      </section>
      <section anchor="cryptographic-considerations">
        <name>Cryptographic Considerations</name>
        <section anchor="inherited-considerations">
          <name>Inherited Considerations</name>
          <t>Generally, this document inherits the security considerations of the cryptographic constructs it uses such as IETF-ChaCha20-Poly1305 <xref target="RFC8439"/> and BLAKE3 <xref target="BLAKE3"/>.</t>
        </section>
        <section anchor="choice-of-cryptographic-primitives-no-set-curve">
          <name>Choice of Cryptographic Primitives (No Set Curve)</name>
          <t>Though envelope recommends the use of certain cryptographic algorithms, most are not required (with the exception of BLAKE3 usage, noted below). In particular, envelope has no required curve. Different choices will obviously result in different security considerations.</t>
        </section>
      </section>
      <section anchor="validation-requirements">
        <name>Validation Requirements</name>
        <t>Unlike HTML, envelope is intended to be conservative in both what it sends <em>and</em> what it accepts. This means that receivers of envelope-based documents should carefully validate them. Any deviation from the validation requirements of this specification <bcp14>MUST</bcp14> result in the rejection of the entire envelope. Even after validation, envelope contents should be treated with due skepticism.</t>
      </section>
      <section anchor="signature-considerations">
        <name>Signature Considerations</name>
        <t>This specification allows the signing of envelopes that are partially (or even entirely) elided. There may be use cases for this, such as when multiple users are each signing partially elided envelopes that will then be united. However, it's generally a dangerous practice. Our own tools require overrides to allow it. Other developes should take care to warn users of the dangers of signing elided envelopes.</t>
      </section>
      <section anchor="hashing">
        <name>Hashing</name>
        <section anchor="choice-of-blake3-hash-primitive">
          <name>Choice of BLAKE3 Hash Primitive</name>
          <t>Although BLAKE2 is more widely supported by IETF specifications, envelope instead makes use of BLAKE3. This is to take advantage of advances in the updated protocol: the new BLAKE3 implementation uses a Merkle Tree format that allows for streaming and for incremental updates as well as high levels of parallelism. The fact that BLAKE3 is newer should be taken into consideration, but its foundation in BLAKE2 and its support by experts such as the Zcash Foundation are considered to grant it sufficient maturity.</t>
          <t>Whereas, envelope is written to allow for the easy exchange of most of its cryptographic protocols, this is not true for BLAKE3: swapping for another hash protocol would result in incompatible envelopes. Thus, any security considerations related to BLAKE3 should be given careful attention.</t>
        </section>
        <section anchor="well-known-hashes">
          <name>Well-Known Hashes</name>
          <t>Because they are short unsigned integers, well-known values produce well-known digests. Elided envelopes may in some cases inadvertently reveal information by transmitting digests that may be correlated to known information. Envelopes can be salted by adding assertions that contain random data to perturb the digest tree, hence decorrelating it from any known values.</t>
        </section>
        <section anchor="digest-trees">
          <name>Digest Trees</name>
          <t>Existence proofs include the minimal set of digests that are necessary to calculate the digest tree from the target to the root, but may themselves leak information about the contents of the envelope due to the other digests that must be included in the spanning set. Designers of envelope-based formats should anticipate such attacks and use decorrelation mechanisms like salting where necessary.</t>
        </section>
        <section anchor="a-tree-not-a-list">
          <name>A Tree, Not a List</name>
          <t>Envelope makes use of a hash tree instead of a hash list to allow this sort of minimal revelation. This decision may also have advantages in scaling. However, there should be further investigation of the limitations of hash trees regarding scaling, particularly for the scaling of large, elided structures.</t>
          <t>There should also be careful consideration of the best practices needed for the creation of deeply nested envelopes, for the usage of subenvelopes created at different times, and for other technical details related to the use of a potentially broad hash tree, as such best practices do not currently exist.</t>
        </section>
        <section anchor="salts">
          <name>Salts</name>
          <t>Specifics for the size and usage of salt are not included in this specifications. There are also no requirements for whether salts should be revealed or can be elided. Careful attention may be required for these factors to ensure that they don't accidentally introduce vulnerabilities into usage.</t>
        </section>
        <section anchor="collisions">
          <name>Collisions</name>
          <t>Hash trees tend to make it harder to create collisions than the use of a raw hash function. If attackers manage to find a collision for a hash, they can only replace one node (and its children), so the impact is limited, especially since finding collisions higher in a hash tree grows increasingly difficult because the collision must be a concatenation of multiple hashes. This should generally reduce issues with collisions: finding collisions that fit a hash tree tends to be harder than finding regular collisions. But, the issue always should be considered.</t>
        </section>
        <section anchor="leaf-node-attacks">
          <name>Leaf-Node Attacks</name>
          <t>Envelope's hash tree  is proof against the leaf-node weakness of Bitcoin that can affect SPVs because its predicates are an unordered set, serialized in increasing lexicographic order by digest, with no possibility for duplication and thus fully deterministic ordering of the tree.</t>
          <t>See https://bitslog.com/2018/06/09/leaf-node-weakness-in-bitcoin-merkle-tree-design/ for the leaf-node attack.</t>
        </section>
        <section anchor="forgery-attacks-on-unbalanced-trees">
          <name>Forgery Attacks on Unbalanced Trees</name>
          <t>Envelopes should also be proof against forgery attacks before of their different construction, where all nodes contain both data and hashes. Nonetheless, care must still be taken with trees, especially when also using elision, which limits visible information.</t>
          <t>See https://bitcointalk.org/?topic=102395 for the forgery attack.</t>
        </section>
      </section>
      <section anchor="elision">
        <name>Elision</name>
        <section anchor="duplication-of-claims">
          <name>Duplication of Claims</name>
          <t>Support for elision allows for the possibility of contradictory claims where one is kept hidden at any time. So, for example, an evelope could contain contradictory predictions of election results and only reveal the one that matches the actual results. As a result, revealed material should be carefully assessed for this possibility when elided material also exists.</t>
        </section>
      </section>
      <section anchor="additional-specification-creation">
        <name>Additional Specification Creation</name>
        <t>Creators of specifications for envelope-based documents should give due consideration to security implications that are outside the scope of this specification to anticipate or avert. One example would be the number and type of assertions allowed in a particular document, and whether additional assertions (metadata) are allowed on those assertions.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="cbor-tags">
        <name>CBOR Tags</name>
        <t>This section proposes a number of IANA allocated specific CBOR tags <xref target="IANA-CBOR-TAGS"/>.</t>
        <t>In the table below, tags directly referenced in this specification have "yes" in the "spec" field.</t>
        <t>The reference implementation <xref target="ENVELOPE-REFIMPL"/> uses tags not used in this specification, and these are marked "no" in the "spec" field.</t>
        <t>This document requests that IANA reserve the assigned tags listed below in the range 200-230 for use by envelope and associated specifications.</t>
        <table>
          <thead>
            <tr>
              <th align="left">data item</th>
              <th align="left">spec</th>
              <th align="left">semantics</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">200</td>
              <td align="left">yes</td>
              <td align="left">envelope</td>
            </tr>
            <tr>
              <td align="left">201</td>
              <td align="left">yes</td>
              <td align="left">crypto-message</td>
            </tr>
            <tr>
              <td align="left">202</td>
              <td align="left">no</td>
              <td align="left">common-identifier</td>
            </tr>
            <tr>
              <td align="left">203</td>
              <td align="left">yes</td>
              <td align="left">digest</td>
            </tr>
            <tr>
              <td align="left">204</td>
              <td align="left">no</td>
              <td align="left">symmetric-key</td>
            </tr>
            <tr>
              <td align="left">205</td>
              <td align="left">no</td>
              <td align="left">private-key-base</td>
            </tr>
            <tr>
              <td align="left">206</td>
              <td align="left">no</td>
              <td align="left">public-key-base</td>
            </tr>
            <tr>
              <td align="left">207</td>
              <td align="left">no</td>
              <td align="left">sealed-message</td>
            </tr>
            <tr>
              <td align="left">208-221</td>
              <td align="left">no</td>
              <td align="left">unassigned</td>
            </tr>
            <tr>
              <td align="left">221</td>
              <td align="left">yes</td>
              <td align="left">assertion</td>
            </tr>
            <tr>
              <td align="left">222</td>
              <td align="left">no</td>
              <td align="left">signature</td>
            </tr>
            <tr>
              <td align="left">223</td>
              <td align="left">yes</td>
              <td align="left">known-value</td>
            </tr>
            <tr>
              <td align="left">224</td>
              <td align="left">yes</td>
              <td align="left">wrapped-envelope</td>
            </tr>
            <tr>
              <td align="left">225-229</td>
              <td align="left">no</td>
              <td align="left">unassigned</td>
            </tr>
            <tr>
              <td align="left">230</td>
              <td align="left">no</td>
              <td align="left">agreement-public-key</td>
            </tr>
          </tbody>
        </table>
        <t>Points of contact:
    * Christopher Allen <eref target="mailto:christophera@blockchaincommons.com">christophera@blockchaincommons.com</eref>
    * Wolf McNally <eref target="mailto:wolf@wolfmcnally.com">wolf@wolfmcnally.com</eref></t>
      </section>
      <section anchor="media-type">
        <name>Media Type</name>
        <t>The proposed media type <xref target="RFC6838"/> for envelope is <tt>application/envelope+cbor</tt>.</t>
        <ul spacing="normal">
          <li>Type name: application</li>
          <li>Subtype name: envelope+cbor</li>
          <li>Required parameters: n/a</li>
          <li>Optional parameters: n/a</li>
          <li>Encoding considerations: binary</li>
          <li>Security considerations: See the previous section of this document</li>
          <li>Interoperability considerations: n/a</li>
          <li>Published specification: This document</li>
          <li>Applications that use this media type:  None yet, but it is expected that this format will be deployed in protocols and applications.</li>
          <li>
            <t>Additional information:
            </t>
            <ul spacing="normal">
              <li>Magic number(s): n/a</li>
              <li>File extension(s): .envelope</li>
              <li>Macintosh file type code(s): n/a</li>
            </ul>
          </li>
          <li>
            <t>Person &amp; email address to contact for further information:
            </t>
            <ul spacing="normal">
              <li>Christopher Allen <eref target="mailto:christophera@blockchaincommons.com">christophera@blockchaincommons.com</eref></li>
              <li>Wolf McNally <eref target="mailto:wolf@wolfmcnally.com">wolf@wolfmcnally.com</eref></li>
            </ul>
          </li>
          <li>Intended usage: COMMON</li>
          <li>Restrictions on usage: none</li>
          <li>
            <t>Author:
            </t>
            <ul spacing="normal">
              <li>Wolf McNally <eref target="mailto:wolf@wolfmcnally.com">wolf@wolfmcnally.com</eref></li>
            </ul>
          </li>
          <li>
            <t>Change controller:
            </t>
            <ul spacing="normal">
              <li>The IESG <eref target="mailto:iesg@ietf.org">iesg@ietf.org</eref></li>
            </ul>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="appendix-why-cbor">
      <name>Appendix: Why CBOR?</name>
      <t>The Concise Binary Object Representation, or CBOR, was chosen as the foundational data structure envelopes for a variety of reasons. These include:</t>
      <ol spacing="normal" type="1"><li>
          <strong>IETF Standardization.</strong> CBOR is a mature open international IETF standard <xref target="RFC8949"/>.</li>
        <li>
          <strong>IANA Registration.</strong> CBOR is further standardized by the registration of common data type tags through IANA <xref target="IANA-CBOR-TAGS"/>.</li>
        <li>
          <strong>Fully Extensible.</strong> Beyond that, CBOR is entirely extensible with any data types desired, such as our own listing of UR tags <xref target="BC-UR-TAGS"/>.</li>
        <li>
          <strong>Self-describing Descriptions.</strong> CBOR-encoded data is self-describing, so there are no requirements for pre-defined schemas nor more complex descriptions such as those found in ASN.1 <xref target="ASN-1"/>.</li>
        <li>
          <strong>Constraint Friendly.</strong> CBOR is built to be frugal with CPU and memory, so it works well in constrained environments such as on cryptographic silicon chips.</li>
        <li>
          <strong>Unambiguous Encoding.</strong> Our use of Deterministic CBOR, combined with our own specification rules, such as the sorting of Envelopes by hash, results in a singular, unambiguous encoding.</li>
        <li>
          <strong>Multiple Implementations.</strong> Implementation are available in a variety of languages <xref target="CBOR-IMPLS"/>.</li>
        <li>
          <strong>Compact Implementations.</strong> Compactness of encoding and decoding is one of CBOR's core goals; implementations are built on headers or snippets of code, and do not require any external tools.</li>
      </ol>
      <t>Also see a comparison to Protocol Buffers <xref target="UR-QA"/>, a comparison to Flatbuffers <xref target="CBOR-FLATBUFFERS"/>, and a comparison to other binary formats <xref target="CBOR-FORMAT-COMPARISON"/>.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC8949">
          <front>
            <title>Concise Binary Object Representation (CBOR)</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman">
              <organization/>
            </author>
            <date month="December" year="2020"/>
            <abstract>
              <t>The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation. These design goals make it different from earlier binary serializations such as ASN.1 and MessagePack.</t>
              <t>This document obsoletes RFC 7049, providing editorial improvements, new details, and errata fixes while keeping full compatibility with the interchange format of RFC 7049.  It does not create a new version of the format.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="94"/>
          <seriesInfo name="RFC" value="8949"/>
          <seriesInfo name="DOI" value="10.17487/RFC8949"/>
        </reference>
        <reference anchor="RFC8610">
          <front>
            <title>Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures</title>
            <author fullname="H. Birkholz" initials="H." surname="Birkholz">
              <organization/>
            </author>
            <author fullname="C. Vigano" initials="C." surname="Vigano">
              <organization/>
            </author>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <date month="June" year="2019"/>
            <abstract>
              <t>This document proposes a notational convention to express Concise Binary Object Representation (CBOR) data structures (RFC 7049).  Its main goal is to provide an easy and unambiguous way to express structures for protocol messages and data formats that use CBOR or JSON.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8610"/>
          <seriesInfo name="DOI" value="10.17487/RFC8610"/>
        </reference>
        <reference anchor="RFC8439">
          <front>
            <title>ChaCha20 and Poly1305 for IETF Protocols</title>
            <author fullname="Y. Nir" initials="Y." surname="Nir">
              <organization/>
            </author>
            <author fullname="A. Langley" initials="A." surname="Langley">
              <organization/>
            </author>
            <date month="June" year="2018"/>
            <abstract>
              <t>This document defines the ChaCha20 stream cipher as well as the use of the Poly1305 authenticator, both as stand-alone algorithms and as a "combined mode", or Authenticated Encryption with Associated Data (AEAD) algorithm.</t>
              <t>RFC 7539, the predecessor of this document, was meant to serve as a stable reference and an implementation guide.  It was a product of the Crypto Forum Research Group (CFRG).  This document merges the errata filed against RFC 7539 and adds a little text to the Security Considerations section.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8439"/>
          <seriesInfo name="DOI" value="10.17487/RFC8439"/>
        </reference>
        <reference anchor="RFC6838">
          <front>
            <title>Media Type Specifications and Registration Procedures</title>
            <author fullname="N. Freed" initials="N." surname="Freed">
              <organization/>
            </author>
            <author fullname="J. Klensin" initials="J." surname="Klensin">
              <organization/>
            </author>
            <author fullname="T. Hansen" initials="T." surname="Hansen">
              <organization/>
            </author>
            <date month="January" year="2013"/>
            <abstract>
              <t>This document defines procedures for the specification and registration of media types for use in HTTP, MIME, and other Internet protocols.  This memo documents an Internet Best Current Practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="13"/>
          <seriesInfo name="RFC" value="6838"/>
          <seriesInfo name="DOI" value="10.17487/RFC6838"/>
        </reference>
        <reference anchor="IANA-CBOR-TAGS" target="https://www.iana.org/assignments/cbor-tags/cbor-tags.xhtml">
          <front>
            <title>IANA, Concise Binary Object Representation (CBOR) Tags</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="BLAKE3" target="https://blake3.io">
          <front>
            <title>BLAKE3 Cryptographic Hash Function</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="CRYPTO-MSG" target="https://github.com/BlockchainCommons/Research/blob/master/papers/bcr-2022-001-secure-message.md">
          <front>
            <title>UR Type Definition for Secure Messages</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="ENVELOPE-REFIMPL" target="https://github.com/BlockchainCommons/BCSwiftSecureComponents">
          <front>
            <title>Envelope Reference Implementation, part of the Blockchain Commons Secure Components Framework</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="ENVELOPE-CLI" target="https://github.com/BlockchainCommons/envelope-cli-swift">
          <front>
            <title>Envelope Command Line Tool</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="MERKLE" target="https://en.wikipedia.org/wiki/Merkle_tree">
          <front>
            <title>Merkle Tree</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="MERMAID" target="https://mermaid-js.github.io/mermaid/#/">
          <front>
            <title>Mermaid.js</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="FOAF" target="https://en.wikipedia.org/wiki/FOAF">
          <front>
            <title>Friend of a Friend (FOAF)</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="SSKR" target="https://github.com/BlockchainCommons/Research/blob/master/papers/bcr-2020-011-sskr.md">
          <front>
            <title>Sharded Secret Key Recovery (SSKR)</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="OWL" target="https://www.w3.org/OWL/">
          <front>
            <title>Web Ontology Language (OWL)</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="ISO639" target="https://en.wikipedia.org/wiki/ISO_639">
          <front>
            <title>ISO 639 - Standard for representation of names for language and language groups</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="BC-UR-TAGS" target="https://github.com/BlockchainCommons/Research/blob/master/papers/bcr-2020-006-urtypes.md">
          <front>
            <title>Registry of Uniform Resource (UR) Types</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="CBOR-IMPLS" target="http://cbor.io/impls.html">
          <front>
            <title>CBOR Implementations</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="UR-QA" target="https://github.com/BlockchainCommons/Research/blob/master/papers/bcr-2020-005-ur.md#qa">
          <front>
            <title>UR (Uniform Resources) Q&amp;A</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="CBOR-FLATBUFFERS" target="https://stackoverflow.com/questions/47799396/flatbuffers-vs-cbor">
          <front>
            <title>Flatbuffers vs CBOR</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="CBOR-FORMAT-COMPARISON" target="https://www.rfc-editor.org/rfc/rfc8949#name-comparison-of-other-binary-">
          <front>
            <title>Comparison of Other Binary Formats to CBOR's Design Objectives</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="ASN-1" target="https://www.itu.int/rec/T-REC-X.680/">
          <front>
            <title>X.680 : Information technology - Abstract Syntax Notation One (ASN.1): Specification of basic notation</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
      </references>
    </references>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>TODO acknowledge.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
3PkXHBovHr7w8okt5bb1/wF5gcUkVngDAA==

-->

</rfc>
