r1585 - in siteCL-refactoring2015: . css font js pictures
Author: lkaufmann Date: 2015-06-02 14:55:31 +0000 (Tue, 02 Jun 2015) New Revision: 1585 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1585 Log: CL site refactoring start Added: siteCL-refactoring2015/css/ siteCL-refactoring2015/css/integration.css siteCL-refactoring2015/css/references.css siteCL-refactoring2015/font/ siteCL-refactoring2015/font/Quicksand_Bold.otf siteCL-refactoring2015/font/Quicksand_Light.otf siteCL-refactoring2015/integration.html siteCL-refactoring2015/integration_contact.html siteCL-refactoring2015/integration_ref.html siteCL-refactoring2015/js/ siteCL-refactoring2015/js/integration.js siteCL-refactoring2015/pictures/ siteCL-refactoring2015/pictures/agrosyst-bg.png siteCL-refactoring2015/pictures/agrosyst-capture.png siteCL-refactoring2015/pictures/al.png siteCL-refactoring2015/pictures/april.png siteCL-refactoring2015/pictures/le.png siteCL-refactoring2015/pictures/lima.png siteCL-refactoring2015/pictures/logo-bow.jpg siteCL-refactoring2015/pictures/logo-dgcs.png siteCL-refactoring2015/pictures/logo-ifremer.svg siteCL-refactoring2015/pictures/logo-inra.png siteCL-refactoring2015/pictures/logo-ird.png siteCL-refactoring2015/pictures/logo-lutin.png siteCL-refactoring2015/pictures/logo-lutin.svg siteCL-refactoring2015/pictures/logo-pollen.png siteCL-refactoring2015/pictures/logo-texte.png siteCL-refactoring2015/pictures/logo-texte.svg siteCL-refactoring2015/pictures/logo-toshiba.png siteCL-refactoring2015/pictures/lutin-tete.png siteCL-refactoring2015/pictures/map.png siteCL-refactoring2015/pictures/work-coffee.jpg siteCL-refactoring2015/pictures/work-desk.jpg siteCL-refactoring2015/pictures/work-map.jpg siteCL-refactoring2015/pictures/work-type.jpg Added: siteCL-refactoring2015/css/integration.css =================================================================== --- siteCL-refactoring2015/css/integration.css (rev 0) +++ siteCL-refactoring2015/css/integration.css 2015-06-02 14:55:31 UTC (rev 1585) @@ -0,0 +1,651 @@ + +/* Fonts +-------------------------------------------------- */ +@font-face { + font-family: "Quicksand"; + font-weight: bold; + src: url('../font/Quicksand_Bold.otf') ; +} + +@font-face { + font-family: "Quicksand"; + src: url('../font/Quicksand_Light.otf') ; +} + +/* General +-------------------------------------------------- */ +body { + margin: 0; + padding: 0; + font-family: 'Arial'; + background-color: #FAFAFA; +} + +.clearfix:before, +.clearfix:after { + content: ""; + display: table; +} +.clearfix:after { + clear: both; +} +.clear { + clear: both; +} +.float-left { + float: left; +} +.float-right { + float: right; +} + +ul { + list-style: none; + margin: 0; + padding: 0; +} + +h1, h2, h3 { + font-family: "Quicksand"; + text-transform: uppercase; +} + +h2, h3 { + font-weight: normal; +} + +a { + text-decoration: none; + color: #ff6600; +} +a:hover { + color: #df4600; +} + +.marginTop30 { + margin-top: 30px !important; +} + +/* Layout +-------------------------------------------------- */ +.content { + width: 90%; + max-width: 1080px; + margin: 0 auto; + position: relative; +} + +.columns { + box-sizing: border-box; + clear: both; +} + +.columns:before, +.columns:after { + content: ""; + display: table; +} +.columns:after { + clear: both; +} + +.columns .col-8, +.columns .col-6, +.columns .col-4, +.columns .col-3 { + float: left; + box-sizing: border-box; +} + +.columns .col-8, +.columns .col-6, +.columns .col-4, +.columns .col-3 { + width: 100%; +} + + +.box { + padding: 0; + position: relative; +} + +.box:first-child { + padding-left: 0; +} +.box:last-child { + padding-right: 0; +} + +.box .box-content { + padding: 10px 20px; + margin-bottom: 10px; + background: #DBDBD8; + background: -webkit-linear-gradient(#E7E7E5, #DFDFE1); + background: -o-linear-gradient(#E7E7E5, #DFDFE1); + background: -moz-linear-gradient(#E7E7E5, #DFDFE1); + background: linear-gradient(#E7E7E5, #DFDFE1); + box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.1); +} + +.box .box-content.highlight { + background: #f45b17; + background: -webkit-linear-gradient(#F89B72, #f45b17); + background: -o-linear-gradient(#F89B72, #f45b17); + background: -moz-linear-gradient(#F89B72, #f45b17); + background: linear-gradient(#F89B72, #f45b17); + color: #FFF; +} + +.box .box-content.light { + background: #FFF; + box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.05); +} + +.box .box-content .box-section { + border-bottom: 1px solid #EEE; + text-align: right; + margin: 20px 0 10px 0; +} +.box .box-content .box-section h3 { + float: left; + margin: 0; +} + +.box .box-content .box-list { + color: #AAA; +} +.box .box-content .box-list li a { + float: left; + margin-right: 5px; +} +.box .box-content .box-list li .description { + margin-left: 20%; +} + +/* Header réduit +-------------------------------------------------- */ +header { + background-color: #FFF; + height: 40px; + width: 100%; + position: fixed; + top: 0; + left: 0; + z-index: 4; + transition: background 1s ease 0s; +} + +header.menu-opened { + background-color: transparent; + border-bottom: 0 none; + transition: background 0.5s ease 0s; +} + +header .content { + height: 100%; + border-bottom: 1px solid #ddd; +} + +header #title { + width: 150px; + height: 34px; + display: block; + text-decoration: none; + padding: 3px 0; + opacity: 1; + transition: opacity 0.5s ease 0.2s; +} + + +header.menu-opened #title { + opacity: 0; + transition: opacity 0.5s ease 0s; +} + +header #title .logo-lutin { + height: 100%; + width: auto; + vertical-align: middle; +} + +header #title .logo-texte { + height: 60%; + width: auto; + vertical-align: middle; + margin-left: 10px; +} + +header #main-menu { + position: fixed; + top: 140px; + left: 0; + width: 100%; + opacity: 0; + display: none; + transition: opacity 0.5s ease-out 0s; +} + +header.menu-opened #main-menu { + display: block; + opacity: 1; + transition: opacity 0.7s ease-out 0.3s; +} + +header #main-menu a { + font-family: "Quicksand"; + font-weight: bold; + text-transform: uppercase; + display: block; + width: 100%; + text-align: center; + color: #FFF; + margin: 30px 5px; +} + +#main-menu-background { + overflow: hidden; + width: 100%; + height: 100%; + position: fixed; + top: 0; + left: 0; + z-index: 1; + visibility: hidden; +} + +#main-menu-background > div { + background: #FF6600; + position: absolute; + border-radius: 50%; + top: 0; + right: 0; + width: 30px; + height: 30px; + opacity: 0.0; + -webkit-transition: all 1s ease-out 0s; + -moz-transition: all 1s ease-out 0s; + -ms-transition: all 1s ease-out 0s; + -o-transition: all 1s ease-out 0s; + transition: all 1s ease-out 0s; +} +#main-menu-background.opened { + z-index: 3; + visibility: visible; +} +#main-menu-background.opened > div { + display: block; + width: 2000px; + height: 2000px; + top: -400px; + right: -400px; + opacity: 1; + -webkit-transition: all 0.5s ease-out 0.3s; + -moz-transition: all 0.5s ease-out 0.3s; + -ms-transition: all 0.5s ease-out 0.3s; + -o-transition: all 0.5s ease-out 0.3s; + transition: all 0.5s ease-out 0.3s; +} + +header #main-menu-linkto { + font-family: "Quicksand"; + font-size: 1.7em; + position: absolute; + right: 0; + bottom: 0; +} +header.menu-opened #main-menu-linkto { + transform: rotate(180deg); + color: #FFF; +} + +.go-to-top { + display: none; + border: 1px solid #FF6600; + border-radius: 2px; + background: #FFF; + padding: 5px 15px; + font-size: 14px; + display: inline; + vertical-align: middle; +} +.go-to-top.fixed { + display: block; + position: fixed; + right: 10px; + bottom: 10px; +} + +.go-to-top svg { + width: 20px; + height: 20px; + margin-right: 5px; + fill: #ff6600; + display: inline; + vertical-align: middle; +} +.go-to-top:hover { + background: #Ff6600; + color: #FFF; +} +.go-to-top:hover svg { + fill: #FFF; +} + +header .network-banner { + display: none; +} + +/* Header grand - Home +-------------------------------------------------- */ +.homepage header { + height: 110px; + position: relative; +} + + +.homepage header #title { + width: 300px; + height: 90px; + padding-top: 10px; +} + +.homepage header #title .logo-texte { + height: 40%; + vertical-align: bottom; +} + + +.homepage header #main-menu { + bottom: 0; +} + +/* Main content +-------------------------------------------------- */ +#wrapper { + padding-top: 90px; + z-index: 2; +} + +.homepage #wrapper { + padding-top: 30px; +} + +/* Display elements +-------------------------------------------------- */ +.show-grid { + background-color: #F2F4F5; + border-top: 1px solid rgba(0,0,0,0.02); + border-bottom: 1px solid rgba(0,0,0,0.02); + padding: 0; + margin: 20px 0 30px 0; +} + +.show-grid .box { + width: 100%; + height: 150px; + box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2); + position: relative; + background: #02385a; + overflow: hidden; +} +.show-grid .box .box-bg { + opacity: 0.6; + position: absolute; + top: -20%; + left: 0; + width: 100%; + transition: all 0.4s ease-in-out 0s; +} +.show-grid .box:hover .box-bg { + opacity: 0.2; + transform: scale3d(1.2,1.2,1); +} +.show-grid .box { + padding: 0; +} +.show-grid .box .box-content { + position: absolute; + left: 0; + top: 0; + background: transparent; + margin-bottom: 0; + box-shadow: none; + height: 130px; + width: 100%; + text-align: center; + padding: 10px 0; +} + +.show-grid .box .box-content .heading { + vertical-align: middle; + line-height: 130px; + font-family: "Quicksand"; + font-size: 30px; + color: #F2F4F5; + text-transform: uppercase; + opacity: 0.5; +} + +.show-grid .box:hover .box-content .heading { + color: #FFF; + text-shadow: 1px 1px 1px #fff; + opacity: 1; +} + +.show-grid .box:hover .box-bg::before { + background: none repeat scroll 0 0 rgba(255, 255, 255, 0.4); + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; +} + +.box-news li { + color: #888; +} +.box-news li .news-date { + display: block; + float: left; + width: 50px; + text-align: center; +} +.box-news li .news-title { + font-weight: bold; +} +.box-news li .news-content { + clear: both; + padding-top: 5px; +} + + + +/* Footer +-------------------------------------------------- */ +footer { + background-color: #023656; + color: #FFF; + margin-top: 80px; + border-top: 1px solid #FFF; + z-index: 2; +} + +footer .content { + width: 100%; +} + +footer .map { + background: url('../pictures/map.png') no-repeat right 0 transparent; + height: 350px; + width: 585px; + max-width: 100%; + float: left; + opacity: 0.9; +} +footer .map:after { + content: ""; + background: url('../pictures/lutin-tete.png') no-repeat 0 0 transparent; + display: block; + height: 85px; + width: 60px; + margin: -80px 0 0 80px; + opacity: 1; +} +footer .map:hover { + opacity: 1; +} + +footer .infos { + padding: 40px; + color: #CCC; + float: left; +} + + +/* Accessibilité +-------------------------------------------------- */ +#main-menu a:focus, +#skip-navigation:focus, +.go-to-top:focus { + outline: none !important; + color: #FFF !important; + background-color: #023656 !important; + +} + +#skip-navigation:focus { + position: absolute; + bottom: 0; +} +#skip-navigation { + position: absolute; + bottom: 200%; + left: 1em; + z-index: 1000; + padding: 5px 10px; + transition: bottom 0.3s ease-in-out 0s; +} + + +/* Responsive - Media queries +-------------------------------------------------- */ +@media screen and (min-width: 720px) { + .columns .col-8 { width: 66.66%;} + .columns .col-6 { width: 50%;} + .columns .col-4 { width: 33.33%;} + .columns .col-3 { width: 25%;} + + footer .map { + max-width: 50%; + } + + .box { + padding: 0 5px; + } +} + +@media screen and (min-width: 980px) { + #main-menu-background { + display: none; + } + + header #main-menu-linkto { + display: none; + } + + header #main-menu { + position: absolute; + display: block; + bottom: 0; + right: 0; + left: auto; + top: auto; + width: auto; + opacity: 1; + } + header #main-menu a { + float: left; + color: #ff6600; + padding: 5px 0; + margin: 0 15px; + cursor: pointer; + width: auto; + text-align: left; + } + header #main-menu a:last-child { + margin-right: 0; + } + header #main-menu a.current { + border-bottom: 3px solid #ff6600; + } + + .homepage header .network-banner { + display: block; + position: absolute; + top: 0; + right: 0; + color: #838382; + font-size: 13px; + box-shadow: 0 0 4px rgba(0,0,0,0.1); + border-left: 1px solid #e0e0e0; + border-bottom: 1px solid #e0e0e0; + } + .homepage header .network-banner > span { + background: url('../pictures/le.png') 0 0 / auto 100% no-repeat #EEE; + float: left; + padding: 10px 20px; + width: 150px; + text-indent: -9999px; + } + + .homepage header .network-banner > ul { + float: right; + } + .homepage header .network-banner > ul li { + float: left; + border-left: 1px solid #CCC; + padding: 10px 20px; + background-color: #F9F9F9; + } + + /* Animations - Effets + -------------------------------------------------- */ + .cl-effect-5 a { + height: 1em; + overflow: hidden; + padding-top: 5px; + padding-bottom: 5px; + } + .cl-effect-5 a span { + display: inline-block; + font-weight: bold; + position: relative; + transition: transform 0.3s ease 0s; + } + .cl-effect-5 a span::before { + content: attr(data-hover); + font-weight: normal; + position: absolute; + top: 200%; + transform: translate3d(0px, 0px, 0px); + } + .cl-effect-5 a:hover span { + transform: translateY(-210%); + } + + .cl-effect-5 a.current span { + transform: translateY(-30%); + } + .cl-effect-5 a.current:hover span { + transform: none; + } + +} + +@media screen and (min-width: 1080px) { + header nav a { + padding-right: 0; + } +} Added: siteCL-refactoring2015/css/references.css =================================================================== --- siteCL-refactoring2015/css/references.css (rev 0) +++ siteCL-refactoring2015/css/references.css 2015-06-02 14:55:31 UTC (rev 1585) @@ -0,0 +1,114 @@ + + +/* Carrousel +-------------------------------------------------- */ +#wrapper.reference { + padding-top: 30px; +} + +.carrousel { + position: relative; + min-height: 300px; + box-shadow: 0 -2px 3px rgba(0,0,0,0.2) inset; +} + +.carrousel .project-list { + text-align: center; + margin: 0 auto; + padding: 20px 0 40px 0; +} + +.carrousel .project-list li { + display: inline-block; + background-color: #FFF; + border: 1px solid #666; + box-shadow: 0 1px 2px rgba(0,0,0,0.2); + text-transform: uppercase; + font-family: "Quicksand"; + font-size: 18px; + padding: 8px 20px; + margin: 0 5px; + transition: color 0.3s; + transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1); +} +.carrousel .project-list li:hover { + border-color: #FF6600; +} +.carrousel .project-list li.current { + color: #FF6600; + border-color: #FF6600; +} +.carrousel .project-list li .client-logo { + height: 20px; + max-width: 100px; + padding: 0 10px 0 5px; +} + +.carrousel .project-list li.fix-on-scroll.fixed { + position: fixed; + top: 50px; + right: 20px; + z-index: 1; +} + +.carrousel .project-info { + position: relative; +} + +.carrousel .project-info .capture { + float: left; + height: 300px; + width: 55%; + box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.2) inset; + margin-right: 20px; +} + +.carrousel .project-info .project-name { + font-family: "Quicksand"; + font-size: 40px; + text-transform: uppercase; + color: #222; + text-shadow: 1px 1px 1px #222; + margin: 80px 0 20px 0; +} +.carrousel .project-info .client { + position: absolute; + right: 44%; + width: 150px; + height: 150px; + top: 30px; +} +.carrousel .project-info .client svg circle { + fill: #FFF; +} + +.carrousel .project-info .client img { + left: 0; + max-height: 110px; + max-width: 110px; + position: absolute; + top: 25%; +} + +.carrousel .project-info .project-description { + text-align: right; + color: #FFF; + border-top: 1px solid #EEE; + border-top: 1px solid rgba(255, 255, 255, 0.2); + padding: 10px 30px 0 0; +} + +/* Projets +-------------------------------------------------- */ +.carrousel.projet-inra-agrosyst { + background: url('../pictures/agrosyst-bg.png') no-repeat fixed 0 0 / 100% 100% transparent; +} + +.carrousel.projet-inra-agrosyst > div { + background: rgba(120, 162, 47, 0.7); +} + +.carrousel.projet-inra-agrosyst .project-info .capture{ + background: url('../pictures/agrosyst-capture.png') 0 0 no-repeat transparent; + background-size: 100% auto; +} Added: siteCL-refactoring2015/font/Quicksand_Bold.otf =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/font/Quicksand_Bold.otf ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: siteCL-refactoring2015/font/Quicksand_Light.otf =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/font/Quicksand_Light.otf ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: siteCL-refactoring2015/integration.html =================================================================== --- siteCL-refactoring2015/integration.html (rev 0) +++ siteCL-refactoring2015/integration.html 2015-06-02 14:55:31 UTC (rev 1585) @@ -0,0 +1,189 @@ +<html> + <head> + <title>Code Lutin</title> + <meta charset="utf-8"> + + <link type="text/css" rel="stylesheet" href="./css/integration.css"/> + + <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.3.min.js"></script> + <script type="text/javascript" src="./js/integration.js"></script> + </head> + <body class="home homepage"> + <div id="main-menu-background"><div></div></div> + <header> + <a id="skip-navigation" href="#wrapper">Skip Navigation</a> + <div class="content"> + <a id="title" href="./integration.html" title="Code Lutin"> + <img src="./pictures/logo-lutin.svg" class="logo-lutin" /> + <img src="./pictures/logo-texte.svg" class="logo-texte" /> + </a> + + <nav id="main-menu" class="cl-effect-5"> + <a href="./integration.html" class="current"><span data-hover="Accueil">Accueil</span></a> + <a href="./integration_metiers.html"><span data-hover="Nos métiers">Nos métiers</span></a> + <a href="./integration_valeurs.html"><span data-hover="Nos valeurs">Nos valeurs</span></a> + <a href="./integration_ref.html"><span data-hover="Nos références">Nos références</span></a> + <a href="./integration_dev.html"><span data-hover="Développement">Développement</span></a> + <a href="./integration_contact.html"><span data-hover="Contact">Contact</span></a> + </nav> + + <a href="#" id="main-menu-linkto">MENU</a> + </div> + <div class="network-banner"> + <span><a href="http://libre-entreprise.org/">Libre entreprise</a></span> + <ul> + <li>Membres</li> + <li><a href="http://www.libre-entreprise.org/charte">Valeurs</a></li> + </ul> + </div> + </header> + <div id="wrapper" class="clearfix"> + <div class="content"> + + <div class="columns"> + <div class="col-8 box"> + <div class="box-content highlight"> + <h2>Conseil & développement - Logiciel libre</h2> + <p>Créée en 2002, spécialiste des environnements libres, la SSLL (Société de Service en Logiciel Libre) Code Lutin, basée à Nantes développe son activité dans toute la France. Code Lutin est spécialisée autour des technologies Java JEE et UML: conception, architectures JEE, outils JEE, MDA (Model Driven Architecture), développement/migration d'applications JEE, formation. + </p> + </div> + </div> + <div class="col-4 box"> + <div class="box-content"> + <h3>Code Lutin est acteur et membre de réseaux pour le logiciel libre</h3> + <div class="clearfix"> + <img src="./pictures/le.png" /> + <img src="./pictures/al.png" class="float-left" /> + <img src="./pictures/april.png" class="float-right"/> + </div> + </div> + </div> + </div> + </div> + + <div class="show-grid"> + <div class="columns content"> + <div class="col-6 box"> + <img src="./pictures/work-coffee.jpg" class="box-bg" alt="Développement"/> + <div class="box-content"> + <span class="heading">Développement</span> + </div> + </div> + <div class="col-6 box"> + <img src="./pictures/work-type.jpg" class="box-bg" alt="Développement"/> + <div class="box-content"> + <span class="heading">Maintenance & intégration</span> + </div> + </div> + </div> + <div class="columns content"> + <div class="col-6 box"> + <img src="./pictures/work-map.jpg" class="box-bg" alt="Développement"/> + <div class="box-content"> + <span class="heading">Conseil & audit</span> + </div> + </div> + <div class="col-6 box"> + <img src="./pictures/work-desk.jpg" class="box-bg" alt="Développement"/> + <div class="box-content"> + <span class="heading">Formation</span> + </div> + </div> + </div> + </div> + + <div class="content"> + <div class="box"> + <div class="box-content light"> + <h2>Projets libres</h2> + <div> + <div class="box-section"> + <h3>Applications</h3> + <a href="#">Voir plus d'applications</a> + </div> + <div class="columns"> + <div class="col-4"> + <a href="#">Bow</a><div class="description">Bookmark on the web</div> + </div> + <div class="col-4"> + <a href="#">Lima</a><div class="description">Lutin Invoice Monitoring and Accounting</div> + </div> + <div class="col-4"> + <a href="#">Pollen</a><div class="description">Application de vote en mode web</div> + </div> + </div> + </div> + <div> + <div class="box-section"> + <h3>Librairies / Frameworks</h3> + <a href="#">Voir plus de librairies</a> + </div> + <div class="columns"> + <div class="col-4"> + <a href="#">JAXX</a><div class="description"></div> + </div> + <div class="col-4"> + <a href="#">ToPiA</a><div class="description"></div> + </div> + <div class="col-4"> + <a href="#">Wikitty</a><div class="description"></div> + </div> + </div> + </div> + </div> + </div> + </div> + + <div class="content marginTop30"> + <div class="columns"> + <div class="col-6 box"> + <div class="box-content"> + <h3>Articles techniques</h3> + <ul class="box-news"> + <li> + <span class="news-date">02/07 2014</span> + <span class="news-title">Mémo des étapes de rendu pour un navigateur</span> + <div class="news-content">Parlons rendu dans le navigateur sans trop rentrer dans l'implantation. Cela va vous permettre de comprendre en partie le comportement du navigateur et les erreurs à éviter.</div> + </li> + </ul> + </div> + </div> + + <div class="col-6 box"> + <div class="box-content"> + <h3>Actualités</h3> + <ul class="box-news"> + <li> + <span class="news-date">21/10 2014</span> + <span class="news-title">Financement OpenStreetMap France</span> + <div class="news-content">Tous les ans, Code Lutin reverse une petite partie de son chiffre d'affaire à la communauté du logiciel libre. Cette année, ce choix s'est porté sur l'association OSM France. Code Lutin a utilisé avec succès OSM au gré de ses projets réalisés pour ses clients. Par ailleurs, les lutins sont très contents... </div> + </li> + </ul> + </div> + </div> + </div> + </div> + </div> + <footer class="clear clearfix"> + <div class="content"> + <div class="map"> + </div> + <div class="infos"> + <ul> + <li>SARL Code Lutin</li> + <li>12 Avenue Jules Verne<br/>44230 Saint-Sébastien-Sur-Loire<br/>France</li> + <li>Tél: +33 2 40 50 29 28</li> + </ul> + + </div> + </div> + </footer> + + <a href="#" class="go-to-top fix-on-scroll"> + <svg width="100%" height="100%" viewbox="0 0 100 100" preserveAspectRatio="none"> + <path d="M 10 75 90 75 50 25"/> + </svg> + <span>Haut de la page</span> + </a> + </body> +</html> Added: siteCL-refactoring2015/integration_contact.html =================================================================== --- siteCL-refactoring2015/integration_contact.html (rev 0) +++ siteCL-refactoring2015/integration_contact.html 2015-06-02 14:55:31 UTC (rev 1585) @@ -0,0 +1,120 @@ +<html> + <head> + <title>Code Lutin</title> + <meta charset="utf-8"> + + <link type="text/css" rel="stylesheet" href="./integration.css"/> + + <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.3.min.js"></script> + <script type="text/javascript" src="./integration.js"></script> + </head> + <body> + <header> + <div class="content"> + <a class="title" href="#" title="Code Lutin"> + <img src="./logo-lutin.png" class="logo-lutin" /> + <img src="./logo-texte.png" class="logo-texte" /> + </a> + + <nav class="cl-effect-5 hide-lt-980"> + <a href="./integration.html"><span data-hover="Accueil">Accueil</span></a> + <a href="./integration_metiers.html"><span data-hover="Nos métiers">Nos métiers</span></a> + <a href="./integration_valeurs.html"><span data-hover="Nos valeurs">Nos valeurs</span></a> + <a href="./integration_ref.html"><span data-hover="Nos références">Nos références</span></a> + <a href="./integration_dev.html"><span data-hover="Développement">Développement</span></a> + <a href="./integration_contact.html" class="current"><span data-hover="Contact">Contact</span></a> + </nav> + </div> + <div class="bandeau-le"> + <span>Libre entreprise</span> + <ul> + <li>Membres</li> + <li>Valeurs</li> + </ul> + </div> + </header> + <div id="wrapper" class="clearfix"> + <div class="content"> + + <div class="columns"> + <div class="col-8 box highlight"> + <div class="box-content"> + <h2>Conseil & développement - Logiciel libre</h2> + <p>Créée en 2002, spécialiste des environnements libres, la SSLL (Société de Service en Logiciel Libre) Code Lutin, basée à Nantes développe son activité dans toute la France. Code Lutin est spécialisée autour des technologies Java JEE et UML: conception, architectures JEE, outils JEE, MDA (Model Driven Architecture), développement/migration d'applications JEE, formation. + </p> + </div> + </div> + <div class="col-4 box"> + <div class="box-content"> + <h3>Actualités</h3> + </div> + </div> + </div> + </div> + + <div class="show-grid"> + <div class="columns content"> + <div class="col-6 box box-dev"> + <div class="box-bg"></div> + <div class="box-content"> + <span class="title">Développement</span> + </div> + </div> + <div class="col-6 box box-maintenance"> + <div class="box-bg"></div> + <div class="box-content"> + <span class="title">Maintenance & intégration</span> + </div> + </div> + </div> + <div class="columns content"> + <div class="col-6 box box-audit"> + <div class="box-bg"></div> + <div class="box-content"> + <span class="title">Conseil & audit</span> + </div> + </div> + <div class="col-6 box box-formation"> + <div class="box-bg"></div> + <div class="box-content"> + <span class="title">Formation</span> + </div> + </div> + </div> + </div> + + <div class="content"> + <div class="columns"> + <div class="col-4 box"> + <div class="box-content"> + <h3>Articles techniques</h3> + <p>xxxxxx + </p> + </div> + <div class="box-content"> + <p>Code Lutin est acteur et membre de réseaux pour le logiciel libre + </p> + </div> + </div> + <div class="col-8 box light"> + <div class="box-content"> + <h2>Projets libres</h2> + </div> + </div> + </div> + </div> + </div> + <footer class="clear clearfix"> + <div class="map"> + </div> + <div class="infos"> + <ul> + <li>SARL Code Lutin</li> + <li>12 Avenue Jules Verne<br/>44230 Saint-Sébastien-Sur-Loire<br/>France</li> + <li>Tél: +33 2 40 50 29 28</li> + </ul> + + </div> + </footer> + </body> +</html> Added: siteCL-refactoring2015/integration_ref.html =================================================================== --- siteCL-refactoring2015/integration_ref.html (rev 0) +++ siteCL-refactoring2015/integration_ref.html 2015-06-02 14:55:31 UTC (rev 1585) @@ -0,0 +1,122 @@ +<html> + <head> + <title>Code Lutin</title> + <meta charset="utf-8"> + + <link type="text/css" rel="stylesheet" href="./css/integration.css"/> + <link type="text/css" rel="stylesheet" href="./css/references.css"/> + + <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.3.min.js"></script> + <script type="text/javascript" src="./js/integration.js"></script> + </head> + <body> + <header> + <div class="content"> + <a id="title" href="./integration.html" title="Code Lutin"> + <img src="./pictures/logo-lutin.svg" class="logo-lutin" /> + <img src="./pictures/logo-texte.svg" class="logo-texte" /> + </a> + + <nav id="main-menu" class="cl-effect-5"> + <a href="./integration.html"><span data-hover="Accueil">Accueil</span></a> + <a href="./integration_metiers.html"><span data-hover="Nos métiers">Nos métiers</span></a> + <a href="./integration_valeurs.html"><span data-hover="Nos valeurs">Nos valeurs</span></a> + <a href="./integration_ref.html" class="current"><span data-hover="Nos références">Nos références</span></a> + <a href="./integration_dev.html"><span data-hover="Développement">Développement</span></a> + <a href="./integration_contact.html"><span data-hover="Contact">Contact</span></a> + </nav> + + <a href="#" id="main-menu-linkto">MENU petite res.</a> + </div> + <div class="network-banner"> + <span>Libre entreprise</span> + <ul> + <li>Membres</li> + <li>Valeurs</li> + </ul> + </div> + <a href="#" class="go-to-top"> + <svg width="100%" height="100%" viewbox="0 0 100 100" preserveAspectRatio="none"> + <path d="M 10 75 90 75 50 25"/> + </svg> + </a> + </header> + <div id="wrapper" class="clearfix reference"> + + <div class="carrousel projet-inra-agrosyst"> + <div class=""> + <ul class="project-list"> + <li><img src="./pictures/logo-dgcs.png" class="client-logo" />ENC AHI</li> + <li><img src="./pictures/logo-ifremer.svg" class="client-logo" />Allegro Campagne</li> + <li class="current fix-on-scroll"><img src="./pictures/logo-inra.png" class="client-logo" />Agrosyst</li> + </ul> + + <div class="project-info clearfix"> + <div class="capture"></div> + <div class="client"> + <svg height="100%" width="100%" viewBox="0 0 100 100"> + <defs> + <filter height="130%" id="dropshadow"> + <feGaussianBlur stdDeviation="3" in="SourceAlpha"/> + <feOffset result="offsetblur" dy="2" dx="2"/> + <feMerge> + <feMergeNode/> + <feMergeNode in="SourceGraphic"/> + </feMerge> + </filter> + </defs> + <circle cx="40" cy="40" r="40" style="filter:url(#dropshadow)"/> + </svg> + <img src="./pictures/logo-inra.png"/> + </div> + <div class="project-name">Agrosyst</div> + <div class="project-description">Développement d'un outil de reporting visant à recenser l'utilisation des produits phytosanitaires dans les cultures agricoles</div> + </div> + </div> + </div> + + + <div class="content"> + <div class="columns"> + <div class="col-4 box"> + <div class="box-content reference-color"> + <h2>Le client</h2> + <div>La Direction Générale de la Cohésion Sociale (DGCS) dépend du ministère en charge des affaires sociales et est chargée de la conception, du pilotage et de l’évaluation des politiques publiques de solidarité, de développement social et de promotion de l’égalité favorisant la cohésion sociale.<br/><br/>Elle veille à la cohérence nationale et territoriale de ces politiques. Parmi celles-ci, figure la prévention et la lutte contre les exclusions, inclusion sociale et insertion des personnes en situation de précarité.Dans ce cadre, la DGCS finance les établissements du secteur de l'accueil-hébergement-insertion.</div> + </div> + <div class="box-content"> + <h2>Plus d'infos</h2> + <div></div> + </div> + </div> + <div class="col-8 box"> + <div class="box-content"> + <h2>Le challenge</h2> + <div>Une refondation du dispositif d'hébergement et d'accès au logement a été engagée en 2009. Une stratégie nationale en découle, et au cœur de cette stratégie, l'harmonisation, entre les territoires et les structures, de la prise en charge des personnes. <br/><br/>Afin de mener à bien cette démarche, la DGCS, en partenariat avec les associations, a mis en place un référentiel des prestations dispensées ainsi que des critères de qualité de ces prestations. Il est alors prévu uneétude approfondie du secteur pour étudier lescoûts associés à ces prestations.<br/><br/>L'objectif est de capitaliser la connaissancedes structures du secteur dans un systèmed'information favorisant leur valorisation etleur analyse transversale.<br/><br/>Le système d'information doit assurerglobalement les fonctions suivantes :<br/> • La saisie des données structurelles etcomptables des établissements et associationsdu secteur ;<br/> • La validation, par les agents décentralisésde l'État, des données rapportées ;</div> + + </div> + <div class="box-content highlight"> + <h2>La solution</h2> + <div>Afin de répondre aux problématiques rencontrées par la DGCS, Code Lutin a proposé un développement effectué en mode agile pour pouvoir s'adapter aux retours effectués par les représentants du secteur tout au long du projet.<br/>Les interfaces ont été conçues avec les représentants du secteur, comme un mélange d'application de gestion et d'interface grand public pour simplifier la saisie des utilisateurs.<br/>Après la saisie par les établissements dusecteur, un système de double validation auniveau départemental et régional permet degarantir la qualité des données remontées.</div> + + </div> + </div> + </div> + </div> + </div> + + <footer class="clear clearfix"> + <div class="content"> + <div class="map"> + </div> + <div class="infos"> + <ul> + <li>SARL Code Lutin</li> + <li>12 Avenue Jules Verne<br/>44230 Saint-Sébastien-Sur-Loire<br/>France</li> + <li>Tél: +33 2 40 50 29 28</li> + </ul> + + </div> + </div> + </footer> + </body> +</html> Added: siteCL-refactoring2015/js/integration.js =================================================================== --- siteCL-refactoring2015/js/integration.js (rev 0) +++ siteCL-refactoring2015/js/integration.js 2015-06-02 14:55:31 UTC (rev 1585) @@ -0,0 +1,39 @@ +$(window).on("scroll touchmove", function () { + if ($(document).scrollTop() > 100) { + $('body.home').removeClass('homepage'); + $('.fix-on-scroll').addClass('fixed'); + } else { + $('body.home').addClass('homepage'); + $('.fix-on-scroll').removeClass('fixed'); + } +}); + +function displayMenu () { + $("header").addClass("menu-opened"); + $("#main-menu-background").addClass("opened"); +} + +function hideMenu () { + $("header").removeClass("menu-opened"); + $("#main-menu-background").removeClass("opened"); +} + +$(document).ready(function() { + + $("header main-menu-linkto").click(function(event) { + event.preventDefault(); + if ($(this).hasClass("menu-opened")) { + hideMenu(); + } else { + displayMenu(); + } + }); + + $("a.go-to-top").click(function (event) { + event.preventDefault(); + $('body,html').animate({ + scrollTop: 0 , + }, 700 + ); + }); +}); Added: siteCL-refactoring2015/pictures/agrosyst-bg.png =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/pictures/agrosyst-bg.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: siteCL-refactoring2015/pictures/agrosyst-capture.png =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/pictures/agrosyst-capture.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: siteCL-refactoring2015/pictures/al.png =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/pictures/al.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: siteCL-refactoring2015/pictures/april.png =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/pictures/april.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: siteCL-refactoring2015/pictures/le.png =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/pictures/le.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: siteCL-refactoring2015/pictures/lima.png =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/pictures/lima.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: siteCL-refactoring2015/pictures/logo-bow.jpg =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/pictures/logo-bow.jpg ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: siteCL-refactoring2015/pictures/logo-dgcs.png =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/pictures/logo-dgcs.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: siteCL-refactoring2015/pictures/logo-ifremer.svg =================================================================== --- siteCL-refactoring2015/pictures/logo-ifremer.svg (rev 0) +++ siteCL-refactoring2015/pictures/logo-ifremer.svg 2015-06-02 14:55:31 UTC (rev 1585) @@ -0,0 +1,75 @@ +<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="376" + height="70" + id="svg2998" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docname="Institut français de recherche pour l'exploitation de la mer.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs3000"> + <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="perspective3006" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4680851" + inkscape:cx="188" + inkscape:cy="35" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1024" + inkscape:window-height="712" + inkscape:window-x="-4" + inkscape:window-y="-4" /> + <metadata + id="metadata3003"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-195.29964,-400.25558)"> + <path + d="M 195.29964,452.99433 L 195.29964,429.32433 L 570.41464,429.32433 L 570.41464,469.82308 L 327.42464,469.82308 L 327.42464,452.99433 L 195.29964,452.99433" + style="fill:#fff200;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path591" /> + <path + d="M 300.59214,405.38558 C 300.59214,405.11558 300.41214,404.93558 300.14214,404.93558 C 299.87339,404.93558 299.69214,405.11558 299.69214,405.38558 C 299.69214,405.56558 299.96339,405.74558 300.14214,405.74558 C 300.41214,405.74558 300.59214,405.56558 300.59214,405.38558 z M 332.72089,405.47558 C 332.72089,405.11558 332.36089,404.84558 332.09089,404.84558 C 331.73089,404.84558 331.46089,405.11558 331.46089,405.47558 C 331.46089,405.83558 331.73089,406.10558 332.09089,406.10558 C 332.45089,406.10558 332.72089,405.74558 332.72089,405.47558 z M 309.41214,400.61558 C 309.41214,400.43558 309.23214,400.25558 309.05214,400.25558 C 308.87214,400.25558 308.69214,400.43558 308.69214,400.70558 C 308.69214,400.88558 308.87214,401.06558 309.05214,401.06558 C 309.23214,401.06558 309.41214,400.88558 309.41214,400.61558 z M 311.84214,401.42558 C 311.84214,401.06558 311.48214,400.70558 311.12214,400.79558 C 310.76214,400.79558 310.40214,401.06558 310.40214,401.42558 C 310.40214,401.87558 310.76214,402.14558 311.12214,402.14558 C 311.48214,402.14558 311.84214,401.87558 311.84214,401.42558 z M 304.46214,401.51558 C 304.46214,401.24558 304.19214,400.97558 303.92214,400.97558 C 303.56214,400.97558 303.29214,401.24558 303.29214,401.60558 C 303.29214,401.87558 303.56214,402.14558 303.92214,402.14558 C 304.19214,402.14558 304.46214,401.87558 304.46214,401.51558 z M 301.31214,402.95558 C 301.31214,402.68558 301.04214,402.50558 300.77214,402.50558 C 300.50214,402.50558 300.23214,402.68558 300.23214,402.95558 C 300.23214,403.31558 300.50214,403.49558 300.77214,403.49558 C 301.04214,403.49558 301.31214,403.22558 301.31214,402.95558 z M 301.85214,406.10558 C 301.85214,406.46558 302.12214,406.73558 302.48214,406.73558 C 302.84214,406.73558 303.11214,406.46558 303.11214,406.10558 C 303.11214,405.74558 302.84214,405.47558 302.48214,405.47558 C 302.12214,405.47558 301.85214,405.74558 301.85214,406.10558 z M 303.74214,406.91558 C 303.74214,407.36558 304.10214,407.72558 304.55214,407.72558 C 305.00214,407.72558 305.36214,407.36558 305.36214,406.91558 C 305.36214,406.46558 305.00214,406.10558 304.55214,406.10558 C 304.10214,406.10558 303.74214,406.46558 303.74214,406.91558 z M 305.81214,409.61558 C 305.81214,409.79558 305.99214,409.97558 306.26214,409.97558 C 306.44214,409.97558 306.62214,409.79558 306.62214,409.61558 C 306.62214,409.34558 306.44214,409.16558 306.26214,409.16558 C 305.99214,409.16558 305.81214,409.34558 305.81214,409.61558 z M 307.52214,411.95558 C 307.16214,411.95558 306.89214,412.31558 306.89214,412.67558 C 306.89214,413.03558 307.16214,413.30558 307.52214,413.30558 C 307.88214,413.30558 308.24214,412.94558 308.24214,412.58558 C 308.24214,412.22558 307.88214,411.95558 307.52214,411.95558 z M 306.89214,415.37558 C 307.25214,415.37558 307.52214,415.10558 307.52214,414.74558 C 307.52214,414.29558 307.25214,414.02558 306.89214,414.02558 C 306.44214,414.02558 306.17214,414.29558 306.17214,414.74558 C 306.17214,415.10558 306.44214,415.37558 306.89214,415.37558 z M 303.83214,416.72558 C 304.10214,416.72558 304.28214,416.54558 304.28214,416.36558 C 304.28214,416.09558 304.01214,415.91558 303.83214,415.91558 C 303.56214,415.91558 303.38214,416.09558 303.38214,416.36558 C 303.38214,416.54558 303.65214,416.72558 303.83214,416.72558 z M 303.20214,419.06558 C 303.65214,419.06558 304.01214,418.70558 304.01214,418.34558 C 304.01214,417.89558 303.65214,417.62558 303.20214,417.62558 C 302.75214,417.62558 302.48214,417.98558 302.48214,418.34558 C 302.48214,418.70558 302.84214,419.06558 303.20214,419.06558 z M 300.14214,420.05558 C 300.14214,420.32558 300.32214,420.50558 300.50214,420.50558 C 300.68214,420.50558 300.86214,420.32558 300.86214,420.05558 C 300.86214,419.87558 300.68214,419.69558 300.50214,419.69558 C 300.32214,419.69558 300.14214,419.87558 300.14214,420.05558 z M 335.69089,438.59433 C 335.69089,438.95433 335.96089,439.31433 336.32089,439.31433 C 336.77089,439.31433 337.04089,438.95433 337.04089,438.59433 C 337.04089,438.23433 336.68089,437.96433 336.32089,437.96433 C 335.96089,437.96433 335.69089,438.23433 335.69089,438.59433 z M 337.85089,439.49433 C 337.85089,439.85433 338.12089,440.12433 338.48089,440.12433 C 338.84089,440.12433 339.20089,439.85433 339.20089,439.49433 C 339.20089,439.13433 338.84089,438.77433 338.48089,438.77433 C 338.12089,438.86433 337.85089,439.13433 337.85089,439.49433 z M 340.82089,437.96433 C 340.82089,438.32433 341.18089,438.59433 341.54089,438.59433 C 341.90089,438.59433 342.17089,438.32433 342.17089,437.96433 C 342.17089,437.60433 341.90089,437.24433 341.54089,437.33433 C 341.18089,437.33433 340.82089,437.60433 340.82089,437.96433 z M 350.81089,428.78433 C 350.81089,429.14433 351.08089,429.50433 351.44089,429.50433 C 351.80089,429.41433 352.16089,429.14433 352.07089,428.78433 C 352.07089,428.42433 351.80089,428.15558 351.44089,428.15558 C 351.08089,428.15558 350.81089,428.42433 350.81089,428.78433 z M 353.87089,427.25433 C 353.87089,427.61558 354.23089,427.97433 354.59089,427.97433 C 354.95089,427.97433 355.31089,427.61558 355.31089,427.25433 C 355.31089,426.80433 354.95089,426.53433 354.59089,426.53433 C 354.23089,426.53433 353.87089,426.89433 353.87089,427.25433 z M 347.30089,432.47433 C 347.39089,432.83433 347.66089,433.10433 348.02089,433.10433 C 348.38089,433.10433 348.65089,432.83433 348.65089,432.47433 C 348.65089,432.11433 348.38089,431.75433 348.02089,431.75433 C 347.66089,431.75433 347.30089,432.11433 347.30089,432.47433 z M 343.70089,436.25433 C 343.70089,436.61433 343.97089,436.88433 344.33089,436.88433 C 344.69089,436.88433 344.96089,436.61433 344.96089,436.25433 C 344.96089,435.89433 344.69089,435.62433 344.33089,435.62433 C 343.97089,435.62433 343.70089,435.89433 343.70089,436.25433 z M 333.44089,430.49433 C 333.44089,430.76433 333.71089,431.03433 333.98089,431.03433 C 334.25089,431.03433 334.52089,430.76433 334.52089,430.49433 C 334.52089,430.22433 334.25089,429.95433 333.98089,429.95433 C 333.71089,429.95433 333.44089,430.22433 333.44089,430.49433 z M 324.98214,432.92433 C 324.98214,433.37433 325.34214,433.82433 325.88214,433.73433 C 326.33214,433.73433 326.69214,433.37433 326.69214,432.92433 C 326.69214,432.47433 326.33214,432.11433 325.79214,432.11433 C 325.34214,432.11433 324.98214,432.47433 324.98214,432.92433 z M 321.92214,434.63433 C 321.92214,434.99433 322.19214,435.26433 322.55214,435.26433 C 323.00214,435.26433 323.27214,434.99433 323.27214,434.63433 C 323.27214,434.18433 322.91214,433.91433 322.55214,433.91433 C 322.19214,433.91433 321.92214,434.27433 321.92214,434.63433 z M 300.41214,422.30558 C 300.41214,421.94558 300.14214,421.67558 299.78214,421.67558 C 299.42214,421.67558 299.15214,421.94558 299.15214,422.30558 C 299.15214,422.66558 299.42214,422.93558 299.78214,422.93558 C 300.14214,422.93558 300.41214,422.66558 300.41214,422.30558 z M 299.78214,424.55558 C 299.78214,424.10558 299.42214,423.74558 298.97214,423.74558 C 298.52214,423.74558 298.16339,424.10558 298.16339,424.55558 C 298.16339,425.00433 298.52214,425.36558 298.97214,425.36558 C 299.42214,425.36558 299.78214,425.00433 299.78214,424.55558 z M 299.24214,426.89433 C 299.24214,426.44433 298.79214,425.99558 298.34339,425.99558 C 297.89339,425.99558 297.44339,426.44433 297.44339,426.89433 C 297.44339,427.43433 297.89339,427.79433 298.34339,427.79433 C 298.88214,427.79433 299.24214,427.34558 299.24214,426.89433 z M 296.81339,429.05433 C 296.81339,429.50433 297.17339,429.86433 297.71339,429.86433 C 298.16339,429.86433 298.61214,429.50433 298.61214,428.96433 C 298.52214,428.51433 298.16339,428.15558 297.71339,428.15558 C 297.17339,428.15558 296.81339,428.51433 296.81339,429.05433 z M 296.99339,432.02433 C 297.44339,432.02433 297.80339,431.75433 297.80339,431.30433 C 297.80339,430.85433 297.44339,430.49433 296.99339,430.58433 C 296.54339,430.58433 296.27339,430.85433 296.27339,431.30433 C 296.27339,431.75433 296.63339,432.02433 296.99339,432.02433 z M 296.36339,434.27433 C 296.81339,434.27433 297.08339,433.91433 297.08339,433.55433 C 297.08339,433.10433 296.72339,432.74433 296.36339,432.74433 C 295.91339,432.74433 295.55339,433.10433 295.55339,433.55433 C 295.55339,433.91433 295.91339,434.27433 296.36339,434.27433 z M 295.55339,436.43433 C 295.91339,436.43433 296.18339,436.16433 296.18339,435.80433 C 296.18339,435.44433 295.91339,435.17433 295.55339,435.17433 C 295.19339,435.17433 294.92339,435.44433 294.92339,435.80433 C 294.92339,436.16433 295.19339,436.43433 295.55339,436.43433 z M 294.83339,437.33433 C 294.56339,437.33433 294.29339,437.60433 294.29339,437.96433 C 294.29339,438.23433 294.56339,438.50433 294.83339,438.50433 C 295.19339,438.50433 295.46339,438.23433 295.46339,437.96433 C 295.46339,437.60433 295.19339,437.33433 294.83339,437.33433 z M 294.29339,439.58433 C 293.93339,439.58433 293.75339,439.85433 293.75339,440.12433 C 293.75339,440.48433 293.93339,440.66433 294.29339,440.66433 C 294.56339,440.66433 294.83339,440.48433 294.83339,440.12433 C 294.83339,439.85433 294.56339,439.58433 294.29339,439.58433 z M 294.20339,442.28433 C 294.20339,442.01433 293.93339,441.74433 293.57339,441.74433 C 293.30339,441.74433 293.03339,442.01433 293.03339,442.37433 C 293.03339,442.64433 293.30339,442.91433 293.66339,442.91433 C 293.93339,442.91433 294.20339,442.64433 294.20339,442.28433 z M 292.40339,444.62433 C 292.40339,444.89433 292.58339,445.07433 292.85339,445.07433 C 293.12339,445.07433 293.30339,444.89433 293.30339,444.62433 C 293.30339,444.35433 293.12339,444.17433 292.85339,444.17433 C 292.58339,444.17433 292.40339,444.35433 292.40339,444.62433 z M 291.77339,446.78433 C 291.77339,447.05433 291.95339,447.23433 292.22339,447.23433 C 292.40339,447.23433 292.58339,447.05433 292.58339,446.78433 C 292.58339,446.60433 292.40339,446.33433 292.13339,446.33433 C 291.95339,446.42433 291.77339,446.60433 291.77339,446.78433 z M 291.05339,449.03433 C 291.05339,449.30433 291.32339,449.57433 291.59339,449.57433 C 291.86339,449.57433 292.04339,449.30433 292.04339,449.03433 C 292.04339,448.76433 291.86339,448.58433 291.59339,448.58433 C 291.32339,448.58433 291.05339,448.76433 291.05339,449.03433 z M 290.42339,451.19433 C 290.42339,451.46433 290.60339,451.64433 290.87339,451.64433 C 291.05339,451.64433 291.32339,451.46433 291.32339,451.19433 C 291.32339,450.92433 291.05339,450.74433 290.87339,450.74433 C 290.60339,450.74433 290.42339,450.92433 290.42339,451.19433 z M 289.97339,453.44433 C 289.97339,453.53433 290.06339,453.62433 290.15339,453.62433 C 290.24339,453.62433 290.33339,453.53433 290.33339,453.44433 C 290.33339,453.26433 290.24339,453.17433 290.15339,453.17433 C 290.06339,453.17433 289.97339,453.26433 289.97339,453.44433 z M 297.26339,424.01558 C 297.26339,423.83558 297.17339,423.65558 296.99339,423.65558 C 296.81339,423.65558 296.63339,423.83558 296.63339,424.01558 C 296.63339,424.19558 296.81339,424.28558 296.99339,424.28558 C 297.17339,424.28558 297.26339,424.19558 297.26339,424.01558 z M 296.63339,425.99558 C 296.63339,425.72558 296.45339,425.54558 296.18339,425.54558 C 295.91339,425.54558 295.64339,425.72558 295.64339,426.08558 C 295.64339,426.35558 295.91339,426.53433 296.18339,426.53433 C 296.45339,426.53433 296.63339,426.35558 296.63339,425.99558 z M 296.27339,428.24433 C 296.18339,427.88433 295.91339,427.61558 295.55339,427.61558 C 295.10339,427.61558 294.83339,427.88433 294.83339,428.33433 C 294.83339,428.69433 295.19339,428.96433 295.55339,428.96433 C 295.91339,428.96433 296.27339,428.69433 296.27339,428.24433 z M 295.46339,430.58433 C 295.46339,430.22433 295.10339,429.86433 294.74339,429.86433 C 294.38339,429.86433 294.02339,430.22433 294.11339,430.58433 C 294.11339,430.94433 294.38339,431.30433 294.74339,431.30433 C 295.19339,431.30433 295.46339,430.94433 295.46339,430.58433 z M 294.74339,432.83433 C 294.74339,432.47433 294.47339,432.20433 294.11339,432.20433 C 293.75339,432.20433 293.48339,432.47433 293.48339,432.83433 C 293.48339,433.19433 293.84339,433.46433 294.11339,433.46433 C 294.47339,433.46433 294.74339,433.19433 294.74339,432.83433 z M 294.11339,434.90433 C 294.11339,434.54433 293.84339,434.27433 293.48339,434.27433 C 293.12339,434.27433 292.85339,434.54433 292.85339,434.90433 C 292.85339,435.26433 293.12339,435.53433 293.48339,435.53433 C 293.84339,435.53433 294.11339,435.26433 294.11339,434.90433 z M 292.76339,436.52433 C 292.49339,436.52433 292.13339,436.79433 292.13339,437.15433 C 292.13339,437.51433 292.49339,437.78433 292.85339,437.78433 C 293.12339,437.78433 293.48339,437.42433 293.48339,437.15433 C 293.39339,436.79433 293.12339,436.52433 292.76339,436.52433 z M 292.04339,438.86433 C 291.77339,438.86433 291.50339,439.13433 291.50339,439.49433 C 291.50339,439.76433 291.77339,440.03433 292.13339,440.03433 C 292.40339,440.03433 292.67339,439.76433 292.67339,439.49433 C 292.67339,439.13433 292.40339,438.86433 292.04339,438.86433 z M 291.41339,442.10433 C 291.68339,442.10433 291.86339,441.92433 291.86339,441.65433 C 291.86339,441.38433 291.68339,441.20433 291.41339,441.20433 C 291.14339,441.20433 290.96339,441.38433 290.96339,441.65433 C 290.96339,441.92433 291.14339,442.10433 291.41339,442.10433 z M 291.32339,443.81433 C 291.32339,443.63433 291.05339,443.36433 290.87339,443.45433 C 290.60339,443.45433 290.42339,443.63433 290.42339,443.81433 C 290.42339,444.08433 290.60339,444.26433 290.87339,444.26433 C 291.05339,444.26433 291.32339,444.08433 291.32339,443.81433 z M 289.61339,446.06433 C 289.61339,446.24433 289.79339,446.33433 289.97339,446.33433 C 290.15339,446.33433 290.33339,446.24433 290.33339,446.06433 C 290.33339,445.79433 290.15339,445.70433 289.97339,445.70433 C 289.79339,445.70433 289.61339,445.79433 289.61339,446.06433 z M 289.07339,448.22433 C 289.07339,448.40433 289.16339,448.49433 289.34339,448.49433 C 289.43339,448.49433 289.52339,448.40433 289.52339,448.22433 C 289.52339,448.13433 289.43339,447.95433 289.34339,447.95433 C 289.16339,447.95433 289.07339,448.13433 289.07339,448.22433 z M 288.35339,450.65433 C 288.35339,450.74433 288.44339,450.92433 288.62339,450.92433 C 288.80339,450.92433 288.89339,450.74433 288.89339,450.65433 C 288.89339,450.47433 288.80339,450.29433 288.62339,450.29433 C 288.44339,450.29433 288.35339,450.47433 288.35339,450.65433 z M 287.72339,452.81433 C 287.72339,452.99433 287.81339,453.08433 287.99339,453.08433 C 288.17339,453.08433 288.26339,452.99433 288.26339,452.81433 C 288.26339,452.63433 288.08339,452.54433 287.99339,452.54433 C 287.81339,452.54433 287.72339,452.72433 287.72339,452.81433 z M 293.39339,427.79433 C 293.39339,427.70433 293.30339,427.61558 293.12339,427.61558 C 292.94339,427.61558 292.85339,427.70433 292.85339,427.79433 C 292.85339,427.97433 293.03339,428.06433 293.12339,428.06433 C 293.30339,428.06433 293.39339,427.97433 293.39339,427.79433 z M 292.76339,429.77433 C 292.76339,429.59433 292.58339,429.50433 292.49339,429.50433 C 292.31339,429.50433 292.13339,429.59433 292.13339,429.77433 C 292.13339,429.95433 292.31339,430.13433 292.49339,430.13433 C 292.58339,430.13433 292.76339,429.95433 292.76339,429.77433 z M 292.22339,432.11433 C 292.22339,431.93433 292.04339,431.75433 291.77339,431.75433 C 291.59339,431.75433 291.41339,431.93433 291.41339,432.11433 C 291.41339,432.38433 291.59339,432.47433 291.86339,432.47433 C 292.04339,432.47433 292.22339,432.29433 292.22339,432.11433 z M 291.50339,434.36433 C 291.50339,434.18433 291.32339,434.00433 291.14339,434.00433 C 290.87339,434.00433 290.69339,434.18433 290.69339,434.36433 C 290.78339,434.63433 290.87339,434.81433 291.14339,434.72433 C 291.32339,434.72433 291.50339,434.63433 291.50339,434.36433 z M 290.60339,436.16433 C 290.33339,436.16433 290.15339,436.34433 290.15339,436.52433 C 290.15339,436.79433 290.33339,436.97433 290.60339,436.97433 C 290.78339,436.97433 290.96339,436.79433 290.96339,436.52433 C 290.96339,436.34433 290.78339,436.16433 290.60339,436.16433 z M 289.43339,438.77433 C 289.43339,438.95433 289.61339,439.13433 289.88339,439.13433 C 290.15339,439.13433 290.33339,438.95433 290.33339,438.77433 C 290.33339,438.50433 290.06339,438.32433 289.88339,438.32433 C 289.61339,438.32433 289.43339,438.50433 289.43339,438.77433 z M 289.61339,440.93433 C 289.61339,440.66433 289.43339,440.48433 289.16339,440.48433 C 288.89339,440.48433 288.71339,440.75433 288.71339,440.93433 C 288.71339,441.20433 288.98339,441.38433 289.16339,441.38433 C 289.43339,441.38433 289.61339,441.20433 289.61339,440.93433 z M 288.08339,443.18433 C 288.08339,443.45433 288.26339,443.63433 288.53339,443.63433 C 288.80339,443.63433 288.98339,443.45433 288.98339,443.18433 C 288.98339,442.91433 288.71339,442.73433 288.53339,442.73433 C 288.26339,442.73433 287.99339,442.91433 288.08339,443.18433 z M 287.45339,445.43433 C 287.54339,445.61433 287.63339,445.79433 287.81339,445.79433 C 287.99339,445.79433 288.17339,445.61433 288.17339,445.43433 C 288.17339,445.25433 287.99339,445.16433 287.81339,445.16433 C 287.63339,445.16433 287.45339,445.25433 287.45339,445.43433 z M 286.82339,447.68433 C 286.82339,447.86433 286.91339,447.95433 287.09339,447.95433 C 287.27339,447.95433 287.36339,447.86433 287.36339,447.68433 C 287.36339,447.50433 287.27339,447.41433 287.09339,447.41433 C 286.91339,447.41433 286.82339,447.50433 286.82339,447.68433 z M 286.19339,449.84433 C 286.19339,449.93433 286.28339,450.02433 286.37339,450.02433 C 286.46339,450.02433 286.55339,449.93433 286.55339,449.84433 C 286.55339,449.75433 286.46339,449.66433 286.37339,449.66433 C 286.28339,449.66433 286.19339,449.75433 286.19339,449.84433 z M 285.47339,452.18433 C 285.47339,452.27433 285.65339,452.45433 285.74339,452.45433 C 285.92339,452.45433 286.01339,452.27433 286.01339,452.18433 C 286.01339,452.00433 285.92339,451.91433 285.74339,451.91433 C 285.56339,451.91433 285.47339,452.00433 285.47339,452.18433 z M 287.90339,438.23433 C 287.90339,438.05433 287.72339,437.96433 287.63339,437.96433 C 287.54339,437.96433 287.45339,438.05433 287.45339,438.23433 C 287.45339,438.32433 287.54339,438.41433 287.63339,438.41433 C 287.72339,438.41433 287.90339,438.32433 287.90339,438.23433 z M 288.44339,436.07433 C 288.44339,435.98433 288.35339,435.89433 288.26339,435.89433 C 288.08339,435.89433 287.99339,435.98433 287.99339,436.07433 C 287.99339,436.25433 288.08339,436.34433 288.26339,436.34433 C 288.35339,436.34433 288.44339,436.25433 288.44339,436.07433 z M 287.18339,440.39433 C 287.18339,440.30433 287.09339,440.21433 287.00339,440.21433 C 286.91339,440.21433 286.82339,440.30433 286.82339,440.39433 C 286.82339,440.48433 286.91339,440.57433 287.00339,440.57433 C 287.09339,440.57433 287.18339,440.48433 287.18339,440.39433 z M 286.10339,442.64433 C 286.10339,442.73433 286.19339,442.82433 286.28339,442.82433 C 286.46339,442.82433 286.55339,442.73433 286.55339,442.55433 C 286.55339,442.46433 286.46339,442.37433 286.28339,442.37433 C 286.19339,442.37433 286.10339,442.46433 286.10339,442.64433 z M 285.56339,444.62433 C 285.47339,444.62433 285.38339,444.71433 285.38339,444.80433 C 285.38339,444.89433 285.47339,444.98433 285.56339,444.98433 C 285.74339,444.98433 285.83339,444.89433 285.83339,444.80433 C 285.83339,444.71433 285.74339,444.62433 285.56339,444.62433 z M 284.66339,446.96433 C 284.66339,447.05433 284.75339,447.14433 284.93339,447.14433 C 285.02339,447.14433 285.11339,447.05433 285.11339,446.96433 C 285.11339,446.78433 285.02339,446.69433 284.93339,446.69433 C 284.75339,446.69433 284.66339,446.78433 284.66339,446.96433 z M 284.66339,439.94433 C 284.75339,440.03433 284.84339,440.12433 284.93339,440.12433 C 285.02339,440.12433 285.11339,440.03433 285.11339,439.94433 C 285.11339,439.85433 285.02339,439.67433 284.93339,439.67433 C 284.84339,439.76433 284.66339,439.85433 284.66339,439.94433 z M 284.39339,442.10433 C 284.39339,442.01433 284.30339,441.92433 284.21339,441.92433 C 284.12339,441.92433 284.03339,442.01433 284.03339,442.10433 C 284.03339,442.28433 284.12339,442.37433 284.21339,442.37433 C 284.30339,442.37433 284.39339,442.28433 284.39339,442.10433 z M 283.31339,444.35433 C 283.31339,444.44433 283.40339,444.53433 283.49339,444.53433 C 283.67339,444.53433 283.76339,444.44433 283.76339,444.35433 C 283.76339,444.17433 283.58339,444.08433 283.49339,444.08433 C 283.40339,444.08433 283.31339,444.17433 283.31339,444.35433 z M 282.59339,446.42433 C 282.59339,446.60433 282.68339,446.69433 282.77339,446.69433 C 282.95339,446.69433 283.04339,446.60433 283.04339,446.42433 C 283.04339,446.33433 282.95339,446.24433 282.77339,446.24433 C 282.68339,446.24433 282.59339,446.33433 282.59339,446.42433 z M 284.12339,449.21433 C 284.12339,449.30433 284.21339,449.39433 284.30339,449.39433 C 284.48339,449.39433 284.57339,449.30433 284.57339,449.21433 C 284.57339,449.03433 284.48339,448.94433 284.30339,448.94433 C 284.21339,448.94433 284.12339,449.03433 284.12339,449.21433 z M 281.96339,448.58433 C 281.96339,448.76433 282.05339,448.85433 282.23339,448.85433 C 282.32339,448.85433 282.41339,448.76433 282.41339,448.58433 C 282.41339,448.49433 282.32339,448.40433 282.23339,448.40433 C 282.05339,448.40433 281.96339,448.49433 281.96339,448.58433 z M 281.24339,450.83433 C 281.24339,451.01433 281.33339,451.10433 281.51339,451.10433 C 281.60339,451.10433 281.69339,451.01433 281.69339,450.83433 C 281.69339,450.74433 281.60339,450.65433 281.42339,450.65433 C 281.33339,450.65433 281.24339,450.74433 281.24339,450.83433 z M 283.31339,451.55433 C 283.31339,451.64433 283.49339,451.73433 283.58339,451.73433 C 283.67339,451.73433 283.76339,451.64433 283.76339,451.55433 C 283.76339,451.37433 283.67339,451.28433 283.58339,451.28433 C 283.40339,451.28433 283.31339,451.37433 283.31339,451.55433 z M 300.23214,425.36558 C 300.32214,425.90558 300.68214,426.35558 301.22214,426.35558 C 301.76214,426.35558 302.21214,425.90558 302.21214,425.36558 C 302.21214,424.82558 301.76214,424.37558 301.22214,424.37558 C 300.68214,424.37558 300.23214,424.82558 300.23214,425.36558 z M 300.86214,422.93558 C 300.86214,423.47558 301.31214,423.92558 301.85214,423.92558 C 302.39214,423.92558 302.84214,423.47558 302.84214,422.93558 C 302.84214,422.39558 302.39214,421.94558 301.85214,422.03558 C 301.31214,422.03558 300.86214,422.39558 300.86214,422.93558 z M 299.60339,427.52433 C 299.60339,428.06433 300.05214,428.42433 300.59214,428.42433 C 301.13214,428.42433 301.58214,427.97433 301.58214,427.43433 C 301.58214,426.89433 301.13214,426.53433 300.59214,426.53433 C 300.05214,426.53433 299.60339,426.98433 299.60339,427.52433 z M 299.96339,430.67433 C 300.50214,430.67433 300.86214,430.31433 300.86214,429.77433 C 300.86214,429.23433 300.41214,428.87433 299.96339,428.87433 C 299.42214,428.87433 298.97214,429.23433 298.97214,429.77433 C 299.06214,430.31433 299.42214,430.67433 299.96339,430.67433 z M 299.24214,432.74433 C 299.69214,432.74433 300.05214,432.38433 300.05214,431.93433 C 300.05214,431.48433 299.69214,431.12433 299.24214,431.21433 C 298.79214,431.21433 298.43339,431.57433 298.43339,432.02433 C 298.43339,432.38433 298.79214,432.74433 299.24214,432.74433 z M 297.80339,434.18433 C 297.80339,434.54433 298.16339,434.90433 298.52214,434.90433 C 298.97214,434.90433 299.24214,434.54433 299.24214,434.18433 C 299.24214,433.73433 298.88214,433.46433 298.52214,433.46433 C 298.16339,433.46433 297.80339,433.73433 297.80339,434.18433 z M 297.80339,435.62433 C 297.44339,435.62433 297.08339,435.89433 297.08339,436.34433 C 297.08339,436.70433 297.44339,436.97433 297.80339,436.97433 C 298.25339,436.97433 298.52214,436.70433 298.52214,436.25433 C 298.52214,435.89433 298.25339,435.53433 297.80339,435.62433 z M 297.26339,438.05433 C 296.90339,438.05433 296.63339,438.32433 296.63339,438.68433 C 296.63339,438.95433 296.90339,439.22433 297.26339,439.22433 C 297.53339,439.22433 297.80339,438.95433 297.80339,438.68433 C 297.80339,438.32433 297.53339,438.05433 297.26339,438.05433 z M 296.45339,440.21433 C 296.09339,440.21433 295.82339,440.57433 295.82339,440.93433 C 295.82339,441.20433 296.09339,441.56433 296.45339,441.56433 C 296.81339,441.47433 297.08339,441.20433 297.08339,440.84433 C 297.08339,440.57433 296.81339,440.21433 296.45339,440.21433 z M 296.36339,443.00433 C 296.36339,442.73433 296.09339,442.46433 295.73339,442.46433 C 295.46339,442.46433 295.19339,442.73433 295.19339,443.09433 C 295.19339,443.36433 295.46339,443.63433 295.73339,443.63433 C 296.09339,443.63433 296.36339,443.36433 296.36339,443.00433 z M 294.56339,445.25433 C 294.56339,445.52433 294.74339,445.79433 295.10339,445.79433 C 295.37339,445.70433 295.55339,445.52433 295.55339,445.25433 C 295.55339,444.98433 295.37339,444.71433 295.01339,444.71433 C 294.74339,444.71433 294.56339,444.98433 294.56339,445.25433 z M 293.75339,447.50433 C 293.75339,447.77433 294.02339,448.04433 294.38339,448.04433 C 294.74339,448.04433 295.01339,447.77433 295.01339,447.50433 C 295.01339,447.14433 294.74339,446.87433 294.38339,446.87433 C 294.02339,446.87433 293.75339,447.14433 293.75339,447.50433 z M 293.21339,449.66433 C 293.21339,449.93433 293.39339,450.20433 293.75339,450.11433 C 294.02339,450.11433 294.20339,449.93433 294.20339,449.66433 C 294.20339,449.30433 294.02339,449.12433 293.75339,449.12433 C 293.39339,449.12433 293.21339,449.39433 293.21339,449.66433 z M 292.85339,452.00433 C 292.85339,452.09433 292.94339,452.27433 293.12339,452.18433 C 293.21339,452.18433 293.30339,452.09433 293.30339,452.00433 C 293.30339,451.82433 293.21339,451.73433 293.12339,451.73433 C 292.94339,451.73433 292.85339,451.82433 292.85339,452.00433 z M 292.22339,454.07433 C 292.22339,454.16433 292.31339,454.25433 292.40339,454.25433 C 292.49339,454.25433 292.58339,454.16433 292.58339,454.07433 C 292.58339,453.98433 292.49339,453.89433 292.40339,453.89433 C 292.31339,453.89433 292.22339,453.98433 292.22339,454.07433 z M 301.67214,428.15558 C 301.67214,428.78433 302.21214,429.23433 302.75214,429.23433 C 303.29214,429.23433 303.83214,428.78433 303.83214,428.15558 C 303.83214,427.61558 303.29214,427.16433 302.75214,427.16433 C 302.12214,427.16433 301.67214,427.61558 301.67214,428.15558 z M 302.39214,426.08558 C 302.39214,426.62558 302.84214,427.07558 303.38214,427.07558 C 304.01214,427.07558 304.46214,426.62558 304.46214,425.99558 C 304.46214,425.45558 304.01214,425.00433 303.38214,425.00433 C 302.84214,425.00433 302.30214,425.45558 302.39214,426.08558 z M 305.00214,416.99558 C 305.09214,417.62558 305.54214,418.07558 306.08214,418.07558 C 306.71214,418.07558 307.16214,417.62558 307.16214,416.99558 C 307.16214,416.45558 306.71214,416.00558 306.08214,416.00558 C 305.54214,416.00558 305.00214,416.45558 305.00214,416.99558 z M 301.67214,420.68558 C 301.67214,421.13558 302.12214,421.58558 302.57214,421.49558 C 303.02214,421.49558 303.47214,421.13558 303.47214,420.68558 C 303.38214,420.23558 303.02214,419.78558 302.57214,419.78558 C 302.12214,419.78558 301.67214,420.23558 301.67214,420.68558 z M 301.49214,433.55433 C 301.94214,433.55433 302.39214,433.10433 302.39214,432.65433 C 302.39214,432.11433 301.94214,431.75433 301.49214,431.75433 C 300.95214,431.75433 300.59214,432.20433 300.59214,432.65433 C 300.59214,433.10433 300.95214,433.55433 301.49214,433.55433 z M 300.77214,434.09433 C 300.32214,434.09433 299.96339,434.45433 299.96339,434.90433 C 299.96339,435.35433 300.41214,435.71433 300.77214,435.71433 C 301.22214,435.62433 301.58214,435.26433 301.58214,434.90433 C 301.58214,434.45433 301.22214,434.09433 300.77214,434.09433 z M 299.96339,436.34433 C 299.60339,436.34433 299.24214,436.70433 299.24214,437.06433 C 299.24214,437.51433 299.60339,437.87433 299.96339,437.87433 C 300.41214,437.87433 300.77214,437.51433 300.77214,437.06433 C 300.77214,436.70433 300.41214,436.34433 299.96339,436.34433 z M 299.33339,438.68433 C 298.88214,438.68433 298.61214,439.04433 298.61214,439.40433 C 298.61214,439.76433 298.97214,440.12433 299.33339,440.12433 C 299.69214,440.12433 300.05214,439.76433 300.05214,439.40433 C 300.05214,438.95433 299.69214,438.68433 299.33339,438.68433 z M 299.33339,441.47433 C 299.33339,441.11433 299.06214,440.84433 298.70214,440.84433 C 298.34339,440.84433 298.07339,441.11433 298.07339,441.47433 C 298.07339,441.83433 298.34339,442.10433 298.70214,442.10433 C 299.06214,442.10433 299.33339,441.83433 299.33339,441.47433 z M 297.44339,443.81433 C 297.44339,444.08433 297.71339,444.35433 297.98339,444.35433 C 298.34339,444.35433 298.52214,444.08433 298.52214,443.81433 C 298.52214,443.45433 298.25339,443.27433 297.98339,443.27433 C 297.71339,443.27433 297.44339,443.45433 297.44339,443.81433 z M 296.63339,445.97433 C 296.63339,446.33433 296.99339,446.69433 297.35339,446.69433 C 297.71339,446.69433 298.07339,446.33433 298.07339,445.97433 C 298.07339,445.61433 297.71339,445.25433 297.35339,445.25433 C 296.99339,445.25433 296.63339,445.61433 296.63339,445.97433 z M 295.91339,448.22433 C 295.91339,448.58433 296.27339,448.85433 296.63339,448.85433 C 296.99339,448.85433 297.26339,448.58433 297.26339,448.22433 C 297.26339,447.86433 296.99339,447.50433 296.63339,447.50433 C 296.27339,447.50433 295.91339,447.86433 295.91339,448.22433 z M 295.55339,450.47433 C 295.55339,450.65433 295.73339,450.74433 295.82339,450.74433 C 296.00339,450.74433 296.09339,450.65433 296.09339,450.47433 C 296.09339,450.29433 296.00339,450.20433 295.82339,450.20433 C 295.73339,450.20433 295.55339,450.29433 295.55339,450.47433 z M 295.01339,452.54433 C 295.01339,452.63433 295.10339,452.72433 295.19339,452.72433 C 295.28339,452.72433 295.37339,452.63433 295.37339,452.54433 C 295.37339,452.45433 295.28339,452.36433 295.19339,452.36433 C 295.10339,452.36433 295.01339,452.45433 295.01339,452.54433 z M 304.28214,432.11433 C 304.82214,432.11433 305.27214,431.66433 305.27214,431.12433 C 305.27214,430.58433 304.82214,430.13433 304.28214,430.13433 C 303.74214,430.22433 303.29214,430.58433 303.29214,431.12433 C 303.29214,431.66433 303.74214,432.11433 304.28214,432.11433 z M 302.12214,431.39433 C 302.66214,431.39433 303.11214,430.94433 303.11214,430.40433 C 303.11214,429.86433 302.66214,429.50433 302.12214,429.50433 C 301.58214,429.50433 301.13214,429.95433 301.13214,430.49433 C 301.13214,431.03433 301.58214,431.39433 302.12214,431.39433 z M 303.65214,432.47433 C 303.20214,432.47433 302.75214,432.83433 302.75214,433.37433 C 302.75214,433.82433 303.20214,434.27433 303.65214,434.18433 C 304.19214,434.18433 304.55214,433.82433 304.55214,433.37433 C 304.55214,432.83433 304.10214,432.47433 303.65214,432.47433 z M 303.02214,434.72433 C 302.57214,434.72433 302.21214,435.08433 302.21214,435.53433 C 302.21214,435.98433 302.57214,436.34433 303.02214,436.34433 C 303.47214,436.34433 303.83214,435.98433 303.83214,435.53433 C 303.83214,435.08433 303.47214,434.72433 303.02214,434.72433 z M 302.30214,437.06433 C 301.85214,437.06433 301.49214,437.42433 301.49214,437.87433 C 301.49214,438.32433 301.85214,438.68433 302.30214,438.59433 C 302.75214,438.59433 303.11214,438.23433 303.11214,437.78433 C 303.11214,437.42433 302.75214,437.06433 302.30214,437.06433 z M 302.30214,439.94433 C 302.30214,439.58433 301.94214,439.22433 301.58214,439.22433 C 301.22214,439.22433 300.86214,439.58433 300.86214,439.94433 C 300.86214,440.39433 301.22214,440.66433 301.58214,440.66433 C 302.03214,440.66433 302.30214,440.39433 302.30214,439.94433 z M 300.32214,442.28433 C 300.32214,442.64433 300.59214,442.91433 300.95214,442.91433 C 301.40214,442.91433 301.67214,442.64433 301.67214,442.28433 C 301.67214,441.83433 301.31214,441.56433 300.95214,441.56433 C 300.59214,441.56433 300.32214,441.92433 300.32214,442.28433 z M 299.42214,444.44433 C 299.42214,444.89433 299.78214,445.25433 300.23214,445.25433 C 300.77214,445.25433 301.13214,444.89433 301.13214,444.44433 C 301.13214,443.90433 300.68214,443.54433 300.23214,443.54433 C 299.78214,443.54433 299.42214,443.99433 299.42214,444.44433 z M 298.79214,446.60433 C 298.79214,446.96433 299.06214,447.23433 299.42214,447.23433 C 299.87339,447.23433 300.14214,446.96433 300.14214,446.60433 C 300.14214,446.24433 299.78214,445.88433 299.42214,445.88433 C 299.06214,445.88433 298.79214,446.24433 298.79214,446.60433 z M 298.61214,448.85433 C 298.61214,449.03433 298.70214,449.12433 298.88214,449.12433 C 299.06214,449.12433 299.15214,448.94433 299.15214,448.85433 C 299.15214,448.67433 299.06214,448.58433 298.88214,448.58433 C 298.70214,448.58433 298.61214,448.67433 298.61214,448.85433 z M 305.99214,433.01433 C 305.36214,433.10433 304.91214,433.55433 304.91214,434.09433 C 304.91214,434.63433 305.45214,435.08433 305.99214,435.08433 C 306.53214,435.08433 306.98214,434.63433 306.98214,434.09433 C 306.98214,433.46433 306.53214,433.01433 305.99214,433.01433 z M 306.17214,436.16433 C 306.17214,435.62433 305.72214,435.26433 305.18214,435.26433 C 304.64214,435.26433 304.19214,435.71433 304.19214,436.25433 C 304.19214,436.79433 304.64214,437.15433 305.18214,437.15433 C 305.72214,437.15433 306.17214,436.70433 306.17214,436.16433 z M 304.55214,437.51433 C 304.10214,437.51433 303.65214,437.96433 303.65214,438.41433 C 303.65214,438.95433 304.10214,439.40433 304.64214,439.40433 C 305.09214,439.40433 305.54214,438.95433 305.54214,438.41433 C 305.54214,437.87433 305.09214,437.51433 304.55214,437.51433 z M 302.93214,440.66433 C 302.93214,441.11433 303.29214,441.47433 303.74214,441.47433 C 304.19214,441.47433 304.55214,441.11433 304.55214,440.66433 C 304.55214,440.12433 304.19214,439.76433 303.74214,439.76433 C 303.29214,439.76433 302.93214,440.21433 302.93214,440.66433 z M 302.30214,442.82433 C 302.39214,443.36433 302.75214,443.72433 303.29214,443.72433 C 303.74214,443.72433 304.19214,443.27433 304.19214,442.82433 C 304.10214,442.28433 303.74214,441.92433 303.20214,441.92433 C 302.75214,441.92433 302.30214,442.37433 302.30214,442.82433 z M 301.76214,445.16433 C 301.76214,445.61433 302.12214,445.97433 302.48214,445.97433 C 302.93214,445.97433 303.29214,445.61433 303.29214,445.16433 C 303.29214,444.71433 302.93214,444.44433 302.48214,444.44433 C 302.03214,444.44433 301.76214,444.80433 301.76214,445.16433 z M 301.49214,447.41433 C 301.49214,447.50433 301.58214,447.59433 301.76214,447.59433 C 301.85214,447.59433 301.94214,447.50433 301.94214,447.41433 C 301.94214,447.23433 301.85214,447.14433 301.76214,447.14433 C 301.58214,447.14433 301.49214,447.23433 301.49214,447.41433 z M 307.61214,439.13433 C 307.61214,438.50433 307.16214,438.05433 306.62214,438.14433 C 306.08214,438.14433 305.63214,438.59433 305.63214,439.13433 C 305.63214,439.67433 306.08214,440.12433 306.62214,440.12433 C 307.25214,440.12433 307.70214,439.67433 307.61214,439.13433 z M 306.17214,436.97433 C 306.17214,437.60433 306.71214,438.05433 307.25214,438.05433 C 307.88214,438.05433 308.42214,437.51433 308.42214,436.97433 C 308.42214,436.34433 307.88214,435.80433 307.25214,435.80433 C 306.62214,435.89433 306.17214,436.34433 306.17214,436.97433 z M 304.91214,441.47433 C 304.91214,442.01433 305.36214,442.55433 305.99214,442.55433 C 306.62214,442.55433 307.07214,442.01433 307.07214,441.38433 C 307.07214,440.84433 306.53214,440.30433 305.99214,440.30433 C 305.36214,440.39433 304.91214,440.84433 304.91214,441.47433 z M 304.64214,443.72433 C 304.64214,444.08433 305.00214,444.35433 305.36214,444.35433 C 305.72214,444.35433 305.99214,444.08433 305.99214,443.72433 C 305.99214,443.36433 305.72214,443.00433 305.36214,443.00433 C 305.00214,443.00433 304.64214,443.36433 304.64214,443.72433 z M 307.61214,442.10433 C 307.61214,442.46433 307.88214,442.73433 308.24214,442.73433 C 308.51214,442.73433 308.78214,442.46433 308.78214,442.10433 C 308.78214,441.74433 308.51214,441.47433 308.24214,441.47433 C 307.88214,441.47433 307.61214,441.74433 307.61214,442.10433 z M 305.36214,432.02433 C 305.45214,432.56433 305.90214,433.01433 306.44214,433.01433 C 307.07214,433.01433 307.52214,432.56433 307.52214,431.93433 C 307.52214,431.39433 307.07214,430.94433 306.44214,430.94433 C 305.90214,430.94433 305.36214,431.39433 305.36214,432.02433 z M 303.83214,428.96433 C 303.83214,429.59433 304.28214,430.04433 304.91214,430.04433 C 305.54214,430.04433 305.99214,429.59433 305.99214,428.96433 C 305.99214,428.33433 305.45214,427.88433 304.91214,427.88433 C 304.28214,427.88433 303.74214,428.33433 303.83214,428.96433 z M 310.40214,440.66433 C 310.40214,441.11433 310.76214,441.38433 311.12214,441.38433 C 311.57214,441.38433 311.84214,441.02433 311.84214,440.66433 C 311.84214,440.30433 311.48214,439.94433 311.12214,439.94433 C 310.76214,439.94433 310.40214,440.30433 310.40214,440.66433 z M 313.28214,439.04433 C 313.28214,439.49433 313.55214,439.76433 314.00214,439.76433 C 314.36214,439.76433 314.63214,439.49433 314.63214,439.04433 C 314.63214,438.68433 314.36214,438.41433 313.91214,438.41433 C 313.55214,438.41433 313.28214,438.68433 313.28214,439.04433 z M 315.98214,437.69433 C 315.98214,438.05433 316.25214,438.41433 316.61214,438.41433 C 317.06214,438.41433 317.33214,438.05433 317.33214,437.69433 C 317.33214,437.24433 317.06214,436.97433 316.61214,436.97433 C 316.25214,436.97433 315.89214,437.33433 315.98214,437.69433 z M 319.31214,435.98433 C 319.31214,436.34433 319.58214,436.70433 319.94214,436.70433 C 320.39214,436.70433 320.66214,436.34433 320.66214,435.98433 C 320.66214,435.62433 320.39214,435.26433 319.94214,435.26433 C 319.58214,435.26433 319.31214,435.62433 319.31214,435.98433 z M 385.72964,419.87558 C 384.91964,419.15558 384.37964,418.25558 384.10964,417.71558 C 383.65964,416.45558 381.85964,413.66558 379.96964,411.95558 C 376.63964,408.71558 373.39964,407.63558 367.63964,406.55558 C 367.63964,406.55558 360.62089,405.20558 351.17089,405.56558 C 350.54089,405.56558 350.09089,406.01558 350.00089,406.55558 C 350.00089,406.46558 349.91089,406.37558 349.91089,406.37558 C 349.82089,406.37558 349.82089,406.37558 349.73089,406.37558 C 349.82089,406.28558 349.91089,406.10558 349.91089,405.92558 C 349.91089,405.38558 349.46089,404.93558 348.92089,404.93558 C 348.38089,404.93558 347.93089,405.38558 347.93089,405.92558 L 347.93089,406.01558 C 347.84089,405.83558 347.75089,405.74558 347.57089,405.74558 C 347.39089,405.74558 347.21089,405.92558 347.21089,406.19558 C 347.21089,406.19558 347.21089,406.19558 347.21089,406.28558 C 347.03089,406.01558 346.67089,405.83558 346.31089,405.83558 C 345.77089,405.83558 345.32089,406.10558 345.23089,406.64558 C 345.23089,406.46558 345.05089,406.37558 344.96089,406.37558 C 344.87089,406.37558 344.78089,406.37558 344.78089,406.37558 C 344.78089,406.28558 344.78089,406.19558 344.78089,406.10558 C 344.78089,405.65558 344.42089,405.20558 343.97089,405.20558 C 343.52089,405.20558 343.16089,405.65558 343.16089,406.10558 C 343.07089,406.01558 342.98089,405.92558 342.80089,405.92558 C 342.71089,405.92558 342.53089,406.01558 342.53089,406.10558 L 342.53089,406.01558 C 342.53089,405.38558 341.99089,404.93558 341.45089,404.93558 C 340.82089,404.93558 340.37089,405.47558 340.37089,406.01558 C 340.37089,406.19558 340.37089,406.37558 340.46089,406.55558 C 340.46089,406.46558 340.37089,406.46558 340.28089,406.46558 C 340.10089,406.46558 339.92089,406.64558 339.92089,406.82558 C 339.74089,406.28558 339.29089,406.01558 338.75089,406.01558 C 338.21089,406.01558 337.85089,406.28558 337.67089,406.73558 C 337.49089,406.19558 337.04089,405.83558 336.50089,405.92558 C 335.78089,405.92558 335.24089,406.46558 335.24089,407.09558 C 335.24089,407.18558 335.33089,407.27558 335.33089,407.36558 C 335.24089,407.27558 335.15089,407.18558 334.97089,407.18558 C 334.79089,407.18558 334.61089,407.36558 334.61089,407.54558 C 334.52089,407.27558 334.34089,407.09558 334.16089,407.00558 C 334.61089,406.91558 334.88089,406.55558 334.88089,406.10558 C 334.88089,405.65558 334.52089,405.29558 333.98089,405.29558 C 333.53089,405.29558 333.17089,405.65558 333.17089,406.10558 C 333.17089,406.37558 333.26089,406.55558 333.44089,406.73558 C 332.90089,406.73558 332.45089,407.09558 332.27089,407.54558 C 332.27089,407.45558 332.27089,407.45558 332.27089,407.45558 C 332.27089,406.82558 331.82089,406.37558 331.19089,406.37558 C 330.74089,406.37558 330.29089,406.73558 330.20089,407.18558 L 330.11089,407.09558 C 330.11089,407.09558 330.11089,407.18558 330.02089,407.18558 C 330.11089,407.09558 330.11089,407.09558 330.11089,407.09558 C 330.02089,406.46558 329.57214,406.01558 328.94214,406.01558 C 328.31214,406.01558 327.77214,406.55558 327.86214,407.09558 C 327.86214,407.18558 327.86214,407.27558 327.86214,407.36558 C 327.68214,407.36558 327.50214,407.45558 327.41214,407.54558 C 327.23214,407.36558 327.14214,407.18558 326.96214,407.09558 C 327.32214,407.00558 327.59214,406.64558 327.59214,406.28558 C 327.50214,405.74558 327.14214,405.38558 326.69214,405.38558 C 326.15214,405.38558 325.79214,405.83558 325.79214,406.28558 C 325.79214,406.46558 325.88214,406.73558 326.06214,406.82558 C 325.70214,406.82558 325.43214,407.00558 325.25214,407.09558 C 325.16214,406.82558 324.98214,406.64558 324.80214,406.46558 C 325.16214,406.37558 325.43214,406.01558 325.43214,405.56558 C 325.43214,405.11558 325.07214,404.66558 324.53214,404.66558 C 323.99214,404.75558 323.63214,405.11558 323.63214,405.65558 C 323.63214,405.83558 323.72214,406.01558 323.81214,406.19558 C 323.54214,406.19558 323.27214,406.28558 323.09214,406.37558 C 323.00214,406.10558 322.82214,405.92558 322.64214,405.74558 C 323.00214,405.56558 323.18214,405.29558 323.18214,404.84558 C 323.18214,404.39558 322.82214,403.94558 322.28214,403.94558 C 321.83214,404.03558 321.38214,404.39558 321.38214,404.93558 C 321.38214,405.11558 321.47214,405.20558 321.56214,405.38558 C 321.29214,405.38558 321.11214,405.47558 320.84214,405.56558 C 320.75214,405.38558 320.66214,405.11558 320.39214,405.02558 C 320.75214,404.93558 321.02214,404.57558 321.02214,404.12558 C 321.02214,403.67558 320.66214,403.31558 320.21214,403.31558 C 319.67214,403.31558 319.31214,403.67558 319.31214,404.12558 C 319.31214,404.39558 319.40214,404.57558 319.49214,404.66558 C 319.22214,404.66558 318.86214,404.75558 318.68214,404.93558 C 318.59214,404.66558 318.41214,404.48558 318.14214,404.30558 C 318.50214,404.21558 318.77214,403.85558 318.77214,403.49558 C 318.77214,402.95558 318.32214,402.59558 317.87214,402.59558 C 317.42214,402.59558 316.97214,403.04558 316.97214,403.49558 C 316.97214,403.67558 317.06214,403.85558 317.24214,404.03558 C 316.88214,404.03558 316.61214,404.12558 316.43214,404.30558 C 316.34214,403.94558 316.16214,403.76558 315.98214,403.49558 C 316.25214,403.40558 316.43214,403.13558 316.43214,402.77558 C 316.43214,402.23558 315.98214,401.87558 315.53214,401.87558 C 315.08214,401.87558 314.63214,402.32558 314.63214,402.77558 C 314.63214,402.95558 314.72214,403.04558 314.81214,403.22558 C 314.45214,403.22558 314.27214,403.31558 314.00214,403.49558 C 313.91214,403.22558 313.73214,402.95558 313.55214,402.86558 C 313.82214,402.77558 314.09214,402.41558 314.09214,402.05558 C 314.09214,401.60558 313.73214,401.33558 313.28214,401.33558 C 312.92214,401.33558 312.56214,401.69558 312.56214,402.05558 C 312.56214,402.23558 312.65214,402.41558 312.74214,402.59558 C 312.65214,402.50558 312.65214,402.50558 312.65214,402.50558 C 312.20214,402.50558 311.84214,402.68558 311.57214,402.95558 C 311.39214,402.59558 311.03214,402.32558 310.49214,402.32558 C 310.13214,402.32558 309.86214,402.50558 309.68214,402.68558 C 309.50214,402.14558 309.05214,401.78558 308.42214,401.78558 C 307.79214,401.78558 307.25214,402.32558 307.25214,402.95558 C 307.25214,403.22558 307.34214,403.49558 307.52214,403.67558 L 307.43214,403.67558 C 307.16214,403.67558 306.89214,403.85558 306.71214,404.03558 C 306.62214,403.76558 306.44214,403.49558 306.26214,403.31558 C 306.62214,403.13558 306.89214,402.77558 306.89214,402.32558 C 306.89214,401.78558 306.44214,401.24558 305.90214,401.33558 C 305.27214,401.33558 304.82214,401.78558 304.82214,402.32558 C 304.82214,402.59558 304.91214,402.77558 305.09214,402.95558 C 304.73214,403.04558 304.37214,403.22558 304.19214,403.49558 C 304.01214,403.04558 303.56214,402.68558 303.11214,402.68558 C 302.48214,402.68558 301.94214,403.22558 301.94214,403.85558 C 301.94214,404.48558 302.48214,405.02558 303.11214,405.02558 C 303.38214,405.02558 303.65214,404.93558 303.83214,404.75558 C 304.01214,405.38558 304.55214,405.92558 305.27214,405.92558 C 305.63214,405.92558 305.90214,405.83558 306.08214,405.65558 C 306.08214,405.74558 306.08214,405.74558 306.08214,405.74558 C 306.08214,406.01558 306.17214,406.28558 306.35214,406.46558 C 305.99214,406.64558 305.63214,407.09558 305.72214,407.54558 C 305.72214,408.17558 306.17214,408.62558 306.80214,408.62558 C 307.16214,408.62558 307.43214,408.53558 307.61214,408.35558 C 307.79214,408.98558 308.42214,409.52558 309.14214,409.52558 C 309.32214,409.52558 309.50214,409.43558 309.68214,409.43558 C 309.68214,409.52558 309.77214,409.61558 309.77214,409.70558 C 309.59214,409.88558 309.32214,410.15558 309.23214,410.42558 C 309.14214,409.97558 308.78214,409.61558 308.33214,409.61558 C 307.88214,409.61558 307.43214,410.06558 307.43214,410.51558 C 307.43214,411.05558 307.88214,411.41558 308.33214,411.41558 C 308.69214,411.41558 308.96214,411.23558 309.05214,411.05558 C 309.05214,411.05558 309.05214,411.14558 309.05214,411.23558 C 309.05214,411.50558 309.14214,411.86558 309.32214,412.13558 C 308.87214,412.31558 308.60214,412.76558 308.60214,413.30558 C 308.60214,413.57558 308.69214,413.93558 308.87214,414.11558 C 308.87214,414.20558 308.78214,414.29558 308.78214,414.38558 C 308.24214,414.47558 307.70214,415.01558 307.70214,415.64558 C 307.70214,416.00558 307.97214,416.36558 308.24214,416.54558 C 307.61214,416.63558 307.07214,417.26558 307.07214,417.89558 C 307.07214,418.25558 307.25214,418.61558 307.43214,418.79558 C 307.34214,418.79558 306.89214,418.88558 306.53214,419.24558 C 306.53214,418.70558 306.08214,418.25558 305.54214,418.25558 C 304.91214,418.25558 304.46214,418.79558 304.46214,419.33558 C 304.46214,419.96558 305.00214,420.41558 305.54214,420.41558 C 305.81214,420.41558 306.08214,420.23558 306.26214,420.05558 C 306.26214,420.59558 306.44214,420.95558 306.71214,421.13558 C 306.44214,421.22558 306.17214,421.40558 305.99214,421.67558 C 305.99214,420.95558 305.36214,420.41558 304.73214,420.41558 C 304.01214,420.41558 303.47214,420.95558 303.56214,421.67558 C 303.56214,422.03558 303.65214,422.30558 303.92214,422.48558 C 303.29214,422.57558 302.84214,423.11558 302.84214,423.74558 C 302.84214,424.46558 303.38214,425.00433 304.10214,425.00433 C 304.46214,424.91558 304.73214,424.82558 305.00214,424.46558 C 305.00214,424.55558 304.91214,425.36558 305.54214,425.63558 C 305.00214,425.72558 304.55214,426.17558 304.55214,426.71433 C 304.55214,427.34558 305.00214,427.79433 305.63214,427.79433 C 305.99214,427.79433 306.35214,427.70433 306.53214,427.43433 L 306.53214,427.52433 C 306.53214,427.97433 306.80214,428.33433 307.16214,428.60433 C 306.53214,428.60433 305.99214,429.14433 305.99214,429.77433 C 305.99214,430.40433 306.53214,430.85433 307.16214,430.85433 C 307.43214,430.85433 307.70214,430.76433 307.97214,430.58433 C 307.97214,430.94433 308.15214,431.30433 308.42214,431.48433 C 307.97214,431.66433 307.52214,432.11433 307.61214,432.65433 C 307.61214,433.01433 307.79214,433.37433 308.06214,433.64433 C 307.52214,433.64433 306.98214,434.09433 306.98214,434.72433 C 307.07214,435.35433 307.52214,435.80433 308.15214,435.80433 C 308.51214,435.80433 308.78214,435.71433 308.96214,435.44433 C 308.78214,436.25433 309.59214,436.61433 309.50214,436.61433 C 308.78214,436.70433 308.33214,437.15433 308.42214,437.78433 C 308.42214,438.23433 308.60214,438.50433 308.87214,438.77433 C 308.24214,438.77433 307.70214,439.31433 307.70214,439.94433 C 307.70214,440.57433 308.24214,441.02433 308.87214,441.02433 C 309.50214,441.02433 310.04214,440.48433 310.04214,439.85433 C 310.04214,439.49433 309.86214,439.22433 309.59214,438.95433 C 310.22214,438.95433 310.76214,438.41433 310.67214,437.78433 C 310.67214,437.42433 310.49214,436.97433 310.13214,436.79433 C 310.49214,436.88433 311.03214,436.61433 311.21214,436.34433 C 311.21214,436.70433 311.48214,437.15433 311.84214,437.33433 C 311.21214,437.33433 310.67214,437.87433 310.67214,438.50433 C 310.67214,439.13433 311.21214,439.67433 311.84214,439.58433 C 312.47214,439.58433 313.01214,439.13433 313.01214,438.50433 C 313.01214,438.05433 312.47214,437.51433 312.47214,437.51433 C 312.92214,437.51433 313.28214,437.33433 313.46214,437.06433 C 313.46214,437.06433 313.64214,438.23433 314.72214,438.23433 C 315.35214,438.23433 315.89214,437.69433 315.89214,437.06433 C 315.89214,436.79433 315.71214,436.52433 315.53214,436.25433 C 315.53214,436.25433 316.07214,436.25433 316.34214,436.07433 C 316.52214,436.61433 317.06214,436.97433 317.69214,436.97433 C 318.50214,436.97433 319.13214,436.34433 319.13214,435.53433 C 319.13214,434.90433 318.77214,434.36433 318.32214,434.18433 C 318.68214,434.18433 318.95214,434.00433 319.13214,433.82433 C 319.13214,433.82433 319.13214,433.82433 319.13214,433.91433 C 319.22214,434.63433 319.76214,435.17433 320.48214,435.17433 C 321.20214,435.17433 321.83214,434.63433 321.83214,433.82433 C 321.83214,433.46433 321.65214,433.10433 321.29214,432.92433 C 321.74214,432.83433 322.01214,432.65433 322.28214,432.38433 C 322.28214,432.47433 322.28214,432.47433 322.28214,432.56433 C 322.28214,433.28433 322.82214,433.82433 323.54214,433.82433 C 324.35214,433.82433 324.89214,433.19433 324.89214,432.47433 C 324.89214,432.02433 324.62214,431.66433 324.26214,431.39433 C 324.62214,431.39433 324.98214,431.21433 325.25214,430.94433 C 325.34214,431.57433 325.88214,432.11433 326.51214,432.11433 C 326.96214,432.11433 327.32214,431.84433 327.59214,431.57433 C 327.68214,432.11433 328.13214,432.47433 328.67214,432.47433 C 329.30214,432.47433 329.75214,431.93433 329.75214,431.30433 C 329.75214,430.94433 329.57214,430.58433 329.30214,430.40433 C 330.02089,430.40433 330.65089,429.77433 330.65089,429.05433 C 330.65089,428.78433 330.56089,428.60433 330.47089,428.42433 C 330.65089,428.33433 330.74089,428.33433 330.92089,428.15558 C 330.92089,428.60433 331.19089,428.87433 331.46089,429.05433 C 331.10089,429.23433 330.83089,429.59433 330.83089,429.95433 C 330.83089,430.49433 331.28089,430.94433 331.82089,430.94433 C 332.27089,430.94433 332.72089,430.49433 332.72089,429.95433 C 332.72089,429.68433 332.63089,429.50433 332.45089,429.32433 C 332.81089,429.32433 333.08089,429.14433 333.35089,428.87433 C 333.53089,429.23433 333.98089,429.41433 334.43089,429.41433 C 335.15089,429.41433 335.78089,428.78433 335.78089,428.06433 C 335.78089,427.97433 335.78089,427.97433 335.78089,427.88433 C 335.87089,427.88433 335.96089,427.88433 336.05089,427.88433 C 336.14089,428.06433 336.23089,428.24433 336.41089,428.33433 C 336.14089,428.51433 335.96089,428.78433 335.96089,429.05433 C 336.05089,429.59433 336.41089,429.95433 336.86089,429.95433 C 337.40089,429.95433 337.76089,429.50433 337.76089,429.05433 C 337.76089,428.78433 337.67089,428.60433 337.49089,428.42433 C 337.58089,428.51433 337.67089,428.51433 337.67089,428.51433 C 337.85089,428.51433 337.94089,428.42433 338.03089,428.42433 C 338.12089,428.60433 338.21089,428.78433 338.48089,428.87433 C 338.21089,429.14433 338.03089,429.41433 338.03089,429.77433 C 338.03089,430.40433 338.57089,430.94433 339.20089,430.85433 C 339.38089,430.85433 339.47089,430.85433 339.56089,430.85433 C 339.56089,431.03433 339.65089,431.12433 339.74089,431.21433 C 339.56089,431.30433 339.29089,431.39433 339.20089,431.57433 C 339.11089,431.21433 338.75089,431.03433 338.39089,431.03433 C 337.85089,431.03433 337.40089,431.48433 337.40089,432.02433 C 337.40089,432.47433 337.85089,432.92433 338.39089,432.92433 C 338.48089,432.92433 338.57089,432.92433 338.75089,432.83433 C 338.75089,433.01433 338.84089,433.19433 338.93089,433.28433 C 338.75089,433.37433 338.57089,433.46433 338.57089,433.73433 C 338.30089,433.46433 338.03089,433.28433 337.76089,433.28433 C 337.13089,433.28433 336.68089,433.73433 336.68089,434.36433 C 336.77089,434.90433 337.22089,435.35433 337.76089,435.35433 C 337.85089,435.35433 338.03089,435.35433 338.12089,435.26433 C 338.12089,435.35433 338.12089,435.35433 338.12089,435.44433 C 338.12089,435.62433 338.21089,435.89433 338.39089,435.98433 C 338.21089,436.16433 338.12089,436.34433 338.03089,436.52433 C 337.94089,435.98433 337.49089,435.53433 336.95089,435.53433 C 336.41089,435.53433 335.96089,435.98433 335.96089,436.52433 C 335.96089,437.06433 336.41089,437.51433 336.95089,437.51433 C 337.40089,437.51433 337.67089,437.33433 337.85089,436.97433 C 337.85089,437.06433 337.85089,437.06433 337.85089,437.06433 C 337.85089,437.78433 338.48089,438.41433 339.20089,438.41433 C 339.92089,438.41433 340.46089,437.78433 340.46089,437.06433 C 340.46089,436.79433 340.37089,436.61433 340.28089,436.43433 C 340.55089,436.34433 340.73089,436.25433 340.91089,436.16433 C 341.09089,436.61433 341.54089,436.88433 342.08089,436.88433 C 342.80089,436.88433 343.43089,436.25433 343.34089,435.53433 C 343.34089,435.53433 343.34089,435.44433 343.43089,435.17433 C 343.70089,435.08433 343.88089,434.90433 344.06089,434.72433 C 344.15089,435.08433 344.51089,435.26433 344.96089,435.26433 C 345.50089,435.26433 345.95089,434.81433 345.95089,434.27433 C 345.86089,433.73433 345.50089,433.28433 344.87089,433.37433 C 344.87089,433.19433 344.78089,433.10433 344.69089,433.01433 L 344.78089,433.01433 C 344.87089,433.01433 344.87089,433.01433 344.96089,433.01433 C 345.23089,433.10433 345.50089,433.28433 345.77089,433.28433 C 346.49089,433.19433 347.12089,432.65433 347.03089,431.93433 C 347.03089,431.75433 347.03089,431.57433 346.94089,431.39433 C 347.21089,431.30433 347.39089,431.03433 347.57089,430.85433 C 347.75089,431.21433 348.11089,431.48433 348.56089,431.48433 C 349.19089,431.48433 349.64089,431.03433 349.64089,430.40433 C 349.64089,429.86433 349.10089,429.41433 348.56089,429.41433 C 348.38089,429.41433 348.11089,429.41433 348.02089,429.59433 C 348.02089,429.32433 347.93089,429.05433 347.84089,428.87433 C 348.02089,428.78433 348.20089,428.78433 348.38089,428.69433 C 348.56089,429.05433 348.92089,429.32433 349.46089,429.32433 C 350.09089,429.32433 350.63089,428.78433 350.63089,428.15558 C 350.63089,427.97433 350.63089,427.88433 350.54089,427.70433 C 350.81089,427.52433 351.08089,427.25433 351.26089,426.89433 C 351.26089,427.43433 351.80089,427.88433 352.34089,427.88433 C 352.97089,427.88433 353.51089,427.34558 353.51089,426.71433 C 353.51089,426.53433 353.42089,426.35558 353.33089,426.26558 C 353.60089,426.08558 353.78089,425.99558 353.96089,425.81558 C 354.23089,426.17558 354.68089,426.35558 355.13089,426.35558 C 355.85089,426.35558 356.48089,425.72558 356.48089,425.00433 C 356.57089,425.00433 356.66089,425.00433 356.75089,425.00433 C 356.75089,425.09558 356.84089,425.09558 356.84089,425.09558 C 356.66089,425.27558 356.57089,425.54558 356.57089,425.81558 C 356.57089,426.35558 357.02089,426.71433 357.56089,426.71433 C 358.10089,426.71433 358.46089,426.26558 358.46089,425.81558 C 358.46089,425.54558 358.37089,425.36558 358.28089,425.18558 C 358.37089,425.18558 358.37089,425.18558 358.46089,425.09558 C 368.35964,424.46558 369.61964,424.37558 369.61964,424.37558 C 369.61964,424.37558 370.69964,424.28558 377.98964,424.46558 C 383.65964,424.64558 384.73964,424.82558 384.73964,424.82558 C 385.45964,424.82558 390.04964,425.45558 390.31964,423.65558 C 390.49964,422.03558 389.14964,421.76558 388.51964,421.49558 C 388.06964,421.31558 386.44964,420.41558 385.72964,419.87558 z M 304.91214,422.84558 C 305.18214,422.84558 305.54214,422.66558 305.72214,422.39558 C 305.72214,422.75558 305.81214,423.11558 306.08214,423.38558 C 305.72214,423.38558 305.18214,423.74558 305.18214,423.74558 C 305.18214,423.47558 305.09214,423.11558 304.91214,422.84558 z M 308.96214,427.34558 C 308.96214,427.07558 308.87214,426.80433 308.69214,426.62558 C 308.87214,426.62558 309.23214,426.44433 309.41214,426.26558 C 309.41214,426.44433 309.50214,426.80433 309.68214,426.98433 C 309.41214,426.98433 309.14214,427.16433 308.96214,427.34558 z M 310.94214,412.49558 C 311.03214,412.49558 311.21214,412.49558 311.30214,412.31558 C 311.30214,412.49558 311.39214,412.58558 311.48214,412.67558 C 311.30214,412.67558 311.21214,412.76558 311.12214,412.85558 C 311.12214,412.76558 311.03214,412.58558 310.94214,412.49558 z M 311.30214,404.93558 C 311.21214,404.93558 311.03214,405.02558 310.94214,405.11558 C 310.94214,405.02558 310.85214,404.84558 310.67214,404.75558 C 310.85214,404.75558 311.03214,404.66558 311.12214,404.57558 C 311.12214,404.66558 311.21214,404.84558 311.30214,404.93558 z M 310.49214,415.01558 C 310.49214,414.83558 310.40214,414.65558 310.22214,414.56558 C 310.40214,414.56558 310.58214,414.47558 310.67214,414.38558 C 310.67214,414.56558 310.76214,414.65558 310.94214,414.83558 C 310.76214,414.83558 310.58214,414.83558 310.49214,415.01558 z M 310.67214,407.81558 C 310.49214,407.81558 310.40214,407.90558 310.22214,407.99558 C 310.22214,407.81558 310.13214,407.63558 310.04214,407.54558 C 310.22214,407.54558 310.31214,407.45558 310.49214,407.36558 C 310.49214,407.54558 310.58214,407.72558 310.67214,407.81558 z M 307.61214,406.73558 C 307.88214,406.73558 308.15214,406.64558 308.33214,406.46558 C 308.33214,406.73558 308.51214,406.91558 308.69214,407.09558 C 308.42214,407.09558 308.15214,407.18558 307.97214,407.36558 C 307.97214,407.18558 307.88214,406.91558 307.61214,406.73558 z M 308.60214,404.12558 C 308.87214,404.12558 309.23214,403.94558 309.41214,403.67558 C 309.41214,404.03558 309.59214,404.30558 309.86214,404.57558 C 309.50214,404.57558 309.23214,404.66558 309.05214,404.93558 C 308.96214,404.57558 308.78214,404.30558 308.60214,404.12558 z M 310.22214,416.99558 C 310.04214,416.99558 309.95214,417.08558 309.77214,417.26558 C 309.77214,417.08558 309.68214,416.90558 309.50214,416.81558 C 309.77214,416.72558 309.86214,416.72558 310.04214,416.54558 C 310.04214,416.72558 310.13214,416.81558 310.22214,416.99558 z M 309.86214,419.42558 C 309.50214,419.51558 309.23214,419.60558 309.05214,419.87558 C 308.96214,419.60558 308.78214,419.24558 308.60214,419.06558 C 308.96214,418.97558 309.14214,418.88558 309.41214,418.70558 C 309.41214,418.97558 309.68214,419.24558 309.86214,419.42558 z M 309.05214,421.76558 C 308.87214,421.76558 308.51214,422.03558 308.33214,422.21558 C 308.24214,421.85558 308.06214,421.58558 307.88214,421.40558 C 308.24214,421.31558 308.42214,421.22558 308.69214,420.95558 C 308.69214,421.22558 308.87214,421.58558 309.05214,421.76558 z M 306.35214,425.90558 C 306.89214,425.90558 307.16214,425.63558 307.25214,425.45558 C 307.25214,425.81558 307.34214,426.08558 307.52214,426.26558 C 307.25214,426.35558 306.98214,426.53433 306.80214,426.80433 C 306.71214,426.44433 306.62214,426.08558 306.35214,425.90558 z M 308.15214,423.20558 C 308.15214,423.56558 308.24214,423.92558 308.51214,424.10558 C 308.33214,424.19558 307.79214,424.37558 307.61214,424.46558 C 307.61214,424.19558 307.43214,423.83558 307.25214,423.65558 C 307.61214,423.65558 307.97214,423.38558 308.15214,423.20558 z M 307.79214,428.78433 C 308.15214,428.78433 308.42214,428.60433 308.60214,428.42433 C 308.69214,428.69433 308.87214,428.96433 309.05214,429.14433 C 308.78214,429.23433 308.51214,429.32433 308.24214,429.59433 C 308.24214,429.23433 308.06214,428.96433 307.79214,428.78433 z M 308.78214,433.82433 C 309.14214,433.82433 309.41214,433.64433 309.68214,433.37433 C 309.68214,433.73433 309.86214,434.09433 310.13214,434.27433 C 309.77214,434.27433 309.41214,434.45433 309.23214,434.72433 C 309.23214,434.72433 309.14214,434.00433 308.78214,433.82433 z M 313.28214,435.44433 C 313.64214,435.44433 314.00214,435.26433 314.18214,434.99433 C 314.18214,435.35433 314.36214,435.71433 314.63214,435.98433 C 314.27214,435.98433 313.91214,436.16433 313.73214,436.43433 C 313.73214,436.34433 313.73214,435.71433 313.28214,435.44433 z M 309.50214,431.75433 C 309.86214,431.66433 310.13214,431.48433 310.31214,431.30433 C 310.31214,431.57433 310.49214,431.84433 310.67214,432.02433 C 310.40214,432.11433 310.04214,432.29433 309.86214,432.56433 C 309.86214,432.20433 309.68214,431.93433 309.50214,431.75433 z M 310.94214,434.54433 C 311.30214,434.54433 311.66214,434.36433 311.93214,434.09433 C 311.93214,434.45433 312.02214,434.72433 312.29214,434.99433 C 311.93214,435.08433 311.66214,435.26433 311.48214,435.44433 C 311.48214,435.08433 311.30214,434.72433 310.94214,434.54433 z M 311.93214,432.47433 C 312.20214,432.47433 312.47214,432.29433 312.56214,432.11433 C 312.65214,432.38433 312.74214,432.65433 312.83214,432.83433 C 312.65214,432.92433 312.38214,433.01433 312.20214,433.19433 C 312.20214,432.92433 312.11214,432.65433 311.93214,432.47433 z M 317.24214,431.75433 C 317.42214,431.75433 317.60214,431.66433 317.69214,431.48433 C 317.69214,431.66433 317.78214,431.84433 317.87214,431.93433 C 317.78214,431.93433 317.60214,432.02433 317.51214,432.11433 C 317.42214,432.02433 317.42214,431.84433 317.24214,431.75433 z M 320.21214,430.22433 C 320.30214,430.22433 320.48214,430.13433 320.57214,430.04433 C 320.57214,430.22433 320.66214,430.31433 320.75214,430.49433 C 320.66214,430.49433 320.48214,430.49433 320.39214,430.67433 C 320.39214,430.49433 320.30214,430.31433 320.21214,430.22433 z M 322.46214,430.85433 C 322.64214,430.85433 322.73214,430.76433 322.82214,430.67433 C 322.91214,430.85433 322.91214,431.03433 323.09214,431.12433 C 322.91214,431.12433 322.73214,431.21433 322.64214,431.30433 C 322.64214,431.12433 322.55214,430.94433 322.46214,430.85433 z M 323.18214,428.69433 C 323.27214,428.69433 323.45214,428.60433 323.54214,428.51433 C 323.54214,428.60433 323.63214,428.78433 323.81214,428.87433 C 323.63214,428.87433 323.45214,428.96433 323.36214,429.05433 C 323.36214,428.96433 323.27214,428.78433 323.18214,428.69433 z M 325.34214,429.32433 C 325.52214,429.32433 325.61214,429.32433 325.79214,429.14433 C 325.79214,429.32433 325.88214,429.50433 325.97214,429.59433 C 325.79214,429.59433 325.61214,429.68433 325.52214,429.77433 C 325.52214,429.68433 325.43214,429.50433 325.34214,429.32433 z M 326.06214,427.34558 C 326.24214,427.34558 326.33214,427.25433 326.51214,427.07558 C 326.51214,427.25433 326.51214,427.43433 326.69214,427.52433 C 326.51214,427.52433 326.33214,427.61558 326.24214,427.70433 C 326.24214,427.52433 326.24214,427.43433 326.06214,427.34558 z M 327.59214,430.04433 C 327.59214,429.95433 327.59214,429.95433 327.50214,429.86433 C 327.68214,429.86433 327.86214,429.77433 328.04214,429.68433 C 328.13214,429.86433 328.40214,430.13433 328.58214,430.22433 C 328.31214,430.22433 328.04214,430.40433 327.86214,430.58433 C 327.77214,430.40433 327.77214,430.22433 327.59214,430.04433 z M 328.13214,428.06433 C 328.31214,427.97433 328.49214,427.97433 328.58214,427.79433 C 328.58214,427.97433 328.67214,428.15558 328.85214,428.24433 C 328.67214,428.24433 328.49214,428.33433 328.40214,428.42433 C 328.40214,428.24433 328.31214,428.15558 328.13214,428.06433 z M 333.44089,427.16433 C 333.62089,427.16433 333.71089,427.07558 333.89089,426.98433 C 333.89089,427.16433 333.98089,427.25433 334.07089,427.34558 C 333.89089,427.34558 333.80089,427.43433 333.62089,427.61558 C 333.62089,427.43433 333.53089,427.25433 333.44089,427.16433 z M 337.31089,408.08558 C 337.31089,407.99558 337.40089,407.81558 337.58089,407.81558 C 337.67089,407.81558 337.85089,407.99558 337.85089,408.08558 C 337.85089,408.26558 337.76089,408.35558 337.58089,408.35558 C 337.49089,408.35558 337.31089,408.26558 337.31089,408.08558 z M 341.18089,434.36433 C 341.36089,434.36433 341.45089,434.36433 341.63089,434.18433 C 341.63089,434.36433 341.72089,434.54433 341.81089,434.63433 C 341.63089,434.63433 341.54089,434.72433 341.36089,434.81433 C 341.36089,434.63433 341.27089,434.54433 341.18089,434.36433 z M 342.44089,407.00558 C 342.44089,406.82558 342.62089,406.73558 342.80089,406.73558 C 342.98089,406.73558 343.07089,406.82558 343.07089,407.00558 C 343.07089,407.18558 342.98089,407.36558 342.80089,407.36558 C 342.62089,407.36558 342.44089,407.18558 342.44089,407.00558 z M 344.15089,407.90558 C 344.15089,407.63558 344.33089,407.36558 344.60089,407.36558 C 344.87089,407.36558 345.14089,407.63558 345.14089,407.90558 C 345.14089,408.17558 344.96089,408.44558 344.60089,408.44558 C 344.33089,408.44558 344.15089,408.17558 344.15089,407.90558 z M 351.62089,407.63558 C 351.62089,407.27558 351.89089,407.09558 352.25089,407.09558 C 352.52089,407.00558 352.79089,407.27558 352.79089,407.63558 C 352.79089,407.90558 352.52089,408.17558 352.25089,408.17558 C 351.89089,408.17558 351.62089,407.90558 351.62089,407.63558 z M 353.33089,410.87558 C 353.33089,410.60558 353.51089,410.42558 353.78089,410.42558 C 354.05089,410.42558 354.23089,410.60558 354.23089,410.87558 C 354.23089,411.14558 354.05089,411.32558 353.78089,411.32558 C 353.51089,411.32558 353.33089,411.14558 353.33089,410.87558 z M 353.87089,408.62558 C 353.87089,408.26558 354.14089,407.90558 354.59089,407.90558 C 354.95089,407.90558 355.31089,408.26558 355.31089,408.62558 C 355.31089,408.98558 354.95089,409.34558 354.59089,409.34558 C 354.23089,409.34558 353.87089,409.07558 353.87089,408.62558 z M 355.31089,411.59558 C 355.31089,411.41558 355.49089,411.23558 355.76089,411.23558 C 355.94089,411.14558 356.12089,411.41558 356.12089,411.59558 C 356.21089,411.86558 355.94089,412.04558 355.76089,412.04558 C 355.49089,412.04558 355.31089,411.86558 355.31089,411.59558 z M 355.94089,409.34558 C 355.94089,408.98558 356.21089,408.71558 356.57089,408.71558 C 356.93089,408.71558 357.20089,408.98558 357.20089,409.34558 C 357.20089,409.70558 356.93089,409.97558 356.57089,409.97558 C 356.21089,409.97558 355.94089,409.70558 355.94089,409.34558" + style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path593" /> + <path + d="M 327.19589,437.33433 L 333.49564,437.33433 L 333.49564,469.82308 L 327.19589,469.82308 L 327.19589,437.33433 z M 340.51589,449.12433 L 340.51589,444.62433 L 344.65589,444.62433 L 344.65589,441.11433 C 344.65589,437.51433 346.36589,434.18433 351.94464,434.18433 C 353.56464,434.18433 355.09464,434.54433 356.26464,434.81433 L 355.99464,439.22433 C 355.27464,439.04433 354.46464,438.77433 353.65464,438.77433 C 351.85464,438.77433 350.77464,440.03433 350.77464,441.92433 L 350.77464,444.62433 L 355.36464,444.62433 L 355.36464,449.12433 L 350.77464,449.12433 L 350.77464,469.82308 L 344.65589,469.82308 L 344.65589,449.12433 L 340.51589,449.12433 z M 361.84464,444.62433 L 367.33464,444.62433 C 367.42464,446.15433 367.51464,447.77433 367.51464,449.21433 L 367.60464,449.21433 C 368.32464,447.32433 370.30464,444.26433 373.99464,444.26433 C 374.44464,444.26433 374.71464,444.35433 375.07464,444.44433 L 375.07464,450.11433 C 374.53464,449.93433 373.99464,449.84433 373.36464,449.84433 C 370.84464,449.84433 368.14464,451.37433 368.14464,456.05433 L 368.14464,469.82308 L 362.02464,469.82308 L 362.02464,448.85433 C 362.02464,447.23433 362.02464,445.79433 361.84464,444.62433 z M 389.11339,470.18308 C 381.01339,470.18308 377.50464,464.42308 377.50464,457.58308 C 377.50464,450.11433 381.46339,444.26433 387.85339,444.26433 C 393.25339,444.26433 397.93339,447.41433 397.93339,457.67433 L 397.93339,458.84308 L 383.35339,458.84308 C 383.35339,463.16308 385.06339,465.77308 389.74339,465.77308 C 393.52339,465.77308 395.23339,464.60308 396.40339,463.79308 L 396.67339,468.56308 C 395.41339,469.10308 392.80339,470.18308 389.11339,470.18308 z M 387.85339,448.40433 C 384.70339,448.40433 383.35339,451.73433 383.35339,455.06433 L 392.08339,455.06433 C 392.08339,450.65433 390.64339,448.40433 387.85339,448.40433 z M 404.86339,444.62433 L 410.98339,444.62433 C 410.98339,445.97433 411.16214,447.32433 411.16214,448.58433 L 411.25339,448.58433 C 412.15214,446.69433 414.13214,444.26433 417.64214,444.26433 C 421.87214,444.26433 423.22214,446.87433 423.94214,448.31433 C 425.20214,446.51433 427.00214,444.26433 430.69214,444.26433 C 436.18214,444.26433 437.89214,448.13433 437.89214,454.25433 L 437.89214,469.82308 L 431.86214,469.82308 L 431.86214,453.98433 C 431.86214,450.83433 430.87214,449.21433 428.62214,449.21433 C 425.92214,449.21433 424.57214,451.82433 424.57214,454.61433 L 424.57214,469.82308 L 418.45214,469.82308 L 418.45214,453.98433 C 418.45214,450.83433 417.46214,449.21433 415.21214,449.21433 C 412.60214,449.21433 411.16214,451.82433 411.16214,454.61433 L 411.16214,469.82308 L 405.13339,469.82308 L 405.13339,448.76433 C 405.13339,446.96433 404.95339,445.61433 404.86339,444.62433 z M 456.43089,470.18308 C 448.33089,470.18308 444.82089,464.42308 444.82089,457.58308 C 444.82089,450.11433 448.78089,444.26433 455.17089,444.26433 C 460.66089,444.26433 465.25089,447.41433 465.25089,457.67433 L 465.25089,458.84308 L 450.67089,458.84308 C 450.67089,463.16308 452.38089,465.77308 457.06089,465.77308 C 460.84089,465.77308 462.55089,464.60308 463.72089,463.79308 L 463.99089,468.56308 C 462.73089,469.10308 460.12089,470.18308 456.43089,470.18308 z M 455.17089,448.40433 C 452.02089,448.40433 450.67089,451.73433 450.67089,455.06433 L 459.40089,455.06433 C 459.40089,450.65433 457.96089,448.40433 455.17089,448.40433 z M 473.07964,444.62433 L 478.47964,444.62433 C 478.56964,446.15433 478.65964,447.77433 478.65964,449.21433 L 478.83964,449.21433 C 479.55964,447.32433 481.44964,444.26433 485.22964,444.26433 C 485.58964,444.26433 485.85964,444.35433 486.21964,444.44433 L 486.21964,450.11433 C 485.67964,449.93433 485.13964,449.84433 484.50964,449.84433 C 481.98964,449.84433 479.28964,451.37433 479.28964,456.05433 L 479.28964,469.82308 L 473.25964,469.82308 L 473.25964,448.85433 C 473.25964,447.23433 473.16964,445.79433 473.07964,444.62433" + style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path595" /> + </g> +</svg> Added: siteCL-refactoring2015/pictures/logo-inra.png =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/pictures/logo-inra.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: siteCL-refactoring2015/pictures/logo-ird.png =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/pictures/logo-ird.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: siteCL-refactoring2015/pictures/logo-lutin.png =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/pictures/logo-lutin.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: siteCL-refactoring2015/pictures/logo-lutin.svg =================================================================== --- siteCL-refactoring2015/pictures/logo-lutin.svg (rev 0) +++ siteCL-refactoring2015/pictures/logo-lutin.svg 2015-06-02 14:55:31 UTC (rev 1585) @@ -0,0 +1,124 @@ +<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="297.52188" + height="800.14752" + id="svg5443" + version="1.1" + inkscape:version="0.48.4 r9939" + sodipodi:docname="logo-texte.svg"> + <defs + id="defs5445" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="0.24748737" + inkscape:cx="277.48063" + inkscape:cy="35.255976" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1680" + inkscape:window-height="985" + inkscape:window-x="0" + inkscape:window-y="20" + inkscape:window-maximized="1" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" /> + <metadata + id="metadata5448"> + <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="Calque 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0.01476951,-252.27921)"> + <g + transform="matrix(7.535426,0,0,7.535426,-3697.3317,1566.2822)" + id="g5896" + style="display:inline"> + <path + sodipodi:type="arc" + style="fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:#ff5600;stroke-width:3;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5898" + sodipodi:cx="400" + sodipodi:cy="468.07648" + sodipodi:rx="97.142853" + sodipodi:ry="65.714287" + d="m 403.33342,402.40089 c 53.61892,1.24538 95.59322,31.65892 93.75222,67.93055 -1.84099,36.27162 -46.80014,64.666 -100.41906,63.42062 -53.61892,-1.24538 -95.59322,-31.65892 -93.75222,-67.93054 1.84033,-36.25858 46.76911,-64.64826 100.36968,-63.42177" + sodipodi:start="4.7467103" + sodipodi:end="11.029387" + sodipodi:open="true" + transform="matrix(0.20010937,0,0,0.20010937,430.35578,-193.67462)" /> + <path + sodipodi:type="arc" + style="fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:#ff5600;stroke-width:2.43206906;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5900" + sodipodi:cx="408.57144" + sodipodi:cy="517.36218" + sodipodi:rx="72.85714" + sodipodi:ry="73.571434" + d="m 479.00527,536.17922 c -10.29146,39.2809 -50.16864,62.69969 -89.06817,52.30733 -38.89953,-10.39236 -62.09095,-50.6605 -51.79949,-89.9414 10.29147,-39.2809 50.16864,-62.69969 89.06817,-52.30733 38.56683,10.30347 61.75563,50.01181 52.01999,89.07867" + sodipodi:start="0.25863944" + sodipodi:end="6.529714" + transform="matrix(0.21187782,0,0,0.23312814,423.83213,-216.6172)" + sodipodi:open="true" /> + <path + sodipodi:type="arc" + style="fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:#ff5600;stroke-width:3.5841608;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5902" + sodipodi:cx="367.19046" + sodipodi:cy="606.88489" + sodipodi:rx="21.227678" + sodipodi:ry="28.284271" + d="m 387.14524,616.53195 c -3.99867,14.68427 -16.17429,22.2691 -27.19501,16.94117 -11.02072,-5.32792 -16.71322,-21.55101 -12.71455,-36.23529 3.99867,-14.68428 16.17429,-22.2691 27.19501,-16.94118 10.78706,5.21496 16.51099,20.9081 12.92326,35.43137" + sodipodi:start="0.34806027" + sodipodi:end="6.6011689" + transform="matrix(0.13348691,0.12466571,-0.11854508,0.140379,528.18424,-204.27048)" + sodipodi:open="true" /> + <path + transform="matrix(0.20213864,0.12466571,-0.04124027,0.140379,466.5722,-204.27048)" + sodipodi:end="6.6024281" + sodipodi:start="0.34806027" + d="m 387.14524,616.53195 c -3.99867,14.68427 -16.17429,22.2691 -27.19501,16.94117 -11.02072,-5.32792 -16.71322,-21.55101 -12.71455,-36.23529 3.99867,-14.68428 16.17429,-22.2691 27.19501,-16.94118 10.79682,5.21968 16.51959,20.93483 12.91488,35.46519" + sodipodi:ry="28.284271" + sodipodi:rx="21.227678" + sodipodi:cy="606.88489" + sodipodi:cx="367.19046" + id="path5904" + style="fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:#ff5600;stroke-width:3.58405399;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" + inkscape:transform-center-x="22.2231" + sodipodi:open="true" /> + <path + style="fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:#ff5600;stroke-width:0.60032809;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 498.70621,-126.27891 c 2.08476,12.4638 19.53832,15.57913 23.24621,0.20214 -1.56712,-10.01993 -2.88466,-17.68143 -4.95753,-28.20164 -0.63529,-5.48546 -1.99782,-13.54117 -1.04644,-15.10663 1.25649,-0.94052 0.61393,-1.04234 3.29241,-1.35473 0.72346,0.5283 1.28627,1.08872 1.53445,1.71207 l -1.53445,7.38428 c 1.61371,-2.58701 3.44632,-4.66567 4.56551,-8.08564 -2.01565,-2.65466 -5.27537,-4.75974 -5.88262,-4.26364 -6.64836,1.05281 -7.54186,5.58098 -10.17521,9.63919 -1.83009,5.64109 -6.02897,14.88379 -9.04233,38.0746 z" + id="path5906" + sodipodi:nodetypes="ccccccccccc" + inkscape:connector-curvature="0" /> + </g> + </g> +</svg> Added: siteCL-refactoring2015/pictures/logo-pollen.png =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/pictures/logo-pollen.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: siteCL-refactoring2015/pictures/logo-texte.png =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/pictures/logo-texte.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: siteCL-refactoring2015/pictures/logo-texte.svg =================================================================== --- siteCL-refactoring2015/pictures/logo-texte.svg (rev 0) +++ siteCL-refactoring2015/pictures/logo-texte.svg 2015-06-02 14:55:31 UTC (rev 1585) @@ -0,0 +1,119 @@ +<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="800" + height="155.54549" + id="svg5443" + version="1.1" + inkscape:version="0.48.4 r9939" + sodipodi:docname="logo-texte.svg"> + <defs + id="defs5445" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="0.24748737" + inkscape:cx="277.46586" + inkscape:cy="35.1914" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1680" + inkscape:window-height="985" + inkscape:window-x="0" + inkscape:window-y="20" + inkscape:window-maximized="1" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" /> + <metadata + id="metadata5448"> + <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="Calque 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(5.2141162e-5,-896.81672)"> + <g + transform="matrix(9.1522371,0,0,9.1522371,-4267.6376,1504.0589)" + id="g5908" + style="display:inline" + inkscape:export-filename="/home/lkaufmann/ProjetsInternes/Site CL/Design/IntegrationHTML/logo-texte.svg.png" + inkscape:export-xdpi="141.62921" + inkscape:export-ydpi="141.62921"> + <path + d="m 472.73354,-49.383008 c -1.37445,0 -2.56325,-0.322442 -3.5664,-0.967325 -0.99664,-0.644882 -1.72621,-1.446102 -2.1887,-2.403657 -0.45598,-0.964065 -0.68397,-2.006301 -0.68397,-3.126709 0,-2.149605 0.70677,-3.872551 2.1203,-5.168841 1.23765,-1.13342 2.68375,-1.700136 4.33831,-1.70015 0.95755,1.4e-5 1.8923,0.149836 2.80427,0.449466 0.91846,0.29314 1.44609,0.44622 1.58289,0.459235 0.22798,1.400516 0.37455,2.43298 0.4397,3.097397 -0.11726,0.07818 -0.27034,0.110747 -0.45924,0.09771 -0.72306,-2.377591 -2.2115,-3.563133 -4.46533,-3.556631 -0.54718,1.2e-5 -1.13344,0.156347 -1.75877,0.469006 -0.62535,0.312683 -1.17904,0.762146 -1.66107,1.348393 -0.78819,0.977106 -1.18229,2.351555 -1.18228,4.123347 -10e-6,1.016186 0.1661,1.990024 0.49832,2.921519 0.33221,0.931501 0.86309,1.72295 1.59266,2.374344 0.72956,0.644884 1.58615,0.967327 2.56977,0.967327 0.90543,0 1.72294,-0.192163 2.45251,-0.576487 0.72955,-0.390838 1.45912,-0.993379 2.1887,-1.807628 0.20192,2e-6 0.35499,0.100969 0.45923,0.302899 -1.37446,1.797859 -3.06809,2.696786 -5.0809,2.696786" + style="font-size:100px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine Display;-inkscape-font-specification:Linux Libertine Display" + id="path5910" + inkscape:connector-curvature="0" /> + <path + d="m 479.32894,-53.477042 c 0,-1.270222 0.35175,-2.318971 1.05527,-3.146251 0.76213,-0.892408 1.75877,-1.338614 2.98991,-1.338622 0.91847,8e-6 1.69037,0.227997 2.31572,0.683966 0.62533,0.449472 1.06177,0.986875 1.30931,1.612211 0.24752,0.618832 0.37129,1.286515 0.37129,2.003047 0,1.322341 -0.41364,2.390631 -1.24091,3.204878 -0.74911,0.723051 -1.68061,1.081319 -2.79449,1.074805 -1.27023,0 -2.2571,-0.41038 -2.96061,-1.231141 -0.69699,-0.827274 -1.04549,-1.78157 -1.04549,-2.862893 m 3.76182,-4.025638 c -0.78819,8e-6 -1.35817,0.355018 -1.70992,1.065034 -0.35175,0.703517 -0.52763,1.543818 -0.52763,2.52091 0,0.547177 0.0847,1.117151 0.25405,1.709919 0.17587,0.592774 0.48203,1.136691 0.91847,1.631752 0.44294,0.488549 0.97058,0.732822 1.58289,0.732822 0.54717,0 1.05852,-0.263816 1.53404,-0.791449 0.47552,-0.534143 0.71328,-1.341877 0.71329,-2.4232 -1e-5,-1.361416 -0.25406,-2.442735 -0.76214,-3.243959 -0.5081,-0.801212 -1.17578,-1.201821 -2.00305,-1.201829" + style="font-size:100px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine Display;-inkscape-font-specification:Linux Libertine Display" + id="path5912" + inkscape:connector-curvature="0" /> + <path + d="m 494.86478,-51.737811 c -10e-6,2e-6 0.013,-1.341875 0.0391,-4.025638 -1e-5,-0.455971 -0.10749,-0.801212 -0.32244,-1.035722 -0.38433,-0.455969 -0.91848,-0.68396 -1.60244,-0.683968 -0.82728,8e-6 -1.45262,0.319192 -1.87603,0.957555 -0.37129,0.534152 -0.5602,1.442851 -0.56671,2.7261 0,1.120407 0.23124,2.022592 0.69374,2.706557 0.46249,0.677455 0.97383,1.016182 1.53404,1.01618 0.50808,2e-6 1.10737,-0.306155 1.79785,-0.91847 0.1889,-0.175876 0.28987,-0.423408 0.30291,-0.742594 m -0.22474,1.201829 c -0.95756,0.775164 -1.749,1.159488 -2.37434,1.152974 -1.00316,0 -1.7946,-0.37781 -2.37435,-1.133431 -0.57974,-0.762135 -0.86961,-1.742487 -0.86961,-2.941062 0,-1.348387 0.43969,-2.462276 1.31908,-3.34167 0.81424,-0.775156 1.76854,-1.162736 2.86289,-1.162744 0.1889,8e-6 0.40061,0.02932 0.63511,0.08794 0.24102,0.05863 0.44295,0.11726 0.6058,0.175878 0.16936,0.05212 0.26056,0.07818 0.27359,0.07817 0.11725,8e-6 0.17913,-0.06187 0.18565,-0.185647 -1e-5,-1.537291 -0.013,-2.63815 -0.0391,-3.302587 -0.0261,-0.749096 -0.10098,-1.188788 -0.22474,-1.319081 -0.11726,-0.130266 -0.44947,-0.208434 -0.99664,-0.234502 -0.11725,-0.117239 -0.15633,-0.244262 -0.11725,-0.381069 1.1204,-0.09118 1.97373,-0.260544 2.56,-0.508089 0.16284,1.4e-5 0.24101,0.06189 0.2345,0.185647 -0.0261,0.371311 -0.0521,0.970597 -0.0782,1.797859 -0.0261,0.508101 -0.0391,2.126822 -0.0391,4.85617 -10e-6,2.72936 0.013,4.348082 0.0391,4.856168 0.026,0.501578 0.1205,0.846819 0.28336,1.035724 0.16935,0.188905 0.54065,0.309413 1.11389,0.361526 0.10421,0.104223 0.10421,0.20519 0,0.302899 -0.97711,0.117252 -1.70993,0.374553 -2.19847,0.771906 -0.14983,0.03908 -0.27034,0.03908 -0.36152,0 -0.13029,-0.455977 -0.19543,-0.833788 -0.19542,-1.133431 -1e-5,-0.143307 -0.0814,-0.149822 -0.24428,-0.01955" + style="font-size:100px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine Display;-inkscape-font-specification:Linux Libertine Display" + id="path5914" + inkscape:connector-curvature="0" /> + <path + d="m 500.28766,-54.757039 3.8693,-0.107481 c 0.1889,6e-6 0.2801,-0.08468 0.27359,-0.254045 -10e-6,-0.762128 -0.17588,-1.348387 -0.52763,-1.758773 -0.35176,-0.416888 -0.77517,-0.625334 -1.27023,-0.625342 -0.46901,8e-6 -0.93801,0.218225 -1.40702,0.654654 -0.46249,0.436445 -0.77516,1.13344 -0.93801,2.090987 m 5.28609,3.400296 c 0.21496,0.01303 0.34849,0.117252 0.40061,0.312671 -0.84031,1.107375 -1.9542,1.661064 -3.34167,1.661064 -1.33537,0 -2.34177,-0.403867 -3.01922,-1.2116 -0.59929,-0.69048 -0.89894,-1.638262 -0.89893,-2.84335 -10e-6,-1.361416 0.40712,-2.455764 1.22137,-3.283045 0.81424,-0.827268 1.71317,-1.240904 2.69678,-1.240912 1.2116,8e-6 2.06818,0.325706 2.56977,0.977096 0.50157,0.644891 0.75235,1.439595 0.75236,2.384115 -10e-6,0.227995 -0.12051,0.341989 -0.36152,0.341985 l -5.36426,0.07817 c -10e-6,1.133435 0.20193,2.025849 0.6058,2.677245 0.28009,0.455979 0.63185,0.80122 1.05526,1.035722 0.42992,0.234504 0.83704,0.351755 1.22137,0.351755 0.50809,0 0.94452,-0.104223 1.30931,-0.312671 0.37129,-0.208446 0.75561,-0.517859 1.15297,-0.928242" + style="font-size:100px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine Display;-inkscape-font-specification:Linux Libertine Display" + id="path5916" + inkscape:connector-curvature="0" /> + <path + d="m 515.55968,-51.757352 c 0.0195,1.068292 0.40061,1.602438 1.1432,1.602438 l 1.45588,0 c 0.97709,0 1.70665,-0.227988 2.18869,-0.683968 0.48854,-0.46249 0.84681,-1.110631 1.07481,-1.944422 0.13027,-0.01953 0.28335,0.01629 0.45923,0.10748 -0.11074,0.944529 -0.28336,2.009563 -0.51786,3.195107 -1.23115,-0.06514 -2.02585,-0.09771 -2.38411,-0.09771 l -4.26014,0 c -0.20194,0 -0.60581,0.01303 -1.2116,0.03908 -0.59929,0.03257 -1.06178,0.05211 -1.38748,0.05863 -0.0586,-0.05863 -0.0879,-0.133537 -0.0879,-0.224733 0,-0.09771 0.0293,-0.175876 0.0879,-0.234502 0.39735,-0.01955 0.68722,-0.04234 0.86962,-0.0684 0.18239,-0.03257 0.34849,-0.110736 0.49831,-0.234504 0.14982,-0.130277 0.24753,-0.309411 0.29314,-0.537402 0.0456,-0.227988 0.0716,-0.553686 0.0782,-0.977096 0.0391,-1.661062 0.0586,-3.074592 0.0586,-4.240599 0,-1.205079 -0.0195,-2.64141 -0.0586,-4.308995 -0.007,-0.286605 -0.0195,-0.521107 -0.0391,-0.703511 -0.0196,-0.188893 -0.0619,-0.351742 -0.12703,-0.488549 -0.0586,-0.136781 -0.12376,-0.241004 -0.19541,-0.312671 -0.0652,-0.07815 -0.17263,-0.140036 -0.32245,-0.185647 -0.14982,-0.04559 -0.29638,-0.0749 -0.43969,-0.08794 -0.14331,-0.01301 -0.3485,-0.02604 -0.61557,-0.03909 -0.0586,-0.05861 -0.0879,-0.133523 -0.0879,-0.224731 0,-0.0977 0.0293,-0.175864 0.0879,-0.234504 0.28661,0.0065 0.69699,0.02607 1.23114,0.05863 0.53415,0.02607 0.98361,0.0391 1.3484,0.03908 0.37129,1.4e-5 0.82727,-0.01301 1.36793,-0.03908 0.54717,-0.03256 0.95755,-0.0521 1.23114,-0.05863 0.0586,0.05864 0.0879,0.136807 0.0879,0.234504 0.007,0.09121 -0.0228,0.166119 -0.0879,0.224731 -0.39736,0.01955 -0.68723,0.04561 -0.86961,0.07817 -0.17589,0.02607 -0.33873,0.104235 -0.48855,0.234502 -0.14983,0.130293 -0.24754,0.306169 -0.29313,0.527633 -0.0456,0.221487 -0.0749,0.547185 -0.0879,0.977098 -0.0391,1.341887 -0.0586,2.784732 -0.0586,4.328537 0,0.273592 0.0195,1.680611 0.0586,4.221057" + style="font-size:100px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine Display;-inkscape-font-specification:Linux Libertine Display" + id="path5918" + inkscape:connector-curvature="0" /> + <path + d="m 525.90713,-49.383008 c -1.57638,0 -2.32875,-0.866357 -2.25709,-2.599076 0.0521,-1.309306 0.0521,-2.615358 0,-3.918158 -0.0261,-0.59928 -0.114,-0.990117 -0.26382,-1.172515 -0.14331,-0.182383 -0.44946,-0.293122 -0.91847,-0.332213 -0.14982,-0.149814 -0.14982,-0.302892 0,-0.459235 0.9315,0.02606 1.54056,0.03909 1.82717,0.03908 0.30616,8e-6 0.52438,-0.01303 0.65466,-0.03908 0.10422,8e-6 0.15959,0.03909 0.1661,0.11725 -0.0391,0.788199 -0.0684,1.377713 -0.0879,1.768546 -0.0521,1.237661 -0.0521,2.485085 0,3.74228 0.0391,0.879388 0.14656,1.459131 0.32244,1.73923 0.17587,0.280103 0.55042,0.420154 1.12366,0.420152 0.24101,2e-6 0.56671,-0.110737 0.97709,-0.332212 0.41689,-0.221475 0.79796,-0.485291 1.14321,-0.791448 0.026,-0.02605 0.0651,-0.06188 0.11725,-0.107481 0.0521,-0.0456 0.0847,-0.07165 0.0977,-0.07817 0.013,-0.0065 0.026,-0.02931 0.0391,-0.0684 0.0195,-0.0456 0.0326,-0.08468 0.0391,-0.117252 0.006,-0.03257 0.01,-0.08794 0.01,-0.166107 0.0521,-1.374445 0.0521,-2.748892 0,-4.123348 -0.0261,-0.625333 -0.114,-1.032458 -0.26381,-1.221369 -0.14983,-0.188897 -0.45599,-0.296378 -0.91848,-0.322442 -0.14982,-0.149814 -0.14982,-0.302892 0,-0.459235 0.9315,0.02606 1.5373,0.03909 1.8174,0.03908 0.31918,8e-6 0.54717,-0.01303 0.68397,-0.03908 0.0912,8e-6 0.13679,0.03909 0.1368,0.11725 -0.0391,0.788199 -0.0652,1.377713 -0.0782,1.768546 -0.0521,1.374454 -0.0521,2.748901 0,4.123346 0.026,0.508094 0.1205,0.85659 0.28336,1.045493 0.16935,0.182394 0.54065,0.299644 1.11389,0.351757 0.0912,0.104223 0.0912,0.20519 0,0.302899 -0.90546,0.104223 -1.61222,0.361526 -2.1203,0.771906 -0.14983,0.03908 -0.27034,0.03908 -0.36153,0 -0.14983,-0.469006 -0.22148,-0.846817 -0.21496,-1.133431 -0.013,-0.06514 -0.0521,-0.09445 -0.11725,-0.08794 -0.0586,0.0065 -0.114,0.02931 -0.16611,0.0684 -0.96407,0.76865 -1.89231,1.152974 -2.78472,1.152974" + style="font-size:100px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine Display;-inkscape-font-specification:Linux Libertine Display" + id="path5920" + inkscape:connector-curvature="0" /> + <path + d="m 533.06925,-57.766496 0.87939,0 c 0,-0.625334 -0.003,-1.133423 -0.01,-1.524271 -0.007,-0.397343 -0.0163,-0.670929 -0.0293,-0.820761 -0.013,-0.156325 -0.0196,-0.247521 -0.0195,-0.273587 0,-0.06513 0.026,-0.113984 0.0782,-0.146564 0.0586,-0.03256 0.15308,-0.06839 0.28336,-0.107481 0.13679,-0.04559 0.23776,-0.08141 0.3029,-0.107481 0.0782,-0.02604 0.16936,-0.06839 0.27359,-0.127023 0.11073,-0.05861 0.20519,-0.107469 0.28336,-0.146564 0.0782,-0.04558 0.14005,-0.06839 0.18565,-0.0684 0.0912,1e-5 0.13679,0.06189 0.13679,0.185648 -0.0391,0.508101 -0.0651,1.175782 -0.0782,2.003049 l -0.0195,1.133431 2.29618,0 c 0.0912,8e-6 0.14004,0.04235 0.14656,0.127021 l 0,0.214962 c 0,0.162857 -0.15634,0.244281 -0.469,0.244275 l -1.97374,0 c -0.10423,2.416689 -0.14005,4.142893 -0.10748,5.178611 0.026,0.6514 0.0782,1.107377 0.15634,1.367935 0.0847,0.260561 0.24752,0.39084 0.48855,0.390838 0.53414,2e-6 1.10085,-0.224731 1.70014,-0.674196 0.10422,0.02606 0.17262,0.117254 0.20519,0.273587 -0.74911,0.840303 -1.61221,1.260455 -2.5893,1.260455 -0.89242,0 -1.33863,-0.631855 -1.33862,-1.895568 -10e-6,-0.345239 0.0163,-1.240908 0.0489,-2.687015 0.0326,-1.452612 0.0488,-2.524159 0.0489,-3.214647 l -1.1139,0 c -0.0651,6e-6 -0.10096,-0.04233 -0.10748,-0.127023 l 0,-0.175878 c 0,-0.188897 0.114,-0.283349 0.34199,-0.283357" + style="font-size:100px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine Display;-inkscape-font-specification:Linux Libertine Display" + id="path5922" + inkscape:connector-curvature="0" /> + <path + d="m 539.94801,-61.567401 c 0,-0.241006 0.11399,-0.459223 0.34198,-0.654656 0.22799,-0.201921 0.46249,-0.302886 0.70351,-0.3029 0.25404,1.4e-5 0.47552,0.110751 0.66443,0.332214 0.19541,0.221487 0.29312,0.455989 0.29313,0.703508 -10e-6,0.228001 -0.10749,0.44622 -0.32244,0.654656 -0.20845,0.208458 -0.44621,0.312681 -0.71328,0.312671 -0.24102,1e-5 -0.4625,-0.110726 -0.66443,-0.332214 -0.20194,-0.221463 -0.3029,-0.459223 -0.3029,-0.713279 m 1.71969,9.810049 c 0.013,0.814247 0.10096,1.312566 0.26381,1.494957 0.16285,0.175879 0.55695,0.283359 1.18229,0.322443 0.0521,0.05211 0.0782,0.127021 0.0782,0.22473 0,0.0912 -0.0261,0.169365 -0.0782,0.234505 -0.25405,0 -0.60254,-0.01629 -1.04549,-0.04886 -0.43644,-0.03257 -0.80774,-0.04885 -1.11389,-0.04885 -0.30616,0 -0.68723,0.01629 -1.1432,0.04885 -0.45598,0.03257 -0.80448,0.04886 -1.0455,0.04886 -0.14982,-0.149822 -0.14982,-0.3029 0,-0.459235 0.62534,-0.05211 1.01618,-0.166107 1.17252,-0.341985 0.15633,-0.18239 0.24753,-0.674195 0.27358,-1.475415 0.0261,-0.892411 0.0391,-1.638261 0.0391,-2.237553 0,-0.351748 -0.013,-0.928235 -0.0391,-1.729459 -0.013,-0.573223 -0.0944,-0.928235 -0.24427,-1.065036 -0.14331,-0.1433 -0.49506,-0.24101 -1.05526,-0.293128 -0.0521,-0.162843 -0.0651,-0.283351 -0.0391,-0.361526 1.15949,-0.149814 2.04539,-0.341977 2.65771,-0.576487 0.17587,8e-6 0.26381,0.04561 0.26381,0.136793 -0.007,0.07818 -0.0163,0.188913 -0.0293,0.332214 -0.007,0.1368 -0.0195,0.387587 -0.0391,0.752363 -0.0195,0.364789 -0.0391,0.693745 -0.0586,0.986867 -0.013,0.286621 -0.0228,0.586265 -0.0293,0.898929 -0.007,0.306162 -0.01,0.618833 -0.01,0.938013 0,0.332218 0.013,1.071554 0.0391,2.21801" + style="font-size:100px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine Display;-inkscape-font-specification:Linux Libertine Display" + id="path5924" + inkscape:connector-curvature="0" /> + <path + d="m 547.00265,-56.39856 c 0.93149,-1.04223 2.04538,-1.563347 3.34167,-1.563355 0.7491,8e-6 1.28976,0.218225 1.62198,0.654654 0.1433,0.20194 0.24426,0.442958 0.3029,0.723051 0.0586,0.273594 0.0879,0.599294 0.0879,0.977096 0,0.08469 -0.003,0.182398 -0.01,0.29313 -10e-6,0.110743 -0.003,0.198681 -0.01,0.263817 -10e-6,0.06514 -0.003,0.169368 -0.01,0.312671 -0.0391,1.029212 -0.0391,2.055161 0,3.077854 0.026,0.762136 0.10747,1.227885 0.24427,1.397247 0.1433,0.162849 0.48854,0.27033 1.03572,0.322443 0.13027,0.162849 0.13027,0.315926 0,0.459235 -0.25405,0 -0.57324,-0.01629 -0.95755,-0.04886 -0.38433,-0.03257 -0.71654,-0.04885 -0.99664,-0.04885 -0.26708,0 -0.59603,0.01629 -0.98687,0.04885 -0.38433,0.03257 -0.697,0.04886 -0.93801,0.04886 -0.13028,-0.149822 -0.13028,-0.3029 0,-0.459235 0.50809,-0.05211 0.82401,-0.159594 0.94779,-0.322443 0.13027,-0.169362 0.20844,-0.635111 0.2345,-1.397247 0.0391,-1.120403 0.0391,-2.234291 0,-3.341671 -0.0261,-0.801214 -0.0945,-1.296274 -0.20519,-1.485187 -0.228,-0.455972 -0.56672,-0.680702 -1.01618,-0.674197 -0.38433,8e-6 -0.81425,0.104231 -1.28977,0.312671 -0.47552,0.20194 -0.8859,0.469014 -1.23114,0.80122 -0.20194,0.227995 -0.30942,0.495069 -0.32244,0.801218 -0.0391,0.801226 -0.0391,1.996539 0,3.585946 0.013,0.762136 0.0782,1.227885 0.19542,1.397247 0.12376,0.162849 0.43969,0.27033 0.94778,0.322443 0.0521,0.05211 0.0782,0.127021 0.0782,0.22473 -1e-5,0.0912 -0.0261,0.169365 -0.0782,0.234505 -0.24102,0 -0.54066,-0.01629 -0.89893,-0.04886 -0.35176,-0.03257 -0.66117,-0.04885 -0.92824,-0.04885 -0.30616,0 -0.6742,0.01629 -1.10412,0.04885 -0.42341,0.03257 -0.74259,0.04886 -0.95755,0.04886 -0.0521,-0.06514 -0.0782,-0.143309 -0.0782,-0.234505 0,-0.09771 0.0261,-0.17262 0.0782,-0.22473 0.58625,-0.05211 0.95429,-0.159594 1.10412,-0.322443 0.14982,-0.169362 0.23124,-0.635111 0.24427,-1.397247 0.0391,-1.615463 0.0391,-3.00294 0,-4.162431 -0.013,-0.547169 -0.0944,-0.885894 -0.24427,-1.016182 -0.14331,-0.136786 -0.47553,-0.231238 -0.99664,-0.283359 -0.0521,-0.149811 -0.0651,-0.263808 -0.0391,-0.341982 1.1204,-0.149814 1.96071,-0.328948 2.52091,-0.537404 0.16285,10e-6 0.24102,0.04561 0.23451,0.136795 -0.0652,0.586264 -0.0977,1.074813 -0.0977,1.465645 -10e-6,0.162855 0.0586,0.162855 0.17587,0" + style="font-size:100px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine Display;-inkscape-font-specification:Linux Libertine Display" + id="path5926" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccc" + id="path5928" + d="m 541.732,-66.348528 c -0.13971,0.02786 -0.27953,0.06663 -0.40741,0.130789 -0.22662,0.113082 -0.37273,0.330327 -0.4985,0.541252 -0.1021,0.168068 -0.20421,0.3378 -0.27025,0.523878 -0.14368,0.411431 -0.29513,0.821215 -0.40198,1.244238 -0.12636,0.490682 -0.24558,0.98361 -0.33305,1.482857 -0.0787,0.423409 -0.16939,0.84657 -0.19755,1.277094 0.005,0.329274 0.17648,0.638487 0.4144,0.859433 0.34441,0.311731 0.86746,0.415614 1.30226,0.245501 0.32155,-0.123994 0.56746,-0.397464 0.70379,-0.708154 0.0738,-0.154758 0.11624,-0.329019 0.0888,-0.500451 -0.0282,-0.231022 -0.0778,-0.458797 -0.11064,-0.689169 -0.11526,-0.709159 -0.23273,-1.418147 -0.37545,-2.12243 -0.0624,-0.336584 -0.10036,-0.677162 -0.13406,-1.0176 -0.0163,-0.195241 -0.0317,-0.390835 -0.0381,-0.586598 -10e-4,-0.08301 0.0192,-0.175166 0.0925,-0.224705 0.0806,-0.06276 0.187,-0.09662 0.2889,-0.088 0.0636,0.01901 0.10054,0.07999 0.14552,0.124248 0.0349,0.04502 0.0275,0.103946 0.012,0.15456 -0.0465,0.234004 -0.094,0.467802 -0.14496,0.700881 0.16713,-0.259526 0.35703,-0.509204 0.46618,-0.800636 0.009,-0.0285 0.0293,-0.05932 0.0311,-0.0867 -0.12917,-0.148129 -0.26992,-0.289472 -0.44019,-0.390583 -0.0569,-0.03818 -0.1222,-0.07501 -0.19323,-0.06971 z" + style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /> + </g> + </g> +</svg> Added: siteCL-refactoring2015/pictures/logo-toshiba.png =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/pictures/logo-toshiba.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: siteCL-refactoring2015/pictures/lutin-tete.png =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/pictures/lutin-tete.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: siteCL-refactoring2015/pictures/map.png =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/pictures/map.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: siteCL-refactoring2015/pictures/work-coffee.jpg =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/pictures/work-coffee.jpg ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: siteCL-refactoring2015/pictures/work-desk.jpg =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/pictures/work-desk.jpg ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: siteCL-refactoring2015/pictures/work-map.jpg =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/pictures/work-map.jpg ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: siteCL-refactoring2015/pictures/work-type.jpg =================================================================== (Binary files differ) Property changes on: siteCL-refactoring2015/pictures/work-type.jpg ___________________________________________________________________ Added: svn:mime-type + application/octet-stream
participants (1)
-
lkaufmann@users.nuiton.org