You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mnemonic.apache.org by ga...@apache.org on 2017/07/27 22:36:14 UTC

[1/7] incubator-mnemonic-site git commit: MNEMONIC-312: Illustrate usage cases of Durable Object Model in diagrams

Repository: incubator-mnemonic-site
Updated Branches:
  refs/heads/master e2dff60ce -> 8b18190d7


http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/blob/34515c3c/src/index.html
----------------------------------------------------------------------
diff --git a/src/index.html b/src/index.html
index 7866517..ce4e086 100644
--- a/src/index.html
+++ b/src/index.html
@@ -25,17 +25,17 @@ overview: true
         <div class="unit one-third">
             <h2>Durable Object Model</h2>
             <p>Persist your linked objects without SerDe.</p>
-            <a href="/docs/arch.html">Architecture <i class="fa fa-arrow-circle-o-right"></i></a>
+            <a href="/docs/domusecases">Use Cases <i class="fa fa-arrow-circle-o-right"></i></a>
         </div>
         <div class="unit one-third">
             <h2>Durable Computing Model</h2>
             <p>Process your linked objects in native code.</p>
-            <a href="/docs/future.html">Future <i class="fa fa-arrow-circle-o-right"></i></a>
+            <a href="/docs/arch">Architecture <i class="fa fa-arrow-circle-o-right"></i></a>
         </div>
         <div class="unit one-third">
             <h2>Durable Memory Service</h2>
             <p>Abstract storage as memory transparently</p>
-            <a href="/docs/devices.html">Devices <i class="fa fa-arrow-circle-o-right"></i></a>
+            <a href="/docs/devices">Devices <i class="fa fa-arrow-circle-o-right"></i></a>
         </div>
         <div class="clear"></div>
     </div>


[6/7] incubator-mnemonic-site git commit: MNEMONIC-312: Illustrate usage cases of Durable Object Model in diagrams

Posted by ga...@apache.org.
MNEMONIC-312: Illustrate usage cases of Durable Object Model in diagrams


Project: http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/commit/34515c3c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/tree/34515c3c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/diff/34515c3c

Branch: refs/heads/master
Commit: 34515c3c8dda27f7a91e49ed46c57045c9f18ad3
Parents: e2dff60
Author: Wang, Gang(Gary) <ga...@intel.com>
Authored: Wed Jul 26 15:04:43 2017 -0700
Committer: Wang, Gang(Gary) <ga...@intel.com>
Committed: Wed Jul 26 15:04:43 2017 -0700

----------------------------------------------------------------------
 asset/durablediagrams.odg              | Bin 0 -> 15498 bytes
 src/_data/docs.yml                     |   4 +-
 src/_docs/domusecases.md               |  25 +
 src/img/arch.svg                       |  40 +-
 src/img/durable1dchunkwithobjects.svg  | 252 +++++++++
 src/img/durable2dbufferwithobjects.svg | 367 +++++++++++++
 src/img/durablechunkbuffers.svg        | 199 +++++++
 src/img/durablegenericobject.svg       | 184 +++++++
 src/img/durablelist.svg                | 227 ++++++++
 src/img/durableobjectwithbuffer.svg    | 181 +++++++
 src/img/durableobjectwithchunk.svg     | 197 +++++++
 src/img/durableobjectwithobjects.svg   | 199 +++++++
 src/img/durableplainobject.svg         | 168 ++++++
 src/img/flowcomputing.svg              | 780 ++++++++++++++++++++++++++++
 src/index.html                         |   6 +-
 15 files changed, 2804 insertions(+), 25 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/blob/34515c3c/asset/durablediagrams.odg
----------------------------------------------------------------------
diff --git a/asset/durablediagrams.odg b/asset/durablediagrams.odg
new file mode 100755
index 0000000..8823626
Binary files /dev/null and b/asset/durablediagrams.odg differ

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/blob/34515c3c/src/_data/docs.yml
----------------------------------------------------------------------
diff --git a/src/_data/docs.yml b/src/_data/docs.yml
index d7d8b38..7fd3b36 100644
--- a/src/_data/docs.yml
+++ b/src/_data/docs.yml
@@ -2,11 +2,11 @@
   docs:
   - arch
   - features
-  - gcdata
   - modes
   - memsrvcmp
   - integration
-
+  - domusecases
+  - gcdata
 
 - title: Usage
   docs:

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/blob/34515c3c/src/_docs/domusecases.md
----------------------------------------------------------------------
diff --git a/src/_docs/domusecases.md b/src/_docs/domusecases.md
new file mode 100644
index 0000000..fd441f4
--- /dev/null
+++ b/src/_docs/domusecases.md
@@ -0,0 +1,25 @@
+---
+layout: docs
+title: DOM Use Cases
+permalink: /docs/domusecases.html
+---
+
+<hr/>![Durable_Plain_Object](/img/durableplainobject.svg)
+
+<hr/>![Durable_Generic_Object](/img/durablegenericobject.svg)
+
+<hr/>![Durable_Object_with_Buffer](/img/durableobjectwithbuffer.svg)
+
+<hr/>![Durable_Object_with_Chunk](/img/durableobjectwithchunk.svg)
+
+<hr/>![Durable_Object_with_Objects](/img/durableobjectwithobjects.svg)
+
+<hr/>![Durable_List](/img/durablelist.svg)
+
+<hr/>![Durable_1d_Chunk_with_Objects](/img/durable1dchunkwithobjects.svg)
+
+<hr/>![Durable_2d_Buffer_with_Objects](/img/durable2dbufferwithobjects.svg)
+
+<hr/>![Durable_Chunk_Buffers](/img/durablechunkbuffers.svg)
+
+

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/blob/34515c3c/src/img/arch.svg
----------------------------------------------------------------------
diff --git a/src/img/arch.svg b/src/img/arch.svg
index 7d2b21c..34f09c7 100755
--- a/src/img/arch.svg
+++ b/src/img/arch.svg
@@ -104,10 +104,10 @@
       </g>
       <g class="com.sun.star.drawing.CustomShape">
        <g id="id4">
-        <rect class="BoundingBox" stroke="none" fill="none" x="1315" y="8775" width="17149" height="2564"/>
-        <path fill="rgb(159,158,95)" stroke="none" d="M 9889,11337 L 1316,11337 1316,8776 18462,8776 18462,11337 9889,11337 Z"/>
-        <path fill="none" stroke="rgb(52,101,164)" d="M 9889,11337 L 1316,11337 1316,8776 18462,8776 18462,11337 9889,11337 Z"/>
-        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="6623" y="10277"><tspan fill="rgb(255,255,255)" stroke="none">Durable Object Model</tspan></tspan></tspan></text>
+        <rect class="BoundingBox" stroke="none" fill="none" x="1315" y="8799" width="17149" height="2564"/>
+        <path fill="rgb(159,158,95)" stroke="none" d="M 9889,11361 L 1316,11361 1316,8800 18462,8800 18462,11361 9889,11361 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 9889,11361 L 1316,11361 1316,8800 18462,8800 18462,11361 9889,11361 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="6623" y="10301"><tspan fill="rgb(255,255,255)" stroke="none">Durable Object Model</tspan></tspan></tspan></text>
        </g>
       </g>
       <g class="com.sun.star.drawing.CustomShape">
@@ -154,34 +154,34 @@
       </g>
       <g class="com.sun.star.drawing.CustomShape">
        <g id="id11">
-        <rect class="BoundingBox" stroke="none" fill="none" x="1315" y="11460" width="17133" height="1691"/>
-        <path fill="rgb(83,168,0)" stroke="none" d="M 9881,13149 L 1316,13149 1316,11461 18446,11461 18446,13149 9881,13149 Z"/>
-        <path fill="none" stroke="rgb(52,101,164)" d="M 9881,13149 L 1316,13149 1316,11461 18446,11461 18446,13149 9881,13149 Z"/>
-        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="3982" y="12526"><tspan fill="rgb(255,255,255)" stroke="none">Non-Volatile / Volatile Memory Services</tspan></tspan></tspan></text>
+        <rect class="BoundingBox" stroke="none" fill="none" x="1315" y="11484" width="17133" height="1691"/>
+        <path fill="rgb(83,168,0)" stroke="none" d="M 9881,13173 L 1316,13173 1316,11485 18446,11485 18446,13173 9881,13173 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 9881,13173 L 1316,13173 1316,11485 18446,11485 18446,13173 9881,13173 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="3982" y="12550"><tspan fill="rgb(255,255,255)" stroke="none">Non-Volatile / Volatile Memory Services</tspan></tspan></tspan></text>
        </g>
       </g>
       <g class="com.sun.star.drawing.CustomShape">
        <g id="id12">
-        <rect class="BoundingBox" stroke="none" fill="none" x="1315" y="13274" width="6099" height="2002"/>
-        <path fill="rgb(128,0,63)" stroke="none" d="M 4364,15274 L 1316,15274 1316,13275 7412,13275 7412,15274 4364,15274 Z"/>
-        <path fill="none" stroke="rgb(52,101,164)" d="M 4364,15274 L 1316,15274 1316,13275 7412,13275 7412,15274 4364,15274 Z"/>
-        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="2106" y="14144"><tspan fill="rgb(255,255,255)" stroke="none">Local / Remote</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="3183" y="14847"><tspan fill="rgb(255,255,255)" stroke="none">Storage</tspan></tspan></tspan></text>
+        <rect class="BoundingBox" stroke="none" fill="none" x="1315" y="13298" width="6099" height="2002"/>
+        <path fill="rgb(128,0,63)" stroke="none" d="M 4364,15298 L 1316,15298 1316,13299 7412,13299 7412,15298 4364,15298 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 4364,15298 L 1316,15298 1316,13299 7412,13299 7412,15298 4364,15298 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="2106" y="14168"><tspan fill="rgb(255,255,255)" stroke="none">Local / Remote</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="3183" y="14871"><tspan fill="rgb(255,255,255)" stroke="none">Storage</tspan></tspan></tspan></text>
        </g>
       </g>
       <g class="com.sun.star.drawing.CustomShape">
        <g id="id13">
-        <rect class="BoundingBox" stroke="none" fill="none" x="12999" y="13274" width="5443" height="2002"/>
-        <path fill="rgb(128,0,63)" stroke="none" d="M 15720,15274 L 13000,15274 13000,13275 18440,13275 18440,15274 15720,15274 Z"/>
-        <path fill="none" stroke="rgb(52,101,164)" d="M 15720,15274 L 13000,15274 13000,13275 18440,13275 18440,15274 15720,15274 Z"/>
-        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="13606" y="14144"><tspan fill="rgb(255,255,255)" stroke="none">Storage Class</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="14505" y="14847"><tspan fill="rgb(255,255,255)" stroke="none">Memory</tspan></tspan></tspan></text>
+        <rect class="BoundingBox" stroke="none" fill="none" x="12999" y="13298" width="5443" height="2002"/>
+        <path fill="rgb(128,0,63)" stroke="none" d="M 15720,15298 L 13000,15298 13000,13299 18440,13299 18440,15298 15720,15298 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 15720,15298 L 13000,15298 13000,13299 18440,13299 18440,15298 15720,15298 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="13606" y="14168"><tspan fill="rgb(255,255,255)" stroke="none">Storage Class</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="14505" y="14871"><tspan fill="rgb(255,255,255)" stroke="none">Memory</tspan></tspan></tspan></text>
        </g>
       </g>
       <g class="com.sun.star.drawing.CustomShape">
        <g id="id14">
-        <rect class="BoundingBox" stroke="none" fill="none" x="7538" y="13274" width="5337" height="2002"/>
-        <path fill="rgb(128,0,63)" stroke="none" d="M 10206,15274 L 7539,15274 7539,13275 12873,13275 12873,15274 10206,15274 Z"/>
-        <path fill="none" stroke="rgb(52,101,164)" d="M 10206,15274 L 7539,15274 7539,13275 12873,13275 12873,15274 10206,15274 Z"/>
-        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="8885" y="14144"><tspan fill="rgb(255,255,255)" stroke="none">Dynamic</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="8991" y="14847"><tspan fill="rgb(255,255,255)" stroke="none">Memory</tspan></tspan></tspan></text>
+        <rect class="BoundingBox" stroke="none" fill="none" x="7538" y="13298" width="5337" height="2002"/>
+        <path fill="rgb(128,0,63)" stroke="none" d="M 10206,15298 L 7539,15298 7539,13299 12873,13299 12873,15298 10206,15298 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 10206,15298 L 7539,15298 7539,13299 12873,13299 12873,15298 10206,15298 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="8885" y="14168"><tspan fill="rgb(255,255,255)" stroke="none">Dynamic</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="8991" y="14871"><tspan fill="rgb(255,255,255)" stroke="none">Memory</tspan></tspan></tspan></text>
        </g>
       </g>
      </g>

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/blob/34515c3c/src/img/durable1dchunkwithobjects.svg
----------------------------------------------------------------------
diff --git a/src/img/durable1dchunkwithobjects.svg b/src/img/durable1dchunkwithobjects.svg
new file mode 100755
index 0000000..d430e42
--- /dev/null
+++ b/src/img/durable1dchunkwithobjects.svg
@@ -0,0 +1,252 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="198.12mm" height="165.1mm" viewBox="0 0 19812 16510" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+  <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+   <rect x="0" y="0" width="19812" height="16510"/>
+  </clipPath>
+  <clipPath id="presentation_clip_path_shrink" clipPathUnits="userSpaceOnUse">
+   <rect x="19" y="16" width="19773" height="16477"/>
+  </clipPath>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_1" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="901" d="M 314,1082 L 314,396 C 314,325 321,269 335,230 349,191 371,162 402,145 433,128 478,119 537,119 624,119 692,149 742,208 792,267 817,350 817,455 L 817,1082 997,1082 997,231 C 997,105 999,28 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 826,132 825,185 L 822,185 C 781,110 733,58 679,27 624,-4 557,-20 476,-20 357,-20 271,10 216,69 161,128 133,225 133,361 L 133,1082 314,1082 Z"/>
+   <glyph unicode="s" horiz-adv-x="901" d="M 950,299 C 950,197 912,118 835,63 758,8 650,-20 511,-20 376,-20 273,2 200,47 127,91 79,160 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 602,117 669,131 712,159 754,187 775,229 775,285 775,328 760,362 731,389 702,416 654,438 589,455 L 460,489 C 357,516 283,542 240,568 196,593 162,624 137,661 112,698 100,743 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 759,862 732,899 689,925 645,950 586,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,783 283,758 299,738 315,718 339,701 370,687 401,673 467,654 568,629 663,605 732,583 774,563 816,542 849,520 874,495 898,470 917,442 930,410 943,377 950,340 950,299 Z"/>
+   <glyph unicode="r" horiz-adv-x="531" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
+   <glyph unicode="o" horiz-adv-x="971" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
+   <glyph unicode="n" horiz-adv-x="901" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
+   <glyph unicode="l" horiz-adv-x="178" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
+   <glyph unicode="k" horiz-adv-x="919" d="M 816,0 L 450,494 318,385 318,0 138,0 138,1484 318,1484 318,557 793,1082 1004,1082 565,617 1027,0 816,0 Z"/>
+   <glyph unicode="h" horiz-adv-x="883" d="M 317,897 C 356,968 402,1020 457,1053 511,1086 580,1102 663,1102 780,1102 867,1073 923,1015 978,956 1006,858 1006,721 L 1006,0 825,0 825,686 C 825,762 818,819 804,856 790,893 767,920 735,937 703,954 659,963 602,963 517,963 450,934 399,875 348,816 322,737 322,638 L 322,0 142,0 142,1484 322,1484 322,1098 C 322,1057 321,1015 319,972 316,929 315,904 314,897 L 317,897 Z"/>
+   <glyph unicode="e" horiz-adv-x="971" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
+   <glyph unicode="b" horiz-adv-x="936" d="M 1053,546 C 1053,169 920,-20 655,-20 573,-20 505,-5 451,25 396,54 352,102 318,168 L 316,168 C 316,147 315,116 312,74 309,31 307,7 306,0 L 132,0 C 136,36 138,110 138,223 L 138,1484 318,1484 318,1061 C 318,1018 317,967 314,908 L 318,908 C 351,977 396,1027 451,1057 506,1087 574,1102 655,1102 792,1102 892,1056 957,964 1021,872 1053,733 1053,546 Z M 864,540 C 864,691 844,800 804,865 764,930 699,963 609,963 508,963 434,928 388,859 341,790 318,680 318,529 318,387 341,282 386,215 431,147 505,113 607,113 698,113 763,147 804,214 844,281 864,389 864,540 Z"/>
+   <glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,66 114,123 87,202 87,302 87,414 124,500 198,560 271,620 390,652 554,656 L 797,660 797,719 C 797,807 778,870 741,908 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,190 723,231 753,284 782,336 797,390 797,445 L 797,534 600,530 C 515,529 451,520 408,504 364,488 330,463 307,430 284,397 272,353 272,299 272,240 288,195 320,163 351,131 396,115 455,115 Z"/>
+   <glyph unicode="P" horiz-adv-x="1094" d="M 1258,985 C 1258,852 1215,746 1128,667 1041,588 922,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 919,1409 1041,1372 1128,1298 1215,1224 1258,1120 1258,985 Z M 1066,983 C 1066,1165 957,1256 738,1256 L 359,1256 359,700 746,700 C 959,700 1066,794 1066,983 Z"/>
+   <glyph unicode="E" horiz-adv-x="1112" d="M 168,0 L 168,1409 1237,1409 1237,1253 359,1253 359,801 1177,801 1177,647 359,647 359,156 1278,156 1278,0 168,0 Z"/>
+   <glyph unicode="D" horiz-adv-x="1235" d="M 1381,719 C 1381,574 1353,447 1296,338 1239,229 1159,145 1055,87 951,29 831,0 695,0 L 168,0 168,1409 634,1409 C 873,1409 1057,1349 1187,1230 1316,1110 1381,940 1381,719 Z M 1189,719 C 1189,894 1141,1027 1046,1119 950,1210 811,1256 630,1256 L 359,1256 359,153 673,153 C 776,153 867,176 946,221 1024,266 1084,332 1126,417 1168,502 1189,603 1189,719 Z"/>
+   <glyph unicode="C" horiz-adv-x="1306" d="M 792,1274 C 636,1274 515,1224 428,1124 341,1023 298,886 298,711 298,538 343,400 434,295 524,190 646,137 800,137 997,137 1146,235 1245,430 L 1401,352 C 1343,231 1262,138 1157,75 1052,12 930,-20 791,-20 649,-20 526,10 423,69 319,128 240,212 186,322 131,431 104,561 104,711 104,936 165,1112 286,1239 407,1366 575,1430 790,1430 940,1430 1065,1401 1166,1342 1267,1283 1341,1196 1388,1081 L 1207,1021 C 1174,1103 1122,1166 1050,1209 977,1252 891,1274 792,1274 Z"/>
+   <glyph unicode="&gt;" horiz-adv-x="1024" d="M 101,154 L 101,307 959,674 101,1040 101,1194 1096,776 1096,571 101,154 Z"/>
+   <glyph unicode="&lt;" horiz-adv-x="1024" d="M 101,571 L 101,776 1096,1194 1096,1040 238,674 1096,307 1096,154 101,571 Z"/>
+   <glyph unicode=" " horiz-adv-x="564"/>
+  </font>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_2" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="423"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="w" horiz-adv-x="1695" d="M 1313,0 L 1016,0 844,660 C 836,690 820,764 797,882 L 745,658 571,0 274,0 -6,1082 258,1082 436,255 450,329 475,446 645,1082 946,1082 1112,446 C 1121,411 1135,348 1153,255 L 1181,387 1337,1082 1597,1082 1313,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="1007" d="M 408,1082 L 408,475 C 408,285 472,190 600,190 668,190 723,219 765,278 806,336 827,411 827,502 L 827,1082 1108,1082 1108,242 C 1108,150 1111,69 1116,0 L 848,0 C 840,96 836,168 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 368,-20 280,15 219,86 158,156 127,259 127,395 L 127,1082 408,1082 Z"/>
+   <glyph unicode="t" horiz-adv-x="653" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 585,176 616,181 657,190 L 657,16 C 588,-7 509,-18 420,-18 Z"/>
+   <glyph unicode="s" horiz-adv-x="1006" d="M 1055,316 C 1055,211 1012,129 927,70 841,10 722,-20 571,-20 422,-20 309,4 230,51 151,98 98,171 72,270 L 319,307 C 333,256 357,219 392,198 426,177 486,166 571,166 650,166 707,176 743,196 779,216 797,247 797,290 797,325 783,352 754,373 725,393 675,410 606,424 447,455 340,485 285,512 230,539 188,574 159,617 130,660 115,712 115,775 115,878 155,959 235,1017 314,1074 427,1103 573,1103 702,1103 805,1078 884,1028 962,978 1011,906 1030,811 L 781,785 C 773,829 753,862 722,884 691,905 641,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,774 386,749 412,731 437,712 480,697 541,685 626,668 701,650 767,632 832,613 885,591 925,566 964,541 996,508 1020,469 1043,429 1055,378 1055,316 Z"/>
+   <glyph unicode="r" horiz-adv-x="654" d="M 143,0 L 143,828 C 143,887 142,937 141,977 139,1016 137,1051 135,1082 L 403,1082 C 405,1070 408,1034 411,973 414,912 416,871 416,851 L 420,851 C 447,927 472,981 493,1012 514,1043 540,1066 569,1081 598,1096 635,1103 679,1103 715,1103 744,1098 766,1088 L 766,853 C 721,863 681,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+   <glyph unicode="o" horiz-adv-x="1112" d="M 1171,542 C 1171,367 1122,229 1025,130 928,30 793,-20 621,-20 452,-20 320,30 224,130 128,230 80,367 80,542 80,716 128,853 224,953 320,1052 454,1102 627,1102 804,1102 939,1054 1032,958 1125,861 1171,723 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 460,909 375,787 375,542 375,421 396,330 438,267 479,204 539,172 618,172 791,172 877,295 877,542 Z"/>
+   <glyph unicode="n" horiz-adv-x="1007" d="M 844,0 L 844,607 C 844,797 780,892 651,892 583,892 528,863 487,805 445,746 424,671 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 883,1103 971,1068 1032,997 1093,926 1124,823 1124,687 L 1124,0 844,0 Z"/>
+   <glyph unicode="l" horiz-adv-x="283" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+   <glyph unicode="k" horiz-adv-x="1007" d="M 834,0 L 545,490 424,406 424,0 143,0 143,1484 424,1484 424,634 810,1082 1112,1082 732,660 1141,0 834,0 Z"/>
+   <glyph unicode="j" horiz-adv-x="459" d="M 144,1277 L 144,1484 425,1484 425,1277 144,1277 Z M 138,-425 C 71,-425 15,-422 -32,-416 L -32,-218 19,-222 C 67,-222 100,-211 118,-190 135,-169 144,-126 144,-60 L 144,1082 425,1082 425,-128 C 425,-223 401,-297 353,-348 304,-399 233,-425 138,-425 Z"/>
+   <glyph unicode="i" horiz-adv-x="283" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
+   <glyph unicode="h" horiz-adv-x="989" d="M 420,866 C 458,949 506,1009 563,1046 620,1083 689,1102 768,1102 883,1102 971,1067 1032,996 1093,925 1124,822 1124,686 L 1124,0 844,0 844,606 C 844,796 780,891 651,891 583,891 528,862 487,804 445,745 424,670 424,579 L 424,0 143,0 143,1484 424,1484 424,1079 C 424,1006 421,935 416,866 L 420,866 Z"/>
+   <glyph unicode="e" horiz-adv-x="1006" d="M 586,-20 C 423,-20 298,28 211,125 124,221 80,361 80,546 80,725 124,862 213,958 302,1054 427,1102 590,1102 745,1102 864,1051 946,948 1028,845 1069,694 1069,495 L 1069,487 375,487 C 375,382 395,302 434,249 473,195 528,168 600,168 699,168 762,211 788,297 L 1053,274 C 976,78 821,-20 586,-20 Z M 586,925 C 520,925 469,902 434,856 398,810 379,746 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+   <glyph unicode="d" horiz-adv-x="1059" d="M 844,0 C 841,10 838,35 835,76 831,116 829,149 829,176 L 825,176 C 764,45 649,-20 479,-20 353,-20 256,29 187,128 118,226 84,363 84,540 84,719 120,858 193,956 265,1053 367,1102 500,1102 577,1102 643,1086 699,1054 754,1022 797,974 827,911 L 829,911 827,1089 827,1484 1108,1484 1108,236 C 1108,169 1111,91 1116,0 L 844,0 Z M 831,547 C 831,664 812,754 773,817 734,880 676,911 600,911 525,911 469,881 432,820 395,759 377,665 377,540 377,295 451,172 598,172 672,172 729,205 770,270 811,335 831,427 831,547 Z"/>
+   <glyph unicode="c" horiz-adv-x="1024" d="M 594,-20 C 430,-20 303,29 214,127 125,224 80,360 80,535 80,714 125,853 215,953 305,1052 433,1102 598,1102 725,1102 831,1070 914,1006 997,942 1050,854 1071,741 L 788,727 C 780,782 760,827 728,860 696,893 651,909 592,909 447,909 375,788 375,546 375,297 449,172 596,172 649,172 694,189 730,223 766,256 788,306 797,373 L 1079,360 C 1069,286 1043,220 1000,162 957,104 900,59 830,28 760,-4 681,-20 594,-20 Z"/>
+   <glyph unicode="b" horiz-adv-x="1060" d="M 1167,545 C 1167,366 1131,228 1060,129 988,30 885,-20 752,-20 675,-20 609,-3 553,30 497,63 454,111 424,174 L 422,174 C 422,151 421,119 418,78 415,37 411,11 408,0 L 135,0 C 140,62 143,144 143,247 L 143,1484 424,1484 424,1070 420,894 424,894 C 487,1033 603,1102 770,1102 898,1102 996,1054 1065,957 1133,860 1167,722 1167,545 Z M 874,545 C 874,668 856,759 820,818 784,877 728,907 653,907 577,907 519,875 480,812 440,748 420,656 420,536 420,421 440,332 479,268 518,204 575,172 651,172 800,172 874,296 874,545 Z"/>
+   <glyph unicode="a" horiz-adv-x="1112" d="M 393,-20 C 288,-20 207,9 148,66 89,123 60,203 60,306 60,418 97,503 170,562 243,621 348,651 487,652 L 720,656 720,711 C 720,782 708,834 683,869 658,903 618,920 562,920 510,920 472,908 448,885 423,861 408,822 402,767 L 109,781 C 127,886 175,966 254,1021 332,1075 439,1102 574,1102 711,1102 816,1068 890,1001 964,934 1001,838 1001,714 L 1001,320 C 1001,259 1008,218 1022,195 1035,172 1058,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 670,51 552,-20 393,-20 Z M 720,501 L 576,499 C 511,496 464,489 437,478 410,466 389,448 375,424 360,400 353,368 353,328 353,277 365,239 389,214 412,189 444,176 483,176 527,176 567,188 604,212 640,236 668,269 689,312 710,354 720,399 720,446 L 720,501 Z"/>
+   <glyph unicode="D" horiz-adv-x="1271" d="M 1393,715 C 1393,570 1365,443 1308,335 1251,226 1170,143 1066,86 961,29 842,0 707,0 L 137,0 137,1409 647,1409 C 884,1409 1068,1349 1198,1230 1328,1110 1393,938 1393,715 Z M 1096,715 C 1096,866 1057,982 978,1062 899,1141 787,1181 641,1181 L 432,1181 432,228 682,228 C 809,228 909,272 984,359 1059,446 1096,565 1096,715 Z"/>
+   <glyph unicode="1" horiz-adv-x="972" d="M 129,0 L 129,209 478,209 478,1170 140,959 140,1180 493,1409 759,1409 759,209 1082,209 1082,0 129,0 Z"/>
+   <glyph unicode=" " horiz-adv-x="564"/>
+  </font>
+ </defs>
+ <defs class="TextShapeIndex">
+  <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+  <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+  </g>
+  <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+  </g>
+  <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+  </g>
+  <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+  </g>
+  <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+  </g>
+  <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+  </g>
+  <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+  </g>
+  <g id="bullet-char-template(61548)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
+  </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+  <g id="id2" class="Master_Slide">
+   <g id="bg-id2" class="Background"/>
+   <g id="bo-id2" class="BackgroundObjects"/>
+  </g>
+ </g>
+ <g class="SlideGroup">
+  <g>
+   <g id="container-id1">
+    <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+     <g class="Page">
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id3">
+        <rect class="BoundingBox" stroke="none" fill="none" x="7897" y="4935" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 8800,6587 L 7898,6587 7898,4936 9702,4936 9702,6587 8800,6587 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 8800,6587 L 7898,6587 7898,4936 9702,4936 9702,6587 8800,6587 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id4">
+        <rect class="BoundingBox" stroke="none" fill="none" x="9697" y="4935" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 10600,6587 L 9698,6587 9698,4936 11502,4936 11502,6587 10600,6587 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 10600,6587 L 9698,6587 9698,4936 11502,4936 11502,6587 10600,6587 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id5">
+        <rect class="BoundingBox" stroke="none" fill="none" x="11497" y="4935" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 12400,6587 L 11498,6587 11498,4936 13302,4936 13302,6587 12400,6587 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 12400,6587 L 11498,6587 11498,4936 13302,4936 13302,6587 12400,6587 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id6">
+        <rect class="BoundingBox" stroke="none" fill="none" x="2497" y="4935" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 3400,6587 L 2498,6587 2498,4936 4302,4936 4302,6587 3400,6587 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 3400,6587 L 2498,6587 2498,4936 4302,4936 4302,6587 3400,6587 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.TextShape">
+       <g id="id7">
+        <rect class="BoundingBox" stroke="none" fill="none" x="2271" y="1637" width="15114" height="2160"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="706px" font-weight="700"><tspan class="TextPosition" x="2521" y="2401"><tspan fill="rgb(0,0,0)" stroke="none">1D durable chunk with durable objects</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id8">
+        <rect class="BoundingBox" stroke="none" fill="none" x="2227" y="8591" width="4449" height="5986"/>
+        <path fill="rgb(238,238,238)" stroke="none" d="M 2969,8592 C 2598,8592 2228,8962 2228,9333 L 2228,13834 C 2228,14204 2598,14575 2969,14575 L 5933,14575 C 6303,14575 6674,14204 6674,13834 L 6674,9333 C 6674,8962 6303,8592 5933,8592 L 2969,8592 Z M 2228,8592 L 2228,8592 Z M 6674,14575 L 6674,14575 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 2969,8592 C 2598,8592 2228,8962 2228,9333 L 2228,13834 C 2228,14204 2598,14575 2969,14575 L 5933,14575 C 6303,14575 6674,14204 6674,13834 L 6674,9333 C 6674,8962 6303,8592 5933,8592 L 2969,8592 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 2228,8592 L 2228,8592 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 6674,14575 L 6674,14575 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="2863" y="9506"><tspan fill="rgb(0,0,0)" stroke="none">Person&lt;E&gt;</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id9">
+        <rect class="BoundingBox" stroke="none" fill="none" x="4169" y="10591" width="213" height="2672"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 4275,10697 L 4275,11115"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 4275,11532 L 4275,11950"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 4275,12368 L 4275,12785"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id10">
+        <rect class="BoundingBox" stroke="none" fill="none" x="3059" y="5925" width="539" height="2668"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 3328,6427 L 3328,7821"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 3279,6457 L 3230,6443 3182,6419 3137,6385 3103,6340 3079,6292 3065,6243 3059,6193 3065,6145 3079,6094 3103,6046 3137,6003 3182,5969 3230,5945 3279,5929 3329,5925 3377,5929 3428,5945 3474,5969 3519,6003 3553,6046 3577,6094 3591,6145 3597,6193 3591,6243 3577,6292 3553,6340 3519,6385 3474,6419 3428,6443 3377,6457 3329,6463 3279,6457 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 3328,8592 L 3597,7785 3059,7785 3328,8592 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id11">
+        <rect class="BoundingBox" stroke="none" fill="none" x="16168" y="5946" width="2150" height="247"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 16274,6086 L 16692,6079"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 17109,6071 L 17527,6064"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 17944,6057 L 18211,6052"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id12">
+        <rect class="BoundingBox" stroke="none" fill="none" x="9426" y="8592" width="4449" height="5986"/>
+        <path fill="rgb(238,238,238)" stroke="none" d="M 10168,8593 C 9797,8593 9427,8963 9427,9334 L 9427,13835 C 9427,14205 9797,14576 10168,14576 L 13132,14576 C 13502,14576 13873,14205 13873,13835 L 13873,9334 C 13873,8963 13502,8593 13132,8593 L 10168,8593 Z M 9427,8593 L 9427,8593 Z M 13873,14576 L 13873,14576 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 10168,8593 C 9797,8593 9427,8963 9427,9334 L 9427,13835 C 9427,14205 9797,14576 10168,14576 L 13132,14576 C 13502,14576 13873,14205 13873,13835 L 13873,9334 C 13873,8963 13502,8593 13132,8593 L 10168,8593 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 9427,8593 L 9427,8593 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 13873,14576 L 13873,14576 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10062" y="9507"><tspan fill="rgb(0,0,0)" stroke="none">Person&lt;E&gt;</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id13">
+        <rect class="BoundingBox" stroke="none" fill="none" x="11368" y="10591" width="213" height="2672"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 11474,10698 L 11474,11115"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 11474,11533 L 11474,11951"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 11474,12368 L 11474,12786"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id14">
+        <rect class="BoundingBox" stroke="none" fill="none" x="10258" y="5926" width="539" height="2668"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 10527,6428 L 10527,7822"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 10478,6458 L 10429,6444 10381,6420 10336,6386 10302,6341 10278,6293 10264,6244 10258,6194 10264,6146 10278,6095 10302,6047 10336,6004 10381,5970 10429,5946 10478,5930 10528,5926 10576,5930 10627,5946 10673,5970 10718,6004 10752,6047 10776,6095 10790,6146 10796,6194 10790,6244 10776,6293 10752,6341 10718,6386 10673,6420 10627,6444 10576,6458 10528,6464 10478,6458 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 10527,8593 L 10796,7786 10258,7786 10527,8593 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id15">
+        <rect class="BoundingBox" stroke="none" fill="none" x="14369" y="9121" width="3574" height="272"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 14475,9286 L 14893,9279"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 15310,9271 L 15728,9264"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 16145,9257 L 16563,9249"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 16980,9242 L 17398,9235"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 17816,9227 L 17836,9227"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id16">
+        <rect class="BoundingBox" stroke="none" fill="none" x="4297" y="4935" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 5200,6587 L 4298,6587 4298,4936 6102,4936 6102,6587 5200,6587 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 5200,6587 L 4298,6587 4298,4936 6102,4936 6102,6587 5200,6587 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id17">
+        <rect class="BoundingBox" stroke="none" fill="none" x="6097" y="4935" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 7000,6587 L 6098,6587 6098,4936 7902,4936 7902,6587 7000,6587 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 7000,6587 L 6098,6587 6098,4936 7902,4936 7902,6587 7000,6587 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id18">
+        <rect class="BoundingBox" stroke="none" fill="none" x="13297" y="4935" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 14200,6587 L 13298,6587 13298,4936 15102,4936 15102,6587 14200,6587 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 14200,6587 L 13298,6587 13298,4936 15102,4936 15102,6587 14200,6587 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id19">
+        <rect class="BoundingBox" stroke="none" fill="none" x="15097" y="4935" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 16000,6587 L 15098,6587 15098,4936 16902,4936 16902,6587 16000,6587 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 16000,6587 L 15098,6587 15098,4936 16902,4936 16902,6587 16000,6587 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.TextShape">
+       <g id="id20">
+        <rect class="BoundingBox" stroke="none" fill="none" x="2500" y="3921" width="4724" height="955"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="2750" y="4618"><tspan fill="rgb(0,0,0)" stroke="none">Durable Chunk</tspan></tspan></tspan></text>
+       </g>
+      </g>
+     </g>
+    </g>
+   </g>
+  </g>
+ </g>
+</svg>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/blob/34515c3c/src/img/durable2dbufferwithobjects.svg
----------------------------------------------------------------------
diff --git a/src/img/durable2dbufferwithobjects.svg b/src/img/durable2dbufferwithobjects.svg
new file mode 100755
index 0000000..7a6b37f
--- /dev/null
+++ b/src/img/durable2dbufferwithobjects.svg
@@ -0,0 +1,367 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="198.12mm" height="165.1mm" viewBox="0 0 19812 16510" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+  <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+   <rect x="0" y="0" width="19812" height="16510"/>
+  </clipPath>
+  <clipPath id="presentation_clip_path_shrink" clipPathUnits="userSpaceOnUse">
+   <rect x="19" y="16" width="19773" height="16477"/>
+  </clipPath>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_1" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="901" d="M 314,1082 L 314,396 C 314,325 321,269 335,230 349,191 371,162 402,145 433,128 478,119 537,119 624,119 692,149 742,208 792,267 817,350 817,455 L 817,1082 997,1082 997,231 C 997,105 999,28 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 826,132 825,185 L 822,185 C 781,110 733,58 679,27 624,-4 557,-20 476,-20 357,-20 271,10 216,69 161,128 133,225 133,361 L 133,1082 314,1082 Z"/>
+   <glyph unicode="r" horiz-adv-x="531" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
+   <glyph unicode="l" horiz-adv-x="178" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
+   <glyph unicode="f" horiz-adv-x="565" d="M 361,951 L 361,0 181,0 181,951 29,951 29,1082 181,1082 181,1204 C 181,1303 203,1374 246,1417 289,1460 356,1482 445,1482 495,1482 537,1478 572,1470 L 572,1333 C 542,1338 515,1341 492,1341 446,1341 413,1329 392,1306 371,1283 361,1240 361,1179 L 361,1082 572,1082 572,951 361,951 Z"/>
+   <glyph unicode="e" horiz-adv-x="971" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
+   <glyph unicode="b" horiz-adv-x="936" d="M 1053,546 C 1053,169 920,-20 655,-20 573,-20 505,-5 451,25 396,54 352,102 318,168 L 316,168 C 316,147 315,116 312,74 309,31 307,7 306,0 L 132,0 C 136,36 138,110 138,223 L 138,1484 318,1484 318,1061 C 318,1018 317,967 314,908 L 318,908 C 351,977 396,1027 451,1057 506,1087 574,1102 655,1102 792,1102 892,1056 957,964 1021,872 1053,733 1053,546 Z M 864,540 C 864,691 844,800 804,865 764,930 699,963 609,963 508,963 434,928 388,859 341,790 318,680 318,529 318,387 341,282 386,215 431,147 505,113 607,113 698,113 763,147 804,214 844,281 864,389 864,540 Z"/>
+   <glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,66 114,123 87,202 87,302 87,414 124,500 198,560 271,620 390,652 554,656 L 797,660 797,719 C 797,807 778,870 741,908 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,190 723,231 753,284 782,336 797,390 797,445 L 797,534 600,530 C 515,529 451,520 408,504 364,488 330,463 307,430 284,397 272,353 272,299 272,240 288,195 320,163 351,131 396,115 455,115 Z"/>
+   <glyph unicode="D" horiz-adv-x="1235" d="M 1381,719 C 1381,574 1353,447 1296,338 1239,229 1159,145 1055,87 951,29 831,0 695,0 L 168,0 168,1409 634,1409 C 873,1409 1057,1349 1187,1230 1316,1110 1381,940 1381,719 Z M 1189,719 C 1189,894 1141,1027 1046,1119 950,1210 811,1256 630,1256 L 359,1256 359,153 673,153 C 776,153 867,176 946,221 1024,266 1084,332 1126,417 1168,502 1189,603 1189,719 Z"/>
+   <glyph unicode="B" horiz-adv-x="1094" d="M 1258,397 C 1258,272 1212,174 1121,105 1030,35 903,0 740,0 L 168,0 168,1409 680,1409 C 1011,1409 1176,1295 1176,1067 1176,984 1153,914 1106,857 1059,800 993,762 908,743 1020,730 1106,692 1167,631 1228,569 1258,491 1258,397 Z M 984,1044 C 984,1120 958,1174 906,1207 854,1240 779,1256 680,1256 L 359,1256 359,810 680,810 C 782,810 858,829 909,868 959,906 984,965 984,1044 Z M 1065,412 C 1065,578 948,661 715,661 L 359,661 359,153 730,153 C 847,153 932,175 985,218 1038,261 1065,326 1065,412 Z"/>
+   <glyph unicode=" " horiz-adv-x="564"/>
+  </font>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_2" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="423"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="w" horiz-adv-x="1695" d="M 1313,0 L 1016,0 844,660 C 836,690 820,764 797,882 L 745,658 571,0 274,0 -6,1082 258,1082 436,255 450,329 475,446 645,1082 946,1082 1112,446 C 1121,411 1135,348 1153,255 L 1181,387 1337,1082 1597,1082 1313,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="1007" d="M 408,1082 L 408,475 C 408,285 472,190 600,190 668,190 723,219 765,278 806,336 827,411 827,502 L 827,1082 1108,1082 1108,242 C 1108,150 1111,69 1116,0 L 848,0 C 840,96 836,168 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 368,-20 280,15 219,86 158,156 127,259 127,395 L 127,1082 408,1082 Z"/>
+   <glyph unicode="t" horiz-adv-x="653" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 585,176 616,181 657,190 L 657,16 C 588,-7 509,-18 420,-18 Z"/>
+   <glyph unicode="s" horiz-adv-x="1006" d="M 1055,316 C 1055,211 1012,129 927,70 841,10 722,-20 571,-20 422,-20 309,4 230,51 151,98 98,171 72,270 L 319,307 C 333,256 357,219 392,198 426,177 486,166 571,166 650,166 707,176 743,196 779,216 797,247 797,290 797,325 783,352 754,373 725,393 675,410 606,424 447,455 340,485 285,512 230,539 188,574 159,617 130,660 115,712 115,775 115,878 155,959 235,1017 314,1074 427,1103 573,1103 702,1103 805,1078 884,1028 962,978 1011,906 1030,811 L 781,785 C 773,829 753,862 722,884 691,905 641,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,774 386,749 412,731 437,712 480,697 541,685 626,668 701,650 767,632 832,613 885,591 925,566 964,541 996,508 1020,469 1043,429 1055,378 1055,316 Z"/>
+   <glyph unicode="r" horiz-adv-x="654" d="M 143,0 L 143,828 C 143,887 142,937 141,977 139,1016 137,1051 135,1082 L 403,1082 C 405,1070 408,1034 411,973 414,912 416,871 416,851 L 420,851 C 447,927 472,981 493,1012 514,1043 540,1066 569,1081 598,1096 635,1103 679,1103 715,1103 744,1098 766,1088 L 766,853 C 721,863 681,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+   <glyph unicode="o" horiz-adv-x="1112" d="M 1171,542 C 1171,367 1122,229 1025,130 928,30 793,-20 621,-20 452,-20 320,30 224,130 128,230 80,367 80,542 80,716 128,853 224,953 320,1052 454,1102 627,1102 804,1102 939,1054 1032,958 1125,861 1171,723 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 460,909 375,787 375,542 375,421 396,330 438,267 479,204 539,172 618,172 791,172 877,295 877,542 Z"/>
+   <glyph unicode="l" horiz-adv-x="283" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+   <glyph unicode="j" horiz-adv-x="459" d="M 144,1277 L 144,1484 425,1484 425,1277 144,1277 Z M 138,-425 C 71,-425 15,-422 -32,-416 L -32,-218 19,-222 C 67,-222 100,-211 118,-190 135,-169 144,-126 144,-60 L 144,1082 425,1082 425,-128 C 425,-223 401,-297 353,-348 304,-399 233,-425 138,-425 Z"/>
+   <glyph unicode="i" horiz-adv-x="283" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
+   <glyph unicode="h" horiz-adv-x="989" d="M 420,866 C 458,949 506,1009 563,1046 620,1083 689,1102 768,1102 883,1102 971,1067 1032,996 1093,925 1124,822 1124,686 L 1124,0 844,0 844,606 C 844,796 780,891 651,891 583,891 528,862 487,804 445,745 424,670 424,579 L 424,0 143,0 143,1484 424,1484 424,1079 C 424,1006 421,935 416,866 L 420,866 Z"/>
+   <glyph unicode="f" horiz-adv-x="672" d="M 473,892 L 473,0 193,0 193,892 35,892 35,1082 193,1082 193,1195 C 193,1293 219,1366 271,1413 323,1460 402,1484 508,1484 561,1484 620,1479 686,1468 L 686,1287 C 659,1293 631,1296 604,1296 556,1296 522,1287 503,1268 483,1249 473,1215 473,1167 L 473,1082 686,1082 686,892 473,892 Z"/>
+   <glyph unicode="e" horiz-adv-x="1006" d="M 586,-20 C 423,-20 298,28 211,125 124,221 80,361 80,546 80,725 124,862 213,958 302,1054 427,1102 590,1102 745,1102 864,1051 946,948 1028,845 1069,694 1069,495 L 1069,487 375,487 C 375,382 395,302 434,249 473,195 528,168 600,168 699,168 762,211 788,297 L 1053,274 C 976,78 821,-20 586,-20 Z M 586,925 C 520,925 469,902 434,856 398,810 379,746 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+   <glyph unicode="d" horiz-adv-x="1059" d="M 844,0 C 841,10 838,35 835,76 831,116 829,149 829,176 L 825,176 C 764,45 649,-20 479,-20 353,-20 256,29 187,128 118,226 84,363 84,540 84,719 120,858 193,956 265,1053 367,1102 500,1102 577,1102 643,1086 699,1054 754,1022 797,974 827,911 L 829,911 827,1089 827,1484 1108,1484 1108,236 C 1108,169 1111,91 1116,0 L 844,0 Z M 831,547 C 831,664 812,754 773,817 734,880 676,911 600,911 525,911 469,881 432,820 395,759 377,665 377,540 377,295 451,172 598,172 672,172 729,205 770,270 811,335 831,427 831,547 Z"/>
+   <glyph unicode="c" horiz-adv-x="1024" d="M 594,-20 C 430,-20 303,29 214,127 125,224 80,360 80,535 80,714 125,853 215,953 305,1052 433,1102 598,1102 725,1102 831,1070 914,1006 997,942 1050,854 1071,741 L 788,727 C 780,782 760,827 728,860 696,893 651,909 592,909 447,909 375,788 375,546 375,297 449,172 596,172 649,172 694,189 730,223 766,256 788,306 797,373 L 1079,360 C 1069,286 1043,220 1000,162 957,104 900,59 830,28 760,-4 681,-20 594,-20 Z"/>
+   <glyph unicode="b" horiz-adv-x="1060" d="M 1167,545 C 1167,366 1131,228 1060,129 988,30 885,-20 752,-20 675,-20 609,-3 553,30 497,63 454,111 424,174 L 422,174 C 422,151 421,119 418,78 415,37 411,11 408,0 L 135,0 C 140,62 143,144 143,247 L 143,1484 424,1484 424,1070 420,894 424,894 C 487,1033 603,1102 770,1102 898,1102 996,1054 1065,957 1133,860 1167,722 1167,545 Z M 874,545 C 874,668 856,759 820,818 784,877 728,907 653,907 577,907 519,875 480,812 440,748 420,656 420,536 420,421 440,332 479,268 518,204 575,172 651,172 800,172 874,296 874,545 Z"/>
+   <glyph unicode="a" horiz-adv-x="1112" d="M 393,-20 C 288,-20 207,9 148,66 89,123 60,203 60,306 60,418 97,503 170,562 243,621 348,651 487,652 L 720,656 720,711 C 720,782 708,834 683,869 658,903 618,920 562,920 510,920 472,908 448,885 423,861 408,822 402,767 L 109,781 C 127,886 175,966 254,1021 332,1075 439,1102 574,1102 711,1102 816,1068 890,1001 964,934 1001,838 1001,714 L 1001,320 C 1001,259 1008,218 1022,195 1035,172 1058,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 670,51 552,-20 393,-20 Z M 720,501 L 576,499 C 511,496 464,489 437,478 410,466 389,448 375,424 360,400 353,368 353,328 353,277 365,239 389,214 412,189 444,176 483,176 527,176 567,188 604,212 640,236 668,269 689,312 710,354 720,399 720,446 L 720,501 Z"/>
+   <glyph unicode="D" horiz-adv-x="1271" d="M 1393,715 C 1393,570 1365,443 1308,335 1251,226 1170,143 1066,86 961,29 842,0 707,0 L 137,0 137,1409 647,1409 C 884,1409 1068,1349 1198,1230 1328,1110 1393,938 1393,715 Z M 1096,715 C 1096,866 1057,982 978,1062 899,1141 787,1181 641,1181 L 432,1181 432,228 682,228 C 809,228 909,272 984,359 1059,446 1096,565 1096,715 Z"/>
+   <glyph unicode="2" horiz-adv-x="1006" d="M 71,0 L 71,195 C 108,276 160,354 228,431 295,508 380,588 483,671 582,751 651,817 691,869 730,921 750,972 750,1022 750,1145 688,1206 565,1206 505,1206 459,1190 428,1158 396,1125 375,1077 366,1012 L 83,1028 C 99,1159 148,1258 230,1327 311,1396 422,1430 563,1430 715,1430 832,1395 913,1326 994,1257 1035,1159 1035,1034 1035,968 1022,908 996,855 970,802 937,753 896,708 855,663 810,620 761,581 711,542 663,503 616,466 569,429 527,391 489,353 450,315 422,274 403,231 L 1057,231 1057,0 71,0 Z"/>
+   <glyph unicode=" " horiz-adv-x="564"/>
+  </font>
+ </defs>
+ <defs class="TextShapeIndex">
+  <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24 id25 id26 id27 id28 id29 id30 id31 id32 id33 id34 id35 id36"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+  <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+  </g>
+  <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+  </g>
+  <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+  </g>
+  <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+  </g>
+  <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+  </g>
+  <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+  </g>
+  <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+  </g>
+  <g id="bullet-char-template(61548)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
+  </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+  <g id="id2" class="Master_Slide">
+   <g id="bg-id2" class="Background"/>
+   <g id="bo-id2" class="BackgroundObjects"/>
+  </g>
+ </g>
+ <g class="SlideGroup">
+  <g>
+   <g id="container-id1">
+    <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+     <g class="Page">
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id3">
+        <rect class="BoundingBox" stroke="none" fill="none" x="7897" y="4935" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 8800,6587 L 7898,6587 7898,4936 9702,4936 9702,6587 8800,6587 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 8800,6587 L 7898,6587 7898,4936 9702,4936 9702,6587 8800,6587 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id4">
+        <rect class="BoundingBox" stroke="none" fill="none" x="9697" y="4935" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 10600,6587 L 9698,6587 9698,4936 11502,4936 11502,6587 10600,6587 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 10600,6587 L 9698,6587 9698,4936 11502,4936 11502,6587 10600,6587 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id5">
+        <rect class="BoundingBox" stroke="none" fill="none" x="11497" y="4935" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 12400,6587 L 11498,6587 11498,4936 13302,4936 13302,6587 12400,6587 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 12400,6587 L 11498,6587 11498,4936 13302,4936 13302,6587 12400,6587 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id6">
+        <rect class="BoundingBox" stroke="none" fill="none" x="2497" y="4935" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 3400,6587 L 2498,6587 2498,4936 4302,4936 4302,6587 3400,6587 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 3400,6587 L 2498,6587 2498,4936 4302,4936 4302,6587 3400,6587 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.TextShape">
+       <g id="id7">
+        <rect class="BoundingBox" stroke="none" fill="none" x="2271" y="1637" width="15114" height="2160"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="706px" font-weight="700"><tspan class="TextPosition" x="2521" y="2401"><tspan fill="rgb(0,0,0)" stroke="none">2D durable buffer with durable objects</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id8">
+        <rect class="BoundingBox" stroke="none" fill="none" x="3307" y="13213" width="213" height="2326"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 3413,13319 L 3413,13737"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 3413,14154 L 3413,14572"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 3413,14990 L 3413,15407"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id9">
+        <rect class="BoundingBox" stroke="none" fill="none" x="3059" y="5925" width="539" height="2668"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 3328,6427 L 3328,7821"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 3279,6457 L 3230,6443 3182,6419 3137,6385 3103,6340 3079,6292 3065,6243 3059,6193 3065,6145 3079,6094 3103,6046 3137,6003 3182,5969 3230,5945 3279,5929 3329,5925 3377,5929 3428,5945 3474,5969 3519,6003 3553,6046 3577,6094 3591,6145 3597,6193 3591,6243 3577,6292 3553,6340 3519,6385 3474,6419 3428,6443 3377,6457 3329,6463 3279,6457 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 3328,8592 L 3597,7785 3059,7785 3328,8592 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id10">
+        <rect class="BoundingBox" stroke="none" fill="none" x="16168" y="5946" width="2150" height="247"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 16274,6086 L 16692,6079"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 17109,6071 L 17527,6064"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 17944,6057 L 18211,6052"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id11">
+        <rect class="BoundingBox" stroke="none" fill="none" x="10258" y="5926" width="539" height="2668"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 10527,6428 L 10527,7822"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 10478,6458 L 10429,6444 10381,6420 10336,6386 10302,6341 10278,6293 10264,6244 10258,6194 10264,6146 10278,6095 10302,6047 10336,6004 10381,5970 10429,5946 10478,5930 10528,5926 10576,5930 10627,5946 10673,5970 10718,6004 10752,6047 10776,6095 10790,6146 10796,6194 10790,6244 10776,6293 10752,6341 10718,6386 10673,6420 10627,6444 10576,6458 10528,6464 10478,6458 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 10527,8593 L 10796,7786 10258,7786 10527,8593 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id12">
+        <rect class="BoundingBox" stroke="none" fill="none" x="14369" y="9121" width="3574" height="272"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 14475,9286 L 14893,9279"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 15310,9271 L 15728,9264"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 16145,9257 L 16563,9249"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 16980,9242 L 17398,9235"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 17816,9227 L 17836,9227"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id13">
+        <rect class="BoundingBox" stroke="none" fill="none" x="4297" y="4935" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 5200,6587 L 4298,6587 4298,4936 6102,4936 6102,6587 5200,6587 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 5200,6587 L 4298,6587 4298,4936 6102,4936 6102,6587 5200,6587 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id14">
+        <rect class="BoundingBox" stroke="none" fill="none" x="6097" y="4935" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 7000,6587 L 6098,6587 6098,4936 7902,4936 7902,6587 7000,6587 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 7000,6587 L 6098,6587 6098,4936 7902,4936 7902,6587 7000,6587 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id15">
+        <rect class="BoundingBox" stroke="none" fill="none" x="13297" y="4935" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 14200,6587 L 13298,6587 13298,4936 15102,4936 15102,6587 14200,6587 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 14200,6587 L 13298,6587 13298,4936 15102,4936 15102,6587 14200,6587 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id16">
+        <rect class="BoundingBox" stroke="none" fill="none" x="15097" y="4935" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 16000,6587 L 15098,6587 15098,4936 16902,4936 16902,6587 16000,6587 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 16000,6587 L 15098,6587 15098,4936 16902,4936 16902,6587 16000,6587 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.TextShape">
+       <g id="id17">
+        <rect class="BoundingBox" stroke="none" fill="none" x="2500" y="3921" width="4575" height="955"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="2750" y="4618"><tspan fill="rgb(0,0,0)" stroke="none">Durable Buffer</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id18">
+        <rect class="BoundingBox" stroke="none" fill="none" x="2497" y="8635" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 3400,10287 L 2498,10287 2498,8636 4302,8636 4302,10287 3400,10287 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 3400,10287 L 2498,10287 2498,8636 4302,8636 4302,10287 3400,10287 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id19">
+        <rect class="BoundingBox" stroke="none" fill="none" x="2497" y="10269" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 3400,11921 L 2498,11921 2498,10270 4302,10270 4302,11921 3400,11921 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 3400,11921 L 2498,11921 2498,10270 4302,10270 4302,11921 3400,11921 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id20">
+        <rect class="BoundingBox" stroke="none" fill="none" x="2497" y="11893" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 3400,13545 L 2498,13545 2498,11894 4302,11894 4302,13545 3400,13545 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 3400,13545 L 2498,13545 2498,11894 4302,11894 4302,13545 3400,13545 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id21">
+        <rect class="BoundingBox" stroke="none" fill="none" x="3028" y="9240" width="2291" height="539"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 3530,9509 L 4547,9509"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 3560,9558 L 3546,9607 3522,9655 3488,9700 3443,9734 3395,9758 3346,9772 3296,9778 3248,9772 3197,9758 3149,9734 3106,9700 3072,9655 3048,9607 3032,9558 3028,9508 3032,9460 3048,9409 3072,9363 3106,9318 3149,9284 3197,9260 3248,9246 3296,9240 3346,9246 3395,9260 3443,9284 3488,9318 3522,9363 3546,9409 3560,9460 3566,9508 3560,9558 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 5318,9509 L 4511,9240 4511,9778 5318,9509 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id22">
+        <rect class="BoundingBox" stroke="none" fill="none" x="5344" y="8927" width="1274" height="1274"/>
+        <path fill="rgb(238,238,238)" stroke="none" d="M 5980,8928 C 6340,8928 6615,9203 6615,9563 6615,9923 6340,10198 5980,10198 5620,10198 5345,9923 5345,9563 5345,9203 5620,8928 5980,8928 Z M 5345,8928 L 5345,8928 Z M 6616,10199 L 6616,10199 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 5980,8928 C 6340,8928 6615,9203 6615,9563 6615,9923 6340,10198 5980,10198 5620,10198 5345,9923 5345,9563 5345,9203 5620,8928 5980,8928 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 5345,8928 L 5345,8928 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 6616,10199 L 6616,10199 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id23">
+        <rect class="BoundingBox" stroke="none" fill="none" x="3030" y="10841" width="2291" height="539"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 3532,11110 L 4549,11110"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 3562,11159 L 3548,11208 3524,11256 3490,11301 3445,11335 3397,11359 3348,11373 3298,11379 3250,11373 3199,11359 3151,11335 3108,11301 3074,11256 3050,11208 3034,11159 3030,11109 3034,11061 3050,11010 3074,10964 3108,10919 3151,10885 3199,10861 3250,10847 3298,10841 3348,10847 3397,10861 3445,10885 3490,10919 3524,10964 3548,11010 3562,11061 3568,11109 3562,11159 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 5320,11110 L 4513,10841 4513,11379 5320,11110 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id24">
+        <rect class="BoundingBox" stroke="none" fill="none" x="5346" y="10528" width="1274" height="1274"/>
+        <path fill="rgb(238,238,238)" stroke="none" d="M 5982,10529 C 6342,10529 6617,10804 6617,11164 6617,11524 6342,11799 5982,11799 5622,11799 5347,11524 5347,11164 5347,10804 5622,10529 5982,10529 Z M 5347,10529 L 5347,10529 Z M 6618,11800 L 6618,11800 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 5982,10529 C 6342,10529 6617,10804 6617,11164 6617,11524 6342,11799 5982,11799 5622,11799 5347,11524 5347,11164 5347,10804 5622,10529 5982,10529 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 5347,10529 L 5347,10529 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 6618,11800 L 6618,11800 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id25">
+        <rect class="BoundingBox" stroke="none" fill="none" x="3030" y="12441" width="2291" height="539"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 3532,12710 L 4549,12710"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 3562,12759 L 3548,12808 3524,12856 3490,12901 3445,12935 3397,12959 3348,12973 3298,12979 3250,12973 3199,12959 3151,12935 3108,12901 3074,12856 3050,12808 3034,12759 3030,12709 3034,12661 3050,12610 3074,12564 3108,12519 3151,12485 3199,12461 3250,12447 3298,12441 3348,12447 3397,12461 3445,12485 3490,12519 3524,12564 3548,12610 3562,12661 3568,12709 3562,12759 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 5320,12710 L 4513,12441 4513,12979 5320,12710 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id26">
+        <rect class="BoundingBox" stroke="none" fill="none" x="5346" y="12128" width="1274" height="1274"/>
+        <path fill="rgb(238,238,238)" stroke="none" d="M 5982,12129 C 6342,12129 6617,12404 6617,12764 6617,13124 6342,13399 5982,13399 5622,13399 5347,13124 5347,12764 5347,12404 5622,12129 5982,12129 Z M 5347,12129 L 5347,12129 Z M 6618,13400 L 6618,13400 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 5982,12129 C 6342,12129 6617,12404 6617,12764 6617,13124 6342,13399 5982,13399 5622,13399 5347,13124 5347,12764 5347,12404 5622,12129 5982,12129 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 5347,12129 L 5347,12129 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 6618,13400 L 6618,13400 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id27">
+        <rect class="BoundingBox" stroke="none" fill="none" x="10408" y="13166" width="213" height="2326"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 10514,13272 L 10514,13690"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 10514,14107 L 10514,14525"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 10514,14943 L 10514,15360"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id28">
+        <rect class="BoundingBox" stroke="none" fill="none" x="9598" y="8588" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 10501,10240 L 9599,10240 9599,8589 11403,8589 11403,10240 10501,10240 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 10501,10240 L 9599,10240 9599,8589 11403,8589 11403,10240 10501,10240 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id29">
+        <rect class="BoundingBox" stroke="none" fill="none" x="9598" y="10222" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 10501,11874 L 9599,11874 9599,10223 11403,10223 11403,11874 10501,11874 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 10501,11874 L 9599,11874 9599,10223 11403,10223 11403,11874 10501,11874 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id30">
+        <rect class="BoundingBox" stroke="none" fill="none" x="9598" y="11846" width="1807" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 10501,13498 L 9599,13498 9599,11847 11403,11847 11403,13498 10501,13498 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 10501,13498 L 9599,13498 9599,11847 11403,11847 11403,13498 10501,13498 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id31">
+        <rect class="BoundingBox" stroke="none" fill="none" x="10129" y="9193" width="2291" height="539"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 10631,9462 L 11648,9462"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 10661,9511 L 10647,9560 10623,9608 10589,9653 10544,9687 10496,9711 10447,9725 10397,9731 10349,9725 10298,9711 10250,9687 10207,9653 10173,9608 10149,9560 10133,9511 10129,9461 10133,9413 10149,9362 10173,9316 10207,9271 10250,9237 10298,9213 10349,9199 10397,9193 10447,9199 10496,9213 10544,9237 10589,9271 10623,9316 10647,9362 10661,9413 10667,9461 10661,9511 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 12419,9462 L 11612,9193 11612,9731 12419,9462 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id32">
+        <rect class="BoundingBox" stroke="none" fill="none" x="12445" y="8880" width="1274" height="1274"/>
+        <path fill="rgb(238,238,238)" stroke="none" d="M 13081,8881 C 13441,8881 13716,9156 13716,9516 13716,9876 13441,10151 13081,10151 12721,10151 12446,9876 12446,9516 12446,9156 12721,8881 13081,8881 Z M 12446,8881 L 12446,8881 Z M 13717,10152 L 13717,10152 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 13081,8881 C 13441,8881 13716,9156 13716,9516 13716,9876 13441,10151 13081,10151 12721,10151 12446,9876 12446,9516 12446,9156 12721,8881 13081,8881 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 12446,8881 L 12446,8881 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 13717,10152 L 13717,10152 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id33">
+        <rect class="BoundingBox" stroke="none" fill="none" x="10131" y="10794" width="2291" height="539"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 10633,11063 L 11650,11063"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 10663,11112 L 10649,11161 10625,11209 10591,11254 10546,11288 10498,11312 10449,11326 10399,11332 10351,11326 10300,11312 10252,11288 10209,11254 10175,11209 10151,11161 10135,11112 10131,11062 10135,11014 10151,10963 10175,10917 10209,10872 10252,10838 10300,10814 10351,10800 10399,10794 10449,10800 10498,10814 10546,10838 10591,10872 10625,10917 10649,10963 10663,11014 10669,11062 10663,11112 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 12421,11063 L 11614,10794 11614,11332 12421,11063 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id34">
+        <rect class="BoundingBox" stroke="none" fill="none" x="12447" y="10481" width="1274" height="1274"/>
+        <path fill="rgb(238,238,238)" stroke="none" d="M 13083,10482 C 13443,10482 13718,10757 13718,11117 13718,11477 13443,11752 13083,11752 12723,11752 12448,11477 12448,11117 12448,10757 12723,10482 13083,10482 Z M 12448,10482 L 12448,10482 Z M 13719,11753 L 13719,11753 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 13083,10482 C 13443,10482 13718,10757 13718,11117 13718,11477 13443,11752 13083,11752 12723,11752 12448,11477 12448,11117 12448,10757 12723,10482 13083,10482 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 12448,10482 L 12448,10482 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 13719,11753 L 13719,11753 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id35">
+        <rect class="BoundingBox" stroke="none" fill="none" x="10131" y="12394" width="2291" height="539"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 10633,12663 L 11650,12663"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 10663,12712 L 10649,12761 10625,12809 10591,12854 10546,12888 10498,12912 10449,12926 10399,12932 10351,12926 10300,12912 10252,12888 10209,12854 10175,12809 10151,12761 10135,12712 10131,12662 10135,12614 10151,12563 10175,12517 10209,12472 10252,12438 10300,12414 10351,12400 10399,12394 10449,12400 10498,12414 10546,12438 10591,12472 10625,12517 10649,12563 10663,12614 10669,12662 10663,12712 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 12421,12663 L 11614,12394 11614,12932 12421,12663 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id36">
+        <rect class="BoundingBox" stroke="none" fill="none" x="12447" y="12081" width="1274" height="1274"/>
+        <path fill="rgb(238,238,238)" stroke="none" d="M 13083,12082 C 13443,12082 13718,12357 13718,12717 13718,13077 13443,13352 13083,13352 12723,13352 12448,13077 12448,12717 12448,12357 12723,12082 13083,12082 Z M 12448,12082 L 12448,12082 Z M 13719,13353 L 13719,13353 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 13083,12082 C 13443,12082 13718,12357 13718,12717 13718,13077 13443,13352 13083,13352 12723,13352 12448,13077 12448,12717 12448,12357 12723,12082 13083,12082 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 12448,12082 L 12448,12082 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 13719,13353 L 13719,13353 Z"/>
+       </g>
+      </g>
+     </g>
+    </g>
+   </g>
+  </g>
+ </g>
+</svg>
\ No newline at end of file


[2/7] incubator-mnemonic-site git commit: MNEMONIC-312: Illustrate usage cases of Durable Object Model in diagrams

Posted by ga...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/blob/34515c3c/src/img/flowcomputing.svg
----------------------------------------------------------------------
diff --git a/src/img/flowcomputing.svg b/src/img/flowcomputing.svg
new file mode 100755
index 0000000..6f065ed
--- /dev/null
+++ b/src/img/flowcomputing.svg
@@ -0,0 +1,780 @@
+<?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"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="744.09448819"
+   height="1052.3622047"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.5 r10040"
+   sodipodi:docname="flowcomputing.svg">
+  <defs
+     id="defs4">
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 526.18109 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="744.09448 : 526.18109 : 1"
+       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+       id="perspective4722" />
+    <font
+       horiz-adv-x="1024"
+       id="font3057"
+       inkscape:label="font 1">
+      <font-face
+         units-per-em="1024"
+         id="font-face3059"
+         font-family="areial" />
+      <missing-glyph
+         d="M0,0h1000v1024h-1000z"
+         id="missing-glyph3061" />
+    </font>
+    <radialGradient
+       id="radialGradient4548"
+       spreadMethod="pad"
+       gradientTransform="matrix(291.14328,0,0,-291.14328,384.25195,374.81592)"
+       gradientUnits="userSpaceOnUse"
+       r="1"
+       cy="0"
+       cx="0"
+       fy="0"
+       fx="0">
+      <stop
+         id="stop4550"
+         offset="0"
+         style="stop-opacity:1;stop-color:#90e1ff" />
+      <stop
+         id="stop4552"
+         offset="0.442903"
+         style="stop-opacity:1;stop-color:#00a8e6" />
+      <stop
+         id="stop4554"
+         offset="0.82129"
+         style="stop-opacity:1;stop-color:#0f7fb0" />
+      <stop
+         id="stop4556"
+         offset="1"
+         style="stop-opacity:1;stop-color:#08435d" />
+    </radialGradient>
+    <radialGradient
+       id="radialGradient4520"
+       spreadMethod="pad"
+       gradientTransform="matrix(564.56506,0,0,-564.56506,380.28857,502.90381)"
+       gradientUnits="userSpaceOnUse"
+       r="1"
+       cy="0"
+       cx="0"
+       fy="0.0179199"
+       fx="0.0458302">
+      <stop
+         id="stop4522"
+         offset="0"
+         style="stop-opacity:1;stop-color:#c9f0ff" />
+      <stop
+         id="stop4524"
+         offset="0.0983607"
+         style="stop-opacity:1;stop-color:#80ddff" />
+      <stop
+         id="stop4526"
+         offset="0.431694"
+         style="stop-opacity:1;stop-color:#00a8e6" />
+      <stop
+         id="stop4528"
+         offset="0.666667"
+         style="stop-opacity:1;stop-color:#0f7fb0" />
+      <stop
+         id="stop4530"
+         offset="0.994536"
+         style="stop-opacity:1;stop-color:#042433" />
+      <stop
+         id="stop4532"
+         offset="1"
+         style="stop-opacity:1;stop-color:#042433" />
+    </radialGradient>
+    <radialGradient
+       id="radialGradient4494"
+       spreadMethod="pad"
+       gradientTransform="matrix(1910.1764,0,0,-1910.1764,-102.02344,982.49365)"
+       gradientUnits="userSpaceOnUse"
+       r="1"
+       cy="0"
+       cx="0"
+       fy="0"
+       fx="0">
+      <stop
+         id="stop4496"
+         offset="0"
+         style="stop-opacity:1;stop-color:#90e1ff" />
+      <stop
+         id="stop4498"
+         offset="0.33"
+         style="stop-opacity:1;stop-color:#00a8e6" />
+      <stop
+         id="stop4500"
+         offset="0.66"
+         style="stop-opacity:1;stop-color:#0f7fb0" />
+      <stop
+         id="stop4502"
+         offset="0.994536"
+         style="stop-opacity:1;stop-color:#042433" />
+      <stop
+         id="stop4504"
+         offset="1"
+         style="stop-opacity:1;stop-color:#042433" />
+    </radialGradient>
+    <radialGradient
+       id="radialGradient4452"
+       spreadMethod="pad"
+       gradientTransform="matrix(437.34155,0,0,-437.34155,396.97168,475.16357)"
+       gradientUnits="userSpaceOnUse"
+       r="1"
+       cy="0"
+       cx="0"
+       fy="0"
+       fx="0">
+      <stop
+         id="stop4454"
+         offset="0"
+         style="stop-opacity:1;stop-color:#eaf7fe" />
+      <stop
+         id="stop4456"
+         offset="0.26776"
+         style="stop-opacity:1;stop-color:#def1fc" />
+      <stop
+         id="stop4458"
+         offset="0.26776"
+         style="stop-opacity:1;stop-color:#def1fc" />
+      <stop
+         id="stop4460"
+         offset="0.502732"
+         style="stop-opacity:1;stop-color:#c2eafc" />
+      <stop
+         id="stop4462"
+         offset="0.710383"
+         style="stop-opacity:1;stop-color:#c1e7fb" />
+      <stop
+         id="stop4464"
+         offset="0.912568"
+         style="stop-opacity:1;stop-color:#c6e7fa" />
+      <stop
+         id="stop4466"
+         offset="1"
+         style="stop-opacity:1;stop-color:#c7e9f0" />
+    </radialGradient>
+    <clipPath
+       id="clipPath4444"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         id="path4446"
+         d="m 187.553,541.701 415.49,0 0,-415.523 -415.49,0 0,415.523 z" />
+    </clipPath>
+    <radialGradient
+       id="radialGradient4418"
+       spreadMethod="pad"
+       gradientTransform="matrix(-207.79311,0,0,-207.79311,395.29883,333.93896)"
+       gradientUnits="userSpaceOnUse"
+       r="1"
+       cy="0"
+       cx="0"
+       fy="0.0566342"
+       fx="-0.1143">
+      <stop
+         id="stop4420"
+         offset="0"
+         style="stop-opacity:1;stop-color:#cbe7ff" />
+      <stop
+         id="stop4422"
+         offset="0.437146"
+         style="stop-opacity:1;stop-color:#008aff" />
+      <stop
+         id="stop4424"
+         offset="1"
+         style="stop-opacity:1;stop-color:#000047" />
+    </radialGradient>
+    <clipPath
+       id="clipPath4410"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         id="path4412"
+         d="m 229.087,535.54 332.423,0 0,-253.065 -332.423,0 0,253.065 z" />
+    </clipPath>
+    <clipPath
+       id="clipPath4402"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         id="path4404"
+         d="m 154.588,43.727 516.335,0 0,529.169 -516.335,0 0,-529.169 z" />
+    </clipPath>
+    <radialGradient
+       id="radialGradient4386"
+       spreadMethod="pad"
+       gradientTransform="matrix(-234.69514,0,0,-234.69514,387.66016,266.70898)"
+       gradientUnits="userSpaceOnUse"
+       r="1"
+       cy="0"
+       cx="0"
+       fy="0.0566342"
+       fx="-0.1143">
+      <stop
+         id="stop4388"
+         offset="0"
+         style="stop-opacity:1;stop-color:#00bfff" />
+      <stop
+         id="stop4390"
+         offset="0.531722"
+         style="stop-opacity:1;stop-color:#001fa6" />
+      <stop
+         id="stop4392"
+         offset="0.816022"
+         style="stop-opacity:1;stop-color:#000047" />
+      <stop
+         id="stop4394"
+         offset="1"
+         style="stop-opacity:1;stop-color:#000047" />
+    </radialGradient>
+    <radialGradient
+       id="radialGradient4364"
+       spreadMethod="pad"
+       gradientTransform="matrix(200.58029,0,0,-106.93697,444.37402,166.84277)"
+       gradientUnits="userSpaceOnUse"
+       r="1"
+       cy="0"
+       cx="0"
+       fy="0.276902"
+       fx="-0.00246771">
+      <stop
+         id="stop4366"
+         offset="0"
+         style="stop-opacity:1;stop-color:#2281bf" />
+      <stop
+         id="stop4368"
+         offset="0.576239"
+         style="stop-opacity:1;stop-color:#59cde0" />
+      <stop
+         id="stop4370"
+         offset="1"
+         style="stop-opacity:1;stop-color:#ffffff" />
+    </radialGradient>
+    <filter
+       inkscape:menu-tooltip="In and out glow with a possible offset and colorizable flood"
+       inkscape:menu="Shadows and Glows"
+       inkscape:label="Cutout Glow"
+       color-interpolation-filters="sRGB"
+       id="filter4738">
+      <feOffset
+         dy="3"
+         dx="3"
+         id="feOffset4740" />
+      <feGaussianBlur
+         result="result8"
+         stdDeviation="3"
+         id="feGaussianBlur4742" />
+      <feFlood
+         flood-color="rgb(0,0,0)"
+         flood-opacity="1"
+         in="result8"
+         result="result10"
+         id="feFlood4744" />
+      <feComposite
+         in2="SourceGraphic"
+         operator="in"
+         in="result10"
+         result="result9"
+         id="feComposite4746" />
+      <feBlend
+         mode="normal"
+         in2="result9"
+         in="result8"
+         id="feBlend4748" />
+    </filter>
+    <filter
+       inkscape:label="3D marble"
+       inkscape:menu="Materials"
+       inkscape:menu-tooltip="3D warped marble texture"
+       height="1.5"
+       y="-0.25"
+       width="1.5"
+       x="-0.25"
+       color-interpolation-filters="sRGB"
+       id="filter4750">
+      <feGaussianBlur
+         stdDeviation="4"
+         result="result8"
+         id="feGaussianBlur4752" />
+      <feTurbulence
+         seed="50"
+         result="result7"
+         type="turbulence"
+         numOctaves="7"
+         baseFrequency="0.01 0.01"
+         id="feTurbulence4754" />
+      <feColorMatrix
+         result="result5"
+         values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1.4 0 "
+         id="feColorMatrix4756" />
+      <feComposite
+         result="result6"
+         in="result5"
+         operator="in"
+         in2="result8"
+         id="feComposite4758" />
+      <feDisplacementMap
+         in="result5"
+         xChannelSelector="A"
+         yChannelSelector="A"
+         scale="100"
+         result="result4"
+         in2="result6"
+         id="feDisplacementMap4760" />
+      <feFlood
+         in="result4"
+         flood-opacity="1"
+         flood-color="rgb(224,224,224)"
+         id="feFlood4762" />
+      <feComposite
+         result="result2"
+         operator="atop"
+         in2="result4"
+         id="feComposite4764" />
+      <feComposite
+         in="result2"
+         operator="atop"
+         in2="SourceGraphic"
+         result="result9"
+         id="feComposite4766" />
+      <feBlend
+         result="fbSourceGraphic"
+         mode="darken"
+         in2="result9"
+         id="feBlend4768" />
+      <feGaussianBlur
+         stdDeviation="5"
+         in="fbSourceGraphic"
+         result="result0"
+         id="feGaussianBlur4770" />
+      <feSpecularLighting
+         in="result0"
+         result="result1"
+         lighting-color="rgb(255,255,255)"
+         surfaceScale="8"
+         specularConstant="0.8"
+         specularExponent="30"
+         id="feSpecularLighting4772">
+        <feDistantLight
+           elevation="55"
+           azimuth="235"
+           id="feDistantLight4774" />
+      </feSpecularLighting>
+      <feComposite
+         in2="fbSourceGraphic"
+         in="result1"
+         result="result2"
+         operator="in"
+         id="feComposite4776" />
+      <feComposite
+         in="fbSourceGraphic"
+         result="result4"
+         operator="arithmetic"
+         k2="1"
+         k3="1"
+         in2="result2"
+         id="feComposite4778" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#radialGradient4364"
+       id="radialGradient4966"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(200.58029,0,0,-106.93697,444.37402,166.84277)"
+       spreadMethod="pad"
+       cx="0"
+       cy="0"
+       fx="-0.00246771"
+       fy="0.276902"
+       r="1" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#radialGradient4386"
+       id="radialGradient4968"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-234.69514,0,0,-234.69514,387.66016,266.70898)"
+       spreadMethod="pad"
+       cx="0"
+       cy="0"
+       fx="-0.1143"
+       fy="0.0566342"
+       r="1" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#radialGradient4418"
+       id="radialGradient4970"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-207.79311,0,0,-207.79311,395.29883,333.93896)"
+       spreadMethod="pad"
+       cx="0"
+       cy="0"
+       fx="-0.1143"
+       fy="0.0566342"
+       r="1" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#radialGradient4452"
+       id="radialGradient4972"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(437.34155,0,0,-437.34155,396.97168,475.16357)"
+       spreadMethod="pad"
+       cx="0"
+       cy="0"
+       fx="0"
+       fy="0"
+       r="1" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#radialGradient4494"
+       id="radialGradient4974"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1910.1764,0,0,-1910.1764,-102.02344,982.49365)"
+       spreadMethod="pad"
+       cx="0"
+       cy="0"
+       fx="0"
+       fy="0"
+       r="1" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#radialGradient4520"
+       id="radialGradient4976"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(564.56506,0,0,-564.56506,380.28857,502.90381)"
+       spreadMethod="pad"
+       cx="0"
+       cy="0"
+       fx="0.0458302"
+       fy="0.0179199"
+       r="1" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#radialGradient4548"
+       id="radialGradient4978"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(291.14328,0,0,-291.14328,384.25195,374.81592)"
+       spreadMethod="pad"
+       cx="0"
+       cy="0"
+       fx="0"
+       fy="0"
+       r="1" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.7"
+     inkscape:cx="139.40316"
+     inkscape:cy="388.02559"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:window-width="1600"
+     inkscape:window-height="837"
+     inkscape:window-x="-8"
+     inkscape:window-y="1016"
+     inkscape:window-maximized="1"
+     inkscape:snap-bbox="true"
+     inkscape:snap-global="false" />
+  <metadata
+     id="metadata7">
+    <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
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="M 100,442.36219 C 194.28571,676.6479 480,222.36218 602.85714,448.07647 474.37481,402.69208 199.93786,748.18561 100,442.36219 z"
+       id="path2991"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="M 242.85714,569.50504 C 467.32094,513.52125 479.50076,337.81034 600,445.21933"
+       id="path2993"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
+    <path
+       style="fill:none"
+       d="m 223.58107,582.84753 c -18.6727,-2.79429 -44.01649,-17.98283 -63.98668,-38.34721 -16.83991,-17.17233 -38.8801,-49.93324 -38.8801,-57.79205 0,-1.0983 4.02882,1.39312 8.95294,5.5365 31.05728,26.13297 64.38014,27.63271 119.93376,5.39776 13.58176,-5.436 54.74557,-26.55026 91.47513,-46.92058 115.89039,-64.27313 163.06851,-77.01431 206.49574,-55.76735 13.45254,6.58172 41.71385,31.17796 41.71385,36.30419 0,1.17134 -5.81134,-1.11832 -12.91408,-5.08813 -7.83472,-4.37889 -19.42509,-7.80822 -29.46797,-8.71887 -24.19175,-2.19363 -39.25517,6.3967 -91.58732,52.23009 -51.02085,44.68497 -72.45949,60.29664 -106.03063,77.21182 -39.38775,19.84593 -106.00984,38.90107 -125.70464,35.95383 z"
+       id="path2999"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none"
+       d="m 356.50686,550.13591 c 28.61605,-15.04631 50.27182,-30.46631 100.44201,-71.51977 55.41472,-45.34498 64.77553,-51.34494 82.38361,-52.80514 11.60316,-0.96223 17.58357,0.283 28.90004,6.01749 22.43253,11.36742 23.58493,14.5232 7.50279,20.546 -7.47585,2.79972 -50.87817,23.07302 -96.4496,45.05176 -88.98748,42.91798 -137.49682,64.98615 -142.5561,64.85251 -1.737,-0.0459 7.16276,-5.51016 19.77725,-12.14285 l 0,0 z"
+       id="path3003"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none"
+       d="m 356.50686,550.13591 c 28.61605,-15.04631 50.27182,-30.46631 100.44201,-71.51977 55.41472,-45.34498 64.77553,-51.34494 82.38361,-52.80514 11.60316,-0.96223 17.58357,0.283 28.90004,6.01749 22.43253,11.36742 23.58493,14.5232 7.50279,20.546 -7.47585,2.79972 -50.87817,23.07302 -96.4496,45.05176 -88.98748,42.91798 -137.49682,64.98615 -142.5561,64.85251 -1.737,-0.0459 7.16276,-5.51016 19.77725,-12.14285 l 0,0 z"
+       id="path3005"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none"
+       d="m 356.50686,550.13591 c 28.61605,-15.04631 50.27182,-30.46631 100.44201,-71.51977 55.41472,-45.34498 64.77553,-51.34494 82.38361,-52.80514 11.60316,-0.96223 17.58357,0.283 28.90004,6.01749 22.43253,11.36742 23.58493,14.5232 7.50279,20.546 -7.47585,2.79972 -50.87817,23.07302 -96.4496,45.05176 -88.98748,42.91798 -137.49682,64.98615 -142.5561,64.85251 -1.737,-0.0459 7.16276,-5.51016 19.77725,-12.14285 l 0,0 z"
+       id="path3007"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none"
+       d="m 356.50686,550.13591 c 28.61605,-15.04631 50.27182,-30.46631 100.44201,-71.51977 55.41472,-45.34498 64.77553,-51.34494 82.38361,-52.80514 11.60316,-0.96223 17.58357,0.283 28.90004,6.01749 22.43253,11.36742 23.58493,14.5232 7.50279,20.546 -7.47585,2.79972 -50.87817,23.07302 -96.4496,45.05176 -88.98748,42.91798 -137.49682,64.98615 -142.5561,64.85251 -1.737,-0.0459 7.16276,-5.51016 19.77725,-12.14285 l 0,0 z"
+       id="path3009"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none"
+       d="m 356.50686,550.13591 c 28.61605,-15.04631 50.27182,-30.46631 100.44201,-71.51977 55.41472,-45.34498 64.77553,-51.34494 82.38361,-52.80514 11.60316,-0.96223 17.58357,0.283 28.90004,6.01749 22.43253,11.36742 23.58493,14.5232 7.50279,20.546 -7.47585,2.79972 -50.87817,23.07302 -96.4496,45.05176 -88.98748,42.91798 -137.49682,64.98615 -142.5561,64.85251 -1.737,-0.0459 7.16276,-5.51016 19.77725,-12.14285 l 0,0 z"
+       id="path3011"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none"
+       d="m 356.50686,550.13591 c 28.61605,-15.04631 50.27182,-30.46631 100.44201,-71.51977 55.41472,-45.34498 64.77553,-51.34494 82.38361,-52.80514 11.60316,-0.96223 17.58357,0.283 28.90004,6.01749 22.43253,11.36742 23.58493,14.5232 7.50279,20.546 -7.47585,2.79972 -50.87817,23.07302 -96.4496,45.05176 -88.98748,42.91798 -137.49682,64.98615 -142.5561,64.85251 -1.737,-0.0459 7.16276,-5.51016 19.77725,-12.14285 l 0,0 z"
+       id="path3013"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none"
+       d="m 293.85882,576.32576 c 0.98214,-0.53118 8.53571,-3.54824 16.78571,-6.70458 25.10429,-9.60459 39.48253,-16.24781 56.87476,-26.27804 26.31913,-15.17842 46.0859,-29.79431 87.41096,-64.63314 47.81845,-40.31305 60.91999,-49.66531 75.98711,-54.24181 7.1597,-2.17469 17.17719,-1.76282 25.44146,1.04602 12.92253,4.3921 35.35714,17.70952 35.35714,20.98838 0,0.35786 -2.97321,1.70561 -6.60714,2.99501 -16.38712,5.81452 -49.87649,21.34593 -115.53571,53.58216 -70.67939,34.70094 -107.67764,51.96403 -130.08274,60.69556 -11.74152,4.57581 -42.97356,13.6631 -46.55207,13.54481 -0.47586,-0.0157 -0.0616,-0.46319 0.92052,-0.99437 z"
+       id="path3015"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none"
+       d=""
+       id="path3017"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="M 99.285714,442.36218 C 211.53848,639.04688 535.30759,154.17456 608.57144,448.07646"
+       id="path3019"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="M 99.999998,442.46326 C 210.21787,641.65387 565.00766,86.599917 608.57144,448.17754"
+       id="path3019-1"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
+    <path
+       style="fill:#00aad4;filter:url(#filter4750)"
+       d="m 241.00168,967.49717 c 0.98214,-0.32777 5.80357,-1.78457 10.71428,-3.23734 26.41393,-7.81419 56.49707,-20.30919 80.55915,-33.46014 31.08464,-16.98906 55.08409,-34.0253 97.29799,-69.06788 42.54453,-35.31703 57.71931,-44.8064 77.69346,-48.58467 6.39324,-1.20933 20.56217,-0.45787 27.30654,1.44822 7.714,2.18012 22.7225,9.76147 31.47125,15.89728 7.1612,5.0224 19.46027,14.87696 19.06306,15.27417 -0.10205,0.10205 -2.27294,-0.33672 -4.82421,-0.97505 -6.59444,-1.64992 -27.21743,-1.61304 -36.42438,0.0651 -30.93606,5.63879 -62.64052,18.64424 -124.28572,50.98308 -86.94778,45.61248 -119.16343,59.6434 -156.96596,68.36353 -12.09262,2.78947 -26.82401,5.03522 -21.60546,3.29367 z"
+       id="path3039"
+       inkscape:connector-curvature="0"
+       transform="matrix(0.78533456,0,0,1.0004083,19.793538,-0.35417203)" />
+    <path
+       style="fill:#006680;fill-opacity:1"
+       d="m 186.30949,970.93328 c -12.55319,-1.21901 -22.37562,-4.65131 -33.62481,-11.74965 -19.3024,-12.18 -35.91947,-35.07435 -49.01597,-67.5323 -3.83575,-9.50638 -8.695707,-23.55364 -8.316179,-24.03712 0.142711,-0.18179 1.020707,1.37229 1.951093,3.45352 6.709366,15.00849 19.186556,30.02366 30.267136,36.42377 8.96727,5.17946 15.07144,6.65904 27.35773,6.63121 13.88878,-0.0314 24.62401,-2.83823 41.51055,-10.85308 19.89607,-9.44327 33.91985,-18.47098 80.77726,-51.99985 43.20464,-30.91511 61.75524,-42.7678 81.50723,-52.07812 35.87596,-16.91054 62.13651,-17.2665 85.3929,-1.15752 11.41141,7.90434 23.05325,22.56861 32.17099,40.52318 1.42537,2.80683 2.59158,5.32 2.59158,5.58483 0,0.26483 -1.45147,-1.10758 -3.22548,-3.04979 -15.48431,-16.95247 -32.10445,-27.15705 -46.3127,-28.43546 -12.39117,-1.11491 -26.26765,4.82204 -41.12896,17.59672 -5.70141,4.90089 -17.63318,16.85018 -32.51665,32.56438 -21.30695,22.4962 -35.52098,36.41493 -48.18743,47.18633 -30.99016,26.35362 -63.06116,45.0465 -99.058
 1,57.73687 -10.01822,3.53183 -13.48878,4.03221 -22.14019,3.19208 l 0,0 z"
+       id="path3041"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#0088aa;fill-opacity:1;filter:url(#filter4738)"
+       d="m 150.64454,910.10173 c -3.14286,-0.34573 -7.48215,-1.08826 -9.64286,-1.65004 l -3.92857,-1.02143 5,0.48712 c 33.8146,3.29434 71.25439,-9.41918 130,-44.14444 16.65019,-9.84212 24.15659,-14.55915 62.70942,-39.40654 35.13993,-22.64778 43.97023,-28.21388 58.36201,-36.78797 58.91035,-35.09659 97.88082,-47.85459 127.50143,-41.74092 33.16549,6.84534 54.76547,37.68411 66.02615,94.26698 1.61013,8.0906 1.90219,12.02477 0.61733,8.31568 -12.34418,-35.63491 -29.18294,-58.58207 -51.02959,-69.54103 -25.09015,-12.586 -57.78742,-10.34967 -100.61532,6.88157 -23.87644,9.60637 -48.19013,22.25908 -97.14286,50.55259 -51.42042,29.71978 -70.47341,40.10388 -91.53927,49.88995 -31.07979,14.438 -54.38381,21.73334 -76.57213,23.97095 -8.3324,0.84029 -11.55604,0.82846 -19.74574,-0.0725 z"
+       id="path3045"
+       inkscape:connector-curvature="0"
+       transform="matrix(0.78533456,0,0,1.0004083,19.793538,-0.35417203)" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 165.71429,110.93361 c 134.75264,-35.496993 209.13331,28.93437 122.85714,127.14286 -63.17775,71.91548 -79.94682,-2.93294 -47.14286,-17.14286 56.84367,-24.62336 56.43487,-44.66263 42.85714,-71.42857 -18.91784,-37.29297 -62.1667,-19.2726 -118.57142,-38.57143 z"
+       id="path3047"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="csssc" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:0.88637197px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="M 191.44524,964.44758 C 367.72442,908.44093 377.28965,732.65827 471.92187,840.11112"
+       id="path2993-7"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
+    <text
+       xml:space="preserve"
+       style="font-size:60px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#008080;fill-opacity:1;stroke:none;font-family:Lucida Console;-inkscape-font-specification:Lucida Console Bold"
+       id="text3099"
+       sodipodi:linespacing="100%"
+       transform="translate(0,2)"><textPath
+         xlink:href="#path2993-7"
+         id="textPath3105"
+         style="font-size:32px;fill:#ffffff"><tspan
+           id="tspan3103"
+           style="font-size:32px;baseline-shift:baseline;fill:#ffffff"
+           y="832.85516"
+           x="89.98661">Flow Computing</tspan></textPath></text>
+    <g
+       transform="matrix(0.20696448,0,0,-0.20696448,420.99761,626.19842)"
+       inkscape:label="Globe_of_the_World_America"
+       id="g4350">
+      <g
+         id="g4352">
+        <g
+           id="g4354">
+          <g
+             id="g4360">
+            <g
+               id="g4362">
+              <path
+                 id="path4372"
+                 style="fill:url(#radialGradient4966);stroke:none"
+                 d="m 243.787,166.843 c 0,-59.059 89.807,-106.934 200.588,-106.934 l 0,0 c 110.779,0 200.585,47.875 200.585,106.934 l 0,0 c 0,59.061 -89.806,106.934 -200.585,106.934 l 0,0 c -110.781,0 -200.588,-47.873 -200.588,-106.934"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+        </g>
+      </g>
+      <g
+         id="g4374">
+        <g
+           id="g4376">
+          <g
+             id="g4382">
+            <g
+               id="g4384">
+              <path
+                 id="path4396"
+                 style="fill:url(#radialGradient4968);stroke:none"
+                 d="m 187.504,333.94 c 0,-114.761 93.032,-207.794 207.798,-207.794 l 0,0 c 114.757,0 207.793,93.033 207.793,207.794 l 0,0 c 0,114.762 -93.036,207.794 -207.793,207.794 l 0,0 c -114.766,0 -207.798,-93.032 -207.798,-207.794"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+        </g>
+      </g>
+      <g
+         id="g4398">
+        <g
+           clip-path="url(#clipPath4402)"
+           id="g4400">
+          <g
+             id="g4406">
+            <g
+               id="g4408" />
+            <g
+               id="g4426">
+              <g
+                 id="g4428"
+                 clip-path="url(#clipPath4410)">
+                <g
+                   id="g4430">
+                  <g
+                     id="g4432">
+                    <g
+                       id="g4434">
+                      <g
+                         id="g4436">
+                        <path
+                           id="path4438"
+                           style="fill:url(#radialGradient4970);stroke:none"
+                           d="m 395.301,535.54 c 91.795,0 166.209,-56.652 166.209,-126.533 0,-69.881 -74.414,-126.532 -166.209,-126.532 -91.8,0 -166.214,56.651 -166.214,126.532 0,69.881 74.414,126.533 166.214,126.533"
+                           inkscape:connector-curvature="0" />
+                      </g>
+                    </g>
+                  </g>
+                </g>
+              </g>
+            </g>
+          </g>
+          <g
+             id="g4440">
+            <g
+               id="g4442" />
+            <g
+               id="g4468">
+              <g
+                 id="g4470"
+                 clip-path="url(#clipPath4444)"
+                 style="opacity:0.60000598">
+                <g
+                   id="g4472">
+                  <g
+                     id="g4474">
+                    <g
+                       id="g4476">
+                      <g
+                         id="g4478">
+                        <path
+                           id="path4480"
+                           style="fill:url(#radialGradient4972);stroke:none"
+                           d="m 595.11,330.745 c -3.147,17.309 -9.394,34.233 -18.246,50.296 3.531,8.953 5.235,18.179 5.028,27.465 9.104,-14.692 15.531,-30.64 18.772,-47.441 0.226,-10.251 -1.653,-20.437 -5.554,-30.32 m 1.896,-28.327 c -0.104,-8.797 -1.035,-17.297 -2.742,-25.47 -4.048,-9.872 -10.112,-19.427 -18.085,-28.426 1.557,7.943 2.421,16.33 2.52,25.124 0.102,8.785 -0.554,17.66 -1.915,26.557 7.974,9 14.034,18.556 18.085,28.425 1.504,-8.667 2.237,-17.424 2.137,-26.21 m -21.698,-54.867 c -8.113,-8.957 -18.14,-17.352 -29.976,-24.936 1.311,7.735 2.042,16.007 2.144,24.802 0.1,8.786 -0.427,17.772 -1.541,26.876 11.841,7.587 21.869,15.98 29.981,24.939 1.355,-8.903 2.005,-17.783 1.903,-26.572 -0.104,-8.793 -0.958,-17.172 -2.511,-25.109 m -17.723,-42.724 c -7.344,-8.105 -16.41,-15.701 -27.124,-22.565 6.966,10.839 11.995,24.043 14.707,39.418 11.829,7.576 21.842,15.962 29.947,24.912 -3.214,-15.79 -9.209,-29.799 -17.53,-41.765 m -28.288,-23.304 c -10.826,-6.812 -23.295,-12.882 -37.307,-18.001
  5.038,9.905 8.697,22.442 10.702,37.467 15.471,5.647 29.238,12.352 41.19,19.873 -2.691,-15.361 -7.676,-28.536 -14.585,-39.339 m -38.835,-18.548 c -14.118,-5.044 -28.922,-8.816 -44.045,-11.371 2.766,9.308 4.802,21.42 5.964,36.228 16.696,2.818 33.041,6.983 48.632,12.551 -1.977,-15.016 -5.581,-27.53 -10.551,-37.408 m -45.65,-11.633 c -15.149,-2.473 -30.603,-3.726 -45.998,-3.821 0.391,9.104 0.731,21.07 1.009,35.8 16.997,0.108 34.054,1.493 50.781,4.217 -1.127,-14.802 -3.104,-26.905 -5.792,-36.196 m -10.288,-19.569 c -12.193,-1.987 -24.641,-3 -37.038,-3.074 0.476,3.16 0.915,9.285 1.305,18.274 15.347,0.097 30.753,1.347 45.854,3.807 -2.713,-9.18 -6.133,-15.553 -10.121,-19.007 m -37.342,15.743 c -15.389,-0.015 -30.714,1.129 -45.595,3.366 -1.968,9.274 -3.309,21.362 -3.908,36.155 16.434,-2.477 33.35,-3.737 50.342,-3.72 -0.245,-14.73 -0.529,-26.699 -0.839,-35.801 m -1.003,-18.823 c -12.39,-0.01 -24.73,0.91 -36.719,2.714 -3.136,3.419 -5.758,9.761 -7.753,18.92 14.838,-2.235 30.112,-3.375 45.455,-
 3.36 -0.304,-8.988 -0.64,-15.112 -0.983,-18.274 m -72.483,11.118 c -6.535,4.216 -12.035,11.232 -16.276,20.916 13.546,-4.442 27.906,-7.845 42.717,-10.162 2.076,-9.166 4.802,-15.529 8.057,-18.962 -11.957,1.868 -23.557,4.618 -34.498,8.208 m -25.062,58.747 c 15.006,-4.923 30.908,-8.692 47.307,-11.256 0.629,-14.795 2.022,-26.891 4.069,-36.175 -14.851,2.318 -29.257,5.734 -42.846,10.194 -4.194,9.79 -7.116,22.251 -8.53,37.237 M 267.97,178.451 c -6.145,10.649 -10.464,23.717 -12.606,39.024 12.708,-7.239 26.737,-13.387 41.679,-18.39 1.448,-14.998 4.423,-27.474 8.68,-37.289 -13.529,4.532 -26.233,10.101 -37.753,16.655 m -31.53,23.451 c -7.72,11.823 -13.157,25.725 -15.886,41.462 9.548,-9.407 20.832,-17.797 33.441,-25.105 2.166,-15.318 6.526,-28.41 12.735,-39.096 -11.422,6.618 -21.634,14.22 -30.29,22.739 m -17.89,67.491 c 0.104,8.782 0.937,17.677 2.441,26.607 9.559,-9.418 20.856,-17.818 33.475,-25.134 -1.236,-9.132 -1.926,-18.127 -2.028,-26.919 -0.103,-8.791 0.39,-17.051 1.428,-24.758 -12.623,7.31
 6 -23.913,15.712 -33.478,25.133 -1.307,7.907 -1.94,16.274 -1.838,25.071 m -20.601,5.464 c -1.492,8.157 -2.216,16.654 -2.113,25.449 0.105,8.783 1.03,17.55 2.715,26.233 4.884,-10.117 11.989,-20.037 21.415,-29.518 -1.514,-8.92 -2.35,-17.812 -2.452,-26.596 -0.104,-8.795 0.531,-17.165 1.849,-25.082 -9.42,9.48 -16.526,19.399 -21.414,29.514 m -7.323,84.512 c 3.632,16.828 10.428,32.833 19.873,47.6 0.348,-9.287 2.624,-18.625 6.896,-27.791 -9.102,-16.159 -15.653,-33.149 -19.156,-50.491 -4.718,10.12 -7.225,20.428 -7.613,30.682 m 25.423,76.891 c 9.299,13.273 21.168,24.898 35.108,34.543 -2.837,-7.207 -4.207,-14.635 -4.035,-22.111 -14.322,-11.746 -26.513,-25.151 -36.069,-39.812 -0.211,9.254 1.484,18.455 4.996,27.38 m 35.967,35.137 c 14.026,9.566 30.113,17.148 47.764,22.415 -1.898,-4.816 -2.811,-9.779 -2.695,-14.776 -18.138,-7.935 -34.668,-17.945 -49.08,-29.623 -0.164,7.434 1.197,14.818 4.011,21.984 m 13.409,21.378 c 12.74,7.514 27.342,12.736 43.362,15.407 -3.883,-4.386 -6.829,-9.043 -8.797,-13.85
  -17.615,-5.172 -33.667,-12.67 -47.66,-22.161 2.93,7.156 7.317,14.082 13.095,20.604 m 22.331,18.767 c 10.598,5.715 22.735,8.864 36.049,9.258 -5.77,-3.698 -10.647,-7.788 -14.599,-12.153 -15.945,-2.59 -30.486,-7.735 -43.164,-15.181 5.876,6.494 13.139,12.579 21.714,18.076 m 36.871,9.278 c 13.364,0.279 27.894,-2.201 43.209,-7.635 -2.309,-1.482 -4.269,-3.123 -5.857,-4.875 -18.362,2.898 -35.775,2.975 -51.785,0.493 3.902,4.316 8.73,8.362 14.433,12.017 m 20.464,9.974 c 9.613,-1.55 20.054,-6.023 31.051,-13.561 -3.026,-1.106 -5.721,-2.417 -8.056,-3.89 -15.191,5.515 -29.6,8.073 -42.857,7.863 5.766,3.628 12.405,6.86 19.862,9.588 m 24.227,6.342 c 5.171,-2.712 10.773,-8.452 16.652,-17.33 -3.262,-0.553 -6.459,-1.369 -9.507,-2.456 -10.831,7.599 -21.112,12.128 -30.575,13.731 7.508,2.685 15.387,4.693 23.43,6.055 m 25.328,2.179 c 0.528,-3.112 1.064,-9.288 1.602,-18.623 -3.322,-0.024 -6.658,-0.294 -9.929,-0.827 -5.707,8.908 -11.137,14.674 -16.146,17.412 8.061,1.315 16.283,1.985 24.473,2.038 m 25.13,-1.
 783 c -4.081,-2.784 -8.565,-8.603 -13.331,-17.567 -3.211,0.485 -6.517,0.73 -9.84,0.727 -0.346,9.339 -0.713,15.516 -1.074,18.626 8.183,0.008 16.331,-0.594 24.245,-1.786 m 0.854,-0.131 c 7.899,-1.233 15.559,-3.047 22.787,-5.416 -8.418,-1.767 -17.623,-6.476 -27.38,-14.269 -2.935,0.962 -6.042,1.699 -9.246,2.197 4.952,8.935 9.603,14.728 13.839,17.488 m 23.567,-5.674 c 7.197,-2.409 13.954,-5.368 20.077,-8.851 -12.243,-0.095 -25.614,-2.987 -39.777,-8.857 -2.483,1.415 -5.223,2.616 -8.144,3.593 9.92,7.736 19.282,12.395 27.844,14.115 m 36.86,-21.324 c -15.322,2.191 -32.044,1.792 -49.749,-1.443 -1.869,1.839 -4.075,3.477 -6.542,4.907 14.303,5.787 27.801,8.604 40.168,8.63 6.08,-3.519 11.514,-7.562 16.123,-12.094 m 10.839,-14.75 c -17.307,4.896 -36.198,7.444 -56.193,7.321 -0.962,2 -2.368,3.954 -4.234,5.825 17.792,3.153 34.596,3.471 49.99,1.208 4.602,-4.608 8.067,-9.432 10.437,-14.354 m 31.844,-0.413 c 6.909,-6.922 12.111,-14.168 15.671,-21.557 -13.57,9.345 -29.217,16.676 -46.451,21.666 -2.398,4.9
 72 -5.896,9.845 -10.546,14.502 15.343,-2.373 29.258,-7.325 41.326,-14.611 m 21.553,-44.596 c -14.136,11.557 -30.431,21.431 -48.378,29.216 -0.19,5.003 -1.409,10.031 -3.707,14.966 17.279,-5.084 32.965,-12.5 46.571,-21.919 3.421,-7.345 5.234,-14.824 5.514,-22.263 m 29.142,-12.507 c 4.259,-9.145 6.517,-18.464 6.864,-27.727 -9.209,14.584 -21.09,27.889 -35.135,39.517 -0.283,7.484 -2.106,15.008 -5.549,22.392 13.524,-9.502 24.956,-21.005 33.82,-34.182 m 1.877,-56.105 c -8.959,16.023 -20.511,31.171 -34.179,44.973 2.847,7.209 4.22,14.639 4.053,22.116 14.046,-11.706 25.927,-25.076 35.14,-39.711 0.209,-9.254 -1.495,-18.455 -5.014,-27.378 M 560.11,354.355 c 7.213,8.143 12.699,16.791 16.364,25.722 8.839,-16.112 15.064,-33.072 18.207,-50.399 -4.044,-9.86 -10.099,-19.406 -18.068,-28.399 -2.838,17.805 -8.484,35.68 -16.503,53.076 M 532.2,330.913 c 10.711,6.861 19.784,14.458 27.123,22.565 7.98,-17.44 13.599,-35.346 16.423,-53.167 -8.107,-8.948 -18.121,-17.334 -29.945,-24.915 -2.322,18.239 -6.981,36.94
 8 -13.601,55.517 m -27.766,-104.46 c 0.099,8.786 -0.25,17.858 -1.02,27.131 15.488,5.651 29.268,12.365 41.234,19.891 1.104,-9.108 1.624,-18.098 1.526,-26.883 -0.108,-8.793 -0.827,-17.067 -2.128,-24.795 -11.971,-7.529 -25.749,-14.24 -41.238,-19.895 0.967,7.567 1.522,15.758 1.626,24.551 m -10.715,85.719 c 14.016,5.115 26.485,11.19 37.318,18 6.56,-18.604 11.177,-37.343 13.476,-55.588 -11.956,-7.525 -25.722,-14.229 -41.198,-19.875 -1.608,18.582 -4.893,37.96 -9.596,57.463 m -40.27,-99.052 c 0.104,8.787 -0.04,17.915 -0.399,27.292 16.714,2.82 33.073,6.988 48.681,12.564 0.758,-9.279 1.103,-18.35 1,-27.135 -0.101,-8.793 -0.65,-16.983 -1.606,-24.543 -15.604,-5.577 -31.967,-9.742 -48.68,-12.565 0.564,7.459 0.905,15.591 1.004,24.387 m -5.3,87.13 c 15.126,2.558 29.931,6.327 44.054,11.373 4.62,-19.531 7.855,-38.929 9.436,-57.522 -15.589,-5.569 -31.936,-9.732 -48.635,-12.551 -0.765,18.805 -2.428,38.6 -4.855,58.7 m -47.95,-91.696 c 0.104,8.784 0.184,17.929 0.241,27.344 17.02,0.107 34.094,1.491 50.83
 5,4.22 0.35,-9.38 0.484,-18.508 0.382,-27.294 -0.104,-8.795 -0.438,-16.927 -0.987,-24.387 -16.736,-2.728 -33.815,-4.113 -50.828,-4.22 0.13,7.425 0.255,15.542 0.357,24.337 m 23.904,212.38 c 4.805,-18.43 9.138,-37.983 12.872,-57.96 -12.122,-1.974 -24.496,-2.976 -36.816,-3.053 -0.199,20.268 -0.466,40.159 -0.801,58.957 8.285,0.052 16.598,0.726 24.745,2.056 m -25.955,51.361 c 3.328,0.021 6.661,0.293 9.936,0.824 5.613,-15.411 10.901,-32.663 15.721,-51.051 -8.055,-1.313 -16.277,-1.98 -24.471,-2.031 -0.335,18.761 -0.731,36.416 -1.186,52.258 M 353.462,300.773 c 2.334,20.142 5.267,40.575 8.678,60.605 11.985,-1.807 24.322,-2.725 36.714,-2.713 0.075,-20.286 0.098,-40.939 0.066,-61.249 -15.347,-0.014 -30.617,1.124 -45.458,3.357 m -5.157,-60.018 c 0.987,18.819 2.699,38.642 5.015,58.775 14.882,-2.24 30.203,-3.381 45.593,-3.366 -0.03,-20.306 -0.12,-40.249 -0.266,-59.131 -16.992,-0.014 -33.911,1.245 -50.342,3.722 m -0.94,-28.443 c 0.104,8.792 0.405,17.919 0.881,27.3 16.451,-2.477 33.381,-3.737 50.39
 5,-3.72 -0.074,-9.414 -0.161,-18.558 -0.266,-27.347 -0.101,-8.791 -0.214,-16.907 -0.338,-24.336 -17.009,-0.011 -33.942,1.249 -50.392,3.728 -0.285,7.455 -0.382,15.584 -0.28,24.375 m -48.107,39.961 c 1.808,18.626 5.103,38.083 9.636,57.694 13.587,-4.458 27.993,-7.875 42.844,-10.195 -2.389,-20.122 -4.156,-39.942 -5.174,-58.751 -16.396,2.562 -32.301,6.333 -47.306,11.252 m -43.273,18.917 c 2.54,18.306 7.225,37.152 13.716,55.91 11.513,-6.554 24.219,-12.123 37.755,-16.657 -4.608,-19.59 -7.951,-39.028 -9.788,-57.641 -14.941,5.006 -28.97,11.156 -41.683,18.388 m -17.816,79.364 c 8.653,-8.524 18.867,-16.121 30.292,-22.741 -6.552,-18.724 -11.282,-37.54 -13.845,-55.836 -12.606,7.308 -23.89,15.699 -33.44,25.108 3.123,17.871 8.929,35.882 16.993,53.469 m -0.926,0.924 c -8.111,-17.541 -13.956,-35.519 -17.093,-53.375 -9.416,9.471 -16.512,19.383 -21.392,29.49 3.498,17.361 10.027,34.386 19.107,50.594 4.415,-9.155 10.85,-18.132 19.378,-26.709 m 15.455,74.026 c -13.792,-13.944 -25.535,-29.216 -34.739,-45.
 331 -4.262,9.138 -6.524,18.446 -6.873,27.706 9.55,14.709 21.741,28.181 36.06,40.001 0.283,-7.477 2.112,-14.992 5.552,-22.376 m 48.113,38.037 c -17.462,-10.733 -33.381,-23.288 -47.258,-37.177 -3.42,7.338 -5.238,14.811 -5.521,22.245 14.408,11.755 30.932,21.853 49.066,29.885 0.19,-4.997 1.414,-10.022 3.713,-14.953 m 57.39,38.817 c -0.761,-1.931 -1.131,-3.923 -1.083,-5.928 -20.898,-3.285 -40.703,-9.055 -58.91,-16.909 -0.115,4.941 0.788,9.849 2.666,14.614 17.716,5.173 36.992,8.024 57.327,8.223 m 0.085,0.21 c -20.292,-0.091 -39.529,-2.841 -57.206,-7.919 1.944,4.756 4.859,9.359 8.701,13.695 16.085,2.567 33.582,2.58 52.037,-0.22 -1.561,-1.756 -2.743,-3.628 -3.532,-5.556 m 15.923,-80.741 c 4.273,18.433 8.893,35.731 13.745,51.194 3.214,-0.484 6.521,-0.729 9.848,-0.729 0.266,-15.84 0.493,-33.496 0.665,-52.261 -8.188,-0.004 -16.34,0.603 -24.258,1.796 m -0.266,-1.139 c 8.013,-1.206 16.256,-1.821 24.537,-1.812 0.171,-18.801 0.298,-38.691 0.371,-58.961 -12.32,-0.012 -24.582,0.905 -36.498,2.698 3.4
 31,20.01 7.331,39.602 11.59,58.075 m -47.151,-49.722 c 6.845,19.21 14.678,37.879 23.247,55.336 7.315,-2.399 15.065,-4.236 23.056,-5.483 -4.407,-18.449 -8.451,-38.02 -12.002,-58.013 -11.892,1.857 -23.421,4.59 -34.301,8.16 m -0.422,-1.186 c 10.946,-3.589 22.542,-6.341 34.504,-8.209 -3.531,-20.01 -6.569,-40.428 -8.982,-60.555 -14.808,2.314 -29.169,5.718 -42.722,10.162 4.582,19.613 10.396,39.371 17.2,58.602 m -31.556,13.795 c 9.269,-5.277 19.502,-9.762 30.398,-13.411 -6.911,-19.197 -12.82,-38.922 -17.474,-58.511 -13.491,4.518 -26.156,10.072 -37.637,16.605 6.559,18.746 14.916,37.394 24.713,55.317 m -25.384,18.882 c 6.965,-6.861 15.19,-12.979 24.387,-18.309 -9.894,-17.868 -18.328,-36.47 -24.955,-55.181 -11.384,6.597 -21.567,14.174 -30.195,22.67 8.156,17.562 18.554,34.689 30.763,50.82 m -0.749,0.744 c -12.278,-16.06 -22.733,-33.127 -30.934,-50.644 -8.501,8.555 -14.912,17.504 -19.32,26.628 9.18,16.166 20.894,31.502 34.653,45.521 3.559,-7.37 8.735,-14.596 15.601,-21.505 m 42.812,45.435 c -15
 .539,-13.424 -29.705,-28.426 -42.052,-44.446 -6.828,6.869 -11.972,14.054 -15.512,21.38 13.844,13.967 29.717,26.608 47.134,37.438 2.379,-4.925 5.838,-9.756 10.43,-14.372 m -9.606,15.566 c -2.268,4.877 -3.477,9.843 -3.664,14.785 18.203,7.952 38.01,13.828 58.9,17.226 0.078,-2.004 0.569,-4.02 1.49,-6 -20.116,-6.517 -39.188,-15.348 -56.726,-26.011 m 10.561,-14.739 c -4.535,4.566 -7.956,9.342 -10.307,14.212 17.489,10.76 36.509,19.696 56.573,26.326 0.955,-1.975 2.342,-3.915 4.187,-5.767 -17.895,-9.629 -34.85,-21.405 -50.453,-34.771 m 16.611,-12.588 c -6.076,3.52 -11.512,7.562 -16.114,12.098 15.505,13.455 32.369,25.328 50.156,35.061 1.862,-1.84 4.067,-3.478 6.536,-4.909 -14.383,-12.287 -28.029,-26.578 -40.578,-42.25 m -34.63,-51.626 c -9.144,5.297 -17.323,11.382 -24.242,18.205 12.277,16.088 26.352,31.171 41.8,44.685 4.655,-4.585 10.158,-8.673 16.299,-12.236 -12.498,-15.724 -23.904,-32.815 -33.857,-50.654 m 34.529,50.272 c 6.189,-3.527 13.029,-6.525 20.311,-8.96 -8.714,-17.414 -16.673,-36.04
  -23.627,-55.213 -10.833,3.626 -21.004,8.085 -30.225,13.333 9.86,17.892 21.155,35.047 33.541,50.84 m 49.405,39.752 c 2.936,-0.96 6.046,-1.699 9.25,-2.199 -5.03,-15.438 -9.817,-32.711 -14.246,-51.119 -7.903,1.233 -15.565,3.051 -22.794,5.423 8.606,17.417 17.951,33.605 27.79,47.895 m -28.554,-47.641 c -7.202,2.413 -13.963,5.375 -20.088,8.864 12.43,15.742 25.94,30.108 40.187,42.475 2.48,-1.414 5.226,-2.617 8.144,-3.595 -10.003,-14.237 -19.498,-30.375 -28.243,-47.744 m 87.482,69.129 c -0.077,2.007 -0.562,4.024 -1.486,6.005 20.044,0.011 38.985,-2.64 56.335,-7.63 2.275,-4.88 3.478,-9.85 3.667,-14.798 -18.032,7.704 -37.698,13.313 -58.516,16.423 m 55.857,-31.567 c -17.54,10.483 -36.68,19.115 -56.937,25.424 0.763,1.929 1.131,3.924 1.088,5.928 20.816,-3.226 40.494,-8.938 58.52,-16.742 0.108,-4.937 -0.797,-9.848 -2.671,-14.61 m 48.14,-37.338 c -13.751,13.748 -29.601,26.137 -47.063,36.689 1.898,4.817 2.817,9.78 2.705,14.776 17.953,-7.882 34.246,-17.845 48.384,-29.48 0.167,-7.432 -1.2,-14.82 -4.0
 26,-21.985 m -12.642,-22.335 c 5.812,6.557 10.228,13.518 13.176,20.708 13.633,-13.875 25.164,-29.09 34.102,-45.161 -3.65,-8.902 -9.113,-17.521 -16.309,-25.638 -8.115,17.368 -18.583,34.249 -30.969,50.091 m -22.474,-18.878 c 8.627,5.528 15.931,11.643 21.84,18.171 12.326,-15.909 22.743,-32.848 30.818,-50.261 -7.32,-8.082 -16.366,-15.653 -27.043,-22.498 -6.699,18.555 -15.358,36.956 -25.615,54.588 m -30.98,-15.089 c 11.284,4.118 21.322,9.008 30.04,14.495 10.167,-17.689 18.75,-36.137 25.397,-54.73 -10.801,-6.788 -23.228,-12.846 -37.2,-17.945 -4.754,19.5 -10.923,39.116 -18.237,58.18 m -36.693,-9.597 c 12.179,2.056 24.099,5.092 35.466,9.155 7.201,-19.107 13.268,-38.757 17.951,-58.284 -14.083,-5.031 -28.838,-8.789 -43.916,-11.336 -2.458,20.105 -5.669,40.492 -9.501,60.465 m -37.954,-65.788 c 15.399,0.097 30.851,1.349 46.004,3.818 2.339,-20.112 3.947,-39.925 4.681,-58.731 -16.722,-2.725 -33.784,-4.108 -50.78,-4.217 0.11,18.882 0.146,38.826 0.095,59.13 m 45.856,5.058 c -15.101,-2.462 -30.507,-3
 .711 -45.859,-3.806 -0.047,20.31 -0.173,40.962 -0.373,61.248 12.4,0.077 24.839,1.085 37.038,3.075 3.713,-19.994 6.819,-40.4 9.194,-60.517 m 22.359,136.901 c -5.76,-3.625 -12.394,-6.855 -19.854,-9.577 -9.425,17.2 -19.723,33.155 -30.643,47.199 3.026,1.104 5.718,2.416 8.054,3.887 15.11,-12.024 29.381,-26.065 42.443,-41.509 m 15.05,12.401 c -3.904,-4.314 -8.732,-8.354 -14.428,-12.007 -13.18,15.372 -27.574,29.336 -42.811,41.273 2.31,1.482 4.272,3.122 5.856,4.872 18.282,-9.405 35.561,-20.969 51.383,-34.138 m 0.419,0.466 c -15.901,13.085 -33.264,24.555 -51.636,33.861 1.56,1.758 2.743,3.626 3.533,5.551 20.212,-6.416 39.313,-15.155 56.81,-25.728 -1.947,-4.751 -4.864,-9.351 -8.707,-13.684 m 0.98,-0.809 c 3.884,4.382 6.835,9.034 8.805,13.84 17.425,-10.648 33.246,-23.123 46.965,-36.943 -2.929,-7.147 -7.322,-14.068 -13.096,-20.585 -12.469,15.796 -26.838,30.544 -42.674,43.688 m 19.394,-63.048 c -8.662,-5.452 -18.647,-10.313 -29.865,-14.41 -7.362,19.042 -15.864,37.518 -25.251,54.761 7.542,2.752 14
 .251,6.02 20.077,9.684 13.011,-15.494 24.814,-32.378 35.039,-50.035 m -34.41,50.435 c 5.759,3.692 10.645,7.78 14.592,12.14 15.762,-13.232 30.063,-28.054 42.468,-43.92 -5.877,-6.488 -13.14,-12.57 -21.713,-18.064 -10.32,17.6 -22.226,34.418 -35.347,49.844 m -21.526,-10.379 c -0.186,0.355 -0.376,0.71 -0.57,1.065 -7.509,-2.683 -15.387,-4.69 -23.433,-6.048 -4.98,18.361 -10.439,35.584 -16.239,50.965 3.27,0.552 6.463,1.366 9.512,2.456 10.745,-14.106 20.886,-30.121 30.16,-47.373 0.194,-0.355 0.384,-0.71 0.573,-1.065 9.236,-17.298 17.608,-35.821 24.851,-54.904 -11.304,-4.038 -23.151,-7.057 -35.257,-9.101 -3.866,19.956 -8.338,39.486 -13.298,57.886 8.141,1.377 16.107,3.406 23.704,6.119 l -0.003,0 z M 430.396,508.6 c 11.122,-11.141 5.293,-25.504 -13.029,-32.085 -18.32,-6.584 -42.203,-2.889 -53.332,8.252 -11.138,11.14 -5.306,25.508 13.016,32.09 18.239,6.557 41.985,2.925 53.182,-8.098 l 0.163,-0.159 z M 296.959,199.995 c -14.96,5.009 -29.001,11.165 -41.723,18.408 -1.029,7.701 -1.519,15.96 -1.414,2
 4.751 0.103,8.789 0.787,17.786 2.011,26.927 12.73,-7.242 26.771,-13.4 41.73,-18.405 -0.891,-9.287 -1.403,-18.37 -1.504,-27.154 -0.105,-8.795 0.208,-16.977 0.9,-24.527 m 48.946,-11.791 c -16.418,2.559 -32.338,6.338 -47.361,11.264 -0.68,7.55 -0.98,15.726 -0.879,24.521 0.105,8.786 0.605,17.866 1.483,27.161 15.022,-4.928 30.944,-8.705 47.357,-11.266 -0.495,-9.383 -0.801,-18.514 -0.904,-27.3 -0.101,-8.793 0.006,-16.924 0.304,-24.38 m 257.138,150.575 -0.096,3.099 c -0.238,6.529 -0.958,12.964 -2.125,19.276 -0.135,3.67 -0.543,7.35 -1.223,11.024 l -0.31,1.599 c 0.748,-3.866 1.196,-7.741 1.339,-11.604 -3.235,16.782 -9.663,32.695 -18.765,47.335 -0.343,9.294 -2.611,18.639 -6.887,27.811 3.359,-5.078 6.338,-10.404 8.911,-15.959 l -1.134,2.398 c -2.413,5.044 -5.164,9.893 -8.236,14.535 -1.72,3.567 -3.746,7.108 -6.08,10.61 l -0.938,1.392 c 2.505,-3.691 4.659,-7.425 6.474,-11.191 -8.835,13.129 -20.238,24.571 -33.726,33.999 -3.583,7.432 -8.81,14.715 -15.757,21.676 5.252,-3.233 10.156,-6.9 14.658,-11.0
 04 -4.687,4.356 -9.784,8.267 -15.306,11.652 -6.969,6.855 -15.191,12.968 -24.385,18.294 l 0.236,-0.136 c -0.084,0.048 -0.167,0.097 -0.248,0.142 -0.198,0.116 -0.397,0.23 -0.596,0.343 0,0 -0.012,0.006 -0.014,0.009 l 0.048,-0.028 c 9.132,-5.293 17.304,-11.366 24.221,-18.176 -12.004,7.216 -25.848,12.093 -41.102,14.392 -4.661,4.582 -10.158,8.667 -16.308,12.228 12.306,-0.087 23.467,-2.955 33.141,-8.416 l -0.585,0.336 c -0.13,0.075 -0.261,0.152 -0.396,0.222 -0.292,0.17 -0.584,0.336 -0.882,0.501 l 0.865,-0.492 c -9.577,5.41 -20.625,8.214 -32.811,8.234 -6.191,3.521 -13.025,6.515 -20.303,8.95 6.006,1.128 11.62,0.794 16.748,-0.948 l -1.236,0.41 c -4.994,1.664 -10.454,1.946 -16.3,0.8 -7.309,2.393 -15.054,4.23 -23.042,5.475 2.261,1.412 4.408,1.956 6.419,1.643 l -0.26,0.039 -0.876,0.134 c -1.92,0.292 -3.977,-0.264 -6.15,-1.683 -8.002,1.202 -16.242,1.814 -24.519,1.808 -0.178,1.477 -0.358,2.205 -0.536,2.193 l -1.123,-0.004 c 0.255,0.013 0.505,-0.715 0.767,-2.195 -8.286,-0.054 -16.598,-0.728 -24.751,
 -2.059 -2.812,1.471 -5.489,1.98 -8.01,1.552 l -1.18,-0.197 c 2.618,0.463 5.404,-0.03 8.33,-1.5 -8.141,-1.374 -16.107,-3.406 -23.701,-6.122 -7.151,1.119 -13.826,0.561 -19.916,-1.617 l -0.294,-0.107 -1.078,-0.39 c 6.256,2.29 13.124,2.919 20.488,1.821 -7.547,-2.754 -14.259,-6.025 -20.085,-9.696 -13.199,-0.32 -25.238,-3.406 -35.744,-9.062 2.803,1.766 5.746,3.47 8.823,5.106 l -1.907,-1.027 c -2.623,-1.43 -5.145,-2.906 -7.566,-4.429 -1.047,-0.582 -2.071,-1.204 -3.087,-1.834 0.715,0.427 1.438,0.843 2.169,1.246 -8.628,-5.528 -15.931,-11.651 -21.842,-18.184 -9.175,-5.491 -17.36,-12.199 -24.379,-20.027 l -1.485,-1.665 c 7.216,8.226 15.697,15.261 25.246,20.999 -5.814,-6.564 -10.231,-13.531 -13.176,-20.727 -13.91,-9.573 -25.752,-21.136 -35.036,-34.36 2.426,5.922 5.656,11.719 9.66,17.326 l -1.041,-1.477 c -3.785,-5.403 -6.855,-10.978 -9.189,-16.668 -5.112,-7.411 -9.427,-15.338 -12.858,-23.72 l -0.24,-0.591 -0.812,-2.029 c 3.537,8.988 8.079,17.47 13.525,25.373 -3.527,-8.951 -5.223,-18.178 -5.014,
 -27.464 -9.445,-14.717 -16.243,-30.684 -19.874,-47.494 -0.138,6.053 0.457,12.085 1.771,18.043 l -0.347,-1.615 c -1.222,-5.765 -1.774,-11.596 -1.639,-17.447 -1.754,-8.422 -2.712,-17.047 -2.815,-25.835 -0.015,-1.56 -0.009,-3.113 0.028,-4.66 l 0.095,-3.104 c -0.084,2.202 -0.114,4.416 -0.087,6.643 0.101,8.784 1.06,17.417 2.814,25.844 0.388,-10.263 2.895,-20.584 7.619,-30.714 -1.69,-8.676 -2.614,-17.436 -2.719,-26.226 -0.102,-8.791 0.624,-17.29 2.124,-25.455 -3.04,6.51 -5.159,13.097 -6.387,19.696 l 0.303,-1.619 c 1.247,-6.385 3.331,-12.763 6.266,-19.064 1.92,-10.007 4.991,-19.508 9.117,-28.42 l 1.168,-2.484 c -4.451,9.306 -7.754,19.27 -9.764,29.809 4.876,-10.104 11.976,-20.016 21.391,-29.487 2.745,-15.751 8.216,-29.69 15.987,-41.557 -5.196,5.226 -9.61,10.6 -13.268,16.071 l 0.992,-1.473 c 3.55,-5.211 7.796,-10.331 12.75,-15.314 3.504,-5.257 7.47,-10.102 11.851,-14.51 l 0.424,-0.429 1.101,-1.088 c -4.626,4.56 -8.785,9.603 -12.449,15.107 8.622,-8.499 18.812,-16.073 30.195,-22.674 6.221,-10.
 486 14.254,-18.607 23.76,-24.182 l 1.244,-0.719 c -9.513,5.527 -17.554,13.65 -23.77,24.192 11.476,-6.531 24.143,-12.088 37.641,-16.603 4.309,-9.708 9.906,-16.759 16.551,-21.013 -10.881,3.647 -21.099,8.123 -30.359,13.387 l -0.063,0.037 c 0.009,-0.006 0.015,-0.01 0.025,-0.013 0.056,-0.032 0.114,-0.066 0.172,-0.101 l 1.354,-0.767 c 8.969,-5.013 18.817,-9.295 29.28,-12.801 1.973,-1.217 4.038,-2.195 6.179,-2.925 l 1.207,-0.399 c -2.165,0.721 -4.247,1.702 -6.234,2.941 10.884,-3.567 22.409,-6.3 34.297,-8.159 1.521,-1.535 3.153,-2.442 4.891,-2.714 l 0.29,-0.046 0.819,-0.126 c -1.68,0.258 -3.265,1.156 -4.74,2.691 11.916,-1.794 24.18,-2.707 36.502,-2.694 -0.176,-1.532 -0.355,-2.309 -0.533,-2.325 l 1.103,0.006 c 0.248,0.013 0.496,0.791 0.734,2.325 12.32,0.078 24.69,1.079 36.814,3.055 -1.751,-1.456 -3.61,-2.354 -5.562,-2.689 l 1.179,0.199 c 1.99,0.35 3.882,1.255 5.667,2.703 0.086,0.068 0.173,0.137 0.256,0.213 4.107,3.471 7.634,9.862 10.431,19.053 15.078,2.549 29.837,6.31 43.911,11.336 -5.019,-9
 .771 -11.403,-16.896 -18.877,-21.239 -11.366,-4.062 -23.285,-7.095 -35.465,-9.155 -0.083,-0.071 -0.17,-0.14 -0.256,-0.208 12.108,2.044 23.959,5.061 35.259,9.098 -1.819,-1.022 -3.704,-1.882 -5.642,-2.575 l 0.355,0.126 1.036,0.377 c 1.88,0.689 3.703,1.523 5.468,2.514 7.603,2.776 14.639,5.902 21.077,9.323 l 1.913,1.036 c -6.835,-3.727 -14.349,-7.111 -22.52,-10.095 7.592,4.386 14.074,11.549 19.171,21.345 13.974,5.101 26.406,11.154 37.198,17.943 -6.125,-9.387 -13.72,-16.947 -22.545,-22.549 l 1.463,0.927 c 8.684,5.617 16.179,13.115 22.242,22.362 10.682,6.845 19.723,14.413 27.044,22.495 -2.301,-3.247 -4.775,-6.344 -7.41,-9.279 l 1.513,1.696 c 2.363,2.694 4.592,5.515 6.678,8.462 2.424,2.734 4.653,5.526 6.682,8.364 l 1.021,1.453 c -2.164,-3.09 -4.564,-6.127 -7.192,-9.096 8.361,12.013 14.383,26.052 17.616,41.859 7.965,8.988 14.02,18.538 18.064,28.394 -1.571,-7.229 -3.739,-14.195 -6.477,-20.87 l 0.287,0.706 0.762,1.897 c 2.443,6.21 4.409,12.662 5.857,19.334 1.601,4.059 2.86,8.175 3.776,12.32 l
  0.349,1.619 c -0.923,-4.361 -2.232,-8.683 -3.913,-12.949 1.705,8.181 2.647,16.691 2.748,25.483 0.103,8.789 -0.632,17.54 -2.144,26.199 3.902,9.891 5.791,20.09 5.557,30.351 1.286,-6.955 2.029,-14.055 2.19,-21.268 m -318.823,170.737 -1.433,-0.913 c 0.702,0.455 1.412,0.896 2.13,1.325 -0.23,-0.142 -0.47,-0.269 -0.697,-0.412 m 256.98,-27.65 c -0.462,0.454 -0.95,0.876 -1.419,1.321 0.875,-0.813 1.743,-1.636 2.59,-2.482 l -1.171,1.161 z"
+                           inkscape:connector-curvature="0" />
+                      </g>
+                    </g>
+                  </g>
+                </g>
+              </g>
+            </g>
+          </g>
+        </g>
+      </g>
+      <g
+         id="g4482">
+        <g
+           id="g4484">
+          <g
+             id="g4490">
+            <g
+               id="g4492">
+              <path
+                 id="path4506"
+                 style="fill:url(#radialGradient4974);stroke:none"
+                 d="M 518.181,332.609 C 491.659,313.06 459.843,300.883 427.762,293.593 l 0,0 c 0.199,-0.504 0.038,-1.143 0.558,-1.52 l 0,0 c 0.4,-0.291 0.849,-0.276 1.297,-0.261 l 0,0 c 0.304,0.01 0.608,0.021 0.897,-0.064 l 0,0 c 3.219,-0.968 3.219,-0.968 3.507,-1.472 l 0,0 c -0.645,-1.012 -0.543,-2.211 -0.848,-3.309 l 0,0 c -0.119,-0.424 -0.261,-0.841 -0.397,-1.263 l 0,0 -0.006,-0.001 c -0.176,-0.535 -0.352,-1.07 -0.486,-1.615 l 0,0 c -0.15,-0.607 0.458,-1.129 0.19,-1.75 l 0,0 c -0.265,-0.627 -1.007,-1.001 -0.924,-1.803 l 0,0 c 0.102,-0.961 0.363,-1.412 0.472,-1.563 l 0,0 c 0.17,-0.233 0.411,-0.227 0.65,-0.221 l 0,0 c 0.212,0.005 0.422,0.011 0.584,-0.146 l 0,0 c 0.529,-0.519 0.526,-1.338 1.042,-1.861 l 0,0 c 0.196,-0.198 0.421,-0.161 0.644,-0.125 l 0,0 c 0.164,0.027 0.328,0.054 0.478,-0.011 l 0,0 c 0.069,-0.443 -0.151,-0.876 -0.167,-1.317 l 0,0 c 7.664,1.315 15.134,4.026 22.299,6.891 l 0,0 c 9.263,3.707 18.613,7.524 27.464,12.135 l 0,0 c 15.542,8.095 28.837,18.507 42.234,29.308 l 0
 ,0 c -1.186,3.341 -1.844,4.897 -2.609,5.909 l 0,0 0,0.001 c -0.582,0.773 -1.226,1.232 -2.207,1.93 l 0,0 c -1.227,0.874 -2.479,1.159 -3.744,1.159 l 0,0 c -0.17,0 -0.339,-0.005 -0.509,-0.015"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+        </g>
+      </g>
+      <g
+         id="g4508">
+        <g
+           id="g4510">
+          <g
+             id="g4516">
+            <g
+               id="g4518">
+              <path
+                 id="path4534"
+                 style="fill:url(#radialGradient4976);stroke:none"
+                 d="m 334.172,526.708 c -0.028,-0.023 -0.054,-0.043 -0.091,-0.069 l 0,0 c 1.045,0.162 1.045,0.162 1.515,0.11 l 0,0 c -0.419,-0.163 -0.971,-0.407 -1.368,-0.619 l 0,0 c 0.132,0.041 0.264,0.079 0.397,0.118 l 0,0 c -0.135,-0.041 -0.27,-0.081 -0.405,-0.123 l 0,0 c 0.017,-0.133 0.035,-0.309 0.056,-0.442 l 0,0 c -0.679,-0.332 -1.55,-0.232 -2.072,-0.912 l 0,0 c 0.11,-0.071 0.269,-0.164 0.392,-0.238 l 0,0 c 0.029,-0.135 0.067,-0.314 0.098,-0.451 l 0,0 c -0.12,-0.089 -0.275,-0.212 -0.398,-0.307 l 0,0 c 0.174,0.027 0.404,0.064 0.577,0.089 l 0,0 c 0.048,-0.131 0.111,-0.307 0.158,-0.438 l 0,0 c 3.645,0.868 3.645,0.868 4.223,0.864 l 0,0 c 0.111,-0.265 0.405,-0.549 0.656,-0.692 l 0,0 c -0.613,-0.545 -1.458,-1.345 -2.026,-2.076 l 0,0 c 6.211,1.18 6.211,1.18 8.066,0.991 l 0,0 c 2.46,-0.257 4.571,-1.904 7.121,-1.794 l 0,0 c 6.521,0.279 16.106,2.939 16.691,4.296 l 0,0 c -0.17,0.218 -0.378,0.533 -0.513,0.769 l 0,0 c 0.818,0.674 20.526,3.515 20.702,3.524 l 0,0 4.949,0.411 c 2.599,0.426 4
 .5,2.615 7.189,2.815 l 0,0 c 1.001,0.073 2.006,-0.055 3.01,-0.184 l 0,0 c 1.618,-0.208 3.238,-0.416 4.853,0.222 l 0,0 c -0.28,0.211 -0.67,0.455 -0.969,0.628 l 0,0 c 0.143,0.04 0.336,0.089 0.483,0.125 l 0,0 c -0.277,0.083 -0.633,0.25 -0.882,0.403 l 0,0 c 0.02,0 9.999,-0.071 11.156,-0.052 l 0,0 c -0.138,0.057 -0.324,0.134 -0.461,0.189 l 0,0 c 0.733,0.218 1.471,0.072 2.21,-0.076 l 0,0 c 0.887,-0.177 1.776,-0.354 2.657,0.105 l 0,0 c -8.741,1.081 -17.707,1.646 -26.844,1.646 l 0,0 c -21.586,0 -42.208,-3.131 -61.13,-8.832 m 0.724,-0.377 c 0,0 0,0 0,0 m 77.148,6.68 c -0.412,0.012 -0.419,0.012 -0.842,-0.304 l 0,0 c 0,0 0,-0.005 -0.182,-0.141 l 0,0 c 0.824,-0.214 0.824,-0.214 1.393,-0.392 l 0,0 c -0.322,0.064 -0.322,0.064 -1.372,0.207 l 0,0 c 0.116,-0.053 0.269,-0.123 0.381,-0.172 l 0,0 c -0.681,0.091 -0.681,0.091 -1.116,0.043 l 0,0 c 0,-0.096 0.004,-0.222 0.007,-0.318 l 0,0 c 0.469,-0.106 0.956,-0.148 1.406,-0.318 l 0,0 c -0.209,0.025 -0.499,-0.022 -0.699,-0.096 l 0,0 c 0.871,-0.189 1.76,-0.
 261 2.641,-0.418 l 0,0 0,0.003 0.007,0.002 0.15,-0.089 c -3.505,0.291 -3.505,0.291 -3.679,0.25 l 0,0 c 0.589,-0.15 1.196,-0.234 1.783,-0.402 l 0,0 c -0.441,-0.182 -0.864,-0.086 -1.289,0.012 l 0,0 c -0.266,0.06 -0.534,0.12 -0.805,0.113 l 0,0 c 1.08,-0.319 1.08,-0.319 1.326,-0.651 l 0,0 c -1.492,0.63 -1.492,0.63 -2.08,0.755 l 0,0 c -0.213,-0.251 -0.556,-0.31 -0.779,-0.551 l 0,0 c 0.227,-0.068 0.513,-0.195 0.71,-0.317 l 0,0 c -0.346,0.116 -0.346,0.116 -0.999,0.209 l 0,0 c -0.075,-0.06 -0.179,-0.145 -0.257,-0.209 l 0,0 c 0.801,-0.329 0.801,-0.329 1.103,-0.636 l 0,0 c -0.796,0.05 -0.796,0.05 -0.954,-0.009 l 0,0 c 0.186,-0.09 0.435,-0.224 0.613,-0.331 l 0,0 c -0.2,0.075 -0.466,0.182 -0.663,0.259 l 0,0 c -0.072,-0.168 -0.123,-0.423 -0.107,-0.608 l 0,0 c -0.102,-0.022 -0.236,-0.057 -0.332,-0.079 l 0,0 c -0.018,-0.096 -0.043,-0.224 -0.056,-0.315 l 0,0 c 0.728,-0.333 1.026,-0.174 1.275,-0.05 l 0,0 c 0.437,-0.165 0.813,-0.442 1.231,-0.644 l 0,0 c -0.026,-0.195 -0.116,-0.446 -0.214,-0.615 l 0,0
  c -1.144,-0.031 -1.287,-0.255 -1.455,-0.51 l 0,0 c -0.499,-0.081 -0.951,-0.322 -1.429,-0.458 l 0,0 c -0.02,-0.099 -0.038,-0.233 -0.055,-0.331 l 0,0 c 0.91,-0.404 1.601,-0.497 2.043,-0.282 l 0,0 c 0.368,-0.137 0.721,-0.319 1.102,-0.432 l 0,0 0.024,0 0.124,0 c 0.627,0 1.182,0.451 1.836,0.306 l 0,0 0.018,0 0.004,0 c 0.089,-0.051 0.202,-0.123 0.285,-0.181 l 0,0 c -0.055,-0.071 -0.136,-0.168 -0.196,-0.244 l 0,0 c 0,0 -1.731,-0.227 -2.511,-0.344 l 0,0 c -0.017,-0.095 -0.029,-0.225 -0.045,-0.32 l 0,0 c 0.01,0 1.448,-0.034 2.661,-0.401 l 0,0 c -0.184,-0.084 -0.429,-0.197 -0.611,-0.269 l 0,0 c 0.094,-0.017 0.227,-0.036 0.322,-0.05 l 0,0 c 0,0 0.007,0 0.084,-0.004 l 0,0 c 0.98,-0.259 0.98,-0.259 1.836,-0.185 l 0,0 c -0.083,0.063 -0.197,0.158 -0.277,0.222 l 0,0 c 0.651,-0.043 0.651,-0.043 0.895,0.154 l 0,0 c 0.182,-0.102 0.437,-0.22 0.629,-0.308 l 0,0 c 0.066,0.177 0.206,0.392 0.338,0.526 l 0,0 c 0.186,-0.101 0.451,-0.212 0.655,-0.277 l 0,0 c 0.049,0.093 0.115,0.214 0.163,0.309 l 0,0 c 6.603,
 -1.363 10.591,-2.185 12.16,-4.04 l 0,0 c 1.008,0.504 1.595,-0.296 2.168,-1.096 l 0,0 c 0.588,-0.818 1.161,-1.637 2.159,-1.058 l 0,0 c -0.098,0.173 -0.157,0.448 -0.155,0.641 l 0,0 c -0.369,0.341 -0.862,0.445 -1.276,0.693 l 0,0 c 2.631,-0.871 2.631,-0.871 2.649,-1.364 l 0,0 c 0.171,-0.106 0.442,-0.201 0.645,-0.194 l 0,0 c 0,0.099 0,0.231 0.002,0.327 l 0,0 c 0.759,-0.32 0.759,-0.32 1.407,-0.369 l 0,0 0.035,0.009 c 0.314,0.008 0.967,0.016 5.581,-3.875 l 0,0 c -0.284,-0.126 -0.58,-0.113 -0.876,-0.1 l 0,0 c -0.237,0.011 -0.475,0.021 -0.706,-0.039 l 0,0 c 0.687,-0.83 0.983,-1.92 1.797,-2.659 l 0,0 c 0.483,-0.443 1.197,-0.127 1.695,-0.513 l 0,0 c -0.028,-0.107 -0.069,-0.248 -0.098,-0.35 l 0,0 c 0.483,-0.773 5.706,-3.945 6.574,-3.993 l 0,0 c -0.308,0.648 -0.308,0.648 -0.337,0.973 l 0,0 c 0.193,-0.041 0.456,-0.07 0.65,-0.077 l 0,0 c 0.039,0.097 0.084,0.221 0.118,0.313 l 0,0 c 0.387,-0.053 0.387,-0.053 0.921,-0.366 l 0,0 c -0.107,0.043 -0.254,0.1 -0.356,0.15 l 0,0 c -0.167,-0.115 -0.368,-0.297
  -0.488,-0.457 l 0,0 c 0.139,-0.534 0.139,-0.534 1.003,-1.64 l 0,0 c 4.21,-0.241 6.43,-4.84 10.722,-4.902 l 0,0 c -0.024,0.089 -0.055,0.211 -0.078,0.3 l 0,0 c 0.317,0.066 0.317,0.066 1.017,-0.053 l 0,0 c -0.032,0.192 0.016,0.456 0.091,0.637 l 0,0 c 0.605,-0.278 1.124,-0.7 1.766,-0.9 l 0,0 c 0.069,0.069 0.155,0.159 0.223,0.227 l 0,0 c 3.355,-1.442 3.355,-1.442 3.734,-1.376 l 0,0 c -0.018,0.322 -0.018,0.322 -1.012,1.324 l 0,0 c 0.061,0.073 0.138,0.17 0.201,0.241 l 0,0 c -0.553,0.531 -1.189,0.968 -1.725,1.515 l 0,0 c 0.188,-0.072 0.454,-0.139 0.65,-0.187 l 0,0 c -1.291,1.848 -2.193,2.049 -3.064,2.252 l 0,0 c -0.047,0.093 -0.047,0.093 -0.648,0.877 l 0,0 c 0.086,0.045 0.197,0.111 0.284,0.159 l 0,0 c 0.088,-0.033 0.217,-0.076 0.308,-0.114 l 0,0 c 0.079,0.054 0.19,0.124 0.267,0.174 l 0,0 c -0.925,1.158 -2.28,1.805 -3.343,2.799 l 0,0 c 0.189,-0.021 0.445,-0.03 0.639,-0.025 l 0,0 c 0.05,0.081 0.114,0.186 0.167,0.273 l 0,0 c -0.697,0.411 -1.656,0.334 -2.133,1.146 l 0,0 c 0.184,0.053 0.441,0.0
 83 0.632,0.071 l 0,0 c -0.151,0.427 -0.507,0.723 -0.7,1.118 l 0,0 c 0.333,0.234 0.361,0.252 0.936,0.324 l 0,0 c -0.369,0.25 -0.944,0.811 -1.181,1.15 l 0,0 0.304,0.129 c 0.496,-0.447 0.847,-1.06 1.483,-1.351 l 0,0 c 0.094,0.047 0.212,0.108 0.301,0.152 l 0,0 c -0.259,0.212 -0.459,0.489 -0.707,0.711 l 0,0 0.233,-0.07 c 0.197,0.063 0.449,0.169 0.627,0.266 l 0,0 c -0.227,0.274 -0.537,0.457 -0.81,0.679 l 0,0 c 0.17,-0.054 0.431,-0.054 0.604,-0.004 l 0,0 c -0.006,0.1 -0.012,0.229 -0.016,0.327 l 0,0 c -0.85,0.67 -1.506,1.54 -2.333,2.233 l 0,0 c 0.019,0.098 0.042,0.229 0.057,0.323 l 0,0 c -0.478,0.594 -1.286,0.659 -1.843,1.136 l 0,0 c 1.964,-0.585 2.001,-0.574 2.446,-0.445 l 0,0 c -0.144,0.162 -0.317,0.4 -0.436,0.583 l 0,0 c 0,0 0,0.006 0.095,-0.002 l 0,0 c 0.096,-0.022 0.221,-0.048 0.317,-0.072 l 0,0 c 0.076,0.061 0.184,0.145 0.259,0.208 l 0,0 c -0.003,0.439 0.299,0.808 0.286,1.247 l 0,0 c -2.91,2.527 -2.91,2.527 -4.194,2.223 l 0,0 c -0.053,-0.181 -0.186,-0.408 -0.335,-0.521 l 0,0 c 0.027,-
 0.09 0.069,-0.211 0.093,-0.307 l 0,0 c -0.332,0.131 -0.481,0.207 -0.583,0.712 l 0,0 c -0.093,0.051 -0.218,0.127 -0.309,0.179 l 0,0 c 0.01,0.099 0.028,0.23 0.044,0.329 l 0,0 c -0.705,0.391 -0.962,0.37 -1.356,0.34 l 0,0 c -0.05,-0.081 -0.122,-0.185 -0.177,-0.266 l 0,0 c -0.9,1.006 -0.9,1.006 -1.527,0.854 l 0,0 c -0.063,0.084 -0.143,0.191 -0.206,0.276 l 0,0 c 0.312,-0.038 0.312,-0.038 4.492,-1.056 l 0,0 c 0.039,0.086 0.098,0.196 0.141,0.279 l 0,0 c -0.184,0.085 -0.424,0.214 -0.593,0.322 l 0,0 c 0.75,-0.245 0.75,-0.245 1.109,-0.233 l 0,0 c -0.014,0.006 -2.102,0.968 -2.922,1.088 l 0,0 c 0.085,-0.068 0.203,-0.15 0.287,-0.215 l 0,0 c -3.794,1.007 -3.794,1.007 -4.113,0.928 l 0,0 c 0.048,-0.085 0.114,-0.2 0.167,-0.287 l 0,0 c -0.518,0.125 -0.588,0.148 -0.948,0.3 l 0,0 c 0.089,0.031 0.214,0.074 0.303,0.104 l 0,0 c -0.641,0.301 -1.39,0.366 -1.965,0.837 l 0,0 c 3.457,-0.729 3.457,-0.729 3.657,-0.711 l 0,0 c -0.975,0.251 -1.842,0.835 -2.861,0.958 l 0,0 -0.005,-0.006 -0.01,-0.006 c 0,0 0,-10e-4 -
 0.159,0.012 l 0,0 c -2.406,0.554 -2.406,0.554 -2.518,0.641 l 0,0 c 1.271,-0.364 1.43,-0.345 2.121,-0.278 l 0,0 c -0.136,0.128 -0.255,0.367 -0.28,0.549 l 0,0 c -0.686,0.285 -0.698,0.288 -1.772,0.36 l 0,0 -0.059,-0.07 c -0.365,-0.033 -0.489,-0.048 -0.894,0.344 l 0,0 c 0.206,-0.043 0.493,-0.032 0.696,0.015 l 0,0 c -0.184,0.114 -0.439,0.237 -0.639,0.322 l 0,0 c 0.207,-0.041 0.474,-0.067 0.684,-0.078 l 0,0 0.003,0.005 0.009,0 0,0.006 c 0,0 0.003,0 -0.057,0.118 l 0,0 c -0.005,0.006 -1.719,0.47 -2.657,0.598 l 0,0 c 0.305,-0.128 0.619,-0.234 0.907,-0.386 l 0,0 c -1.551,0.487 -1.551,0.487 -1.907,0.741 l 0,0 c 0.249,-0.052 0.582,-0.1 0.83,-0.125 l 0,0 c -1.443,0.522 -3.792,1.023 -3.814,1.023 l 0,0 -0.137,-0.081 c -0.5,-0.033 -2.162,0.387 -2.181,0.391 l 0,0 c 0.104,0.02 0.253,0.046 0.361,0.064 l 0,0 c -0.215,0.095 -0.487,0.229 -0.684,0.345 l 0,0 c 0.601,0.015 0.906,0.005 1.354,-0.008 l 0,0 c -0.419,0.16 -0.89,0.111 -1.359,0.062 l 0,0 c -0.787,-0.082 -1.571,-0.165 -2.105,0.737 l 0,0 c -0.467,0.
 098 -0.467,0.098 -1.085,-0.027 l 0,0 c 0.088,-0.059 0.203,-0.138 0.294,-0.199 l 0,0 c -0.736,0.246 -0.736,0.246 -6.197,1.907 l 0,0 c 0.101,0.018 0.226,0.041 0.328,0.059 l 0,0 c -1.135,0.327 -2.35,0.315 -3.447,0.791 l 0,0 c 0.093,0.015 0.219,0.043 0.309,0.06 l 0,0 c -1.336,0.525 -1.655,0.648 -2.27,0.806 l 0,0 c -0.497,0.094 -0.713,0.082 -1.035,0.064 l 0,0 c 0,0 -0.005,0 -0.15,-0.005 l 0,0 c -0.193,0.017 -0.47,-0.063 -0.627,-0.184 l 0,0 c 0.746,-0.192 0.746,-0.192 0.955,-0.484 l 0,0 c -0.099,0 -0.226,-0.005 -0.322,-0.005 l 0,0 c 0.984,-0.29 2.083,-0.801 2.093,-0.807 l 0,0 c -4.009,1.046 -4.009,1.046 -4.314,0.945 l 0,0 c 0.759,-0.186 0.759,-0.186 1.105,-0.367 l 0,0 -0.024,-0.008 0.078,-0.207 c -0.642,0.323 -1.146,0.576 -1.907,0.375 l 0,0 c -0.089,-0.178 -0.179,-0.423 -0.219,-0.618 l 0,0 c -0.53,0.203 -0.56,0.333 -0.646,0.722 l 0,0 c 0.218,0.008 0.514,0.019 0.728,0.03 l 0,0 c 0,0 0.009,10e-4 0.028,0.018 l 0,0 c -0.378,0.331 -1.826,0.518 -5.749,0.743 l 0,0 c 0.066,-0.042 0.146,-0.1 0.209
 ,-0.142 m -10.733,-1.916 c -0.046,0.005 -0.113,0.007 -0.166,0.007 l 0,0 c -0.012,-0.016 -0.038,-0.036 -0.057,-0.06 l 0,0 c 0.157,-0.137 0.379,-0.132 0.546,-0.257 l 0,0 c -0.005,-0.018 -0.015,-0.042 -0.018,-0.063 l 0,0 c -0.2,0.051 -0.257,0.057 -0.34,0.063 l 0,0 -0.011,0 -0.047,0.006 c -1.028,0.302 -1.028,0.302 -1.552,0.167 l 0,0 c 0.238,-0.26 0.602,-0.206 0.889,-0.357 l 0,0 c 0,-0.024 0.004,-0.056 0.011,-0.082 l 0,0 -0.007,0 -0.004,0 -0.024,-0.026 c -0.013,-0.017 -0.029,-0.039 -0.045,-0.051 l 0,0 c -0.42,0.07 -0.746,0.381 -1.165,0.448 l 0,0 c 0.016,-0.046 0.018,-0.103 0.007,-0.147 l 0,0 c -0.066,0.014 -0.066,0.014 -0.353,0.137 l 0,0 c -0.033,-0.021 -0.081,-0.054 -0.109,-0.08 l 0,0 c 0,0 -0.007,0 -0.073,0.006 l 0,0 c -0.173,0.037 -0.173,0.037 -0.235,0.027 l 0,0 c 0.167,-0.23 0.167,-0.23 0.17,-0.251 l 0,0 c -0.198,-0.045 -0.356,0.098 -0.535,0.11 l 0,0 c -0.002,-0.041 -0.014,-0.097 -0.02,-0.143 l 0,0 c -0.018,0.012 -0.043,0.022 -0.06,0.033 l 0,0 c -0.039,-0.066 -0.101,-0.164 -0.371,0.0
 26 l 0,0 c -0.047,-0.165 -0.032,-0.265 -0.032,-0.3 l 0,0 c 0.158,-0.09 0.391,-0.05 0.49,-0.25 l 0,0 c -0.054,-0.08 -0.054,-0.08 -0.173,-0.091 l 0,0 -0.027,0 -0.042,0 c -0.161,-10e-4 -0.161,-10e-4 -1.466,0.351 l 0,0 c -0.082,-0.065 -0.082,-0.196 -0.183,-0.252 l 0,0 -0.011,-0.004 c -0.214,-0.095 -0.214,-0.095 -0.28,-0.101 l 0,0 -0.036,-0.005 c -0.063,-0.058 -0.093,-0.138 -0.152,-0.191 l 0,0 c -0.204,0.053 -0.365,0.226 -0.594,0.202 l 0,0 c -0.257,-0.026 -0.356,-0.409 -0.668,-0.296 l 0,0 c -0.228,0.073 -0.346,0.116 -1.097,-0.161 l 0,0 c 0.085,-0.201 0.25,-0.133 0.426,-0.063 l 0,0 c 0.128,0.05 0.262,0.1 0.374,0.045 l 0,0 c -0.005,-0.023 -0.011,-0.053 -0.017,-0.075 l 0,0 c -0.035,-0.006 -0.094,-0.02 -0.137,-0.032 l 0,0 c -0.054,-0.111 -0.048,-0.119 0.039,-0.211 l 0,0 c 0.068,0.003 0.137,0.021 0.211,0.021 l 0,0 c -0.001,-0.061 -0.001,-0.061 -0.101,-0.247 l 0,0 c 0.01,-0.031 0.026,-0.068 0.033,-0.094 l 0,0 c 1.76,-0.457 1.76,-0.457 2.071,-0.109 l 0,0 c -0.005,0.078 -0.054,0.142 -0.086,0.21 
 l 0,0 c 0.104,0.105 0.174,0.123 0.436,0.123 l 0,0 c 0,0 0.167,-0.234 -0.329,-0.553 l 0,0 c 0,-0.026 -0.015,-0.059 -0.009,-0.084 l 0,0 c 0.009,-0.058 0.238,-0.232 0.444,-0.044 l 0,0 c 0.938,-0.302 1.05,0.015 1.12,0.202 l 0,0 c 0.181,0.06 0.335,-0.011 0.49,-0.082 l 0,0 c 0.146,-0.068 0.293,-0.135 0.461,-0.091 l 0,0 c 0.302,0.084 0.58,0.243 0.899,0.252 l 0,0 c 0.052,0 0.116,0.006 0.166,-0.009 l 0,0 c 0.04,-0.007 0.103,-0.006 0.138,0.009 l 0,0 c 0.01,0.09 0.244,0.454 0.327,0.521 l 0,0 c 0.043,-0.011 0.094,-0.049 0.115,-0.085 l 0,0 c -0.024,-0.117 -0.024,-0.117 0.119,-0.439 l 0,0 c -0.652,-0.346 -0.652,-0.346 -0.781,-0.38 l 0,0 c -0.147,-0.013 -1.334,-0.172 -1.334,-0.172 l 0,0 c 0.445,-0.33 1.12,-0.232 1.463,-0.765 l 0,0 c -0.013,-0.02 -0.027,-0.044 -0.038,-0.064 l 0,0 c -0.111,-0.02 -0.157,-0.025 -0.554,0.182 l 0,0 c -1.489,0.796 -2.539,0.599 -2.829,0.514 l 0,0 c -0.206,-0.055 0.002,-0.392 0.14,-0.525 l 0,0 c 0.205,-0.196 0.51,-0.1 0.51,-0.1 l 0,0 c 0.192,0.068 0.941,-0.286 0.962,-0.565
  l 0,0 c -0.018,-0.019 -0.039,-0.047 -0.063,-0.066 l 0,0 c 0.018,-0.1 0.042,-0.243 0.791,-0.187 l 0,0 10e-4,0 1.136,-0.519 c -0.055,-0.015 -0.147,-0.042 -0.371,0.058 l 0,0 c -1.229,0.565 -2.945,0.412 -3.333,-0.302 l 0,0 c -0.098,-0.175 0.125,-0.381 0.125,-0.381 l 0,0 c 0.246,-0.073 0.416,0.145 0.631,0.157 l 0,0 0.072,0 c 0.021,0 0.049,0 0.067,0.006 l 0,0 0.007,0 c 0.053,-0.063 0.067,-0.148 0.122,-0.204 l 0,0 c 0.373,0.016 0.373,0.016 0.808,0.687 l 0,0 c 0.084,-0.041 0.176,-0.179 0.169,-0.349 l 0,0 c -0.142,-0.133 -0.219,-0.338 -0.434,-0.39 l 0,0 c -0.006,-0.025 -0.02,-0.063 -0.029,-0.086 l 0,0 c 0.387,-0.517 1.067,-0.531 1.438,-0.493 l 0,0 c 0.421,0.04 0.343,0.509 0.591,0.697 l 0,0 c 0.124,-0.021 0.138,-0.042 0.192,-0.108 l 0,0 c -0.01,-0.039 -0.224,-0.511 -0.467,-0.614 l 0,0 -0.006,0 c 0,0 -10e-4,0 -0.044,-0.013 l 0,0 -0.843,-0.324 c -0.322,-0.007 -0.567,0.238 -0.874,0.283 l 0,0 c -0.438,0.071 -0.752,0.439 -1.19,0.498 l 0,0 c -0.174,0.025 -0.386,0.029 -0.707,-0.219 l 0,0 c 0.003,-0
 .142 0.003,-0.142 1.092,-0.689 l 0,0 c 0.003,-0.02 0.005,-0.047 0.005,-0.069 l 0,0 c -1.871,-0.219 -1.978,-0.233 -2.099,-0.577 l 0,0 c -0.073,-0.227 0.138,-0.37 0.279,-0.355 l 0,0 c 0.26,0.017 0.296,0.328 0.504,0.411 l 0,0 c 0.648,-0.683 0.713,-0.576 0.983,-0.153 l 0,0 c 0.238,0.016 0.243,-0.312 0.466,-0.312 l 0,0 c 0.215,0.006 0.229,0.225 0.351,0.322 l 0,0 c 1.011,-0.475 1.011,-0.475 1.59,-0.456 l 0,0 c 0.31,0.014 0.237,0.373 0.395,0.525 l 0,0 0.005,0 c 0.198,-0.093 0.35,-0.32 0.612,-0.271 l 0,0 c 0.033,0.085 0.033,0.085 -0.088,0.289 l 0,0 c 0.005,0.027 0.016,0.062 0.023,0.089 l 0,0 c 0.254,-0.137 0.448,-0.403 0.776,-0.409 l 0,0 c 0.252,-0.008 0.184,0.317 0.378,0.376 l 0,0 c 0.053,-0.079 0.132,-0.202 0.173,-0.23 l 0,0 c 0.027,-0.013 0.052,-0.03 0.076,-0.038 l 0,0 c 0.12,-0.056 0.223,-0.003 0.326,0.049 l 0,0 c 0.096,0.048 0.19,0.096 0.3,0.061 l 0,0 c 0.268,-0.085 0.11,-0.441 0.348,-0.545 l 0,0 c 1.976,0.81 1.976,0.81 2.007,0.846 l 0,0 c 0,0 -0.195,0.396 -0.543,0.4 l 0,0 c -0.09,-0.0
 98 -0.111,-0.241 -0.212,-0.331 l 0,0 c -0.083,0.017 -0.083,0.017 -0.577,0.472 l 0,0 c -0.217,0.209 -0.325,0.139 -0.77,-0.146 l 0,0 c -0.679,0.279 -0.679,0.279 -0.844,0.31 l 0,0 -0.049,-0.006 c -0.137,-0.069 -0.259,-0.168 -0.389,-0.243 l 0,0 c -0.07,0.021 -0.146,0.048 -0.168,0.228 l 0,0 c 0.039,0.045 0.087,0.097 0.128,0.133 l 0,0 c -0.226,0.201 -0.226,0.201 -0.253,0.324 l 0,0 c 0.423,-0.057 0.755,-0.389 1.187,-0.436 l 0,0 c 0.472,-0.057 0.929,0.112 1.397,0.14 l 0,0 c 0.166,0.009 0.369,0.304 0.369,0.304 l 0,0 c -0.115,0.302 -0.465,0.255 -0.662,0.442 l 0,0 c 0.016,0.013 0.036,0.032 0.052,0.049 l 0,0 c 0.009,0 1.032,-0.065 1.296,0.068 l 0,0 c -0.011,0.047 -0.04,0.109 -0.067,0.153 l 0,0 c 0.027,0.041 0.027,0.041 0.388,0.094 l 0,0 c 0.11,0.177 0.014,0.289 0.014,0.289 l 0,0 c -0.089,0.066 -0.189,0.064 -0.288,0.061 l 0,0 c -0.091,-10e-4 -0.182,-0.003 -0.264,0.049 l 0,0 c 0.195,0.093 0.403,0.136 0.591,0.24 l 0,0 c -0.041,0.197 -0.31,0.212 -0.447,0.219 l 0,0 c -0.299,0.014 -0.299,0.014 -1.32,
 0.612 l 0,0 c -0.008,0.025 -0.01,0.061 -0.02,0.081 l 0,0 c 0.34,0.222 0.622,-0.082 0.943,-0.097 l 0,0 0.032,0.011 c 0.123,0.162 0.365,0.132 0.49,0.286 l 0,0 c 0.418,-10e-4 0.418,-10e-4 0.43,0.007 l 0,0 c -0.127,0.098 -0.304,0.127 -0.389,0.274 l 0,0 c 1.187,-0.045 1.187,-0.045 1.219,-0.022 l 0,0 c 0.028,0.131 0.147,0.235 0.094,0.383 l 0,0 c -0.089,0.04 -0.177,0.009 -0.265,-0.021 l 0,0 c -0.095,-0.033 -0.189,-0.068 -0.286,-0.011 l 0,0 c -0.008,0.022 -0.008,0.049 -0.012,0.072 l 0,0 c 0.238,0.119 0.238,0.119 0.457,0.125 l 0,0 c 0.006,0.016 0.023,0.041 0.04,0.059 l 0,0 c -0.462,0.175 -0.503,0.247 -0.527,0.289 l 0,0 0.753,-0.125 c 0,0 -0.048,0.24 -0.03,0.394 l 0,0 c 0.048,0.03 0.113,0.072 0.158,0.105 l 0,0 c -0.009,0.039 -0.012,0.094 -0.003,0.131 l 0,0 c 0.325,0.128 0.325,0.128 0.317,0.331 l 0,0 c 0.057,0.013 0.132,0.036 0.197,0.048 l 0,0 c 0.01,0.024 0.026,0.052 0.037,0.078 l 0,0 c 0.039,0.006 0.101,0.027 0.136,0.053 l 0,0 c -0.009,0.04 -0.009,0.1 0.002,0.141 l 0,0 c -0.033,0.018 -0.033,
 0.018 -0.456,0.075 l 0,0 c -0.033,-0.025 -0.06,-0.075 -0.065,-0.116 l 0,0 c -0.106,-0.006 -0.213,0 -0.317,-0.018 l 0,0 c -0.012,-0.042 -0.037,-0.099 -0.069,-0.129 l 0,0 c -0.133,0.003 -0.133,0.003 -0.273,0.242 l 0,0 c 0.14,0.052 0.287,0.037 0.43,0.075 l 0,0 c -0.1,0.169 -0.1,0.169 -0.112,0.207 l 0,0 c 0.161,0.011 0.316,-0.044 0.473,-0.044 l 0,0 c 0.013,0.018 0.038,0.039 0.049,0.055 l 0,0 c 0,0.02 -0.003,0.053 -0.007,0.075 l 0,0 c 0.073,0.057 0.182,0.032 0.255,0.095 l 0,0 c -0.018,0.039 -0.035,0.099 -0.043,0.145 l 0,0 c 0,0 0,0.002 0.063,0.003 l 0,0 0,0.072 c -0.086,0.084 -0.093,0.123 -0.047,0.203 l 0,0 c -0.025,0.021 -0.173,0.133 -0.534,0.108 l 0,0 -0.006,0 0,-10e-4 -0.013,0 c -0.124,0 -0.253,0.026 -0.382,0.021 l 0,0 c 0,-0.021 0.01,-0.047 0.01,-0.047 l 0,0 c -0.245,0.083 -0.839,0.319 -1.06,0.322 l 0,0 c 0.01,-0.021 0.024,-0.05 0.032,-0.072 l 0,0 c -0.07,-0.009 -0.144,0.02 -0.216,0.049 l 0,0 c -0.126,0.05 -0.249,0.099 -0.343,-0.038 l 0,0 c -0.019,10e-4 -0.051,10e-4 -0.07,0.006 l 0,0
  c -0.005,-0.018 -0.018,-0.041 -0.023,-0.06 l 0,0 c -0.047,-0.017 -0.104,-0.045 -0.14,-0.07 l 0,0 c -0.335,0.107 -0.694,0.079 -1.034,0.164 l 0,0 c -0.011,-0.022 -0.018,-0.048 -0.025,-0.068 l 0,0 c -0.133,0.017 -0.242,0.131 -0.382,0.093 l 0,0 c 0.01,-0.019 0.017,-0.047 0.026,-0.066 l 0,0 c -0.536,0.125 -0.536,0.125 -0.616,0.055 l 0,0 c 0.125,-0.125 0.125,-0.125 0.15,-0.178 l 0,0 c -0.027,0 -0.027,0 -0.707,0.227 l 0,0 c -0.01,-0.038 -0.042,-0.078 -0.07,-0.102 m -9.32,-2.208 c -0.015,-0.08 -0.028,-0.129 -0.046,-0.139 l 0,0 c -0.057,-0.031 -0.111,-0.012 -0.166,0.006 l 0,0 c -0.056,0.019 -0.112,0.038 -0.169,0.004 l 0,0 c -0.143,-0.083 -0.186,-0.274 -0.343,-0.345 l 0,0 c -0.03,-0.01 -0.075,-0.01 -0.102,-0.01 l 0,0 -0.006,0 c 0,0 -0.002,0 -0.033,-0.006 l 0,0 c 0,0 -0.501,-0.264 -0.528,-0.354 l 0,0 c -0.059,-0.2 0.26,-0.144 0.337,-0.283 l 0,0 c 0.042,-0.076 0.042,-0.076 -0.331,-0.052 l 0,0 -0.006,0 -0.007,0 c -0.038,0.006 -0.038,0.006 -0.223,0.087 l 0,0 c 0,0 -0.025,-0.013 -0.038,-0.022 l 0
 ,0 c -0.029,-0.167 0.05,-0.292 0.05,-0.292 l 0,0 c 0.106,-0.137 0.29,-0.176 0.406,-0.286 l 0,0 0,-0.048 c -0.086,-0.081 -0.086,-0.081 -0.108,-0.149 l 0,0 0.022,-0.037 c 0.457,-0.095 0.457,-0.095 0.602,-0.03 l 0,0 c 0.114,0.052 0.129,0.058 0.174,0.062 l 0,0 c 0.072,0.007 0.128,-0.031 0.184,-0.07 l 0,0 c 0.069,-0.047 0.137,-0.094 0.231,-0.057 l 0,0 c 0.527,0.213 0.527,0.213 0.689,0.208 l 0,0 c 0.167,-0.002 0.281,-0.13 0.436,-0.165 l 0,0 c 0.066,-0.017 0.129,-0.004 0.193,0.008 l 0,0 c 0.063,0.011 0.127,0.024 0.195,0.01 l 0,0 c 0.011,-0.004 0.022,-0.013 0.022,-0.013 l 0,0 c -0.022,-0.232 -0.712,-0.367 -0.971,-0.275 l 0,0 c -0.084,0.025 -0.156,0.036 -0.22,0.02 l 0,0 c 0,0 -0.44,-0.131 -0.592,-0.204 l 0,0 0.432,-0.266 c 0.011,-0.006 0.034,0 0.05,0 l 0,0 0.009,-0.004 c 0.137,-0.116 0.137,-0.116 0.277,-0.104 l 0,0 c 0.21,0.01 0.352,-0.032 0.407,-0.122 l 0,0 c -0.061,-0.155 -0.229,-0.116 -0.337,-0.18 l 0,0 c 0.004,-0.036 0.016,-0.135 0.286,-0.206 l 0,0 c 0.107,-0.031 0.214,-0.028 0.321,-0.02
 3 l 0,0 c 0.056,0.001 0.112,0.003 0.17,0 l 0,0 c 0.194,-0.008 0.357,-0.137 0.55,-0.154 l 0,0 c 0.185,-0.013 0.237,0.189 0.383,0.235 l 0,0 c 0.149,0.045 0.291,-0.033 0.435,-0.033 l 0,0 c 0.007,0.011 0.018,0.027 0.022,0.037 l 0,0 c -0.062,0.102 -0.098,0.122 -0.292,0.223 l 0,0 c 0,0 -0.004,0.026 -0.011,0.037 l 0,0 c 0.244,0.336 0.535,-0.228 0.802,-0.345 l 0,0 c 0.17,-0.069 0.274,0.087 0.286,0.127 l 0,0 c 0.036,0.155 -0.131,0.201 -0.167,0.321 l 0,0 c 0.076,0.119 0.203,0.04 0.324,-0.039 l 0,0 c 0.124,-0.083 0.242,-0.165 0.289,-0.026 l 0,0 c -0.076,0.132 -0.304,0.15 -0.271,0.357 l 0,0 c 0.031,0.186 0.031,0.186 0.381,0.344 l 0,0 c 0.012,-0.009 0.029,-0.018 0.038,-0.024 l 0,0 c 0.022,-0.148 -0.182,-0.308 -0.021,-0.439 l 0,0 c 0.266,0.06 0.394,0.339 0.645,0.419 l 0,0 c 0.265,0.079 0.511,0.229 0.797,0.25 l 0,0 c 0.143,0.008 0.218,0.015 0.239,0.033 l 0,0 0,0.038 c -0.007,0.02 -0.463,0.265 -0.473,0.263 l 0,0 c -0.067,-0.024 -0.098,-0.108 -0.178,-0.095 l 0,0 c -0.096,0.011 -0.108,0.13 -0.199,0.1
 54 l 0,0 c -0.357,0.078 -0.357,0.078 -0.502,-0.007 l 0,0 c -0.111,-0.064 -0.115,-0.064 -0.167,-0.056 l 0,0 c -0.013,0.045 -0.017,0.063 0.035,0.141 l 0,0 c 0.027,0.036 0.081,0.122 -0.126,0.348 l 0,0 c -0.066,0.071 -0.147,0.061 -0.229,0.052 l 0,0 c -0.072,-0.009 -0.145,-0.017 -0.209,0.03 l 0,0 c 0.029,0.104 0.169,0.193 0.081,0.311 l 0,0 c -0.105,0.143 -0.319,0.157 -0.364,0.129 l 0,0 c -0.137,-0.081 0.032,-0.216 0.021,-0.329 l 0,0 c -0.122,-0.097 -0.395,-0.016 -0.463,0.032 l 0,0 c -0.134,0.085 -0.061,0.259 -0.149,0.365 l 0,0 c -0.015,0.02 -0.015,0.02 -0.857,0.022 l 0,0 c -0.015,0.011 -0.015,0.011 -0.015,0.174 l 0,0 c -0.056,0.027 -0.056,0.027 -0.22,0.015 l 0,0 -0.004,0 -0.003,0 c -0.322,0.073 -0.354,0.481 -0.657,0.581 l 0,0 c -0.091,0.028 -0.186,0.028 -0.282,0.028 l 0,0 c -0.105,0 -0.211,0 -0.311,0.039 l 0,0 c -0.079,0.033 -0.099,0.035 -0.181,0.042 l 0,0 c -0.204,-0.016 -0.214,-0.109 -0.244,-0.263 m -3.689,-1.024 c -0.142,-0.113 -0.132,-0.219 -0.129,-0.239 l 0,0 c 0.011,-0.038 0.029,-0
 .053 0.043,-0.059 l 0,0 c 0.05,-0.032 0.102,-0.012 0.15,-0.012 l 0,0 c 0.084,-0.003 0.113,-0.02 0.168,-0.088 l 0,0 c 0.059,-0.079 0.086,-0.107 0.122,-0.112 l 0,0 c 0.047,-0.012 0.116,0.033 0.175,0.128 l 0,0 c 0,0 0.14,0.239 0.075,0.337 l 0,0 c -0.037,0.063 -0.158,0.098 -0.352,0.102 l 0,0 c -0.111,0 -0.174,0 -0.252,-0.057 m -3.744,-0.884 c -0.46,-0.035 -0.406,-0.31 -0.406,-0.31 l 0,0 c 0.023,-0.042 0.116,-0.047 0.272,-0.042 l 0,0 c 0.06,0.007 0.25,0.007 0.402,-0.117 l 0,0 c 0.15,-0.133 0.201,-0.429 -0.295,-0.434 l 0,0 -0.006,0 c -0.018,0 -0.041,0.005 -0.057,0.005 l 0,0 -0.006,0 c -0.423,-0.008 -0.528,-0.157 -0.528,-0.211 l 0,0 c -0.001,-0.061 0.141,-0.088 0.203,-0.098 l 0,0 c 0.279,-0.051 0.548,0.032 0.821,0.032 l 0,0 c 0.167,0 0.321,-0.047 0.477,-0.047 l 0,0 0.024,0 1.01,-0.126 c 0.017,-0.006 0.053,-0.013 0.07,-0.022 l 0,0 c 0.175,-0.067 0.141,-0.258 0.228,-0.376 l 0,0 c 0.191,-0.264 0.735,-0.149 0.859,-0.011 l 0,0 c 0.134,0.14 -0.036,0.345 -0.247,0.475 l 0,0 c -0.136,0.085 0.123,0.
 209 0.085,0.337 l 0,0 -0.148,0.211 c -0.066,0.075 -0.066,0.075 -0.585,0.04 l 0,0 c -0.057,0.017 -0.066,0.017 -0.084,0.13 l 0,0 c -0.012,0.088 -0.041,0.267 -0.247,0.231 l 0,0 c -0.14,-0.024 -0.305,-0.138 -0.431,-0.224 l 0,0 c -0.086,-0.06 -0.116,-0.055 -0.146,-0.045 l 0,0 c -0.038,0.012 -0.04,0.114 -0.003,0.218 l 0,0 c 0.038,0.098 0.063,0.167 0,0.212 l 0,0 c 0,0 -0.313,0.211 -0.608,0.224 l 0,0 c -0.014,0 -0.027,0 -0.04,0 l 0,0 c -0.208,0 -0.409,-0.037 -0.614,-0.052 m -5.034,-0.73 c -0.072,0.002 -0.134,0.012 -0.206,0.023 l 0,0 c -0.066,0.013 -0.781,-0.112 -0.781,-0.112 l 0,0 c -0.219,-0.053 -0.27,-0.18 -0.27,-0.18 l 0,0 c -0.009,-0.07 0.132,-0.056 0.347,0.033 l 0,0 c 0.047,0.018 0.122,0.046 0.218,0.052 l 0,0 c 0.211,0.011 0.414,-0.111 0.632,-0.111 l 0,0 c 0.115,0 0.218,0.105 0.347,0.059 l 0,0 c 0.063,-0.027 0.08,-0.122 0.164,-0.118 l 0,0 c 0.155,0.011 0.308,0.05 0.469,0.041 l 0,0 c 0.22,-0.012 0.264,-0.018 0.364,0.056 l 0,0 c 0.354,0.269 -0.485,0.475 -0.485,0.475 l 0,0 c -0.284,-0.031
  -0.509,-0.23 -0.799,-0.218 m 9.047,-0.486 c 0.183,-0.221 0.183,-0.221 0.491,-0.26 l 0,0 c 0.2,-0.031 0.189,-0.066 0.141,-0.152 l 0,0 c -0.022,-0.052 -0.044,-0.092 -0.029,-0.129 l 0,0 c 0.007,-0.023 0.077,-0.116 0.479,-0.102 l 0,0 c 0.047,0 0.098,0.004 0.146,0.015 l 0,0 c 0.152,0.029 0.295,0.093 0.448,0.124 l 0,0 c 0.03,0.007 0.06,0.004 0.092,0.003 l 0,0 c 0.03,-0.002 0.059,-0.004 0.09,0.002 l 0,0 c 0.013,0.006 0.029,0.006 0.043,0.012 l 0,0 c 0.037,0.009 0.081,0.044 0.094,0.064 l 0,0 c 0.032,0.043 0.014,0.095 0.038,0.136 l 0,0 c 0.037,0.074 0.108,0.131 0.135,0.207 l 0,0 c 0.038,0.085 -0.027,0.106 -0.069,0.117 l 0,0 c -0.075,0.021 -0.15,0.015 -0.224,0.009 l 0,0 c -0.042,-0.003 -0.085,-0.007 -0.127,-0.005 l 0,0 c -0.231,0.011 -0.404,0.182 -0.404,0.182 l 0,0 c -0.08,0.083 -0.146,0.149 -0.451,0.199 l 0,0 c -0.011,0.004 -0.548,0.04 -0.548,0.04 l 0,0 c -0.131,0 -0.512,-0.257 -0.345,-0.462 m -12.034,-0.291 c -0.015,-0.175 0.387,-0.213 0.609,-0.054 l 0,0 c 0,0 0.011,0.01 0.023,0.019 l 0,0 c
  0.018,0.023 0.025,0.035 0.025,0.035 l 0,0 c -0.007,0.031 -0.043,0.031 -0.052,0.053 l 0,0 c -0.021,0.048 -0.011,0.142 -0.008,0.169 l 0,0 c 0,0.016 0.008,0.027 0.006,0.043 l 0,0 c -0.006,0.015 -0.019,0.02 -0.043,0.02 l 0,0 c -0.185,-0.005 -0.546,-0.122 -0.56,-0.285 m 2.959,0.205 c -0.207,-0.036 -0.413,-0.073 -0.626,-0.068 l 0,0 -0.012,0.003 c -0.289,0.019 -1.178,0.077 -1.391,-0.379 l 0,0 c -0.007,-0.005 -0.095,-0.297 0.236,-0.376 l 0,0 c 0.036,-0.008 1.114,0.052 1.125,0.052 l 0,0 c 0.138,0.018 0.346,0.09 0.475,0.152 l 0,0 c 0.166,0.075 0.274,0.224 0.417,0.331 l 0,0 c 0.13,0.1 0.308,0.063 0.442,0.14 l 0,0 c 0.016,0.01 0.04,0.018 0.055,0.028 l 0,0 c 0.014,0.013 0.032,0.029 0.046,0.038 l 0,0 c 0.031,0.028 0.108,0.123 -0.127,0.149 l 0,0 c -0.018,0 -0.036,0.001 -0.054,0.001 l 0,0 c -0.199,0 -0.393,-0.036 -0.586,-0.071 m 5.519,-0.694 c 0,-0.027 -0.015,-0.108 0.259,-0.104 l 0,0 c 0.159,0 0.72,0.063 0.779,0.116 l 0,0 c 0.147,0.115 -0.794,0.257 -0.794,0.257 l 0,0 c -0.183,-0.024 -0.244,-0.269
  -0.244,-0.269 m -10.039,0.261 c -0.371,-0.058 -0.66,-0.383 -1.069,-0.346 l 0,0 c -0.293,0.029 -0.555,0.238 -0.871,0.166 l 0,0 c -1.08,-0.261 -2.107,-0.69 -3.185,-0.97 l 0,0 c -0.274,-0.074 -0.573,-0.012 -0.85,-0.099 l 0,0 c -0.165,-0.046 -0.504,-0.144 -0.732,-0.353 l 0,0 c 0,0 0.006,-0.037 0.006,-0.053 l 0,0 c 0.072,0.007 0.135,0.036 0.2,0.039 l 0,0 c 0.022,0.004 0.045,0.006 0.045,0.006 l 0,0 c 0.106,0.008 0.197,-0.03 0.287,-0.068 l 0,0 c 0.094,-0.039 0.186,-0.078 0.292,-0.067 l 0,0 c 0.233,0.027 0.381,0.387 0.661,0.215 l 0,0 c 0.002,-0.046 0.002,-0.056 -0.028,-0.129 l 0,0 c -0.197,-0.402 0.217,-0.317 0.504,-0.135 l 0,0 c 0.203,0.135 0.356,0.352 0.605,0.426 l 0,0 c 0.121,0.036 0.101,-0.153 0.196,-0.181 l 0,0 c 0.038,-0.01 0.038,-0.01 1.029,0.45 l 0,0 c 0.429,0.199 0.429,0.199 0.773,0.188 l 0,0 0.008,0 0.011,-0.027 c -0.048,-0.045 -0.069,-0.057 -0.254,-0.176 l 0,0 c -0.369,-0.23 -0.406,-0.254 -0.399,-0.373 l 0,0 c 0.04,-0.03 0.203,-0.118 0.622,0.045 l 0,0 c 0.337,0.131 0.713,0.134 1
 .047,0.295 l 0,0 c 0.255,0.122 0.33,0.406 0.528,0.58 l 0,0 c 0.192,0.172 0.475,0.082 0.686,0.213 l 0,0 c 0.102,0.061 0.115,0.095 0.131,0.154 l 0,0 c -0.092,0.047 -0.112,0.173 -0.225,0.2 l 0,0 -0.018,0 z m 7.519,-0.578 c -0.025,-0.34 0.383,-0.483 0.549,-0.33 l 0,0 c 0.05,0.049 0.067,0.115 0.046,0.185 l 0,0 c -0.029,0.086 -0.137,0.091 -0.171,0.176 l 0,0 c -0.02,0.043 -0.056,0.134 -0.056,0.298 l 0,0 c 0,0.015 -0.01,0.089 -0.033,0.14 l 0,0 c -0.014,0.032 -0.033,0.033 -0.051,0.04 l 0,0 c -0.13,-0.028 -0.268,-0.355 -0.284,-0.509 m 8.434,0.216 c -0.206,-0.003 -0.412,0.045 -0.618,0.066 l 0,0 c -0.319,0.033 -0.781,-0.198 -0.673,-0.33 l 0,0 c 0.015,-0.02 0.075,-0.067 0.244,-0.071 l 0,0 0.037,0 c 0.199,0.006 0.388,0.098 0.587,0.102 l 0,0 c 0.15,10e-4 0.297,-0.018 0.444,-0.038 l 0,0 c 0.187,-0.024 0.374,-0.05 0.564,-0.031 l 0,0 c 0.206,0.019 0.347,0.143 0.383,0.249 l 0,0 c 0.038,0.122 -0.18,0.127 -0.278,0.132 l 0,0 c -0.231,-0.005 -0.454,-0.079 -0.69,-0.079 m 2.636,-0.424 c 0.027,-0.051 0.095,-
 0.073 0.149,-0.089 l 0,0 c 0.123,-0.043 0.259,-0.048 0.389,-0.097 l 0,0 c 0.196,-0.077 0.196,-0.077 0.242,-0.077 l 0,0 c 0.281,-0.012 0.357,0.179 0.366,0.221 l 0,0 c 0.054,0.164 -0.078,0.233 -0.103,0.243 l 0,0 c -0.038,0.018 -0.077,0.034 -0.107,0.038 l 0,0 c -0.062,0.009 -0.113,-0.02 -0.17,-0.02 l 0,0 c -0.169,-0.007 -0.304,0.118 -0.473,0.118 l 0,0 c -0.275,-0.029 -0.339,-0.269 -0.293,-0.337 m -18.312,-0.168 c -0.17,-0.064 -0.29,-0.164 -0.295,-0.225 l 0,0 c -0.006,-0.034 0.03,-0.041 0.067,-0.041 l 0,0 c 0.073,0.007 0.144,0.025 0.219,0.032 l 0,0 c 0.164,0.018 0.327,0.009 0.492,0.032 l 0,0 c 0.027,0.006 0.125,0.022 0.191,0.062 l 0,0 c 0.009,0.006 0.025,0.015 0.025,0.015 l 0,0 c 0.127,0.12 -0.223,0.141 -0.332,0.15 l 0,0 c -0.094,0.004 -0.155,0.007 -0.198,0.007 l 0,0 c -0.078,0 -0.102,-0.009 -0.169,-0.032 m 13.725,-0.546 c 0,-0.159 0.203,-0.094 0.29,-0.175 l 0,0 c 0.112,-0.114 0.158,-0.276 0.286,-0.382 l 0,0 c 0.03,-0.027 0.078,-0.048 0.176,-0.06 l 0,0 c 0.015,-0.003 0.036,-0.004 0.054,
 -0.004 l 0,0 c 0.163,-0.011 0.325,10e-4 0.491,10e-4 l 0,0 c 0.277,-10e-4 0.541,-0.149 0.822,-0.101 l 0,0 c 0.029,10e-4 0.11,0.016 0.158,0.053 l 0,0 c 0.003,0 0.334,0.302 0.364,0.357 l 0,0 c 0.057,0.094 0.048,0.217 -0.1,0.262 l 0,0 c -0.085,0.028 -0.175,0.046 -0.422,0.032 l 0,0 c -0.304,-0.018 -0.546,0.173 -0.827,0.221 l 0,0 -0.544,0.058 c -0.157,-0.011 -0.754,-0.13 -0.748,-0.262 m -11.117,-0.294 c 0.061,-0.174 0.251,-0.209 0.344,-0.349 l 0,0 c -0.075,-0.26 -0.364,-0.174 -0.52,-0.311 l 0,0 c 0,-0.018 0.007,-0.04 0.007,-0.04 l 0,0 c 0.129,-0.122 0.391,-0.02 0.432,-0.243 l 0,0 c 0,0 -0.003,-0.345 -0.317,-0.356 l 0,0 c 0,0 -1.817,0.224 -1.939,0.284 l 0,0 c 0.057,0.233 0.108,0.468 -0.164,0.613 l 0,0 c 0,0 -0.002,0 -0.031,-0.004 l 0,0 -0.035,0.013 c -0.161,0.292 -0.161,0.292 -0.883,0.279 l 0,0 -0.002,0 c -0.194,0.062 -0.095,0.337 -0.287,0.397 l 0,0 -0.01,0 c -0.315,0 -0.59,0.006 -1.711,-0.44 l 0,0 -2.013,-0.954 c -0.053,-0.028 -0.116,-0.089 -0.154,-0.14 l 0,0 c 0.004,-0.014 0.01,-0.042 0.
 014,-0.057 l 0,0 c 0.173,-0.103 0.341,-0.056 0.51,-0.01 l 0,0 c 0.131,0.036 0.263,0.073 0.398,0.04 l 0,0 c 0.047,-0.094 -0.029,-0.203 0.029,-0.295 l 0,0 c 0.238,0.018 0.442,0.201 0.698,0.145 l 0,0 c -0.003,-0.072 -0.003,-0.072 -0.09,-0.278 l 0,0 c 0.009,-0.019 0.022,-0.037 0.027,-0.055 l 0,0 c 0.591,0.113 1.012,0.64 1.622,0.702 l 0,0 c 0.019,-0.015 0.04,-0.032 0.057,-0.047 l 0,0 c -0.032,-0.357 -0.438,-0.385 -0.583,-0.633 l 0,0 c 0.18,-0.084 0.909,0.224 1.127,0.319 l 0,0 c 0.136,0.062 0.228,-0.01 0.32,-0.082 l 0,0 c 0.074,-0.058 0.147,-0.115 0.245,-0.104 l 0,0 c 0.179,0.017 0.375,0.079 0.507,0.115 l 0,0 c 0.382,0.109 0.428,0.078 0.49,0.034 l 0,0 c -0.081,-0.236 -1.212,-0.509 -1.537,-0.415 l 0,0 c -0.101,0.032 -1.966,-0.075 -2.102,-0.396 l 0,0 c 0.049,-0.095 0.069,-0.137 0.311,-0.165 l 0,0 c 0.239,-0.027 0.415,-0.233 0.662,-0.25 l 0,0 c 0.29,-0.024 0.559,0.107 0.839,0.126 l 0,0 c 0.22,0.011 0.723,0.047 1.264,0.331 l 0,0 c 0.115,0.059 0.389,0.201 0.598,0.166 l 0,0 c 0.457,-0.076 0.863
 ,0.143 1.3,0.206 l 0,0 c 0.102,0.013 0.191,-0.029 0.28,-0.072 l 0,0 c 0.085,-0.042 0.171,-0.083 0.27,-0.073 l 0,0 c 0.194,0.023 0.343,0.187 0.547,0.193 l 0,0 c 0.02,0 0.045,-0.017 0.059,-0.02 l 0,0 c 0.06,-0.184 0.135,-0.41 1.272,-0.062 l 0,0 c 0.128,0.037 1.128,0.791 1.134,0.797 l 0,0 c 0.389,0.386 -0.226,0.554 -0.226,0.554 l 0,0 c -0.026,0.009 -0.058,-0.004 -0.076,-0.004 l 0,0 c -0.281,-0.049 -0.445,-0.316 -0.714,-0.391 l 0,0 c -0.104,-0.03 -0.178,0.029 -0.251,0.089 l 0,0 c -0.076,0.06 -0.151,0.12 -0.255,0.087 l 0,0 c -0.036,-0.012 -0.087,-0.012 -0.119,-0.006 l 0,0 c 0.078,0.093 0.078,0.093 0.096,0.174 l 0,0 c -0.052,0.047 -0.092,0.087 -0.261,0.078 l 0,0 c -0.011,0.014 -0.03,0.035 -0.038,0.052 l 0,0 c 0.056,0.131 0.198,0.201 0.234,0.343 l 0,0 c -0.058,0.043 -0.127,0.047 -0.193,0.077 l 0,0 c 0.066,0.216 0.334,0.273 0.409,0.474 l 0,0 c -0.075,0.056 -0.075,0.056 -0.206,0.063 l 0,0 c -0.096,-0.004 -1.265,-0.376 -1.385,-0.499 m 4.796,0.173 c -0.011,-0.007 -0.516,-0.848 -0.033,-0.955 l 
 0,0 0.004,-0.004 0.008,0.004 0.006,-0.004 0.612,-0.312 c 0.069,-0.06 0.057,-0.142 0.045,-0.232 l 0,0 c 0.138,-0.133 0.916,-0.037 1.275,0.052 l 0,0 c 0.175,0.04 1.154,0.12 1.246,0.019 l 0,0 c -0.053,-0.296 -0.34,-0.278 -0.442,-0.273 l 0,0 c -0.265,0.018 -0.309,0.011 -0.354,-0.074 l 0,0 C 385.015,521.824 385,521.797 385,521.797 l 0,0 c 0,-0.114 0.121,-0.122 0.125,-0.213 l 0,0 c 0.007,-0.104 -0.11,-0.168 -0.101,-0.281 l 0,0 0.005,-0.029 c 0.031,-0.06 0.129,-0.092 0.302,-0.087 l 0,0 c 0.266,0.012 0.489,0.197 0.755,0.206 l 0,0 c 0.121,0.005 0.238,-0.027 0.353,-0.059 l 0,0 c 0.126,-0.035 0.251,-0.069 0.381,-0.057 l 0,0 c 0.055,0.006 0.122,0.042 0.177,0.071 l 0,0 c 0.25,0.126 0.312,0.401 0.382,0.713 l 0,0 c 0.066,0.261 0.28,0.415 0.409,0.637 l 0,0 c 0.029,0.047 0.08,0.602 0.08,0.603 l 0,0 c -0.017,0.039 -0.51,0.208 -0.51,0.208 l 0,0 c -0.133,0.017 -0.225,-0.056 -0.315,-0.129 l 0,0 c -0.082,-0.067 -0.163,-0.134 -0.273,-0.132 l 0,0 c -0.254,10e-4 -0.402,0.255 -0.645,0.272 l 0,0 c -0.054,0.00
 6 -0.555,-0.024 -0.64,-0.054 l 0,0 c -0.067,-0.024 -0.124,-0.255 0.076,-0.342 l 0,0 0.376,-0.4 c 0.032,-0.042 0.026,-0.083 0.026,-0.083 l 0,0 c -0.043,-0.197 -0.246,-0.064 -0.934,0.358 l 0,0 c -0.119,0.077 -0.085,0.227 -0.161,0.319 l 0,0 c -0.14,0.167 -0.564,-0.131 -0.605,-0.369 l 0,0 c 0.012,-0.017 0.03,-0.027 0.049,-0.043 l 0,0 c 0,0 0.231,-0.381 0.002,-0.489 l 0,0 c -0.132,-0.065 -0.162,0.128 -0.245,0.19 l 0,0 c -0.053,0.043 -0.112,0.037 -0.172,0.033 l 0,0 c -0.045,-0.004 -0.091,-0.007 -0.135,0.01 l 0,0 c -0.021,0.009 -0.057,0.027 -0.069,0.048 l 0,0 c -0.097,0.112 -0.015,0.271 -0.106,0.385 l 0,0 c -0.034,0.038 -0.081,0.035 -0.128,0.03 l 0,0 c -0.05,-0.004 -0.101,-0.009 -0.136,0.042 l 0,0 c -0.012,0.015 -0.027,0.062 -0.044,0.163 l 0,0 c -0.022,0.26 -0.503,0.337 -0.503,0.337 l 0,0 c -0.041,-0.003 -0.085,-0.003 -0.119,-0.032 m -84.232,-11.787 c 1.14,0.347 2.274,0.715 3.363,1.213 l 0,0 c -0.149,-0.164 -0.385,-0.343 -0.585,-0.44 l 0,0 c 0.167,0.037 0.388,0.108 0.549,0.174 l 0,0 c 1.39
 6,0.704 2.681,1.346 3.951,1.968 l 0,0 c -1.255,-0.615 -2.505,-1.242 -3.745,-1.881 l 0,0 c 0.015,0.006 2.429,1.012 2.543,1.065 l 0,0 c 0.162,0.075 0.453,0.219 0.477,0.285 l 0,0 -0.02,0 c 0.041,0.042 0.093,0.081 0.916,0.515 l 0,0 c 0.588,0.31 0.707,0.375 0.745,0.441 l 0,0 -0.029,0.01 -0.003,-0.006 -0.006,0 c 0.633,0.58 1.511,0.782 2.123,1.385 l 0,0 c -0.171,-0.218 -0.388,-0.399 -0.546,-0.625 l 0,0 c -0.004,-0.003 -0.021,-0.016 -0.031,-0.023 l 0,0 c 0.338,0.159 0.677,0.316 1.016,0.472 l 0,0 c -0.342,-0.158 -0.683,-0.317 -1.023,-0.478 l 0,0 0.019,0 c 0.445,0.117 1.146,0.368 1.985,0.882 l 0,0 c 0.088,0.052 1.498,0.794 1.799,0.708 l 0,0 c -0.01,-0.017 -0.03,-0.042 -0.045,-0.056 l 0,0 c 0.006,-0.022 0.018,-0.049 0.027,-0.07 l 0,0 c 0.175,0.025 0.175,0.025 0.238,0.01 l 0,0 c -0.745,-0.409 -1.637,-0.509 -2.304,-1.094 l 0,0 c 1.009,0.259 1.616,0.414 1.792,0.39 l 0,0 c 0.0

<TRUNCATED>


[5/7] incubator-mnemonic-site git commit: MNEMONIC-312: Illustrate usage cases of Durable Object Model in diagrams

Posted by ga...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/blob/34515c3c/src/img/durablechunkbuffers.svg
----------------------------------------------------------------------
diff --git a/src/img/durablechunkbuffers.svg b/src/img/durablechunkbuffers.svg
new file mode 100755
index 0000000..90d21b6
--- /dev/null
+++ b/src/img/durablechunkbuffers.svg
@@ -0,0 +1,199 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="198.12mm" height="165.1mm" viewBox="0 0 19812 16510" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+  <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+   <rect x="0" y="0" width="19812" height="16510"/>
+  </clipPath>
+  <clipPath id="presentation_clip_path_shrink" clipPathUnits="userSpaceOnUse">
+   <rect x="19" y="16" width="19773" height="16477"/>
+  </clipPath>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_1" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="901" d="M 314,1082 L 314,396 C 314,325 321,269 335,230 349,191 371,162 402,145 433,128 478,119 537,119 624,119 692,149 742,208 792,267 817,350 817,455 L 817,1082 997,1082 997,231 C 997,105 999,28 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 826,132 825,185 L 822,185 C 781,110 733,58 679,27 624,-4 557,-20 476,-20 357,-20 271,10 216,69 161,128 133,225 133,361 L 133,1082 314,1082 Z"/>
+   <glyph unicode="r" horiz-adv-x="531" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
+   <glyph unicode="n" horiz-adv-x="901" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
+   <glyph unicode="l" horiz-adv-x="178" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
+   <glyph unicode="k" horiz-adv-x="919" d="M 816,0 L 450,494 318,385 318,0 138,0 138,1484 318,1484 318,557 793,1082 1004,1082 565,617 1027,0 816,0 Z"/>
+   <glyph unicode="h" horiz-adv-x="883" d="M 317,897 C 356,968 402,1020 457,1053 511,1086 580,1102 663,1102 780,1102 867,1073 923,1015 978,956 1006,858 1006,721 L 1006,0 825,0 825,686 C 825,762 818,819 804,856 790,893 767,920 735,937 703,954 659,963 602,963 517,963 450,934 399,875 348,816 322,737 322,638 L 322,0 142,0 142,1484 322,1484 322,1098 C 322,1057 321,1015 319,972 316,929 315,904 314,897 L 317,897 Z"/>
+   <glyph unicode="f" horiz-adv-x="565" d="M 361,951 L 361,0 181,0 181,951 29,951 29,1082 181,1082 181,1204 C 181,1303 203,1374 246,1417 289,1460 356,1482 445,1482 495,1482 537,1478 572,1470 L 572,1333 C 542,1338 515,1341 492,1341 446,1341 413,1329 392,1306 371,1283 361,1240 361,1179 L 361,1082 572,1082 572,951 361,951 Z"/>
+   <glyph unicode="e" horiz-adv-x="971" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
+   <glyph unicode="b" horiz-adv-x="936" d="M 1053,546 C 1053,169 920,-20 655,-20 573,-20 505,-5 451,25 396,54 352,102 318,168 L 316,168 C 316,147 315,116 312,74 309,31 307,7 306,0 L 132,0 C 136,36 138,110 138,223 L 138,1484 318,1484 318,1061 C 318,1018 317,967 314,908 L 318,908 C 351,977 396,1027 451,1057 506,1087 574,1102 655,1102 792,1102 892,1056 957,964 1021,872 1053,733 1053,546 Z M 864,540 C 864,691 844,800 804,865 764,930 699,963 609,963 508,963 434,928 388,859 341,790 318,680 318,529 318,387 341,282 386,215 431,147 505,113 607,113 698,113 763,147 804,214 844,281 864,389 864,540 Z"/>
+   <glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,66 114,123 87,202 87,302 87,414 124,500 198,560 271,620 390,652 554,656 L 797,660 797,719 C 797,807 778,870 741,908 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,190 723,231 753,284 782,336 797,390 797,445 L 797,534 600,530 C 515,529 451,520 408,504 364,488 330,463 307,430 284,397 272,353 272,299 272,240 288,195 320,163 351,131 396,115 455,115 Z"/>
+   <glyph unicode="D" horiz-adv-x="1235" d="M 1381,719 C 1381,574 1353,447 1296,338 1239,229 1159,145 1055,87 951,29 831,0 695,0 L 168,0 168,1409 634,1409 C 873,1409 1057,1349 1187,1230 1316,1110 1381,940 1381,719 Z M 1189,719 C 1189,894 1141,1027 1046,1119 950,1210 811,1256 630,1256 L 359,1256 359,153 673,153 C 776,153 867,176 946,221 1024,266 1084,332 1126,417 1168,502 1189,603 1189,719 Z"/>
+   <glyph unicode="C" horiz-adv-x="1306" d="M 792,1274 C 636,1274 515,1224 428,1124 341,1023 298,886 298,711 298,538 343,400 434,295 524,190 646,137 800,137 997,137 1146,235 1245,430 L 1401,352 C 1343,231 1262,138 1157,75 1052,12 930,-20 791,-20 649,-20 526,10 423,69 319,128 240,212 186,322 131,431 104,561 104,711 104,936 165,1112 286,1239 407,1366 575,1430 790,1430 940,1430 1065,1401 1166,1342 1267,1283 1341,1196 1388,1081 L 1207,1021 C 1174,1103 1122,1166 1050,1209 977,1252 891,1274 792,1274 Z"/>
+   <glyph unicode="B" horiz-adv-x="1094" d="M 1258,397 C 1258,272 1212,174 1121,105 1030,35 903,0 740,0 L 168,0 168,1409 680,1409 C 1011,1409 1176,1295 1176,1067 1176,984 1153,914 1106,857 1059,800 993,762 908,743 1020,730 1106,692 1167,631 1228,569 1258,491 1258,397 Z M 984,1044 C 984,1120 958,1174 906,1207 854,1240 779,1256 680,1256 L 359,1256 359,810 680,810 C 782,810 858,829 909,868 959,906 984,965 984,1044 Z M 1065,412 C 1065,578 948,661 715,661 L 359,661 359,153 730,153 C 847,153 932,175 985,218 1038,261 1065,326 1065,412 Z"/>
+   <glyph unicode=" " horiz-adv-x="564"/>
+  </font>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_2" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="423"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="1007" d="M 408,1082 L 408,475 C 408,285 472,190 600,190 668,190 723,219 765,278 806,336 827,411 827,502 L 827,1082 1108,1082 1108,242 C 1108,150 1111,69 1116,0 L 848,0 C 840,96 836,168 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 368,-20 280,15 219,86 158,156 127,259 127,395 L 127,1082 408,1082 Z"/>
+   <glyph unicode="s" horiz-adv-x="1006" d="M 1055,316 C 1055,211 1012,129 927,70 841,10 722,-20 571,-20 422,-20 309,4 230,51 151,98 98,171 72,270 L 319,307 C 333,256 357,219 392,198 426,177 486,166 571,166 650,166 707,176 743,196 779,216 797,247 797,290 797,325 783,352 754,373 725,393 675,410 606,424 447,455 340,485 285,512 230,539 188,574 159,617 130,660 115,712 115,775 115,878 155,959 235,1017 314,1074 427,1103 573,1103 702,1103 805,1078 884,1028 962,978 1011,906 1030,811 L 781,785 C 773,829 753,862 722,884 691,905 641,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,774 386,749 412,731 437,712 480,697 541,685 626,668 701,650 767,632 832,613 885,591 925,566 964,541 996,508 1020,469 1043,429 1055,378 1055,316 Z"/>
+   <glyph unicode="r" horiz-adv-x="654" d="M 143,0 L 143,828 C 143,887 142,937 141,977 139,1016 137,1051 135,1082 L 403,1082 C 405,1070 408,1034 411,973 414,912 416,871 416,851 L 420,851 C 447,927 472,981 493,1012 514,1043 540,1066 569,1081 598,1096 635,1103 679,1103 715,1103 744,1098 766,1088 L 766,853 C 721,863 681,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+   <glyph unicode="n" horiz-adv-x="1007" d="M 844,0 L 844,607 C 844,797 780,892 651,892 583,892 528,863 487,805 445,746 424,671 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 883,1103 971,1068 1032,997 1093,926 1124,823 1124,687 L 1124,0 844,0 Z"/>
+   <glyph unicode="l" horiz-adv-x="283" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+   <glyph unicode="k" horiz-adv-x="1007" d="M 834,0 L 545,490 424,406 424,0 143,0 143,1484 424,1484 424,634 810,1082 1112,1082 732,660 1141,0 834,0 Z"/>
+   <glyph unicode="h" horiz-adv-x="989" d="M 420,866 C 458,949 506,1009 563,1046 620,1083 689,1102 768,1102 883,1102 971,1067 1032,996 1093,925 1124,822 1124,686 L 1124,0 844,0 844,606 C 844,796 780,891 651,891 583,891 528,862 487,804 445,745 424,670 424,579 L 424,0 143,0 143,1484 424,1484 424,1079 C 424,1006 421,935 416,866 L 420,866 Z"/>
+   <glyph unicode="f" horiz-adv-x="672" d="M 473,892 L 473,0 193,0 193,892 35,892 35,1082 193,1082 193,1195 C 193,1293 219,1366 271,1413 323,1460 402,1484 508,1484 561,1484 620,1479 686,1468 L 686,1287 C 659,1293 631,1296 604,1296 556,1296 522,1287 503,1268 483,1249 473,1215 473,1167 L 473,1082 686,1082 686,892 473,892 Z"/>
+   <glyph unicode="e" horiz-adv-x="1006" d="M 586,-20 C 423,-20 298,28 211,125 124,221 80,361 80,546 80,725 124,862 213,958 302,1054 427,1102 590,1102 745,1102 864,1051 946,948 1028,845 1069,694 1069,495 L 1069,487 375,487 C 375,382 395,302 434,249 473,195 528,168 600,168 699,168 762,211 788,297 L 1053,274 C 976,78 821,-20 586,-20 Z M 586,925 C 520,925 469,902 434,856 398,810 379,746 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+   <glyph unicode="b" horiz-adv-x="1060" d="M 1167,545 C 1167,366 1131,228 1060,129 988,30 885,-20 752,-20 675,-20 609,-3 553,30 497,63 454,111 424,174 L 422,174 C 422,151 421,119 418,78 415,37 411,11 408,0 L 135,0 C 140,62 143,144 143,247 L 143,1484 424,1484 424,1070 420,894 424,894 C 487,1033 603,1102 770,1102 898,1102 996,1054 1065,957 1133,860 1167,722 1167,545 Z M 874,545 C 874,668 856,759 820,818 784,877 728,907 653,907 577,907 519,875 480,812 440,748 420,656 420,536 420,421 440,332 479,268 518,204 575,172 651,172 800,172 874,296 874,545 Z"/>
+   <glyph unicode="a" horiz-adv-x="1112" d="M 393,-20 C 288,-20 207,9 148,66 89,123 60,203 60,306 60,418 97,503 170,562 243,621 348,651 487,652 L 720,656 720,711 C 720,782 708,834 683,869 658,903 618,920 562,920 510,920 472,908 448,885 423,861 408,822 402,767 L 109,781 C 127,886 175,966 254,1021 332,1075 439,1102 574,1102 711,1102 816,1068 890,1001 964,934 1001,838 1001,714 L 1001,320 C 1001,259 1008,218 1022,195 1035,172 1058,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 670,51 552,-20 393,-20 Z M 720,501 L 576,499 C 511,496 464,489 437,478 410,466 389,448 375,424 360,400 353,368 353,328 353,277 365,239 389,214 412,189 444,176 483,176 527,176 567,188 604,212 640,236 668,269 689,312 710,354 720,399 720,446 L 720,501 Z"/>
+   <glyph unicode="D" horiz-adv-x="1271" d="M 1393,715 C 1393,570 1365,443 1308,335 1251,226 1170,143 1066,86 961,29 842,0 707,0 L 137,0 137,1409 647,1409 C 884,1409 1068,1349 1198,1230 1328,1110 1393,938 1393,715 Z M 1096,715 C 1096,866 1057,982 978,1062 899,1141 787,1181 641,1181 L 432,1181 432,228 682,228 C 809,228 909,272 984,359 1059,446 1096,565 1096,715 Z"/>
+   <glyph unicode="C" horiz-adv-x="1359" d="M 795,212 C 973,212 1097,301 1166,480 L 1423,383 C 1368,247 1287,146 1180,80 1073,13 944,-20 795,-20 568,-20 393,44 270,173 146,301 84,480 84,711 84,942 144,1120 263,1244 382,1368 555,1430 782,1430 947,1430 1082,1397 1186,1331 1290,1264 1363,1167 1405,1038 L 1145,967 C 1123,1038 1080,1094 1016,1136 951,1177 875,1198 788,1198 655,1198 554,1157 485,1074 416,991 381,870 381,711 381,549 417,425 488,340 559,255 661,212 795,212 Z"/>
+   <glyph unicode="B" horiz-adv-x="1271" d="M 1386,402 C 1386,274 1338,175 1242,105 1146,35 1013,0 842,0 L 137,0 137,1409 782,1409 C 954,1409 1084,1379 1173,1320 1261,1260 1305,1172 1305,1055 1305,975 1283,908 1239,853 1194,798 1127,760 1036,741 1150,728 1237,692 1297,634 1356,575 1386,498 1386,402 Z M 1008,1015 C 1008,1078 988,1123 948,1150 907,1177 847,1190 768,1190 L 432,1190 432,841 770,841 C 853,841 914,856 952,885 989,914 1008,957 1008,1015 Z M 1090,425 C 1090,557 995,623 806,623 L 432,623 432,219 817,219 C 912,219 981,236 1025,271 1068,305 1090,356 1090,425 Z"/>
+   <glyph unicode=" " horiz-adv-x="564"/>
+  </font>
+ </defs>
+ <defs class="TextShapeIndex">
+  <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+  <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+  </g>
+  <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+  </g>
+  <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+  </g>
+  <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+  </g>
+  <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+  </g>
+  <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+  </g>
+  <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+  </g>
+  <g id="bullet-char-template(61548)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
+  </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+  <g id="id2" class="Master_Slide">
+   <g id="bg-id2" class="Background"/>
+   <g id="bo-id2" class="BackgroundObjects"/>
+  </g>
+ </g>
+ <g class="SlideGroup">
+  <g>
+   <g id="container-id1">
+    <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+     <g class="Page">
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id3">
+        <rect class="BoundingBox" stroke="none" fill="none" x="7897" y="6735" width="1807" height="6458"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 8800,13191 L 7898,13191 7898,6736 9702,6736 9702,13191 8800,13191 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 8800,13191 L 7898,13191 7898,6736 9702,6736 9702,13191 8800,13191 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id4">
+        <rect class="BoundingBox" stroke="none" fill="none" x="9697" y="6735" width="1807" height="6458"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 10600,13191 L 9698,13191 9698,6736 11502,6736 11502,13191 10600,13191 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 10600,13191 L 9698,13191 9698,6736 11502,6736 11502,13191 10600,13191 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id5">
+        <rect class="BoundingBox" stroke="none" fill="none" x="11497" y="6735" width="1807" height="6458"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 12400,13191 L 11498,13191 11498,6736 13302,6736 13302,13191 12400,13191 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 12400,13191 L 11498,13191 11498,6736 13302,6736 13302,13191 12400,13191 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id6">
+        <rect class="BoundingBox" stroke="none" fill="none" x="2497" y="6735" width="1807" height="6458"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 3400,13191 L 2498,13191 2498,6736 4302,6736 4302,13191 3400,13191 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 3400,13191 L 2498,13191 2498,6736 4302,6736 4302,13191 3400,13191 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.TextShape">
+       <g id="id7">
+        <rect class="BoundingBox" stroke="none" fill="none" x="2271" y="1637" width="15114" height="2160"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="706px" font-weight="700"><tspan class="TextPosition" x="2521" y="2401"><tspan fill="rgb(0,0,0)" stroke="none">Durable Chunk Buffers</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id8">
+        <rect class="BoundingBox" stroke="none" fill="none" x="16168" y="7446" width="2150" height="247"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 16274,7586 L 16692,7579"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 17109,7571 L 17527,7564"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 17944,7557 L 18211,7552"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id9">
+        <rect class="BoundingBox" stroke="none" fill="none" x="4297" y="6735" width="1807" height="6458"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 5200,13191 L 4298,13191 4298,6736 6102,6736 6102,13191 5200,13191 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 5200,13191 L 4298,13191 4298,6736 6102,6736 6102,13191 5200,13191 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id10">
+        <rect class="BoundingBox" stroke="none" fill="none" x="6097" y="6735" width="1807" height="6458"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 7000,13191 L 6098,13191 6098,6736 7902,6736 7902,13191 7000,13191 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 7000,13191 L 6098,13191 6098,6736 7902,6736 7902,13191 7000,13191 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id11">
+        <rect class="BoundingBox" stroke="none" fill="none" x="13297" y="6735" width="1807" height="6458"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 14200,13191 L 13298,13191 13298,6736 15102,6736 15102,13191 14200,13191 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 14200,13191 L 13298,13191 13298,6736 15102,6736 15102,13191 14200,13191 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id12">
+        <rect class="BoundingBox" stroke="none" fill="none" x="15097" y="6735" width="1807" height="6458"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 16000,13191 L 15098,13191 15098,6736 16902,6736 16902,13191 16000,13191 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 16000,13191 L 15098,13191 15098,6736 16902,6736 16902,13191 16000,13191 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.TextShape">
+       <g id="id13">
+        <rect class="BoundingBox" stroke="none" fill="none" x="2451" y="5645" width="4724" height="955"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="2701" y="6342"><tspan fill="rgb(0,0,0)" stroke="none">Durable Chunk</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.TextShape">
+       <g id="id14">
+        <rect class="BoundingBox" stroke="none" fill="none" x="2905" y="7096" width="1144" height="5589"/>
+        <text class="TextShape" transform="translate(3602,11926) rotate(-90) translate(-3602,-11926)"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="3602" y="11926"><tspan fill="rgb(0,0,0)" stroke="none">Durable Buffer</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.TextShape">
+       <g id="id15">
+        <rect class="BoundingBox" stroke="none" fill="none" x="4706" y="7096" width="1144" height="5589"/>
+        <text class="TextShape" transform="translate(5403,11926) rotate(-90) translate(-5403,-11926)"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="5403" y="11926"><tspan fill="rgb(0,0,0)" stroke="none">Durable Buffer</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.TextShape">
+       <g id="id16">
+        <rect class="BoundingBox" stroke="none" fill="none" x="6406" y="7096" width="1144" height="5589"/>
+        <text class="TextShape" transform="translate(7103,11926) rotate(-90) translate(-7103,-11926)"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="7103" y="11926"><tspan fill="rgb(0,0,0)" stroke="none">Durable Buffer</tspan></tspan></tspan></text>
+       </g>
+      </g>
+     </g>
+    </g>
+   </g>
+  </g>
+ </g>
+</svg>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/blob/34515c3c/src/img/durablegenericobject.svg
----------------------------------------------------------------------
diff --git a/src/img/durablegenericobject.svg b/src/img/durablegenericobject.svg
new file mode 100755
index 0000000..7e9d0e0
--- /dev/null
+++ b/src/img/durablegenericobject.svg
@@ -0,0 +1,184 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="198.12mm" height="165.1mm" viewBox="0 0 19812 16510" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+  <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+   <rect x="0" y="0" width="19812" height="16510"/>
+  </clipPath>
+  <clipPath id="presentation_clip_path_shrink" clipPathUnits="userSpaceOnUse">
+   <rect x="19" y="16" width="19773" height="16477"/>
+  </clipPath>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_1" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="t" horiz-adv-x="547" d="M 554,8 C 495,-8 434,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 474,127 509,132 554,141 L 554,8 Z"/>
+   <glyph unicode="s" horiz-adv-x="901" d="M 950,299 C 950,197 912,118 835,63 758,8 650,-20 511,-20 376,-20 273,2 200,47 127,91 79,160 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 602,117 669,131 712,159 754,187 775,229 775,285 775,328 760,362 731,389 702,416 654,438 589,455 L 460,489 C 357,516 283,542 240,568 196,593 162,624 137,661 112,698 100,743 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 759,862 732,899 689,925 645,950 586,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,783 283,758 299,738 315,718 339,701 370,687 401,673 467,654 568,629 663,605 732,583 774,563 816,542 849,520 874,495 898,470 917,442 930,410 943,377 950,340 950,299 Z"/>
+   <glyph unicode="r" horiz-adv-x="531" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
+   <glyph unicode="o" horiz-adv-x="971" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
+   <glyph unicode="n" horiz-adv-x="901" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
+   <glyph unicode="m" horiz-adv-x="1483" d="M 768,0 L 768,686 C 768,791 754,863 725,903 696,943 645,963 570,963 493,963 433,934 388,875 343,816 321,734 321,627 L 321,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 356,974 400,1027 450,1057 500,1087 561,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 967,970 1013,1022 1066,1054 1119,1086 1183,1102 1258,1102 1367,1102 1447,1072 1497,1013 1546,954 1571,856 1571,721 L 1571,0 1393,0 1393,686 C 1393,791 1379,863 1350,903 1321,943 1270,963 1195,963 1116,963 1055,934 1012,876 968,817 946,734 946,627 L 946,0 768,0 Z"/>
+   <glyph unicode="l" horiz-adv-x="178" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
+   <glyph unicode="i" horiz-adv-x="196" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
+   <glyph unicode="h" horiz-adv-x="883" d="M 317,897 C 356,968 402,1020 457,1053 511,1086 580,1102 663,1102 780,1102 867,1073 923,1015 978,956 1006,858 1006,721 L 1006,0 825,0 825,686 C 825,762 818,819 804,856 790,893 767,920 735,937 703,954 659,963 602,963 517,963 450,934 399,875 348,816 322,737 322,638 L 322,0 142,0 142,1484 322,1484 322,1098 C 322,1057 321,1015 319,972 316,929 315,904 314,897 L 317,897 Z"/>
+   <glyph unicode="g" horiz-adv-x="936" d="M 548,-425 C 430,-425 336,-402 266,-355 196,-309 151,-243 131,-158 L 312,-132 C 324,-182 351,-220 392,-247 433,-274 486,-288 553,-288 732,-288 822,-183 822,27 L 822,201 820,201 C 786,132 739,80 680,45 621,10 551,-8 472,-8 339,-8 242,36 180,124 117,212 86,350 86,539 86,730 120,872 187,963 254,1054 355,1099 492,1099 569,1099 635,1082 692,1047 748,1012 791,962 822,897 L 824,897 C 824,917 825,952 828,1001 831,1050 833,1077 836,1082 L 1007,1082 C 1003,1046 1001,971 1001,858 L 1001,31 C 1001,-273 850,-425 548,-425 Z M 822,541 C 822,629 810,705 786,769 762,832 728,881 685,915 641,948 591,965 536,965 444,965 377,932 335,865 293,798 272,690 272,541 272,393 292,287 331,222 370,157 438,125 533,125 590,125 640,142 684,175 728,208 762,256 786,319 810,381 822,455 822,541 Z"/>
+   <glyph unicode="e" horiz-adv-x="971" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
+   <glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,66 114,123 87,202 87,302 87,414 124,500 198,560 271,620 390,652 554,656 L 797,660 797,719 C 797,807 778,870 741,908 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,190 723,231 753,284 782,336 797,390 797,445 L 797,534 600,530 C 515,529 451,520 408,504 364,488 330,463 307,430 284,397 272,353 272,299 272,240 288,195 320,163 351,131 396,115 455,115 Z"/>
+   <glyph unicode="S" horiz-adv-x="1183" d="M 1272,389 C 1272,259 1221,158 1120,87 1018,16 875,-20 690,-20 347,-20 148,99 93,338 L 278,375 C 299,290 345,228 414,189 483,149 578,129 697,129 820,129 916,150 983,193 1050,235 1083,297 1083,379 1083,425 1073,462 1052,491 1031,520 1001,543 963,562 925,581 880,596 827,609 774,622 716,635 652,650 541,675 456,699 399,724 341,749 295,776 262,807 229,837 203,872 186,913 168,954 159,1000 159,1053 159,1174 205,1267 298,1332 390,1397 522,1430 694,1430 854,1430 976,1406 1061,1357 1146,1308 1205,1224 1239,1106 L 1051,1073 C 1030,1148 991,1202 933,1236 875,1269 795,1286 692,1286 579,1286 493,1267 434,1230 375,1193 345,1137 345,1063 345,1020 357,984 380,956 403,927 436,903 479,884 522,864 609,840 738,811 781,801 825,791 868,781 911,770 952,758 991,744 1030,729 1067,712 1102,693 1136,674 1166,650 1191,622 1216,594 1236,561 1251,523 1265,485 1272,440 1272,389 Z"/>
+   <glyph unicode="P" horiz-adv-x="1094" d="M 1258,985 C 1258,852 1215,746 1128,667 1041,588 922,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 919,1409 1041,1372 1128,1298 1215,1224 1258,1120 1258,985 Z M 1066,983 C 1066,1165 957,1256 738,1256 L 359,1256 359,700 746,700 C 959,700 1066,794 1066,983 Z"/>
+   <glyph unicode="N" horiz-adv-x="1165" d="M 1082,0 L 328,1200 333,1103 338,936 338,0 168,0 168,1409 390,1409 1152,201 C 1144,332 1140,426 1140,485 L 1140,1409 1312,1409 1312,0 1082,0 Z"/>
+   <glyph unicode="E" horiz-adv-x="1112" d="M 168,0 L 168,1409 1237,1409 1237,1253 359,1253 359,801 1177,801 1177,647 359,647 359,156 1278,156 1278,0 168,0 Z"/>
+   <glyph unicode="A" horiz-adv-x="1359" d="M 1167,0 L 1006,412 364,412 202,0 4,0 579,1409 796,1409 1362,0 1167,0 Z M 685,1265 L 676,1237 C 659,1182 635,1111 602,1024 L 422,561 949,561 768,1026 C 749,1072 731,1124 712,1182 L 685,1265 Z"/>
+   <glyph unicode="&gt;" horiz-adv-x="1024" d="M 101,154 L 101,307 959,674 101,1040 101,1194 1096,776 1096,571 101,154 Z"/>
+   <glyph unicode="&lt;" horiz-adv-x="1024" d="M 101,571 L 101,776 1096,1194 1096,1040 238,674 1096,307 1096,154 101,571 Z"/>
+   <glyph unicode=":" horiz-adv-x="213" d="M 187,875 L 187,1082 382,1082 382,875 187,875 Z M 187,0 L 187,207 382,207 382,0 187,0 Z"/>
+   <glyph unicode=" " horiz-adv-x="564"/>
+  </font>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_2" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="423"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="y" horiz-adv-x="1077" d="M 283,-425 C 216,-425 157,-421 106,-412 L 106,-212 C 141,-217 174,-220 203,-220 243,-220 276,-214 303,-201 329,-188 353,-167 374,-138 395,-109 418,-59 444,11 L 16,1082 313,1082 483,575 C 510,502 543,391 584,241 L 609,336 674,571 834,1082 1128,1082 700,-57 C 643,-196 583,-292 522,-345 460,-398 380,-425 283,-425 Z"/>
+   <glyph unicode="w" horiz-adv-x="1695" d="M 1313,0 L 1016,0 844,660 C 836,690 820,764 797,882 L 745,658 571,0 274,0 -6,1082 258,1082 436,255 450,329 475,446 645,1082 946,1082 1112,446 C 1121,411 1135,348 1153,255 L 1181,387 1337,1082 1597,1082 1313,0 Z"/>
+   <glyph unicode="v" horiz-adv-x="1095" d="M 731,0 L 395,0 8,1082 305,1082 494,477 C 504,444 528,360 565,227 572,254 585,302 606,371 627,440 703,677 836,1082 L 1130,1082 731,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="1007" d="M 408,1082 L 408,475 C 408,285 472,190 600,190 668,190 723,219 765,278 806,336 827,411 827,502 L 827,1082 1108,1082 1108,242 C 1108,150 1111,69 1116,0 L 848,0 C 840,96 836,168 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 368,-20 280,15 219,86 158,156 127,259 127,395 L 127,1082 408,1082 Z"/>
+   <glyph unicode="t" horiz-adv-x="653" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 585,176 616,181 657,190 L 657,16 C 588,-7 509,-18 420,-18 Z"/>
+   <glyph unicode="r" horiz-adv-x="654" d="M 143,0 L 143,828 C 143,887 142,937 141,977 139,1016 137,1051 135,1082 L 403,1082 C 405,1070 408,1034 411,973 414,912 416,871 416,851 L 420,851 C 447,927 472,981 493,1012 514,1043 540,1066 569,1081 598,1096 635,1103 679,1103 715,1103 744,1098 766,1088 L 766,853 C 721,863 681,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+   <glyph unicode="p" horiz-adv-x="1060" d="M 1167,546 C 1167,365 1131,226 1059,128 986,29 884,-20 752,-20 676,-20 610,-3 554,30 497,63 454,110 424,172 L 418,172 C 422,152 424,91 424,-10 L 424,-425 143,-425 143,833 C 143,935 140,1018 135,1082 L 408,1082 C 411,1070 414,1046 417,1011 419,976 420,941 420,906 L 424,906 C 487,1039 603,1105 770,1105 896,1105 994,1057 1063,960 1132,863 1167,725 1167,546 Z M 874,546 C 874,789 800,910 651,910 576,910 519,877 480,812 440,747 420,655 420,538 420,421 440,331 480,268 519,204 576,172 649,172 799,172 874,297 874,546 Z"/>
+   <glyph unicode="o" horiz-adv-x="1112" d="M 1171,542 C 1171,367 1122,229 1025,130 928,30 793,-20 621,-20 452,-20 320,30 224,130 128,230 80,367 80,542 80,716 128,853 224,953 320,1052 454,1102 627,1102 804,1102 939,1054 1032,958 1125,861 1171,723 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 460,909 375,787 375,542 375,421 396,330 438,267 479,204 539,172 618,172 791,172 877,295 877,542 Z"/>
+   <glyph unicode="n" horiz-adv-x="1007" d="M 844,0 L 844,607 C 844,797 780,892 651,892 583,892 528,863 487,805 445,746 424,671 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 883,1103 971,1068 1032,997 1093,926 1124,823 1124,687 L 1124,0 844,0 Z"/>
+   <glyph unicode="l" horiz-adv-x="283" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+   <glyph unicode="j" horiz-adv-x="459" d="M 144,1277 L 144,1484 425,1484 425,1277 144,1277 Z M 138,-425 C 71,-425 15,-422 -32,-416 L -32,-218 19,-222 C 67,-222 100,-211 118,-190 135,-169 144,-126 144,-60 L 144,1082 425,1082 425,-128 C 425,-223 401,-297 353,-348 304,-399 233,-425 138,-425 Z"/>
+   <glyph unicode="i" horiz-adv-x="283" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
+   <glyph unicode="h" horiz-adv-x="989" d="M 420,866 C 458,949 506,1009 563,1046 620,1083 689,1102 768,1102 883,1102 971,1067 1032,996 1093,925 1124,822 1124,686 L 1124,0 844,0 844,606 C 844,796 780,891 651,891 583,891 528,862 487,804 445,745 424,670 424,579 L 424,0 143,0 143,1484 424,1484 424,1079 C 424,1006 421,935 416,866 L 420,866 Z"/>
+   <glyph unicode="f" horiz-adv-x="672" d="M 473,892 L 473,0 193,0 193,892 35,892 35,1082 193,1082 193,1195 C 193,1293 219,1366 271,1413 323,1460 402,1484 508,1484 561,1484 620,1479 686,1468 L 686,1287 C 659,1293 631,1296 604,1296 556,1296 522,1287 503,1268 483,1249 473,1215 473,1167 L 473,1082 686,1082 686,892 473,892 Z"/>
+   <glyph unicode="e" horiz-adv-x="1006" d="M 586,-20 C 423,-20 298,28 211,125 124,221 80,361 80,546 80,725 124,862 213,958 302,1054 427,1102 590,1102 745,1102 864,1051 946,948 1028,845 1069,694 1069,495 L 1069,487 375,487 C 375,382 395,302 434,249 473,195 528,168 600,168 699,168 762,211 788,297 L 1053,274 C 976,78 821,-20 586,-20 Z M 586,925 C 520,925 469,902 434,856 398,810 379,746 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+   <glyph unicode="c" horiz-adv-x="1024" d="M 594,-20 C 430,-20 303,29 214,127 125,224 80,360 80,535 80,714 125,853 215,953 305,1052 433,1102 598,1102 725,1102 831,1070 914,1006 997,942 1050,854 1071,741 L 788,727 C 780,782 760,827 728,860 696,893 651,909 592,909 447,909 375,788 375,546 375,297 449,172 596,172 649,172 694,189 730,223 766,256 788,306 797,373 L 1079,360 C 1069,286 1043,220 1000,162 957,104 900,59 830,28 760,-4 681,-20 594,-20 Z"/>
+   <glyph unicode="b" horiz-adv-x="1060" d="M 1167,545 C 1167,366 1131,228 1060,129 988,30 885,-20 752,-20 675,-20 609,-3 553,30 497,63 454,111 424,174 L 422,174 C 422,151 421,119 418,78 415,37 411,11 408,0 L 135,0 C 140,62 143,144 143,247 L 143,1484 424,1484 424,1070 420,894 424,894 C 487,1033 603,1102 770,1102 898,1102 996,1054 1065,957 1133,860 1167,722 1167,545 Z M 874,545 C 874,668 856,759 820,818 784,877 728,907 653,907 577,907 519,875 480,812 440,748 420,656 420,536 420,421 440,332 479,268 518,204 575,172 651,172 800,172 874,296 874,545 Z"/>
+   <glyph unicode="a" horiz-adv-x="1112" d="M 393,-20 C 288,-20 207,9 148,66 89,123 60,203 60,306 60,418 97,503 170,562 243,621 348,651 487,652 L 720,656 720,711 C 720,782 708,834 683,869 658,903 618,920 562,920 510,920 472,908 448,885 423,861 408,822 402,767 L 109,781 C 127,886 175,966 254,1021 332,1075 439,1102 574,1102 711,1102 816,1068 890,1001 964,934 1001,838 1001,714 L 1001,320 C 1001,259 1008,218 1022,195 1035,172 1058,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 670,51 552,-20 393,-20 Z M 720,501 L 576,499 C 511,496 464,489 437,478 410,466 389,448 375,424 360,400 353,368 353,328 353,277 365,239 389,214 412,189 444,176 483,176 527,176 567,188 604,212 640,236 668,269 689,312 710,354 720,399 720,446 L 720,501 Z"/>
+   <glyph unicode="G" horiz-adv-x="1394" d="M 806,211 C 883,211 957,222 1029,245 1101,267 1157,295 1196,330 L 1196,525 852,525 852,743 1466,743 1466,225 C 1391,148 1294,88 1175,45 1055,2 929,-20 798,-20 569,-20 392,44 269,171 146,298 84,478 84,711 84,943 146,1121 270,1245 394,1368 572,1430 805,1430 1136,1430 1346,1308 1436,1063 L 1164,981 C 1135,1052 1089,1106 1026,1143 963,1180 890,1198 805,1198 666,1198 561,1156 489,1072 417,988 381,868 381,711 381,552 418,429 493,342 567,255 671,211 806,211 Z"/>
+   <glyph unicode="D" horiz-adv-x="1271" d="M 1393,715 C 1393,570 1365,443 1308,335 1251,226 1170,143 1066,86 961,29 842,0 707,0 L 137,0 137,1409 647,1409 C 884,1409 1068,1349 1198,1230 1328,1110 1393,938 1393,715 Z M 1096,715 C 1096,866 1057,982 978,1062 899,1141 787,1181 641,1181 L 432,1181 432,228 682,228 C 809,228 909,272 984,359 1059,446 1096,565 1096,715 Z"/>
+   <glyph unicode=" " horiz-adv-x="564"/>
+  </font>
+ </defs>
+ <defs class="TextShapeIndex">
+  <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+  <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+  </g>
+  <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+  </g>
+  <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+  </g>
+  <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+  </g>
+  <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+  </g>
+  <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+  </g>
+  <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+  </g>
+  <g id="bullet-char-template(61548)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
+  </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+  <g id="id2" class="Master_Slide">
+   <g id="bg-id2" class="Background"/>
+   <g id="bo-id2" class="BackgroundObjects"/>
+  </g>
+ </g>
+ <g class="SlideGroup">
+  <g>
+   <g id="container-id1">
+    <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+     <g class="Page">
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id3">
+        <rect class="BoundingBox" stroke="none" fill="none" x="4074" y="4047" width="4449" height="9658"/>
+        <path fill="rgb(238,238,238)" stroke="none" d="M 4816,4048 C 4445,4048 4075,4418 4075,4789 L 4075,12962 C 4075,13332 4445,13703 4816,13703 L 7780,13703 C 8150,13703 8521,13332 8521,12962 L 8521,4789 C 8521,4418 8150,4048 7780,4048 L 4816,4048 Z M 4075,4048 L 4075,4048 Z M 8521,13703 L 8521,13703 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 4816,4048 C 4445,4048 4075,4418 4075,4789 L 4075,12962 C 4075,13332 4445,13703 4816,13703 L 7780,13703 C 8150,13703 8521,13332 8521,12962 L 8521,4789 C 8521,4418 8150,4048 7780,4048 L 4816,4048 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 4075,4048 L 4075,4048 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 8521,13703 L 8521,13703 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="4710" y="4962"><tspan fill="rgb(0,0,0)" stroke="none">Person&lt;E&gt;</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id4">
+        <rect class="BoundingBox" stroke="none" fill="none" x="5981" y="12366" width="3811" height="539"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 6483,12635 L 9020,12635"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 6513,12684 L 6499,12733 6475,12781 6441,12826 6396,12860 6348,12884 6299,12898 6249,12904 6201,12898 6150,12884 6102,12860 6059,12826 6025,12781 6001,12733 5985,12684 5981,12634 5985,12586 6001,12535 6025,12489 6059,12444 6102,12410 6150,12386 6201,12372 6249,12366 6299,12372 6348,12386 6396,12410 6441,12444 6475,12489 6499,12535 6513,12586 6519,12634 6513,12684 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 9791,12635 L 8984,12366 8984,12904 9791,12635 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id5">
+        <rect class="BoundingBox" stroke="none" fill="none" x="9662" y="11745" width="4957" height="1782"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 12139,11746 C 13543,11746 14616,12131 14616,12635 14616,13139 13543,13524 12139,13524 10735,13524 9663,13139 9663,12635 9663,12131 10735,11746 12139,11746 Z M 9663,11746 L 9663,11746 Z M 14617,13525 L 14617,13525 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 12139,11746 C 13543,11746 14616,12131 14616,12635 14616,13139 13543,13524 12139,13524 10735,13524 9663,13139 9663,12635 9663,12131 10735,11746 12139,11746 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 9663,11746 L 9663,11746 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 14617,13525 L 14617,13525 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10641" y="12856"><tspan fill="rgb(0,0,0)" stroke="none">Age: Short</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id6">
+        <rect class="BoundingBox" stroke="none" fill="none" x="5854" y="9445" width="3811" height="539"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 6356,9714 L 8893,9714"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 6386,9763 L 6372,9812 6348,9860 6314,9905 6269,9939 6221,9963 6172,9977 6122,9983 6074,9977 6023,9963 5975,9939 5932,9905 5898,9860 5874,9812 5858,9763 5854,9713 5858,9665 5874,9614 5898,9568 5932,9523 5975,9489 6023,9465 6074,9451 6122,9445 6172,9451 6221,9465 6269,9489 6314,9523 6348,9568 6372,9614 6386,9665 6392,9713 6386,9763 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 9664,9714 L 8857,9445 8857,9983 9664,9714 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id7">
+        <rect class="BoundingBox" stroke="none" fill="none" x="9635" y="8874" width="5210" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 12240,10526 L 9636,10526 9636,8875 14843,8875 14843,10526 12240,10526 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 12240,10526 L 9636,10526 9636,8875 14843,8875 14843,10526 12240,10526 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10301" y="9921"><tspan fill="rgb(0,0,0)" stroke="none">Name : String</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.TextShape">
+       <g id="id8">
+        <rect class="BoundingBox" stroke="none" fill="none" x="2271" y="1637" width="15114" height="2160"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="706px" font-weight="700"><tspan class="TextPosition" x="2521" y="2401"><tspan fill="rgb(0,0,0)" stroke="none">Durable object with Generic type of value</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id9">
+        <rect class="BoundingBox" stroke="none" fill="none" x="5854" y="6476" width="3811" height="539"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 6356,6745 L 8893,6745"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 6386,6794 L 6372,6843 6348,6891 6314,6936 6269,6970 6221,6994 6172,7008 6122,7014 6074,7008 6023,6994 5975,6970 5932,6936 5898,6891 5874,6843 5858,6794 5854,6744 5858,6696 5874,6645 5898,6599 5932,6554 5975,6520 6023,6496 6074,6482 6122,6476 6172,6482 6221,6496 6269,6520 6314,6554 6348,6599 6372,6645 6386,6696 6392,6744 6386,6794 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 9664,6745 L 8857,6476 8857,7014 9664,6745 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id10">
+        <rect class="BoundingBox" stroke="none" fill="none" x="9635" y="5905" width="5210" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 12240,7557 L 9636,7557 9636,5906 14843,5906 14843,7557 12240,7557 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 12240,7557 L 9636,7557 9636,5906 14843,5906 14843,7557 12240,7557 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10227" y="6952"><tspan fill="rgb(0,0,0)" stroke="none">Element : &lt;E&gt;</tspan></tspan></tspan></text>
+       </g>
+      </g>
+     </g>
+    </g>
+   </g>
+  </g>
+ </g>
+</svg>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/blob/34515c3c/src/img/durablelist.svg
----------------------------------------------------------------------
diff --git a/src/img/durablelist.svg b/src/img/durablelist.svg
new file mode 100755
index 0000000..e4aff3b
--- /dev/null
+++ b/src/img/durablelist.svg
@@ -0,0 +1,227 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="198.12mm" height="165.1mm" viewBox="0 0 19812 16510" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+  <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+   <rect x="0" y="0" width="19812" height="16510"/>
+  </clipPath>
+  <clipPath id="presentation_clip_path_shrink" clipPathUnits="userSpaceOnUse">
+   <rect x="19" y="16" width="19773" height="16477"/>
+  </clipPath>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_1" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="s" horiz-adv-x="901" d="M 950,299 C 950,197 912,118 835,63 758,8 650,-20 511,-20 376,-20 273,2 200,47 127,91 79,160 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 602,117 669,131 712,159 754,187 775,229 775,285 775,328 760,362 731,389 702,416 654,438 589,455 L 460,489 C 357,516 283,542 240,568 196,593 162,624 137,661 112,698 100,743 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 759,862 732,899 689,925 645,950 586,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,783 283,758 299,738 315,718 339,701 370,687 401,673 467,654 568,629 663,605 732,583 774,563 816,542 849,520 874,495 898,470 917,442 930,410 943,377 950,340 950,299 Z"/>
+   <glyph unicode="r" horiz-adv-x="531" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
+   <glyph unicode="o" horiz-adv-x="971" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
+   <glyph unicode="n" horiz-adv-x="901" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
+   <glyph unicode="e" horiz-adv-x="971" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
+   <glyph unicode="d" horiz-adv-x="936" d="M 821,174 C 788,105 744,55 689,25 634,-5 565,-20 484,-20 347,-20 247,26 183,118 118,210 86,349 86,536 86,913 219,1102 484,1102 566,1102 634,1087 689,1057 744,1027 788,979 821,914 L 823,914 821,1035 821,1484 1001,1484 1001,223 C 1001,110 1003,36 1007,0 L 835,0 C 833,11 831,35 829,74 826,113 825,146 825,174 L 821,174 Z M 275,542 C 275,391 295,282 335,217 375,152 440,119 530,119 632,119 706,154 752,225 798,296 821,405 821,554 821,697 798,802 752,869 706,936 633,969 532,969 441,969 376,936 336,869 295,802 275,693 275,542 Z"/>
+   <glyph unicode="P" horiz-adv-x="1094" d="M 1258,985 C 1258,852 1215,746 1128,667 1041,588 922,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 919,1409 1041,1372 1128,1298 1215,1224 1258,1120 1258,985 Z M 1066,983 C 1066,1165 957,1256 738,1256 L 359,1256 359,700 746,700 C 959,700 1066,794 1066,983 Z"/>
+   <glyph unicode="N" horiz-adv-x="1165" d="M 1082,0 L 328,1200 333,1103 338,936 338,0 168,0 168,1409 390,1409 1152,201 C 1144,332 1140,426 1140,485 L 1140,1409 1312,1409 1312,0 1082,0 Z"/>
+   <glyph unicode="E" horiz-adv-x="1112" d="M 168,0 L 168,1409 1237,1409 1237,1253 359,1253 359,801 1177,801 1177,647 359,647 359,156 1278,156 1278,0 168,0 Z"/>
+   <glyph unicode="&gt;" horiz-adv-x="1024" d="M 101,154 L 101,307 959,674 101,1040 101,1194 1096,776 1096,571 101,154 Z"/>
+   <glyph unicode="&lt;" horiz-adv-x="1024" d="M 101,571 L 101,776 1096,1194 1096,1040 238,674 1096,307 1096,154 101,571 Z"/>
+  </font>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_2" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="423"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="y" horiz-adv-x="1077" d="M 283,-425 C 216,-425 157,-421 106,-412 L 106,-212 C 141,-217 174,-220 203,-220 243,-220 276,-214 303,-201 329,-188 353,-167 374,-138 395,-109 418,-59 444,11 L 16,1082 313,1082 483,575 C 510,502 543,391 584,241 L 609,336 674,571 834,1082 1128,1082 700,-57 C 643,-196 583,-292 522,-345 460,-398 380,-425 283,-425 Z"/>
+   <glyph unicode="w" horiz-adv-x="1695" d="M 1313,0 L 1016,0 844,660 C 836,690 820,764 797,882 L 745,658 571,0 274,0 -6,1082 258,1082 436,255 450,329 475,446 645,1082 946,1082 1112,446 C 1121,411 1135,348 1153,255 L 1181,387 1337,1082 1597,1082 1313,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="1007" d="M 408,1082 L 408,475 C 408,285 472,190 600,190 668,190 723,219 765,278 806,336 827,411 827,502 L 827,1082 1108,1082 1108,242 C 1108,150 1111,69 1116,0 L 848,0 C 840,96 836,168 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 368,-20 280,15 219,86 158,156 127,259 127,395 L 127,1082 408,1082 Z"/>
+   <glyph unicode="t" horiz-adv-x="653" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 585,176 616,181 657,190 L 657,16 C 588,-7 509,-18 420,-18 Z"/>
+   <glyph unicode="s" horiz-adv-x="1006" d="M 1055,316 C 1055,211 1012,129 927,70 841,10 722,-20 571,-20 422,-20 309,4 230,51 151,98 98,171 72,270 L 319,307 C 333,256 357,219 392,198 426,177 486,166 571,166 650,166 707,176 743,196 779,216 797,247 797,290 797,325 783,352 754,373 725,393 675,410 606,424 447,455 340,485 285,512 230,539 188,574 159,617 130,660 115,712 115,775 115,878 155,959 235,1017 314,1074 427,1103 573,1103 702,1103 805,1078 884,1028 962,978 1011,906 1030,811 L 781,785 C 773,829 753,862 722,884 691,905 641,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,774 386,749 412,731 437,712 480,697 541,685 626,668 701,650 767,632 832,613 885,591 925,566 964,541 996,508 1020,469 1043,429 1055,378 1055,316 Z"/>
+   <glyph unicode="r" horiz-adv-x="654" d="M 143,0 L 143,828 C 143,887 142,937 141,977 139,1016 137,1051 135,1082 L 403,1082 C 405,1070 408,1034 411,973 414,912 416,871 416,851 L 420,851 C 447,927 472,981 493,1012 514,1043 540,1066 569,1081 598,1096 635,1103 679,1103 715,1103 744,1098 766,1088 L 766,853 C 721,863 681,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+   <glyph unicode="p" horiz-adv-x="1060" d="M 1167,546 C 1167,365 1131,226 1059,128 986,29 884,-20 752,-20 676,-20 610,-3 554,30 497,63 454,110 424,172 L 418,172 C 422,152 424,91 424,-10 L 424,-425 143,-425 143,833 C 143,935 140,1018 135,1082 L 408,1082 C 411,1070 414,1046 417,1011 419,976 420,941 420,906 L 424,906 C 487,1039 603,1105 770,1105 896,1105 994,1057 1063,960 1132,863 1167,725 1167,546 Z M 874,546 C 874,789 800,910 651,910 576,910 519,877 480,812 440,747 420,655 420,538 420,421 440,331 480,268 519,204 576,172 649,172 799,172 874,297 874,546 Z"/>
+   <glyph unicode="o" horiz-adv-x="1112" d="M 1171,542 C 1171,367 1122,229 1025,130 928,30 793,-20 621,-20 452,-20 320,30 224,130 128,230 80,367 80,542 80,716 128,853 224,953 320,1052 454,1102 627,1102 804,1102 939,1054 1032,958 1125,861 1171,723 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 460,909 375,787 375,542 375,421 396,330 438,267 479,204 539,172 618,172 791,172 877,295 877,542 Z"/>
+   <glyph unicode="n" horiz-adv-x="1007" d="M 844,0 L 844,607 C 844,797 780,892 651,892 583,892 528,863 487,805 445,746 424,671 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 883,1103 971,1068 1032,997 1093,926 1124,823 1124,687 L 1124,0 844,0 Z"/>
+   <glyph unicode="l" horiz-adv-x="283" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+   <glyph unicode="k" horiz-adv-x="1007" d="M 834,0 L 545,490 424,406 424,0 143,0 143,1484 424,1484 424,634 810,1082 1112,1082 732,660 1141,0 834,0 Z"/>
+   <glyph unicode="j" horiz-adv-x="459" d="M 144,1277 L 144,1484 425,1484 425,1277 144,1277 Z M 138,-425 C 71,-425 15,-422 -32,-416 L -32,-218 19,-222 C 67,-222 100,-211 118,-190 135,-169 144,-126 144,-60 L 144,1082 425,1082 425,-128 C 425,-223 401,-297 353,-348 304,-399 233,-425 138,-425 Z"/>
+   <glyph unicode="i" horiz-adv-x="283" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
+   <glyph unicode="h" horiz-adv-x="989" d="M 420,866 C 458,949 506,1009 563,1046 620,1083 689,1102 768,1102 883,1102 971,1067 1032,996 1093,925 1124,822 1124,686 L 1124,0 844,0 844,606 C 844,796 780,891 651,891 583,891 528,862 487,804 445,745 424,670 424,579 L 424,0 143,0 143,1484 424,1484 424,1079 C 424,1006 421,935 416,866 L 420,866 Z"/>
+   <glyph unicode="g" horiz-adv-x="1059" d="M 596,-434 C 464,-434 358,-409 278,-358 197,-308 148,-236 129,-143 L 410,-110 C 420,-153 442,-187 475,-212 508,-237 551,-249 604,-249 682,-249 739,-225 775,-177 811,-129 829,-58 829,37 L 829,94 831,201 829,201 C 767,68 651,2 481,2 355,2 257,49 188,144 119,239 84,374 84,550 84,727 120,863 191,959 262,1055 366,1103 502,1103 659,1103 768,1038 829,908 L 834,908 C 834,931 836,963 839,1003 842,1043 845,1069 848,1082 L 1114,1082 C 1110,1010 1108,927 1108,832 L 1108,33 C 1108,-121 1064,-237 977,-316 890,-395 763,-434 596,-434 Z M 831,556 C 831,667 811,754 772,817 732,879 675,910 602,910 452,910 377,790 377,550 377,315 451,197 600,197 675,197 732,228 772,291 811,353 831,441 831,556 Z"/>
+   <glyph unicode="e" horiz-adv-x="1006" d="M 586,-20 C 423,-20 298,28 211,125 124,221 80,361 80,546 80,725 124,862 213,958 302,1054 427,1102 590,1102 745,1102 864,1051 946,948 1028,845 1069,694 1069,495 L 1069,487 375,487 C 375,382 395,302 434,249 473,195 528,168 600,168 699,168 762,211 788,297 L 1053,274 C 976,78 821,-20 586,-20 Z M 586,925 C 520,925 469,902 434,856 398,810 379,746 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+   <glyph unicode="d" horiz-adv-x="1059" d="M 844,0 C 841,10 838,35 835,76 831,116 829,149 829,176 L 825,176 C 764,45 649,-20 479,-20 353,-20 256,29 187,128 118,226 84,363 84,540 84,719 120,858 193,956 265,1053 367,1102 500,1102 577,1102 643,1086 699,1054 754,1022 797,974 827,911 L 829,911 827,1089 827,1484 1108,1484 1108,236 C 1108,169 1111,91 1116,0 L 844,0 Z M 831,547 C 831,664 812,754 773,817 734,880 676,911 600,911 525,911 469,881 432,820 395,759 377,665 377,540 377,295 451,172 598,172 672,172 729,205 770,270 811,335 831,427 831,547 Z"/>
+   <glyph unicode="c" horiz-adv-x="1024" d="M 594,-20 C 430,-20 303,29 214,127 125,224 80,360 80,535 80,714 125,853 215,953 305,1052 433,1102 598,1102 725,1102 831,1070 914,1006 997,942 1050,854 1071,741 L 788,727 C 780,782 760,827 728,860 696,893 651,909 592,909 447,909 375,788 375,546 375,297 449,172 596,172 649,172 694,189 730,223 766,256 788,306 797,373 L 1079,360 C 1069,286 1043,220 1000,162 957,104 900,59 830,28 760,-4 681,-20 594,-20 Z"/>
+   <glyph unicode="b" horiz-adv-x="1060" d="M 1167,545 C 1167,366 1131,228 1060,129 988,30 885,-20 752,-20 675,-20 609,-3 553,30 497,63 454,111 424,174 L 422,174 C 422,151 421,119 418,78 415,37 411,11 408,0 L 135,0 C 140,62 143,144 143,247 L 143,1484 424,1484 424,1070 420,894 424,894 C 487,1033 603,1102 770,1102 898,1102 996,1054 1065,957 1133,860 1167,722 1167,545 Z M 874,545 C 874,668 856,759 820,818 784,877 728,907 653,907 577,907 519,875 480,812 440,748 420,656 420,536 420,421 440,332 479,268 518,204 575,172 651,172 800,172 874,296 874,545 Z"/>
+   <glyph unicode="a" horiz-adv-x="1112" d="M 393,-20 C 288,-20 207,9 148,66 89,123 60,203 60,306 60,418 97,503 170,562 243,621 348,651 487,652 L 720,656 720,711 C 720,782 708,834 683,869 658,903 618,920 562,920 510,920 472,908 448,885 423,861 408,822 402,767 L 109,781 C 127,886 175,966 254,1021 332,1075 439,1102 574,1102 711,1102 816,1068 890,1001 964,934 1001,838 1001,714 L 1001,320 C 1001,259 1008,218 1022,195 1035,172 1058,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 670,51 552,-20 393,-20 Z M 720,501 L 576,499 C 511,496 464,489 437,478 410,466 389,448 375,424 360,400 353,368 353,328 353,277 365,239 389,214 412,189 444,176 483,176 527,176 567,188 604,212 640,236 668,269 689,312 710,354 720,399 720,446 L 720,501 Z"/>
+   <glyph unicode="T" horiz-adv-x="1182" d="M 773,1181 L 773,0 478,0 478,1181 23,1181 23,1409 1229,1409 1229,1181 773,1181 Z"/>
+   <glyph unicode="S" horiz-adv-x="1236" d="M 1286,406 C 1286,268 1235,163 1133,90 1030,17 880,-20 682,-20 501,-20 360,12 257,76 154,140 88,237 59,367 L 344,414 C 363,339 401,285 457,252 513,218 591,201 690,201 896,201 999,264 999,389 999,429 987,462 964,488 940,514 907,536 864,553 821,570 738,591 616,616 511,641 437,661 396,676 355,691 317,708 284,729 251,749 222,773 199,802 176,831 158,864 145,903 132,942 125,986 125,1036 125,1163 173,1261 269,1329 364,1396 503,1430 686,1430 861,1430 992,1403 1080,1348 1167,1293 1224,1203 1249,1077 L 963,1038 C 948,1099 919,1144 874,1175 829,1206 764,1221 680,1221 501,1221 412,1165 412,1053 412,1016 422,986 441,963 460,940 488,920 525,904 562,887 638,867 752,842 887,813 984,787 1043,763 1101,738 1147,710 1181,678 1215,645 1241,607 1259,562 1277,517 1286,465 1286,406 Z"/>
+   <glyph unicode="M" horiz-adv-x="1466" d="M 1307,0 L 1307,854 C 1307,873 1307,893 1308,912 1308,931 1311,1014 1317,1161 1270,982 1235,857 1212,786 L 958,0 748,0 494,786 387,1161 C 395,1006 399,904 399,854 L 399,0 137,0 137,1409 532,1409 784,621 806,545 854,356 917,582 1176,1409 1569,1409 1569,0 1307,0 Z"/>
+   <glyph unicode="D" horiz-adv-x="1271" d="M 1393,715 C 1393,570 1365,443 1308,335 1251,226 1170,143 1066,86 961,29 842,0 707,0 L 137,0 137,1409 647,1409 C 884,1409 1068,1349 1198,1230 1328,1110 1393,938 1393,715 Z M 1096,715 C 1096,866 1057,982 978,1062 899,1141 787,1181 641,1181 L 432,1181 432,228 682,228 C 809,228 909,272 984,359 1059,446 1096,565 1096,715 Z"/>
+   <glyph unicode="," horiz-adv-x="319" d="M 432,66 C 432,-14 424,-85 407,-146 390,-207 362,-264 324,-317 L 139,-317 C 178,-270 210,-218 235,-161 260,-104 272,-51 272,0 L 143,0 143,305 432,305 432,66 Z"/>
+   <glyph unicode=")" horiz-adv-x="601" d="M 2,-425 C 109,-269 186,-116 233,33 280,182 303,347 303,530 303,713 279,881 231,1032 183,1183 107,1333 2,1484 L 283,1484 C 388,1333 464,1182 511,1032 557,882 580,715 580,531 580,346 557,178 511,28 464,-122 388,-273 283,-425 L 2,-425 Z"/>
+   <glyph unicode="(" horiz-adv-x="601" d="M 399,-425 C 294,-274 219,-124 172,26 125,176 102,344 102,531 102,717 125,885 172,1035 219,1184 294,1334 399,1484 L 680,1484 C 575,1332 498,1181 451,1030 403,879 379,713 379,530 379,348 403,182 450,33 497,-117 574,-270 680,-425 L 399,-425 Z"/>
+   <glyph unicode=" " horiz-adv-x="564"/>
+  </font>
+ </defs>
+ <defs class="TextShapeIndex">
+  <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+  <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+  </g>
+  <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+  </g>
+  <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+  </g>
+  <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+  </g>
+  <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+  </g>
+  <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+  </g>
+  <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+  </g>
+  <g id="bullet-char-template(61548)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
+  </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+  <g id="id2" class="Master_Slide">
+   <g id="bg-id2" class="Background"/>
+   <g id="bo-id2" class="BackgroundObjects"/>
+  </g>
+ </g>
+ <g class="SlideGroup">
+  <g>
+   <g id="container-id1">
+    <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+     <g class="Page">
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id3">
+        <rect class="BoundingBox" stroke="none" fill="none" x="2174" y="8619" width="4449" height="5986"/>
+        <path fill="rgb(238,238,238)" stroke="none" d="M 2916,8620 C 2545,8620 2175,8990 2175,9361 L 2175,13862 C 2175,14232 2545,14603 2916,14603 L 5880,14603 C 6250,14603 6621,14232 6621,13862 L 6621,9361 C 6621,8990 6250,8620 5880,8620 L 2916,8620 Z M 2175,8620 L 2175,8620 Z M 6621,14603 L 6621,14603 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 2916,8620 C 2545,8620 2175,8990 2175,9361 L 2175,13862 C 2175,14232 2545,14603 2916,14603 L 5880,14603 C 6250,14603 6621,14232 6621,13862 L 6621,9361 C 6621,8990 6250,8620 5880,8620 L 2916,8620 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 2175,8620 L 2175,8620 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 6621,14603 L 6621,14603 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="2810" y="9534"><tspan fill="rgb(0,0,0)" stroke="none">Person&lt;E&gt;</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.TextShape">
+       <g id="id4">
+        <rect class="BoundingBox" stroke="none" fill="none" x="2271" y="1637" width="15114" height="2160"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="706px" font-weight="700"><tspan class="TextPosition" x="2521" y="2401"><tspan fill="rgb(0,0,0)" stroke="none">Durable singly linked list with durable </tspan></tspan><tspan class="TextPosition" x="2521" y="3188"><tspan fill="rgb(0,0,0)" stroke="none">objects (and Map, Set, Tree)</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id5">
+        <rect class="BoundingBox" stroke="none" fill="none" x="4116" y="10619" width="213" height="2672"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 4222,10725 L 4222,11143"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 4222,11560 L 4222,11978"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 4222,12396 L 4222,12813"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id6">
+        <rect class="BoundingBox" stroke="none" fill="none" x="1325" y="3643" width="6227" height="3201"/>
+        <path fill="rgb(238,238,238)" stroke="none" d="M 1859,3644 C 1592,3644 1326,3910 1326,4177 L 1326,6309 C 1326,6575 1592,6842 1859,6842 L 7017,6842 C 7283,6842 7550,6575 7550,6309 L 7550,4177 C 7550,3910 7283,3644 7017,3644 L 1859,3644 Z M 1326,3644 L 1326,3644 Z M 7550,6842 L 7550,6842 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 1859,3644 C 1592,3644 1326,3910 1326,4177 L 1326,6309 C 1326,6575 1592,6842 1859,6842 L 7017,6842 C 7283,6842 7550,6575 7550,6309 L 7550,4177 C 7550,3910 7283,3644 7017,3644 L 1859,3644 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 1326,3644 L 1326,3644 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 7550,6842 L 7550,6842 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="1722" y="4497"><tspan fill="rgb(0,0,0)" stroke="none">Node&lt;Person&lt;E&gt;&gt;</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id7">
+        <rect class="BoundingBox" stroke="none" fill="none" x="3006" y="5953" width="539" height="2668"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 3275,6455 L 3275,7849"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 3226,6485 L 3177,6471 3129,6447 3084,6413 3050,6368 3026,6320 3012,6271 3006,6221 3012,6173 3026,6122 3050,6074 3084,6031 3129,5997 3177,5973 3226,5957 3276,5953 3324,5957 3375,5973 3421,5997 3466,6031 3500,6074 3524,6122 3538,6173 3544,6221 3538,6271 3524,6320 3500,6368 3466,6413 3421,6447 3375,6471 3324,6485 3276,6491 3226,6485 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 3275,8620 L 3544,7813 3006,7813 3275,8620 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id8">
+        <rect class="BoundingBox" stroke="none" fill="none" x="5433" y="5895" width="3134" height="539"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 5935,6164 L 7795,6164"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 5965,6213 L 5951,6262 5927,6310 5893,6355 5848,6389 5800,6413 5751,6427 5701,6433 5653,6427 5602,6413 5554,6389 5511,6355 5477,6310 5453,6262 5437,6213 5433,6163 5437,6115 5453,6064 5477,6018 5511,5973 5554,5939 5602,5915 5653,5901 5701,5895 5751,5901 5800,5915 5848,5939 5893,5973 5927,6018 5951,6064 5965,6115 5971,6163 5965,6213 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 8566,6164 L 7759,5895 7759,6433 8566,6164 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id9">
+        <rect class="BoundingBox" stroke="none" fill="none" x="16115" y="5974" width="2150" height="247"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 16221,6114 L 16639,6107"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 17056,6099 L 17474,6092"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 17891,6085 L 18158,6080"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id10">
+        <rect class="BoundingBox" stroke="none" fill="none" x="9373" y="8620" width="4449" height="5986"/>
+        <path fill="rgb(238,238,238)" stroke="none" d="M 10115,8621 C 9744,8621 9374,8991 9374,9362 L 9374,13863 C 9374,14233 9744,14604 10115,14604 L 13079,14604 C 13449,14604 13820,14233 13820,13863 L 13820,9362 C 13820,8991 13449,8621 13079,8621 L 10115,8621 Z M 9374,8621 L 9374,8621 Z M 13820,14604 L 13820,14604 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 10115,8621 C 9744,8621 9374,8991 9374,9362 L 9374,13863 C 9374,14233 9744,14604 10115,14604 L 13079,14604 C 13449,14604 13820,14233 13820,13863 L 13820,9362 C 13820,8991 13449,8621 13079,8621 L 10115,8621 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 9374,8621 L 9374,8621 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 13820,14604 L 13820,14604 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10009" y="9535"><tspan fill="rgb(0,0,0)" stroke="none">Person&lt;E&gt;</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id11">
+        <rect class="BoundingBox" stroke="none" fill="none" x="11315" y="10619" width="213" height="2672"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 11421,10726 L 11421,11143"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 11421,11561 L 11421,11979"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 11421,12396 L 11421,12814"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id12">
+        <rect class="BoundingBox" stroke="none" fill="none" x="8524" y="3644" width="6227" height="3201"/>
+        <path fill="rgb(238,238,238)" stroke="none" d="M 9058,3645 C 8791,3645 8525,3911 8525,4178 L 8525,6310 C 8525,6576 8791,6843 9058,6843 L 14216,6843 C 14482,6843 14749,6576 14749,6310 L 14749,4178 C 14749,3911 14482,3645 14216,3645 L 9058,3645 Z M 8525,3645 L 8525,3645 Z M 14749,6843 L 14749,6843 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 9058,3645 C 8791,3645 8525,3911 8525,4178 L 8525,6310 C 8525,6576 8791,6843 9058,6843 L 14216,6843 C 14482,6843 14749,6576 14749,6310 L 14749,4178 C 14749,3911 14482,3645 14216,3645 L 9058,3645 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 8525,3645 L 8525,3645 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 14749,6843 L 14749,6843 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="8921" y="4498"><tspan fill="rgb(0,0,0)" stroke="none">Node&lt;Person&lt;E&gt;&gt;</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id13">
+        <rect class="BoundingBox" stroke="none" fill="none" x="10205" y="5954" width="539" height="2668"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 10474,6456 L 10474,7850"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 10425,6486 L 10376,6472 10328,6448 10283,6414 10249,6369 10225,6321 10211,6272 10205,6222 10211,6174 10225,6123 10249,6075 10283,6032 10328,5998 10376,5974 10425,5958 10475,5954 10523,5958 10574,5974 10620,5998 10665,6032 10699,6075 10723,6123 10737,6174 10743,6222 10737,6272 10723,6321 10699,6369 10665,6414 10620,6448 10574,6472 10523,6486 10475,6492 10425,6486 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 10474,8621 L 10743,7814 10205,7814 10474,8621 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id14">
+        <rect class="BoundingBox" stroke="none" fill="none" x="12632" y="5896" width="3201" height="539"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 13134,6165 L 15061,6165"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 13164,6214 L 13150,6263 13126,6311 13092,6356 13047,6390 12999,6414 12950,6428 12900,6434 12852,6428 12801,6414 12753,6390 12710,6356 12676,6311 12652,6263 12636,6214 12632,6164 12636,6116 12652,6065 12676,6019 12710,5974 12753,5940 12801,5916 12852,5902 12900,5896 12950,5902 12999,5916 13047,5940 13092,5974 13126,6019 13150,6065 13164,6116 13170,6164 13164,6214 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 15832,6165 L 15025,5896 15025,6434 15832,6165 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id15">
+        <rect class="BoundingBox" stroke="none" fill="none" x="15016" y="9149" width="3574" height="272"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 15122,9314 L 15540,9307"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 15957,9299 L 16375,9292"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 16792,9285 L 17210,9277"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 17627,9270 L 18045,9263"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 18463,9255 L 18483,9255"/>
+       </g>
+      </g>
+     </g>
+    </g>
+   </g>
+  </g>
+ </g>
+</svg>
\ No newline at end of file


[7/7] incubator-mnemonic-site git commit: MNEMONIC-315: The links in the middle of home page are not aligned bottom

Posted by ga...@apache.org.
MNEMONIC-315: The links in the middle of home page are not aligned bottom


Project: http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/commit/8b18190d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/tree/8b18190d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/diff/8b18190d

Branch: refs/heads/master
Commit: 8b18190d7ba59fd6a88eeb88219644c31bf21a61
Parents: 34515c3
Author: Wang, Gang(Gary) <ga...@intel.com>
Authored: Thu Jul 27 15:25:34 2017 -0700
Committer: Wang, Gang(Gary) <ga...@intel.com>
Committed: Thu Jul 27 15:25:34 2017 -0700

----------------------------------------------------------------------
 src/css/screen.scss | 32 ++++++++++++++++++++++----------
 src/index.html      | 23 ++++++++++++++++-------
 2 files changed, 38 insertions(+), 17 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/blob/8b18190d/src/css/screen.scss
----------------------------------------------------------------------
diff --git a/src/css/screen.scss b/src/css/screen.scss
index e611049..bd334e1 100644
--- a/src/css/screen.scss
+++ b/src/css/screen.scss
@@ -293,18 +293,30 @@ footer {
   @include animation(secfadein 2s);
 
   color: white;
-  .unit {
-    padding: 10px 0 40px;
-    border: 2px solid white;
-    &:hover {
-        background-color: lighten(steelblue, 5%);
-    }
-    padding-bottom: 100%;
-    margin-bottom: -100%;
-  }
 
   .grid {
-    overflow: hidden;
+    display: table;
+    width: 100%;
+    .row {
+      display: table-row;
+      .tblunit1 {
+        display: table-cell;
+        padding: 10px 0 0px;
+        border-style: solid;
+        border-color: white;
+        border-width: 0px 2px;
+        &:hover {
+            background-color: lighten(steelblue, 5%);
+        }
+      }
+      .tblunit2 {
+        display: table-cell;
+        padding: 10px 0 0px;
+        border-style: solid;
+        border-color: white;
+        border-width: 0px 2px;
+      }
+    }
   }
 
   h2 {

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/blob/8b18190d/src/index.html
----------------------------------------------------------------------
diff --git a/src/index.html b/src/index.html
index ce4e086..bdedc8e 100644
--- a/src/index.html
+++ b/src/index.html
@@ -22,21 +22,30 @@ overview: true
 </section>
 <section class="ingredients">
     <div class="grid">
-        <div class="unit one-third">
+      <div class="row">
+        <div class="tblunit1 one-third">
             <h2>Durable Object Model</h2>
             <p>Persist your linked objects without SerDe.</p>
-            <a href="/docs/domusecases">Use Cases <i class="fa fa-arrow-circle-o-right"></i></a>
         </div>
-        <div class="unit one-third">
+        <div class="tblunit1 one-third">
             <h2>Durable Computing Model</h2>
             <p>Process your linked objects in native code.</p>
-            <a href="/docs/arch">Architecture <i class="fa fa-arrow-circle-o-right"></i></a>
         </div>
-        <div class="unit one-third">
+        <div class="tblunit1 one-third">
             <h2>Durable Memory Service</h2>
             <p>Abstract storage as memory transparently</p>
-            <a href="/docs/devices">Devices <i class="fa fa-arrow-circle-o-right"></i></a>
         </div>
-        <div class="clear"></div>
+      </div>
+      <div class="row">
+          <div class="tblunit2 one-third">
+              <a href="/docs/domusecases">Use Cases <i class="fa fa-arrow-circle-o-right"></i></a>
+          </div>
+          <div class="tblunit2 one-third">
+              <a href="/docs/arch">Architecture <i class="fa fa-arrow-circle-o-right"></i></a>
+          </div>
+          <div class="tblunit2 one-third">
+              <a href="/docs/devices">Devices <i class="fa fa-arrow-circle-o-right"></i></a>
+          </div>
+      </div>
     </div>
 </section>


[4/7] incubator-mnemonic-site git commit: MNEMONIC-312: Illustrate usage cases of Durable Object Model in diagrams

Posted by ga...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/blob/34515c3c/src/img/durableobjectwithbuffer.svg
----------------------------------------------------------------------
diff --git a/src/img/durableobjectwithbuffer.svg b/src/img/durableobjectwithbuffer.svg
new file mode 100755
index 0000000..62838fe
--- /dev/null
+++ b/src/img/durableobjectwithbuffer.svg
@@ -0,0 +1,181 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="198.12mm" height="165.1mm" viewBox="0 0 19812 16510" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+  <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+   <rect x="0" y="0" width="19812" height="16510"/>
+  </clipPath>
+  <clipPath id="presentation_clip_path_shrink" clipPathUnits="userSpaceOnUse">
+   <rect x="19" y="16" width="19773" height="16477"/>
+  </clipPath>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_1" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="901" d="M 314,1082 L 314,396 C 314,325 321,269 335,230 349,191 371,162 402,145 433,128 478,119 537,119 624,119 692,149 742,208 792,267 817,350 817,455 L 817,1082 997,1082 997,231 C 997,105 999,28 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 826,132 825,185 L 822,185 C 781,110 733,58 679,27 624,-4 557,-20 476,-20 357,-20 271,10 216,69 161,128 133,225 133,361 L 133,1082 314,1082 Z"/>
+   <glyph unicode="t" horiz-adv-x="547" d="M 554,8 C 495,-8 434,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 474,127 509,132 554,141 L 554,8 Z"/>
+   <glyph unicode="s" horiz-adv-x="901" d="M 950,299 C 950,197 912,118 835,63 758,8 650,-20 511,-20 376,-20 273,2 200,47 127,91 79,160 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 602,117 669,131 712,159 754,187 775,229 775,285 775,328 760,362 731,389 702,416 654,438 589,455 L 460,489 C 357,516 283,542 240,568 196,593 162,624 137,661 112,698 100,743 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 759,862 732,899 689,925 645,950 586,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,783 283,758 299,738 315,718 339,701 370,687 401,673 467,654 568,629 663,605 732,583 774,563 816,542 849,520 874,495 898,470 917,442 930,410 943,377 950,340 950,299 Z"/>
+   <glyph unicode="r" horiz-adv-x="531" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
+   <glyph unicode="o" horiz-adv-x="971" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
+   <glyph unicode="n" horiz-adv-x="901" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
+   <glyph unicode="m" horiz-adv-x="1483" d="M 768,0 L 768,686 C 768,791 754,863 725,903 696,943 645,963 570,963 493,963 433,934 388,875 343,816 321,734 321,627 L 321,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 356,974 400,1027 450,1057 500,1087 561,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 967,970 1013,1022 1066,1054 1119,1086 1183,1102 1258,1102 1367,1102 1447,1072 1497,1013 1546,954 1571,856 1571,721 L 1571,0 1393,0 1393,686 C 1393,791 1379,863 1350,903 1321,943 1270,963 1195,963 1116,963 1055,934 1012,876 968,817 946,734 946,627 L 946,0 768,0 Z"/>
+   <glyph unicode="l" horiz-adv-x="178" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
+   <glyph unicode="i" horiz-adv-x="196" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
+   <glyph unicode="f" horiz-adv-x="565" d="M 361,951 L 361,0 181,0 181,951 29,951 29,1082 181,1082 181,1204 C 181,1303 203,1374 246,1417 289,1460 356,1482 445,1482 495,1482 537,1478 572,1470 L 572,1333 C 542,1338 515,1341 492,1341 446,1341 413,1329 392,1306 371,1283 361,1240 361,1179 L 361,1082 572,1082 572,951 361,951 Z"/>
+   <glyph unicode="e" horiz-adv-x="971" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
+   <glyph unicode="c" horiz-adv-x="883" d="M 275,546 C 275,402 298,295 343,226 388,157 457,122 548,122 612,122 666,139 709,174 752,209 778,262 788,334 L 970,322 C 956,218 912,135 837,73 762,11 668,-20 553,-20 402,-20 286,28 207,124 127,219 87,359 87,542 87,724 127,863 207,959 287,1054 402,1102 551,1102 662,1102 754,1073 827,1016 900,959 945,880 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 451,961 382,929 339,866 296,803 275,696 275,546 Z"/>
+   <glyph unicode="b" horiz-adv-x="936" d="M 1053,546 C 1053,169 920,-20 655,-20 573,-20 505,-5 451,25 396,54 352,102 318,168 L 316,168 C 316,147 315,116 312,74 309,31 307,7 306,0 L 132,0 C 136,36 138,110 138,223 L 138,1484 318,1484 318,1061 C 318,1018 317,967 314,908 L 318,908 C 351,977 396,1027 451,1057 506,1087 574,1102 655,1102 792,1102 892,1056 957,964 1021,872 1053,733 1053,546 Z M 864,540 C 864,691 844,800 804,865 764,930 699,963 609,963 508,963 434,928 388,859 341,790 318,680 318,529 318,387 341,282 386,215 431,147 505,113 607,113 698,113 763,147 804,214 844,281 864,389 864,540 Z"/>
+   <glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,66 114,123 87,202 87,302 87,414 124,500 198,560 271,620 390,652 554,656 L 797,660 797,719 C 797,807 778,870 741,908 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,190 723,231 753,284 782,336 797,390 797,445 L 797,534 600,530 C 515,529 451,520 408,504 364,488 330,463 307,430 284,397 272,353 272,299 272,240 288,195 320,163 351,131 396,115 455,115 Z"/>
+   <glyph unicode="P" horiz-adv-x="1094" d="M 1258,985 C 1258,852 1215,746 1128,667 1041,588 922,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 919,1409 1041,1372 1128,1298 1215,1224 1258,1120 1258,985 Z M 1066,983 C 1066,1165 957,1256 738,1256 L 359,1256 359,700 746,700 C 959,700 1066,794 1066,983 Z"/>
+   <glyph unicode="E" horiz-adv-x="1112" d="M 168,0 L 168,1409 1237,1409 1237,1253 359,1253 359,801 1177,801 1177,647 359,647 359,156 1278,156 1278,0 168,0 Z"/>
+   <glyph unicode="D" horiz-adv-x="1235" d="M 1381,719 C 1381,574 1353,447 1296,338 1239,229 1159,145 1055,87 951,29 831,0 695,0 L 168,0 168,1409 634,1409 C 873,1409 1057,1349 1187,1230 1316,1110 1381,940 1381,719 Z M 1189,719 C 1189,894 1141,1027 1046,1119 950,1210 811,1256 630,1256 L 359,1256 359,153 673,153 C 776,153 867,176 946,221 1024,266 1084,332 1126,417 1168,502 1189,603 1189,719 Z"/>
+   <glyph unicode="B" horiz-adv-x="1094" d="M 1258,397 C 1258,272 1212,174 1121,105 1030,35 903,0 740,0 L 168,0 168,1409 680,1409 C 1011,1409 1176,1295 1176,1067 1176,984 1153,914 1106,857 1059,800 993,762 908,743 1020,730 1106,692 1167,631 1228,569 1258,491 1258,397 Z M 984,1044 C 984,1120 958,1174 906,1207 854,1240 779,1256 680,1256 L 359,1256 359,810 680,810 C 782,810 858,829 909,868 959,906 984,965 984,1044 Z M 1065,412 C 1065,578 948,661 715,661 L 359,661 359,153 730,153 C 847,153 932,175 985,218 1038,261 1065,326 1065,412 Z"/>
+   <glyph unicode="&gt;" horiz-adv-x="1024" d="M 101,154 L 101,307 959,674 101,1040 101,1194 1096,776 1096,571 101,154 Z"/>
+   <glyph unicode="&lt;" horiz-adv-x="1024" d="M 101,571 L 101,776 1096,1194 1096,1040 238,674 1096,307 1096,154 101,571 Z"/>
+   <glyph unicode=":" horiz-adv-x="213" d="M 187,875 L 187,1082 382,1082 382,875 187,875 Z M 187,0 L 187,207 382,207 382,0 187,0 Z"/>
+   <glyph unicode=" " horiz-adv-x="564"/>
+  </font>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_2" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="423"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="w" horiz-adv-x="1695" d="M 1313,0 L 1016,0 844,660 C 836,690 820,764 797,882 L 745,658 571,0 274,0 -6,1082 258,1082 436,255 450,329 475,446 645,1082 946,1082 1112,446 C 1121,411 1135,348 1153,255 L 1181,387 1337,1082 1597,1082 1313,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="1007" d="M 408,1082 L 408,475 C 408,285 472,190 600,190 668,190 723,219 765,278 806,336 827,411 827,502 L 827,1082 1108,1082 1108,242 C 1108,150 1111,69 1116,0 L 848,0 C 840,96 836,168 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 368,-20 280,15 219,86 158,156 127,259 127,395 L 127,1082 408,1082 Z"/>
+   <glyph unicode="t" horiz-adv-x="653" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 585,176 616,181 657,190 L 657,16 C 588,-7 509,-18 420,-18 Z"/>
+   <glyph unicode="r" horiz-adv-x="654" d="M 143,0 L 143,828 C 143,887 142,937 141,977 139,1016 137,1051 135,1082 L 403,1082 C 405,1070 408,1034 411,973 414,912 416,871 416,851 L 420,851 C 447,927 472,981 493,1012 514,1043 540,1066 569,1081 598,1096 635,1103 679,1103 715,1103 744,1098 766,1088 L 766,853 C 721,863 681,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+   <glyph unicode="o" horiz-adv-x="1112" d="M 1171,542 C 1171,367 1122,229 1025,130 928,30 793,-20 621,-20 452,-20 320,30 224,130 128,230 80,367 80,542 80,716 128,853 224,953 320,1052 454,1102 627,1102 804,1102 939,1054 1032,958 1125,861 1171,723 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 460,909 375,787 375,542 375,421 396,330 438,267 479,204 539,172 618,172 791,172 877,295 877,542 Z"/>
+   <glyph unicode="l" horiz-adv-x="283" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+   <glyph unicode="j" horiz-adv-x="459" d="M 144,1277 L 144,1484 425,1484 425,1277 144,1277 Z M 138,-425 C 71,-425 15,-422 -32,-416 L -32,-218 19,-222 C 67,-222 100,-211 118,-190 135,-169 144,-126 144,-60 L 144,1082 425,1082 425,-128 C 425,-223 401,-297 353,-348 304,-399 233,-425 138,-425 Z"/>
+   <glyph unicode="i" horiz-adv-x="283" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
+   <glyph unicode="h" horiz-adv-x="989" d="M 420,866 C 458,949 506,1009 563,1046 620,1083 689,1102 768,1102 883,1102 971,1067 1032,996 1093,925 1124,822 1124,686 L 1124,0 844,0 844,606 C 844,796 780,891 651,891 583,891 528,862 487,804 445,745 424,670 424,579 L 424,0 143,0 143,1484 424,1484 424,1079 C 424,1006 421,935 416,866 L 420,866 Z"/>
+   <glyph unicode="f" horiz-adv-x="672" d="M 473,892 L 473,0 193,0 193,892 35,892 35,1082 193,1082 193,1195 C 193,1293 219,1366 271,1413 323,1460 402,1484 508,1484 561,1484 620,1479 686,1468 L 686,1287 C 659,1293 631,1296 604,1296 556,1296 522,1287 503,1268 483,1249 473,1215 473,1167 L 473,1082 686,1082 686,892 473,892 Z"/>
+   <glyph unicode="e" horiz-adv-x="1006" d="M 586,-20 C 423,-20 298,28 211,125 124,221 80,361 80,546 80,725 124,862 213,958 302,1054 427,1102 590,1102 745,1102 864,1051 946,948 1028,845 1069,694 1069,495 L 1069,487 375,487 C 375,382 395,302 434,249 473,195 528,168 600,168 699,168 762,211 788,297 L 1053,274 C 976,78 821,-20 586,-20 Z M 586,925 C 520,925 469,902 434,856 398,810 379,746 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+   <glyph unicode="c" horiz-adv-x="1024" d="M 594,-20 C 430,-20 303,29 214,127 125,224 80,360 80,535 80,714 125,853 215,953 305,1052 433,1102 598,1102 725,1102 831,1070 914,1006 997,942 1050,854 1071,741 L 788,727 C 780,782 760,827 728,860 696,893 651,909 592,909 447,909 375,788 375,546 375,297 449,172 596,172 649,172 694,189 730,223 766,256 788,306 797,373 L 1079,360 C 1069,286 1043,220 1000,162 957,104 900,59 830,28 760,-4 681,-20 594,-20 Z"/>
+   <glyph unicode="b" horiz-adv-x="1060" d="M 1167,545 C 1167,366 1131,228 1060,129 988,30 885,-20 752,-20 675,-20 609,-3 553,30 497,63 454,111 424,174 L 422,174 C 422,151 421,119 418,78 415,37 411,11 408,0 L 135,0 C 140,62 143,144 143,247 L 143,1484 424,1484 424,1070 420,894 424,894 C 487,1033 603,1102 770,1102 898,1102 996,1054 1065,957 1133,860 1167,722 1167,545 Z M 874,545 C 874,668 856,759 820,818 784,877 728,907 653,907 577,907 519,875 480,812 440,748 420,656 420,536 420,421 440,332 479,268 518,204 575,172 651,172 800,172 874,296 874,545 Z"/>
+   <glyph unicode="a" horiz-adv-x="1112" d="M 393,-20 C 288,-20 207,9 148,66 89,123 60,203 60,306 60,418 97,503 170,562 243,621 348,651 487,652 L 720,656 720,711 C 720,782 708,834 683,869 658,903 618,920 562,920 510,920 472,908 448,885 423,861 408,822 402,767 L 109,781 C 127,886 175,966 254,1021 332,1075 439,1102 574,1102 711,1102 816,1068 890,1001 964,934 1001,838 1001,714 L 1001,320 C 1001,259 1008,218 1022,195 1035,172 1058,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 670,51 552,-20 393,-20 Z M 720,501 L 576,499 C 511,496 464,489 437,478 410,466 389,448 375,424 360,400 353,368 353,328 353,277 365,239 389,214 412,189 444,176 483,176 527,176 567,188 604,212 640,236 668,269 689,312 710,354 720,399 720,446 L 720,501 Z"/>
+   <glyph unicode="D" horiz-adv-x="1271" d="M 1393,715 C 1393,570 1365,443 1308,335 1251,226 1170,143 1066,86 961,29 842,0 707,0 L 137,0 137,1409 647,1409 C 884,1409 1068,1349 1198,1230 1328,1110 1393,938 1393,715 Z M 1096,715 C 1096,866 1057,982 978,1062 899,1141 787,1181 641,1181 L 432,1181 432,228 682,228 C 809,228 909,272 984,359 1059,446 1096,565 1096,715 Z"/>
+   <glyph unicode="B" horiz-adv-x="1271" d="M 1386,402 C 1386,274 1338,175 1242,105 1146,35 1013,0 842,0 L 137,0 137,1409 782,1409 C 954,1409 1084,1379 1173,1320 1261,1260 1305,1172 1305,1055 1305,975 1283,908 1239,853 1194,798 1127,760 1036,741 1150,728 1237,692 1297,634 1356,575 1386,498 1386,402 Z M 1008,1015 C 1008,1078 988,1123 948,1150 907,1177 847,1190 768,1190 L 432,1190 432,841 770,841 C 853,841 914,856 952,885 989,914 1008,957 1008,1015 Z M 1090,425 C 1090,557 995,623 806,623 L 432,623 432,219 817,219 C 912,219 981,236 1025,271 1068,305 1090,356 1090,425 Z"/>
+   <glyph unicode=" " horiz-adv-x="564"/>
+  </font>
+ </defs>
+ <defs class="TextShapeIndex">
+  <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+  <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+  </g>
+  <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+  </g>
+  <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+  </g>
+  <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+  </g>
+  <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+  </g>
+  <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+  </g>
+  <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+  </g>
+  <g id="bullet-char-template(61548)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
+  </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+  <g id="id2" class="Master_Slide">
+   <g id="bg-id2" class="Background"/>
+   <g id="bo-id2" class="BackgroundObjects"/>
+  </g>
+ </g>
+ <g class="SlideGroup">
+  <g>
+   <g id="container-id1">
+    <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+     <g class="Page">
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id3">
+        <rect class="BoundingBox" stroke="none" fill="none" x="4074" y="4057" width="4449" height="10547"/>
+        <path fill="rgb(238,238,238)" stroke="none" d="M 4816,4058 C 4445,4058 4075,4428 4075,4798 L 4075,13861 C 4075,14231 4445,14602 4816,14602 L 7780,14602 C 8150,14602 8521,14231 8521,13861 L 8521,4798 C 8521,4428 8150,4058 7780,4058 L 4816,4058 Z M 4075,4058 L 4075,4058 Z M 8521,14602 L 8521,14602 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 4816,4058 C 4445,4058 4075,4428 4075,4798 L 4075,13861 C 4075,14231 4445,14602 4816,14602 L 7780,14602 C 8150,14602 8521,14231 8521,13861 L 8521,4798 C 8521,4428 8150,4058 7780,4058 L 4816,4058 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 4075,4058 L 4075,4058 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 8521,14602 L 8521,14602 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="4710" y="4972"><tspan fill="rgb(0,0,0)" stroke="none">Person&lt;E&gt;</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.TextShape">
+       <g id="id4">
+        <rect class="BoundingBox" stroke="none" fill="none" x="2271" y="1637" width="15114" height="2160"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="706px" font-weight="700"><tspan class="TextPosition" x="2521" y="2401"><tspan fill="rgb(0,0,0)" stroke="none">Durable object with Durable Buffer</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id5">
+        <rect class="BoundingBox" stroke="none" fill="none" x="5854" y="12176" width="3811" height="539"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 6356,12445 L 8893,12445"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 6386,12494 L 6372,12543 6348,12591 6314,12636 6269,12670 6221,12694 6172,12708 6122,12714 6074,12708 6023,12694 5975,12670 5932,12636 5898,12591 5874,12543 5858,12494 5854,12444 5858,12396 5874,12345 5898,12299 5932,12254 5975,12220 6023,12196 6074,12182 6122,12176 6172,12182 6221,12196 6269,12220 6314,12254 6348,12299 6372,12345 6386,12396 6392,12444 6386,12494 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 9664,12445 L 8857,12176 8857,12714 9664,12445 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id6">
+        <rect class="BoundingBox" stroke="none" fill="none" x="9635" y="11605" width="5210" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 12240,13257 L 9636,13257 9636,11606 14843,11606 14843,13257 12240,13257 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 12240,13257 L 9636,13257 9636,11606 14843,11606 14843,13257 12240,13257 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10227" y="12652"><tspan fill="rgb(0,0,0)" stroke="none">Element : &lt;E&gt;</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id7">
+        <rect class="BoundingBox" stroke="none" fill="none" x="5826" y="7008" width="3811" height="539"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 6328,7277 L 8865,7277"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 6358,7326 L 6344,7375 6320,7423 6286,7468 6241,7502 6193,7526 6144,7540 6094,7546 6046,7540 5995,7526 5947,7502 5904,7468 5870,7423 5846,7375 5830,7326 5826,7276 5830,7228 5846,7177 5870,7131 5904,7086 5947,7052 5995,7028 6046,7014 6094,7008 6144,7014 6193,7028 6241,7052 6286,7086 6320,7131 6344,7177 6358,7228 6364,7276 6358,7326 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 9636,7277 L 8829,7008 8829,7546 9636,7277 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id8">
+        <rect class="BoundingBox" stroke="none" fill="none" x="9608" y="6437" width="7777" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 13496,8089 L 9609,8089 9609,6438 17383,6438 17383,8089 13496,8089 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 13496,8089 L 9609,8089 9609,6438 17383,6438 17383,8089 13496,8089 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10296" y="7484"><tspan fill="rgb(0,0,0)" stroke="none">Picture : DurableBuffer</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id9">
+        <rect class="BoundingBox" stroke="none" fill="none" x="11816" y="8387" width="213" height="3007"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 11922,8493 L 11922,8911"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 11922,9328 L 11922,9746"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 11922,10164 L 11922,10581"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 11922,10999 L 11922,11287"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id10">
+        <rect class="BoundingBox" stroke="none" fill="none" x="6016" y="8387" width="213" height="3007"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 6122,8493 L 6122,8911"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 6122,9328 L 6122,9746"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 6122,10164 L 6122,10581"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 6122,10999 L 6122,11287"/>
+       </g>
+      </g>
+     </g>
+    </g>
+   </g>
+  </g>
+ </g>
+</svg>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/blob/34515c3c/src/img/durableobjectwithchunk.svg
----------------------------------------------------------------------
diff --git a/src/img/durableobjectwithchunk.svg b/src/img/durableobjectwithchunk.svg
new file mode 100755
index 0000000..d1bb35d
--- /dev/null
+++ b/src/img/durableobjectwithchunk.svg
@@ -0,0 +1,197 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="198.12mm" height="165.1mm" viewBox="0 0 19812 16510" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+  <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+   <rect x="0" y="0" width="19812" height="16510"/>
+  </clipPath>
+  <clipPath id="presentation_clip_path_shrink" clipPathUnits="userSpaceOnUse">
+   <rect x="19" y="16" width="19773" height="16477"/>
+  </clipPath>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_1" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="901" d="M 314,1082 L 314,396 C 314,325 321,269 335,230 349,191 371,162 402,145 433,128 478,119 537,119 624,119 692,149 742,208 792,267 817,350 817,455 L 817,1082 997,1082 997,231 C 997,105 999,28 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 826,132 825,185 L 822,185 C 781,110 733,58 679,27 624,-4 557,-20 476,-20 357,-20 271,10 216,69 161,128 133,225 133,361 L 133,1082 314,1082 Z"/>
+   <glyph unicode="t" horiz-adv-x="547" d="M 554,8 C 495,-8 434,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 474,127 509,132 554,141 L 554,8 Z"/>
+   <glyph unicode="s" horiz-adv-x="901" d="M 950,299 C 950,197 912,118 835,63 758,8 650,-20 511,-20 376,-20 273,2 200,47 127,91 79,160 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 602,117 669,131 712,159 754,187 775,229 775,285 775,328 760,362 731,389 702,416 654,438 589,455 L 460,489 C 357,516 283,542 240,568 196,593 162,624 137,661 112,698 100,743 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 759,862 732,899 689,925 645,950 586,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,783 283,758 299,738 315,718 339,701 370,687 401,673 467,654 568,629 663,605 732,583 774,563 816,542 849,520 874,495 898,470 917,442 930,410 943,377 950,340 950,299 Z"/>
+   <glyph unicode="r" horiz-adv-x="531" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
+   <glyph unicode="o" horiz-adv-x="971" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
+   <glyph unicode="n" horiz-adv-x="901" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
+   <glyph unicode="m" horiz-adv-x="1483" d="M 768,0 L 768,686 C 768,791 754,863 725,903 696,943 645,963 570,963 493,963 433,934 388,875 343,816 321,734 321,627 L 321,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 356,974 400,1027 450,1057 500,1087 561,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 967,970 1013,1022 1066,1054 1119,1086 1183,1102 1258,1102 1367,1102 1447,1072 1497,1013 1546,954 1571,856 1571,721 L 1571,0 1393,0 1393,686 C 1393,791 1379,863 1350,903 1321,943 1270,963 1195,963 1116,963 1055,934 1012,876 968,817 946,734 946,627 L 946,0 768,0 Z"/>
+   <glyph unicode="l" horiz-adv-x="178" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
+   <glyph unicode="k" horiz-adv-x="919" d="M 816,0 L 450,494 318,385 318,0 138,0 138,1484 318,1484 318,557 793,1082 1004,1082 565,617 1027,0 816,0 Z"/>
+   <glyph unicode="i" horiz-adv-x="196" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
+   <glyph unicode="h" horiz-adv-x="883" d="M 317,897 C 356,968 402,1020 457,1053 511,1086 580,1102 663,1102 780,1102 867,1073 923,1015 978,956 1006,858 1006,721 L 1006,0 825,0 825,686 C 825,762 818,819 804,856 790,893 767,920 735,937 703,954 659,963 602,963 517,963 450,934 399,875 348,816 322,737 322,638 L 322,0 142,0 142,1484 322,1484 322,1098 C 322,1057 321,1015 319,972 316,929 315,904 314,897 L 317,897 Z"/>
+   <glyph unicode="f" horiz-adv-x="565" d="M 361,951 L 361,0 181,0 181,951 29,951 29,1082 181,1082 181,1204 C 181,1303 203,1374 246,1417 289,1460 356,1482 445,1482 495,1482 537,1478 572,1470 L 572,1333 C 542,1338 515,1341 492,1341 446,1341 413,1329 392,1306 371,1283 361,1240 361,1179 L 361,1082 572,1082 572,951 361,951 Z"/>
+   <glyph unicode="e" horiz-adv-x="971" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
+   <glyph unicode="c" horiz-adv-x="883" d="M 275,546 C 275,402 298,295 343,226 388,157 457,122 548,122 612,122 666,139 709,174 752,209 778,262 788,334 L 970,322 C 956,218 912,135 837,73 762,11 668,-20 553,-20 402,-20 286,28 207,124 127,219 87,359 87,542 87,724 127,863 207,959 287,1054 402,1102 551,1102 662,1102 754,1073 827,1016 900,959 945,880 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 451,961 382,929 339,866 296,803 275,696 275,546 Z"/>
+   <glyph unicode="b" horiz-adv-x="936" d="M 1053,546 C 1053,169 920,-20 655,-20 573,-20 505,-5 451,25 396,54 352,102 318,168 L 316,168 C 316,147 315,116 312,74 309,31 307,7 306,0 L 132,0 C 136,36 138,110 138,223 L 138,1484 318,1484 318,1061 C 318,1018 317,967 314,908 L 318,908 C 351,977 396,1027 451,1057 506,1087 574,1102 655,1102 792,1102 892,1056 957,964 1021,872 1053,733 1053,546 Z M 864,540 C 864,691 844,800 804,865 764,930 699,963 609,963 508,963 434,928 388,859 341,790 318,680 318,529 318,387 341,282 386,215 431,147 505,113 607,113 698,113 763,147 804,214 844,281 864,389 864,540 Z"/>
+   <glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,66 114,123 87,202 87,302 87,414 124,500 198,560 271,620 390,652 554,656 L 797,660 797,719 C 797,807 778,870 741,908 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,190 723,231 753,284 782,336 797,390 797,445 L 797,534 600,530 C 515,529 451,520 408,504 364,488 330,463 307,430 284,397 272,353 272,299 272,240 288,195 320,163 351,131 396,115 455,115 Z"/>
+   <glyph unicode="P" horiz-adv-x="1094" d="M 1258,985 C 1258,852 1215,746 1128,667 1041,588 922,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 919,1409 1041,1372 1128,1298 1215,1224 1258,1120 1258,985 Z M 1066,983 C 1066,1165 957,1256 738,1256 L 359,1256 359,700 746,700 C 959,700 1066,794 1066,983 Z"/>
+   <glyph unicode="E" horiz-adv-x="1112" d="M 168,0 L 168,1409 1237,1409 1237,1253 359,1253 359,801 1177,801 1177,647 359,647 359,156 1278,156 1278,0 168,0 Z"/>
+   <glyph unicode="D" horiz-adv-x="1235" d="M 1381,719 C 1381,574 1353,447 1296,338 1239,229 1159,145 1055,87 951,29 831,0 695,0 L 168,0 168,1409 634,1409 C 873,1409 1057,1349 1187,1230 1316,1110 1381,940 1381,719 Z M 1189,719 C 1189,894 1141,1027 1046,1119 950,1210 811,1256 630,1256 L 359,1256 359,153 673,153 C 776,153 867,176 946,221 1024,266 1084,332 1126,417 1168,502 1189,603 1189,719 Z"/>
+   <glyph unicode="C" horiz-adv-x="1306" d="M 792,1274 C 636,1274 515,1224 428,1124 341,1023 298,886 298,711 298,538 343,400 434,295 524,190 646,137 800,137 997,137 1146,235 1245,430 L 1401,352 C 1343,231 1262,138 1157,75 1052,12 930,-20 791,-20 649,-20 526,10 423,69 319,128 240,212 186,322 131,431 104,561 104,711 104,936 165,1112 286,1239 407,1366 575,1430 790,1430 940,1430 1065,1401 1166,1342 1267,1283 1341,1196 1388,1081 L 1207,1021 C 1174,1103 1122,1166 1050,1209 977,1252 891,1274 792,1274 Z"/>
+   <glyph unicode="B" horiz-adv-x="1094" d="M 1258,397 C 1258,272 1212,174 1121,105 1030,35 903,0 740,0 L 168,0 168,1409 680,1409 C 1011,1409 1176,1295 1176,1067 1176,984 1153,914 1106,857 1059,800 993,762 908,743 1020,730 1106,692 1167,631 1228,569 1258,491 1258,397 Z M 984,1044 C 984,1120 958,1174 906,1207 854,1240 779,1256 680,1256 L 359,1256 359,810 680,810 C 782,810 858,829 909,868 959,906 984,965 984,1044 Z M 1065,412 C 1065,578 948,661 715,661 L 359,661 359,153 730,153 C 847,153 932,175 985,218 1038,261 1065,326 1065,412 Z"/>
+   <glyph unicode="&gt;" horiz-adv-x="1024" d="M 101,154 L 101,307 959,674 101,1040 101,1194 1096,776 1096,571 101,154 Z"/>
+   <glyph unicode="&lt;" horiz-adv-x="1024" d="M 101,571 L 101,776 1096,1194 1096,1040 238,674 1096,307 1096,154 101,571 Z"/>
+   <glyph unicode=":" horiz-adv-x="213" d="M 187,875 L 187,1082 382,1082 382,875 187,875 Z M 187,0 L 187,207 382,207 382,0 187,0 Z"/>
+   <glyph unicode=" " horiz-adv-x="564"/>
+  </font>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_2" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="423"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="w" horiz-adv-x="1695" d="M 1313,0 L 1016,0 844,660 C 836,690 820,764 797,882 L 745,658 571,0 274,0 -6,1082 258,1082 436,255 450,329 475,446 645,1082 946,1082 1112,446 C 1121,411 1135,348 1153,255 L 1181,387 1337,1082 1597,1082 1313,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="1007" d="M 408,1082 L 408,475 C 408,285 472,190 600,190 668,190 723,219 765,278 806,336 827,411 827,502 L 827,1082 1108,1082 1108,242 C 1108,150 1111,69 1116,0 L 848,0 C 840,96 836,168 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 368,-20 280,15 219,86 158,156 127,259 127,395 L 127,1082 408,1082 Z"/>
+   <glyph unicode="t" horiz-adv-x="653" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 585,176 616,181 657,190 L 657,16 C 588,-7 509,-18 420,-18 Z"/>
+   <glyph unicode="r" horiz-adv-x="654" d="M 143,0 L 143,828 C 143,887 142,937 141,977 139,1016 137,1051 135,1082 L 403,1082 C 405,1070 408,1034 411,973 414,912 416,871 416,851 L 420,851 C 447,927 472,981 493,1012 514,1043 540,1066 569,1081 598,1096 635,1103 679,1103 715,1103 744,1098 766,1088 L 766,853 C 721,863 681,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+   <glyph unicode="o" horiz-adv-x="1112" d="M 1171,542 C 1171,367 1122,229 1025,130 928,30 793,-20 621,-20 452,-20 320,30 224,130 128,230 80,367 80,542 80,716 128,853 224,953 320,1052 454,1102 627,1102 804,1102 939,1054 1032,958 1125,861 1171,723 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 460,909 375,787 375,542 375,421 396,330 438,267 479,204 539,172 618,172 791,172 877,295 877,542 Z"/>
+   <glyph unicode="n" horiz-adv-x="1007" d="M 844,0 L 844,607 C 844,797 780,892 651,892 583,892 528,863 487,805 445,746 424,671 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 883,1103 971,1068 1032,997 1093,926 1124,823 1124,687 L 1124,0 844,0 Z"/>
+   <glyph unicode="l" horiz-adv-x="283" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+   <glyph unicode="k" horiz-adv-x="1007" d="M 834,0 L 545,490 424,406 424,0 143,0 143,1484 424,1484 424,634 810,1082 1112,1082 732,660 1141,0 834,0 Z"/>
+   <glyph unicode="j" horiz-adv-x="459" d="M 144,1277 L 144,1484 425,1484 425,1277 144,1277 Z M 138,-425 C 71,-425 15,-422 -32,-416 L -32,-218 19,-222 C 67,-222 100,-211 118,-190 135,-169 144,-126 144,-60 L 144,1082 425,1082 425,-128 C 425,-223 401,-297 353,-348 304,-399 233,-425 138,-425 Z"/>
+   <glyph unicode="i" horiz-adv-x="283" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
+   <glyph unicode="h" horiz-adv-x="989" d="M 420,866 C 458,949 506,1009 563,1046 620,1083 689,1102 768,1102 883,1102 971,1067 1032,996 1093,925 1124,822 1124,686 L 1124,0 844,0 844,606 C 844,796 780,891 651,891 583,891 528,862 487,804 445,745 424,670 424,579 L 424,0 143,0 143,1484 424,1484 424,1079 C 424,1006 421,935 416,866 L 420,866 Z"/>
+   <glyph unicode="e" horiz-adv-x="1006" d="M 586,-20 C 423,-20 298,28 211,125 124,221 80,361 80,546 80,725 124,862 213,958 302,1054 427,1102 590,1102 745,1102 864,1051 946,948 1028,845 1069,694 1069,495 L 1069,487 375,487 C 375,382 395,302 434,249 473,195 528,168 600,168 699,168 762,211 788,297 L 1053,274 C 976,78 821,-20 586,-20 Z M 586,925 C 520,925 469,902 434,856 398,810 379,746 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+   <glyph unicode="c" horiz-adv-x="1024" d="M 594,-20 C 430,-20 303,29 214,127 125,224 80,360 80,535 80,714 125,853 215,953 305,1052 433,1102 598,1102 725,1102 831,1070 914,1006 997,942 1050,854 1071,741 L 788,727 C 780,782 760,827 728,860 696,893 651,909 592,909 447,909 375,788 375,546 375,297 449,172 596,172 649,172 694,189 730,223 766,256 788,306 797,373 L 1079,360 C 1069,286 1043,220 1000,162 957,104 900,59 830,28 760,-4 681,-20 594,-20 Z"/>
+   <glyph unicode="b" horiz-adv-x="1060" d="M 1167,545 C 1167,366 1131,228 1060,129 988,30 885,-20 752,-20 675,-20 609,-3 553,30 497,63 454,111 424,174 L 422,174 C 422,151 421,119 418,78 415,37 411,11 408,0 L 135,0 C 140,62 143,144 143,247 L 143,1484 424,1484 424,1070 420,894 424,894 C 487,1033 603,1102 770,1102 898,1102 996,1054 1065,957 1133,860 1167,722 1167,545 Z M 874,545 C 874,668 856,759 820,818 784,877 728,907 653,907 577,907 519,875 480,812 440,748 420,656 420,536 420,421 440,332 479,268 518,204 575,172 651,172 800,172 874,296 874,545 Z"/>
+   <glyph unicode="a" horiz-adv-x="1112" d="M 393,-20 C 288,-20 207,9 148,66 89,123 60,203 60,306 60,418 97,503 170,562 243,621 348,651 487,652 L 720,656 720,711 C 720,782 708,834 683,869 658,903 618,920 562,920 510,920 472,908 448,885 423,861 408,822 402,767 L 109,781 C 127,886 175,966 254,1021 332,1075 439,1102 574,1102 711,1102 816,1068 890,1001 964,934 1001,838 1001,714 L 1001,320 C 1001,259 1008,218 1022,195 1035,172 1058,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 670,51 552,-20 393,-20 Z M 720,501 L 576,499 C 511,496 464,489 437,478 410,466 389,448 375,424 360,400 353,368 353,328 353,277 365,239 389,214 412,189 444,176 483,176 527,176 567,188 604,212 640,236 668,269 689,312 710,354 720,399 720,446 L 720,501 Z"/>
+   <glyph unicode="D" horiz-adv-x="1271" d="M 1393,715 C 1393,570 1365,443 1308,335 1251,226 1170,143 1066,86 961,29 842,0 707,0 L 137,0 137,1409 647,1409 C 884,1409 1068,1349 1198,1230 1328,1110 1393,938 1393,715 Z M 1096,715 C 1096,866 1057,982 978,1062 899,1141 787,1181 641,1181 L 432,1181 432,228 682,228 C 809,228 909,272 984,359 1059,446 1096,565 1096,715 Z"/>
+   <glyph unicode="C" horiz-adv-x="1359" d="M 795,212 C 973,212 1097,301 1166,480 L 1423,383 C 1368,247 1287,146 1180,80 1073,13 944,-20 795,-20 568,-20 393,44 270,173 146,301 84,480 84,711 84,942 144,1120 263,1244 382,1368 555,1430 782,1430 947,1430 1082,1397 1186,1331 1290,1264 1363,1167 1405,1038 L 1145,967 C 1123,1038 1080,1094 1016,1136 951,1177 875,1198 788,1198 655,1198 554,1157 485,1074 416,991 381,870 381,711 381,549 417,425 488,340 559,255 661,212 795,212 Z"/>
+   <glyph unicode=" " horiz-adv-x="564"/>
+  </font>
+ </defs>
+ <defs class="TextShapeIndex">
+  <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+  <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+  </g>
+  <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+  </g>
+  <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+  </g>
+  <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+  </g>
+  <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+  </g>
+  <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+  </g>
+  <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+  </g>
+  <g id="bullet-char-template(61548)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
+  </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+  <g id="id2" class="Master_Slide">
+   <g id="bg-id2" class="Background"/>
+   <g id="bo-id2" class="BackgroundObjects"/>
+  </g>
+ </g>
+ <g class="SlideGroup">
+  <g>
+   <g id="container-id1">
+    <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+     <g class="Page">
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id3">
+        <rect class="BoundingBox" stroke="none" fill="none" x="4074" y="4057" width="4449" height="10547"/>
+        <path fill="rgb(238,238,238)" stroke="none" d="M 4816,4058 C 4445,4058 4075,4428 4075,4798 L 4075,13861 C 4075,14231 4445,14602 4816,14602 L 7780,14602 C 8150,14602 8521,14231 8521,13861 L 8521,4798 C 8521,4428 8150,4058 7780,4058 L 4816,4058 Z M 4075,4058 L 4075,4058 Z M 8521,14602 L 8521,14602 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 4816,4058 C 4445,4058 4075,4428 4075,4798 L 4075,13861 C 4075,14231 4445,14602 4816,14602 L 7780,14602 C 8150,14602 8521,14231 8521,13861 L 8521,4798 C 8521,4428 8150,4058 7780,4058 L 4816,4058 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 4075,4058 L 4075,4058 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 8521,14602 L 8521,14602 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="4710" y="4972"><tspan fill="rgb(0,0,0)" stroke="none">Person&lt;E&gt;</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.TextShape">
+       <g id="id4">
+        <rect class="BoundingBox" stroke="none" fill="none" x="2271" y="1637" width="15114" height="2160"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="706px" font-weight="700"><tspan class="TextPosition" x="2521" y="2401"><tspan fill="rgb(0,0,0)" stroke="none">Durable object with Durable Chunk</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id5">
+        <rect class="BoundingBox" stroke="none" fill="none" x="5854" y="12176" width="3811" height="539"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 6356,12445 L 8893,12445"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 6386,12494 L 6372,12543 6348,12591 6314,12636 6269,12670 6221,12694 6172,12708 6122,12714 6074,12708 6023,12694 5975,12670 5932,12636 5898,12591 5874,12543 5858,12494 5854,12444 5858,12396 5874,12345 5898,12299 5932,12254 5975,12220 6023,12196 6074,12182 6122,12176 6172,12182 6221,12196 6269,12220 6314,12254 6348,12299 6372,12345 6386,12396 6392,12444 6386,12494 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 9664,12445 L 8857,12176 8857,12714 9664,12445 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id6">
+        <rect class="BoundingBox" stroke="none" fill="none" x="9635" y="11605" width="5210" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 12240,13257 L 9636,13257 9636,11606 14843,11606 14843,13257 12240,13257 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 12240,13257 L 9636,13257 9636,11606 14843,11606 14843,13257 12240,13257 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10227" y="12652"><tspan fill="rgb(0,0,0)" stroke="none">Element : &lt;E&gt;</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id7">
+        <rect class="BoundingBox" stroke="none" fill="none" x="5826" y="8708" width="3811" height="539"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 6328,8977 L 8865,8977"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 6358,9026 L 6344,9075 6320,9123 6286,9168 6241,9202 6193,9226 6144,9240 6094,9246 6046,9240 5995,9226 5947,9202 5904,9168 5870,9123 5846,9075 5830,9026 5826,8976 5830,8928 5846,8877 5870,8831 5904,8786 5947,8752 5995,8728 6046,8714 6094,8708 6144,8714 6193,8728 6241,8752 6286,8786 6320,8831 6344,8877 6358,8928 6364,8976 6358,9026 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 9636,8977 L 8829,8708 8829,9246 9636,8977 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id8">
+        <rect class="BoundingBox" stroke="none" fill="none" x="9608" y="8137" width="7777" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 13496,9789 L 9609,9789 9609,8138 17383,8138 17383,9789 13496,9789 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 13496,9789 L 9609,9789 9609,8138 17383,8138 17383,9789 13496,9789 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10296" y="9184"><tspan fill="rgb(0,0,0)" stroke="none">Picture : DurableBuffer</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id9">
+        <rect class="BoundingBox" stroke="none" fill="none" x="11816" y="10038" width="213" height="1356"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 11922,10144 L 11922,10562"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 11922,10979 L 11922,11287"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id10">
+        <rect class="BoundingBox" stroke="none" fill="none" x="6016" y="10038" width="213" height="1356"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 6122,10144 L 6122,10562"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 6122,10979 L 6122,11287"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id11">
+        <rect class="BoundingBox" stroke="none" fill="none" x="5827" y="6308" width="3811" height="539"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 6329,6577 L 8866,6577"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 6359,6626 L 6345,6675 6321,6723 6287,6768 6242,6802 6194,6826 6145,6840 6095,6846 6047,6840 5996,6826 5948,6802 5905,6768 5871,6723 5847,6675 5831,6626 5827,6576 5831,6528 5847,6477 5871,6431 5905,6386 5948,6352 5996,6328 6047,6314 6095,6308 6145,6314 6194,6328 6242,6352 6287,6386 6321,6431 6345,6477 6359,6528 6365,6576 6359,6626 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 9637,6577 L 8830,6308 8830,6846 9637,6577 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id12">
+        <rect class="BoundingBox" stroke="none" fill="none" x="9609" y="5737" width="8665" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 13941,7389 L 9610,7389 9610,5738 18272,5738 18272,7389 13941,7389 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 13941,7389 L 9610,7389 9610,5738 18272,5738 18272,7389 13941,7389 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10104" y="6784"><tspan fill="rgb(0,0,0)" stroke="none">Preference : DurableChunk</tspan></tspan></tspan></text>
+       </g>
+      </g>
+     </g>
+    </g>
+   </g>
+  </g>
+ </g>
+</svg>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/blob/34515c3c/src/img/durableobjectwithobjects.svg
----------------------------------------------------------------------
diff --git a/src/img/durableobjectwithobjects.svg b/src/img/durableobjectwithobjects.svg
new file mode 100755
index 0000000..84564f1
--- /dev/null
+++ b/src/img/durableobjectwithobjects.svg
@@ -0,0 +1,199 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="198.12mm" height="165.1mm" viewBox="0 0 19812 16510" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+  <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+   <rect x="0" y="0" width="19812" height="16510"/>
+  </clipPath>
+  <clipPath id="presentation_clip_path_shrink" clipPathUnits="userSpaceOnUse">
+   <rect x="19" y="16" width="19773" height="16477"/>
+  </clipPath>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_1" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="901" d="M 314,1082 L 314,396 C 314,325 321,269 335,230 349,191 371,162 402,145 433,128 478,119 537,119 624,119 692,149 742,208 792,267 817,350 817,455 L 817,1082 997,1082 997,231 C 997,105 999,28 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 826,132 825,185 L 822,185 C 781,110 733,58 679,27 624,-4 557,-20 476,-20 357,-20 271,10 216,69 161,128 133,225 133,361 L 133,1082 314,1082 Z"/>
+   <glyph unicode="t" horiz-adv-x="547" d="M 554,8 C 495,-8 434,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 474,127 509,132 554,141 L 554,8 Z"/>
+   <glyph unicode="s" horiz-adv-x="901" d="M 950,299 C 950,197 912,118 835,63 758,8 650,-20 511,-20 376,-20 273,2 200,47 127,91 79,160 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 602,117 669,131 712,159 754,187 775,229 775,285 775,328 760,362 731,389 702,416 654,438 589,455 L 460,489 C 357,516 283,542 240,568 196,593 162,624 137,661 112,698 100,743 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 759,862 732,899 689,925 645,950 586,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,783 283,758 299,738 315,718 339,701 370,687 401,673 467,654 568,629 663,605 732,583 774,563 816,542 849,520 874,495 898,470 917,442 930,410 943,377 950,340 950,299 Z"/>
+   <glyph unicode="r" horiz-adv-x="531" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
+   <glyph unicode="o" horiz-adv-x="971" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
+   <glyph unicode="n" horiz-adv-x="901" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
+   <glyph unicode="l" horiz-adv-x="178" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
+   <glyph unicode="i" horiz-adv-x="196" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
+   <glyph unicode="h" horiz-adv-x="883" d="M 317,897 C 356,968 402,1020 457,1053 511,1086 580,1102 663,1102 780,1102 867,1073 923,1015 978,956 1006,858 1006,721 L 1006,0 825,0 825,686 C 825,762 818,819 804,856 790,893 767,920 735,937 703,954 659,963 602,963 517,963 450,934 399,875 348,816 322,737 322,638 L 322,0 142,0 142,1484 322,1484 322,1098 C 322,1057 321,1015 319,972 316,929 315,904 314,897 L 317,897 Z"/>
+   <glyph unicode="f" horiz-adv-x="565" d="M 361,951 L 361,0 181,0 181,951 29,951 29,1082 181,1082 181,1204 C 181,1303 203,1374 246,1417 289,1460 356,1482 445,1482 495,1482 537,1478 572,1470 L 572,1333 C 542,1338 515,1341 492,1341 446,1341 413,1329 392,1306 371,1283 361,1240 361,1179 L 361,1082 572,1082 572,951 361,951 Z"/>
+   <glyph unicode="e" horiz-adv-x="971" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
+   <glyph unicode="c" horiz-adv-x="883" d="M 275,546 C 275,402 298,295 343,226 388,157 457,122 548,122 612,122 666,139 709,174 752,209 778,262 788,334 L 970,322 C 956,218 912,135 837,73 762,11 668,-20 553,-20 402,-20 286,28 207,124 127,219 87,359 87,542 87,724 127,863 207,959 287,1054 402,1102 551,1102 662,1102 754,1073 827,1016 900,959 945,880 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 451,961 382,929 339,866 296,803 275,696 275,546 Z"/>
+   <glyph unicode="b" horiz-adv-x="936" d="M 1053,546 C 1053,169 920,-20 655,-20 573,-20 505,-5 451,25 396,54 352,102 318,168 L 316,168 C 316,147 315,116 312,74 309,31 307,7 306,0 L 132,0 C 136,36 138,110 138,223 L 138,1484 318,1484 318,1061 C 318,1018 317,967 314,908 L 318,908 C 351,977 396,1027 451,1057 506,1087 574,1102 655,1102 792,1102 892,1056 957,964 1021,872 1053,733 1053,546 Z M 864,540 C 864,691 844,800 804,865 764,930 699,963 609,963 508,963 434,928 388,859 341,790 318,680 318,529 318,387 341,282 386,215 431,147 505,113 607,113 698,113 763,147 804,214 844,281 864,389 864,540 Z"/>
+   <glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,66 114,123 87,202 87,302 87,414 124,500 198,560 271,620 390,652 554,656 L 797,660 797,719 C 797,807 778,870 741,908 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,190 723,231 753,284 782,336 797,390 797,445 L 797,534 600,530 C 515,529 451,520 408,504 364,488 330,463 307,430 284,397 272,353 272,299 272,240 288,195 320,163 351,131 396,115 455,115 Z"/>
+   <glyph unicode="P" horiz-adv-x="1094" d="M 1258,985 C 1258,852 1215,746 1128,667 1041,588 922,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 919,1409 1041,1372 1128,1298 1215,1224 1258,1120 1258,985 Z M 1066,983 C 1066,1165 957,1256 738,1256 L 359,1256 359,700 746,700 C 959,700 1066,794 1066,983 Z"/>
+   <glyph unicode="M" horiz-adv-x="1359" d="M 1366,0 L 1366,940 C 1366,1044 1369,1144 1375,1240 1342,1121 1313,1027 1287,960 L 923,0 789,0 420,960 364,1130 331,1240 334,1129 338,940 338,0 168,0 168,1409 419,1409 794,432 C 807,393 820,351 833,306 845,261 853,228 857,208 862,235 874,275 891,330 908,384 919,418 925,432 L 1293,1409 1538,1409 1538,0 1366,0 Z"/>
+   <glyph unicode="F" horiz-adv-x="1024" d="M 359,1253 L 359,729 1145,729 1145,571 359,571 359,0 168,0 168,1409 1169,1409 1169,1253 359,1253 Z"/>
+   <glyph unicode="E" horiz-adv-x="1112" d="M 168,0 L 168,1409 1237,1409 1237,1253 359,1253 359,801 1177,801 1177,647 359,647 359,156 1278,156 1278,0 168,0 Z"/>
+   <glyph unicode="D" horiz-adv-x="1235" d="M 1381,719 C 1381,574 1353,447 1296,338 1239,229 1159,145 1055,87 951,29 831,0 695,0 L 168,0 168,1409 634,1409 C 873,1409 1057,1349 1187,1230 1316,1110 1381,940 1381,719 Z M 1189,719 C 1189,894 1141,1027 1046,1119 950,1210 811,1256 630,1256 L 359,1256 359,153 673,153 C 776,153 867,176 946,221 1024,266 1084,332 1126,417 1168,502 1189,603 1189,719 Z"/>
+   <glyph unicode="B" horiz-adv-x="1094" d="M 1258,397 C 1258,272 1212,174 1121,105 1030,35 903,0 740,0 L 168,0 168,1409 680,1409 C 1011,1409 1176,1295 1176,1067 1176,984 1153,914 1106,857 1059,800 993,762 908,743 1020,730 1106,692 1167,631 1228,569 1258,491 1258,397 Z M 984,1044 C 984,1120 958,1174 906,1207 854,1240 779,1256 680,1256 L 359,1256 359,810 680,810 C 782,810 858,829 909,868 959,906 984,965 984,1044 Z M 1065,412 C 1065,578 948,661 715,661 L 359,661 359,153 730,153 C 847,153 932,175 985,218 1038,261 1065,326 1065,412 Z"/>
+   <glyph unicode="&gt;" horiz-adv-x="1024" d="M 101,154 L 101,307 959,674 101,1040 101,1194 1096,776 1096,571 101,154 Z"/>
+   <glyph unicode="&lt;" horiz-adv-x="1024" d="M 101,571 L 101,776 1096,1194 1096,1040 238,674 1096,307 1096,154 101,571 Z"/>
+   <glyph unicode=":" horiz-adv-x="213" d="M 187,875 L 187,1082 382,1082 382,875 187,875 Z M 187,0 L 187,207 382,207 382,0 187,0 Z"/>
+   <glyph unicode=" " horiz-adv-x="564"/>
+  </font>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_2" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="423"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="w" horiz-adv-x="1695" d="M 1313,0 L 1016,0 844,660 C 836,690 820,764 797,882 L 745,658 571,0 274,0 -6,1082 258,1082 436,255 450,329 475,446 645,1082 946,1082 1112,446 C 1121,411 1135,348 1153,255 L 1181,387 1337,1082 1597,1082 1313,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="1007" d="M 408,1082 L 408,475 C 408,285 472,190 600,190 668,190 723,219 765,278 806,336 827,411 827,502 L 827,1082 1108,1082 1108,242 C 1108,150 1111,69 1116,0 L 848,0 C 840,96 836,168 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 368,-20 280,15 219,86 158,156 127,259 127,395 L 127,1082 408,1082 Z"/>
+   <glyph unicode="t" horiz-adv-x="653" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 585,176 616,181 657,190 L 657,16 C 588,-7 509,-18 420,-18 Z"/>
+   <glyph unicode="s" horiz-adv-x="1006" d="M 1055,316 C 1055,211 1012,129 927,70 841,10 722,-20 571,-20 422,-20 309,4 230,51 151,98 98,171 72,270 L 319,307 C 333,256 357,219 392,198 426,177 486,166 571,166 650,166 707,176 743,196 779,216 797,247 797,290 797,325 783,352 754,373 725,393 675,410 606,424 447,455 340,485 285,512 230,539 188,574 159,617 130,660 115,712 115,775 115,878 155,959 235,1017 314,1074 427,1103 573,1103 702,1103 805,1078 884,1028 962,978 1011,906 1030,811 L 781,785 C 773,829 753,862 722,884 691,905 641,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,774 386,749 412,731 437,712 480,697 541,685 626,668 701,650 767,632 832,613 885,591 925,566 964,541 996,508 1020,469 1043,429 1055,378 1055,316 Z"/>
+   <glyph unicode="r" horiz-adv-x="654" d="M 143,0 L 143,828 C 143,887 142,937 141,977 139,1016 137,1051 135,1082 L 403,1082 C 405,1070 408,1034 411,973 414,912 416,871 416,851 L 420,851 C 447,927 472,981 493,1012 514,1043 540,1066 569,1081 598,1096 635,1103 679,1103 715,1103 744,1098 766,1088 L 766,853 C 721,863 681,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+   <glyph unicode="o" horiz-adv-x="1112" d="M 1171,542 C 1171,367 1122,229 1025,130 928,30 793,-20 621,-20 452,-20 320,30 224,130 128,230 80,367 80,542 80,716 128,853 224,953 320,1052 454,1102 627,1102 804,1102 939,1054 1032,958 1125,861 1171,723 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 460,909 375,787 375,542 375,421 396,330 438,267 479,204 539,172 618,172 791,172 877,295 877,542 Z"/>
+   <glyph unicode="l" horiz-adv-x="283" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+   <glyph unicode="j" horiz-adv-x="459" d="M 144,1277 L 144,1484 425,1484 425,1277 144,1277 Z M 138,-425 C 71,-425 15,-422 -32,-416 L -32,-218 19,-222 C 67,-222 100,-211 118,-190 135,-169 144,-126 144,-60 L 144,1082 425,1082 425,-128 C 425,-223 401,-297 353,-348 304,-399 233,-425 138,-425 Z"/>
+   <glyph unicode="i" horiz-adv-x="283" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
+   <glyph unicode="h" horiz-adv-x="989" d="M 420,866 C 458,949 506,1009 563,1046 620,1083 689,1102 768,1102 883,1102 971,1067 1032,996 1093,925 1124,822 1124,686 L 1124,0 844,0 844,606 C 844,796 780,891 651,891 583,891 528,862 487,804 445,745 424,670 424,579 L 424,0 143,0 143,1484 424,1484 424,1079 C 424,1006 421,935 416,866 L 420,866 Z"/>
+   <glyph unicode="e" horiz-adv-x="1006" d="M 586,-20 C 423,-20 298,28 211,125 124,221 80,361 80,546 80,725 124,862 213,958 302,1054 427,1102 590,1102 745,1102 864,1051 946,948 1028,845 1069,694 1069,495 L 1069,487 375,487 C 375,382 395,302 434,249 473,195 528,168 600,168 699,168 762,211 788,297 L 1053,274 C 976,78 821,-20 586,-20 Z M 586,925 C 520,925 469,902 434,856 398,810 379,746 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+   <glyph unicode="d" horiz-adv-x="1059" d="M 844,0 C 841,10 838,35 835,76 831,116 829,149 829,176 L 825,176 C 764,45 649,-20 479,-20 353,-20 256,29 187,128 118,226 84,363 84,540 84,719 120,858 193,956 265,1053 367,1102 500,1102 577,1102 643,1086 699,1054 754,1022 797,974 827,911 L 829,911 827,1089 827,1484 1108,1484 1108,236 C 1108,169 1111,91 1116,0 L 844,0 Z M 831,547 C 831,664 812,754 773,817 734,880 676,911 600,911 525,911 469,881 432,820 395,759 377,665 377,540 377,295 451,172 598,172 672,172 729,205 770,270 811,335 831,427 831,547 Z"/>
+   <glyph unicode="c" horiz-adv-x="1024" d="M 594,-20 C 430,-20 303,29 214,127 125,224 80,360 80,535 80,714 125,853 215,953 305,1052 433,1102 598,1102 725,1102 831,1070 914,1006 997,942 1050,854 1071,741 L 788,727 C 780,782 760,827 728,860 696,893 651,909 592,909 447,909 375,788 375,546 375,297 449,172 596,172 649,172 694,189 730,223 766,256 788,306 797,373 L 1079,360 C 1069,286 1043,220 1000,162 957,104 900,59 830,28 760,-4 681,-20 594,-20 Z"/>
+   <glyph unicode="b" horiz-adv-x="1060" d="M 1167,545 C 1167,366 1131,228 1060,129 988,30 885,-20 752,-20 675,-20 609,-3 553,30 497,63 454,111 424,174 L 422,174 C 422,151 421,119 418,78 415,37 411,11 408,0 L 135,0 C 140,62 143,144 143,247 L 143,1484 424,1484 424,1070 420,894 424,894 C 487,1033 603,1102 770,1102 898,1102 996,1054 1065,957 1133,860 1167,722 1167,545 Z M 874,545 C 874,668 856,759 820,818 784,877 728,907 653,907 577,907 519,875 480,812 440,748 420,656 420,536 420,421 440,332 479,268 518,204 575,172 651,172 800,172 874,296 874,545 Z"/>
+   <glyph unicode="a" horiz-adv-x="1112" d="M 393,-20 C 288,-20 207,9 148,66 89,123 60,203 60,306 60,418 97,503 170,562 243,621 348,651 487,652 L 720,656 720,711 C 720,782 708,834 683,869 658,903 618,920 562,920 510,920 472,908 448,885 423,861 408,822 402,767 L 109,781 C 127,886 175,966 254,1021 332,1075 439,1102 574,1102 711,1102 816,1068 890,1001 964,934 1001,838 1001,714 L 1001,320 C 1001,259 1008,218 1022,195 1035,172 1058,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 670,51 552,-20 393,-20 Z M 720,501 L 576,499 C 511,496 464,489 437,478 410,466 389,448 375,424 360,400 353,368 353,328 353,277 365,239 389,214 412,189 444,176 483,176 527,176 567,188 604,212 640,236 668,269 689,312 710,354 720,399 720,446 L 720,501 Z"/>
+   <glyph unicode="D" horiz-adv-x="1271" d="M 1393,715 C 1393,570 1365,443 1308,335 1251,226 1170,143 1066,86 961,29 842,0 707,0 L 137,0 137,1409 647,1409 C 884,1409 1068,1349 1198,1230 1328,1110 1393,938 1393,715 Z M 1096,715 C 1096,866 1057,982 978,1062 899,1141 787,1181 641,1181 L 432,1181 432,228 682,228 C 809,228 909,272 984,359 1059,446 1096,565 1096,715 Z"/>
+   <glyph unicode=" " horiz-adv-x="564"/>
+  </font>
+ </defs>
+ <defs class="TextShapeIndex">
+  <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+  <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+  </g>
+  <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+  </g>
+  <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+  </g>
+  <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+  </g>
+  <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+  </g>
+  <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+  </g>
+  <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+  </g>
+  <g id="bullet-char-template(61548)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
+  </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+  <g id="id2" class="Master_Slide">
+   <g id="bg-id2" class="Background"/>
+   <g id="bo-id2" class="BackgroundObjects"/>
+  </g>
+ </g>
+ <g class="SlideGroup">
+  <g>
+   <g id="container-id1">
+    <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+     <g class="Page">
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id3">
+        <rect class="BoundingBox" stroke="none" fill="none" x="4074" y="4057" width="4449" height="10547"/>
+        <path fill="rgb(238,238,238)" stroke="none" d="M 4816,4058 C 4445,4058 4075,4428 4075,4798 L 4075,13861 C 4075,14231 4445,14602 4816,14602 L 7780,14602 C 8150,14602 8521,14231 8521,13861 L 8521,4798 C 8521,4428 8150,4058 7780,4058 L 4816,4058 Z M 4075,4058 L 4075,4058 Z M 8521,14602 L 8521,14602 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 4816,4058 C 4445,4058 4075,4428 4075,4798 L 4075,13861 C 4075,14231 4445,14602 4816,14602 L 7780,14602 C 8150,14602 8521,14231 8521,13861 L 8521,4798 C 8521,4428 8150,4058 7780,4058 L 4816,4058 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 4075,4058 L 4075,4058 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 8521,14602 L 8521,14602 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="4710" y="4972"><tspan fill="rgb(0,0,0)" stroke="none">Person&lt;E&gt;</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.TextShape">
+       <g id="id4">
+        <rect class="BoundingBox" stroke="none" fill="none" x="2271" y="1637" width="15114" height="2160"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="706px" font-weight="700"><tspan class="TextPosition" x="2521" y="2401"><tspan fill="rgb(0,0,0)" stroke="none">Durable object with other durable objects</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id5">
+        <rect class="BoundingBox" stroke="none" fill="none" x="5826" y="12608" width="3811" height="539"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 6328,12877 L 8865,12877"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 6358,12926 L 6344,12975 6320,13023 6286,13068 6241,13102 6193,13126 6144,13140 6094,13146 6046,13140 5995,13126 5947,13102 5904,13068 5870,13023 5846,12975 5830,12926 5826,12876 5830,12828 5846,12777 5870,12731 5904,12686 5947,12652 5995,12628 6046,12614 6094,12608 6144,12614 6193,12628 6241,12652 6286,12686 6320,12731 6344,12777 6358,12828 6364,12876 6358,12926 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 9636,12877 L 8829,12608 8829,13146 9636,12877 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id6">
+        <rect class="BoundingBox" stroke="none" fill="none" x="9608" y="12037" width="7777" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 13496,13689 L 9609,13689 9609,12038 17383,12038 17383,13689 13496,13689 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 13496,13689 L 9609,13689 9609,12038 17383,12038 17383,13689 13496,13689 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10296" y="13084"><tspan fill="rgb(0,0,0)" stroke="none">Picture : DurableBuffer</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id7">
+        <rect class="BoundingBox" stroke="none" fill="none" x="11816" y="10238" width="213" height="1356"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 11922,10344 L 11922,10762"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 11922,11179 L 11922,11487"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id8">
+        <rect class="BoundingBox" stroke="none" fill="none" x="6016" y="10238" width="213" height="1356"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 6122,10344 L 6122,10762"/>
+        <path fill="none" stroke="rgb(0,0,0)" stroke-width="212" stroke-linejoin="round" d="M 6122,11179 L 6122,11487"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id9">
+        <rect class="BoundingBox" stroke="none" fill="none" x="5827" y="6308" width="3811" height="539"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 6329,6577 L 8866,6577"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 6359,6626 L 6345,6675 6321,6723 6287,6768 6242,6802 6194,6826 6145,6840 6095,6846 6047,6840 5996,6826 5948,6802 5905,6768 5871,6723 5847,6675 5831,6626 5827,6576 5831,6528 5847,6477 5871,6431 5905,6386 5948,6352 5996,6328 6047,6314 6095,6308 6145,6314 6194,6328 6242,6352 6287,6386 6321,6431 6345,6477 6359,6528 6365,6576 6359,6626 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 9637,6577 L 8830,6308 8830,6846 9637,6577 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id10">
+        <rect class="BoundingBox" stroke="none" fill="none" x="5828" y="8708" width="3811" height="539"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 6330,8977 L 8867,8977"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 6360,9026 L 6346,9075 6322,9123 6288,9168 6243,9202 6195,9226 6146,9240 6096,9246 6048,9240 5997,9226 5949,9202 5906,9168 5872,9123 5848,9075 5832,9026 5828,8976 5832,8928 5848,8877 5872,8831 5906,8786 5949,8752 5997,8728 6048,8714 6096,8708 6146,8714 6195,8728 6243,8752 6288,8786 6322,8831 6346,8877 6360,8928 6366,8976 6360,9026 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 9638,8977 L 8831,8708 8831,9246 9638,8977 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id11">
+        <rect class="BoundingBox" stroke="none" fill="none" x="9585" y="5725" width="8767" height="1782"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 9882,5726 C 9734,5726 9586,5874 9586,6022 L 9586,7208 C 9586,7356 9734,7505 9882,7505 L 18053,7505 C 18201,7505 18350,7356 18350,7208 L 18350,6022 C 18350,5874 18201,5726 18053,5726 L 9882,5726 Z M 9586,5726 L 9586,5726 Z M 18350,7505 L 18350,7505 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 9882,5726 C 9734,5726 9586,5874 9586,6022 L 9586,7208 C 9586,7356 9734,7505 9882,7505 L 18053,7505 C 18201,7505 18350,7356 18350,7208 L 18350,6022 C 18350,5874 18201,5726 18053,5726 L 9882,5726 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 9586,5726 L 9586,5726 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 18350,7505 L 18350,7505 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="11216" y="6836"><tspan fill="rgb(0,0,0)" stroke="none">Mother: Person&lt;E&gt;</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id12">
+        <rect class="BoundingBox" stroke="none" fill="none" x="9585" y="8102" width="8767" height="1782"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 9882,8103 C 9734,8103 9586,8251 9586,8399 L 9586,9585 C 9586,9733 9734,9882 9882,9882 L 18053,9882 C 18201,9882 18350,9733 18350,9585 L 18350,8399 C 18350,8251 18201,8103 18053,8103 L 9882,8103 Z M 9586,8103 L 9586,8103 Z M 18350,9882 L 18350,9882 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 9882,8103 C 9734,8103 9586,8251 9586,8399 L 9586,9585 C 9586,9733 9734,9882 9882,9882 L 18053,9882 C 18201,9882 18350,9733 18350,9585 L 18350,8399 C 18350,8251 18201,8103 18053,8103 L 9882,8103 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 9586,8103 L 9586,8103 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 18350,9882 L 18350,9882 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="11286" y="9213"><tspan fill="rgb(0,0,0)" stroke="none">Father: Person&lt;E&gt;</tspan></tspan></tspan></text>
+       </g>
+      </g>
+     </g>
+    </g>
+   </g>
+  </g>
+ </g>
+</svg>
\ No newline at end of file


[3/7] incubator-mnemonic-site git commit: MNEMONIC-312: Illustrate usage cases of Durable Object Model in diagrams

Posted by ga...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mnemonic-site/blob/34515c3c/src/img/durableplainobject.svg
----------------------------------------------------------------------
diff --git a/src/img/durableplainobject.svg b/src/img/durableplainobject.svg
new file mode 100755
index 0000000..a976e89
--- /dev/null
+++ b/src/img/durableplainobject.svg
@@ -0,0 +1,168 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="198.12mm" height="165.1mm" viewBox="0 0 19812 16510" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+  <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+   <rect x="0" y="0" width="19812" height="16510"/>
+  </clipPath>
+  <clipPath id="presentation_clip_path_shrink" clipPathUnits="userSpaceOnUse">
+   <rect x="19" y="16" width="19773" height="16477"/>
+  </clipPath>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_1" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="t" horiz-adv-x="547" d="M 554,8 C 495,-8 434,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 474,127 509,132 554,141 L 554,8 Z"/>
+   <glyph unicode="s" horiz-adv-x="901" d="M 950,299 C 950,197 912,118 835,63 758,8 650,-20 511,-20 376,-20 273,2 200,47 127,91 79,160 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 602,117 669,131 712,159 754,187 775,229 775,285 775,328 760,362 731,389 702,416 654,438 589,455 L 460,489 C 357,516 283,542 240,568 196,593 162,624 137,661 112,698 100,743 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 759,862 732,899 689,925 645,950 586,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,783 283,758 299,738 315,718 339,701 370,687 401,673 467,654 568,629 663,605 732,583 774,563 816,542 849,520 874,495 898,470 917,442 930,410 943,377 950,340 950,299 Z"/>
+   <glyph unicode="r" horiz-adv-x="531" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
+   <glyph unicode="o" horiz-adv-x="971" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
+   <glyph unicode="n" horiz-adv-x="901" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
+   <glyph unicode="m" horiz-adv-x="1483" d="M 768,0 L 768,686 C 768,791 754,863 725,903 696,943 645,963 570,963 493,963 433,934 388,875 343,816 321,734 321,627 L 321,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 356,974 400,1027 450,1057 500,1087 561,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 967,970 1013,1022 1066,1054 1119,1086 1183,1102 1258,1102 1367,1102 1447,1072 1497,1013 1546,954 1571,856 1571,721 L 1571,0 1393,0 1393,686 C 1393,791 1379,863 1350,903 1321,943 1270,963 1195,963 1116,963 1055,934 1012,876 968,817 946,734 946,627 L 946,0 768,0 Z"/>
+   <glyph unicode="i" horiz-adv-x="196" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
+   <glyph unicode="h" horiz-adv-x="883" d="M 317,897 C 356,968 402,1020 457,1053 511,1086 580,1102 663,1102 780,1102 867,1073 923,1015 978,956 1006,858 1006,721 L 1006,0 825,0 825,686 C 825,762 818,819 804,856 790,893 767,920 735,937 703,954 659,963 602,963 517,963 450,934 399,875 348,816 322,737 322,638 L 322,0 142,0 142,1484 322,1484 322,1098 C 322,1057 321,1015 319,972 316,929 315,904 314,897 L 317,897 Z"/>
+   <glyph unicode="g" horiz-adv-x="936" d="M 548,-425 C 430,-425 336,-402 266,-355 196,-309 151,-243 131,-158 L 312,-132 C 324,-182 351,-220 392,-247 433,-274 486,-288 553,-288 732,-288 822,-183 822,27 L 822,201 820,201 C 786,132 739,80 680,45 621,10 551,-8 472,-8 339,-8 242,36 180,124 117,212 86,350 86,539 86,730 120,872 187,963 254,1054 355,1099 492,1099 569,1099 635,1082 692,1047 748,1012 791,962 822,897 L 824,897 C 824,917 825,952 828,1001 831,1050 833,1077 836,1082 L 1007,1082 C 1003,1046 1001,971 1001,858 L 1001,31 C 1001,-273 850,-425 548,-425 Z M 822,541 C 822,629 810,705 786,769 762,832 728,881 685,915 641,948 591,965 536,965 444,965 377,932 335,865 293,798 272,690 272,541 272,393 292,287 331,222 370,157 438,125 533,125 590,125 640,142 684,175 728,208 762,256 786,319 810,381 822,455 822,541 Z"/>
+   <glyph unicode="e" horiz-adv-x="971" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
+   <glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,66 114,123 87,202 87,302 87,414 124,500 198,560 271,620 390,652 554,656 L 797,660 797,719 C 797,807 778,870 741,908 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,190 723,231 753,284 782,336 797,390 797,445 L 797,534 600,530 C 515,529 451,520 408,504 364,488 330,463 307,430 284,397 272,353 272,299 272,240 288,195 320,163 351,131 396,115 455,115 Z"/>
+   <glyph unicode="S" horiz-adv-x="1183" d="M 1272,389 C 1272,259 1221,158 1120,87 1018,16 875,-20 690,-20 347,-20 148,99 93,338 L 278,375 C 299,290 345,228 414,189 483,149 578,129 697,129 820,129 916,150 983,193 1050,235 1083,297 1083,379 1083,425 1073,462 1052,491 1031,520 1001,543 963,562 925,581 880,596 827,609 774,622 716,635 652,650 541,675 456,699 399,724 341,749 295,776 262,807 229,837 203,872 186,913 168,954 159,1000 159,1053 159,1174 205,1267 298,1332 390,1397 522,1430 694,1430 854,1430 976,1406 1061,1357 1146,1308 1205,1224 1239,1106 L 1051,1073 C 1030,1148 991,1202 933,1236 875,1269 795,1286 692,1286 579,1286 493,1267 434,1230 375,1193 345,1137 345,1063 345,1020 357,984 380,956 403,927 436,903 479,884 522,864 609,840 738,811 781,801 825,791 868,781 911,770 952,758 991,744 1030,729 1067,712 1102,693 1136,674 1166,650 1191,622 1216,594 1236,561 1251,523 1265,485 1272,440 1272,389 Z"/>
+   <glyph unicode="P" horiz-adv-x="1094" d="M 1258,985 C 1258,852 1215,746 1128,667 1041,588 922,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 919,1409 1041,1372 1128,1298 1215,1224 1258,1120 1258,985 Z M 1066,983 C 1066,1165 957,1256 738,1256 L 359,1256 359,700 746,700 C 959,700 1066,794 1066,983 Z"/>
+   <glyph unicode="N" horiz-adv-x="1165" d="M 1082,0 L 328,1200 333,1103 338,936 338,0 168,0 168,1409 390,1409 1152,201 C 1144,332 1140,426 1140,485 L 1140,1409 1312,1409 1312,0 1082,0 Z"/>
+   <glyph unicode="A" horiz-adv-x="1359" d="M 1167,0 L 1006,412 364,412 202,0 4,0 579,1409 796,1409 1362,0 1167,0 Z M 685,1265 L 676,1237 C 659,1182 635,1111 602,1024 L 422,561 949,561 768,1026 C 749,1072 731,1124 712,1182 L 685,1265 Z"/>
+   <glyph unicode=":" horiz-adv-x="213" d="M 187,875 L 187,1082 382,1082 382,875 187,875 Z M 187,0 L 187,207 382,207 382,0 187,0 Z"/>
+   <glyph unicode=" " horiz-adv-x="564"/>
+  </font>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_2" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="423"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="y" horiz-adv-x="1077" d="M 283,-425 C 216,-425 157,-421 106,-412 L 106,-212 C 141,-217 174,-220 203,-220 243,-220 276,-214 303,-201 329,-188 353,-167 374,-138 395,-109 418,-59 444,11 L 16,1082 313,1082 483,575 C 510,502 543,391 584,241 L 609,336 674,571 834,1082 1128,1082 700,-57 C 643,-196 583,-292 522,-345 460,-398 380,-425 283,-425 Z"/>
+   <glyph unicode="w" horiz-adv-x="1695" d="M 1313,0 L 1016,0 844,660 C 836,690 820,764 797,882 L 745,658 571,0 274,0 -6,1082 258,1082 436,255 450,329 475,446 645,1082 946,1082 1112,446 C 1121,411 1135,348 1153,255 L 1181,387 1337,1082 1597,1082 1313,0 Z"/>
+   <glyph unicode="v" horiz-adv-x="1095" d="M 731,0 L 395,0 8,1082 305,1082 494,477 C 504,444 528,360 565,227 572,254 585,302 606,371 627,440 703,677 836,1082 L 1130,1082 731,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="1007" d="M 408,1082 L 408,475 C 408,285 472,190 600,190 668,190 723,219 765,278 806,336 827,411 827,502 L 827,1082 1108,1082 1108,242 C 1108,150 1111,69 1116,0 L 848,0 C 840,96 836,168 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 368,-20 280,15 219,86 158,156 127,259 127,395 L 127,1082 408,1082 Z"/>
+   <glyph unicode="t" horiz-adv-x="653" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 585,176 616,181 657,190 L 657,16 C 588,-7 509,-18 420,-18 Z"/>
+   <glyph unicode="s" horiz-adv-x="1006" d="M 1055,316 C 1055,211 1012,129 927,70 841,10 722,-20 571,-20 422,-20 309,4 230,51 151,98 98,171 72,270 L 319,307 C 333,256 357,219 392,198 426,177 486,166 571,166 650,166 707,176 743,196 779,216 797,247 797,290 797,325 783,352 754,373 725,393 675,410 606,424 447,455 340,485 285,512 230,539 188,574 159,617 130,660 115,712 115,775 115,878 155,959 235,1017 314,1074 427,1103 573,1103 702,1103 805,1078 884,1028 962,978 1011,906 1030,811 L 781,785 C 773,829 753,862 722,884 691,905 641,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,774 386,749 412,731 437,712 480,697 541,685 626,668 701,650 767,632 832,613 885,591 925,566 964,541 996,508 1020,469 1043,429 1055,378 1055,316 Z"/>
+   <glyph unicode="r" horiz-adv-x="654" d="M 143,0 L 143,828 C 143,887 142,937 141,977 139,1016 137,1051 135,1082 L 403,1082 C 405,1070 408,1034 411,973 414,912 416,871 416,851 L 420,851 C 447,927 472,981 493,1012 514,1043 540,1066 569,1081 598,1096 635,1103 679,1103 715,1103 744,1098 766,1088 L 766,853 C 721,863 681,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+   <glyph unicode="p" horiz-adv-x="1060" d="M 1167,546 C 1167,365 1131,226 1059,128 986,29 884,-20 752,-20 676,-20 610,-3 554,30 497,63 454,110 424,172 L 418,172 C 422,152 424,91 424,-10 L 424,-425 143,-425 143,833 C 143,935 140,1018 135,1082 L 408,1082 C 411,1070 414,1046 417,1011 419,976 420,941 420,906 L 424,906 C 487,1039 603,1105 770,1105 896,1105 994,1057 1063,960 1132,863 1167,725 1167,546 Z M 874,546 C 874,789 800,910 651,910 576,910 519,877 480,812 440,747 420,655 420,538 420,421 440,331 480,268 519,204 576,172 649,172 799,172 874,297 874,546 Z"/>
+   <glyph unicode="o" horiz-adv-x="1112" d="M 1171,542 C 1171,367 1122,229 1025,130 928,30 793,-20 621,-20 452,-20 320,30 224,130 128,230 80,367 80,542 80,716 128,853 224,953 320,1052 454,1102 627,1102 804,1102 939,1054 1032,958 1125,861 1171,723 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 460,909 375,787 375,542 375,421 396,330 438,267 479,204 539,172 618,172 791,172 877,295 877,542 Z"/>
+   <glyph unicode="n" horiz-adv-x="1007" d="M 844,0 L 844,607 C 844,797 780,892 651,892 583,892 528,863 487,805 445,746 424,671 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 883,1103 971,1068 1032,997 1093,926 1124,823 1124,687 L 1124,0 844,0 Z"/>
+   <glyph unicode="m" horiz-adv-x="1571" d="M 780,0 L 780,607 C 780,797 725,892 616,892 559,892 513,863 478,805 442,747 424,672 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 900,1103 1001,1024 1036,867 L 1042,867 C 1079,951 1123,1011 1174,1048 1225,1085 1291,1103 1370,1103 1475,1103 1556,1067 1611,996 1666,924 1694,821 1694,687 L 1694,0 1415,0 1415,607 C 1415,797 1360,892 1251,892 1196,892 1152,866 1117,813 1082,760 1062,686 1059,593 L 1059,0 780,0 Z"/>
+   <glyph unicode="l" horiz-adv-x="283" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+   <glyph unicode="j" horiz-adv-x="459" d="M 144,1277 L 144,1484 425,1484 425,1277 144,1277 Z M 138,-425 C 71,-425 15,-422 -32,-416 L -32,-218 19,-222 C 67,-222 100,-211 118,-190 135,-169 144,-126 144,-60 L 144,1082 425,1082 425,-128 C 425,-223 401,-297 353,-348 304,-399 233,-425 138,-425 Z"/>
+   <glyph unicode="i" horiz-adv-x="283" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
+   <glyph unicode="h" horiz-adv-x="989" d="M 420,866 C 458,949 506,1009 563,1046 620,1083 689,1102 768,1102 883,1102 971,1067 1032,996 1093,925 1124,822 1124,686 L 1124,0 844,0 844,606 C 844,796 780,891 651,891 583,891 528,862 487,804 445,745 424,670 424,579 L 424,0 143,0 143,1484 424,1484 424,1079 C 424,1006 421,935 416,866 L 420,866 Z"/>
+   <glyph unicode="g" horiz-adv-x="1059" d="M 596,-434 C 464,-434 358,-409 278,-358 197,-308 148,-236 129,-143 L 410,-110 C 420,-153 442,-187 475,-212 508,-237 551,-249 604,-249 682,-249 739,-225 775,-177 811,-129 829,-58 829,37 L 829,94 831,201 829,201 C 767,68 651,2 481,2 355,2 257,49 188,144 119,239 84,374 84,550 84,727 120,863 191,959 262,1055 366,1103 502,1103 659,1103 768,1038 829,908 L 834,908 C 834,931 836,963 839,1003 842,1043 845,1069 848,1082 L 1114,1082 C 1110,1010 1108,927 1108,832 L 1108,33 C 1108,-121 1064,-237 977,-316 890,-395 763,-434 596,-434 Z M 831,556 C 831,667 811,754 772,817 732,879 675,910 602,910 452,910 377,790 377,550 377,315 451,197 600,197 675,197 732,228 772,291 811,353 831,441 831,556 Z"/>
+   <glyph unicode="f" horiz-adv-x="672" d="M 473,892 L 473,0 193,0 193,892 35,892 35,1082 193,1082 193,1195 C 193,1293 219,1366 271,1413 323,1460 402,1484 508,1484 561,1484 620,1479 686,1468 L 686,1287 C 659,1293 631,1296 604,1296 556,1296 522,1287 503,1268 483,1249 473,1215 473,1167 L 473,1082 686,1082 686,892 473,892 Z"/>
+   <glyph unicode="e" horiz-adv-x="1006" d="M 586,-20 C 423,-20 298,28 211,125 124,221 80,361 80,546 80,725 124,862 213,958 302,1054 427,1102 590,1102 745,1102 864,1051 946,948 1028,845 1069,694 1069,495 L 1069,487 375,487 C 375,382 395,302 434,249 473,195 528,168 600,168 699,168 762,211 788,297 L 1053,274 C 976,78 821,-20 586,-20 Z M 586,925 C 520,925 469,902 434,856 398,810 379,746 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+   <glyph unicode="d" horiz-adv-x="1059" d="M 844,0 C 841,10 838,35 835,76 831,116 829,149 829,176 L 825,176 C 764,45 649,-20 479,-20 353,-20 256,29 187,128 118,226 84,363 84,540 84,719 120,858 193,956 265,1053 367,1102 500,1102 577,1102 643,1086 699,1054 754,1022 797,974 827,911 L 829,911 827,1089 827,1484 1108,1484 1108,236 C 1108,169 1111,91 1116,0 L 844,0 Z M 831,547 C 831,664 812,754 773,817 734,880 676,911 600,911 525,911 469,881 432,820 395,759 377,665 377,540 377,295 451,172 598,172 672,172 729,205 770,270 811,335 831,427 831,547 Z"/>
+   <glyph unicode="c" horiz-adv-x="1024" d="M 594,-20 C 430,-20 303,29 214,127 125,224 80,360 80,535 80,714 125,853 215,953 305,1052 433,1102 598,1102 725,1102 831,1070 914,1006 997,942 1050,854 1071,741 L 788,727 C 780,782 760,827 728,860 696,893 651,909 592,909 447,909 375,788 375,546 375,297 449,172 596,172 649,172 694,189 730,223 766,256 788,306 797,373 L 1079,360 C 1069,286 1043,220 1000,162 957,104 900,59 830,28 760,-4 681,-20 594,-20 Z"/>
+   <glyph unicode="b" horiz-adv-x="1060" d="M 1167,545 C 1167,366 1131,228 1060,129 988,30 885,-20 752,-20 675,-20 609,-3 553,30 497,63 454,111 424,174 L 422,174 C 422,151 421,119 418,78 415,37 411,11 408,0 L 135,0 C 140,62 143,144 143,247 L 143,1484 424,1484 424,1070 420,894 424,894 C 487,1033 603,1102 770,1102 898,1102 996,1054 1065,957 1133,860 1167,722 1167,545 Z M 874,545 C 874,668 856,759 820,818 784,877 728,907 653,907 577,907 519,875 480,812 440,748 420,656 420,536 420,421 440,332 479,268 518,204 575,172 651,172 800,172 874,296 874,545 Z"/>
+   <glyph unicode="a" horiz-adv-x="1112" d="M 393,-20 C 288,-20 207,9 148,66 89,123 60,203 60,306 60,418 97,503 170,562 243,621 348,651 487,652 L 720,656 720,711 C 720,782 708,834 683,869 658,903 618,920 562,920 510,920 472,908 448,885 423,861 408,822 402,767 L 109,781 C 127,886 175,966 254,1021 332,1075 439,1102 574,1102 711,1102 816,1068 890,1001 964,934 1001,838 1001,714 L 1001,320 C 1001,259 1008,218 1022,195 1035,172 1058,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 670,51 552,-20 393,-20 Z M 720,501 L 576,499 C 511,496 464,489 437,478 410,466 389,448 375,424 360,400 353,368 353,328 353,277 365,239 389,214 412,189 444,176 483,176 527,176 567,188 604,212 640,236 668,269 689,312 710,354 720,399 720,446 L 720,501 Z"/>
+   <glyph unicode="S" horiz-adv-x="1236" d="M 1286,406 C 1286,268 1235,163 1133,90 1030,17 880,-20 682,-20 501,-20 360,12 257,76 154,140 88,237 59,367 L 344,414 C 363,339 401,285 457,252 513,218 591,201 690,201 896,201 999,264 999,389 999,429 987,462 964,488 940,514 907,536 864,553 821,570 738,591 616,616 511,641 437,661 396,676 355,691 317,708 284,729 251,749 222,773 199,802 176,831 158,864 145,903 132,942 125,986 125,1036 125,1163 173,1261 269,1329 364,1396 503,1430 686,1430 861,1430 992,1403 1080,1348 1167,1293 1224,1203 1249,1077 L 963,1038 C 948,1099 919,1144 874,1175 829,1206 764,1221 680,1221 501,1221 412,1165 412,1053 412,1016 422,986 441,963 460,940 488,920 525,904 562,887 638,867 752,842 887,813 984,787 1043,763 1101,738 1147,710 1181,678 1215,645 1241,607 1259,562 1277,517 1286,465 1286,406 Z"/>
+   <glyph unicode="D" horiz-adv-x="1271" d="M 1393,715 C 1393,570 1365,443 1308,335 1251,226 1170,143 1066,86 961,29 842,0 707,0 L 137,0 137,1409 647,1409 C 884,1409 1068,1349 1198,1230 1328,1110 1393,938 1393,715 Z M 1096,715 C 1096,866 1057,982 978,1062 899,1141 787,1181 641,1181 L 432,1181 432,228 682,228 C 809,228 909,272 984,359 1059,446 1096,565 1096,715 Z"/>
+   <glyph unicode=" " horiz-adv-x="564"/>
+  </font>
+ </defs>
+ <defs class="TextShapeIndex">
+  <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+  <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+  </g>
+  <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+  </g>
+  <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+  </g>
+  <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+  </g>
+  <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+  </g>
+  <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+  </g>
+  <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+  </g>
+  <g id="bullet-char-template(61548)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
+  </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+  <g id="id2" class="Master_Slide">
+   <g id="bg-id2" class="Background"/>
+   <g id="bo-id2" class="BackgroundObjects"/>
+  </g>
+ </g>
+ <g class="SlideGroup">
+  <g>
+   <g id="container-id1">
+    <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+     <g class="Page">
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id3">
+        <rect class="BoundingBox" stroke="none" fill="none" x="4073" y="5063" width="4449" height="8640"/>
+        <path fill="rgb(238,238,238)" stroke="none" d="M 4815,5064 C 4444,5064 4074,5434 4074,5805 L 4074,12960 C 4074,13330 4444,13701 4815,13701 L 7779,13701 C 8149,13701 8520,13330 8520,12960 L 8520,5805 C 8520,5434 8149,5064 7779,5064 L 4815,5064 Z M 4074,5064 L 4074,5064 Z M 8520,13701 L 8520,13701 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 4815,5064 C 4444,5064 4074,5434 4074,5805 L 4074,12960 C 4074,13330 4444,13701 4815,13701 L 7779,13701 C 8149,13701 8520,13330 8520,12960 L 8520,5805 C 8520,5434 8149,5064 7779,5064 L 4815,5064 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 4074,5064 L 4074,5064 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 8520,13701 L 8520,13701 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="5293" y="5978"><tspan fill="rgb(0,0,0)" stroke="none">Person</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id4">
+        <rect class="BoundingBox" stroke="none" fill="none" x="5980" y="10764" width="3811" height="539"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 6482,11033 L 9019,11033"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 6512,11082 L 6498,11131 6474,11179 6440,11224 6395,11258 6347,11282 6298,11296 6248,11302 6200,11296 6149,11282 6101,11258 6058,11224 6024,11179 6000,11131 5984,11082 5980,11032 5984,10984 6000,10933 6024,10887 6058,10842 6101,10808 6149,10784 6200,10770 6248,10764 6298,10770 6347,10784 6395,10808 6440,10842 6474,10887 6498,10933 6512,10984 6518,11032 6512,11082 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 9790,11033 L 8983,10764 8983,11302 9790,11033 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id5">
+        <rect class="BoundingBox" stroke="none" fill="none" x="9661" y="10143" width="4957" height="1782"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 12138,10144 C 13542,10144 14615,10529 14615,11033 14615,11537 13542,11922 12138,11922 10734,11922 9662,11537 9662,11033 9662,10529 10734,10144 12138,10144 Z M 9662,10144 L 9662,10144 Z M 14616,11923 L 14616,11923 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 12138,10144 C 13542,10144 14615,10529 14615,11033 14615,11537 13542,11922 12138,11922 10734,11922 9662,11537 9662,11033 9662,10529 10734,10144 12138,10144 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 9662,10144 L 9662,10144 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 14616,11923 L 14616,11923 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10640" y="11254"><tspan fill="rgb(0,0,0)" stroke="none">Age: Short</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.LineShape">
+       <g id="id6">
+        <rect class="BoundingBox" stroke="none" fill="none" x="5853" y="7843" width="3811" height="539"/>
+        <path fill="none" stroke="rgb(52,101,164)" stroke-width="159" stroke-linejoin="round" d="M 6355,8112 L 8892,8112"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 6385,8161 L 6371,8210 6347,8258 6313,8303 6268,8337 6220,8361 6171,8375 6121,8381 6073,8375 6022,8361 5974,8337 5931,8303 5897,8258 5873,8210 5857,8161 5853,8111 5857,8063 5873,8012 5897,7966 5931,7921 5974,7887 6022,7863 6073,7849 6121,7843 6171,7849 6220,7863 6268,7887 6313,7921 6347,7966 6371,8012 6385,8063 6391,8111 6385,8161 Z"/>
+        <path fill="rgb(52,101,164)" stroke="none" d="M 9663,8112 L 8856,7843 8856,8381 9663,8112 Z"/>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.CustomShape">
+       <g id="id7">
+        <rect class="BoundingBox" stroke="none" fill="none" x="9634" y="7272" width="5210" height="1654"/>
+        <path fill="rgb(204,204,204)" stroke="none" d="M 12239,8924 L 9635,8924 9635,7273 14842,7273 14842,8924 12239,8924 Z"/>
+        <path fill="none" stroke="rgb(52,101,164)" d="M 12239,8924 L 9635,8924 9635,7273 14842,7273 14842,8924 12239,8924 Z"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10300" y="8319"><tspan fill="rgb(0,0,0)" stroke="none">Name : String</tspan></tspan></tspan></text>
+       </g>
+      </g>
+      <g class="com.sun.star.drawing.TextShape">
+       <g id="id8">
+        <rect class="BoundingBox" stroke="none" fill="none" x="2270" y="1635" width="15114" height="2160"/>
+        <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="706px" font-weight="700"><tspan class="TextPosition" x="2520" y="2399"><tspan fill="rgb(0,0,0)" stroke="none">Durable object with String and primitive </tspan></tspan><tspan class="TextPosition" x="2520" y="3186"><tspan fill="rgb(0,0,0)" stroke="none">type of values</tspan></tspan></tspan></text>
+       </g>
+      </g>
+     </g>
+    </g>
+   </g>
+  </g>
+ </g>
+</svg>
\ No newline at end of file