Index: trunk/MobileIndico/indico.css
===================================================================
--- trunk/MobileIndico/indico.css	(revision 18636)
+++ trunk/MobileIndico/indico.css	(revision 18636)
@@ -0,0 +1,86 @@
+div.ui-content {
+   padding-top: 0px;
+   padding-bottom: 0px;
+   padding-bottom: 0px;
+}
+
+
+.ui-btn-b {
+   background-color: #225 !important;
+   border-color: #445 !important;
+   background: #225;
+   background: -moz-linear-gradient(top, #004 0%, #669 50%, #669 50%, #004 100%);
+   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#004),color-stop(50%,#669), color-stop(50%,#669), color-stop(100%,#004));
+   opacity: 0.9;
+}
+
+.ui-title {
+   padding-top: 7px !important;
+   padding-bottom: 7px !important;
+}
+
+.indico .session .ui-collapsible-content {
+   padding-top: 8px;
+   padding-left: 5px;
+   padding-right: 5px;
+}
+
+.indico .session .type {
+   padding: 5px;
+   font-weight: bold;
+   font-size: 115%;
+   display: block;
+}
+
+.indico .session .location {
+   color: #555;
+   font-size: 75%;
+   /*float: right;*/
+}
+
+.indico .contribution {
+   background-color: #eee;
+   margin: 3px 0px 0px 0px;
+   padding: 3px;
+    -webkit-border-radius: 6px;
+}
+
+.indico .session .type {
+    -webkit-border-radius: 4px;
+}
+
+.indico .contribution .date {
+   background-color: #eee;
+   font-weight: bold;
+   display: block;
+}
+
+.indico .contribution a.title {
+   text-decoration: none;
+   font-style: italic;
+   /*color: indigo;*/
+}
+
+.indico .contribution a.email {
+   text-decoration: none;
+   font-style: italic;
+   /*color: indigo;*/
+}
+
+.indico .contribution .material .resources a.url {
+   text-decoration: none;
+   font-style: italic;
+   /*color: indigo;*/
+}
+
+.indico .contribution .presenters {
+   color: #777;
+   font-size: 85%;
+   font-variant: small-caps;
+   display: block;
+}
+
+.indico .contribution .material {
+   font-size: 75%;
+}
+
Index: trunk/MobileIndico/indico.html
===================================================================
--- trunk/MobileIndico/indico.html	(revision 18636)
+++ trunk/MobileIndico/indico.html	(revision 18636)
@@ -0,0 +1,46 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+  <title>Mobile Indico</title>
+  <meta name="viewport" content="width=device-width, initial-scale=1">
+  <link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">  
+  <link rel="stylesheet" href="indico.css">
+  <!--<script src="jquery.mobile.custom.min.js"></script>-->
+  <!--<script src="jquery-custom-2.1.1.min.js"></script>-->
+  <script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
+  <script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
+  <script src="indico.js"></script>
+</head>
+
+<div data-role="page" id="page1">
+
+    <!-- HEADER -->
+    <div id="header" data-role="header">
+        <h1>Timetable&nbsp;<a id='indico-link'><img src='indico.svg' style='vertical-align:text-bottom' height="18px"/></a></h1>
+    </div>
+
+    <!-- MAIN -->
+    <div role="main" class="ui-content">
+
+        <form>
+           <input data-type="search" id="filter" />
+        </form>
+
+        <div id="list" data-role="collapsible-set" data-filter="true" data-children="> div, > div div" data-input="#filter" data-mini="true" data-theme="a" data-content-theme="a" data-inset="false">
+        </div>
+
+    </div>
+
+    <!-- FOOTER -->
+    <div id="footer" data-role="footer" data-position="fixed">
+        <h1 style="font-size:75%;color:#999;">Mobile Indico powered by&nbsp;
+           <img src='rwth.svg' style='vertical-align:text-bottom' height='16px' />
+        </h1>
+    </div>
+
+    <p id="debug"></p>
+
+</div>
+
+</html>
Index: trunk/MobileIndico/indico.js
===================================================================
--- trunk/MobileIndico/indico.js	(revision 18636)
+++ trunk/MobileIndico/indico.js	(revision 18636)
@@ -0,0 +1,243 @@
+var indico_url = "https://indico.scc.kit.edu/indico/";
+var default_event = 215;
+
+function process(ID, result)
+{
+    if (window.location.href.indexOf("debug")>=0)
+        $('#debug').append("<pre>"+JSON.stringify(result,null,2)+"</pre>");
+
+    $("#indico-link").attr("href", indico_url+"/event/"+ID)
+
+    var conf = result['results'][ID];
+
+    var list = "";
+
+    // Sort the days into the correct order
+    var days = [];
+    for (var day in conf)
+        days.push([ day, conf[day] ]);
+    days.sort(function(a, b) { return a[0] > b[0]; });
+
+    for (var d=0; d<days.length; d++)
+    {
+        var day = days[d][0]; // "20161206"
+
+        // Convert "20161206" -> "2016/12/06"
+        var date = day.substr(0, 4)+"&thinsp;/&thinsp;"+day.substr(4, 2)+"&thinsp;/&thinsp;"+day.substr(6,2);
+
+        // Date accordion
+        list += "<div class='indico' data-role='collapsible' data-theme='b' data-inset='false'>";
+        list += "<h1>"+date+"</h1>";
+        //list += "<div id='"+day+"' data-role='collapsible-set' data-filter='true' data-input='#filter' data-mini='true' data-theme='a' data-content-theme='a'>";
+
+        var content = days[d][1];
+
+        // Sort all slots in a days by startDate/time
+        var slots = [];
+        for (var slot in content)
+            slots.push([ content[slot].startDate.time, content[slot]]);
+        slots.sort(function(a, b) { return a[0] > b[0]; });
+
+        // Loop over all slots (sessions)
+        for (var s=0; s<slots.length; s++)
+        {
+            var e = slots[s][1]; // entry
+
+            // Accordion for each session
+            list += "<div class='session' data-role='collapsible' data-inset='false'>";
+            list +=    "<h1 class='date'>"+e.startDate.time.substr(0,5)+"&thinsp;-&thinsp;"+e.endDate.time.substr(0,5)+"&ensp;"+e.title+"</h1>";
+            //list +=    "<h1 class='date'>"+e.startDate.time.substr(0,5)+" ["+e.duration+"'] "+e.title+"</h1>";
+            //list +=    "<h1 class='date'>"+e.startDate.time.substr(0,5)+" - "+e.endDate.time.substr(0,5)+" ["+e.duration+"'] "+e.title+"</h1>";
+
+
+            // =======================================================
+            list +=    "<div class='body'>";
+
+
+            // -------------------------------------------------------
+            list += "<span class='type' style='background-color:"+e.color+";'>"+e.entryType;
+            if (e.location.length+e.room.length>0)
+            {
+                list += "<span class='location'>";
+                list += " ["+e.location;
+                if (e.location.length>0 && e.room.length>0)
+                    list += ": ";
+                list += e.room+"]";
+                list += "</span>"
+            }
+            list += "</span>";
+                // -------------------------------------------------------
+
+
+            // Sort all entries in a session by startDate/time
+            var entries = [];
+            for (var entry in e.entries)
+                entries.push([ e.entries[entry].startDate.time, e.entries[entry]]);
+            entries.sort(function(a, b) { return a[0] > b[0]; });
+            // description, title, material, url, entryType, presenters []
+
+            for (var i=0; i<entries.length; i++)
+            {
+                var e = entries[i][1];
+
+                // =======================================================
+                list += "<div class='contribution'>";
+
+
+                // -------------------------------------------------------
+                list +=    "<span class='date'>"+e.startDate.time.substr(0,5)+" ";
+                list +=       "<a class='title' href='"+e.url+"'>"+e.title+"</a>";
+                list +=    "</span>";
+                // -------------------------------------------------------
+
+
+                // -------------------------------------------------------
+                list += "<span class='presenters'>";
+                var p = e.presenters;
+                for (var j=0; j<p.length; j++)
+                {
+                    list += p[j].name;
+                    if (p[j].affiliation.length>0)
+                        list += " ["+p[j].affiliation+"]";
+                    if (p[j].email.length>0)
+                        list += " <a class='email' href='email:"+p[j].email+"'>"+p[j].email+"</a>";
+                    list += "<br/>";
+                }
+                list +=    "</span>";
+                // -------------------------------------------------------
+
+
+                list +=    "<span class='description'>"+e.description+"</span>";
+
+
+                // -------------------------------------------------------
+                list +=    "<span class='material'>";
+                var m = e.material;
+                for (var j=0; j<m.length; j++)
+                {
+                    list += "<span class='title'>"+m[j].title+": </span>";
+
+                    list += "<span class='resources'>";
+                    var r = m[j].resources;
+                    for (var k=0; k<r.length; k++)
+                    {
+                        list += "<a class='url' href='"+r[k].url+"'>"+r[k].name+"</a>";
+                        if (r[k].description.length>0)
+                            list += "<span class='description'>" + m[k].description + "</span>";
+                    }
+                    list += "</span>";
+
+                    if (m[j].description.length>0)
+                        list += "<span class='description'> ["+m[j].description+"]</span>";
+
+                }
+                list +=    "</span>"; // indico-contribution-material
+                // -------------------------------------------------------
+
+
+                list += "</div>"; // indico-contribution
+                // =======================================================
+            }
+
+            list +=   "</div>";   // indico-session-body
+            // =======================================================
+
+
+            list += "</div>"; // collapsible "indico-session"
+
+            /*
+
+                "material": [
+                {
+                  "_type": "Slides",
+                  "description": "",
+                  "title": "Slides",
+                  "_fossil": "materialMinimal",
+                  "protectionURL": "https://indico.scc.kit.edu/indico/event/215/manage/session/3/contribution/28/material/?returnURL=",
+                  "type": "",
+                  "id": "slides",
+                  "resources": [
+                    {
+                      "_type": "LocalFile",
+                      "name": "Auger-HEAT.pdf",
+                      "url": "https://indico.scc.kit.edu/indico/event/215/session/3/contribution/28/material/slides/0.pdf",
+                      "_fossil": "localFileMinimal",
+                      "protectionURL": "https://indico.scc.kit.edu/indico/event/215/manage/session/3/contribution/28/material/?returnURL=",
+                      "description": ""
+                    }*/
+
+            // HERE WE NEED TO LOOP OVER THE CONTRIBUTIONS
+
+            //alert(JSON.stringify(slots[s][1]));
+            //break;
+
+            // entryType "Session" "Contribution" "Break"
+            // isPoster,
+            // startDate { date, tz }
+            // endDate   { date, tz }
+            // duration
+            // contribDuration,
+            // color
+            // textColor,
+            // title
+            // slotTitle
+            // location
+            // room,
+            // conveners []
+            // material []
+            // entries { }
+            // url,
+            // pdf
+            //
+            // sessionSlotId
+            // conferenceId
+            // inheritRoom
+            // uniqueid
+            // _fossil "linedTimeSchEntry"
+            // _type "LinkedTimeSchEntry"
+            // sessionCode,
+            // sessionid,
+            // inheritLoc,
+        }
+
+        //list += "</div>"; // collapsible-set "day"
+        list += "</div>"; // collapsible
+    }
+
+    $('#list').append(list);
+    $('#list').collapsibleset('refresh');
+}
+
+function read(json)
+{
+    var ID = Object.keys(json.results);
+
+    process(ID, json);
+
+    $('#footer').css("position", "relative");
+    $.mobile.loading('hide');
+}
+
+function onReady()
+{
+    $.mobile.loading('show', {
+       text: "Loading timetable...",
+       textVisible: true,
+       /* theme: "a", */
+    });
+
+    /*---------------------------------------------------------------------------------------------
+     Request the timetabel of the indico event we are interested in
+     ----------------------------------------------------------------------------------------------*/
+
+    var ID = window.location.href.split("?")[1];
+
+    if (ID)
+        ID = ID.split("&").find(function(str){ return str.split("=")[0]=="id"; });
+
+    ID = !ID ? default_event : ID.split("=")[1];
+
+    $.getJSON(indico_url+"/export/timetable/"+ID+".jsonp?callback=?");
+}
+
+$('document').ready(onReady);
Index: trunk/MobileIndico/indico.svg
===================================================================
--- trunk/MobileIndico/indico.svg	(revision 18636)
+++ trunk/MobileIndico/indico.svg	(revision 18636)
@@ -0,0 +1,86 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<svg version="1.2" baseProfile="tiny" width="192.97mm" height="79.02mm" viewBox="0 0 19297 7902" preserveAspectRatio="xMidYMid" fill-rule="evenodd" clip-path="url(#presentation_clip_path)" 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" xml:space="preserve">
+ <defs class="ClipPathGroup">
+  <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+   <rect x="0" y="0" width="19297" height="7902"/>
+  </clipPath>
+ </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>
+ </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="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+    <g class="Page">
+     <g class="com.sun.star.drawing.ClosedBezierShape">
+      <g id="id3">
+       <path fill="rgb(0,164,228)" stroke="none" d="M 15188,0 L 15589,0 C 16544,61 17473,473 18146,1155 18820,1822 19232,2739 19298,3684 L 19298,4230 C 19242,4945 18998,5646 18581,6230 17889,7226 16716,7866 15503,7903 L 15141,7903 C 14336,7852 13540,7565 12914,7050 12765,6931 12746,6692 12863,6545 12981,6385 13230,6352 13384,6480 13818,6821 14339,7052 14887,7128 15546,7230 16235,7113 16826,6805 17474,6471 18001,5908 18294,5240 18601,4549 18647,3747 18427,3023 18214,2307 17738,1677 17114,1266 16575,909 15925,723 15278,739 14603,755 13935,992 13402,1408 13255,1532 13006,1515 12885,1364 12752,1214 12772,957 12933,834 13571,326 14374,34 15188,0 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ClosedBezierShape">
+      <g id="id4">
+       <path fill="rgb(0,164,228)" stroke="none" d="M 266,2203 C 495,2127 755,2332 741,2571 743,3503 741,4435 742,5366 751,5523 656,5676 508,5731 296,5822 33,5678 0,5449 L 0,2495 C 31,2360 129,2239 266,2203 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ClosedBezierShape">
+      <g id="id5">
+       <path fill="rgb(0,164,228)" stroke="none" d="M 2731,2207 C 3084,2141 3457,2226 3764,2408 4213,2673 4505,3181 4505,3704 4505,4269 4506,4834 4505,5400 4510,5642 4230,5823 4008,5732 3867,5685 3765,5547 3765,5398 3760,4814 3768,4230 3762,3647 3732,3191 3248,2833 2804,2945 2470,3017 2191,3322 2181,3669 2179,4246 2184,4823 2179,5400 2177,5554 2065,5692 1920,5738 1700,5816 1429,5637 1440,5397 1440,4810 1438,4223 1441,3637 1462,2934 2036,2302 2731,2207 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ClosedBezierShape">
+      <g id="id6">
+       <path fill="rgb(0,164,228)" stroke="none" d="M 9644,2201 C 9863,2125 10123,2305 10125,2536 10126,3492 10126,4448 10126,5403 10128,5549 10023,5680 9889,5730 9636,5842 9341,5598 9383,5330 9385,4411 9383,3492 9384,2573 9376,2409 9488,2249 9644,2201 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ClosedBezierShape">
+      <g id="id7">
+       <path fill="rgb(0,82,114)" stroke="none" d="M 11822,2335 C 12313,2114 12902,2142 13374,2399 13559,2499 13615,2767 13487,2933 13393,3074 13193,3133 13040,3058 12815,2944 12548,2885 12300,2956 12014,3020 11758,3213 11618,3472 11436,3798 11450,4225 11657,4537 11887,4902 12360,5100 12778,4984 13187,4878 13512,4507 13564,4089 13583,3928 13571,3765 13602,3606 13662,3215 13855,2839 14162,2585 14547,2268 15070,2145 15560,2198 16110,2260 16620,2595 16894,3076 17164,3531 17209,4109 17021,4603 16851,5060 16484,5438 16033,5623 15409,5888 14634,5753 14146,5280 14315,5080 14441,4843 14514,4592 14716,4857 15045,5032 15381,5014 15838,5012 16261,4667 16365,4224 16468,3831 16311,3383 15983,3142 15794,2995 15551,2919 15312,2926 14897,2939 14514,3229 14378,3619 14290,3826 14328,4055 14289,4271 14220,4714 13966,5120 13611,5390 13211,5702 12672,5826 12175,5721 11669,5622 11220,5285 10972,4835 10758,4453 10700,3992 10797,3566 10919,3025 11312,2554 11822,2335 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ClosedBezierShape">
+      <g id="id8">
+       <path fill="rgb(0,164,228)" stroke="none" d="M 6716,2948 C 6257,3028 5890,3446 5867,3912 5837,4340 6103,4771 6502,4933 6917,5121 7446,4984 7722,4622 7954,4339 8013,3931 7876,3592 7705,3141 7191,2844 6716,2948 Z M 7947,1445 C 7943,1256 8099,1077 8292,1076 8499,1052 8700,1238 8687,1447 8687,2317 8688,3188 8686,4059 8667,4819 8095,5520 7358,5702 6845,5838 6273,5730 5849,5409 5403,5084 5127,4540 5127,3989 5119,3485 5340,2984 5716,2648 6040,2350 6478,2190 6916,2185 7284,2191 7645,2311 7947,2521 7945,2162 7945,1803 7947,1445 Z"/>
+      </g>
+     </g>
+    </g>
+   </g>
+  </g>
+ </g>
+</svg>
Index: trunk/MobileIndico/rwth.svg
===================================================================
--- trunk/MobileIndico/rwth.svg	(revision 18636)
+++ trunk/MobileIndico/rwth.svg	(revision 18636)
@@ -0,0 +1,71 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<svg version="1.2" baseProfile="tiny" width="126.5mm" height="34.1mm" viewBox="0 0 12650 3410" preserveAspectRatio="xMidYMid" fill-rule="evenodd" clip-path="url(#presentation_clip_path)" 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" xml:space="preserve">
+ <defs class="ClipPathGroup">
+  <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+   <rect x="0" y="0" width="12650" height="3410"/>
+  </clipPath>
+ </defs>
+ <defs class="TextShapeIndex">
+  <g ooo:slide="id1" ooo:id-list="id3 id4 id5"/>
+ </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>
+ </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="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+    <g class="Page">
+     <g class="com.sun.star.drawing.ClosedBezierShape">
+      <g id="id3">
+       <path fill="rgb(0,84,159)" stroke="none" d="M 536,1633 L 515,1633 0,1633 0,1452 0,35 0,23 514,23 515,23 878,23 C 1116,23 1322,177 1389,382 1451,571 1398,777 1258,923 1276,974 1294,1013 1312,1059 1351,1148 1386,1238 1425,1327 L 1552,1633 1549,1633 1009,1633 C 1009,1634 1005,1620 1001,1615 979,1568 960,1517 938,1469 L 808,1159 C 756,1034 704,916 652,790 717,789 765,801 828,772 871,750 938,697 940,594 938,543 924,504 890,464 856,427 807,399 744,398 744,398 535,398 536,398 L 536,1633 Z M 5873,23 L 5594,23 5594,604 5245,604 5219,604 5219,124 5219,23 4832,23 3472,23 3096,23 3052,23 3052,747 C 3056,780 3064,814 3067,848 L 2922,519 C 2858,368 2796,217 2731,64 2726,50 2722,41 2715,23 L 2162,23 C 2162,102 2163,190 2162,266 L 2162,747 C 2168,777 2178,817 2182,848 L 2179,842 C 2060,571 1945,299 1832,23 L 1281,23 C 1291,56 1309,85 1319,117 L 1441,403 1526,602 1532,615 C 1571,708 1602,781 1640,870 1749,1129 1854,1379 1964,1634 L 2517,1634 2517,791 C 2531,839 2541,887 2552,936 2646,1167 2748,1401 2844,1634 L 3395,1634 3395,980 3395,396 3773,396 3773,940 3773,966 3773,1634 4304,1634 4309,1634 4309,1082 4309,551 4309,435 4309,396 4683,396 4683,1634 4920,1634 C 5017,1633 5122,1634 5219,1634 L 5219,977 5223,977 5544,977 5594,977 5594,1634 5711,1634 6129,1634 6129,23 5873,23 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ClosedBezierShape">
+      <g id="id4">
+       <path fill="rgb(142,186,229)" stroke="none" d="M 8031,31 L 7631,31 7297,1295 6963,31 6563,31 6139,1635 6476,1635 6550,1296 6976,1296 7050,1635 7544,1635 7618,1296 8044,1296 8118,1635 8455,1635 8031,31 Z M 6606,1031 L 6761,310 6765,310 6920,1031 6606,1031 Z M 7674,1031 L 7829,310 7833,310 7988,1031 7674,1031 Z M 9095,573 C 9095,339 9047,238 8902,238 8738,238 8700,402 8700,855 8700,1340 8767,1428 8906,1428 9023,1428 9108,1367 9108,1022 L 9431,1022 C 9431,1367 9346,1666 8922,1666 8437,1666 8376,1320 8376,833 8376,346 8437,0 8922,0 9384,0 9418,339 9418,573 L 9095,573 Z M 9480,31 L 9803,31 9803,644 10181,644 10181,31 10504,31 10504,1635 10181,1635 10181,923 9803,923 9803,1635 9480,1635 9480,31 Z M 11489,31 L 11489,296 10917,296 10917,674 11455,674 11455,939 10917,939 10917,1370 11511,1370 11511,1635 10593,1635 10593,31 11489,31 Z M 11956,31 L 12346,1129 12351,1129 12351,31 12647,31 12647,1635 12279,1635 11884,512 11879,512 11879,1635 11583,1635 11583,31 11956,31 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ClosedBezierShape">
+      <g id="id5">
+       <path fill="rgb(142,186,229)" stroke="none" d="M 8461,2016 L 8613,2016 C 8759,2016 8838,2090 8838,2239 8838,2412 8750,2479 8595,2479 L 8461,2479 8461,2016 Z M 8138,3382 L 8461,3382 8461,2703 8634,2703 C 8764,2703 8820,2780 8824,2905 L 8833,3213 C 8836,3276 8842,3337 8874,3382 L 9224,3382 9224,3368 C 9163,3337 9154,3249 9152,3081 9148,2742 9114,2620 8894,2591 L 8894,2587 C 9076,2548 9161,2405 9161,2191 9161,1918 8999,1778 8735,1778 L 8138,1778 8138,3382 Z M 3383,1778 L 3383,2897 C 3383,3325 3632,3413 3895,3413 4157,3413 4406,3305 4406,2897 L 4406,1778 4083,1778 4083,2897 C 4083,3056 4045,3175 3895,3175 3744,3175 3706,3056 3706,2897 L 3706,1778 3383,1778 Z M 4476,1778 L 4476,3382 4772,3382 4772,2259 4776,2259 5171,3382 5539,3382 5539,1778 5243,1778 5243,2876 5239,2876 4848,1778 4476,1778 Z M 5946,1778 L 5622,1778 5622,3382 5946,3382 5946,1778 Z M 5968,1778 L 6336,3382 6751,3382 7119,1778 6785,1778 6547,2964 6540,2964 6313,1778 5968,1778 Z M 7148,1778 L 7148,3382 8066,3382 8066,3117 7471,3117 7471,2685 8010,2685 8010,2421 7471,2421 7471,2043 8043,2043 8043,1778 7148,1778 Z M 9188,2881 L 9188,2946 C 9188,3242 9332,3413 9697,3413 10047,3413 10254,3260 10254,2921 10254,2726 10191,2602 9949,2497 L 9700,2389 C 9563,2331 9533,2270 9533,2171 9533,2077 9572,1985 9718,1985 9841,1985 9893,2073 9893,2223 L 10202,2223 10202,2178 C 10202,1870 9994,1747 9706,1747 9401,1747 9210,1906 9210,2219 9210,2486 9343,2605 9630,2703 9843,2778 9917,2831 9917,2977 9917,3112 9823,3175 9724,3175 9554,3175 9511,3078 9511,2928 L 9511,2881 9188,2881 Z M 10619,1778 L 10296,1778 10296,3382 10619,3382 10619,1778 Z M 12298,1778 L 12073,2398 12069,2398 11858,1778 10662,1778 10662,2043 11012,2043 11012,3382 11335,3382 11335,2043 11608,2043 11910,2751 11910,3382 12233,3382 12233,2751 12648,1778 12298,1778 Z"/>
+      </g>
+     </g>
+    </g>
+   </g>
+  </g>
+ </g>
+</svg>
