Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • vimazeno/blog.limos.fr
  • matrossevi/blog.limos.fr
  • borlonjo/blog.limos.fr
3 results
Show changes
Showing
with 2892 additions and 0 deletions
.reveal section img {
border: none;
}
.reveal section h2 {
color: #2A76DD;
text-transform: uppercase;
text-shadow: -2px 4px 0 rgba(0, 0, 0, 0.3), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15);
}
.reveal table {
margin: auto;
border-collapse: collapse;
border-spacing: 0;
}
.reveal table th {
font-weight: bold;
}
.reveal table th,
.reveal table td {
text-align: left;
padding: 0.2em 0.5em 0.2em 0.5em;
border-bottom: 1px solid;
}
reveal code {
background-color: gray;
}
.fa-circle-check {
color: green;
}
.fa-circle-xmark {
color: red;
}
.fa-bomb {
color: grey;
}
.fa-lightbulb {
color: yellow;
}
.fa-trophy {
color: yellow;
}
.fa-medkit {
color: pink;
}
.fa-triangle-exclamation {
color: orange;
}
.fa-cogs {
color:steelblue;
}
.fa-ice-cream {
color:tomato;
}
.fa-firefox-browser {
color: orange;
}
.fa-bullseye {
color:orangered
}
.fa-book-skull, .fa-screwdriver-wrench {
color: grey;
}
code:not([class]) {
background-color: darkgrey;
border-radius: 5px;
padding: 5px;
font-size: 80%;
color: white;
}
\ No newline at end of file
"use strict";
Reveal.addEventListener( "ready", (event) => {
let user = ''
if(document.location.href.indexOf("?") != -1) {
user = document.location.href.substring(
document.location.href.indexOf("?")+1,
document.location.href.indexOf("#")
);
}
console.log(user);
let as = document.getElementsByTagName("a");
for (let a of as) {
let link = a.href;
if(
a.classList == ''
&& a.href != ''
&& !a.href.includes('javascript:')
) {
//console.log(link);
let url = new URL(link);
if (
url.origin == "http://dv.wa"
&& user != ""
) {
a.href = "http://vm-" + user + ".local.isima.fr" + url.pathname + url.search;
a.innerHTML = "http://vm-" + user + ".local.isima.fr" + url.pathname + url.search;
a.target = "_blank";
}
}
}
for (let code of document.getElementsByTagName("code")) {
if (user != "") {
code.innerHTML = code.innerHTML.replaceAll("dv.wa", "vm-" + user + ".local.isima.fr");
}
}
});
\ No newline at end of file
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>TLS VS PGP</title>
<link rel="stylesheet" href="../../node_modules/reveal.js/css/reveal.css">
<link rel="stylesheet" href="../../node_modules/reveal.js/css/theme/white.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="../../node_modules/reveal.js/lib/css/zenburn.css">
<link rel="stylesheet" href="../../node_modules/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="../main.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? '../../node_modules/reveal.js/css/print/pdf.css' : '../../node_modules/reveal.js/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-markdown="md/TLSvsPGP.md"
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
data-separator-notes="^Note:"
data-charset="utf-8">
</section>
</div>
</div>
<script src="../../node_modules/reveal.js/lib/js/head.min.js"></script>
<script src="../../node_modules/reveal.js/js/reveal.js"></script>
<script>
// More info about config & dependencies:
// - https://github.com/hakimel/reveal.js#configuration
// - https://github.com/hakimel/reveal.js#dependencies
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: false,
dependencies: [
{ src: '../../node_modules/reveal.js/plugin/markdown/marked.js' },
{ src: '../../node_modules/reveal.js/plugin/markdown/markdown.js' },
{ src: '../../node_modules/reveal.js/plugin/notes/notes.js', async: true },
{ src: '../../node_modules/reveal.js/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
]
});
</script>
</body>
</html>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Bitcoin</title>
<link rel="stylesheet" href="../../node_modules/reveal.js/css/reveal.css">
<link rel="stylesheet" href="../../node_modules/reveal.js/css/theme/white.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="../../node_modules/reveal.js/lib/css/zenburn.css">
<link rel="stylesheet" href="../../node_modules/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="../main.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? '../../node_modules/reveal.js/css/print/pdf.css' : '../../node_modules/reveal.js/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-markdown="md/bitcoin.md"
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
data-separator-notes="^Note:"
data-charset="utf-8">
</section>
</div>
</div>
<script src="../../node_modules/reveal.js/lib/js/head.min.js"></script>
<script src="../../node_modules/reveal.js/js/reveal.js"></script>
<script>
// More info about config & dependencies:
// - https://github.com/hakimel/reveal.js#configuration
// - https://github.com/hakimel/reveal.js#dependencies
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: false,
dependencies: [
{ src: '../../node_modules/reveal.js/plugin/markdown/marked.js' },
{ src: '../../node_modules/reveal.js/plugin/markdown/markdown.js' },
{ src: '../../node_modules/reveal.js/plugin/notes/notes.js', async: true },
{ src: '../../node_modules/reveal.js/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
]
});
</script>
</body>
</html>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Sécurité / Navigateurs</title>
<link rel="stylesheet" href="../../node_modules/reveal.js/css/reveal.css">
<link rel="stylesheet" href="../../node_modules/reveal.js/css/theme/white.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="../../node_modules/reveal.js/lib/css/zenburn.css">
<link rel="stylesheet" href="../../node_modules/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="../main.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? '../../node_modules/reveal.js/css/print/pdf.css' : '../../node_modules/reveal.js/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-markdown="md/browser.md"
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
data-separator-notes="^Note:"
data-charset="utf-8">
</section>
</div>
</div>
<script src="../../node_modules/reveal.js/lib/js/head.min.js"></script>
<script src="../../node_modules/reveal.js/js/reveal.js"></script>
<script>
// More info about config & dependencies:
// - https://github.com/hakimel/reveal.js#configuration
// - https://github.com/hakimel/reveal.js#dependencies
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: false,
dependencies: [
{ src: '../../node_modules/reveal.js/plugin/markdown/marked.js' },
{ src: '../../node_modules/reveal.js/plugin/markdown/markdown.js' },
{ src: '../../node_modules/reveal.js/plugin/notes/notes.js', async: true },
{ src: '../../node_modules/reveal.js/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
]
});
</script>
</body>
</html>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>une contre histoire de l'utopie numérique - connaître le passé pour comprendre le présent</title>
<link rel="stylesheet" href="../../node_modules/reveal.js/css/reveal.css">
<link rel="stylesheet" href="../../node_modules/reveal.js/css/theme/white.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="../../node_modules/reveal.js/lib/css/zenburn.css">
<link rel="stylesheet" href="../../node_modules/font-awesome/css/font-awesome.min.css">
<!-- link rel="stylesheet" href="../main.css" -->
<style>
.reveal section img, .reveal section table, .reveal section tr, .reveal section td, .reveal section th {
border: none;
}
.reveal section img {
box-shadow: none;
}
.reveal section.trsp {
background: rgba(0, 0, 0, 0.7);
}
.reveal section.bottom {
bottom: 0;
}
.reveal section.trsp > h1,
.reveal section.trsp > h2,
.reveal section.trsp > h3,
.reveal section.trsp > h4 {
color: white;
}
</style>
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? '../../node_modules/reveal.js/css/print/pdf.css' : '../../node_modules/reveal.js/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-markdown="md/chun/index.md"
data-separator="^---$"
data-separator-vertical="^----$"
data-separator-notes="^Note:"
data-charset="utf-8">
</section>
</div>
</div>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<script src="../../node_modules/reveal.js/lib/js/head.min.js"></script>
<script src="../../node_modules/reveal.js/js/reveal.js"></script>
<script>
// More info about config & dependencies:
// - https://github.com/hakimel/reveal.js#configuration
// - https://github.com/hakimel/reveal.js#dependencies
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: false,
dependencies: [
{ src: '../../node_modules/reveal.js/plugin/markdown/marked.js' },
{ src: '../../node_modules/reveal.js/plugin/markdown/markdown.js' },
{ src: '../../node_modules/reveal.js/plugin/notes/notes.js', async: true },
{ src: '../../node_modules/reveal.js/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
]
});
</script>
</body>
</html>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Cryptologie</title>
<link rel="stylesheet" href="../../node_modules/reveal.js/css/reveal.css">
<link rel="stylesheet" href="../../node_modules/reveal.js/css/theme/white.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="../../node_modules/reveal.js/lib/css/zenburn.css">
<link rel="stylesheet" href="../../node_modules/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="../main.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? '../../node_modules/reveal.js/css/print/pdf.css' : '../../node_modules/reveal.js/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-markdown="md/crypto.md"
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
data-separator-notes="^Note:"
data-charset="utf-8">
</section>
</div>
</div>
<script src="../../node_modules/reveal.js/lib/js/head.min.js"></script>
<script src="../../node_modules/reveal.js/js/reveal.js"></script>
<script>
// More info about config & dependencies:
// - https://github.com/hakimel/reveal.js#configuration
// - https://github.com/hakimel/reveal.js#dependencies
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: false,
dependencies: [
{ src: '../../node_modules/reveal.js/plugin/markdown/marked.js' },
{ src: '../../node_modules/reveal.js/plugin/markdown/markdown.js' },
{ src: '../../node_modules/reveal.js/plugin/notes/notes.js', async: true },
{ src: '../../node_modules/reveal.js/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
]
});
</script>
</body>
</html>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
width="382.59821"
height="226.3046"
id="svg11628">
<defs
id="defs11630">
<linearGradient
id="linearGradient5358">
<stop
id="stop5360"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient5358-7">
<stop
id="stop5360-5"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient5358-5">
<stop
id="stop5360-6"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-2"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-6"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient5358-7-2">
<stop
id="stop5360-5-9"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5-1"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8-6"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient5358-7-3">
<stop
id="stop5360-5-5"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5-0"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8-7"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient5358-7-3-4">
<stop
id="stop5360-5-5-1"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5-0-7"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8-7-5"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient5358-7-3-4-2">
<stop
id="stop5360-5-5-1-4"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5-0-7-7"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8-7-5-9"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient5358-7-3-7">
<stop
id="stop5360-5-5-2"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5-0-6"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8-7-55"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
x1="558.55988"
y1="112.41524"
x2="618.26788"
y2="112.41524"
id="linearGradient7748-5"
xlink:href="#linearGradient5358-7-3-4-2-0"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.81346207,0,0,0.10434411,118.31432,542.3863)"
spreadMethod="pad" />
<linearGradient
id="linearGradient5358-7-3-4-2-0">
<stop
id="stop5360-5-5-1-4-1"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5-0-7-7-4"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8-7-5-9-7"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
x1="558.55988"
y1="112.41524"
x2="618.26788"
y2="112.41524"
id="linearGradient7693-3"
xlink:href="#linearGradient5358-7-3-7-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.65798432,0,0,0.10434411,-453.25052,542.42615)"
spreadMethod="pad" />
<linearGradient
id="linearGradient5358-7-3-7-9">
<stop
id="stop5360-5-5-2-3"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5-0-6-1"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8-7-55-2"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
x1="558.55988"
y1="112.41524"
x2="618.26788"
y2="112.41524"
id="linearGradient7693-9"
xlink:href="#linearGradient5358-7-3-7-3"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.65798432,0,0,0.10434411,-455.03446,754.69479)"
spreadMethod="pad" />
<linearGradient
id="linearGradient5358-7-3-7-3">
<stop
id="stop5360-5-5-2-5"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5-0-6-4"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8-7-55-0"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
x1="558.55988"
y1="112.41524"
x2="618.26788"
y2="112.41524"
id="linearGradient9901"
xlink:href="#linearGradient5358-7-3-7-3-5"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.65798432,0,0,0.10434411,-455.03446,780.69479)"
spreadMethod="pad" />
<linearGradient
id="linearGradient5358-7-3-7-3-5">
<stop
id="stop5360-5-5-2-5-3"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5-0-6-4-6"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8-7-55-0-4"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
x1="558.55988"
y1="112.41524"
x2="618.26788"
y2="112.41524"
id="linearGradient7693-9-2"
xlink:href="#linearGradient5358-7-3-7-3-7"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.65798432,0,0,0.10434411,-455.03446,806.69479)"
spreadMethod="pad" />
<linearGradient
id="linearGradient5358-7-3-7-3-7">
<stop
id="stop5360-5-5-2-5-33"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5-0-6-4-1"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8-7-55-0-1"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
x1="558.55988"
y1="112.41524"
x2="618.26788"
y2="112.41524"
id="linearGradient7693-9-1"
xlink:href="#linearGradient5358-7-3-7-3-6"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.65798432,0,0,0.10434411,-155.72194,754.69479)"
spreadMethod="pad" />
<linearGradient
id="linearGradient5358-7-3-7-3-6">
<stop
id="stop5360-5-5-2-5-4"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5-0-6-4-10"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8-7-55-0-0"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
x1="558.55988"
y1="112.41524"
x2="618.26788"
y2="112.41524"
id="linearGradient9901-7"
xlink:href="#linearGradient5358-7-3-7-3-5-0"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.65798432,0,0,0.10434411,-155.72194,780.69479)"
spreadMethod="pad" />
<linearGradient
id="linearGradient5358-7-3-7-3-5-0">
<stop
id="stop5360-5-5-2-5-3-7"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5-0-6-4-6-4"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8-7-55-0-4-9"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
</defs>
<metadata
id="metadata11633">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(393.56668,-432.0192)"
id="layer1">
<rect
width="382.59821"
height="226.3046"
ry="0.51150483"
x="-393.56668"
y="432.0192"
id="rect11224"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<g
transform="matrix(1.6972819,0,0,1.6972819,-454.60007,-789.45094)"
id="g10034">
<rect
width="95.684212"
height="101.01381"
ry="0.52024001"
x="103.37165"
y="734.50348"
id="rect2987-7-2-0-7"
style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.03841686;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="109.59386"
y="748.55432"
id="text2989-6-8-9-6-0"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="109.59386"
y="748.55432"
id="tspan2991-4-4-6-7-1"
style="font-weight:bold;-inkscape-font-specification:Sans Bold">Transaction</tspan></text>
<g
transform="translate(0,-24.21875)"
id="g9701">
<rect
width="30.596146"
height="19.212435"
ry="0.4829534"
x="112.94212"
y="780.50037"
id="rect3777-9-15-5-7-0-2-9-5"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="127.83118"
y="793.76788"
id="text3779-6-2-6-0-6-4-8-6"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="127.83118"
y="793.76788"
id="tspan3783-2-5-5-1-6-7-9-7"
style="text-align:center;text-anchor:middle">In</tspan></text>
</g>
<g
transform="translate(9.375,-24.21875)"
id="g9706">
<rect
width="30.596146"
height="19.212435"
ry="0.4829534"
x="148.94212"
y="780.50037"
id="rect3777-9-15-5-7-0-2-1-0-5"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="163.83118"
y="793.76788"
id="text3779-6-2-6-0-6-4-3-6-8"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="163.83118"
y="793.76788"
id="tspan3783-2-5-5-1-6-7-3-4-1"
style="text-align:center;text-anchor:middle">Out</tspan></text>
</g>
<g
transform="translate(-3.4130859e-6,1.781249)"
id="g9701-9">
<rect
width="30.596146"
height="19.212435"
ry="0.4829534"
x="112.94212"
y="780.50037"
id="rect3777-9-15-5-7-0-2-9-5-1"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="127.83118"
y="793.76788"
id="text3779-6-2-6-0-6-4-8-6-7"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="127.83118"
y="793.76788"
id="tspan3783-2-5-5-1-6-7-9-7-2"
style="text-align:center;text-anchor:middle">In</tspan></text>
</g>
<g
transform="translate(9.3749966,1.781249)"
id="g9706-3">
<rect
width="30.596146"
height="19.212435"
ry="0.4829534"
x="148.94212"
y="780.50037"
id="rect3777-9-15-5-7-0-2-1-0-5-8"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="163.83118"
y="791.76788"
id="text3779-6-2-6-0-6-4-3-6-8-4"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="163.83118"
y="791.76788"
id="tspan3783-2-5-5-1-6-7-3-4-1-4"
style="text-align:center;text-anchor:middle">...</tspan></text>
</g>
<g
transform="translate(-3.4e-6,27.781249)"
id="g9701-9-9">
<rect
width="30.596146"
height="19.212435"
ry="0.4829534"
x="112.94212"
y="780.50037"
id="rect3777-9-15-5-7-0-2-9-5-1-3"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="127.83118"
y="791.76788"
id="text3779-6-2-6-0-6-4-8-6-7-6"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="127.83118"
y="791.76788"
id="tspan3783-2-5-5-1-6-7-9-7-2-0"
style="text-align:center;text-anchor:middle">...</tspan></text>
</g>
<path
d="m 57.193069,765.47889 52.523431,0"
id="path3814-6-7-1-92-17"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="matrix(0,-1,1,0,81.23309,954.81387)"
id="path3816-0-5-6-90-9"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
width="39.286938"
height="19.721823"
ry="0.086161181"
x="-87.510773"
y="756.56378"
transform="scale(-1,1)"
id="rect5356-5-5-7-1"
style="color:#000000;fill:url(#linearGradient7693-9);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 57.193077,791.53653 52.523433,0"
id="path3814-6-7-1-92-17-5"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="matrix(0,-1,1,0,81.2331,980.81387)"
id="path3816-0-5-6-90-9-7"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
width="39.286938"
height="19.721823"
ry="0.086161181"
x="-87.510773"
y="782.56378"
transform="scale(-1,1)"
id="rect5356-5-5-7-1-9"
style="color:#000000;fill:url(#linearGradient9901);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 57.193077,817.59417 52.523433,0"
id="path3814-6-7-1-92-17-1"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="matrix(0,-1,1,0,81.2331,1006.8139)"
id="path3816-0-5-6-90-9-5"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
width="39.286938"
height="19.721823"
ry="0.086161181"
x="-87.510773"
y="808.56378"
transform="scale(-1,1)"
id="rect5356-5-5-7-1-0"
style="color:#000000;fill:url(#linearGradient7693-9-2);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 241.72995,765.47776 -52.13508,0"
id="path3814-6-7-1-92-17-9"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<rect
width="39.286938"
height="19.721823"
ry="0.086161181"
x="211.80174"
y="756.56378"
id="rect5356-5-5-7-1-8"
style="color:#000000;fill:url(#linearGradient7693-9-1);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 241.72994,791.5953 -52.13507,0"
id="path3814-6-7-1-92-17-5-4"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<rect
width="39.286938"
height="19.721823"
ry="0.086161181"
x="211.80174"
y="782.56378"
id="rect5356-5-5-7-1-9-3"
style="color:#000000;fill:url(#linearGradient9901-7);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
</g>
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
width="738.84821"
height="191.9296"
id="svg11628">
<defs
id="defs11630">
<linearGradient
id="linearGradient5358">
<stop
id="stop5360"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient5358-7">
<stop
id="stop5360-5"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient5358-5">
<stop
id="stop5360-6"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-2"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-6"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient5358-7-2">
<stop
id="stop5360-5-9"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5-1"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8-6"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
x1="558.55988"
y1="112.41524"
x2="618.26788"
y2="112.41524"
id="linearGradient6080"
xlink:href="#linearGradient5358-7-3"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.65798432,0,0,0.10434411,-596.30154,346.02909)"
spreadMethod="pad" />
<linearGradient
id="linearGradient5358-7-3">
<stop
id="stop5360-5-5"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5-0"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8-7"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
x1="558.55988"
y1="112.41524"
x2="618.26788"
y2="112.41524"
id="linearGradient6894"
xlink:href="#linearGradient5358-7-3-4"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.81346207,0,0,0.10434411,95.839074,344.60052)"
spreadMethod="pad" />
<linearGradient
id="linearGradient5358-7-3-4">
<stop
id="stop5360-5-5-1"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5-0-7"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8-7-5"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
x1="558.55988"
y1="112.41524"
x2="618.26788"
y2="112.41524"
id="linearGradient11297"
xlink:href="#linearGradient5358-7-3-4-2"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.81346207,0,0,0.10434411,16.709259,27.643918)"
spreadMethod="pad" />
<linearGradient
id="linearGradient5358-7-3-4-2">
<stop
id="stop5360-5-5-1-4"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5-0-7-7"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8-7-5-9"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
x1="558.55988"
y1="112.41524"
x2="618.26788"
y2="112.41524"
id="linearGradient11299"
xlink:href="#linearGradient5358-7-3-7"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.65798432,0,0,0.10434411,-517.17173,29.072488)"
spreadMethod="pad" />
<linearGradient
id="linearGradient5358-7-3-7">
<stop
id="stop5360-5-5-2"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5-0-6"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8-7-55"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
</defs>
<metadata
id="metadata11633">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(548.28931,-424.64746)"
id="layer1">
<rect
width="738.84821"
height="191.9296"
ry="0.43380874"
x="-548.28931"
y="424.64746"
id="rect11224"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<g
transform="matrix(1.6972819,0,0,1.6972819,-715.80699,448.20633)"
id="g11245">
<path
d="m 387.80503,39.661688 110.88876,0"
id="path3814-6-7-1-9-4"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<rect
width="48.570206"
height="19.721823"
ry="0.086161181"
x="471.0766"
y="29.512894"
id="rect5356-5-5-8-8"
style="color:#000000;fill:url(#linearGradient11297);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<g
transform="translate(124.13959,-506.10673)"
id="g7456-7">
<rect
width="120.332"
height="74.489723"
ry="0.383636"
x="217.08084"
y="515.2085"
id="rect2987-7-2-0"
style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="223.32225"
y="529.2785"
id="text2989-6-8-9-6"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="223.32225"
y="529.2785"
id="tspan2991-4-4-6-7"
style="font-weight:bold;-inkscape-font-specification:Sans Bold">Block</tspan></text>
<rect
width="60.698437"
height="19.02964"
ry="0.47835836"
x="226.77261"
y="536.06158"
id="rect3777-9-15-5-4-5"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="257.22708"
y="549.23828"
id="text3779-6-2-6-7-8"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="257.22708"
y="549.23828"
id="tspan3783-2-5-5-92-3"
style="text-align:center;text-anchor:middle">Prev Hash</tspan></text>
<g
transform="translate(25.213204,0)"
id="g7344-9"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<rect
width="36.596325"
height="19.17119"
ry="0.48191661"
x="266.70187"
y="535.99084"
id="rect3777-9-15-5-7-3-4"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="284.60022"
y="549.23828"
id="text3779-6-2-6-0-8-1"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="284.60022"
y="549.23828"
id="tspan3783-2-5-5-1-5-5"
style="text-align:center;text-anchor:middle">Nonce</tspan></text>
</g>
<g
id="g7397-6">
<rect
width="30.596146"
height="19.212435"
ry="0.4829534"
x="226.67052"
y="561.22455"
id="rect3777-9-15-5-7-0-2-9"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="241.55957"
y="574.49207"
id="text3779-6-2-6-0-6-4-8"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="241.55957"
y="574.49207"
id="tspan3783-2-5-5-1-6-7-9"
style="text-align:center;text-anchor:middle">Tx</tspan></text>
</g>
<g
transform="translate(36.000003,4.2773438e-6)"
id="g7397-1-9">
<rect
width="30.596146"
height="19.212435"
ry="0.4829534"
x="226.67052"
y="561.22455"
id="rect3777-9-15-5-7-0-2-1-0"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="241.55957"
y="574.49207"
id="text3779-6-2-6-0-6-4-3-6"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="241.55957"
y="574.49207"
id="tspan3783-2-5-5-1-6-7-3-4"
style="text-align:center;text-anchor:middle">Tx</tspan></text>
</g>
<g
transform="translate(72.000003,4.2773438e-6)"
id="g7397-1-8-1">
<rect
width="30.596146"
height="19.212435"
ry="0.4829534"
x="226.67052"
y="561.22455"
id="rect3777-9-15-5-7-0-2-1-3-7"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="241.55957"
y="572.49207"
id="text3779-6-2-6-0-6-4-3-0-8"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="241.55957"
y="572.49207"
id="tspan3783-2-5-5-1-6-7-3-6-9"
style="text-align:center;text-anchor:middle">...</tspan></text>
</g>
</g>
<g
transform="translate(-55.55839,-450.52803)"
id="g7615">
<path
d="m 283.45812,490.44226 119.50789,0"
id="path3814-6-7-1-1-0"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="matrix(0,-1,1,0,374.92876,679.7196)"
id="path3816-0-5-6-9-1"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
</g>
<rect
width="120.332"
height="74.489723"
ry="0.383636"
x="181.22043"
y="9.1017609"
id="rect2987-7-2"
style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="187.46184"
y="23.171768"
id="text2989-6-8-9"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="187.46184"
y="23.171768"
id="tspan2991-4-4-6"
style="font-weight:bold;-inkscape-font-specification:Sans Bold">Block</tspan></text>
<rect
width="60.698437"
height="19.02964"
ry="0.47835836"
x="190.9122"
y="29.954849"
id="rect3777-9-15-5-4"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="221.36667"
y="43.131546"
id="text3779-6-2-6-7"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="221.36667"
y="43.131546"
id="tspan3783-2-5-5-92"
style="text-align:center;text-anchor:middle">Prev Hash</tspan></text>
<rect
width="36.596325"
height="19.17119"
ry="0.48191661"
x="256.05466"
y="29.884109"
id="rect3777-9-15-5-7-3"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="273.953"
y="43.131546"
id="text3779-6-2-6-0-8"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="273.953"
y="43.131546"
id="tspan3783-2-5-5-1-5"
style="text-align:center;text-anchor:middle">Nonce</tspan></text>
<rect
width="30.596146"
height="19.212435"
ry="0.4829534"
x="190.8101"
y="55.117813"
id="rect3777-9-15-5-7-0-2"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="205.69916"
y="68.38533"
id="text3779-6-2-6-0-6-4"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="205.69916"
y="68.38533"
id="tspan3783-2-5-5-1-6-7"
style="text-align:center;text-anchor:middle">Tx</tspan></text>
<rect
width="30.596146"
height="19.212435"
ry="0.4829534"
x="226.81009"
y="55.117813"
id="rect3777-9-15-5-7-0-2-1"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="241.69916"
y="68.38533"
id="text3779-6-2-6-0-6-4-3"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="241.69916"
y="68.38533"
id="tspan3783-2-5-5-1-6-7-3"
style="text-align:center;text-anchor:middle">Tx</tspan></text>
<rect
width="30.596146"
height="19.212435"
ry="0.4829534"
x="262.81009"
y="55.117813"
id="rect3777-9-15-5-7-0-2-1-3"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="277.69916"
y="66.38533"
id="text3779-6-2-6-0-6-4-3-0"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="277.69916"
y="66.38533"
id="tspan3783-2-5-5-1-6-7-3-6"
style="text-align:center;text-anchor:middle">...</tspan></text>
<g
transform="translate(-79.129815,-316.9566)"
id="g6848-0">
<path
d="m 199.67405,356.87083 67.2519,0"
id="path3814-6-7-1-92"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="matrix(0,-1,1,0,238.50018,546.14817)"
id="path3816-0-5-6-90"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
</g>
<rect
width="39.286938"
height="19.721823"
ry="0.086161181"
x="-149.64804"
y="30.941452"
transform="scale(-1,1)"
id="rect5356-5-5-7"
style="color:#000000;fill:url(#linearGradient11299);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
</g>
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
width="738.84821"
height="191.9296"
id="svg11628">
<defs
id="defs11630">
<linearGradient
id="linearGradient5358">
<stop
id="stop5360"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient5358-7">
<stop
id="stop5360-5"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
x1="558.55988"
y1="112.41524"
x2="618.26788"
y2="112.41524"
id="linearGradient6579-1"
xlink:href="#linearGradient5358-5"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.83081792,0,0,1,89.396789,32.142857)"
spreadMethod="pad" />
<linearGradient
id="linearGradient5358-5">
<stop
id="stop5360-6"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-2"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-6"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
x1="558.55988"
y1="112.41524"
x2="618.26788"
y2="112.41524"
id="linearGradient6581-5"
xlink:href="#linearGradient5358-7-2"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.75103449,0,0,1,-639.40286,32.142873)"
spreadMethod="pad" />
<linearGradient
id="linearGradient5358-7-2">
<stop
id="stop5360-5-9"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5-1"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8-6"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
x1="558.55988"
y1="112.41524"
x2="618.26788"
y2="112.41524"
id="linearGradient6080"
xlink:href="#linearGradient5358-7-3"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.65798432,0,0,0.10434411,-596.30154,346.02909)"
spreadMethod="pad" />
<linearGradient
id="linearGradient5358-7-3">
<stop
id="stop5360-5-5"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5-0"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8-7"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
x1="558.55988"
y1="112.41524"
x2="618.26788"
y2="112.41524"
id="linearGradient6894"
xlink:href="#linearGradient5358-7-3-4"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.81346207,0,0,0.10434411,95.839074,344.60052)"
spreadMethod="pad" />
<linearGradient
id="linearGradient5358-7-3-4">
<stop
id="stop5360-5-5-1"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5-0-7"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8-7-5"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
</defs>
<metadata
id="metadata11633">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(741.00806,-330.82553)"
id="layer1">
<rect
width="738.84821"
height="191.9296"
ry="0.43380874"
x="-741.00806"
y="330.82553"
id="rect11224"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<g
transform="matrix(1.6972819,0,0,1.6972819,-1035.384,-233.55593)"
id="g6915">
<path
d="m 466.93484,356.61829 110.88876,0"
id="path3814-6-7-1-9"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<rect
width="136.6095"
height="48.845894"
ry="0.25156549"
x="240.59474"
y="381.57953"
id="rect2987-7"
style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.72365201;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="246.89368"
y="395.70709"
id="text2989-6-8"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="246.89368"
y="395.70709"
id="tspan2991-4-4"
style="font-weight:bold;-inkscape-font-specification:Sans Bold">Block</tspan></text>
<path
d="m 249.4743,381.42442 0,-16.99025 18.92443,0"
id="path3814-1"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="matrix(0,-1,1,0,238.66857,553.98518)"
id="path3816-4-8"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<g
id="g6848">
<path
d="m 199.67405,356.87083 67.2519,0"
id="path3814-6-7-1"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="matrix(0,-1,1,0,238.50018,546.14817)"
id="path3816-0-5-6"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
</g>
<rect
width="36.596325"
height="19.17119"
ry="0.48191661"
x="270.27487"
y="351.23672"
id="rect3777-9-15"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="288.17319"
y="364.48413"
id="text3779-6-2"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="288.17319"
y="364.48413"
id="tspan3783-2-5"
style="text-align:center;text-anchor:middle">Hash</tspan></text>
<rect
width="36.596325"
height="19.17119"
ry="0.48191661"
x="250.27327"
y="402.41943"
id="rect3777-9-15-5"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="268.1716"
y="415.66684"
id="text3779-6-2-6"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="268.1716"
y="415.66684"
id="tspan3783-2-5-5"
style="text-align:center;text-anchor:middle">Item</tspan></text>
<rect
width="36.596325"
height="19.17119"
ry="0.48191661"
x="290.27328"
y="402.41943"
id="rect3777-9-15-5-7"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="308.17163"
y="415.66684"
id="text3779-6-2-6-0"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="308.17163"
y="415.66684"
id="tspan3783-2-5-5-1"
style="text-align:center;text-anchor:middle">Item</tspan></text>
<rect
width="36.596325"
height="19.17119"
ry="0.48191661"
x="330.27325"
y="402.41946"
id="rect3777-9-15-5-2"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="348.1716"
y="413.66684"
id="text3779-6-2-6-8"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="348.1716"
y="413.66684"
id="tspan3783-2-5-5-9"
style="text-align:center;text-anchor:middle">...</tspan></text>
<rect
width="39.286938"
height="19.721823"
ry="0.086161181"
x="-228.77786"
y="347.89804"
transform="scale(-1,1)"
id="rect5356-5-5"
style="color:#000000;fill:url(#linearGradient6080);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
width="136.6095"
height="48.845894"
ry="0.25156549"
x="400.59473"
y="381.57953"
id="rect2987-7-5"
style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.72365201;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="406.89368"
y="395.70709"
id="text2989-6-8-2"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="406.89368"
y="395.70709"
id="tspan2991-4-4-4"
style="font-weight:bold;-inkscape-font-specification:Sans Bold">Block</tspan></text>
<path
d="m 409.4743,381.42442 0,-16.99025 18.92443,0"
id="path3814-1-0"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="matrix(0,-1,1,0,398.66857,553.98518)"
id="path3816-4-8-5"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 307.02955,356.87083 119.50789,0"
id="path3814-6-7-1-1"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="matrix(0,-1,1,0,398.50018,546.14817)"
id="path3816-0-5-6-9"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
width="36.596325"
height="19.17119"
ry="0.48191661"
x="430.27487"
y="351.23672"
id="rect3777-9-15-56"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="448.17319"
y="364.48413"
id="text3779-6-2-1"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="448.17319"
y="364.48413"
id="tspan3783-2-5-6"
style="text-align:center;text-anchor:middle">Hash</tspan></text>
<rect
width="36.596325"
height="19.17119"
ry="0.48191661"
x="410.27325"
y="402.41943"
id="rect3777-9-15-5-25"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="428.1716"
y="415.66684"
id="text3779-6-2-6-1"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="428.1716"
y="415.66684"
id="tspan3783-2-5-5-12"
style="text-align:center;text-anchor:middle">Item</tspan></text>
<rect
width="36.596325"
height="19.17119"
ry="0.48191661"
x="450.27328"
y="402.41943"
id="rect3777-9-15-5-7-0"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="468.17163"
y="415.66684"
id="text3779-6-2-6-0-6"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="468.17163"
y="415.66684"
id="tspan3783-2-5-5-1-6"
style="text-align:center;text-anchor:middle">Item</tspan></text>
<rect
width="36.596325"
height="19.17119"
ry="0.48191661"
x="490.27325"
y="402.41946"
id="rect3777-9-15-5-2-7"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="508.1716"
y="413.66684"
id="text3779-6-2-6-8-1"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="508.1716"
y="413.66684"
id="tspan3783-2-5-5-9-8"
style="text-align:center;text-anchor:middle">...</tspan></text>
<rect
width="48.570206"
height="19.721823"
ry="0.086161181"
x="550.20642"
y="346.46948"
id="rect5356-5-5-8"
style="color:#000000;fill:url(#linearGradient6894);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
</g>
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
width="738.84821"
height="410.6796"
id="svg11628">
<defs
id="defs11630">
<linearGradient
x1="558.55988"
y1="112.41524"
x2="618.26788"
y2="112.41524"
id="linearGradient6579"
xlink:href="#linearGradient5358"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.83081792,0,0,1,89.396789,32.142857)"
spreadMethod="pad" />
<linearGradient
id="linearGradient5358">
<stop
id="stop5360"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
x1="558.55988"
y1="112.41524"
x2="618.26788"
y2="112.41524"
id="linearGradient6581"
xlink:href="#linearGradient5358-7"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.75103449,0,0,1,-639.40286,32.142873)"
spreadMethod="pad" />
<linearGradient
id="linearGradient5358-7">
<stop
id="stop5360-5"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
x1="558.55988"
y1="112.41524"
x2="618.26788"
y2="112.41524"
id="linearGradient6579-1"
xlink:href="#linearGradient5358-5"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.83081792,0,0,1,89.396789,32.142857)"
spreadMethod="pad" />
<linearGradient
id="linearGradient5358-5">
<stop
id="stop5360-6"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-2"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-6"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
x1="558.55988"
y1="112.41524"
x2="618.26788"
y2="112.41524"
id="linearGradient6581-5"
xlink:href="#linearGradient5358-7-2"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.75103449,0,0,1,-639.40286,32.142873)"
spreadMethod="pad" />
<linearGradient
id="linearGradient5358-7-2">
<stop
id="stop5360-5-9"
style="stop-color:#ffffff;stop-opacity:0"
offset="0" />
<stop
id="stop5370-5-1"
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5" />
<stop
id="stop5362-8-6"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
</defs>
<metadata
id="metadata11633">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(901.58398,-63.253593)"
id="layer1">
<rect
width="738.84821"
height="410.6796"
ry="0.92823833"
x="-901.58398"
y="63.253593"
id="rect11224"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<g
transform="matrix(1.6972819,0,0,1.6972819,-1194.0051,21.376536)"
id="g6420">
<rect
width="84.547424"
height="150.7124"
ry="0.77619708"
x="464.86087"
y="43.190468"
id="rect2987-9-2"
style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="471.02161"
y="57.179901"
id="text2989-7-5"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="471.02161"
y="57.179901"
id="tspan2991-0-4"
style="font-weight:bold;-inkscape-font-specification:Sans Bold">Transaction</tspan></text>
<path
d="m 429.85792,102.63676 69.19545,0 0,9.34392"
id="path3814-5-6"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="translate(309.9023,82.397946)"
id="path3816-5-9"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 513.80861,85.311438 0,26.308202"
id="path3814-6-5-8"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="translate(324.53127,82.415713)"
id="path3816-0-0-6"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 506.55485,122.77511 0,26.30821"
id="path3814-6-3-5-4"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="translate(317.27751,119.87939)"
id="path3816-0-8-27-7"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
width="73.741135"
height="32.829956"
ry="0.82526439"
x="470.26404"
y="62.988274"
id="rect2993-2-5"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="506.73477"
y="76.120262"
id="text2995-6-6"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="506.73477"
y="76.120262"
id="tspan2997-06-6"
style="text-align:center;text-anchor:middle">Owner 1's</tspan><tspan
x="506.73477"
y="88.620262"
id="tspan2999-9-2"
style="text-align:center;text-anchor:middle">Public Key</tspan></text>
<rect
width="60.143658"
height="34.132225"
ry="0.85800016"
x="476.55771"
y="151.60939"
id="rect3797-5-0"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="506.22971"
y="166.02385"
id="text3799-0-8"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="506.22971"
y="166.02385"
id="tspan3801-1-3"
style="text-align:center;text-anchor:middle">Owner 0's</tspan><tspan
x="506.22971"
y="178.52385"
id="tspan3806-8-2"
style="text-align:center;text-anchor:middle">Signature</tspan></text>
<rect
width="36.596325"
height="19.17119"
ry="0.48191661"
x="488.33136"
y="114.13811"
id="rect3777-3-7"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="506.22971"
y="127.38551"
id="text3779-1-8"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="506.22971"
y="127.38551"
id="tspan3783-9-3"
style="text-align:center;text-anchor:middle">Hash</tspan></text>
<rect
width="73.741135"
height="32.829956"
ry="0.82526439"
x="470.59778"
y="214.69511"
id="rect2993-8-9-1"
style="color:#000000;fill:#ffe3e2;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="507.06851"
y="227.8271"
id="text2995-2-0-7"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="507.06851"
y="227.8271"
id="tspan2997-0-4-2"
style="text-align:center;text-anchor:middle">Owner 3's</tspan><tspan
x="507.06851"
y="240.3271"
id="tspan2999-5-4-8"
style="text-align:center;text-anchor:middle">Private Key</tspan></text>
<rect
width="84.547424"
height="150.7124"
ry="0.77619708"
x="464.86087"
y="43.190441"
id="rect2987-3-0-7"
style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="471.02161"
y="57.179874"
id="text2989-6-4-9"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="471.02161"
y="57.179874"
id="tspan2991-4-3-1"
style="font-weight:bold;-inkscape-font-specification:Sans Bold">Transaction</tspan></text>
<path
d="m 429.85792,102.63674 69.19545,0 0,9.34391"
id="path3814-9-2-0"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="translate(309.9023,82.397919)"
id="path3816-4-7-7"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 513.80861,85.311411 0,26.308199"
id="path3814-6-7-5-0"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="translate(324.53127,82.415686)"
id="path3816-0-5-9-3"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 506.55485,122.77509 0,26.3082"
id="path3814-6-3-4-9-0"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="translate(317.27751,119.87936)"
id="path3816-0-8-2-0-6"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
width="73.741135"
height="32.829956"
ry="0.82526439"
x="470.26404"
y="62.988247"
id="rect2993-81-7-9"
style="color:#000000;fill:#ffe3e2;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="506.73477"
y="76.120239"
id="text2995-8-6-8"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="506.73477"
y="76.120239"
id="tspan2997-03-2-7"
style="text-align:center;text-anchor:middle">Owner 3's</tspan><tspan
x="506.73477"
y="88.620239"
id="tspan2999-0-2-7"
style="text-align:center;text-anchor:middle">Public Key</tspan></text>
<rect
width="60.143658"
height="34.132225"
ry="0.85800016"
x="476.55771"
y="151.60936"
id="rect3797-1-9-4"
style="color:#000000;fill:#d2ffc5;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="506.22971"
y="166.02382"
id="text3799-2-9-3"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="506.22971"
y="166.02382"
id="tspan3801-7-6-7"
style="text-align:center;text-anchor:middle">Owner 2's</tspan><tspan
x="506.22971"
y="178.52382"
id="tspan3806-4-5-2"
style="text-align:center;text-anchor:middle">Signature</tspan></text>
<rect
width="36.596325"
height="19.17119"
ry="0.48191661"
x="488.33136"
y="114.13808"
id="rect3777-9-1-1"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="506.22971"
y="127.38548"
id="text3779-6-4-3"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="506.22971"
y="127.38548"
id="tspan3783-2-6-6"
style="text-align:center;text-anchor:middle">Hash</tspan></text>
<path
d="m 593.50263,157.69008 -57.83123,-31.31473 0,-30.557115"
id="path4415-7-4"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3, 3;stroke-dashoffset:0" />
<path
d="m 594.0891,180.39873 -51.67907,40.67356"
id="path4415-9-7-5"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.00000002, 3.00000002;stroke-dashoffset:0" />
<rect
width="84.547424"
height="150.7124"
ry="0.77619708"
x="344.86087"
y="43.190468"
id="rect2987-9"
style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="351.02161"
y="57.179901"
id="text2989-7"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="351.02161"
y="57.179901"
id="tspan2991-0"
style="font-weight:bold;-inkscape-font-specification:Sans Bold">Transaction</tspan></text>
<path
d="m 309.85792,102.63676 69.19545,0 0,9.34392"
id="path3814-5"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="translate(189.9023,82.397946)"
id="path3816-5"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 393.80861,85.311438 0,26.308202"
id="path3814-6-5"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="translate(204.53127,82.415713)"
id="path3816-0-0"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 386.55485,122.77511 0,26.30821"
id="path3814-6-3-5"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="translate(197.27751,119.87939)"
id="path3816-0-8-27"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
width="73.741135"
height="32.829956"
ry="0.82526439"
x="350.26404"
y="62.988274"
id="rect2993-2"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="386.73477"
y="76.120262"
id="text2995-6"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="386.73477"
y="76.120262"
id="tspan2997-06"
style="text-align:center;text-anchor:middle">Owner 1's</tspan><tspan
x="386.73477"
y="88.620262"
id="tspan2999-9"
style="text-align:center;text-anchor:middle">Public Key</tspan></text>
<rect
width="60.143658"
height="34.132225"
ry="0.85800016"
x="356.55771"
y="151.60939"
id="rect3797-5"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="386.22971"
y="166.02385"
id="text3799-0"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="386.22971"
y="166.02385"
id="tspan3801-1"
style="text-align:center;text-anchor:middle">Owner 0's</tspan><tspan
x="386.22971"
y="178.52385"
id="tspan3806-8"
style="text-align:center;text-anchor:middle">Signature</tspan></text>
<rect
width="36.596325"
height="19.17119"
ry="0.48191661"
x="368.33136"
y="114.13811"
id="rect3777-3"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="386.22971"
y="127.38551"
id="text3779-1"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="386.22971"
y="127.38551"
id="tspan3783-9"
style="text-align:center;text-anchor:middle">Hash</tspan></text>
<rect
width="73.741135"
height="32.829956"
ry="0.82526439"
x="350.59778"
y="214.69511"
id="rect2993-8-9"
style="color:#000000;fill:#d2ffc5;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="387.06851"
y="227.8271"
id="text2995-2-0"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="387.06851"
y="227.8271"
id="tspan2997-0-4"
style="text-align:center;text-anchor:middle">Owner 2's</tspan><tspan
x="387.06851"
y="240.3271"
id="tspan2999-5-4"
style="text-align:center;text-anchor:middle">Private Key</tspan></text>
<rect
width="84.547424"
height="150.7124"
ry="0.77619708"
x="344.86087"
y="43.190441"
id="rect2987-3-0"
style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="351.02161"
y="57.179874"
id="text2989-6-4"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="351.02161"
y="57.179874"
id="tspan2991-4-3"
style="font-weight:bold;-inkscape-font-specification:Sans Bold">Transaction</tspan></text>
<path
d="m 309.85792,102.63674 69.19545,0 0,9.34391"
id="path3814-9-2"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="translate(189.9023,82.397919)"
id="path3816-4-7"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 393.80861,85.311411 0,26.308199"
id="path3814-6-7-5"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="translate(204.53127,82.415686)"
id="path3816-0-5-9"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 386.55485,122.77509 0,26.3082"
id="path3814-6-3-4-9"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="translate(197.27751,119.87936)"
id="path3816-0-8-2-0"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
width="73.741135"
height="32.829956"
ry="0.82526439"
x="350.26404"
y="62.988247"
id="rect2993-81-7"
style="color:#000000;fill:#d2ffc5;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="386.73477"
y="76.120239"
id="text2995-8-6"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="386.73477"
y="76.120239"
id="tspan2997-03-2"
style="text-align:center;text-anchor:middle">Owner 2's</tspan><tspan
x="386.73477"
y="88.620239"
id="tspan2999-0-2"
style="text-align:center;text-anchor:middle">Public Key</tspan></text>
<rect
width="60.143658"
height="34.132225"
ry="0.85800016"
x="356.55771"
y="151.60936"
id="rect3797-1-9"
style="color:#000000;fill:#fff5c5;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="386.22971"
y="166.02382"
id="text3799-2-9"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="386.22971"
y="166.02382"
id="tspan3801-7-6"
style="text-align:center;text-anchor:middle">Owner 1's</tspan><tspan
x="386.22971"
y="178.52382"
id="tspan3806-4-5"
style="text-align:center;text-anchor:middle">Signature</tspan></text>
<rect
width="36.596325"
height="19.17119"
ry="0.48191661"
x="368.33136"
y="114.13808"
id="rect3777-9-1"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="386.22971"
y="127.38548"
id="text3779-6-4"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="386.22971"
y="127.38548"
id="tspan3783-2-6"
style="text-align:center;text-anchor:middle">Hash</tspan></text>
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="matrix(-1,0,0,-1,662.55713,185.79436)"
id="path3816-4-1-1-7"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 473.50263,157.69008 -57.83123,-31.31473 0,-30.557115"
id="path4415-7"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3, 3;stroke-dashoffset:0" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="matrix(-0.98549886,0.16968209,0.16968209,0.98549886,655.6333,120.62283)"
id="path3816-4-1-1-8-0"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 474.0891,180.39873 -51.67907,40.67356"
id="path4415-9-7"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.00000002, 3.00000002;stroke-dashoffset:0" />
<text
x="458.75223"
y="-91.694557"
transform="matrix(0.87907241,0.47668826,-0.47668826,0.87907241,0,0)"
id="text4475-0"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="458.75223"
y="-91.694557"
id="tspan4477-1"
style="font-size:8px">Verify</tspan></text>
<text
x="229.34293"
y="432.17374"
transform="matrix(0.78058103,-0.6250546,0.6250546,0.78058103,0,0)"
id="text4475-7-6"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="229.34293"
y="432.17374"
id="tspan4477-9-9"
style="font-size:8px">Sign</tspan></text>
<rect
width="84.547424"
height="150.7124"
ry="0.77619708"
x="224.86087"
y="43.190468"
id="rect2987"
style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="231.02162"
y="57.179901"
id="text2989"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="231.02162"
y="57.179901"
id="tspan2991"
style="font-weight:bold;-inkscape-font-specification:Sans Bold">Transaction</tspan></text>
<path
d="m 189.85792,102.63676 69.19545,0 0,9.34392"
id="path3814"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="translate(69.902301,82.397946)"
id="path3816"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 273.80861,85.311438 0,26.308202"
id="path3814-6"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="translate(84.531271,82.415713)"
id="path3816-0"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 266.55485,122.77511 0,26.30821"
id="path3814-6-3"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="translate(77.27751,119.87939)"
id="path3816-0-8"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
width="73.741135"
height="32.829956"
ry="0.82526439"
x="230.26402"
y="62.988274"
id="rect2993"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="266.73477"
y="76.120262"
id="text2995"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="266.73477"
y="76.120262"
id="tspan2997"
style="text-align:center;text-anchor:middle">Owner 1's</tspan><tspan
x="266.73477"
y="88.620262"
id="tspan2999"
style="text-align:center;text-anchor:middle">Public Key</tspan></text>
<rect
width="60.143658"
height="34.132225"
ry="0.85800016"
x="236.55771"
y="151.60939"
id="rect3797"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="266.22971"
y="166.02385"
id="text3799"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="266.22971"
y="166.02385"
id="tspan3801"
style="text-align:center;text-anchor:middle">Owner 0's</tspan><tspan
x="266.22971"
y="178.52385"
id="tspan3806"
style="text-align:center;text-anchor:middle">Signature</tspan></text>
<rect
width="36.596325"
height="19.17119"
ry="0.48191661"
x="248.33136"
y="114.13811"
id="rect3777"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="266.22971"
y="127.38551"
id="text3779"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="266.22971"
y="127.38551"
id="tspan3783"
style="text-align:center;text-anchor:middle">Hash</tspan></text>
<rect
width="73.741135"
height="32.829956"
ry="0.82526439"
x="230.59778"
y="214.69511"
id="rect2993-8"
style="color:#000000;fill:#fff5c5;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="267.06851"
y="227.8271"
id="text2995-2"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="267.06851"
y="227.8271"
id="tspan2997-0"
style="text-align:center;text-anchor:middle">Owner 1's</tspan><tspan
x="267.06851"
y="240.3271"
id="tspan2999-5"
style="text-align:center;text-anchor:middle">Private Key</tspan></text>
<rect
width="84.547424"
height="150.7124"
ry="0.77619708"
x="224.86087"
y="43.190441"
id="rect2987-3"
style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="231.02162"
y="57.179874"
id="text2989-6"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="231.02162"
y="57.179874"
id="tspan2991-4"
style="font-weight:bold;-inkscape-font-specification:Sans Bold">Transaction</tspan></text>
<path
d="m 189.85792,102.63674 69.19545,0 0,9.34391"
id="path3814-9"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="translate(69.902301,82.397919)"
id="path3816-4"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 273.80861,85.311411 0,26.308199"
id="path3814-6-7"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="translate(84.531271,82.415686)"
id="path3816-0-5"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 266.55485,122.77509 0,26.3082"
id="path3814-6-3-4"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="translate(77.27751,119.87936)"
id="path3816-0-8-2"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
width="73.741135"
height="32.829956"
ry="0.82526439"
x="230.26402"
y="62.988247"
id="rect2993-81"
style="color:#000000;fill:#fff5c5;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="266.73477"
y="76.120239"
id="text2995-8"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="266.73477"
y="76.120239"
id="tspan2997-03"
style="text-align:center;text-anchor:middle">Owner 1's</tspan><tspan
x="266.73477"
y="88.620239"
id="tspan2999-0"
style="text-align:center;text-anchor:middle">Public Key</tspan></text>
<rect
width="60.143658"
height="34.132225"
ry="0.85800016"
x="236.55771"
y="151.60936"
id="rect3797-1"
style="color:#000000;fill:#d5f3ff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="266.22971"
y="166.02382"
id="text3799-2"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="266.22971"
y="166.02382"
id="tspan3801-7"
style="text-align:center;text-anchor:middle">Owner 0's</tspan><tspan
x="266.22971"
y="178.52382"
id="tspan3806-4"
style="text-align:center;text-anchor:middle">Signature</tspan></text>
<rect
width="36.596325"
height="19.17119"
ry="0.48191661"
x="248.33136"
y="114.13808"
id="rect3777-9"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<text
x="266.22971"
y="127.38548"
id="text3779-6"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="266.22971"
y="127.38548"
id="tspan3783-2"
style="text-align:center;text-anchor:middle">Hash</tspan></text>
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="matrix(-1,0,0,-1,542.55713,185.79436)"
id="path3816-4-1-1"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 353.50263,157.69008 -57.83123,-31.31473 0,-30.557115"
id="path4415"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3, 3;stroke-dashoffset:0" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="matrix(-0.98549886,0.16968209,0.16968209,0.98549886,535.6333,120.62283)"
id="path3816-4-1-1-8"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 354.0891,180.39873 -51.67907,40.67356"
id="path4415-9"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.00000002, 3.00000002;stroke-dashoffset:0" />
<text
x="353.26355"
y="-34.491974"
transform="matrix(0.87907241,0.47668826,-0.47668826,0.87907241,0,0)"
id="text4475"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="353.26355"
y="-34.491974"
id="tspan4477"
style="font-size:8px">Verify</tspan></text>
<text
x="135.6732"
y="357.16718"
transform="matrix(0.78058103,-0.6250546,0.6250546,0.78058103,0,0)"
id="text4475-7"
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan
x="135.6732"
y="357.16718"
id="tspan4477-9"
style="font-size:8px">Sign</tspan></text>
<path
d="m 549.5881,102.63674 31.85437,0"
id="path3814-9-2-0-6"
style="fill:none;stroke:#000000;stroke-width:0.67849362px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<rect
width="49.606487"
height="189.00754"
ry="0.82574069"
x="553.45837"
y="50.054325"
id="rect5356"
style="color:#000000;fill:url(#linearGradient6579-1);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="matrix(-1,0,0,-1,422.55713,185.79436)"
id="path3816-4-1-1-0"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="M 233.50263,157.69008 175.6714,126.37535"
id="path4415-93"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3, 3;stroke-dashoffset:0" />
<path
d="m 189.15106,31.855574 -1.53093,-2.651651 -1.53093,-2.65165 3.06186,0 3.06186,0 -1.53093,2.65165 z"
transform="matrix(-0.98549886,0.16968209,0.16968209,0.98549886,415.6333,120.62283)"
id="path3816-4-1-1-8-3"
style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
d="m 234.0891,180.39873 -51.67907,40.67356"
id="path4415-9-5"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.00000002, 3.00000002;stroke-dashoffset:0" />
<rect
width="44.842777"
height="189.00754"
ry="0.82574069"
x="-219.90509"
y="50.05434"
transform="scale(-1,1)"
id="rect5356-5"
style="color:#000000;fill:url(#linearGradient6581-5);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
</g>
</g>
</svg>
content/slides/privacy/images/bitcoin/white-paper-1.png

30 KiB

content/slides/privacy/images/bitcoin/white-paper-2.png

7.12 KiB

content/slides/privacy/images/bitcoin/white-paper-3.png

9.56 KiB

content/slides/privacy/images/browsers/ad.png

86.7 KiB

content/slides/privacy/images/browsers/browsers.jpg

19.4 KiB

content/slides/privacy/images/browsers/chiffrement-symetrique.png

78.4 KiB