path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
db/jsb/code/canvas/ballmove2.html
ccckmit/wd
<!DOCTYPE html> <html> <body> <img id="ball" src="ball.jpg" alt="The Scream" style="display:none"> <p>Canvas:</p> <canvas id="myCanvas" width="240" height="297" style="border:1px solid #d3d3d3;"/> <script> var img, ctx, canvas; var x=0, y=0; window.onload = main; function update() { x+=2; y+=2; } function draw() { ctx.clearRect(0, 0, canvas.width, canvas.height); ctx.drawImage(img, x, y); } function main() { img = document.getElementById("ball"); canvas = document.getElementById("myCanvas"); ctx = canvas.getContext("2d"); var loop = function() { update(); draw(); window.requestAnimationFrame(loop, canvas); }; window.requestAnimationFrame(loop, canvas); } </script> </body> </html>
lib/any/xowa/xtns/Wikihiero/modules/ext.wikihiero.css
crosslink/xowa
.mw-hiero-table { border: 0; border-spacing: 0; } .mw-hiero-outer { display: inline; } .mw-hiero-table td { padding: 0; text-align: center; vertical-align: middle; } .mw-hiero-box { background: black; } .mw-mirrored { -moz-transform: scaleX(-1); -o-transform: scaleX(-1); -webkit-transform: scaleX(-1); transform: scaleX(-1); filter: FlipH; -ms-filter: "FlipH"; }
public/500.html
pozorvlak/growstuff
<!DOCTYPE html> <nav id="header" class="navbar navbar-inverse navbar-fixed-top"> <div class="container"> <div class="navbar-header" style="float:none; text-align:center;"> <a class="navbar-brand" id="brand" href="/" style="text-align:center; position:absolute">GrowStuff</a> </div> </div> </nav> <html> <head> <title>We're sorry, but something went wrong (500)</title> <style type="text/css"> body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; } div.dialog { width: 25em; padding: 0 4em; margin: 4em auto 0 auto; border: 1px solid #ccc; border-right-color: #999; border-bottom-color: #999; } h1 { font-size: 100%; color: #f00; line-height: 1.5em; } </style> </head> <body> <!-- This file lives in public/500.html --> <div class="dialog"> <h1>We're sorry, but something went wrong.</h1> </div> </body> </html>
docs/api_reference/C/repmgr_local_site.html
tux-mind/platform_external_bdb
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>DB_ENV-&gt;repmgr_local_site()</title> <link rel="stylesheet" href="apiReference.css" type="text/css" /> <meta name="generator" content="DocBook XSL Stylesheets V1.73.2" /> <link rel="start" href="index.html" title="Berkeley DB C API Reference" /> <link rel="up" href="rep.html" title="Chapter 10.  Replication Methods" /> <link rel="prev" href="repmgr_channel.html" title="DB_ENV-&gt;repmgr_channel()" /> <link rel="next" href="repmgrget_ack_policy.html" title="DB_ENV-&gt;repmgr_get_ack_policy()" /> </head> <body> <div xmlns="" class="navheader"> <div class="libver"> <p>Library Version 12.1.6.0</p> </div> <table width="100%" summary="Navigation header"> <tr> <th colspan="3" align="center">DB_ENV-&gt;repmgr_local_site()</th> </tr> <tr> <td width="20%" align="left"><a accesskey="p" href="repmgr_channel.html">Prev</a> </td> <th width="60%" align="center">Chapter 10.  Replication Methods </th> <td width="20%" align="right"> <a accesskey="n" href="repmgrget_ack_policy.html">Next</a></td> </tr> </table> <hr /> </div> <div class="sect1" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h2 class="title" style="clear: both"><a id="repmgr_local_site"></a>DB_ENV-&gt;repmgr_local_site()</h2> </div> </div> </div> <pre class="programlisting">#include &lt;db.h&gt; int DB_ENV-&gt;repmgr_local_site(DB_ENV *env, DB_SITE **sitep); </pre> <p> The <code class="methodname">DB_ENV-&gt;repmgr_local_site()</code> method returns a DB_SITE handle that defines the local site's host/port network address. You use the DB_SITE handle to configure and manage replication sites. </p> <p> This method allocates memory for the handle, returning a pointer to the structure in the memory to which <span class="bold"><strong>sitep</strong></span> refers. To release the allocated memory and discard the handle, call the <a class="xref" href="dbsite_close.html" title="DB_SITE-&gt;close()">DB_SITE-&gt;close()</a> method. </p> <p> The <code class="methodname">DB_ENV-&gt;repmgr_local_site()</code> method may be called at any time after the environment handle has been created. </p> <p> The <code class="methodname">DB_ENV-&gt;repmgr_local_site()</code> <span> <span> method returns a non-zero error value on failure and 0 on success. </span> </span> </p> <div class="sect2" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h3 class="title"><a id="idp54427536"></a>Parameters</h3> </div> </div> </div> <div class="sect3" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h4 class="title"><a id="idp54426672"></a>sitep</h4> </div> </div> </div> <p> References memory into which a pointer to the allocated handle is copied. </p> </div> </div> <div class="sect2" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h3 class="title"><a id="idp54430832"></a>Errors</h3> </div> </div> </div> <p> The <code class="methodname">DB_ENV-&gt;repmgr_local_site()</code> <span> <span> method may fail and return one of the following non-zero errors: </span> </span> </p> <div class="sect3" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h4 class="title"><a id="idp54405552"></a>EINVAL</h4> </div> </div> </div> <p> If this method is called from a Base API application, or if an invalid flag value or parameter was specified. </p> </div> </div> <div class="sect2" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h3 class="title"><a id="idp54405184"></a>Class</h3> </div> </div> </div> <p> <a class="link" href="env.html" title="Chapter 5.  The DB_ENV Handle">DB_ENV</a> </p> </div> <div class="sect2" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h3 class="title"><a id="idp54401488"></a>See Also</h3> </div> </div> </div> <p> <a class="xref" href="rep.html#replist" title="Replication and Related Methods">Replication and Related Methods</a> </p> </div> </div> <div class="navfooter"> <hr /> <table width="100%" summary="Navigation footer"> <tr> <td width="40%" align="left"><a accesskey="p" href="repmgr_channel.html">Prev</a> </td> <td width="20%" align="center"> <a accesskey="u" href="rep.html">Up</a> </td> <td width="40%" align="right"> <a accesskey="n" href="repmgrget_ack_policy.html">Next</a></td> </tr> <tr> <td width="40%" align="left" valign="top">DB_ENV-&gt;repmgr_channel() </td> <td width="20%" align="center"> <a accesskey="h" href="index.html">Home</a> </td> <td width="40%" align="right" valign="top"> DB_ENV-&gt;repmgr_get_ack_policy()</td> </tr> </table> </div> </body> </html>
program_management/templates/learning_unit/tab_prerequisite_group.html
uclouvain/OSIS-Louvain
{% extends "learning_unit/tree_layout_detail.html" %} {% load i18n %} {% comment "License" %} * OSIS stands for Open Student Information System. It's an application * designed to manage the core business of higher education institutions, * such as universities, faculties, institutes and professional schools. * The core business involves the administration of students, teachers, * courses, programs and so on. * * Copyright (C) 2015-2019 Université catholique de Louvain (http://www.uclouvain.be) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * A copy of this license - GNU General Public License - is available * at the root of the source code of this program. If not, * see http://www.gnu.org/licenses/. {% endcomment %} {% block details %} <div class="panel panel-default"> <div class="panel-body"> <p> <a href="{% url 'learning_unit' learning_unit_year_id=learning_unit_year.id %}"> <ins>{{ learning_unit_year.acronym }}</ins> </a> {% trans "has the following prerequisites" %}: </p> {% if formations %} <table class="table table-hover"> <thead> <tr> <th>{% trans 'Trainings' %}</th> <th>{% blocktrans %}Prerequisites{% endblocktrans %}</th> </tr> </thead> <tbody> {% for education_group_year in formations %} <tr> <td> <a href="{% url 'education_group_read' education_group_year.id education_group_year.id %}">{{ education_group_year.acronym }}</a> </td> <td> {{ education_group_year.prerequisites.0.prerequisite_string_as_href|safe|default:"-"}}</td> </tr> {% endfor %} </tbody> </table> {% endif %} </div> </div> {% endblock %}
server/src/main/webapp/jquery-ui-1.10.3.custom/development-bundle/demos/menu/index.html
ahammer/MySaasa
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery UI Menu Demos</title> </head> <body> <ul> <li><a href="default.html">Default functionality</a></li> <li><a href="icons.html">Icons</a></li> </ul> </body> </html>
public/app/angular/panel/partials/query_editor_row.html
grafana/grafana
<div ng-transclude class="gf-form-query-content"></div>
src/boa/plugins/editor.diaporama/plugin_doc.html
boa-project/boa
<p>The basic editor for standard web images types (jpg, gif, png). This editor handles a thumbnail preview, a metadata extraction for image mime type and dimension, and an online fullscreen view. Thumbnails are generated using the PThumb library (distributed with AjaXplorer).</p> <p>The fullscreen viewer can be used as a diaporama with a variable auto-play timer. Zoom can be also set manually, and some parameters like "Fit Best" or "Actual Size" make this plugin really useful. Below is a sample screenshot.</p> <p>The metadata associated with the image can also be displayed. </p> <p align="center"> <img src="editor-diaporama.png"/> </p>
packages/canvas-rce/github-pages/demo.html
djbender/canvas-lms
<!doctype html> <html dir="ltr"> <head> <title>canvas-rce demo</title> <style> body {width: 1100px; margin: 2em auto; background-color: #eee;} h1 small { font-size: .5em; font-weight: normal; color: #888; } #demo {display: flex;} .main {flex: 3; padding: 0 2em;} .sidebar {flex: 1} #options {margin-top: 1em;} #options label {margin-top: 1em;} h1 {border-bottom: 1px;} code {background-color: #ddd; color: #c32; padding: 1px 3px; boarder-radius: 2px;} </style> </head> <body> <h1>CanvasRCE Demo</h1> <div id="demo"> <div class="main"> <h2>Editor</h2> <div id="editor1"> <textarea id="textarea1">this is initial text</textarea> </div> <h3>Multiple editors supported with a single sidebar</h3> <div id="editor2"> <textarea id="textarea2"></textarea> </div> <h3>Editor rendered via React Component</h3> <div id="editor3"> <textarea id="textarea3"></textarea> </div> </div> <div class="sidebar"> <h2>Sidebar</h2> <div id="sidebar"></div> <div id="options"></div> </div> </div> <script src="https://cdn.polyfill.io/v2/polyfill.min.js?rum=0"></script> <script src="demo.js"></script> </body> </html>
build/linux/work/hardware/tools/arm/share/doc/gcc-arm-none-eabi/html/gdb/List.html
dcuartielles/SmartWatch
<html lang="en"> <head> <title>List - Debugging with GDB</title> <meta http-equiv="Content-Type" content="text/html"> <meta name="description" content="Debugging with GDB"> <meta name="generator" content="makeinfo 4.11"> <link title="Top" rel="start" href="index.html#Top"> <link rel="up" href="Source.html#Source" title="Source"> <link rel="next" href="Specify-Location.html#Specify-Location" title="Specify Location"> <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage"> <!-- Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with the Invariant Sections being ``Free Software'' and ``Free Software Needs Free Documentation'', with the Front-Cover Texts being ``A GNU Manual,'' and with the Back-Cover Texts as in (a) below. (a) The FSF's Back-Cover Text is: ``You are free to copy and modify this GNU Manual. Buying copies from GNU Press supports the FSF in developing GNU and promoting software freedom.''--> <meta http-equiv="Content-Style-Type" content="text/css"> <style type="text/css"><!-- pre.display { font-family:inherit } pre.format { font-family:inherit } pre.smalldisplay { font-family:inherit; font-size:smaller } pre.smallformat { font-family:inherit; font-size:smaller } pre.smallexample { font-size:smaller } pre.smalllisp { font-size:smaller } span.sc { font-variant:small-caps } span.roman { font-family:serif; font-weight:normal; } span.sansserif { font-family:sans-serif; font-weight:normal; } --></style> </head> <body> <div class="node"> <p> <a name="List"></a> Next:&nbsp;<a rel="next" accesskey="n" href="Specify-Location.html#Specify-Location">Specify Location</a>, Up:&nbsp;<a rel="up" accesskey="u" href="Source.html#Source">Source</a> <hr> </div> <h3 class="section">9.1 Printing Source Lines</h3> <p><a name="index-list-447"></a><a name="index-l-_0040r_007b_0028_0040code_007blist_007d_0029_007d-448"></a>To print lines from a source file, use the <code>list</code> command (abbreviated <code>l</code>). By default, ten lines are printed. There are several ways to specify what part of the file you want to print; see <a href="Specify-Location.html#Specify-Location">Specify Location</a>, for the full list. <p>Here are the forms of the <code>list</code> command most commonly used: <dl> <dt><code>list </code><var>linenum</var><dd>Print lines centered around line number <var>linenum</var> in the current source file. <br><dt><code>list </code><var>function</var><dd>Print lines centered around the beginning of function <var>function</var>. <br><dt><code>list</code><dd>Print more lines. If the last lines printed were printed with a <code>list</code> command, this prints lines following the last lines printed; however, if the last line printed was a solitary line printed as part of displaying a stack frame (see <a href="Stack.html#Stack">Examining the Stack</a>), this prints lines centered around that line. <br><dt><code>list -</code><dd>Print lines just before the lines last printed. </dl> <p><a name="index-g_t_0040code_007blist_007d_002c-how-many-lines-to-display-449"></a>By default, <span class="sc">gdb</span> prints ten source lines with any of these forms of the <code>list</code> command. You can change this using <code>set listsize</code>: <a name="index-set-listsize-450"></a> <dl><dt><code>set listsize </code><var>count</var><dd>Make the <code>list</code> command display <var>count</var> source lines (unless the <code>list</code> argument explicitly specifies some other number). <p><a name="index-show-listsize-451"></a><br><dt><code>show listsize</code><dd>Display the number of lines that <code>list</code> prints. </dl> <p>Repeating a <code>list</code> command with &lt;RET&gt; discards the argument, so it is equivalent to typing just <code>list</code>. This is more useful than listing the same lines again. An exception is made for an argument of &lsquo;<samp><span class="samp">-</span></samp>&rsquo;; that argument is preserved in repetition so that each repetition moves up in the source file. <p>In general, the <code>list</code> command expects you to supply zero, one or two <dfn>linespecs</dfn>. Linespecs specify source lines; there are several ways of writing them (see <a href="Specify-Location.html#Specify-Location">Specify Location</a>), but the effect is always to specify some source line. <p>Here is a complete description of the possible arguments for <code>list</code>: <dl> <dt><code>list </code><var>linespec</var><dd>Print lines centered around the line specified by <var>linespec</var>. <br><dt><code>list </code><var>first</var><code>,</code><var>last</var><dd>Print lines from <var>first</var> to <var>last</var>. Both arguments are linespecs. When a <code>list</code> command has two linespecs, and the source file of the second linespec is omitted, this refers to the same source file as the first linespec. <br><dt><code>list ,</code><var>last</var><dd>Print lines ending with <var>last</var>. <br><dt><code>list </code><var>first</var><code>,</code><dd>Print lines starting with <var>first</var>. <br><dt><code>list +</code><dd>Print lines just after the lines last printed. <br><dt><code>list -</code><dd>Print lines just before the lines last printed. <br><dt><code>list</code><dd>As described in the preceding table. </dl> </body></html>
doc/html/qhash-const-iterator.html
nonrational/qt-everywhere-opensource-src-4.8.6
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- qhash.cpp --> <title>Qt 4.8: const_iterator Class Reference</title> <link rel="stylesheet" type="text/css" href="style/style.css" /> <script src="scripts/jquery.js" type="text/javascript"></script> <script src="scripts/functions.js" type="text/javascript"></script> <link rel="stylesheet" type="text/css" href="style/superfish.css" /> <link rel="stylesheet" type="text/css" href="style/narrow.css" /> <!--[if IE]> <meta name="MSSmartTagsPreventParsing" content="true"> <meta http-equiv="imagetoolbar" content="no"> <![endif]--> <!--[if lt IE 7]> <link rel="stylesheet" type="text/css" href="style/style_ie6.css"> <![endif]--> <!--[if IE 7]> <link rel="stylesheet" type="text/css" href="style/style_ie7.css"> <![endif]--> <!--[if IE 8]> <link rel="stylesheet" type="text/css" href="style/style_ie8.css"> <![endif]--> <script src="scripts/superfish.js" type="text/javascript"></script> <script src="scripts/narrow.js" type="text/javascript"></script> </head> <body class="" onload="CheckEmptyAndLoadList();"> <div class="header" id="qtdocheader"> <div class="content"> <div id="nav-logo"> <a href="index.html">Home</a></div> <a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a> <div id="narrowsearch"></div> <div id="nav-topright"> <ul> <li class="nav-topright-home"><a href="http://qt.digia.com/">Qt HOME</a></li> <li class="nav-topright-dev"><a href="http://qt-project.org/">DEV</a></li> <li class="nav-topright-doc nav-topright-doc-active"><a href="http://qt-project.org/doc/"> DOC</a></li> <li class="nav-topright-blog"><a href="http://blog.qt.digia.com/">BLOG</a></li> </ul> </div> <div id="shortCut"> <ul> <li class="shortCut-topleft-inactive"><span><a href="index.html">Qt 4.8</a></span></li> <li class="shortCut-topleft-active"><a href="http://qt-project.org/doc/">ALL VERSIONS </a></li> </ul> </div> <ul class="sf-menu" id="narrowmenu"> <li><a href="#">API Lookup</a> <ul> <li><a href="classes.html">Class index</a></li> <li><a href="functions.html">Function index</a></li> <li><a href="modules.html">Modules</a></li> <li><a href="namespaces.html">Namespaces</a></li> <li><a href="qtglobal.html">Global Declarations</a></li> <li><a href="qdeclarativeelements.html">QML elements</a></li> </ul> </li> <li><a href="#">Qt Topics</a> <ul> <li><a href="qt-basic-concepts.html">Programming with Qt</a></li> <li><a href="qtquick.html">Device UIs &amp; Qt Quick</a></li> <li><a href="qt-gui-concepts.html">UI Design with Qt</a></li> <li><a href="supported-platforms.html">Supported Platforms</a></li> <li><a href="technology-apis.html">Qt and Key Technologies</a></li> <li><a href="best-practices.html">How-To's and Best Practices</a></li> </ul> </li> <li><a href="#">Examples</a> <ul> <li><a href="all-examples.html">Examples</a></li> <li><a href="tutorials.html">Tutorials</a></li> <li><a href="demos.html">Demos</a></li> <li><a href="qdeclarativeexamples.html">QML Examples</a></li> </ul> </li> </ul> </div> </div> <div class="wrapper"> <div class="hd"> <span></span> </div> <div class="bd group"> <div class="sidebar"> <div class="searchlabel"> Search index:</div> <div class="search" id="sidebarsearch"> <form id="qtdocsearch" action="" onsubmit="return false;"> <fieldset> <input type="text" name="searchstring" id="pageType" value="" /> <div id="resultdialog"> <a href="#" id="resultclose">Close</a> <p id="resultlinks" class="all"><a href="#" id="showallresults">All</a> | <a href="#" id="showapiresults">API</a> | <a href="#" id="showarticleresults">Articles</a> | <a href="#" id="showexampleresults">Examples</a></p> <p id="searchcount" class="all"><span id="resultcount"></span><span id="apicount"></span><span id="articlecount"></span><span id="examplecount"></span>&nbsp;results:</p> <ul id="resultlist" class="all"> </ul> </div> </fieldset> </form> </div> <div class="box first bottombar" id="lookup"> <h2 title="API Lookup"><span></span> API Lookup</h2> <div id="list001" class="list"> <ul id="ul001" > <li class="defaultLink"><a href="classes.html">Class index</a></li> <li class="defaultLink"><a href="functions.html">Function index</a></li> <li class="defaultLink"><a href="modules.html">Modules</a></li> <li class="defaultLink"><a href="namespaces.html">Namespaces</a></li> <li class="defaultLink"><a href="qtglobal.html">Global Declarations</a></li> <li class="defaultLink"><a href="qdeclarativeelements.html">QML elements</a></li> </ul> </div> </div> <div class="box bottombar" id="topics"> <h2 title="Qt Topics"><span></span> Qt Topics</h2> <div id="list002" class="list"> <ul id="ul002" > <li class="defaultLink"><a href="qt-basic-concepts.html">Programming with Qt</a></li> <li class="defaultLink"><a href="qtquick.html">Device UIs &amp; Qt Quick</a></li> <li class="defaultLink"><a href="qt-gui-concepts.html">UI Design with Qt</a></li> <li class="defaultLink"><a href="supported-platforms.html">Supported Platforms</a></li> <li class="defaultLink"><a href="technology-apis.html">Qt and Key Technologies</a></li> <li class="defaultLink"><a href="best-practices.html">How-To's and Best Practices</a></li> </ul> </div> </div> <div class="box" id="examples"> <h2 title="Examples"><span></span> Examples</h2> <div id="list003" class="list"> <ul id="ul003"> <li class="defaultLink"><a href="all-examples.html">Examples</a></li> <li class="defaultLink"><a href="tutorials.html">Tutorials</a></li> <li class="defaultLink"><a href="demos.html">Demos</a></li> <li class="defaultLink"><a href="qdeclarativeexamples.html">QML Examples</a></li> </ul> </div> </div> </div> <div class="wrap"> <div class="toolbar"> <div class="breadcrumb toolblock"> <ul> <li class="first"><a href="index.html">Home</a></li> <!-- Breadcrumbs go here --> <li><a href="modules.html">Modules</a></li> <li><a href="qtcore.html">QtCore</a></li> <li>const_iterator</li> </ul> </div> <div class="toolbuttons toolblock"> <ul> <li id="smallA" class="t_button">A</li> <li id="medA" class="t_button active">A</li> <li id="bigA" class="t_button">A</li> <li id="print" class="t_button"><a href="javascript:this.print();"> <span>Print</span></a></li> </ul> </div> </div> <div class="content mainContent"> <div class="toc"> <h3><a name="toc">Contents</a></h3> <ul> <li class="level1"><a href="#public-functions">Public Functions</a></li> <li class="level1"><a href="#details">Detailed Description</a></li> </ul> </div> <h1 class="title">const_iterator Class Reference</h1> <span class="small-subtitle">(QHash::const_iterator)<br/></span> <!-- $$$const_iterator-brief --> <p>The QHash::const_iterator class provides an STL-style const iterator for <a href="qhash.html">QHash</a> and <a href="qmultihash.html">QMultiHash</a>. <a href="#details">More...</a></p> <!-- @@@const_iterator --> <pre class="cpp"> <span class="preprocessor">#include &lt;<a href="qhash.html">QHash</a>&gt;</span></pre><ul> <li><a href="qhash-const-iterator-members.html">List of all members, including inherited members</a></li> </ul> <a name="public-functions"></a> <h2>Public Functions</h2> <table class="alignedsummary"> <tr><td class="memItemLeft rightAlign topAlign"> </td><td class="memItemRight bottomAlign"><b><a href="qhash-const-iterator.html#const_iterator">const_iterator</a></b> ()</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> </td><td class="memItemRight bottomAlign"><b><a href="qhash-const-iterator.html#const_iterator-3">const_iterator</a></b> ( const iterator &amp; <i>other</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> const Key &amp; </td><td class="memItemRight bottomAlign"><b><a href="qhash-const-iterator.html#key">key</a></b> () const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> const T &amp; </td><td class="memItemRight bottomAlign"><b><a href="qhash-const-iterator.html#value">value</a></b> () const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="qhash-const-iterator.html#operator-not-eq">operator!=</a></b> ( const const_iterator &amp; <i>other</i> ) const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> const T &amp; </td><td class="memItemRight bottomAlign"><b><a href="qhash-const-iterator.html#operator-2a">operator*</a></b> () const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> const_iterator </td><td class="memItemRight bottomAlign"><b><a href="qhash-const-iterator.html#operator-2b">operator+</a></b> ( int <i>j</i> ) const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> const_iterator &amp; </td><td class="memItemRight bottomAlign"><b><a href="qhash-const-iterator.html#operator-2b-2b">operator++</a></b> ()</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> const_iterator </td><td class="memItemRight bottomAlign"><b><a href="qhash-const-iterator.html#operator-2b-2b-2">operator++</a></b> ( int )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> const_iterator &amp; </td><td class="memItemRight bottomAlign"><b><a href="qhash-const-iterator.html#operator-2b-eq">operator+=</a></b> ( int <i>j</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> const_iterator </td><td class="memItemRight bottomAlign"><b><a href="qhash-const-iterator.html#operator-">operator-</a></b> ( int <i>j</i> ) const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> const_iterator &amp; </td><td class="memItemRight bottomAlign"><b><a href="qhash-const-iterator.html#operator--">operator--</a></b> ()</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> const_iterator </td><td class="memItemRight bottomAlign"><b><a href="qhash-const-iterator.html#operator---2">operator--</a></b> ( int )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> const_iterator &amp; </td><td class="memItemRight bottomAlign"><b><a href="qhash-const-iterator.html#operator--eq">operator-=</a></b> ( int <i>j</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> const T * </td><td class="memItemRight bottomAlign"><b><a href="qhash-const-iterator.html#operator--gt">operator-&gt;</a></b> () const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="qhash-const-iterator.html#operator-eq-eq">operator==</a></b> ( const const_iterator &amp; <i>other</i> ) const</td></tr> </table> <a name="details"></a> <!-- $$$const_iterator-description --> <div class="descr"> <h2>Detailed Description</h2> <p>The QHash::const_iterator class provides an STL-style const iterator for <a href="qhash.html">QHash</a> and <a href="qmultihash.html">QMultiHash</a>.</p> <p><a href="qhash.html">QHash</a> features both <a href="containers.html#stl-style-iterators">STL-style iterators</a> and <a href="containers.html#java-style-iterators">Java-style iterators</a>. The STL-style iterators are more low-level and more cumbersome to use; on the other hand, they are slightly faster and, for developers who already know STL, have the advantage of familiarity.</p> <p><a href="qhash.html">QHash</a>&lt;Key, T&gt;::const_iterator allows you to iterate over a <a href="qhash.html">QHash</a> (or a <a href="qmultihash.html">QMultiHash</a>). If you want to modify the <a href="qhash.html">QHash</a> as you iterate over it, you must use <a href="qhash-iterator.html">QHash::iterator</a> instead. It is generally good practice to use QHash::const_iterator on a non-const <a href="qhash.html">QHash</a> as well, unless you need to change the <a href="qhash.html">QHash</a> through the iterator. Const iterators are slightly faster, and can improve code readability.</p> <p>The default QHash::const_iterator constructor creates an uninitialized iterator. You must initialize it using a <a href="qhash.html">QHash</a> function like <a href="qhash.html#constBegin">QHash::constBegin</a>(), <a href="qhash.html#constEnd">QHash::constEnd</a>(), or <a href="qhash.html#find">QHash::find</a>() before you can start iterating. Here's a typical loop that prints all the (key, value) pairs stored in a hash:</p> <pre class="cpp"> <span class="type"><a href="qhash.html">QHash</a></span><span class="operator">&lt;</span><span class="type"><a href="qstring.html">QString</a></span><span class="operator">,</span> <span class="type">int</span><span class="operator">&gt;</span> hash; hash<span class="operator">.</span><a href="qhash.html#insert">insert</a>(<span class="string">&quot;January&quot;</span><span class="operator">,</span> <span class="number">1</span>); hash<span class="operator">.</span><a href="qhash.html#insert">insert</a>(<span class="string">&quot;February&quot;</span><span class="operator">,</span> <span class="number">2</span>); <span class="operator">.</span><span class="operator">.</span><span class="operator">.</span> hash<span class="operator">.</span><a href="qhash.html#insert">insert</a>(<span class="string">&quot;December&quot;</span><span class="operator">,</span> <span class="number">12</span>); <span class="type"><a href="qhash.html">QHash</a></span><span class="operator">&lt;</span><span class="type"><a href="qstring.html">QString</a></span><span class="operator">,</span> <span class="type">int</span><span class="operator">&gt;</span><span class="operator">::</span>const_iterator i; <span class="keyword">for</span> (i <span class="operator">=</span> hash<span class="operator">.</span>constBegin(); i <span class="operator">!</span><span class="operator">=</span> hash<span class="operator">.</span>constEnd(); <span class="operator">+</span><span class="operator">+</span>i) cout <span class="operator">&lt;</span><span class="operator">&lt;</span> i<span class="operator">.</span><a href="qhash-const-iterator.html#key">key</a>() <span class="operator">&lt;</span><span class="operator">&lt;</span> <span class="string">&quot;: &quot;</span> <span class="operator">&lt;</span><span class="operator">&lt;</span> i<span class="operator">.</span><a href="qhash-const-iterator.html#value">value</a>() <span class="operator">&lt;</span><span class="operator">&lt;</span> endl;</pre> <p>Unlike <a href="qmap.html">QMap</a>, which orders its items by key, <a href="qhash.html">QHash</a> stores its items in an arbitrary order. The only guarantee is that items that share the same key (because they were inserted using <a href="qhash.html#insertMulti">QHash::insertMulti</a>()) will appear consecutively, from the most recently to the least recently inserted value.</p> <p>Multiple iterators can be used on the same hash. However, be aware that any modification performed directly on the <a href="qhash.html">QHash</a> has the potential of dramatically changing the order in which the items are stored in the hash, as they might cause <a href="qhash.html">QHash</a> to rehash its internal data structure. If you need to keep iterators over a long period of time, we recommend that you use <a href="qmap.html">QMap</a> rather than <a href="qhash.html">QHash</a>.</p> </div> <p><b>See also </b><a href="qhash-iterator.html">QHash::iterator</a> and <a href="qhashiterator.html">QHashIterator</a>.</p> <!-- @@@const_iterator --> <div class="func"> <h2>Member Function Documentation</h2> <!-- $$$const_iterator[overload1]$$$const_iterator --> <h3 class="fn"><a name="const_iterator"></a>const_iterator::<span class="name">const_iterator</span> ()</h3> <p>Constructs an uninitialized iterator.</p> <p>Functions like <a href="qhash-const-iterator.html#key">key</a>(), <a href="qhash-const-iterator.html#value">value</a>(), and operator++() must not be called on an uninitialized iterator. Use operator=() to assign a value to it before using it.</p> <p><b>See also </b><a href="qhash.html#constBegin">QHash::constBegin</a>() and <a href="qhash.html#constEnd">QHash::constEnd</a>().</p> <!-- @@@const_iterator --> <!-- $$$const_iterator$$$const_iteratorconstiterator& --> <h3 class="fn"><a name="const_iterator-3"></a>const_iterator::<span class="name">const_iterator</span> ( const <span class="type"><a href="qhash-iterator.html">iterator</a></span> &amp; <i>other</i> )</h3> <p>Constructs a copy of <i>other</i>.</p> <!-- @@@const_iterator --> <!-- $$$key[overload1]$$$key --> <h3 class="fn"><a name="key"></a>const <span class="type">Key</span> &amp; const_iterator::<span class="name">key</span> () const</h3> <p>Returns the current item's key.</p> <p><b>See also </b><a href="qhash-const-iterator.html#value">value</a>().</p> <!-- @@@key --> <!-- $$$value[overload1]$$$value --> <h3 class="fn"><a name="value"></a>const <span class="type">T</span> &amp; const_iterator::<span class="name">value</span> () const</h3> <p>Returns the current item's value.</p> <p><b>See also </b><a href="qhash-const-iterator.html#key">key</a>() and <a href="qhash-const-iterator.html#operator-2a">operator*</a>().</p> <!-- @@@value --> <!-- $$$operator!=[overload1]$$$operator!=constconst_iterator& --> <h3 class="fn"><a name="operator-not-eq"></a><span class="type">bool</span> const_iterator::<span class="name">operator!=</span> ( const <span class="type">const_iterator</span> &amp; <i>other</i> ) const</h3> <p>Returns true if <i>other</i> points to a different item than this iterator; otherwise returns false.</p> <p><b>See also </b><a href="qhash-const-iterator.html#operator-eq-eq">operator==</a>().</p> <!-- @@@operator!= --> <!-- $$$operator*[overload1]$$$operator* --> <h3 class="fn"><a name="operator-2a"></a>const <span class="type">T</span> &amp; const_iterator::<span class="name">operator*</span> () const</h3> <p>Returns the current item's value.</p> <p>Same as <a href="qhash-const-iterator.html#value">value</a>().</p> <p><b>See also </b><a href="qhash-const-iterator.html#key">key</a>().</p> <!-- @@@operator* --> <!-- $$$operator+[overload1]$$$operator+int --> <h3 class="fn"><a name="operator-2b"></a><span class="type">const_iterator</span> const_iterator::<span class="name">operator+</span> ( <span class="type">int</span> <i>j</i> ) const</h3> <p>Returns an iterator to the item at <i>j</i> positions forward from this iterator. (If <i>j</i> is negative, the iterator goes backward.)</p> <p>This operation can be slow for large <i>j</i> values.</p> <p><b>See also </b><a href="qhash-const-iterator.html#operator-">operator-</a>().</p> <!-- @@@operator+ --> <!-- $$$operator++[overload1]$$$operator++ --> <h3 class="fn"><a name="operator-2b-2b"></a><span class="type">const_iterator</span> &amp; const_iterator::<span class="name">operator++</span> ()</h3> <p>The prefix ++ operator (<tt>++i</tt>) advances the iterator to the next item in the hash and returns an iterator to the new current item.</p> <p>Calling this function on <a href="qhash.html#end">QHash::end</a>() leads to undefined results.</p> <p><b>See also </b><a href="qhash-const-iterator.html#operator--">operator--</a>().</p> <!-- @@@operator++ --> <!-- $$$operator++$$$operator++int --> <h3 class="fn"><a name="operator-2b-2b-2"></a><span class="type">const_iterator</span> const_iterator::<span class="name">operator++</span> ( <span class="type">int</span> )</h3> <p>This is an overloaded function.</p> <p>The postfix ++ operator (<tt>i++</tt>) advances the iterator to the next item in the hash and returns an iterator to the previously current item.</p> <!-- @@@operator++ --> <!-- $$$operator+=[overload1]$$$operator+=int --> <h3 class="fn"><a name="operator-2b-eq"></a><span class="type">const_iterator</span> &amp; const_iterator::<span class="name">operator+=</span> ( <span class="type">int</span> <i>j</i> )</h3> <p>Advances the iterator by <i>j</i> items. (If <i>j</i> is negative, the iterator goes backward.)</p> <p>This operation can be slow for large <i>j</i> values.</p> <p><b>See also </b><a href="qhash-const-iterator.html#operator--eq">operator-=</a>() and <a href="qhash-const-iterator.html#operator-2b">operator+</a>().</p> <!-- @@@operator+= --> <!-- $$$operator-[overload1]$$$operator-int --> <h3 class="fn"><a name="operator-"></a><span class="type">const_iterator</span> const_iterator::<span class="name">operator-</span> ( <span class="type">int</span> <i>j</i> ) const</h3> <p>Returns an iterator to the item at <i>j</i> positions backward from this iterator. (If <i>j</i> is negative, the iterator goes forward.)</p> <p>This operation can be slow for large <i>j</i> values.</p> <p><b>See also </b><a href="qhash-const-iterator.html#operator-2b">operator+</a>().</p> <!-- @@@operator- --> <!-- $$$operator--[overload1]$$$operator-- --> <h3 class="fn"><a name="operator--"></a><span class="type">const_iterator</span> &amp; const_iterator::<span class="name">operator--</span> ()</h3> <p>The prefix -- operator (<tt>--i</tt>) makes the preceding item current and returns an iterator pointing to the new current item.</p> <p>Calling this function on <a href="qhash.html#begin">QHash::begin</a>() leads to undefined results.</p> <p><b>See also </b><a href="qhash-const-iterator.html#operator-2b-2b">operator++</a>().</p> <!-- @@@operator-- --> <!-- $$$operator--$$$operator--int --> <h3 class="fn"><a name="operator---2"></a><span class="type">const_iterator</span> const_iterator::<span class="name">operator--</span> ( <span class="type">int</span> )</h3> <p>This is an overloaded function.</p> <p>The postfix -- operator (<tt>i--</tt>) makes the preceding item current and returns an iterator pointing to the previously current item.</p> <!-- @@@operator-- --> <!-- $$$operator-=[overload1]$$$operator-=int --> <h3 class="fn"><a name="operator--eq"></a><span class="type">const_iterator</span> &amp; const_iterator::<span class="name">operator-=</span> ( <span class="type">int</span> <i>j</i> )</h3> <p>Makes the iterator go back by <i>j</i> items. (If <i>j</i> is negative, the iterator goes forward.)</p> <p>This operation can be slow for large <i>j</i> values.</p> <p><b>See also </b><a href="qhash-const-iterator.html#operator-2b-eq">operator+=</a>() and <a href="qhash-const-iterator.html#operator-">operator-</a>().</p> <!-- @@@operator-= --> <!-- $$$operator->[overload1]$$$operator-> --> <h3 class="fn"><a name="operator--gt"></a>const <span class="type">T</span> * const_iterator::<span class="name">operator-&gt;</span> () const</h3> <p>Returns a pointer to the current item's value.</p> <p><b>See also </b><a href="qhash-const-iterator.html#value">value</a>().</p> <!-- @@@operator-> --> <!-- $$$operator==[overload1]$$$operator==constconst_iterator& --> <h3 class="fn"><a name="operator-eq-eq"></a><span class="type">bool</span> const_iterator::<span class="name">operator==</span> ( const <span class="type">const_iterator</span> &amp; <i>other</i> ) const</h3> <p>Returns true if <i>other</i> points to the same item as this iterator; otherwise returns false.</p> <p><b>See also </b><a href="qhash-const-iterator.html#operator-not-eq">operator!=</a>().</p> <!-- @@@operator== --> </div> </div> </div> </div> <div class="ft"> <span></span> </div> </div> <div class="footer"> <p> <acronym title="Copyright">&copy;</acronym> 2014 Digia Plc and/or its subsidiaries. Documentation contributions included herein are the copyrights of their respective owners.</p> <br /> <p> The documentation provided herein is licensed under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.</p> <p> Documentation sources may be obtained from <a href="http://www.qt-project.org"> www.qt-project.org</a>.</p> <br /> <p> Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide. All other trademarks are property of their respective owners. <a title="Privacy Policy" href="http://en.gitorious.org/privacy_policy/">Privacy Policy</a></p> </div> <script src="scripts/functions.js" type="text/javascript"></script> </body> </html>
wiki/docs/2.3/coverage-report/Cqrs.MongoDB/Events/Indexes/ByTimestampAndEventTypeMongoDbIndex.cs.gcov.html
cdmdotnet/CQRS
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>LCOV - doc-coverage.info - Cqrs.MongoDB/Events/Indexes/ByTimestampAndEventTypeMongoDbIndex.cs</title> <link rel="stylesheet" type="text/css" href="../../../gcov.css"> </head> <body> <table width="100%" border=0 cellspacing=0 cellpadding=0> <tr><td class="title">Documentation Coverage Report</td></tr> <tr><td class="ruler"><img src="../../../glass.png" width=3 height=3 alt=""></td></tr> <tr> <td width="100%"> <table cellpadding=1 border=0 width="100%"> <tr> <td width="10%" class="headerItem">Current view:</td> <td width="35%" class="headerValue"><a href="../../../index.html">top level</a> - <a href="index.html">Cqrs.MongoDB/Events/Indexes</a> - ByTimestampAndEventTypeMongoDbIndex.cs</td> <td width="5%"></td> <td width="15%"></td> <td width="10%" class="headerCovTableHead">Hit</td> <td width="10%" class="headerCovTableHead">Total</td> <td width="15%" class="headerCovTableHead">Coverage</td> </tr> <tr> <td class="headerItem">Version:</td> <td class="headerValue">2.2</td> <td></td> <td class="headerItem">Artefacts:</td> <td class="headerCovTableEntry">2</td> <td class="headerCovTableEntry">2</td> <td class="headerCovTableEntryHi">100.0 %</td> </tr> <tr> <td class="headerItem">Date:</td> <td class="headerValue">2018-02-20</td> <td></td> </tr> <tr><td><img src="../../../glass.png" width=3 height=3 alt=""></td></tr> </table> </td> </tr> <tr><td class="ruler"><img src="../../../glass.png" width=3 height=3 alt=""></td></tr> </table> <table cellpadding=0 cellspacing=0 border=0> <tr> <td><br></td> </tr> <tr> <td> <pre class="sourceHeading"> Line data Source code</pre> <pre class="source"> <span class="lineNum"> 1 </span> : #region Copyright <span class="lineNum"> 2 </span> : // // ----------------------------------------------------------------------- <span class="lineNum"> 3 </span> : // // &lt;copyright company=&quot;Chinchilla Software Limited&quot;&gt; <span class="lineNum"> 4 </span> : // // Copyright Chinchilla Software Limited. All rights reserved. <span class="lineNum"> 5 </span> : // // &lt;/copyright&gt; <span class="lineNum"> 6 </span> : // // ----------------------------------------------------------------------- <span class="lineNum"> 7 </span> : #endregion <span class="lineNum"> 8 </span> : <span class="lineNum"> 9 </span> : using System; <span class="lineNum"> 10 </span> : using System.Linq.Expressions; <span class="lineNum"> 11 </span> : using Cqrs.Events; <span class="lineNum"> 12 </span> : using Cqrs.MongoDB.DataStores.Indexes; <span class="lineNum"> 13 </span> : <span class="lineNum"> 14 </span> : namespace Cqrs.MongoDB.Events.Indexes <span class="lineNum"> 15 </span> : { <span class="lineNum"> 16 </span> : /// &lt;summary&gt; <span class="lineNum"> 17 </span> : /// A &lt;see cref=&quot;MongoDbIndex{TEntity}&quot;/&gt; for &lt;see cref=&quot;EventData.Timestamp&quot;/&gt; and &lt;see cref=&quot;EventData.EventType&quot;/&gt;. <span class="lineNum"> 18 </span> : /// &lt;/summary&gt; <span class="lineNum"> 19 </span> : public class ByTimestampAndEventTypeMongoDbIndex : MongoDbIndex&lt;MongoDbEventData&gt; <span class="lineNum"> 20 </span><span class="lineCov"> 1 : {</span> <span class="lineNum"> 21 </span> : /// &lt;summary&gt; <span class="lineNum"> 22 </span> : /// Instantiate a new instance of &lt;see cref=&quot;ByTimestampAndEventTypeMongoDbIndex&quot;/&gt;. <span class="lineNum"> 23 </span> : /// &lt;/summary&gt; <span class="lineNum"> 24 </span><span class="lineCov"> 1 : public ByTimestampAndEventTypeMongoDbIndex()</span> <span class="lineNum"> 25 </span> : { <span class="lineNum"> 26 </span> : Selectors = new Expression&lt;Func&lt;MongoDbEventData, object&gt;&gt;[] <span class="lineNum"> 27 </span> : { <span class="lineNum"> 28 </span> : entity =&gt; entity.Timestamp, <span class="lineNum"> 29 </span> : entity =&gt; entity.EventType <span class="lineNum"> 30 </span> : }; <span class="lineNum"> 31 </span> : <span class="lineNum"> 32 </span> : IsUnique = false; <span class="lineNum"> 33 </span> : } <span class="lineNum"> 34 </span> : } <span class="lineNum"> 35 </span> : } </pre> </td> </tr> </table> <br> <table width="100%" border=0 cellspacing=0 cellpadding=0> <tr><td class="ruler"><img src="../../../glass.png" width=3 height=3 alt=""></td></tr> <tr><td class="versionInfo">Generated by: <a href="http://ltp.sourceforge.net/coverage/lcov.php" target="_parent">LCOV version 1.10</a></td></tr> </table> <br> </body> </html>
doc/html/widgets-stylesheet-mainwindow-ui.html
nonrational/qt-everywhere-opensource-src-4.8.6
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Qt 4.8: mainwindow.ui Example File (widgets/stylesheet/mainwindow.ui)</title> <link rel="stylesheet" type="text/css" href="style/style.css" /> <script src="scripts/jquery.js" type="text/javascript"></script> <script src="scripts/functions.js" type="text/javascript"></script> <link rel="stylesheet" type="text/css" href="style/superfish.css" /> <link rel="stylesheet" type="text/css" href="style/narrow.css" /> <!--[if IE]> <meta name="MSSmartTagsPreventParsing" content="true"> <meta http-equiv="imagetoolbar" content="no"> <![endif]--> <!--[if lt IE 7]> <link rel="stylesheet" type="text/css" href="style/style_ie6.css"> <![endif]--> <!--[if IE 7]> <link rel="stylesheet" type="text/css" href="style/style_ie7.css"> <![endif]--> <!--[if IE 8]> <link rel="stylesheet" type="text/css" href="style/style_ie8.css"> <![endif]--> <script src="scripts/superfish.js" type="text/javascript"></script> <script src="scripts/narrow.js" type="text/javascript"></script> </head> <body class="" onload="CheckEmptyAndLoadList();"> <div class="header" id="qtdocheader"> <div class="content"> <div id="nav-logo"> <a href="index.html">Home</a></div> <a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a> <div id="narrowsearch"></div> <div id="nav-topright"> <ul> <li class="nav-topright-home"><a href="http://qt.digia.com/">Qt HOME</a></li> <li class="nav-topright-dev"><a href="http://qt-project.org/">DEV</a></li> <li class="nav-topright-doc nav-topright-doc-active"><a href="http://qt-project.org/doc/"> DOC</a></li> <li class="nav-topright-blog"><a href="http://blog.qt.digia.com/">BLOG</a></li> </ul> </div> <div id="shortCut"> <ul> <li class="shortCut-topleft-inactive"><span><a href="index.html">Qt 4.8</a></span></li> <li class="shortCut-topleft-active"><a href="http://qt-project.org/doc/">ALL VERSIONS </a></li> </ul> </div> <ul class="sf-menu" id="narrowmenu"> <li><a href="#">API Lookup</a> <ul> <li><a href="classes.html">Class index</a></li> <li><a href="functions.html">Function index</a></li> <li><a href="modules.html">Modules</a></li> <li><a href="namespaces.html">Namespaces</a></li> <li><a href="qtglobal.html">Global Declarations</a></li> <li><a href="qdeclarativeelements.html">QML elements</a></li> </ul> </li> <li><a href="#">Qt Topics</a> <ul> <li><a href="qt-basic-concepts.html">Programming with Qt</a></li> <li><a href="qtquick.html">Device UIs &amp; Qt Quick</a></li> <li><a href="qt-gui-concepts.html">UI Design with Qt</a></li> <li><a href="supported-platforms.html">Supported Platforms</a></li> <li><a href="technology-apis.html">Qt and Key Technologies</a></li> <li><a href="best-practices.html">How-To's and Best Practices</a></li> </ul> </li> <li><a href="#">Examples</a> <ul> <li><a href="all-examples.html">Examples</a></li> <li><a href="tutorials.html">Tutorials</a></li> <li><a href="demos.html">Demos</a></li> <li><a href="qdeclarativeexamples.html">QML Examples</a></li> </ul> </li> </ul> </div> </div> <div class="wrapper"> <div class="hd"> <span></span> </div> <div class="bd group"> <div class="sidebar"> <div class="searchlabel"> Search index:</div> <div class="search" id="sidebarsearch"> <form id="qtdocsearch" action="" onsubmit="return false;"> <fieldset> <input type="text" name="searchstring" id="pageType" value="" /> <div id="resultdialog"> <a href="#" id="resultclose">Close</a> <p id="resultlinks" class="all"><a href="#" id="showallresults">All</a> | <a href="#" id="showapiresults">API</a> | <a href="#" id="showarticleresults">Articles</a> | <a href="#" id="showexampleresults">Examples</a></p> <p id="searchcount" class="all"><span id="resultcount"></span><span id="apicount"></span><span id="articlecount"></span><span id="examplecount"></span>&nbsp;results:</p> <ul id="resultlist" class="all"> </ul> </div> </fieldset> </form> </div> <div class="box first bottombar" id="lookup"> <h2 title="API Lookup"><span></span> API Lookup</h2> <div id="list001" class="list"> <ul id="ul001" > <li class="defaultLink"><a href="classes.html">Class index</a></li> <li class="defaultLink"><a href="functions.html">Function index</a></li> <li class="defaultLink"><a href="modules.html">Modules</a></li> <li class="defaultLink"><a href="namespaces.html">Namespaces</a></li> <li class="defaultLink"><a href="qtglobal.html">Global Declarations</a></li> <li class="defaultLink"><a href="qdeclarativeelements.html">QML elements</a></li> </ul> </div> </div> <div class="box bottombar" id="topics"> <h2 title="Qt Topics"><span></span> Qt Topics</h2> <div id="list002" class="list"> <ul id="ul002" > <li class="defaultLink"><a href="qt-basic-concepts.html">Programming with Qt</a></li> <li class="defaultLink"><a href="qtquick.html">Device UIs &amp; Qt Quick</a></li> <li class="defaultLink"><a href="qt-gui-concepts.html">UI Design with Qt</a></li> <li class="defaultLink"><a href="supported-platforms.html">Supported Platforms</a></li> <li class="defaultLink"><a href="technology-apis.html">Qt and Key Technologies</a></li> <li class="defaultLink"><a href="best-practices.html">How-To's and Best Practices</a></li> </ul> </div> </div> <div class="box" id="examples"> <h2 title="Examples"><span></span> Examples</h2> <div id="list003" class="list"> <ul id="ul003"> <li class="defaultLink"><a href="all-examples.html">Examples</a></li> <li class="defaultLink"><a href="tutorials.html">Tutorials</a></li> <li class="defaultLink"><a href="demos.html">Demos</a></li> <li class="defaultLink"><a href="qdeclarativeexamples.html">QML Examples</a></li> </ul> </div> </div> </div> <div class="wrap"> <div class="toolbar"> <div class="breadcrumb toolblock"> <ul> <li class="first"><a href="index.html">Home</a></li> <!-- Breadcrumbs go here --> </ul> </div> <div class="toolbuttons toolblock"> <ul> <li id="smallA" class="t_button">A</li> <li id="medA" class="t_button active">A</li> <li id="bigA" class="t_button">A</li> <li id="print" class="t_button"><a href="javascript:this.print();"> <span>Print</span></a></li> </ul> </div> </div> <div class="content mainContent"> <h1 class="title">mainwindow.ui Example File</h1> <span class="small-subtitle">widgets/stylesheet/mainwindow.ui</span> <!-- $$$widgets/stylesheet/mainwindow.ui-description --> <div class="descr"> <a name="details"></a> <pre class="cpp"> &lt;ui version=&quot;4.0&quot; &gt; &lt;class&gt;MainWindow&lt;/class&gt; &lt;widget class=&quot;QMainWindow&quot; name=&quot;MainWindow&quot; &gt; &lt;property name=&quot;geometry&quot; &gt; &lt;rect&gt; &lt;x&gt;0&lt;/x&gt; &lt;y&gt;0&lt;/y&gt; &lt;width&gt;400&lt;/width&gt; &lt;height&gt;413&lt;/height&gt; &lt;/rect&gt; &lt;/property&gt; &lt;property name=&quot;windowTitle&quot; &gt; &lt;string&gt;Style Sheet&lt;/string&gt; &lt;/property&gt; &lt;widget class=&quot;QWidget&quot; name=&quot;centralwidget&quot; &gt; &lt;layout class=&quot;QVBoxLayout&quot; &gt; &lt;property name=&quot;margin&quot; &gt; &lt;number&gt;9&lt;/number&gt; &lt;/property&gt; &lt;property name=&quot;spacing&quot; &gt; &lt;number&gt;6&lt;/number&gt; &lt;/property&gt; &lt;item&gt; &lt;widget class=&quot;QFrame&quot; name=&quot;mainFrame&quot; &gt; &lt;property name=&quot;frameShape&quot; &gt; &lt;enum&gt;QFrame::StyledPanel&lt;/enum&gt; &lt;/property&gt; &lt;property name=&quot;frameShadow&quot; &gt; &lt;enum&gt;QFrame::Raised&lt;/enum&gt; &lt;/property&gt; &lt;layout class=&quot;QGridLayout&quot; &gt; &lt;property name=&quot;margin&quot; &gt; &lt;number&gt;9&lt;/number&gt; &lt;/property&gt; &lt;property name=&quot;spacing&quot; &gt; &lt;number&gt;6&lt;/number&gt; &lt;/property&gt; &lt;item row=&quot;6&quot; column=&quot;0&quot; colspan=&quot;5&quot; &gt; &lt;widget class=&quot;QCheckBox&quot; name=&quot;agreeCheckBox&quot; &gt; &lt;property name=&quot;toolTip&quot; &gt; &lt;string&gt;Please read the LICENSE file before checking&lt;/string&gt; &lt;/property&gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;I accept the terms and &amp;amp;conditions&lt;/string&gt; &lt;/property&gt; &lt;/widget&gt; &lt;/item&gt; &lt;item row=&quot;5&quot; column=&quot;0&quot; &gt; &lt;widget class=&quot;QLabel&quot; name=&quot;label&quot; &gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;Profession:&lt;/string&gt; &lt;/property&gt; &lt;property name=&quot;alignment&quot; &gt; &lt;set&gt;Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing&lt;/set&gt; &lt;/property&gt; &lt;property name=&quot;buddy&quot; &gt; &lt;cstring&gt;professionList&lt;/cstring&gt; &lt;/property&gt; &lt;/widget&gt; &lt;/item&gt; &lt;item row=&quot;0&quot; column=&quot;0&quot; &gt; &lt;widget class=&quot;QLabel&quot; name=&quot;nameLabel&quot; &gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;&amp;amp;Name:&lt;/string&gt; &lt;/property&gt; &lt;property name=&quot;alignment&quot; &gt; &lt;set&gt;Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter&lt;/set&gt; &lt;/property&gt; &lt;property name=&quot;buddy&quot; &gt; &lt;cstring&gt;nameCombo&lt;/cstring&gt; &lt;/property&gt; &lt;/widget&gt; &lt;/item&gt; &lt;item row=&quot;1&quot; column=&quot;1&quot; &gt; &lt;widget class=&quot;QRadioButton&quot; name=&quot;maleRadioButton&quot; &gt; &lt;property name=&quot;toolTip&quot; &gt; &lt;string&gt;Check this if you are male&lt;/string&gt; &lt;/property&gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;&amp;amp;Male&lt;/string&gt; &lt;/property&gt; &lt;/widget&gt; &lt;/item&gt; &lt;item row=&quot;3&quot; column=&quot;0&quot; &gt; &lt;widget class=&quot;QLabel&quot; name=&quot;passwordLabel&quot; &gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;&amp;amp;Password:&lt;/string&gt; &lt;/property&gt; &lt;property name=&quot;alignment&quot; &gt; &lt;set&gt;Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter&lt;/set&gt; &lt;/property&gt; &lt;property name=&quot;buddy&quot; &gt; &lt;cstring&gt;passwordEdit&lt;/cstring&gt; &lt;/property&gt; &lt;/widget&gt; &lt;/item&gt; &lt;item row=&quot;4&quot; column=&quot;1&quot; colspan=&quot;4&quot; &gt; &lt;widget class=&quot;QComboBox&quot; name=&quot;countryCombo&quot; &gt; &lt;property name=&quot;toolTip&quot; &gt; &lt;string&gt;Specify country of origin&lt;/string&gt; &lt;/property&gt; &lt;property name=&quot;statusTip&quot; &gt; &lt;string&gt;Specify country of origin&lt;/string&gt; &lt;/property&gt; &lt;property name=&quot;currentIndex&quot; &gt; &lt;number&gt;6&lt;/number&gt; &lt;/property&gt; &lt;item&gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;Egypt&lt;/string&gt; &lt;/property&gt; &lt;/item&gt; &lt;item&gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;France&lt;/string&gt; &lt;/property&gt; &lt;/item&gt; &lt;item&gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;Germany&lt;/string&gt; &lt;/property&gt; &lt;/item&gt; &lt;item&gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;India&lt;/string&gt; &lt;/property&gt; &lt;/item&gt; &lt;item&gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;Italy&lt;/string&gt; &lt;/property&gt; &lt;/item&gt; &lt;item&gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;Norway&lt;/string&gt; &lt;/property&gt; &lt;/item&gt; &lt;item&gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;Pakistan&lt;/string&gt; &lt;/property&gt; &lt;/item&gt; &lt;/widget&gt; &lt;/item&gt; &lt;item row=&quot;2&quot; column=&quot;0&quot; &gt; &lt;widget class=&quot;QLabel&quot; name=&quot;ageLabel&quot; &gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;&amp;amp;Age:&lt;/string&gt; &lt;/property&gt; &lt;property name=&quot;alignment&quot; &gt; &lt;set&gt;Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter&lt;/set&gt; &lt;/property&gt; &lt;property name=&quot;buddy&quot; &gt; &lt;cstring&gt;ageSpinBox&lt;/cstring&gt; &lt;/property&gt; &lt;/widget&gt; &lt;/item&gt; &lt;item row=&quot;4&quot; column=&quot;0&quot; &gt; &lt;widget class=&quot;QLabel&quot; name=&quot;countryLabel&quot; &gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;Country:&lt;/string&gt; &lt;/property&gt; &lt;property name=&quot;alignment&quot; &gt; &lt;set&gt;Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter&lt;/set&gt; &lt;/property&gt; &lt;property name=&quot;buddy&quot; &gt; &lt;cstring&gt;countryCombo&lt;/cstring&gt; &lt;/property&gt; &lt;/widget&gt; &lt;/item&gt; &lt;item row=&quot;1&quot; column=&quot;0&quot; &gt; &lt;widget class=&quot;QLabel&quot; name=&quot;genderLabel&quot; &gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;Gender:&lt;/string&gt; &lt;/property&gt; &lt;property name=&quot;alignment&quot; &gt; &lt;set&gt;Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter&lt;/set&gt; &lt;/property&gt; &lt;/widget&gt; &lt;/item&gt; &lt;item row=&quot;3&quot; column=&quot;1&quot; colspan=&quot;4&quot; &gt; &lt;widget class=&quot;QLineEdit&quot; name=&quot;passwordEdit&quot; &gt; &lt;property name=&quot;toolTip&quot; &gt; &lt;string&gt;Specify your password&lt;/string&gt; &lt;/property&gt; &lt;property name=&quot;statusTip&quot; &gt; &lt;string&gt;Specify your password&lt;/string&gt; &lt;/property&gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;Password&lt;/string&gt; &lt;/property&gt; &lt;property name=&quot;echoMode&quot; &gt; &lt;enum&gt;QLineEdit::Password&lt;/enum&gt; &lt;/property&gt; &lt;/widget&gt; &lt;/item&gt; &lt;item row=&quot;1&quot; column=&quot;2&quot; colspan=&quot;2&quot; &gt; &lt;widget class=&quot;QRadioButton&quot; name=&quot;femaleRadioButton&quot; &gt; &lt;property name=&quot;toolTip&quot;&gt; &lt;string&gt;Check this if you are female&lt;/string&gt; &lt;/property&gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;&amp;amp;Female&lt;/string&gt; &lt;/property&gt; &lt;/widget&gt; &lt;/item&gt; &lt;item row=&quot;2&quot; column=&quot;1&quot; colspan=&quot;2&quot; &gt; &lt;widget class=&quot;QSpinBox&quot; name=&quot;ageSpinBox&quot; &gt; &lt;property name=&quot;toolTip&quot; &gt; &lt;string&gt;Specify your age&lt;/string&gt; &lt;/property&gt; &lt;property name=&quot;statusTip&quot; &gt; &lt;string&gt;Specify your age&lt;/string&gt; &lt;/property&gt; &lt;property name=&quot;minimum&quot; &gt; &lt;number&gt;12&lt;/number&gt; &lt;/property&gt; &lt;property name=&quot;value&quot; &gt; &lt;number&gt;22&lt;/number&gt; &lt;/property&gt; &lt;/widget&gt; &lt;/item&gt; &lt;item row=&quot;0&quot; column=&quot;1&quot; colspan=&quot;4&quot; &gt; &lt;widget class=&quot;QComboBox&quot; name=&quot;nameCombo&quot; &gt; &lt;property name=&quot;toolTip&quot; &gt; &lt;string&gt;Specify your name&lt;/string&gt; &lt;/property&gt; &lt;property name=&quot;editable&quot; &gt; &lt;bool&gt;true&lt;/bool&gt; &lt;/property&gt; &lt;/widget&gt; &lt;/item&gt; &lt;item row=&quot;1&quot; column=&quot;4&quot; &gt; &lt;spacer&gt; &lt;property name=&quot;orientation&quot; &gt; &lt;enum&gt;Qt::Horizontal&lt;/enum&gt; &lt;/property&gt; &lt;property name=&quot;sizeHint&quot; &gt; &lt;size&gt; &lt;width&gt;40&lt;/width&gt; &lt;height&gt;20&lt;/height&gt; &lt;/size&gt; &lt;/property&gt; &lt;/spacer&gt; &lt;/item&gt; &lt;item row=&quot;2&quot; column=&quot;3&quot; colspan=&quot;2&quot; &gt; &lt;spacer&gt; &lt;property name=&quot;orientation&quot; &gt; &lt;enum&gt;Qt::Horizontal&lt;/enum&gt; &lt;/property&gt; &lt;property name=&quot;sizeHint&quot; &gt; &lt;size&gt; &lt;width&gt;61&lt;/width&gt; &lt;height&gt;20&lt;/height&gt; &lt;/size&gt; &lt;/property&gt; &lt;/spacer&gt; &lt;/item&gt; &lt;item row=&quot;7&quot; column=&quot;3&quot; colspan=&quot;2&quot; &gt; &lt;widget class=&quot;QDialogButtonBox&quot; name=&quot;buttonBox&quot; &gt; &lt;property name=&quot;orientation&quot; &gt; &lt;enum&gt;Qt::Horizontal&lt;/enum&gt; &lt;/property&gt; &lt;property name=&quot;standardButtons&quot; &gt; &lt;set&gt;QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok&lt;/set&gt; &lt;/property&gt; &lt;/widget&gt; &lt;/item&gt; &lt;item row=&quot;5&quot; column=&quot;1&quot; colspan=&quot;4&quot; &gt; &lt;widget class=&quot;QListWidget&quot; name=&quot;professionList&quot; &gt; &lt;property name=&quot;toolTip&quot; &gt; &lt;string&gt;Select your profession&lt;/string&gt; &lt;/property&gt; &lt;property name=&quot;statusTip&quot; &gt; &lt;string&gt;Specify your name here&lt;/string&gt; &lt;/property&gt; &lt;property name=&quot;whatsThis&quot; &gt; &lt;string&gt;Specify your name here&lt;/string&gt; &lt;/property&gt; &lt;property name=&quot;currentRow&quot; &gt; &lt;number&gt;0&lt;/number&gt; &lt;/property&gt; &lt;item&gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;Developer&lt;/string&gt; &lt;/property&gt; &lt;/item&gt; &lt;item&gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;Student&lt;/string&gt; &lt;/property&gt; &lt;/item&gt; &lt;item&gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;Fisherman&lt;/string&gt; &lt;/property&gt; &lt;/item&gt; &lt;/widget&gt; &lt;/item&gt; &lt;/layout&gt; &lt;/widget&gt; &lt;/item&gt; &lt;/layout&gt; &lt;/widget&gt; &lt;widget class=&quot;QMenuBar&quot; name=&quot;menubar&quot; &gt; &lt;property name=&quot;geometry&quot; &gt; &lt;rect&gt; &lt;x&gt;0&lt;/x&gt; &lt;y&gt;0&lt;/y&gt; &lt;width&gt;400&lt;/width&gt; &lt;height&gt;29&lt;/height&gt; &lt;/rect&gt; &lt;/property&gt; &lt;widget class=&quot;QMenu&quot; name=&quot;menu_File&quot; &gt; &lt;property name=&quot;title&quot; &gt; &lt;string&gt;&amp;amp;File&lt;/string&gt; &lt;/property&gt; &lt;addaction name=&quot;editStyleAction&quot; /&gt; &lt;addaction name=&quot;separator&quot; /&gt; &lt;addaction name=&quot;exitAction&quot; /&gt; &lt;/widget&gt; &lt;widget class=&quot;QMenu&quot; name=&quot;menu_Help&quot; &gt; &lt;property name=&quot;title&quot; &gt; &lt;string&gt;&amp;amp;Help&lt;/string&gt; &lt;/property&gt; &lt;addaction name=&quot;aboutAction&quot; /&gt; &lt;addaction name=&quot;aboutQtAction&quot; /&gt; &lt;/widget&gt; &lt;addaction name=&quot;menu_File&quot; /&gt; &lt;addaction name=&quot;menu_Help&quot; /&gt; &lt;/widget&gt; &lt;widget class=&quot;QStatusBar&quot; name=&quot;statusbar&quot; /&gt; &lt;action name=&quot;exitAction&quot; &gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;&amp;amp;Exit&lt;/string&gt; &lt;/property&gt; &lt;/action&gt; &lt;action name=&quot;aboutQtAction&quot; &gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;About Qt&lt;/string&gt; &lt;/property&gt; &lt;/action&gt; &lt;action name=&quot;editStyleAction&quot; &gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;Edit &amp;amp;Style...&lt;/string&gt; &lt;/property&gt; &lt;/action&gt; &lt;action name=&quot;aboutAction&quot; &gt; &lt;property name=&quot;text&quot; &gt; &lt;string&gt;About&lt;/string&gt; &lt;/property&gt; &lt;/action&gt; &lt;/widget&gt; &lt;resources/&gt; &lt;connections/&gt; &lt;/ui&gt;</pre> </div> <!-- @@@widgets/stylesheet/mainwindow.ui --> </div> </div> </div> <div class="ft"> <span></span> </div> </div> <div class="footer"> <p> <acronym title="Copyright">&copy;</acronym> 2014 Digia Plc and/or its subsidiaries. Documentation contributions included herein are the copyrights of their respective owners.</p> <br /> <p> The documentation provided herein is licensed under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.</p> <p> Documentation sources may be obtained from <a href="http://www.qt-project.org"> www.qt-project.org</a>.</p> <br /> <p> Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide. All other trademarks are property of their respective owners. <a title="Privacy Policy" href="http://en.gitorious.org/privacy_policy/">Privacy Policy</a></p> </div> <script src="scripts/functions.js" type="text/javascript"></script> </body> </html>
wiki/docs/2.4/html/classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache_a9b178e41d62c9ebcfd8936418d5de009.html
Chinchilla-Software-Com/CQRS
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.13"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>CQRS.NET: Cqrs.Azure.DocumentDb.GlobalAzureDocumentDbConnectionCache.TryGetDocumentCollection</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ extensions: ["tex2jax.js"], jax: ["input/TeX","output/HTML-CSS"], }); </script><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="ChinChilla-Software-Red.png"/></td> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">CQRS.NET &#160;<span id="projectnumber">2.4</span> </div> <div id="projectbrief">A lightweight enterprise Function as a Service (FaaS) framework to write function based serverless and micro-service applications in hybrid multi-datacentre, on-premise and Azure environments.</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.13 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); </script> <div id="main-nav"></div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache_a9b178e41d62c9ebcfd8936418d5de009.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="contents"> <a id="a9b178e41d62c9ebcfd8936418d5de009"></a> <h2 class="memtitle"><span class="permalink"><a href="#a9b178e41d62c9ebcfd8936418d5de009">&#9670;&nbsp;</a></span>TryGetDocumentCollection()</h2> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">bool Cqrs.Azure.DocumentDb.GlobalAzureDocumentDbConnectionCache.TryGetDocumentCollection </td> <td>(</td> <td class="paramtype">string&#160;</td> <td class="paramname"><em>key</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">out DocumentCollection&#160;</td> <td class="paramname"><em>documentCollection</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Gets the DocumentCollection. </p> <dl class="params"><dt>Parameters</dt><dd> <table class="params"> <tr><td class="paramname">key</td><td>The name of the DocumentCollection to get.</td></tr> <tr><td class="paramname">documentCollection</td><td>If the DocumentCollection is found, it is returned here; otherwise null is returned. This parameter is passed uninitialized.</td></tr> </table> </dd> </dl> <dl class="section return"><dt>Returns</dt><dd>true if the DocumentCollection is found; otherwise, false.</dd></dl> <p>Implements <a class="el" href="interfaceCqrs_1_1Azure_1_1DocumentDb_1_1IAzureDocumentDbConnectionCache_af74bf6c8dc009e0179edc20ef3158f03.html#af74bf6c8dc009e0179edc20ef3158f03">Cqrs.Azure.DocumentDb.IAzureDocumentDbConnectionCache</a>.</p> </div> </div> </div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="namespaceCqrs.html">Cqrs</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1Azure.html">Azure</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1Azure_1_1DocumentDb.html">DocumentDb</a></li><li class="navelem"><a class="el" href="classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache.html">GlobalAzureDocumentDbConnectionCache</a></li> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li> </ul> </div> </body> </html>
docs/api/jcifs/util/package-frame.html
mvasilchuk/jcifs-krb5
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_23) on Thu Nov 10 16:32:32 EST 2011 --> <TITLE> jcifs.util (JCIFS API) </TITLE> <META NAME="date" CONTENT="2011-11-10"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../stylesheet.css" TITLE="Style"> </HEAD> <BODY BGCOLOR="white"> <FONT size="+1" CLASS="FrameTitleFont"> <A HREF="../../jcifs/util/package-summary.html" target="classFrame">jcifs.util</A></FONT> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Classes</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="Base64.html" title="class in jcifs.util" target="classFrame">Base64</A> <BR> <A HREF="HMACT64.html" title="class in jcifs.util" target="classFrame">HMACT64</A> <BR> <A HREF="LogStream.html" title="class in jcifs.util" target="classFrame">LogStream</A> <BR> <A HREF="RC4.html" title="class in jcifs.util" target="classFrame">RC4</A></FONT></TD> </TR> </TABLE> </BODY> </HTML>
wiki/docs/2.2/html/classCqrs_1_1Azure_1_1ServiceBus_1_1Tests_1_1Integration_1_1GuidAuthenticationTokenHelper-members.html
Chinchilla-Software-Com/CQRS
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.13"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>CQRS.NET: Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ extensions: ["tex2jax.js"], jax: ["input/TeX","output/HTML-CSS"], }); </script><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="ChinChilla-Software-Red.png"/></td> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">CQRS.NET &#160;<span id="projectnumber">2.2</span> </div> <div id="projectbrief">A lightweight enterprise framework to write CQRS, event-sourced and micro-service applications in hybrid multi-datacentre, on-premise and Azure environments.</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.13 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); </script> <div id="main-nav"></div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('classCqrs_1_1Azure_1_1ServiceBus_1_1Tests_1_1Integration_1_1GuidAuthenticationTokenHelper.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">Cqrs.Azure.ServiceBus.Tests.Integration.GuidAuthenticationTokenHelper Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="classCqrs_1_1Azure_1_1ServiceBus_1_1Tests_1_1Integration_1_1GuidAuthenticationTokenHelper.html">Cqrs.Azure.ServiceBus.Tests.Integration.GuidAuthenticationTokenHelper</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry"><a class="el" href="classCqrs_1_1Azure_1_1ServiceBus_1_1Tests_1_1Integration_1_1GuidAuthenticationTokenHelper_abf0d4aa030e3cc15830301225ef28eac.html#abf0d4aa030e3cc15830301225ef28eac">GetAuthenticationToken</a>()</td><td class="entry"><a class="el" href="classCqrs_1_1Azure_1_1ServiceBus_1_1Tests_1_1Integration_1_1GuidAuthenticationTokenHelper.html">Cqrs.Azure.ServiceBus.Tests.Integration.GuidAuthenticationTokenHelper</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classCqrs_1_1Azure_1_1ServiceBus_1_1Tests_1_1Integration_1_1GuidAuthenticationTokenHelper_a651700262491c8cf527e3a3881198050.html#a651700262491c8cf527e3a3881198050">SetAuthenticationToken</a>(Guid permissionScope)</td><td class="entry"><a class="el" href="classCqrs_1_1Azure_1_1ServiceBus_1_1Tests_1_1Integration_1_1GuidAuthenticationTokenHelper.html">Cqrs.Azure.ServiceBus.Tests.Integration.GuidAuthenticationTokenHelper</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="interfaceCqrs_1_1Authentication_1_1IAuthenticationTokenHelper_a1af9409257b2d8086be6dfae4edf37fb.html#a1af9409257b2d8086be6dfae4edf37fb">IAuthenticationTokenHelper&lt; Guid &gt;.SetAuthenticationToken</a>(TAuthenticationToken token)</td><td class="entry"><a class="el" href="interfaceCqrs_1_1Authentication_1_1IAuthenticationTokenHelper.html">Cqrs.Authentication.IAuthenticationTokenHelper&lt; Guid &gt;</a></td><td class="entry"></td></tr> </table></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li> </ul> </div> </body> </html>
pkg/kubernetes/views/details-page.html
haiyangd/cockpit_view
<div> <table listing-table class="listing details-listing"> <thead ng-if="!quiet"> <tr> <td colspan="4"> <h3 translatable="yes">Nodes</h3> </td> </tr> <tr> <th translatable="yes">Name</th> <th translatable="yes">Operating System</th> <th translatable="yes">Address</th> <th translatable="yes">Status</th> </tr> </thead> <tbody ng-repeat="item in nodes track by item.key" class="active" ng-init="id = itemIdentifier(item)" ng-class="{open: selected(id)}" data-id="{{id}}" data-key="{{item.key}}"> <tr ng-click="select(id)" ng-if="!quiet" class="listing-item"> <th>{{item.metadata.name}}</th> <td> <div ng-if="item.status.nodeInfo.osImage">{{item.status.nodeInfo.osImage}}</div> </td> <td>{{item.spec.externalID}}</td> <td>{{item.status.conditions | nodeStatus}}</td> </tr> <tr class="listing-panel" ng-if="selected(id)"> <td listing-panel kind="Node" colspan="4"></td> </tr> </tbody> <thead ng-if="!quiet"> <tr> <td colspan="4"> <h3 translatable="yes">Services</h3> </td> </tr> <tr> <th translatable="yes">Name</th> <th translatable="yes" ng-if="client.flavor == 'openshift'">Project</th> <th translatable="yes" ng-if="client.flavor != 'openshift'">Namespace</th> <th translatable="yes">Addresses</th> <th translatable="yes">State</th> </tr> </thead> <tbody ng-repeat="item in services | orderObjectBy:['metadata.namespace', 'metadata.name'] as filtered_result track by item.key" ng-init="id = itemIdentifier(item)" class="active" data-id="{{id}}" data-key="{{item.key}}" ng-class="{open: selected(id)}"> <tr ng-click="select(id)" ng-if="!quiet" class="listing-item"> <th>{{item.metadata.name}}</th> <td>{{item.metadata.namespace}}</td> <td><kubernetes-service-cluster></td> <td ng-init="endpoint = serviceEndpoint(item)"> <span ng-if="endpoint.subsets.length !== 0" translatable="yes">Ready</span> <span ng-if="endpoint.subsets.length === 0" translatable="yes">Not Ready</span> </td> </tr> <tr class="listing-panel" ng-if="selected(id)"> <td listing-panel kind="Service" colspan="4"> </td> </tr> </tbody> <thead id="routes" ng-if="!quiet && client.flavor == 'openshift'"> <tr> <td colspan="4"> <h3 translatable="yes">Routes</h3> </td> </tr> <tr> <th translatable="yes">Name</th> <th translatable="yes" ng-if="client.flavor == 'openshift'">Project</th> <th translatable="yes" ng-if="client.flavor != 'openshift'">Namespace</th> <th translatable="yes">Host</th> <th translatable="yes"></th> </tr> </thead> <tbody ng-repeat="item in routes | orderObjectBy:['metadata.namespace', 'metadata.name'] as filtered_result track by item.key" class="active" ng-class="{open: selected(id)}" ng-init="id = itemIdentifier(item)" data-id="{{id}}" data-key="{{item.key}}"> <tr ng-click="select(id)" ng-if="!quiet" class="listing-item"> <th>{{item.metadata.name}}</th> <td>{{item.metadata.namespace}}</td> <td>{{item.spec.host}}</td> <td></td> </tr> <tr class="listing-panel" ng-if="selected(id)"> <td listing-panel kind="Route" colspan="4"></td> </tr> </tbody> <thead id="deployment-configs" ng-if="!quiet && client.flavor == 'openshift'"> <tr> <td colspan="4"> <h3 translatable="yes">Deployment Configs</h3> </td> </tr> <tr> <th translatable="yes">Name</th> <th translatable="yes" ng-if="client.flavor == 'openshift'">Project</th> <th translatable="yes" ng-if="client.flavor != 'openshift'">Namespace</th> <th translatable="yes"></th> <th translatable="yes">Latest Version</th> </tr> </thead> <tbody ng-repeat="item in deploymentconfigs | orderObjectBy:['metadata.namespace', 'metadata.name'] as filtered_result track by item.key" class="active" ng-class="{open: selected(id)}" ng-init="id = itemIdentifier(item)" data-id="{{id}}" data-key="{{item.key}}"> <tr ng-click="select(id)" ng-if="!quiet" class="listing-item"> <th>{{item.metadata.name}}</th> <td>{{item.metadata.namespace}}</td> <td></td> <td ng-if="item.status.latestVersion">{{ item.status.latestVersion }}</td> <td ng-if="!item.status.latestVersion" translatable="yes">Not deployed</td> </tr> <tr class="listing-panel" ng-if="selected(id)"> <td listing-panel kind="DeploymentConfig" colspan="4"></td> </tr> </tbody> <thead ng-if="!quiet"> <tr> <td colspan="4"> <h3 translatable="yes">Replication Controllers</h3> </td> </tr> <tr> <th translatable="yes">Name</th> <th translatable="yes" ng-if="client.flavor == 'openshift'">Project</th> <th translatable="yes" ng-if="client.flavor != 'openshift'">Namespace</th> <th translatable="yes"></th> <th translatable="yes">Replicas</th> </tr> </thead> <tbody ng-repeat="item in replicationcontrollers | orderObjectBy:['metadata.namespace', 'metadata.name'] as filtered_result track by item.key" ng-init="id = itemIdentifier(item)" class="active" data-id="{{id}}" data-key="{{item.key}}" ng-class="{open: selected(id)}"> <tr ng-click="select(id)" ng-if="!quiet" class="listing-item"> <th>{{item.metadata.name}}</th> <td>{{item.metadata.namespace}}</td> <td></td> <td ng-if="item.spec.replicas == item.status.replicas">{{ item.spec.replicas }}</td> <td ng-if="item.spec.replicas != item.status.replicas">{{ item.status.replicas }} of {{ item.spec.replicas }}</td> </tr> <tr class="listing-panel" ng-if="selected(id)"> <td listing-panel kind="ReplicationController" colspan="4"></td> </tr> </tbody> <thead ng-if="!quiet"> <tr> <td colspan="4"> <h3 translatable="yes">Pods</h3> </td> </tr> <tr> <th translatable="yes">Name</th> <th translatable="yes" ng-if="client.flavor == 'openshift'">Project</th> <th translatable="yes" ng-if="client.flavor != 'openshift'">Namespace</th> <th translatable="yes">Address</th> <th translatable="yes">State</th> </tr> </thead> <tbody ng-repeat="item in pods | orderObjectBy:['metadata.namespace', 'metadata.name'] as filtered_result track by item.key" ng-init="id = itemIdentifier(item)" class="active" data-id="{{id}}" data-key="{{item.key}}" ng-class="{open: selected(id)}"> <tr ng-click="select(id)" ng-if="!quiet" class="listing-item"> <th>{{item.metadata.name}}</th> <td>{{item.metadata.namespace}}</td> <td>{{item.status.podIP}}</td> <td>{{item.status.phase}}</td> </tr> <tr class="listing-panel" ng-if="selected(id)"> <td listing-panel kind="Pod" colspan="4"></td> </tr> </tbody> </table> </div>
wiki/docs/4.1/html/classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache.html
cdmdotnet/CQRS
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.16"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>CQRS.NET: Cqrs.Azure.DocumentDb.GlobalAzureDocumentDbConnectionCache Class Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ $(document).ready(initResizable); /* @license-end */</script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ extensions: ["tex2jax.js"], jax: ["input/TeX","output/HTML-CSS"], }); </script><script type="text/javascript" async="async" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="ChinChilla-Software-Red.png"/></td> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">CQRS.NET &#160;<span id="projectnumber">4.1</span> </div> <div id="projectbrief">A lightweight enterprise Function as a Service (FaaS) framework to write function based serverless and micro-service applications in hybrid multi-datacentre, on-premise and Azure environments.</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.16 --> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ var searchBox = new SearchBox("searchBox", "search",false,'Search'); /* @license-end */ </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); /* @license-end */</script> <div id="main-nav"></div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ $(document).ready(function(){initNavTree('classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache.html','');}); /* @license-end */ </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="summary"> <a href="#pub-methods">Public Member Functions</a> &#124; <a href="#properties">Properties</a> &#124; <a href="classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">Cqrs.Azure.DocumentDb.GlobalAzureDocumentDbConnectionCache Class Reference</div> </div> </div><!--header--> <div class="contents"> <p>A cache manager for DocumentDB clients, databases and collections that is global. <a href="classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache.html#details">More...</a></p> <div id="dynsection-0" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;"> <img id="dynsection-0-trigger" src="closed.png" alt="+"/> Inheritance diagram for Cqrs.Azure.DocumentDb.GlobalAzureDocumentDbConnectionCache:</div> <div id="dynsection-0-summary" class="dynsummary" style="display:block;"> </div> <div id="dynsection-0-content" class="dyncontent" style="display:none;"> <div class="center"> <img src="classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache.png" usemap="#Cqrs.Azure.DocumentDb.GlobalAzureDocumentDbConnectionCache_map" alt=""/> <map id="Cqrs.Azure.DocumentDb.GlobalAzureDocumentDbConnectionCache_map" name="Cqrs.Azure.DocumentDb.GlobalAzureDocumentDbConnectionCache_map"> <area href="interfaceCqrs_1_1Azure_1_1DocumentDb_1_1IAzureDocumentDbConnectionCache.html" title="A cache manager for DocumentDB clients, databases and collections." alt="Cqrs.Azure.DocumentDb.IAzureDocumentDbConnectionCache" shape="rect" coords="0,0,399,24"/> </map> </div></div> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr class="memitem:a5b91ecf67ee594a0a6a4d3193f381c6e"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache_a5b91ecf67ee594a0a6a4d3193f381c6e.html#a5b91ecf67ee594a0a6a4d3193f381c6e">TryGetClient</a> (string key, out DocumentClient client)</td></tr> <tr class="memdesc:a5b91ecf67ee594a0a6a4d3193f381c6e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the DocumentClient. <a href="classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache_a5b91ecf67ee594a0a6a4d3193f381c6e.html#a5b91ecf67ee594a0a6a4d3193f381c6e">More...</a><br /></td></tr> <tr class="separator:a5b91ecf67ee594a0a6a4d3193f381c6e"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a4fbca6dadf7b2d1ffa753d755982820b"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache_a4fbca6dadf7b2d1ffa753d755982820b.html#a4fbca6dadf7b2d1ffa753d755982820b">SetClient</a> (string key, DocumentClient client)</td></tr> <tr class="memdesc:a4fbca6dadf7b2d1ffa753d755982820b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the provided <em>client</em> . <a href="classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache_a4fbca6dadf7b2d1ffa753d755982820b.html#a4fbca6dadf7b2d1ffa753d755982820b">More...</a><br /></td></tr> <tr class="separator:a4fbca6dadf7b2d1ffa753d755982820b"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:afa1518eacc7e71308bfe3ef27631da45"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache_afa1518eacc7e71308bfe3ef27631da45.html#afa1518eacc7e71308bfe3ef27631da45">TryGetDatabase</a> (string key, out Database database)</td></tr> <tr class="memdesc:afa1518eacc7e71308bfe3ef27631da45"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the Database. <a href="classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache_afa1518eacc7e71308bfe3ef27631da45.html#afa1518eacc7e71308bfe3ef27631da45">More...</a><br /></td></tr> <tr class="separator:afa1518eacc7e71308bfe3ef27631da45"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a1684f60eabfa556929fc264e0192906b"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache_a1684f60eabfa556929fc264e0192906b.html#a1684f60eabfa556929fc264e0192906b">SetDatabase</a> (string key, Database database)</td></tr> <tr class="memdesc:a1684f60eabfa556929fc264e0192906b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the provided <em>database</em> . <a href="classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache_a1684f60eabfa556929fc264e0192906b.html#a1684f60eabfa556929fc264e0192906b">More...</a><br /></td></tr> <tr class="separator:a1684f60eabfa556929fc264e0192906b"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a9b178e41d62c9ebcfd8936418d5de009"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache_a9b178e41d62c9ebcfd8936418d5de009.html#a9b178e41d62c9ebcfd8936418d5de009">TryGetDocumentCollection</a> (string key, out DocumentCollection documentCollection)</td></tr> <tr class="memdesc:a9b178e41d62c9ebcfd8936418d5de009"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the DocumentCollection. <a href="classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache_a9b178e41d62c9ebcfd8936418d5de009.html#a9b178e41d62c9ebcfd8936418d5de009">More...</a><br /></td></tr> <tr class="separator:a9b178e41d62c9ebcfd8936418d5de009"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a19c4bcbf0149036557fb8a3a3b687c79"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache_a19c4bcbf0149036557fb8a3a3b687c79.html#a19c4bcbf0149036557fb8a3a3b687c79">SetDocumentCollection</a> (string key, DocumentCollection documentCollection)</td></tr> <tr class="memdesc:a19c4bcbf0149036557fb8a3a3b687c79"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the provided <em>documentCollection</em> . <a href="classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache_a19c4bcbf0149036557fb8a3a3b687c79.html#a19c4bcbf0149036557fb8a3a3b687c79">More...</a><br /></td></tr> <tr class="separator:a19c4bcbf0149036557fb8a3a3b687c79"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a> Properties</h2></td></tr> <tr class="memitem:af0ae16df0d819bebc5454377ec97c242"><td class="memItemLeft" align="right" valign="top">static IDictionary&lt; string, object &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache_af0ae16df0d819bebc5454377ec97c242.html#af0ae16df0d819bebc5454377ec97c242">Cache</a><code> [get]</code></td></tr> <tr class="memdesc:af0ae16df0d819bebc5454377ec97c242"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the <a class="el" href="">cache</a> used. <a href="classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache_af0ae16df0d819bebc5454377ec97c242.html#af0ae16df0d819bebc5454377ec97c242">More...</a><br /></td></tr> <tr class="separator:af0ae16df0d819bebc5454377ec97c242"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>A cache manager for DocumentDB clients, databases and collections that is global. </p> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="namespaceCqrs.html">Cqrs</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1Azure.html">Azure</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1Azure_1_1DocumentDb.html">DocumentDb</a></li><li class="navelem"><a class="el" href="classCqrs_1_1Azure_1_1DocumentDb_1_1GlobalAzureDocumentDbConnectionCache.html">GlobalAzureDocumentDbConnectionCache</a></li> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.16 </li> </ul> </div> </body> </html>
wiki/docs/2.2/html/dir_3d12e084094f2f113d95f1430a5a033a.html
cdmdotnet/CQRS
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.13"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>CQRS.NET: Messages Directory Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ extensions: ["tex2jax.js"], jax: ["input/TeX","output/HTML-CSS"], }); </script><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="ChinChilla-Software-Red.png"/></td> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">CQRS.NET &#160;<span id="projectnumber">2.2</span> </div> <div id="projectbrief">A lightweight enterprise framework to write CQRS, event-sourced and micro-service applications in hybrid multi-datacentre, on-premise and Azure environments.</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.13 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); </script> <div id="main-nav"></div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('dir_3d12e084094f2f113d95f1430a5a033a.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">Messages Directory Reference</div> </div> </div><!--header--> <div class="contents"> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="files"></a> Files</h2></td></tr> <tr class="memitem:FrameworkType_8cs"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><b>FrameworkType.cs</b></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:IHandler_8cs"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><b>IHandler.cs</b></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:IMessage_8cs"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><b>IMessage.cs</b></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:IMessageHandler_8cs"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><b>IMessageHandler.cs</b></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:IMessageWithAuthenticationToken_8cs"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><b>IMessageWithAuthenticationToken.cs</b></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ITelemeteredMessage_8cs"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><b>ITelemeteredMessage.cs</b></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> </div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="dir_bcbb2cf9a3d3d83e5515c82071a07177.html">Framework</a></li><li class="navelem"><a class="el" href="dir_2769d830fb5b41cfb840d2363b77a215.html">Cqrs</a></li><li class="navelem"><a class="el" href="dir_3d12e084094f2f113d95f1430a5a033a.html">Messages</a></li> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li> </ul> </div> </body> </html>
wiki/docs/2.2/html/classCqrs_1_1Azure_1_1BlobStorage_1_1DataStores_1_1BlobStorageDataStoreConnectionStringFactory_a0ece7f48e0305b8397b95308dfdf2532.html
Chinchilla-Software-Com/CQRS
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.13"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>CQRS.NET: Cqrs.Azure.BlobStorage.DataStores.BlobStorageDataStoreConnectionStringFactory.GetEntityName&lt; TData &gt;</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ extensions: ["tex2jax.js"], jax: ["input/TeX","output/HTML-CSS"], }); </script><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="ChinChilla-Software-Red.png"/></td> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">CQRS.NET &#160;<span id="projectnumber">2.2</span> </div> <div id="projectbrief">A lightweight enterprise framework to write CQRS, event-sourced and micro-service applications in hybrid multi-datacentre, on-premise and Azure environments.</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.13 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); </script> <div id="main-nav"></div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('classCqrs_1_1Azure_1_1BlobStorage_1_1DataStores_1_1BlobStorageDataStoreConnectionStringFactory_a0ece7f48e0305b8397b95308dfdf2532.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="contents"> <a id="a0ece7f48e0305b8397b95308dfdf2532"></a> <h2 class="memtitle"><span class="permalink"><a href="#a0ece7f48e0305b8397b95308dfdf2532">&#9670;&nbsp;</a></span>GetEntityName< TData >()</h2> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">virtual string Cqrs.Azure.BlobStorage.DataStores.BlobStorageDataStoreConnectionStringFactory.GetEntityName&lt; TData &gt; </td> <td>(</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">virtual</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>Gets the name of the entity that is safe for container use. </p> <p>Implements <a class="el" href="interfaceCqrs_1_1Azure_1_1BlobStorage_1_1DataStores_1_1IBlobStorageDataStoreConnectionStringFactory_ad7f6480ea3fa6dfab0953f05c2c15f85.html#ad7f6480ea3fa6dfab0953f05c2c15f85">Cqrs.Azure.BlobStorage.DataStores.IBlobStorageDataStoreConnectionStringFactory</a>.</p> <div class="typeconstraint"> <dl><dt><b>Type Constraints</b></dt><dd> <table border="0" cellspacing="2" cellpadding="0"> <tr><td valign="top"><em>TData</em></td><td>&#160;:</td><td valign="top"><em>Entity</em></td><td>&#160;</td></tr> </table> </dd> </dl> </div> </div> </div> </div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="namespaceCqrs.html">Cqrs</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1Azure.html">Azure</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1Azure_1_1BlobStorage.html">BlobStorage</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1Azure_1_1BlobStorage_1_1DataStores.html">DataStores</a></li><li class="navelem"><a class="el" href="classCqrs_1_1Azure_1_1BlobStorage_1_1DataStores_1_1BlobStorageDataStoreConnectionStringFactory.html">BlobStorageDataStoreConnectionStringFactory</a></li> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li> </ul> </div> </body> </html>
wiki/docs/2.2/html/interfaceCqrs_1_1Events_1_1IEventStore-members.html
cdmdotnet/CQRS
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.13"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>CQRS.NET: Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ extensions: ["tex2jax.js"], jax: ["input/TeX","output/HTML-CSS"], }); </script><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="ChinChilla-Software-Red.png"/></td> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">CQRS.NET &#160;<span id="projectnumber">2.2</span> </div> <div id="projectbrief">A lightweight enterprise framework to write CQRS, event-sourced and micro-service applications in hybrid multi-datacentre, on-premise and Azure environments.</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.13 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); </script> <div id="main-nav"></div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('interfaceCqrs_1_1Events_1_1IEventStore.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">Cqrs.Events.IEventStore&lt; TAuthenticationToken &gt; Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore.html">Cqrs.Events.IEventStore&lt; TAuthenticationToken &gt;</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore_ae02ef6c804d0c4a92705a447bc4b2214.html#ae02ef6c804d0c4a92705a447bc4b2214">Get</a>(Type aggregateRootType, Guid aggregateId, bool useLastEventOnly=false, int fromVersion=-1)</td><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore.html">Cqrs.Events.IEventStore&lt; TAuthenticationToken &gt;</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore_af398bb6768fa661ad97a9fa9ecfbd9fb.html#af398bb6768fa661ad97a9fa9ecfbd9fb">Get</a>(Guid correlationId)</td><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore.html">Cqrs.Events.IEventStore&lt; TAuthenticationToken &gt;</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore_add6227e2978ff8656aad79b1a51bf34c.html#add6227e2978ff8656aad79b1a51bf34c">Get&lt; T &gt;</a>(Guid aggregateId, bool useLastEventOnly=false, int fromVersion=-1)</td><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore.html">Cqrs.Events.IEventStore&lt; TAuthenticationToken &gt;</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore_a0575ba2cce945342dc261eb2286c8a41.html#a0575ba2cce945342dc261eb2286c8a41">GetBetweenDates</a>(Type aggregateRootType, Guid aggregateId, DateTime fromVersionedDate, DateTime toVersionedDate)</td><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore.html">Cqrs.Events.IEventStore&lt; TAuthenticationToken &gt;</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore_a06d24ede807dfab7c4b3a2cf85af83d2.html#a06d24ede807dfab7c4b3a2cf85af83d2">GetBetweenDates&lt; T &gt;</a>(Guid aggregateId, DateTime fromVersionedDate, DateTime toVersionedDate)</td><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore.html">Cqrs.Events.IEventStore&lt; TAuthenticationToken &gt;</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore_ae7a65fcb0881dbbd62ed86ccd7336712.html#ae7a65fcb0881dbbd62ed86ccd7336712">GetToDate</a>(Type aggregateRootType, Guid aggregateId, DateTime versionedDate)</td><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore.html">Cqrs.Events.IEventStore&lt; TAuthenticationToken &gt;</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore_ae0d3304dcab1e6c94eb51b3a0eb645cd.html#ae0d3304dcab1e6c94eb51b3a0eb645cd">GetToDate&lt; T &gt;</a>(Guid aggregateId, DateTime versionedDate)</td><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore.html">Cqrs.Events.IEventStore&lt; TAuthenticationToken &gt;</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore_a88b395dbd904b44a8690b630fb2af1ca.html#a88b395dbd904b44a8690b630fb2af1ca">GetToVersion</a>(Type aggregateRootType, Guid aggregateId, int version)</td><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore.html">Cqrs.Events.IEventStore&lt; TAuthenticationToken &gt;</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore_af29401f4562cb504cf827b90b8391765.html#af29401f4562cb504cf827b90b8391765">GetToVersion&lt; T &gt;</a>(Guid aggregateId, int version)</td><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore.html">Cqrs.Events.IEventStore&lt; TAuthenticationToken &gt;</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore_a81fb586703e7c6dea6b23d9a95f3887a.html#a81fb586703e7c6dea6b23d9a95f3887a">Save</a>(Type aggregateRootType, IEvent&lt; TAuthenticationToken &gt; @event)</td><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore.html">Cqrs.Events.IEventStore&lt; TAuthenticationToken &gt;</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore_a92e768243d6602d09b786bbd06811ce6.html#a92e768243d6602d09b786bbd06811ce6">Save&lt; T &gt;</a>(IEvent&lt; TAuthenticationToken &gt; @event)</td><td class="entry"><a class="el" href="interfaceCqrs_1_1Events_1_1IEventStore.html">Cqrs.Events.IEventStore&lt; TAuthenticationToken &gt;</a></td><td class="entry"></td></tr> </table></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li> </ul> </div> </body> </html>
3rdparty/vm810/vm/help/content/topics/plansecurity.html
simeshev/parabuild-ci
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <HTML> <HEAD> <link rel='stylesheet' href='stylesht_ns.css'> <script type="text/javascript" language="JavaScript" title="WebHelpSplitCss"> <!-- if (navigator.appName !="Netscape") { document.write("<link rel='stylesheet' href='stylesht.css'>");} //--> </script> <TITLE>Planning Security</TITLE> <!--<plansecurity.html>--> <!--<toc parent="using_security" label="Planning Security" anchor="plansecurity" sortkey="02">--> <!--<index parent="security" label="planning" anchor="plansecurity">--> <script type="text/javascript" language="JavaScript" title="WebHelpInlineScript"> <!-- function reDo() { if (innerWidth != origWidth || innerHeight != origHeight) location.reload(); } if ((parseInt(navigator.appVersion) == 4) && (navigator.appName == "Netscape")) { origWidth = innerWidth; origHeight = innerHeight; onresize = reDo; } onerror = null; //--> </script> <style type="text/css"> <!-- div.WebHelpPopupMenu {position:absolute; left:0px; top:0px; z-index:4; visibility:hidden;} p.WebHelpNavBar {text-align:right;} --> </style> <script type="text/javascript" language="javascript1.2" src="../whmsg.js"></script> <script type="text/javascript" language="javascript" src="../whver.js"></script> <script type="text/javascript" language="javascript1.2" src="../whproxy.js"></script> <script type="text/javascript" language="javascript1.2" src="../whutils.js"></script> <script type="text/javascript" language="javascript1.2" src="../whtopic.js"></script> <script type="text/javascript" language="javascript1.2"> <!-- if (window.gbWhTopic) { if (window.setRelStartPage) { addTocInfo("Using Version Manager\nUsing Security\nPlanning Security"); addButton("show",BTN_TEXT,"Show Navigation","","","","",0,0,"../whd_show0.gif","../whd_show2.gif","../whd_show1.gif"); addButton("hide",BTN_TEXT,"Hide Navigation","","","","",0,0,"../whd_hide0.gif","../whd_hide2.gif","../whd_hide1.gif"); } if (window.setRelStartPage) { setRelStartPage("../vm_help.htm"); autoSync(1); sendSyncInfo(); sendAveInfoOut(); } } else if (window.gbIE4) document.location.reload(); //--> </script> </HEAD> <BODY BGCOLOR="#ffffee"> <script type="text/javascript" language="javascript1.2"> <!-- if (window.writeIntopicBar) writeIntopicBar(4); //--> </script> <H1><A NAME="plansecurity"></A>Planning Security</H1> <P>The following is a list of questions that will help you plan security. For more information on the individual steps you need to perform to implement the level of security you select, see <A HREF="setupsecurity.html">Setting Up Security</a>.</p> <ul type="square"> <LI>What level of security do you need?<br><br> <UL type="disc"> <LI>Can you use the same security definition for each project in a project database where all users have the same level of access to the archives? If so, then you can <A HREF="specifyacdblocation.html">specify an access control database</a> for the project database--none for the projects within the project database and no access lists. Then you can <A HREF="defineusers.html">define all of the users</a> that require access to the project database and <A HREF="definecustomprivsets.html">define a custom privilege set</a> or select a <A HREF="defaultprivtables.html">default privilege set</a> for the users and assign it to each user. This level of security is further explained in <A HREF="securityexample1.html">security example 1</a>.<br><br> <LI>Can you use the same security definition for each project in a project database? But, the users have different roles that they perform on the archives. If so, then you can define an access control database for the project database--none for the projects and no access lists. And, you can <A HREF="definecustomprivsets.html">define privilege sets</a> for each user role (or use the <A HREF="defaultprivtables.html">default privilege sets</a>) and assign the appropriate privilege set to each user. This level of security is further explained in <A HREF="securityexample2.html">security example 2</a>.<br><br> <LI>Do you need a different security definition for the archives in each individual project in a project database? If so, then you can define an access control database for each project but not define any access lists. This level of security is further explained in <A HREF="securityexample3.html">security example 3</a>.<br><br> <LI>Do you need a different security definition for some archives of a project database? If so, then you must define an <A HREF="defineaccesslist.html">access list</a> for those archives. This provides the greatest level of security. This level of security is further explained in <A HREF="securityexample4.html">security example 4</a>.<br><br> </UL> <LI>Should you define access list groups to control archive access collectively? This should be done only if you are using access lists. We recommend that you use <A HREF="defineaccesslistgroup.html">access list groups</a> when defining <A HREF="aboutaccesslists.html">access lists</a>. </UL> <H2>See Also</H2> <TABLE WIDTH="100%" CELLSPACING="2" CELLPADDING="4"> <TR> <TD><A HREF="maintainsecurity.html">Maintaining Security</A></TD> </TR> </TABLE> <script type="text/javascript" language="javascript1.2"> <!-- if (window.writeIntopicBar) writeIntopicBar(0); //--> </script> </BODY> </HTML>
3rdparty/dwr-2.0.1/src/javadoc/org/directwebremoting/util/class-use/Logger.html
simeshev/parabuild-ci
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.5.0_07) on Fri Apr 27 02:58:16 BST 2007 --> <TITLE> Uses of Class org.directwebremoting.util.Logger </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="Uses of Class org.directwebremoting.util.Logger"; } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../org/directwebremoting/util/Logger.html" title="class in org.directwebremoting.util"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?org/directwebremoting/util//class-useLogger.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="Logger.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.directwebremoting.util.Logger</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Packages that use <A HREF="../../../../org/directwebremoting/util/Logger.html" title="class in org.directwebremoting.util">Logger</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.directwebremoting.impl"><B>org.directwebremoting.impl</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.directwebremoting.servlet"><B>org.directwebremoting.servlet</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.directwebremoting.util"><B>org.directwebremoting.util</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.directwebremoting.impl"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../org/directwebremoting/util/Logger.html" title="class in org.directwebremoting.util">Logger</A> in <A HREF="../../../../org/directwebremoting/impl/package-summary.html">org.directwebremoting.impl</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Fields in <A HREF="../../../../org/directwebremoting/impl/package-summary.html">org.directwebremoting.impl</A> declared as <A HREF="../../../../org/directwebremoting/util/Logger.html" title="class in org.directwebremoting.util">Logger</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../org/directwebremoting/util/Logger.html" title="class in org.directwebremoting.util">Logger</A></CODE></FONT></TD> <TD><CODE><B>SignatureParser.</B><B><A HREF="../../../../org/directwebremoting/impl/SignatureParser.html#log">log</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The log stream</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../org/directwebremoting/util/Logger.html" title="class in org.directwebremoting.util">Logger</A></CODE></FONT></TD> <TD><CODE><B>DwrXmlConfigurator.</B><B><A HREF="../../../../org/directwebremoting/impl/DwrXmlConfigurator.html#log">log</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The log stream</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.directwebremoting.servlet"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../org/directwebremoting/util/Logger.html" title="class in org.directwebremoting.util">Logger</A> in <A HREF="../../../../org/directwebremoting/servlet/package-summary.html">org.directwebremoting.servlet</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Fields in <A HREF="../../../../org/directwebremoting/servlet/package-summary.html">org.directwebremoting.servlet</A> declared as <A HREF="../../../../org/directwebremoting/util/Logger.html" title="class in org.directwebremoting.util">Logger</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../org/directwebremoting/util/Logger.html" title="class in org.directwebremoting.util">Logger</A></CODE></FONT></TD> <TD><CODE><B>DwrServlet.</B><B><A HREF="../../../../org/directwebremoting/servlet/DwrServlet.html#log">log</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The log stream</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.directwebremoting.util"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../org/directwebremoting/util/Logger.html" title="class in org.directwebremoting.util">Logger</A> in <A HREF="../../../../org/directwebremoting/util/package-summary.html">org.directwebremoting.util</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../org/directwebremoting/util/package-summary.html">org.directwebremoting.util</A> that return <A HREF="../../../../org/directwebremoting/util/Logger.html" title="class in org.directwebremoting.util">Logger</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../org/directwebremoting/util/Logger.html" title="class in org.directwebremoting.util">Logger</A></CODE></FONT></TD> <TD><CODE><B>Logger.</B><B><A HREF="../../../../org/directwebremoting/util/Logger.html#getLogger(java.lang.Class)">getLogger</A></B>(java.lang.Class&nbsp;base)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../org/directwebremoting/util/Logger.html" title="class in org.directwebremoting.util"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> Copyright ¬ 2005</EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?org/directwebremoting/util//class-useLogger.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="Logger.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
public/css/fonts.css
tiagy/ANTA
@font-face { font-family: 'Yanone Kaffeesatz'; font-style: normal; font-weight: 400; src: local('Yanone Kaffeesatz Regular'), local('YanoneKaffeesatz-Regular'), url('http://themes.googleusercontent.com/font?kit=YDAoLskQQ5MOAgvHUQCcLdXn3cHbFGWU4T2HrSN6JF4') format('truetype'); } @font-face { font-family: 'PT Sans Caption'; font-style: normal; font-weight: normal; src: local('PT Sans Caption'), local('PTSans-Caption'), url('http://themes.googleusercontent.com/font?kit=OXYTDOzBcXU8MTNBvBHeSW8by34Z3mUMtM-o4y-SHCY') format('truetype'); } .yanone{ font-family: 'Yanone Kaffeesatz', serif; font-size: 18px; font-style: normal; text-decoration: none; text-transform: none; letter-spacing: 0em; word-spacing: 0em; line-height: 1em; } .ptsans{ font-family: 'PT Sans Caption', serif; font-size: 12px; font-style: normal; text-shadow: none; text-decoration: none; text-transform: none; letter-spacing: 0em; word-spacing: 0em; line-height: 1em; } .georgia{ font-family: Georgia,"Nimbus Roman No9 L",serif; }
3rdparty/vm810/vm/help/content/topics/archivecreationoptions.html
simeshev/parabuild-ci
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <HTML> <HEAD> <link rel='stylesheet' href='stylesht_ns.css'> <script type="text/javascript" language="JavaScript" title="WebHelpSplitCss"> <!-- if (navigator.appName !="Netscape") { document.write("<link rel='stylesheet' href='stylesht.css'>");} //--> </script> <TITLE>Archive Creation Options</TITLE> <!--<archivecreationoptions.html>--> <!--<index parent="archives" label="creation options" anchor="archivecreationoptions">--> <!--<index parent="options" label="archive creation" anchor="archivecreationoptions">--> <!--<index parent="archives" label="owner of" anchor="archivecreationoptions">--> <!--<index parent="access_lists" label="defining for new archives" anchor="archivecreationoptions">--> <!--<index parent="archives" label="creating upon check in" anchor="archivecreationoptions">--> <!--<index parent="archives" label="write protect" anchor="archivecreationoptions">--> <!--<index parent="archives" label="multiple locks" anchor="archivecreationoptions">--> <!--<index parent="configuring" label="multiple locks" anchor="archivecreationoptions">--> <script type="text/javascript" language="JavaScript" title="WebHelpInlineScript"> <!-- function reDo() { if (innerWidth != origWidth || innerHeight != origHeight) location.reload(); } if ((parseInt(navigator.appVersion) == 4) && (navigator.appName == "Netscape")) { origWidth = innerWidth; origHeight = innerHeight; onresize = reDo; } onerror = null; //--> </script> <style type="text/css"> <!-- div.WebHelpPopupMenu {position:absolute; left:0px; top:0px; z-index:4; visibility:hidden;} p.WebHelpNavBar {text-align:right;} --> </style> <script type="text/javascript" language="javascript1.2" src="../whmsg.js"></script> <script type="text/javascript" language="javascript" src="../whver.js"></script> <script type="text/javascript" language="javascript1.2" src="../whproxy.js"></script> <script type="text/javascript" language="javascript1.2" src="../whutils.js"></script> <script type="text/javascript" language="javascript1.2" src="../whtopic.js"></script> <script type="text/javascript" language="javascript1.2"> <!-- if (window.gbWhTopic) { if (window.setRelStartPage) { addButton("show",BTN_TEXT,"Show Navigation","","","","",0,0,"../whd_show0.gif","../whd_show2.gif","../whd_show1.gif"); addButton("hide",BTN_TEXT,"Hide Navigation","","","","",0,0,"../whd_hide0.gif","../whd_hide2.gif","../whd_hide1.gif"); } if (window.setRelStartPage) { setRelStartPage("../vm_help.htm"); autoSync(1); sendSyncInfo(); sendAveInfoOut(); } } else if (window.gbIE4) document.location.reload(); //--> </script> </HEAD> <BODY BGCOLOR="#ffffee"> <script type="text/javascript" language="javascript1.2"> <!-- if (window.writeIntopicBar) writeIntopicBar(4); //--> </script> <H1><A NAME="archivecreationoptions"></A>Archive Creation Options</H1> <P> The archive creation options only affect newly created archives. You can set these options on existing archives by using the Admin | Archive Attributes menu item. </P> <P> The archive creation options let you: </P> <UL> <LI>Prevent multiple locks on a single archive. If you allow multiple locks, different users can place locks on different revisions in an archive at the same time. The directive for this option is ExclusiveLock. <BR><BR> <b>Note:</b> The MultiLock and ExclusiveLock directives are mutually exclusive. The MultiLock directive has no affect on an archive that was created while the ExclusiveLock directive was in effect. See <a href="lockingoptions.html">Locking Options</a> for information about MultiLock. <BR><BR> <LI>Assign ownership of archives. The directive for this option is Owner. <LI>Define an <a href="accesslist.html">access list</a> for archives, which identifies users and groups of users who are allowed to access archives. The directive for this option is AccessList. <LI>Write-protect archives. Doing this protects archives from inadvertent deletion or modification. Version Manager commands automatically remove write-protection before modifying archives and replace it afterwards. The directive for this option is WriteProtect. <LI>Automatically create an archive when you check in a workfile if Version Manager cannot find one for the file. This option applies only to the command-line interface. The directive for this option is AutoCreate. </UL> <P> <a href="setarchivecreationoptions.html">Click here</a> to see how to set these options. </P> <script type="text/javascript" language="javascript1.2"> <!-- if (window.writeIntopicBar) writeIntopicBar(0); //--> </script> </BODY> </HTML>
squirrel.worker/src/test/resources/html_scraper_analyzer/RDFaParserTestResources/rdfa1.1/html4/0025.html
AKSW/Squirrel
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/MarkUp/DTD/html401-rdfa11-1.dtd"> <html version="HTML+RDFa 1.1" prefix="dc: http://purl.org/dc/elements/1.1/ foaf: http://xmlns.com/foaf/0.1/"> <head> <title>Test 0025</title> </head> <body> <p> This paper was written by <span rel="dc:creator" resource="#me"> <span property="foaf:name">Ben Adida</span>. </span> </p> </body> </html>
src/views/partials/editword.tpl.html
askdesigners/Slovnik-App
<h3 class="pageTitle">{{l.formEditWord}}</h3> <form name="newWordForm" class="form-horizontal"> <div class="control-group"> <label for="says" class="control-label">{{l.formSays}}:</label> <div class="controls"> <input type="text" id="says" class="input-xlarge seedlarge" ng-model="word.says" required> </div> </div> <div class="control-group"> <label for="means" class="control-label">{{l.formMeans}}:</label> <div class="controls"> <input type="text" id="means" class="input-xlarge seedlarge" ng-model="word.means" required> </div> </div> <div class="control-group"> <label for="language" class="control-label">{{l.formLang}}:</label> <div class="controls"> <label class="radio inline"> <input type="radio" name="language" value="czech" ng-model="word.language" required> {{l.czech}} </label> <label class="radio inline"> <input type="radio" name="language" value="english" ng-model="word.language" required> {{l.english}} </label> </div> </div> <div class="control-group"> <label for="translation" class="control-label">{{l.formTrans}}:</label> <div class="controls"> <input type="text" id="translation" class="input-xlarge seedlarge" ng-model="word.translation" required> </div> </div> <div class="control-group"> <label for="more" class="control-label">{{l.more}}:</label> <div class="controls"> <textarea id="more" class="seedlarge form-control" rows="4" ng-model="word.more"></textarea> </div> </div> <div class="reset"> <a class="resetForm" ng-click="cancelEdit()">{{l.formCancelEdit}}</a> </div> <div class="control-group"> <input type="submit" value="{{l.formSave}}" id="saveWordButton" class="btn btn-success btn-lg btn-block" ng-disabled="!canSave()" ng-click="saveEditedWord(word)"> </div> </form>
static/events/2018-jakarta/speakers/iskak-hendrawan/index.html
gomex/devopsdays-web
<!DOCTYPE html> <html itemscope lang="en-us"> <head><meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta charset="utf-8"> <meta name="HandheldFriendly" content="True"> <meta name="MobileOptimized" content="320"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><meta name="generator" content="Hugo 0.57.2" /> <meta property="og:title" content="Iskak Hendrawan" /> <meta name="twitter:title" content="Iskak Hendrawan"/> <meta itemprop="name" content="Iskak Hendrawan"><meta property="og:description" content="Expert in IT Strategy, Technical Architecture, Digital Security and Technology Service Management. Knowledgable in providing solution for financial industry, covering Integrated Application, Process Automation, Technology Infrastructure and Information Security." /> <meta name="twitter:description" content="Expert in IT Strategy, Technical Architecture, Digital Security and Technology Service Management. Knowledgable in providing solution for financial industry, covering Integrated Application, Process Automation, Technology Infrastructure and Information Security." /> <meta itemprop="description" content="Expert in IT Strategy, Technical Architecture, Digital Security and Technology Service Management. Knowledgable in providing solution for financial industry, covering Integrated Application, Process Automation, Technology Infrastructure and Information Security."><meta name="twitter:site" content="@devopsdays"> <meta property="og:type" content="speaker" /> <meta property="og:url" content="/events/2018-jakarta/speakers/iskak-hendrawan/" /><meta name="twitter:creator" content="@devopsdaysjkt" /><meta name="twitter:label1" value="Event" /> <meta name="twitter:data1" value="devopsdays Jakarta 2018" /><meta name="twitter:label2" value="Dates" /> <meta name="twitter:data2" value="April 26 - 27, 2018" /><meta property="og:image" content="https://www.devopsdays.org/img/sharing.jpg" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:image" content="https://www.devopsdays.org/img/sharing.jpg" /> <meta itemprop="image" content="https://www.devopsdays.org/img/sharing.jpg" /> <meta property="fb:app_id" content="1904065206497317" /><meta itemprop="wordCount" content="29"> <title>Iskak Hendrawan - devopsdays Jakarta 2018 </title> <script> window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date; ga('create', 'UA-9713393-1', 'auto'); ga('send', 'pageview'); </script> <script async src='https://www.google-analytics.com/analytics.js'></script> <link href="/css/site.css" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700" rel="stylesheet"><link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png"> <link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png"> <link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png"> <link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png"> <link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png"> <link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png"> <link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png"> <link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png"> <link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png"> <link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png"> <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png"> <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> <link rel="manifest" href="/manifest.json"> <meta name="msapplication-TileColor" content="#ffffff"> <meta name="msapplication-TileImage" content="/ms-icon-144x144.png"> <meta name="theme-color" content="#ffffff"> <link href="/events/index.xml" rel="alternate" type="application/rss+xml" title="DevOpsDays" /> <link href="/events/index.xml" rel="feed" type="application/rss+xml" title="DevOpsDays" /> <script src=/js/devopsdays-min.js></script></head> <body lang=""> <nav class="navbar navbar-expand-md navbar-light"> <a class="navbar-brand" href="/"> <img src="/img/devopsdays-brain.png" height="30" class="d-inline-block align-top" alt="devopsdays Logo"> DevOpsDays </a> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarSupportedContent"> <ul class="navbar-nav mr-auto"><li class="nav-item global-navigation"><a class = "nav-link" href="/events">events</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/blog">blog</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/sponsor">sponsor</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/speaking">speaking</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/organizing">organizing</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/about">about</a></li></ul> </div> </nav> <nav class="navbar event-navigation navbar-expand-md navbar-light"> <a href="/events/2018-jakarta" class="nav-link">Jakarta</a> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar2"> <span class="navbar-toggler-icon"></span> </button> <div class="navbar-collapse collapse" id="navbar2"> <ul class="navbar-nav"><li class="nav-item active"> <a class="nav-link" href="/events/2018-jakarta/program">program</a> </li><li class="nav-item active"> <a class="nav-link" href="/events/2018-jakarta/speakers">speakers</a> </li><li class="nav-item active"> <a class="nav-link" href="/events/2018-jakarta/contact">contact</a> </li><li class="nav-item active"> <a class="nav-link" href="/events/2018-jakarta/conduct">conduct</a> </li></ul> </div> </nav> <div class="container-fluid"> <div class="row"> <div class="col-md-12"><div class = "row"> <div class = "col-md-12 offset-md-1"> <h2 class="speaker-page">Iskak Hendrawan</h2> </div> </div> <div class = "row"> <div class = "col-md-4 offset-md-1"> <span class="speaker-page content-text"> <p>Expert in IT Strategy, Technical Architecture, Digital Security and Technology Service Management. Knowledgable in providing solution for financial industry, covering Integrated Application, Process Automation, Technology Infrastructure and Information Security.</p> </span> <div class="speaker-bio-talks"> <h3>Iskak Hendrawan at Jakarta 2018</h3> <ul class="list-group"> <a href = "https://www.devopsdays.org/events/2018-jakarta/program/iskak-hendrawan/" class= "list-group-item list-group-item-action">Keynote: DevOps Adoption, Challenges and Opportunities</a> </ul> </div> </div> <div class = "col-md-3 offset-md-1"><img src = "/events/2018-jakarta/speakers/iskak-hendrawan.jpg" class="speaker-page" alt="Iskak Hendrawan"/><br /><a href = "https://twitter.com/iskakhendrawan"><i class="fa fa-twitter fa-2x" aria-hidden="true"></i></a></div> </div> <div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">Platinum Sponsors</h4></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.btpn.com"><img src = "/img/sponsors/btpn.png" alt = "BTPN" title = "BTPN" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www2.dimensiondata.com/"><img src = "/img/sponsors/dimension-data.png" alt = "Dimension Data" title = "Dimension Data" class="img-fluid"></a> </div></div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">Gold Sponsors</h4></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.naradacode.com/"><img src = "/img/sponsors/naradacode.png" alt = "NaradaCode" title = "NaradaCode" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.packet-systems.com/"><img src = "/img/sponsors/packet-systems.png" alt = "Packet Systems" title = "Packet Systems" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.pivotal.io"><img src = "/img/sponsors/pivotal-before-20190307.png" alt = "Pivotal" title = "Pivotal" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.progrezconsulting.com/"><img src = "/img/sponsors/pt-aims-progrez.png" alt = "PT Aims Progrez" title = "PT Aims Progrez" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.bukalapak.com"><img src = "/img/sponsors/bukalapak-before-20190305.png" alt = "Bukalapak" title = "Bukalapak" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.gojek.io/"><img src = "/img/sponsors/gojek.png" alt = "GO JEK" title = "GO JEK" class="img-fluid"></a> </div></div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">Silver Sponsors</h4></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://ekipa.co.id/"><img src = "/img/sponsors/ekipa.png" alt = "Ekipa" title = "Ekipa" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://chef.io"><img src = "/img/sponsors/chef.png" alt = "Chef Software, Inc" title = "Chef Software, Inc" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.mckinsey.com/"><img src = "/img/sponsors/mckinsey.png" alt = "McKinsey" title = "McKinsey" class="img-fluid"></a> </div></div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">Community Sponsors</h4></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.meetup.com/Agile-Singapore/"><img src = "/img/sponsors/agile-singapore.png" alt = "Agile Singapore" title = "Agile Singapore" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.meetup.com/devops-singapore/"><img src = "/img/sponsors/singapore-devops-community.png" alt = "DevOps Community Singapore" title = "DevOps Community Singapore" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.meetup.com/DevSecOps-Singapore"><img src = "/img/sponsors/singapore-devsecops-community.png" alt = "DevSecOps Community Singapore" title = "DevSecOps Community Singapore" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.meetup.com/singasug/"><img src = "/img/sponsors/singapore-spring-community.png" alt = "Spring Community" title = "Spring Community" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://agilecircles.id/"><img src = "/img/sponsors/agile-circles.png" alt = "Agile Circles" title = "Agile Circles" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.devopsindonesia.com"><img src = "/img/sponsors/devops-indonesia.png" alt = "DevOps Indonesia" title = "DevOps Indonesia" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.meetup.com/AgileIndonesia/"><img src = "/img/sponsors/agile-indonesia.png" alt = "Agile Indonesia" title = "Agile Indonesia" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://geekhunter.co"><img src = "/img/sponsors/geekhunter.png" alt = "Geekhunter" title = "Geekhunter" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://bncc.net/"><img src = "/img/sponsors/bncc.png" alt = "BNCC" title = "BNCC" class="img-fluid"></a> </div></div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">Media Sponsors</h4></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.techinasia.com/"><img src = "/img/sponsors/tech-in-asia.png" alt = "Tech In Asia" title = "Tech In Asia" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://eventjakarta.com/"><img src = "/img/sponsors/event-jakarta.png" alt = "Event Jakarta" title = "Event Jakarta" class="img-fluid"></a> </div></div><br /> </div></div> </div> <nav class="navbar bottom navbar-light footer-nav-row" style="background-color: #bfbfc1;"> <div class = "row"> <div class = "col-md-12 footer-nav-background"> <div class = "row"> <div class = "col-md-6 col-lg-3 footer-nav-col"> <h3 class="footer-nav">@DEVOPSDAYS</h3> <div> <a class="twitter-timeline" data-dnt="true" href="https://twitter.com/devopsdays/lists/devopsdays" data-chrome="noheader" height="440"></a> <script> ! function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0], p = /^http:/.test(d.location) ? 'http' : 'https'; if (!d.getElementById(id)) { js = d.createElement(s); js.id = id; js.src = p + "://platform.twitter.com/widgets.js"; fjs.parentNode.insertBefore(js, fjs); } }(document, "script", "twitter-wjs"); </script> </div> </div> <div class="col-md-6 col-lg-3 footer-nav-col footer-content"> <h3 class="footer-nav">BLOG</h3><a href = "https://www.devopsdays.org/blog/2019/05/10/10-years-of-devopsdays/"><h1 class = "footer-heading">10 years of devopsdays</h1></a><h2 class="footer-heading">by Kris Buytaert - 10 May, 2019</h2><p class="footer-content">It&rsquo;s hard to believe but it is almost 10 years ago since #devopsdays happened for the first time in Gent. Back then there were almost 70 of us talking about topics that were of interest to both Operations and Development, we were exchanging our ideas and experiences `on how we were improving the quality of software delivery. Our ideas got started on the crossroads of Open Source, Agile and early Cloud Adoption.</p><a href = "https://www.devopsdays.org/blog/"><h1 class = "footer-heading">Blogs</h1></a><h2 class="footer-heading">10 May, 2019</h2><p class="footer-content"></p><a href="https://www.devopsdays.org/blog/index.xml">Feed</a> </div> <div class="col-md-6 col-lg-3 footer-nav-col"> <h3 class="footer-nav">CFP OPEN</h3><a href = "/events/2019-campinas" class = "footer-content">Campinas</a><br /><a href = "/events/2019-macapa" class = "footer-content">Macapá</a><br /><a href = "/events/2019-shanghai" class = "footer-content">Shanghai</a><br /><a href = "/events/2019-recife" class = "footer-content">Recife</a><br /><a href = "/events/2020-charlotte" class = "footer-content">Charlotte</a><br /><a href = "/events/2020-prague" class = "footer-content">Prague</a><br /><a href = "/events/2020-tokyo" class = "footer-content">Tokyo</a><br /><a href = "/events/2020-salt-lake-city" class = "footer-content">Salt Lake City</a><br /> <br />Propose a talk at an event near you!<br /> </div> <div class="col-md-6 col-lg-3 footer-nav-col"> <h3 class="footer-nav">About</h3> devopsdays is a worldwide community conference series for anyone interested in IT improvement.<br /><br /> <a href="/about/" class = "footer-content">About devopsdays</a><br /> <a href="/privacy/" class = "footer-content">Privacy Policy</a><br /> <a href="/conduct/" class = "footer-content">Code of Conduct</a> <br /> <br /> <a href="https://www.netlify.com"> <img src="/img/netlify-light.png" alt="Deploys by Netlify"> </a> </div> </div> </div> </div> </nav> <script> $(document).ready(function () { $("#share").jsSocials({ shares: ["email", {share: "twitter", via: 'devopsdaysjkt'}, "facebook", "linkedin"], text: 'devopsdays Jakarta - 2018', showLabel: false, showCount: false }); }); </script> </body> </html>
solr-4.10.0/docs/solr-solrj/index.html
Ramzi-Alqrainy/SELK
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc on Tue Aug 26 20:49:58 PDT 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>Solr 4.10.0 API</title> <script type="text/javascript"> targetPage = "" + window.location.search; if (targetPage != "" && targetPage != "undefined") targetPage = targetPage.substring(1); if (targetPage.indexOf(":") != -1 || (targetPage != "" && !validURL(targetPage))) targetPage = "undefined"; function validURL(url) { try { url = decodeURIComponent(url); } catch (error) { return false; } var pos = url.indexOf(".html"); if (pos == -1 || pos != url.length - 5) return false; var allowNumber = false; var allowSep = false; var seenDot = false; for (var i = 0; i < url.length - 5; i++) { var ch = url.charAt(i); if ('a' <= ch && ch <= 'z' || 'A' <= ch && ch <= 'Z' || ch == '$' || ch == '_' || ch.charCodeAt(0) > 127) { allowNumber = true; allowSep = true; } else if ('0' <= ch && ch <= '9' || ch == '-') { if (!allowNumber) return false; } else if (ch == '/' || ch == '.') { if (!allowSep) return false; allowNumber = false; allowSep = false; if (ch == '.') seenDot = true; if (ch == '/' && seenDot) return false; } else { return false; } } return true; } function loadFrames() { if (targetPage != "" && targetPage != "undefined") top.classFrame.location = top.targetPage; } </script> </head> <frameset cols="20%,80%" title="Documentation frame" onload="top.loadFrames()"> <frameset rows="30%,70%" title="Left frames" onload="top.loadFrames()"> <frame src="overview-frame.html" name="packageListFrame" title="All Packages"> <frame src="allclasses-frame.html" name="packageFrame" title="All classes and interfaces (except non-static nested types)"> </frameset> <frame src="overview-summary.html" name="classFrame" title="Package, class and interface descriptions" scrolling="yes"> <noframes> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> </noframes> </frameset> </html>
Paco-Server/ear/default/web/bower_components/angular-material/modules/js/card/card.min.css
athoo/paco
/*! * Angular Material Design * https://github.com/angular/material * @license MIT * v0.9.0-rc3-master-4917a16 */md-card{box-sizing:border-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin:8px;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}md-card>:not(md-card-content) img,md-card>img{width:100%}md-card md-card-content{padding:16px}md-card .md-actions{margin:0}md-card .md-actions .md-button{margin:8px 4px}md-card md-card-footer{padding:16px}@media screen and (-ms-high-contrast:active){md-card{border:1px solid #fff}}
_includes/header.html
freme-project/Documentation
<div class = "navbar navbar-default navbar-static-top"> <div class = "container"> <div class = "navbar-header"> <button class = "navbar-toggle" data-toggle = "collapse" data-target = ".navHeaderCollapse"> <span class = "icon-bar"></span> <span class = "icon-bar"></span> <span class = "icon-bar"></span> </button> <a href="{{"/index.html" | prepend: site.basePath }}"><img src={{ "/img/Logo_FREME_icona_vert.png" | prepend: site.basePath }} alt="FREME Logo" class = "navbar-logo"></a> <!-- <a href = "#" class = "navbar-brand">FREME Documentation</a> --> </div> <div class = "collapse navbar-collapse navHeaderCollapse"> <ul class="nav navbar-nav" id="__navbar__"> </ul> </div> <script javascript> var pages_baseurl = "{{site.basePath }}"; var pages_pageurl="{{page.url}}"; var pages = [ {% for p in site.pages %} { url : {% if {{p.url}} %}"{{p.url}}"{% else %}undefined{% endif %}, externurl : {% if {{p.externurl}} %}"{{p.externurl}}"{% else %}undefined{% endif %}, pos : {% if {{p.pos}} %}"{{p.pos}}"{% else %}undefined{% endif %}, dropdownNames : {% if {{p.dropdown}} %}"{{p.dropdown}}"{% else %}undefined{% endif %}, title : {% if {{p.title}} %}"{{p.title}}"{% else %}undefined{% endif %} }, {% endfor %} {}]; pages=pages.filter(function(x){return x.pos!=undefined}); pages.sort(function(p1,p2){ var pos1=parseInt(p1.pos.split(".")[0]); var pos2=parseInt(p2.pos.split(".")[0]); if (pos1-pos2!=0){ return pos1-pos2; } pos1=parseInt(p1.pos.split(".")[1]); pos2=parseInt(p2.pos.split(".")[1]); return pos1-pos2; }); dropdown_obj={}; for (var i=0; i<pages.length; i++) { if (pages[i].url==pages_pageurl) { pages[i].active=true; } pages[i].dropdownNames=pages[i].dropdownNames.split(","); var dropdown = pages[i].url.split("/").filter(function(x){return x!=""}).slice(0,-1); var link = "<li "+ (pages[i].externurl!=undefined ? "><a target=\"_blank\" href=\""+pages[i].externurl+"\">"+pages[i].title+"</a></li>" : (pages[i].active ? "class=\"active\"" : "")+"><a href=\""+pages_baseurl+pages[i].url+"\">"+pages[i].title+"</a></li>"); if (dropdown.length==0) { $("#__navbar__").append(link); } else { var selector = "__navbar__"; for (var k =0; k<dropdown.length; k++) { var current = (dropdown.slice(0,k+1).join(".")); if (dropdown_obj[current]==undefined) { dropdown_obj[current] = {}; $("#"+selector).append( "<li> " + "<a href='#'>" + pages[i].dropdownNames[k] + "<span class='caret'></span>" + "</a>" + "<ul class='dropdown-menu' id='" + selector + dropdown[k].trim() + "'></ul></li>"); } selector+=dropdown[k].trim(); if (pages[i].active) { $("#"+selector).parent().addClass("active"); } } $("#"+selector).append(link); } } </script> </div> </div>
SMART_FRIDGE_FRIGOLO/frifri/frifrifri/frifrifri/JavaDoc/fr/esisar/frigolo/session/stateless/ejb/capteur/logique/package-use.html
R3glisse/CS511
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="fr"> <head> <!-- Generated by javadoc (1.8.0_111) on Sun Jan 15 21:26:08 CET 2017 --> <title>Uses of Package fr.esisar.frigolo.session.stateless.ejb.capteur.logique</title> <meta name="date" content="2017-01-15"> <link rel="stylesheet" type="text/css" href="../../../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Package fr.esisar.frigolo.session.stateless.ejb.capteur.logique"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../../index.html?fr/esisar/frigolo/session/stateless/ejb/capteur/logique/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Uses of Package fr.esisar.frigolo.session.stateless.ejb.capteur.logique" class="title">Uses of Package<br>fr.esisar.frigolo.session.stateless.ejb.capteur.logique</h1> </div> <div class="contentContainer">No usage of fr.esisar.frigolo.session.stateless.ejb.capteur.logique</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../../index.html?fr/esisar/frigolo/session/stateless/ejb/capteur/logique/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
docs/javadoc/0.6.9/jus-java/io/apptik/comm/jus/http/HttpDate.html
apptik/jus
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_111) on Tue Jan 10 20:28:35 CET 2017 --> <title>HttpDate (jus-java 0.6.9 API)</title> <meta name="date" content="2017-01-10"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="HttpDate (jus-java 0.6.9 API)"; } } catch(err) { } //--> var methods = {"i0":9,"i1":9}; var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../io/apptik/comm/jus/http/HTTP.html" title="class in io.apptik.comm.jus.http"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../io/apptik/comm/jus/http/HttpUrl.html" title="class in io.apptik.comm.jus.http"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?io/apptik/comm/jus/http/HttpDate.html" target="_top">Frames</a></li> <li><a href="HttpDate.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">io.apptik.comm.jus.http</div> <h2 title="Class HttpDate" class="title">Class HttpDate</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>io.apptik.comm.jus.http.HttpDate</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public final class <span class="typeNameLabel">HttpDate</span> extends java.lang.Object</pre> <div class="block">Best-effort parser for HTTP dates.</div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>static java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../io/apptik/comm/jus/http/HttpDate.html#format-java.util.Date-">format</a></span>(java.util.Date&nbsp;value)</code> <div class="block">Returns the string for <code>value</code>.</div> </td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>static java.util.Date</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../io/apptik/comm/jus/http/HttpDate.html#parse-java.lang.String-">parse</a></span>(java.lang.String&nbsp;value)</code> <div class="block">Returns the date for <code>value</code>.</div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="parse-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>parse</h4> <pre>public static&nbsp;java.util.Date&nbsp;parse(java.lang.String&nbsp;value)</pre> <div class="block">Returns the date for <code>value</code>. Returns null if the value couldn't be parsed.</div> </li> </ul> <a name="format-java.util.Date-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>format</h4> <pre>public static&nbsp;java.lang.String&nbsp;format(java.util.Date&nbsp;value)</pre> <div class="block">Returns the string for <code>value</code>.</div> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../io/apptik/comm/jus/http/HTTP.html" title="class in io.apptik.comm.jus.http"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../io/apptik/comm/jus/http/HttpUrl.html" title="class in io.apptik.comm.jus.http"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?io/apptik/comm/jus/http/HttpDate.html" target="_top">Frames</a></li> <li><a href="HttpDate.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
app/client/templates/home/Home.html
kelsieayamakawa/meteor-castle-high
<template name="Home"> <div class="container"> <div class="row"> <div class="col-md-3"> <div class="well"> <h1>Information</h1> <ul> <li><a href="#">About Us</a></li> <li><a href="#">Administrations</a></li> <li><a href="#">Athletics</a></li> <li><a href="#">Bell Schedule</a></li> <li><a href="#">Calendar</a></li> <li><a href="#">Counselors</a></li> <li><a href="#">Daily Bulletin</a></li> <li><a href="#">Directories</a></li> <li><a href="#">Knightly News</a></li> <li><a href="#">Library</a></li> <li><a href="#">Lunch Menu</a></li> <li><a href="#">Small Learning Communities</a></li> </ul> </div> </div> <div class="col-md-6 hidden-xs"> <div class="well"> <h1>Welcome to Castle High School</h1> <div class="knight-pride"></div> </div> </div> <div class="col-md-3"> <div class="well"> <h1>Announcements</h1> <h2>October 5-9</h2> <p>Fall Break, No School</p> <h2>Monday, October 12</h2> <p>Teacher Institute Day - No School for Students</p> <h2>Tuesday, October 13</h2> <p>Periods 1, 3, 5, 7</p> <h2>Wednesday, October 14</h2> <p>Periods 2, 4, 6</p> <h2>Thursday, October 15</h2> <p>Periods 1, 3, 5, 7</p> <h2>Friday, October 16</h2> <p>Periods 2, 4, ADV, 6</p> </div> </div> </div> </div> </template>
dist/styles/landing.css
SageBeard/bloc-jams-angular
body.landing { background-color: rgb(58,23,63); } .hero-content { position: relative; min-height: 600px; background-image: url(../assets/images/bloc_jams_bg.jpg); background-repeat: no-repeat; background-position: center center; background-size: cover; } .hero-content .hero-title { position: absolute; top: 40%; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); transform: translateY(-50%); width: 100%; text-align: center; font-size: 4rem; font-weight: 300; text-transform: uppercase; letter-spacing: 0.5rem; text-shadow: 1px 1px 0px rgb(58,23,63); } .selling-points { position: relative; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .point { position: relative; padding: 2rem; text-align: center; opacity: 1; -webkit-transform: scaleX(0.9) translateY(3rem); -moz-transform: scaleX(0.9) translateY(3rem); transform: scaleX(0.9) translateY(3rem); -webkit-transition: all 0.25s ease-in-out; -moz-transition: all 0.25s ease-in-out; transition: all 0.25s ease-in-out; -webkit-transition-delay: 0.2s; -moz-transition-delay: 0.2s; transition-delay: 0.2s; } .point .point-title { font-size: 1.25rem; } .ion-music-note, .ion-radio-waves, .ion-iphone { color: rgb(233,50,117); font-size: 5rem; }
theme_rtl/templates/admin3_material_design/layout_glyphicons.html
zzsoszz/metronicv37
<!DOCTYPE html> <!-- Template Name: Metronic - Responsive Admin Dashboard Template build with Twitter Bootstrap 3.3.2 Version: 3.2.0 Author: KeenThemes Website: http://www.keenthemes.com/ Contact: support@keenthemes.com Follow: www.twitter.com/keenthemes Like: www.facebook.com/keenthemes Purchase: http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes License: You must have a valid license purchased only from themeforest(the above link) in order to legally use the theme for your project. --> <!--[if IE 8]> <html lang="en" class="ie8 no-js"> <![endif]--> <!--[if IE 9]> <html lang="en" class="ie9 no-js"> <![endif]--> <!--[if !IE]><!--> <html lang="en" dir="rtl"> <!--<![endif]--> <!-- BEGIN HEAD --> <head> <meta charset="utf-8"/> <title>Metronic | Layout with Glyphicon</title> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta content="width=device-width, initial-scale=1.0" name="viewport"/> <meta http-equiv="Content-type" content="text/html; charset=utf-8"> <meta content="" name="description"/> <meta content="" name="author"/> <!-- BEGIN GLOBAL MANDATORY STYLES --> <link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700&subset=all" rel="stylesheet" type="text/css"> <link href="../../assets/global/plugins/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <link href="../../assets/global/plugins/simple-line-icons/simple-line-icons.min.css" rel="stylesheet" type="text/css"> <link href="../../assets/global/plugins/bootstrap/css/bootstrap-rtl.min.css" rel="stylesheet" type="text/css"> <link href="../../assets/global/plugins/uniform/css/uniform.default.css" rel="stylesheet" type="text/css"> <!-- END GLOBAL MANDATORY STYLES --> <!-- BEGIN THEME STYLES --> <link href="../../assets/global/css/components-md-rtl.css" id="style_components" rel="stylesheet" type="text/css"> <link href="../../assets/global/css/plugins-md-rtl.css" rel="stylesheet" type="text/css"> <link href="../../assets/admin/layout3/css/layout-rtl.css" rel="stylesheet" type="text/css"> <link href="../../assets/admin/layout3/css/themes/default-rtl.css" rel="stylesheet" type="text/css" id="style_color"> <link href="../../assets/admin/layout3/css/custom-rtl.css" rel="stylesheet" type="text/css"> <!-- END THEME STYLES --> <link rel="shortcut icon" href="favicon.ico"/> </head> <!-- BEGIN BODY --> <!-- DOC: Apply "page-header-menu-fixed" class to set the mega menu fixed --> <!-- DOC: Apply "page-header-top-fixed" class to set the top menu fixed --> <body class="page-md page-glyphicons"> <!-- BEGIN HEADER --> <div class="page-header"> <!-- BEGIN HEADER TOP --> <div class="page-header-top"> <div class="container"> <!-- BEGIN LOGO --> <div class="page-logo"> <a href="index.html"><img src="../../assets/admin/layout3/img/logo-default.png" alt="logo" class="logo-default"></a> </div> <!-- END LOGO --> <!-- BEGIN RESPONSIVE MENU TOGGLER --> <a href="javascript:;" class="menu-toggler"></a> <!-- END RESPONSIVE MENU TOGGLER --> <!-- BEGIN TOP NAVIGATION MENU --> <div class="top-menu"> <ul class="nav navbar-nav pull-right"> <!-- BEGIN NOTIFICATION DROPDOWN --> <li class="dropdown dropdown-extended dropdown-dark dropdown-notification" id="header_notification_bar"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true"> <i class="glyphicon glyphicon-bell"></i> <span class="badge badge-default">7</span> </a> <ul class="dropdown-menu"> <li class="external"> <h3>You have <strong>12 pending</strong> tasks</h3> <a href="javascript:;">view all</a> </li> <li> <ul class="dropdown-menu-list scroller" style="height: 250px;" data-handle-color="#637283"> <li> <a href="javascript:;"> <span class="time">just now</span> <span class="details"> <span class="label label-sm label-icon label-success"> <i class="fa fa-plus"></i> </span> New user registered. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">3 mins</span> <span class="details"> <span class="label label-sm label-icon label-danger"> <i class="fa fa-bolt"></i> </span> Server #12 overloaded. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">10 mins</span> <span class="details"> <span class="label label-sm label-icon label-warning"> <i class="fa fa-bell-o"></i> </span> Server #2 not responding. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">14 hrs</span> <span class="details"> <span class="label label-sm label-icon label-info"> <i class="fa fa-bullhorn"></i> </span> Application error. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">2 days</span> <span class="details"> <span class="label label-sm label-icon label-danger"> <i class="fa fa-bolt"></i> </span> Database overloaded 68%. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">3 days</span> <span class="details"> <span class="label label-sm label-icon label-danger"> <i class="fa fa-bolt"></i> </span> A user IP blocked. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">4 days</span> <span class="details"> <span class="label label-sm label-icon label-warning"> <i class="fa fa-bell-o"></i> </span> Storage Server #4 not responding dfdfdfd. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">5 days</span> <span class="details"> <span class="label label-sm label-icon label-info"> <i class="fa fa-bullhorn"></i> </span> System Error. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">9 days</span> <span class="details"> <span class="label label-sm label-icon label-danger"> <i class="fa fa-bolt"></i> </span> Storage server failed. </span> </a> </li> </ul> </li> </ul> </li> <!-- END NOTIFICATION DROPDOWN --> <!-- BEGIN TODO DROPDOWN --> <li class="dropdown dropdown-extended dropdown-dark dropdown-tasks" id="header_task_bar"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true"> <i class="glyphicon glyphicon-calendar"></i> <span class="badge badge-default">3</span> </a> <ul class="dropdown-menu extended tasks"> <li class="external"> <h3>You have <strong>12 pending</strong> tasks</h3> <a href="javascript:;">view all</a> </li> <li> <ul class="dropdown-menu-list scroller" style="height: 275px;" data-handle-color="#637283"> <li> <a href="javascript:;"> <span class="task"> <span class="desc">New release v1.2 </span> <span class="percent">30%</span> </span> <span class="progress"> <span style="width: 40%;" class="progress-bar progress-bar-success" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100"><span class="sr-only">40% Complete</span></span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">Application deployment</span> <span class="percent">65%</span> </span> <span class="progress"> <span style="width: 65%;" class="progress-bar progress-bar-danger" aria-valuenow="65" aria-valuemin="0" aria-valuemax="100"><span class="sr-only">65% Complete</span></span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">Mobile app release</span> <span class="percent">98%</span> </span> <span class="progress"> <span style="width: 98%;" class="progress-bar progress-bar-success" aria-valuenow="98" aria-valuemin="0" aria-valuemax="100"><span class="sr-only">98% Complete</span></span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">Database migration</span> <span class="percent">10%</span> </span> <span class="progress"> <span style="width: 10%;" class="progress-bar progress-bar-warning" aria-valuenow="10" aria-valuemin="0" aria-valuemax="100"><span class="sr-only">10% Complete</span></span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">Web server upgrade</span> <span class="percent">58%</span> </span> <span class="progress"> <span style="width: 58%;" class="progress-bar progress-bar-info" aria-valuenow="58" aria-valuemin="0" aria-valuemax="100"><span class="sr-only">58% Complete</span></span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">Mobile development</span> <span class="percent">85%</span> </span> <span class="progress"> <span style="width: 85%;" class="progress-bar progress-bar-success" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100"><span class="sr-only">85% Complete</span></span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">New UI release</span> <span class="percent">38%</span> </span> <span class="progress progress-striped"> <span style="width: 38%;" class="progress-bar progress-bar-important" aria-valuenow="18" aria-valuemin="0" aria-valuemax="100"><span class="sr-only">38% Complete</span></span> </span> </a> </li> </ul> </li> </ul> </li> <!-- END TODO DROPDOWN --> <li class="droddown dropdown-separator"> <span class="separator"></span> </li> <!-- BEGIN INBOX DROPDOWN --> <li class="dropdown dropdown-extended dropdown-dark dropdown-inbox" id="header_inbox_bar"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true"> <span class="circle">3</span> <span class="corner"></span> </a> <ul class="dropdown-menu"> <li class="external"> <h3>You have <strong>7 New</strong> Messages</h3> <a href="javascript:;">view all</a> </li> <li> <ul class="dropdown-menu-list scroller" style="height: 275px;" data-handle-color="#637283"> <li> <a href="inbox.html?a=view"> <span class="photo"> <img src="../../assets/admin/layout3/img/avatar2.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Lisa Wong </span> <span class="time">Just Now </span> </span> <span class="message"> Vivamus sed auctor nibh congue nibh. auctor nibh auctor nibh... </span> </a> </li> <li> <a href="inbox.html?a=view"> <span class="photo"> <img src="../../assets/admin/layout3/img/avatar3.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Richard Doe </span> <span class="time">16 mins </span> </span> <span class="message"> Vivamus sed congue nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span> </a> </li> <li> <a href="inbox.html?a=view"> <span class="photo"> <img src="../../assets/admin/layout3/img/avatar1.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Bob Nilson </span> <span class="time">2 hrs </span> </span> <span class="message"> Vivamus sed nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span> </a> </li> <li> <a href="inbox.html?a=view"> <span class="photo"> <img src="../../assets/admin/layout3/img/avatar2.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Lisa Wong </span> <span class="time">40 mins </span> </span> <span class="message"> Vivamus sed auctor 40% nibh congue nibh... </span> </a> </li> <li> <a href="inbox.html?a=view"> <span class="photo"> <img src="../../assets/admin/layout3/img/avatar3.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Richard Doe </span> <span class="time">46 mins </span> </span> <span class="message"> Vivamus sed congue nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span> </a> </li> </ul> </li> </ul> </li> <!-- END INBOX DROPDOWN --> <!-- BEGIN USER LOGIN DROPDOWN --> <li class="dropdown dropdown-user dropdown-dark"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true"> <img alt="" class="img-circle" src="../../assets/admin/layout3/img/avatar9.jpg"> <span class="username username-hide-mobile">Nick</span> </a> <ul class="dropdown-menu dropdown-menu-default"> <li> <a href="extra_profile.html"> <i class="glyphicon glyphicon-user"></i> My Profile </a> </li> <li> <a href="page_calendar.html"> <i class="glyphicon glyphicon-calendar"></i> My Calendar </a> </li> <li> <a href="inbox.html"> <i class="glyphicon glyphicon-envelope"></i> My Inbox <span class="badge badge-danger"> 3 </span> </a> </li> <li> <a href="javascript:;"> <i class="glyphicon glyphicon-cloud"></i> My Tasks <span class="badge badge-success"> 7 </span> </a> </li> <li class="divider"> </li> <li> <a href="extra_lock.html"> <i class="glyphicon glyphicon-lock"></i> Lock Screen </a> </li> <li> <a href="login.html"> <i class="glyphicon glyphicon-log-out"></i> Log Out </a> </li> </ul> </li> <!-- END USER LOGIN DROPDOWN --> </ul> </div> <!-- END TOP NAVIGATION MENU --> </div> </div> <!-- END HEADER TOP --> <!-- BEGIN HEADER MENU --> <div class="page-header-menu"> <div class="container"> <!-- BEGIN HEADER SEARCH BOX --> <form class="search-form" action="extra_search.html" method="GET"> <div class="input-group"> <input type="text" class="form-control" placeholder="Search" name="query"> <span class="input-group-btn"> <a href="javascript:;" class="btn submit"><i class="icon-magnifier"></i></a> </span> </div> </form> <!-- END HEADER SEARCH BOX --> <!-- BEGIN MEGA MENU --> <!-- DOC: Apply "hor-menu-light" class after the "hor-menu" class below to have a horizontal menu with white background --> <!-- DOC: Remove data-hover="dropdown" and data-close-others="true" attributes below to disable the dropdown opening on mouse hover --> <div class="hor-menu "> <ul class="nav navbar-nav"> <li> <a href="index.html">Dashboard</a> </li> <li class="menu-dropdown mega-menu-dropdown active"> <a data-hover="megamenu-dropdown" data-close-others="true" data-toggle="dropdown" href="javascript:;" class="dropdown-toggle"> Features <i class="fa fa-angle-down"></i> </a> <ul class="dropdown-menu" style="min-width: 710px"> <li> <div class="mega-menu-content"> <div class="row"> <div class="col-md-4"> <ul class="mega-menu-submenu"> <li> <h3>eCommerce</h3> </li> <li> <a href="ecommerce_index.html" class="iconify"> <i class="glyphicon glyphicon-home"></i> Dashboard </a> </li> <li> <a href="ecommerce_orders.html" class="iconify"> <i class="glyphicon glyphicon-shopping-cart"></i> Manage Orders </a> </li> <li> <a href="ecommerce_orders_view.html" class="iconify"> <i class="glyphicon glyphicon-tag"></i> Order View </a> </li> <li> <a href="ecommerce_products.html" class="iconify"> <i class="glyphicon glyphicon-file"></i> Manage Products </a> </li> <li> <a href="ecommerce_products_edit.html" class="iconify"> <i class="glyphicon glyphicon-pencil"></i> Product Edit </a> </li> </ul> </div> <div class="col-md-4"> <ul class="mega-menu-submenu"> <li> <h3>Layouts</h3> </li> <li> <a href="layout_fluid.html" class="iconify"> <i class="glyphicon glyphicon-move"></i> Fluid Layout </a> </li> <li> <a href="layout_mega_menu_fixed.html" class="iconify"> <i class="glyphicon glyphicon-pushpin"></i> Fixed Mega Menu </a> </li> <li> <a href="layout_top_bar_fixed.html" class="iconify"> <i class="glyphicon glyphicon-stats"></i> Fixed Top Bar </a> </li> <li> <a href="layout_light_header.html" class="iconify"> <i class="glyphicon glyphicon-send"></i> Light Header Dropdowns </a> </li> <li> <a href="layout_blank_page.html" class="iconify"> <i class="glyphicon glyphicon-file"></i> Blank Page </a> </li> </ul> </div> <div class="col-md-4"> <ul class="mega-menu-submenu"> <li> <h3>More Layouts</h3> </li> <li> <a href="layout_click_dropdowns.html" class="iconify"> <i class="glyphicon glyphicon-comment"></i> Click vs. Hover Dropdowns </a> </li> <li> <a href="layout_fontawesome_icons.html" class="iconify"> <i class="glyphicon glyphicon-link"></i> Layout with Fontawesome </a> </li> <li class="active"> <a href="layout_glyphicons.html" class="iconify"> <i class="glyphicon glyphicon-asterisk"></i> Layout with Glyphicon </a> </li> <li> <a href="layout_language_bar.html" class="iconify"> <i class="glyphicon glyphicon-globe"></i> Language Switch Bar </a> </li> <li> <a href="layout_disabled_menu.html" class="iconify"> <i class="glyphicon glyphicon-lock"></i> Disabled Menu Links </a> </li> </ul> </div> </div> </div> </li> </ul> </li> <li class="menu-dropdown mega-menu-dropdown mega-menu-full "> <a data-hover="megamenu-dropdown" data-close-others="true" data-toggle="dropdown" href="javascript:;" class="dropdown-toggle"> UI Components <i class="fa fa-angle-down"></i> </a> <ul class="dropdown-menu"> <li> <div class="mega-menu-content"> <div class="row"> <div class="col-md-3"> <ul class="mega-menu-submenu"> <li> <h3>UI Components</h3> </li> <li> <a href="ui_general.html"> <i class="fa fa-angle-right"></i> General </a> </li> <li> <a href="ui_buttons.html"> <i class="fa fa-angle-right"></i> Buttons </a> </li> <li> <a href="ui_confirmations.html"> <i class="fa fa-angle-right"></i> Popover Confirmations </a> </li> <li> <a href="ui_icons.html"> <i class="fa fa-angle-right"></i> Font Icons </a> </li> <li> <a href="ui_colors.html"> <i class="fa fa-angle-right"></i> Flat UI Colors </a> </li> <li> <a href="ui_typography.html"> <i class="fa fa-angle-right"></i> Typography </a> </li> <li> <a href="ui_tabs_accordions_navs.html"> <i class="fa fa-angle-right"></i> Tabs, Accordions & Navs </a> </li> <li> <a href="ui_tree.html"> <i class="fa fa-angle-right"></i> Tree View </a> </li> <li> <a href="ui_page_progress_style_1.html"> <i class="fa fa-angle-right"></i> Page Progress Bar <span class="badge badge-roundless badge-warning">new</span></a> </li> <li> <a href="ui_blockui.html"> <i class="fa fa-angle-right"></i> Block UI </a> </li> <li> <a href="ui_notific8.html"> <i class="fa fa-angle-right"></i> Notific8 Notifications </a> </li> </ul> </div> <div class="col-md-3"> <ul class="mega-menu-submenu"> <li> <h3>More UI Components</h3> </li> <li> <a href="ui_toastr.html"> <i class="fa fa-angle-right"></i> Toastr Notifications </a> </li> <li> <a href="ui_alert_dialog_api.html"> <i class="fa fa-angle-right"></i> Alerts & Dialogs API <span class="badge badge-roundless badge-danger">new</span></a> </li> <li> <a href="ui_session_timeout.html"> <i class="fa fa-angle-right"></i> Session Timeout </a> </li> <li> <a href="ui_idle_timeout.html"> <i class="fa fa-angle-right"></i> User Idle Timeout </a> </li> <li> <a href="ui_modals.html"> <i class="fa fa-angle-right"></i> Modals </a> </li> <li> <a href="ui_extended_modals.html"> <i class="fa fa-angle-right"></i> Extended Modals </a> </li> <li> <a href="ui_tiles.html"> <i class="fa fa-angle-right"></i> Tiles </a> </li> <li> <a href="ui_datepaginator.html"> <i class="fa fa-angle-right"></i> Date Paginator </a> </li> <li> <a href="ui_nestable.html"> <i class="fa fa-angle-right"></i> Nestable List </a> </li> </ul> </div> <div class="col-md-3"> <ul class="mega-menu-submenu"> <li> <h3>Form Stuff</h3> </li> <li> <a href="form_controls.html"> <i class="fa fa-angle-right"></i> Form Controls </a> </li> <li> <a href="form_layouts.html"> <i class="fa fa-angle-right"></i> Form Layouts </a> </li> <li> <a href="form_editable.html"> <i class="fa fa-angle-right"></i> Form X-editable <span class="badge badge-roundless badge-success">new</span></a> </li> <li> <a href="form_wizard.html"> <i class="fa fa-angle-right"></i> Form Wizard </a> </li> <li> <a href="form_validation.html"> <i class="fa fa-angle-right"></i> Form Validation </a> </li> <li> <a href="form_image_crop.html"> <i class="fa fa-angle-right"></i> Image Cropping </a> </li> <li> <a href="form_fileupload.html"> <i class="fa fa-angle-right"></i> Multiple File Upload </a> </li> <li> <a href="form_dropzone.html"> <i class="fa fa-angle-right"></i> Dropzone File Upload </a> </li> </ul> </div> <div class="col-md-3"> <ul class="mega-menu-submenu"> <li> <h3>Form Components</h3> </li> <li> <a href="components_pickers.html"> <i class="fa fa-angle-right"></i> Pickers </a> </li> <li> <a href="components_dropdowns.html"> <i class="fa fa-angle-right"></i> Custom Dropdowns </a> </li> <li> <a href="components_form_tools.html"> <i class="fa fa-angle-right"></i> Form Tools </a> </li> <li> <a href="components_editors.html"> <i class="fa fa-angle-right"></i> Markdown & WYSIWYG Editors </a> </li> <li> <a href="components_ion_sliders.html"> <i class="fa fa-angle-right"></i> Ion Range Sliders </a> </li> <li> <a href="components_noui_sliders.html"> <i class="fa fa-angle-right"></i> NoUI Range Sliders </a> </li> <li> <a href="components_jqueryui_sliders.html"> <i class="fa fa-angle-right"></i> jQuery UI Sliders </a> </li> <li> <a href="components_knob_dials.html"> <i class="fa fa-angle-right"></i> Knob Circle Dials </a> </li> </ul> </div> </div> </div> </li> </ul> </li> <li class="menu-dropdown classic-menu-dropdown "> <a data-hover="megamenu-dropdown" data-close-others="true" data-toggle="dropdown" href="javascript:;"> Extra <i class="fa fa-angle-down"></i> </a> <ul class="dropdown-menu pull-left"> <li class=" dropdown-submenu"> <a href="javascript:;"> <i class="glyphicon glyphicon-list"></i> Data Tables </a> <ul class="dropdown-menu"> <li class=" "> <a href="table_basic.html"> Basic Datatables </a> </li> <li class=" "> <a href="table_responsive.html"> Responsive Datatables </a> </li> <li class=" "> <a href="table_managed.html"> Managed Datatables </a> </li> <li class=" "> <a href="table_editable.html"> Editable Datatables </a> </li> <li class=" "> <a href="table_advanced.html"> Advanced Datatables </a> </li> <li class=" "> <a href="table_ajax.html"> Ajax Datatables </a> </li> </ul> </li> <li class=" dropdown-submenu"> <a href="javascript:;"> <i class="glyphicon glyphicon-folder-open"></i> Portlets </a> <ul class="dropdown-menu"> <li class=" "> <a href="portlet_general.html"> General Portlets </a> </li> <li class=" "> <a href="portlet_general2.html"> New Portlets #1 <span class="badge badge-roundless badge-danger">new</span> </a> </li> <li class=" "> <a href="portlet_general3.html"> New Portlets #2 <span class="badge badge-roundless badge-danger">new</span> </a> </li> <li class=" "> <a href="portlet_ajax.html"> Ajax Portlets </a> </li> <li class=" "> <a href="portlet_draggable.html"> Draggable Portlets </a> </li> </ul> </li> <li class=" dropdown-submenu"> <a href="javascript:;"> <i class="glyphicon glyphicon-map-marker"></i> Maps </a> <ul class="dropdown-menu"> <li class=" "> <a href="maps_google.html"> Google Maps </a> </li> <li class=" "> <a href="maps_vector.html"> Vector Maps </a> </li> </ul> </li> <li class=" "> <a href="charts.html"> <i class="glyphicon glyphicon-stats"></i> Visual Charts </a> </li> <li class="divider"> </li> <li class=" dropdown-submenu"> <a href="javascript:;"> <i class="glyphicon glyphicon-leaf"></i> Multi Level </a> <ul class="dropdown-menu"> <li class=" "> <a href="javascript:;"> <i class="glyphicon glyphicon-cog"></i> Item 1 </a> </li> <li class=" "> <a href="javascript:;"> <i class="glyphicon glyphicon-user"></i> Item 2 </a> </li> <li class=" "> <a href="javascript:;"> <i class="glyphicon glyphicon-user"></i> Item 3 </a> </li> <li class=" dropdown-submenu"> <a href="javascript:;"> <i class="glyphicon glyphicon-folder-open"></i> Sub Items </a> <ul class="dropdown-menu"> <li class=" "> <a href="javascript:;"> Item 1 </a> </li> <li class=" "> <a href="javascript:;"> Item 2 </a> </li> <li class=" "> <a href="javascript:;"> Item 3 </a> </li> <li class=" "> <a href="javascript:;"> Item 4 </a> </li> </ul> </li> <li class=" "> <a href="javascript:;"> <i class="glyphicon glyphicon-share"></i> Item 4 </a> </li> <li class=" "> <a href="javascript:;"> <i class="glyphicon glyphicon-stats"></i> Item 5 </a> </li> </ul> </li> </ul> </li> <li class="menu-dropdown mega-menu-dropdown mega-menu-full "> <a data-hover="megamenu-dropdown" data-close-others="true" data-toggle="dropdown" href="javascript:;" class="dropdown-toggle"> Pages <i class="fa fa-angle-down"></i> </a> <ul class="dropdown-menu"> <li> <div class="mega-menu-content"> <div class="row"> <div class="col-md-3"> <ul class="mega-menu-submenu"> <li> <h3>User Pages</h3> </li> <li> <a href="page_timeline.html"> <i class="fa fa-angle-right"></i> New Timeline <span class="badge badge-warning">2</span> </a> </li> <li> <a href="page_todo.html"> <i class="fa fa-angle-right"></i> Todo & Tasks <span class="badge badge-danger">4</span></a> </li> <li> <a href="inbox.html"> <i class="fa fa-angle-right"></i> User Inbox <span class="badge badge-success">4</span></a> </li> <li> <a href="page_calendar.html"> <i class="fa fa-angle-right"></i> User Calendar <span class="badge badge-warning">14</span></a> </li> <li> <a href="extra_profile.html"> <i class="fa fa-angle-right"></i> User Profile </a> </li> <li> <a href="extra_lock.html"> <i class="fa fa-angle-right"></i> Lock Screen </a> </li> <li> <a href="login.html"> <i class="fa fa-angle-right"></i> Login Form 1 </a> </li> <li> <a href="login_soft.html"> <i class="fa fa-angle-right"></i> Login Form 2 </a> </li> </ul> </div> <div class="col-md-3"> <ul class="mega-menu-submenu"> <li> <h3>General Pages</h3> </li> <li> <a href="extra_faq.html"> <i class="fa fa-angle-right"></i> FAQ Page </a> </li> <li> <a href="page_portfolio.html"> <i class="fa fa-angle-right"></i> Portfolio </a> </li> <li> <a href="page_timeline.html"> <i class="fa fa-angle-right"></i> Old Timeline <span class="badge badge-info">4</span></a> </li> <li> <a href="page_coming_soon.html"> <i class="fa fa-angle-right"></i> Coming Soon </a> </li> <li> <a href="extra_invoice.html"> <i class="fa fa-angle-right"></i> Invoice </a> </li> <li> <a href="page_blog.html"> <i class="fa fa-angle-right"></i> Blog </a> </li> <li> <a href="page_blog_item.html"> <i class="fa fa-angle-right"></i> Blog Post </a> </li> </ul> </div> <div class="col-md-3"> <ul class="mega-menu-submenu"> <li> <h3>Custom Pages</h3> </li> <li> <a href="page_news.html"> <i class="fa fa-angle-right"></i> News <span class="badge badge-success">9</span></a> </li> <li> <a href="page_news_item.html"> <i class="fa fa-angle-right"></i> News View </a> </li> <li> <a href="page_about.html"> <i class="fa fa-angle-right"></i> About Us </a> </li> <li> <a href="page_contact.html"> <i class="fa fa-angle-right"></i> Contact Us </a> </li> <li> <a href="extra_search.html"> <i class="fa fa-angle-right"></i> Search Results </a> </li> <li> <a href="extra_pricing_table.html"> <i class="fa fa-angle-right"></i> Pricing Tables </a> </li> </ul> </div> <div class="col-md-3"> <ul class="mega-menu-submenu"> <li> <h3>Miscellaneous</h3> </li> <li> <a href="extra_404_option1.html"> <i class="fa fa-angle-right"></i> 404 Page Option 1 </a> </li> <li> <a href="extra_404_option2.html"> <i class="fa fa-angle-right"></i> 404 Page Option 2 </a> </li> <li> <a href="extra_404_option3.html"> <i class="fa fa-angle-right"></i> 404 Page Option 3 </a> </li> <li> <a href="extra_500_option1.html"> <i class="fa fa-angle-right"></i> 500 Page Option 1 </a> </li> <li> <a href="extra_500_option2.html"> <i class="fa fa-angle-right"></i> 500 Page Option 2 </a> </li> <li> <a href="email_newsletter.html" target="_blank"> <i class="fa fa-angle-right"></i> Newsletter Email Template </a> </li> <li> <a href="email_system.html" target="_blank"> <i class="fa fa-angle-right"></i> System Email Template </a> </li> </ul> </div> </div> </div> </li> </ul> </li> <!-- begin: mega menu with custom content --> <li class="menu-dropdown mega-menu-dropdown mega-menu-full hide"> <a data-hover="megamenu-dropdown" data-close-others="true" data-toggle="dropdown" href="javascript:;" class="dropdown-toggle"> Mega Menu <i class="fa fa-angle-down"></i> </a> <ul class="dropdown-menu"> <li> <div class="mega-menu-content"> <div class="row"> <div class="col-md-6"> <div id="accordion" class="panel-group"> <div class="panel panel-success"> <div class="panel-heading"> <h4 class="panel-title"> <a data-toggle="collapse" data-parent="#accordion" href="#collapseOne" class="collapsed"> Mega Menu Info #1 </a> </h4> </div> <div id="collapseOne" class="panel-collapse in"> <div class="panel-body"> <p> Metronic Mega Menu Works for fixed and responsive layout and has the facility to include (almost) any Bootstrap elements and jquery plugins. </p> <p> Duis mollis, est non commodo luctus, nisi erat mattis consectetur purus sit amet porttitor ligula. nisi erat mattis consectetur purus </p> </div> </div> </div> <div class="panel panel-danger"> <div class="panel-heading"> <h4 class="panel-title"> <a data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" class="collapsed"> Mega Menu Info #2 </a> </h4> </div> <div id="collapseTwo" class="panel-collapse collapse"> <div class="panel-body"> <p> Metronic Mega Menu Works for fixed and responsive layout and has the facility to include (almost) any Bootstrap elements and jquery plugins. </p> <p> Duis mollis, est non commodo luctus, nisi erat mattis consectetur purus sit amet porttitor ligula. nisi erat mattis consectetur purus </p> </div> </div> </div> <div class="panel panel-info"> <div class="panel-heading"> <h4 class="panel-title"> <a data-toggle="collapse" data-parent="#accordion" href="#collapseThree"> Mega Menu Info #3 </a> </h4> </div> <div id="collapseThree" class="panel-collapse collapse"> <div class="panel-body"> <p> Metronic Mega Menu Works for fixed and responsive layout and has the facility to include (almost) any Bootstrap elements and jquery plugins. </p> <p> Duis mollis, est non commodo luctus, nisi erat mattis consectetur purus sit amet porttitor ligula. nisi erat mattis consectetur purus </p> </div> </div> </div> </div> </div> <div class="col-md-6"> <div class="portlet light"> <div class="portlet-title"> <div class="caption"> <i class="fa fa-cogs font-red-sunglo"></i> <span class="caption-subject font-red-sunglo bold uppercase">Notes</span> <span class="caption-helper">notes samples...</span> </div> <div class="tools"> <a href="javascript:;" class="collapse"> </a> <a href="#portlet-config" data-toggle="modal" class="config"> </a> <a href="javascript:;" class="reload"> </a> <a href="javascript:;" class="remove"> </a> </div> </div> <div class="portlet-body"> <div class="note note-success"> <h4 class="block">Success! Some Header Goes Here</h4> <p> Duis mollis, est non commodo luctus, nisi erat mattis consectetur purus sit amet porttitor ligula, eget lacinia odio sem nec elit. Cras mattis consectetur purus sit amet fermentum. </p> </div> </div> </div> </div> </div> </div> </li> </ul> </li> <!-- end: mega menu with custom content --> </ul> </div> <!-- END MEGA MENU --> </div> </div> <!-- END HEADER MENU --> </div> <!-- END HEADER --> <!-- BEGIN PAGE CONTAINER --> <div class="page-container"> <!-- BEGIN PAGE HEAD --> <div class="page-head"> <div class="container"> <!-- BEGIN PAGE TITLE --> <div class="page-title"> <h1>Layout with Glyphicon <small>glyphicon samples</small></h1> </div> <!-- END PAGE TITLE --> <!-- BEGIN PAGE TOOLBAR --> <div class="page-toolbar"> <!-- BEGIN THEME PANEL --> <div class="btn-group btn-theme-panel"> <a href="javascript:;" class="btn dropdown-toggle" data-toggle="dropdown"> <i class="icon-settings"></i> </a> <div class="dropdown-menu theme-panel pull-right dropdown-custom hold-on-click"> <div class="row"> <div class="col-md-6 col-sm-6 col-xs-12"> <h3>THEME COLORS</h3> <div class="row"> <div class="col-md-6 col-sm-6 col-xs-12"> <ul class="theme-colors"> <li class="theme-color theme-color-default" data-theme="default"> <span class="theme-color-view"></span> <span class="theme-color-name">Default</span> </li> <li class="theme-color theme-color-blue-hoki" data-theme="blue-hoki"> <span class="theme-color-view"></span> <span class="theme-color-name">Blue Hoki</span> </li> <li class="theme-color theme-color-blue-steel" data-theme="blue-steel"> <span class="theme-color-view"></span> <span class="theme-color-name">Blue Steel</span> </li> <li class="theme-color theme-color-yellow-orange" data-theme="yellow-orange"> <span class="theme-color-view"></span> <span class="theme-color-name">Orange</span> </li> <li class="theme-color theme-color-yellow-crusta" data-theme="yellow-crusta"> <span class="theme-color-view"></span> <span class="theme-color-name">Yellow Crusta</span> </li> </ul> </div> <div class="col-md-6 col-sm-6 col-xs-12"> <ul class="theme-colors"> <li class="theme-color theme-color-green-haze" data-theme="green-haze"> <span class="theme-color-view"></span> <span class="theme-color-name">Green Haze</span> </li> <li class="theme-color theme-color-red-sunglo" data-theme="red-sunglo"> <span class="theme-color-view"></span> <span class="theme-color-name">Red Sunglo</span> </li> <li class="theme-color theme-color-red-intense" data-theme="red-intense"> <span class="theme-color-view"></span> <span class="theme-color-name">Red Intense</span> </li> <li class="theme-color theme-color-purple-plum" data-theme="purple-plum"> <span class="theme-color-view"></span> <span class="theme-color-name">Purple Plum</span> </li> <li class="theme-color theme-color-purple-studio" data-theme="purple-studio"> <span class="theme-color-view"></span> <span class="theme-color-name">Purple Studio</span> </li> </ul> </div> </div> </div> <div class="col-md-6 col-sm-6 col-xs-12 seperator"> <h3>LAYOUT</h3> <ul class="theme-settings"> <li> Theme Style <select class="theme-setting theme-setting-style form-control input-sm input-small input-inline tooltips" data-original-title="Change theme style" data-container="body" data-placement="left"> <option value="boxed" selected="selected">Square corners</option> <option value="rounded">Rounded corners</option> </select> </li> <li> Layout <select class="theme-setting theme-setting-layout form-control input-sm input-small input-inline tooltips" data-original-title="Change layout type" data-container="body" data-placement="left"> <option value="boxed" selected="selected">Boxed</option> <option value="fluid">Fluid</option> </select> </li> <li> Top Menu Style <select class="theme-setting theme-setting-top-menu-style form-control input-sm input-small input-inline tooltips" data-original-title="Change top menu dropdowns style" data-container="body" data-placement="left"> <option value="dark" selected="selected">Dark</option> <option value="light">Light</option> </select> </li> <li> Top Menu Mode <select class="theme-setting theme-setting-top-menu-mode form-control input-sm input-small input-inline tooltips" data-original-title="Enable fixed(sticky) top menu" data-container="body" data-placement="left"> <option value="fixed">Fixed</option> <option value="not-fixed" selected="selected">Not Fixed</option> </select> </li> <li> Mega Menu Style <select class="theme-setting theme-setting-mega-menu-style form-control input-sm input-small input-inline tooltips" data-original-title="Change mega menu dropdowns style" data-container="body" data-placement="left"> <option value="dark" selected="selected">Dark</option> <option value="light">Light</option> </select> </li> <li> Mega Menu Mode <select class="theme-setting theme-setting-mega-menu-mode form-control input-sm input-small input-inline tooltips" data-original-title="Enable fixed(sticky) mega menu" data-container="body" data-placement="left"> <option value="fixed" selected="selected">Fixed</option> <option value="not-fixed">Not Fixed</option> </select> </li> </ul> </div> </div> </div> </div> <!-- END THEME PANEL --> </div> <!-- END PAGE TOOLBAR --> </div> </div> <!-- END PAGE HEAD --> <!-- BEGIN PAGE CONTENT --> <div class="page-content"> <div class="container"> <!-- BEGIN SAMPLE PORTLET CONFIGURATION MODAL FORM--> <div class="modal fade" id="portlet-config" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true"></button> <h4 class="modal-title">Modal title</h4> </div> <div class="modal-body"> Widget settings form goes here </div> <div class="modal-footer"> <button type="button" class="btn blue">Save changes</button> <button type="button" class="btn default" data-dismiss="modal">Close</button> </div> </div> <!-- /.modal-content --> </div> <!-- /.modal-dialog --> </div> <!-- /.modal --> <!-- END SAMPLE PORTLET CONFIGURATION MODAL FORM--> <!-- BEGIN PAGE BREADCRUMB --> <ul class="page-breadcrumb breadcrumb"> <li> <a href="javascript:;">Home</a><i class="fa fa-circle"></i> </li> <li> <a href="javascript:;">Features</a><i class="fa fa-circle"></i> </li> <li class="active"> Layout with Glyphicon </li> </ul> <!-- END PAGE BREADCRUMB --> <!-- BEGIN PAGE CONTENT INNER --> <div class="portlet light"> <div class="portlet-body"> <div class="row"> <div class="col-md-12"> <p> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p> <p> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p> <p> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </p> </div> </div> </div> </div> <div class="row"> <div class="col-md-6 col-sm-6"> <!-- BEGIN REGIONAL STATS PORTLET--> <div class="portlet light "> <div class="portlet-title"> <div class="caption caption-md"> <i class="icon-bar-chart theme-font hide"></i> <span class="caption-subject theme-font bold uppercase">Simple Table</span> </div> <div class="actions"> <a class="btn btn-circle btn-icon-only btn-default" href="javascript:;"> <i class="glyphicon glyphicon-cloud"></i> </a> <a class="btn btn-circle btn-icon-only btn-default" href="javascript:;"> <i class="glyphicon glyphicon-wrench"></i> </a> <a class="btn btn-circle btn-icon-only btn-default" href="javascript:;"> <i class="glyphicon glyphicon-trash"></i> </a> </div> </div> <div class="portlet-body"> <table class="table table-hover"> <thead> <tr> <th> # </th> <th> First Name </th> <th> Last Name </th> <th class="hidden-480"> Username </th> <th> Status </th> </tr> </thead> <tbody> <tr> <td> 1 </td> <td> Mark </td> <td> Otto </td> <td class="hidden-480"> makr124 </td> <td> <span class="label label-success"> Approved </span> </td> </tr> <tr> <td> 2 </td> <td> Jacob </td> <td> Nilson </td> <td class="hidden-480"> jac123 </td> <td> <span class="label label-info"> Pending </span> </td> </tr> <tr> <td> 3 </td> <td> Larry </td> <td> Cooper </td> <td class="hidden-480"> lar </td> <td> <span class="label label-warning"> Suspended </span> </td> </tr> <tr> <td> 3 </td> <td> Sandy </td> <td> Lim </td> <td class="hidden-480"> sanlim </td> <td> <span class="label label-danger"> Blocked </span> </td> </tr> </tbody> </table> </div> </div> <!-- END REGIONAL STATS PORTLET--> </div> <div class="col-md-6 col-sm-6"> <!-- BEGIN REGIONAL STATS PORTLET--> <div class="portlet light "> <div class="portlet-title"> <div class="caption caption-md"> <i class="icon-bar-chart theme-font hide"></i> <span class="caption-subject theme-font bold uppercase">Bordered Table</span> </div> <div class="actions"> <a class="btn btn-circle btn-icon-only btn-default" href="javascript:;"> <i class="glyphicon glyphicon-cloud"></i> </a> <a class="btn btn-circle btn-icon-only btn-default" href="javascript:;"> <i class="glyphicon glyphicon-wrench"></i> </a> <a class="btn btn-circle btn-icon-only btn-default" href="javascript:;"> <i class="glyphicon glyphicon-trash"></i> </a> </div> </div> <div class="portlet-body"> <table class="table table-bordered table-hover"> <thead> <tr> <th> # </th> <th> First Name </th> <th> Last Name </th> <th class="hidden-480"> Username </th> <th> Status </th> </tr> </thead> <tbody> <tr> <td> 1 </td> <td> Mark </td> <td> Otto </td> <td class="hidden-480"> makr124 </td> <td> <span class="label label-success"> Approved </span> </td> </tr> <tr> <td> 2 </td> <td> Jacob </td> <td> Nilson </td> <td class="hidden-480"> jac123 </td> <td> <span class="label label-info"> Pending </span> </td> </tr> <tr> <td> 3 </td> <td> Larry </td> <td> Cooper </td> <td class="hidden-480"> lar </td> <td> <span class="label label-warning"> Suspended </span> </td> </tr> <tr> <td> 3 </td> <td> Sandy </td> <td> Lim </td> <td class="hidden-480"> sanlim </td> <td> <span class="label label-danger"> Blocked </span> </td> </tr> </tbody> </table> </div> </div> <!-- END REGIONAL STATS PORTLET--> </div> </div> <!-- END PAGE CONTENT INNER --> </div> </div> <!-- END PAGE CONTENT --> </div> <!-- END PAGE CONTAINER --> <!-- BEGIN PRE-FOOTER --> <div class="page-prefooter"> <div class="container"> <div class="row"> <div class="col-md-3 col-sm-6 col-xs-12 footer-block"> <h2>About</h2> <p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam dolore. </p> </div> <div class="col-md-3 col-sm-6 col-xs12 footer-block"> <h2>Subscribe Email</h2> <div class="subscribe-form"> <form action="javascript:;"> <div class="input-group"> <input type="text" placeholder="mail@email.com" class="form-control"> <span class="input-group-btn"> <button class="btn" type="submit">Submit</button> </span> </div> </form> </div> </div> <div class="col-md-3 col-sm-6 col-xs-12 footer-block"> <h2>Follow Us On</h2> <ul class="social-icons"> <li> <a href="javascript:;" data-original-title="rss" class="rss"></a> </li> <li> <a href="javascript:;" data-original-title="facebook" class="facebook"></a> </li> <li> <a href="javascript:;" data-original-title="twitter" class="twitter"></a> </li> <li> <a href="javascript:;" data-original-title="googleplus" class="googleplus"></a> </li> <li> <a href="javascript:;" data-original-title="linkedin" class="linkedin"></a> </li> <li> <a href="javascript:;" data-original-title="youtube" class="youtube"></a> </li> <li> <a href="javascript:;" data-original-title="vimeo" class="vimeo"></a> </li> </ul> </div> <div class="col-md-3 col-sm-6 col-xs-12 footer-block"> <h2>Contacts</h2> <address class="margin-bottom-40"> Phone: 800 123 3456<br> Email: <a href="mailto:info@metronic.com">info@metronic.com</a> </address> </div> </div> </div> </div> <!-- END PRE-FOOTER --> <!-- BEGIN FOOTER --> <div class="page-footer"> <div class="container"> 2014 &copy; Metronic. All Rights Reserved. </div> </div> <div class="scroll-to-top"> <i class="icon-arrow-up"></i> </div> <!-- END FOOTER --> <!-- BEGIN JAVASCRIPTS(Load javascripts at bottom, this will reduce page load time) --> <!-- BEGIN CORE PLUGINS --> <!--[if lt IE 9]> <script src="../../assets/global/plugins/respond.min.js"></script> <script src="../../assets/global/plugins/excanvas.min.js"></script> <![endif]--> <script src="../../assets/global/plugins/jquery.min.js" type="text/javascript"></script> <script src="../../assets/global/plugins/jquery-migrate.min.js" type="text/javascript"></script> <!-- IMPORTANT! Load jquery-ui.min.js before bootstrap.min.js to fix bootstrap tooltip conflict with jquery ui tooltip --> <script src="../../assets/global/plugins/jquery-ui/jquery-ui.min.js" type="text/javascript"></script> <script src="../../assets/global/plugins/bootstrap/js/bootstrap.min.js" type="text/javascript"></script> <script src="../../assets/global/plugins/bootstrap-hover-dropdown/bootstrap-hover-dropdown.min.js" type="text/javascript"></script> <script src="../../assets/global/plugins/jquery-slimscroll/jquery.slimscroll.min.js" type="text/javascript"></script> <script src="../../assets/global/plugins/jquery.blockui.min.js" type="text/javascript"></script> <script src="../../assets/global/plugins/jquery.cokie.min.js" type="text/javascript"></script> <script src="../../assets/global/plugins/uniform/jquery.uniform.min.js" type="text/javascript"></script> <!-- END CORE PLUGINS --> <script src="../../assets/global/scripts/metronic.js" type="text/javascript"></script> <script src="../../assets/admin/layout3/scripts/layout.js" type="text/javascript"></script> <script src="../../assets/admin/layout3/scripts/demo.js" type="text/javascript"></script> <script> jQuery(document).ready(function() { Metronic.init(); // init metronic core components Layout.init(); // init current layout Demo.init(); // init demo features }); </script> <!-- END JAVASCRIPTS --> </body> <!-- END BODY --> </html>
doc/classes/OpenID/TrustRoot.src/M000275.html
agoragames/ruby-openid-oauth-hybrid
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>get_allowed_return_urls (OpenID::TrustRoot)</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" /> </head> <body class="standalone-code"> <pre><span class="ruby-comment cmt"># File lib/openid/trustroot.rb, line 96</span> <span class="ruby-keyword kw">def</span> <span class="ruby-constant">TrustRoot</span>.<span class="ruby-identifier">get_allowed_return_urls</span>(<span class="ruby-identifier">relying_party_url</span>) <span class="ruby-identifier">rp_url_after_redirects</span>, <span class="ruby-identifier">return_to_urls</span> = <span class="ruby-identifier">services</span>.<span class="ruby-identifier">get_service_endpoints</span>( <span class="ruby-identifier">relying_party_url</span>, <span class="ruby-identifier">_extract_return_url</span>) <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">rp_url_after_redirects</span> <span class="ruby-operator">!=</span> <span class="ruby-identifier">relying_party_url</span> <span class="ruby-comment cmt"># Verification caused a redirect</span> <span class="ruby-identifier">raise</span> <span class="ruby-constant">RealmVerificationRedirected</span>.<span class="ruby-identifier">new</span>( <span class="ruby-identifier">relying_party_url</span>, <span class="ruby-identifier">rp_url_after_redirects</span>) <span class="ruby-keyword kw">end</span> <span class="ruby-keyword kw">return</span> <span class="ruby-identifier">return_to_urls</span> <span class="ruby-keyword kw">end</span></pre> </body> </html>
poi-3.9/docs/apidocs/org/apache/poi/hpsf/HPSFException.html
brenthand/Panda
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_29) on Mon Nov 26 17:20:42 MSK 2012 --> <TITLE> HPSFException (POI API Documentation) </TITLE> <META NAME="date" CONTENT="2012-11-26"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="HPSFException (POI API Documentation)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/HPSFException.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../org/apache/poi/hpsf/DocumentSummaryInformation.html" title="class in org.apache.poi.hpsf"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../org/apache/poi/hpsf/HPSFRuntimeException.html" title="class in org.apache.poi.hpsf"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?org/apache/poi/hpsf/HPSFException.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="HPSFException.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> org.apache.poi.hpsf</FONT> <BR> Class HPSFException</H2> <PRE> java.lang.Object <IMG SRC="../../../../resources/inherit.gif" ALT="extended by ">java.lang.Throwable <IMG SRC="../../../../resources/inherit.gif" ALT="extended by ">java.lang.Exception <IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>org.apache.poi.hpsf.HPSFException</B> </PRE> <DL> <DT><B>All Implemented Interfaces:</B> <DD>java.io.Serializable</DD> </DL> <DL> <DT><B>Direct Known Subclasses:</B> <DD><A HREF="../../../../org/apache/poi/hpsf/MarkUnsupportedException.html" title="class in org.apache.poi.hpsf">MarkUnsupportedException</A>, <A HREF="../../../../org/apache/poi/hpsf/NoPropertySetStreamException.html" title="class in org.apache.poi.hpsf">NoPropertySetStreamException</A>, <A HREF="../../../../org/apache/poi/hpsf/UnexpectedPropertySetTypeException.html" title="class in org.apache.poi.hpsf">UnexpectedPropertySetTypeException</A>, <A HREF="../../../../org/apache/poi/hpsf/VariantTypeException.html" title="class in org.apache.poi.hpsf">VariantTypeException</A></DD> </DL> <HR> <DL> <DT><PRE>public class <B>HPSFException</B><DT>extends java.lang.Exception</DL> </PRE> <P> <p>This exception is the superclass of all other checked exceptions thrown in this package. It supports a nested "reason" throwable, i.e. an exception that caused this one to be thrown.</p> <P> <P> <DL> <DT><B>Author:</B></DT> <DD>Rainer Klute <a href="mailto:klute@rainer-klute.de">&lt;klute@rainer-klute.de&gt;</a></DD> <DT><B>See Also:</B><DD><A HREF="../../../../serialized-form.html#org.apache.poi.hpsf.HPSFException">Serialized Form</A></DL> <HR> <P> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <A NAME="constructor_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Constructor Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../org/apache/poi/hpsf/HPSFException.html#HPSFException()">HPSFException</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Creates an <A HREF="../../../../org/apache/poi/hpsf/HPSFException.html" title="class in org.apache.poi.hpsf"><CODE>HPSFException</CODE></A>.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../org/apache/poi/hpsf/HPSFException.html#HPSFException(java.lang.String)">HPSFException</A></B>(java.lang.String&nbsp;msg)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Creates an <A HREF="../../../../org/apache/poi/hpsf/HPSFException.html" title="class in org.apache.poi.hpsf"><CODE>HPSFException</CODE></A> with a message string.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../org/apache/poi/hpsf/HPSFException.html#HPSFException(java.lang.String, java.lang.Throwable)">HPSFException</A></B>(java.lang.String&nbsp;msg, java.lang.Throwable&nbsp;reason)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Creates an <A HREF="../../../../org/apache/poi/hpsf/HPSFException.html" title="class in org.apache.poi.hpsf"><CODE>HPSFException</CODE></A> with a message string and a reason.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../org/apache/poi/hpsf/HPSFException.html#HPSFException(java.lang.Throwable)">HPSFException</A></B>(java.lang.Throwable&nbsp;reason)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Creates a new <A HREF="../../../../org/apache/poi/hpsf/HPSFException.html" title="class in org.apache.poi.hpsf"><CODE>HPSFException</CODE></A> with a reason.</TD> </TR> </TABLE> &nbsp; <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;java.lang.Throwable</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/poi/hpsf/HPSFException.html#getReason()">getReason</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the <CODE>Throwable</CODE> that caused this exception to be thrown or <code>null</code> if there was no such <CODE>Throwable</CODE>.</TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Throwable"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Throwable</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString</CODE></TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Constructor Detail</B></FONT></TH> </TR> </TABLE> <A NAME="HPSFException()"><!-- --></A><H3> HPSFException</H3> <PRE> public <B>HPSFException</B>()</PRE> <DL> <DD><p>Creates an <A HREF="../../../../org/apache/poi/hpsf/HPSFException.html" title="class in org.apache.poi.hpsf"><CODE>HPSFException</CODE></A>.</p> <P> </DL> <HR> <A NAME="HPSFException(java.lang.String)"><!-- --></A><H3> HPSFException</H3> <PRE> public <B>HPSFException</B>(java.lang.String&nbsp;msg)</PRE> <DL> <DD><p>Creates an <A HREF="../../../../org/apache/poi/hpsf/HPSFException.html" title="class in org.apache.poi.hpsf"><CODE>HPSFException</CODE></A> with a message string.</p> <P> <DL> <DT><B>Parameters:</B><DD><CODE>msg</CODE> - The message string.</DL> </DL> <HR> <A NAME="HPSFException(java.lang.Throwable)"><!-- --></A><H3> HPSFException</H3> <PRE> public <B>HPSFException</B>(java.lang.Throwable&nbsp;reason)</PRE> <DL> <DD><p>Creates a new <A HREF="../../../../org/apache/poi/hpsf/HPSFException.html" title="class in org.apache.poi.hpsf"><CODE>HPSFException</CODE></A> with a reason.</p> <P> <DL> <DT><B>Parameters:</B><DD><CODE>reason</CODE> - The reason, i.e. a throwable that indirectly caused this exception.</DL> </DL> <HR> <A NAME="HPSFException(java.lang.String, java.lang.Throwable)"><!-- --></A><H3> HPSFException</H3> <PRE> public <B>HPSFException</B>(java.lang.String&nbsp;msg, java.lang.Throwable&nbsp;reason)</PRE> <DL> <DD><p>Creates an <A HREF="../../../../org/apache/poi/hpsf/HPSFException.html" title="class in org.apache.poi.hpsf"><CODE>HPSFException</CODE></A> with a message string and a reason.</p> <P> <DL> <DT><B>Parameters:</B><DD><CODE>msg</CODE> - The message string.<DD><CODE>reason</CODE> - The reason, i.e. a throwable that indirectly caused this exception.</DL> </DL> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Method Detail</B></FONT></TH> </TR> </TABLE> <A NAME="getReason()"><!-- --></A><H3> getReason</H3> <PRE> public java.lang.Throwable <B>getReason</B>()</PRE> <DL> <DD><p>Returns the <CODE>Throwable</CODE> that caused this exception to be thrown or <code>null</code> if there was no such <CODE>Throwable</CODE>.</p> <P> <DD><DL> <DT><B>Returns:</B><DD>The reason</DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/HPSFException.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../org/apache/poi/hpsf/DocumentSummaryInformation.html" title="class in org.apache.poi.hpsf"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../org/apache/poi/hpsf/HPSFRuntimeException.html" title="class in org.apache.poi.hpsf"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?org/apache/poi/hpsf/HPSFException.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="HPSFException.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <i>Copyright 2012 The Apache Software Foundation or its licensors, as applicable.</i> </BODY> </HTML>
JGDMS/src/site/resources/old-static-site/doc/internals/org/apache/river/discovery/x500/sha1withrsa/class-use/Constants.html
pfirmstone/JGDMS
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_60) on Mon Mar 28 17:12:18 AEST 2016 --> <title>Uses of Class org.apache.river.discovery.x500.sha1withrsa.Constants (River-Internet vtrunk API Documentation (internals))</title> <meta name="date" content="2016-03-28"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.river.discovery.x500.sha1withrsa.Constants (River-Internet vtrunk API Documentation (internals))"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../org/apache/river/discovery/x500/sha1withrsa/Constants.html" title="class in org.apache.river.discovery.x500.sha1withrsa">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../index.html?org/apache/river/discovery/x500/sha1withrsa/class-use/Constants.html" target="_top">Frames</a></li> <li><a href="Constants.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.apache.river.discovery.x500.sha1withrsa.Constants" class="title">Uses of Class<br>org.apache.river.discovery.x500.sha1withrsa.Constants</h2> </div> <div class="classUseContainer">No usage of org.apache.river.discovery.x500.sha1withrsa.Constants</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../org/apache/river/discovery/x500/sha1withrsa/Constants.html" title="class in org.apache.river.discovery.x500.sha1withrsa">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../index.html?org/apache/river/discovery/x500/sha1withrsa/class-use/Constants.html" target="_top">Frames</a></li> <li><a href="Constants.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright 2007-2013, multiple authors.<br>Licensed under the <a href=http://www.apache.org/licenses/LICENSE-2.0 target=child >Apache License, Version 2.0</a>, see the <a href=../../../../../../../doc-files/NOTICE target=child >NOTICE</a> file for attributions.</small></p> </body> </html>
Documentation/html/Classes/SimpleDBDomainMetadataResponseUnmarshaller.html
abovelabs/aws-ios-sdk
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="html/html; charset=utf-8" /> <title>SimpleDBDomainMetadataResponseUnmarshaller Class Reference</title> <meta id="xcode-display" name="xcode-display" content="render"/> <meta name="viewport" content="width=550" /> <link rel="stylesheet" type="text/css" href="../css/styles.css" media="all" /> <link rel="stylesheet" type="text/css" media="print" href="../css/stylesPrint.css" /> <meta name="generator" content="appledoc 2.0.5 (build 789)" /> </head> <body> <header id="top_header"> <div id="library" class="hideInXcode"> <h1><a id="libraryTitle" href="../index.html">AWS SDK for iOS v1.4.3 </a></h1> <a id="developerHome" href="../index.html">Amazon Web Services, Inc.</a> </div> <div id="title" role="banner"> <h1 class="hideInXcode">SimpleDBDomainMetadataResponseUnmarshaller Class Reference</h1> </div> <ul id="headerButtons" role="toolbar"> <li id="toc_button"> <button aria-label="Show Table of Contents" role="checkbox" class="open" id="table_of_contents"><span class="disclosure"></span>Table of Contents</button> </li> <li id="jumpto_button" role="navigation"> <select id="jumpTo"> <option value="top">Jump To&#133;</option> <option value="overview">Overview</option> </select> </li> </ul> </header> <nav id="tocContainer" class="isShowingTOC"> <ul id="toc" role="tree"> <li role="treeitem"><span class="nodisclosure"></span><span class="sectionName"><a href="#overview">Overview</a></span></li> </ul> </nav> <article> <div id="contents" class="isShowingTOC" role="main"> <a title="SimpleDBDomainMetadataResponseUnmarshaller Class Reference" name="top"></a> <div class="main-navigation navigation-top"> <ul> <li><a href="../index.html">Index</a></li> <li><a href="../hierarchy.html">Hierarchy</a></li> </ul> </div> <div id="header"> <div class="section-header"> <h1 class="title title-header">SimpleDBDomainMetadataResponseUnmarshaller Class Reference</h1> </div> </div> <div id="container"> <div class="section section-specification"><table cellspacing="0"><tbody> <tr> <td class="specification-title">Inherits from</td> <td class="specification-value">SimpleDBResponseUnmarshaller : AmazonServiceResponseUnmarshaller : <a href="../Classes/AmazonUnmarshallerXMLParserDelegate.html">AmazonUnmarshallerXMLParserDelegate</a> : NSObject</td> </tr><tr> <td class="specification-title">Declared in</td> <td class="specification-value">SimpleDBDomainMetadataResponseUnmarshaller.h</td> </tr> </tbody></table></div> <div class="section section-overview"> <a title="Overview" name="overview"></a> <h2 class="subtitle subtitle-overview">Overview</h2> <p>Domain Metadata Result Unmarshaller</p> </div> </div> <div class="main-navigation navigation-bottom"> <ul> <li><a href="../index.html">Index</a></li> <li><a href="../hierarchy.html">Hierarchy</a></li> </ul> </div> <div id="footer"><script src="/urchin.js" type="text/javascript"></script><script type="text/javascript">urchinTracker();</script> <hr /> <div class="footer-copyright"> <p><span class="copyright">&copy; 2012 Amazon Web Services, Inc.. All rights reserved. (Last updated: 2012-10-05)</span><br /> <span class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.0.5 (build 789)</a>.</span></p> </div> </div> </div> </article> <script type="text/javascript"> function jumpToChange() { window.location.hash = this.options[this.selectedIndex].value; } function toggleTOC() { var contents = document.getElementById('contents'); var tocContainer = document.getElementById('tocContainer'); if (this.getAttribute('class') == 'open') { this.setAttribute('class', ''); contents.setAttribute('class', ''); tocContainer.setAttribute('class', ''); window.name = "hideTOC"; } else { this.setAttribute('class', 'open'); contents.setAttribute('class', 'isShowingTOC'); tocContainer.setAttribute('class', 'isShowingTOC'); window.name = ""; } return false; } function toggleTOCEntryChildren(e) { e.stopPropagation(); var currentClass = this.getAttribute('class'); if (currentClass == 'children') { this.setAttribute('class', 'children open'); } else if (currentClass == 'children open') { this.setAttribute('class', 'children'); } return false; } function tocEntryClick(e) { e.stopPropagation(); return true; } function init() { var selectElement = document.getElementById('jumpTo'); selectElement.addEventListener('change', jumpToChange, false); var tocButton = document.getElementById('table_of_contents'); tocButton.addEventListener('click', toggleTOC, false); var taskTreeItem = document.getElementById('task_treeitem'); if (taskTreeItem.getElementsByTagName('li').length > 0) { taskTreeItem.setAttribute('class', 'children'); taskTreeItem.firstChild.setAttribute('class', 'disclosure'); } var tocList = document.getElementById('toc'); var tocEntries = tocList.getElementsByTagName('li'); for (var i = 0; i < tocEntries.length; i++) { tocEntries[i].addEventListener('click', toggleTOCEntryChildren, false); } var tocLinks = tocList.getElementsByTagName('a'); for (var i = 0; i < tocLinks.length; i++) { tocLinks[i].addEventListener('click', tocEntryClick, false); } if (window.name == "hideTOC") { toggleTOC.call(tocButton); } } window.onload = init; // If showing in Xcode, hide the TOC and Header if (navigator.userAgent.match(/xcode/i)) { document.getElementById("contents").className = "hideInXcode" document.getElementById("tocContainer").className = "hideInXcode" document.getElementById("top_header").className = "hideInXcode" } </script> </body> </html>
security-admin/src/main/webapp/templates/common/breadcrumbs.html
gzsombor/ranger
{{!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --}} {{! { "name" : "BreadCrumb " } }} <ul class="breadcrumb-flat"> {{#each breadcrumb}} <li> <a href="{{./this.href}}"><p class="trim-containt-breadcrumb" title="{{tt ./this.text}}"> {{tt ./this.text}}</p></a> </li> {{/each}} </ul>
share/doc/hadoop/api/org/apache/hadoop/io/serializer/package-use.html
jimmypw/hadoop
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_45) on Fri Sep 05 23:33:07 UTC 2014 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Package org.apache.hadoop.io.serializer (Apache Hadoop Main 2.5.1 API) </TITLE> <META NAME="date" CONTENT="2014-09-05"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Package org.apache.hadoop.io.serializer (Apache Hadoop Main 2.5.1 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/hadoop/io/serializer/package-use.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Package<br>org.apache.hadoop.io.serializer</B></H2> </CENTER> No usage of org.apache.hadoop.io.serializer <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/hadoop/io/serializer/package-use.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 2014 <a href="http://www.apache.org">Apache Software Foundation</a>. All Rights Reserved. </BODY> </HTML>
doc/1.0.0/libguac/user-types_8h.html
mike-jumper/incubator-guacamole-website
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.14"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>libguac: guacamole/user-types.h File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">libguac &#160;<span id="projectnumber">1.0.0</span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.14 --> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ var searchBox = new SearchBox("searchBox", "search",false,'Search'); /* @license-end */ </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); /* @license-end */</script> <div id="main-nav"></div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="dir_6bb9fad85c98b48a11165f494b9f53ce.html">guacamole</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">user-types.h File Reference</div> </div> </div><!--header--> <div class="contents"> <p>Type definitions related to the <a class="el" href="structguac__user.html" title="Representation of a physical connection within a larger logical connection which may be shared...">guac_user</a> object. <a href="#details">More...</a></p> <p><a href="user-types_8h_source.html">Go to the source code of this file.</a></p> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>Type definitions related to the <a class="el" href="structguac__user.html" title="Representation of a physical connection within a larger logical connection which may be shared...">guac_user</a> object. </p> </div></div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.14 </small></address> <!-- Google Analytics --> <script type="text/javascript"> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-75289145-1', 'auto'); ga('send', 'pageview'); </script> </body> </html>
javadoc/com/google/gxp/js/package-summary.html
xenomachina/gxp
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0) on Fri Dec 12 19:09:41 EST 2008 --> <TITLE> com.google.gxp.js (Google XML Pages - snapshot (BETA)) </TITLE> <META NAME="date" CONTENT="2008-12-12"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="com.google.gxp.js (Google XML Pages - snapshot (BETA))"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../com/google/gxp/html/package-summary.html"><B>PREV PACKAGE</B></A>&nbsp; &nbsp;<A HREF="../../../../com/google/gxp/rss/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?com/google/gxp/js/package-summary.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <H2> Package com.google.gxp.js </H2> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Interface Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../com/google/gxp/js/JavascriptClosure.html" title="interface in com.google.gxp.js">JavascriptClosure</A></B></TD> <TD>Closure for content-type: text/javascript</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../com/google/gxp/js/JavascriptAppender.html" title="class in com.google.gxp.js">JavascriptAppender</A></B></TD> <TD>Appender class for text/javascript</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../com/google/gxp/js/JavascriptClosures.html" title="class in com.google.gxp.js">JavascriptClosures</A></B></TD> <TD>Creates Javascript specific GXP Closures</TD> </TR> </TABLE> &nbsp; <P> <DL> </DL> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../com/google/gxp/html/package-summary.html"><B>PREV PACKAGE</B></A>&nbsp; &nbsp;<A HREF="../../../../com/google/gxp/rss/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?com/google/gxp/js/package-summary.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
google1e5cf6a3c0c10bde.html
pcinat/MessageQueueRTDServer
google-site-verification: google1e5cf6a3c0c10bde.html
JGDMS/src/site/resources/old-static-site/doc/api/net/jini/core/constraint/class-use/ConnectionRelativeTime.html
pfirmstone/JGDMS
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_60) on Mon Mar 28 17:57:45 AEST 2016 --> <title>Uses of Class net.jini.core.constraint.ConnectionRelativeTime (River-Internet vtrunk API Documentation)</title> <meta name="date" content="2016-03-28"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class net.jini.core.constraint.ConnectionRelativeTime (River-Internet vtrunk API Documentation)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../net/jini/core/constraint/ConnectionRelativeTime.html" title="class in net.jini.core.constraint">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?net/jini/core/constraint/class-use/ConnectionRelativeTime.html" target="_top">Frames</a></li> <li><a href="ConnectionRelativeTime.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class net.jini.core.constraint.ConnectionRelativeTime" class="title">Uses of Class<br>net.jini.core.constraint.ConnectionRelativeTime</h2> </div> <div class="classUseContainer">No usage of net.jini.core.constraint.ConnectionRelativeTime</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../net/jini/core/constraint/ConnectionRelativeTime.html" title="class in net.jini.core.constraint">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?net/jini/core/constraint/class-use/ConnectionRelativeTime.html" target="_top">Frames</a></li> <li><a href="ConnectionRelativeTime.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright 2007-2013, multiple authors.<br>Licensed under the <a href=http://www.apache.org/licenses/LICENSE-2.0 target=child >Apache License, Version 2.0</a>, see the <a href=../../../../../doc-files/NOTICE target=child >NOTICE</a> file for attributions.</small></p> </body> </html>
challenges/single/XPATHInjection/static/solution.html
shivamdixit/WebGoatPHP
<h3>Solution</h3> <p>XPath injection is similar to SQL Injection. Input is not validated and used to create a XPath query. Here you can see how the XPATH query is built:</p> <p><em>$employees = $xml->xpath("/employees/employee[loginID='$_POST[username]' and passwd='$_POST[pass]']");</em></p> <p>Injecting <em>Smith' or 1=1 or 'a'='a</em> will log you on as the first user defined in the system. Password is a required field, so there you can enter whatever you want.</p> <p>This is how the server interprets it:<br> "/employees/employee[ ( loginID='Smith' or 1=1 ) OR ( 'a'='a' and passwd='password' ) ]"</p> <img src="static/sol1.png" class="img-responsive" alt="XPATH Injection">
docs/javadoc/1.9/org/codehaus/jackson/map/deser/class-use/FromStringDeserializer.html
FasterXML/jackson-core
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_10-ea) on Sun Jul 14 20:03:35 PDT 2013 --> <title>Uses of Class org.codehaus.jackson.map.deser.FromStringDeserializer (Jackson JSON Processor)</title> <meta name="date" content="2013-07-14"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.codehaus.jackson.map.deser.FromStringDeserializer (Jackson JSON Processor)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/codehaus/jackson/map/deser/FromStringDeserializer.html" title="class in org.codehaus.jackson.map.deser">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/codehaus/jackson/map/deser/class-use/FromStringDeserializer.html" target="_top">Frames</a></li> <li><a href="FromStringDeserializer.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.codehaus.jackson.map.deser.FromStringDeserializer" class="title">Uses of Class<br>org.codehaus.jackson.map.deser.FromStringDeserializer</h2> </div> <div class="classUseContainer">No usage of org.codehaus.jackson.map.deser.FromStringDeserializer</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/codehaus/jackson/map/deser/FromStringDeserializer.html" title="class in org.codehaus.jackson.map.deser">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/codehaus/jackson/map/deser/class-use/FromStringDeserializer.html" target="_top">Frames</a></li> <li><a href="FromStringDeserializer.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
docs/build/html/genindex.html
casa1217/readthedocs
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Index &mdash; ISB Cancer Genomics Cloud 1.0.0 documentation</title> <link rel="stylesheet" href="_static/classic.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: './', VERSION: '1.0.0', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true }; </script> <script type="text/javascript" src="_static/jquery.js"></script> <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> <link rel="top" title="ISB Cancer Genomics Cloud 1.0.0 documentation" href="index.html" /> </head> <body role="document"> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="#" title="General Index" accesskey="I">index</a></li> <li class="nav-item nav-item-0"><a href="index.html">ISB Cancer Genomics Cloud 1.0.0 documentation</a> &raquo;</li> </ul> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body" role="main"> <h1 id="index">Index</h1> <div class="genindex-jumpbox"> </div> </div> </div> </div> <div class="sphinxsidebar" role="navigation" aria-label="main navigation"> <div class="sphinxsidebarwrapper"> <div id="searchbox" style="display: none" role="search"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> <p class="searchtip" style="font-size: 90%"> Enter search terms or a module, class or function name. </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> </div> </div> <div class="clearer"></div> </div> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="#" title="General Index" >index</a></li> <li class="nav-item nav-item-0"><a href="index.html">ISB Cancer Genomics Cloud 1.0.0 documentation</a> &raquo;</li> </ul> </div> <div class="footer" role="contentinfo"> &copy; Copyright 2015, the ISB-CGC team. Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.3.1. </div> </body> </html>
tpl/User/default/common/wxq/source/modules/userapi/template/form.html
royalwang/saivi
<div class="alert alert-block alert-new"> <a class="close" data-dismiss="alert">×</a> <h4 class="alert-heading">添加第三方接口</h4> <table> <tr> <th>接口地址</th> <td> <div><input type="text" id="" class="span7" placeholder="" name="apiurl" value="{$row['apiurl']}"> <div class="help-block" style="margin-top:10px;"><select name="apilocal"><option value="0">请选择本地文件</option>{loop $apis $file}<option {if $row['apilocal'] == $file} selected="selected"{/if} value="{$file}">{$file}</option>{/loop}</select> <ol style="margin-top:10px;"> <li>接口地址为可以访问的URL地址,通过此地址返回回复数据。</li> <li>添加此模块的规则后,只针对于单个关键字有效,如果需要全部路由给接口处理,则修改该模块的优先级顺序。</li> <li>接口地址支持远程URL和本地文件,本地文件存放在模块文件夹内(/source/modules/userapi/api)下。</li> <li><a href="http://bbs.we7.cc/forum.php?mod=viewthread&tid=39" target="_blank">查看“自定义接口回复”文档</a></li> </ol> </div> </td> <tr> <th>默认回复文字</th> <td> <input type="text" id="" class="span7" placeholder="" name="default-text" value="{$row['default_text']}"> <div class="help-block">当接口无回复时,则返回用户此处设置的文字信息,优先级高于“默认回复URL”</div> </td> </tr> <tr> <th>默认回复URL</th> <td> <input type="text" id="" class="span7" placeholder="" name="default-apiurl" value="{$row['default_apiurl']}"> <div class="help-block">当接口无回复时,则调取此处设置的URL进行数据返回,优先级低于“默认回复文字”。</div> </td> </tr> <tr> <th>缓存时间</th> <td><input type="text" id="" class="span7" placeholder="" name="cachetime" value="{$row['cachetime']}"> <div class="help-block">接口返回数据将缓存在微擎系统中的时限,默认为0不缓存。</div></td> </tr> </table> </div>
node_modules/js-crawler/e2e/static/graph_no_cycles/page3.html
guilhermeanselmo2/easymarket-server
<html> <body> <a href="page3.html">Page 3</a> <a href="sublevel/page4.html">Page 4</a> <a href="sublevel/sublevel2/page5.html">Page 5</a> </body> </html>
share/doc/hadoop/api/org/apache/hadoop/tools/rumen/package-tree.html
SAT-Hadoop/hadoop-2.6.0
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_45) on Thu Nov 13 21:21:59 UTC 2014 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> org.apache.hadoop.tools.rumen Class Hierarchy (Apache Hadoop Main 2.6.0 API) </TITLE> <META NAME="date" CONTENT="2014-11-13"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="org.apache.hadoop.tools.rumen Class Hierarchy (Apache Hadoop Main 2.6.0 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../org/apache/hadoop/tools/protocolPB/package-tree.html"><B>PREV</B></A>&nbsp; &nbsp;<A HREF="../../../../../org/apache/hadoop/tools/rumen/anonymization/package-tree.html"><B>NEXT</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/hadoop/tools/rumen/package-tree.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> Hierarchy For Package org.apache.hadoop.tools.rumen </H2> </CENTER> <DL> <DT><B>Package Hierarchies:</B><DD><A HREF="../../../../../overview-tree.html">All Packages</A></DL> <HR> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../org/apache/hadoop/tools/protocolPB/package-tree.html"><B>PREV</B></A>&nbsp; &nbsp;<A HREF="../../../../../org/apache/hadoop/tools/rumen/anonymization/package-tree.html"><B>NEXT</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/hadoop/tools/rumen/package-tree.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 2014 <a href="http://www.apache.org">Apache Software Foundation</a>. All Rights Reserved. </BODY> </HTML>
src/__tests__/responsive/html/tablet.html
SilicorniO/webui
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <script type="text/javascript" src="../../../../build/webui-lib.js"></script> </head> <body style="margin:0"> <div id="screen" ui="w:100%;h:100%"> <span id="element" ui="t:p" uim="l:p" uit="ch" uid="r:p"> <div> <span>Mobile: top-left</span><br /> <span>Tablet: top-center</span><br /> <span>Desktop: top-right</span> </div> </div> <script> WebUI.start({ viewColors: true, showLogs: true, viewLogs: 'logs', timeRedraw: 0, screenModes: [ { //mobile attribute: "uim", widthEnd: 450 }, { //tablet attribute: "uit", widthStart: 451, widthEnd: 700 }, { //desktop attribute: "uid", widthStart: 700 } ] }); </script> </body> </html>
restfb/javadoc/com/restfb/batch/package-tree.html
oleke/Gender-Mining
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_45) on Mon Jan 27 21:35:17 EST 2014 --> <title>com.restfb.batch Class Hierarchy (RestFB)</title> <meta name="date" content="2014-01-27"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="com.restfb.batch Class Hierarchy (RestFB)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li>Use</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-all.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../com/restfb/package-tree.html">Prev</a></li> <li><a href="../../../com/restfb/exception/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?com/restfb/batch/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 class="title">Hierarchy For Package com.restfb.batch</h1> <span class="strong">Package Hierarchies:</span> <ul class="horizontal"> <li><a href="../../../overview-tree.html">All Packages</a></li> </ul> </div> <div class="contentContainer"> <h2 title="Class Hierarchy">Class Hierarchy</h2> <ul> <li type="circle">java.lang.<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="strong">Object</span></a> <ul> <li type="circle">com.restfb.batch.<a href="../../../com/restfb/batch/BatchHeader.html" title="class in com.restfb.batch"><span class="strong">BatchHeader</span></a></li> <li type="circle">com.restfb.batch.<a href="../../../com/restfb/batch/BatchRequest.html" title="class in com.restfb.batch"><span class="strong">BatchRequest</span></a></li> <li type="circle">com.restfb.batch.<a href="../../../com/restfb/batch/BatchRequest.BatchRequestBuilder.html" title="class in com.restfb.batch"><span class="strong">BatchRequest.BatchRequestBuilder</span></a></li> <li type="circle">com.restfb.batch.<a href="../../../com/restfb/batch/BatchResponse.html" title="class in com.restfb.batch"><span class="strong">BatchResponse</span></a></li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li>Use</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-all.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../com/restfb/package-tree.html">Prev</a></li> <li><a href="../../../com/restfb/exception/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?com/restfb/batch/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small><i>RestFB 1.6.14. Copyright &#169; 2010-2013 Mark Allen. All Rights Reserved.</i></small></p> </body> </html>
Allura/allura/templates/repo/log.html
apache/allura
{#- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -#} {% extends 'allura:templates/repo/repo_master.html' %} {% block title %}{{c.project.name}} / {{ (path and path.lstrip('/')) or c.app.config.options.mount_label }} Commit Log{% endblock %} {% block header %}{{path or c.app.config.options.mount_label}} Commit Log{% endblock %} {% block content %} <br style="clear:both"/> {% if log %} {{c.log_widget.display(value=log, limit=limit, count=count, next_commit=next_commit, is_file=is_file)}} {% else %} <p><b>No (more) commits</b></p> {% endif %} {% endblock %} {% block extra_css %} {{ super() }} <style type="text/css"> .rev.selected { background-color: #FFFFBE; } </style> {% endblock %} {% block extra_js %} {{ super() }} <script> function check_revisions(){ $("tr.rev").toggleClass("selected", false); $("input:checked").toggleClass("selected", true); $("input:checked").closest("tr").toggleClass("selected", true); if ($("input:checked").length == 2){ var first_tr = $("input.revision").index($("input:checked:first")); var last_tr = $("input.revision").index($("input:checked:last")); $("tr.rev").slice(first_tr,last_tr).toggleClass("selected", true); }; }; $(function() { $(document).ready(function(){ check_revisions(); }); $(".revision").click(function(){ if ( $("input:checked").length > 2){ $("tr.selected").toggleClass("selected", false); $("input.selected").removeAttr("checked"); $("input.selected").toggleClass("selected", false); } $(this).closest("tr").toggleClass("selected"); $(this).toggleClass("selected"); check_revisions(); }); $(".compare_revision").click(function(){ var n = $("input:checked").length; if (n==2){ var first_revision = $("input.selected:first").attr("url_commit"); var second_revision = $("input.selected:last").attr("revision"); var path = "{{path}}"; var diff_url = first_revision+"tree/"+path+"?diff="+second_revision; window.location.href = diff_url; } else { alert("Please select two versions to compare"); }; }); }); </script> {% endblock %}
dependencies/FAKE.Core/docs/apidocs/fake-permissionshelper.html
dtchepak/wpfgesturerecognizer
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>PermissionsHelper - FAKE - F# Make</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content="Steffen Forkmann, Mauricio Scheffer, Colin Bull"> <script src="https://code.jquery.com/jquery-1.8.0.js"></script> <script src="https://code.jquery.com/ui/1.8.23/jquery-ui.js"></script> <script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/js/bootstrap.min.js"></script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap-combined.min.css" rel="stylesheet"> <link type="text/css" rel="stylesheet" href="http://fsharp.github.io/FAKE/content/style.css" /> <script type="text/javascript" src="http://fsharp.github.io/FAKE/content/tips.js"></script> <!-- HTML5 shim, for IE6-8 support of HTML5 elements --> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="masthead"> <ul class="nav nav-pills pull-right"> <li><a href="http://fsharp.org">fsharp.org</a></li> <li><a href="http://github.com/fsharp/fake">github page</a></li> </ul> <h3 class="muted"><a href="http://fsharp.github.io/FAKE/index.html">FAKE - F# Make</a></h3> </div> <hr /> <div class="row"> <div class="span9" id="main"> <h1>PermissionsHelper</h1> <div class="xmldoc"> <p>Contains functions which allow to deal with permissions.</p> </div> <!-- Render nested types and modules, if there are any --> <h3>Functions and values</h3> <table class="table table-bordered member-list"> <thead> <tr><td>Function or value</td><td>Description</td></tr> </thead> <tbody> <tr> <td class="member-name"> <code onmouseout="hideTip(event, '440', 440)" onmouseover="showTip(event, '440', 440)"> isAdmin identity </code> <div class="tip" id="440"> <strong>Signature:</strong> identity:WindowsIdentity -&gt; bool<br /> </div> </td> <td class="xmldoc"> <a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/PermissionsHelper.fs#L10-10" class="github-link"> <img src="../content/img/github.png" class="normal" /> <img src="../content/img/github-blue.png" class="hover" /> </a> <p>Returns whether the given user has administrator permissions.</p> <h2>Parameters</h2> <ul> <li><code>identity</code> - The windows identity of the user in question.</li> </ul> </td> </tr> <tr> <td class="member-name"> <code onmouseout="hideTip(event, '441', 441)" onmouseover="showTip(event, '441', 441)"> requiresAdmin f </code> <div class="tip" id="441"> <strong>Signature:</strong> f:(unit -&gt; &#39;?8044) -&gt; &#39;?8044<br /> <strong>Type parameters:</strong> '?8044 </div> </td> <td class="xmldoc"> <a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/PermissionsHelper.fs#L23-23" class="github-link"> <img src="../content/img/github.png" class="normal" /> <img src="../content/img/github-blue.png" class="hover" /> </a> <p>Checks that the current user has administrator permissions - otherwise it throws an exception.</p> <h2>Parameters</h2> <ul> <li><code>f</code> - This Function will be excuted if the use has the right permissions.</li> </ul> <h2>Sample</h2> <pre><code>Target "Install" (fun _ -&gt; requiresAdmin (fun _ -&gt; installMSI()) )</code></pre> </td> </tr> </tbody> </table> </div> <div class="span3"> <a href="http://fsharp.github.io/FAKE/index.html"> <img src="http://fsharp.github.io/FAKE/pics/logo.png" style="width:140px;height:140px;margin:10px 0px 0px 35px;border-style:none;" /> </a> <ul class="nav nav-list" id="menu"> <li class="nav-header">FAKE - F# Make</li> <li class="divider"></li> <li><a href="http://fsharp.github.io/FAKE/index.html">Home page</a></li> <li class="divider"></li> <li><a href="https://www.nuget.org/packages/FAKE">Get FAKE - F# Make via NuGet</a></li> <li><a href="http://github.com/fsharp/fake">Source Code on GitHub</a></li> <li><a href="http://github.com/fsharp/fake/blob/master/License.txt">License (Apache 2)</a></li> <li><a href="http://fsharp.github.io/FAKE/RELEASE_NOTES.html">Release Notes</a></li> <li><a href="http://fsharp.github.io/FAKE//contributing.html">Contributing to FAKE - F# Make</a></li> <li><a href="http://fsharp.github.io/FAKE/users.html">Who is using FAKE?</a></li> <li><a href="http://stackoverflow.com/questions/tagged/f%23-fake">Ask a question</a></li> <li class="nav-header">Tutorials</li> <li><a href="http://fsharp.github.io/FAKE/gettingstarted.html">Getting started</a></li> <li class="divider"></li> <li><a href="http://fsharp.github.io/FAKE/nuget.html">NuGet package restore</a></li> <li><a href="http://fsharp.github.io/FAKE/fxcop.html">Using FxCop in a build</a></li> <li><a href="http://fsharp.github.io/FAKE/assemblyinfo.html">Generating AssemblyInfo</a></li> <li><a href="http://fsharp.github.io/FAKE/create-nuget-package.html">Create NuGet packages</a></li> <li><a href="http://fsharp.github.io/FAKE/specifictargets.html">Running specific targets</a></li> <li><a href="http://fsharp.github.io/FAKE/commandline.html">Running FAKE from command line</a></li> <li><a href="http://fsharp.github.io/FAKE/parallel-build.html">Running targets in parallel</a></li> <li><a href="http://fsharp.github.io/FAKE/fsc.html">Using the F# compiler from FAKE</a></li> <li><a href="http://fsharp.github.io/FAKE/customtasks.html">Creating custom tasks</a></li> <li><a href="http://fsharp.github.io/FAKE/teamcity.html">TeamCity integration</a></li> <li><a href="http://fsharp.github.io/FAKE/canopy.html">Running canopy tests</a></li> <li><a href="http://fsharp.github.io/FAKE/octopusdeploy.html">Octopus Deploy</a></li> <li><a href="http://fsharp.github.io/FAKE/typescript.html">TypeScript support</a></li> <li><a href="http://fsharp.github.io/FAKE/azurewebjobs.html">Azure WebJobs support</a></li> <li><a href="http://fsharp.github.io/FAKE/azurecloudservices.html">Azure Cloud Services support</a></li> <li><a href="http://fsharp.github.io/FAKE/androidpublisher.html">Android publisher</a></li> <li><a href="http://fsharp.github.io/FAKE/watch.html">File Watcher</a></li> <li class="divider"></li> <li><a href="http://fsharp.github.io/FAKE/deploy.html">Fake.Deploy</a></li> <li class="nav-header">Reference</li> <li><a href="http://fsharp.github.io/FAKE/apidocs/index.html">API Reference</a></li> </ul> </div> </div> </div> <a href="http://github.com/fsharp/fake"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a> </body> </html>
share/doc/hadoop/api/org/apache/hadoop/io/serializer/avro/AvroReflectSerializable.html
prabaprakash/Hadoop-2.5.1-Binary
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_45) on Fri Sep 05 23:32:45 UTC 2014 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> AvroReflectSerializable (Apache Hadoop Main 2.5.1 API) </TITLE> <META NAME="date" CONTENT="2014-09-05"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="AvroReflectSerializable (Apache Hadoop Main 2.5.1 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/AvroReflectSerializable.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV CLASS&nbsp; &nbsp;<A HREF="../../../../../../org/apache/hadoop/io/serializer/avro/AvroReflectSerialization.html" title="class in org.apache.hadoop.io.serializer.avro"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/apache/hadoop/io/serializer/avro/AvroReflectSerializable.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="AvroReflectSerializable.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;METHOD</FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;METHOD</FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> org.apache.hadoop.io.serializer.avro</FONT> <BR> Interface AvroReflectSerializable</H2> <HR> <DL> <DT><PRE><FONT SIZE="-1">@InterfaceAudience.Public @InterfaceStability.Evolving </FONT>public interface <A HREF="../../../../../../src-html/org/apache/hadoop/io/serializer/avro/AvroReflectSerializable.html#line.31"><B>AvroReflectSerializable</B></A></DL> </PRE> <P> Tag interface for Avro 'reflect' serializable classes. Classes implementing this interface can be serialized/deserialized using <A HREF="../../../../../../org/apache/hadoop/io/serializer/avro/AvroReflectSerialization.html" title="class in org.apache.hadoop.io.serializer.avro"><CODE>AvroReflectSerialization</CODE></A>. <P> <P> <HR> <P> <P> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/AvroReflectSerializable.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV CLASS&nbsp; &nbsp;<A HREF="../../../../../../org/apache/hadoop/io/serializer/avro/AvroReflectSerialization.html" title="class in org.apache.hadoop.io.serializer.avro"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/apache/hadoop/io/serializer/avro/AvroReflectSerializable.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="AvroReflectSerializable.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;METHOD</FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;METHOD</FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 2014 <a href="http://www.apache.org">Apache Software Foundation</a>. All Rights Reserved. </BODY> </HTML>
page/selector.html
kenu/khcu-html5css3
<!DOCTYPE html> <html> <head> <title>selector</title> <style> h1 + pre { border: 1px solid #888; } </style> <meta charset="utf-8"></head> <body> <pre>function a(x) = 12x/13.5</pre> <h1>Definition of the function a</h1> <p>Function a(x) has to be applied to all figures in the table.</p> <pre>function a(x) = 12x/13.5</pre> <h1>Definition of the function b</h1> <pre>function b(x) = 12x/13.5</pre> <p>Function b(x) has to be applied to all figures in the table.</p> </body> </html>
extensions/amp-link-rewriter/0.1/test/validator-amp-link-rewriter-no-script.html
rsimha-amp/amphtml
<!-- Copyright 2019 The AMP HTML Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS-IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the license. --> <!-- Test Description: Tests amp-link-rewriter tag --> <!doctype html> <html ⚡ lang="en"> <head> <meta charset="utf-8"> <link rel="canonical" href="./regular-html-version.html"> <meta name="viewport" content="width=device-width,minimum-scale=1"> <style amp-boilerplate>body{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-moz-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-ms-animation:-amp-start 8s steps(1,end) 0s 1 normal both;animation:-amp-start 8s steps(1,end) 0s 1 normal both}@-webkit-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-moz-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-ms-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-o-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}</style><noscript><style amp-boilerplate>body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:none}</style></noscript> <script async custom-element='amp-link-rewriter' src='https://cdn.ampproject.org/v0/amp-link-rewriter-0.1.js'></script> <script async src="https://cdn.ampproject.org/v0.js"></script> </head> <body> <!-- Example of invalid amp-link-rewriter missing a script tag --> <amp-link-rewriter layout="nodisplay"></amp-link-rewriter> </body> </html>
2.2/docs/Javadoc/org/drip/product/definition/package-summary.html
tectronics/rootfinder
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0) on Wed Aug 14 21:12:39 EDT 2013 --> <title>org.drip.product.definition</title> <meta name="date" content="2013-08-14"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="org.drip.product.definition"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/drip/product/credit/package-summary.html">Prev Package</a></li> <li><a href="../../../../org/drip/product/fx/package-summary.html">Next Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/drip/product/definition/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Package" class="title">Package&nbsp;org.drip.product.definition</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Interface Summary table, listing interfaces, and an explanation"> <caption><span>Interface Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Interface</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../org/drip/product/definition/BasketMarketParamRef.html" title="interface in org.drip.product.definition">BasketMarketParamRef</a></td> <td class="colLast"> <div class="block">BasketMarketParamRef interface provides stubs for component's IR and credit curves that constitute the basket.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../org/drip/product/definition/BondProduct.html" title="interface in org.drip.product.definition">BondProduct</a></td> <td class="colLast"> <div class="block">BondProduct interface implements the product static data behind bonds of all kinds.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../org/drip/product/definition/ComponentMarketParamRef.html" title="interface in org.drip.product.definition">ComponentMarketParamRef</a></td> <td class="colLast"> <div class="block">ComponentMarketParamRef interface provides stubs for component name, IR curve, forward curve, credit curve, TSY curve, and EDSF curve needed to value the component.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation"> <caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Class</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../org/drip/product/definition/BasketProduct.html" title="class in org.drip.product.definition">BasketProduct</a></td> <td class="colLast"> <div class="block">BasketProduct abstract class extends BasketMarketParamRef.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../org/drip/product/definition/Bond.html" title="class in org.drip.product.definition">Bond</a></td> <td class="colLast"> <div class="block">Bond abstract class implements the pricing, the valuation, and the RV analytics functionality for the bond product.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../org/drip/product/definition/CalibratableComponent.html" title="class in org.drip.product.definition">CalibratableComponent</a></td> <td class="colLast"> <div class="block">CalibratableComponent abstract class provides implementation of Component's calibration interface.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../org/drip/product/definition/Component.html" title="class in org.drip.product.definition">Component</a></td> <td class="colLast"> <div class="block">Component abstract class extends ComponentMarketParamRef and provides the following methods: - Get the component'sGet initial notional, notional, and coupon.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../org/drip/product/definition/CreditComponent.html" title="class in org.drip.product.definition">CreditComponent</a></td> <td class="colLast"> <div class="block">CreditComponent is the base abstract class on top of which all credit components are implemented.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../org/drip/product/definition/CreditDefaultSwap.html" title="class in org.drip.product.definition">CreditDefaultSwap</a></td> <td class="colLast"> <div class="block">CreditDefaultSwap is the base abstract class implements the pricing, the valuation, and the RV analytics functionality for the CDS product.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../org/drip/product/definition/FXForward.html" title="class in org.drip.product.definition">FXForward</a></td> <td class="colLast"> <div class="block">FXForward is the abstract class exposes the functionality behind the FXForward Contract.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../org/drip/product/definition/FXSpot.html" title="class in org.drip.product.definition">FXSpot</a></td> <td class="colLast"> <div class="block">FXSpot is the abstract class exposes the functionality behind the FXSpot Contract.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../org/drip/product/definition/RatesComponent.html" title="class in org.drip.product.definition">RatesComponent</a></td> <td class="colLast"> <div class="block">RatesComponent is the abstract class that extends CalibratableComponent on top of which all rates components are implemented.</div> </td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/drip/product/credit/package-summary.html">Prev Package</a></li> <li><a href="../../../../org/drip/product/fx/package-summary.html">Next Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/drip/product/definition/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
play26-bootstrap4/sample/app/views/vertical.scala.html
adrianhurt/play-bootstrap3
@(fooForm: Form[String])(implicit request: MessagesRequestHeader) @import utils.BSVersion @import tags._ @implicitFieldConstructor = @{ b4.vertical.fieldConstructor() } @fruits = @{ Seq("A"->"Apples","P"->"Pears","B"->"Bananas") } @main("Vertical Form", tab = "vertical") { <h1 id="vertical-form" class="page-header">Vertical Form</h1> <h3 id="simple-inputs">Simple inputs</h3> @bsExampleWithCode { <div class="row"> <div class="col-md-6"> @b4.text( fooForm("foo"), '_label -> "Input Text", 'placeholder -> "A simple text..." ) @b4.email( fooForm("foo"), '_label -> "Email", 'placeholder -> "example@mail.com" ) </div> <div class="col-md-6"> @b4.password( fooForm("foo"), '_label -> "Password", 'placeholder -> "Password" ) @b4.file( fooForm("foo"), '_label -> "File" ) </div> </div> }{ @@b4.text( fooForm("foo"), '_label -> "Input Text", 'placeholder -> "A simple text..." ) @@b4.email( fooForm("foo"), '_label -> "Email", 'placeholder -> "example@@mail.com" ) @@b4.password( fooForm("foo"), '_label -> "Password", 'placeholder -> "Password" ) @@b4.file( fooForm("foo"), '_label -> "File" ) } <h3 id="more-options">More options</h3> @bsExampleWithCode { <div class="row"> <div class="col-md-6"> @b4.text( fooForm("foo"), '_label -> "Input Text", 'placeholder -> "A simple text..." ) @b4.text( fooForm("foo"), '_label -> "Help", '_help -> "This is a help text", 'placeholder -> "A simple text showing a help..." ) @b4.text( fooForm("foo"), '_label -> "Constraints", '_showConstraints -> true, 'placeholder -> "A simple text showing its constraints..." ) </div> <div class="col-md-6"> @b4.text( fooForm("foo"), 'placeholder -> "Without label" ) @b4.text( fooForm("foo"), '_label -> "A big text", 'class -> "form-control form-control-lg", 'placeholder -> "An awesome field..." ) </div> </div> }{ @@b4.text( fooForm("foo"), '_label -> "Input Text", 'placeholder -> "A simple text..." ) @@b4.text( fooForm("foo"), '_label -> "Help", '_help -> "This is a help text", 'placeholder -> "A simple text showing a help..." ) @@b4.text( fooForm("foo"), '_label -> "Constraints", '_showConstraints -> true, 'placeholder -> "A simple text showing its constraints..." ) @@b4.text( fooForm("foo"), 'placeholder -> "Without label" ) @@b4.text( fooForm("foo"), '_label -> "A big text", 'class -> "form-control form-control-lg", 'placeholder -> "An awesome field..." ) } <h3 id="textareas-checkboxes-radios-selects">Textareas, checkboxes, radio buttons and selects</h3> @bsExampleWithCode { <div class="row"> <div class="col-md-6"> @b4.textarea( fooForm("foo"), '_label -> "Textarea", 'rows -> 3 ) @b4.checkbox( fooForm("foo"), '_text -> "Checkbox", 'checked -> true ) @b4.radio( fooForm("foo"), options = Seq("M"->"Male","F"->"Female"), '_label -> "Radio Group" ) </div> <div class="col-md-6"> @b4.select( fooForm("foo"), options = fruits, '_label -> "Select" ) @b4.select( fooForm("foo"), options = fruits, '_label -> "Multiple Select", 'multiple -> true ) </div> </div> }{ @@b4.textarea( fooForm("foo"), '_label -> "Textarea", 'rows -> 3 ) @@b4.checkbox( fooForm("foo"), '_text -> "Checkbox", 'checked -> true ) @@b4.radio( fooForm("foo"), options = Seq("M"->"Male","F"->"Female"), '_label -> "Radio Group" ) @@fruits = @@{ Seq("A"->"Apples","P"->"Pears","B"->"Bananas") } ... @@b4.select( fooForm("foo"), options = fruits, '_label -> "Select" ) @@b4.select( fooForm("foo"), options = fruits, '_label -> "Multiple Select", 'multiple -> true ) } <h3 id="disabled-readonly-attributes">Disabled and readonly attributes</h3> @bsExampleWithCode { <div class="row"> <div class="col-md-6"> @b4.text( fooForm("foo"), '_label -> "Disabled", 'disabled -> true, 'placeholder -> "Disabled text..." ) @b4.checkbox( fooForm("foo"), '_text -> "Readonly checkbox", 'readonly -> true, 'value -> true ) </div> <div class="col-md-6"> @b4.select( fooForm("foo"), options = fruits, '_label -> "Select", 'multiple -> true, 'readonly -> true, 'value -> "B,P" ) </div> </div> }{ @@b4.text( fooForm("foo"), '_label -> "Disabled", 'disabled -> true, 'placeholder -> "Disabled text..." ) @@b4.checkbox( fooForm("foo"), '_text -> "Readonly checkbox", 'readonly -> true, 'value -> true ) @@b4.select( fooForm("foo"), options = fruits, '_label -> "Select", 'multiple -> true, 'readonly -> true, 'value -> "B,P" ) } <h3 id="validation-states">Validation states</h3> @bsExampleWithCode { <div class="row"> <div class="col-md-6"> @b4.text( fooForm("foo"), '_label -> "Success", '_success -> "Great!", 'placeholder -> "Success text..." ) @b4.text( fooForm("foo"), '_label -> "Warning", '_warning -> "Be carefull with this...", 'placeholder -> "Warning text..." ) @b4.text( fooForm("foo"), '_label -> "Error", '_error -> "An error occurred!", '_help -> "Another help text", 'placeholder -> "Error text..." ) </div> <div class="col-md-6"> @b4.vertical.form(routes.Application.vertical, '_feedbackTooltip -> true) { implicit fc => @b4.text( fooForm("foo"), '_label -> "Success", '_success -> "Great!", 'placeholder -> "Success text...", '_class -> "position-relative" ) @b4.text( fooForm("foo"), '_label -> "Warning", '_warning -> "Be carefull with this...", 'placeholder -> "Warning text...", '_class -> "position-relative" ) @b4.text( fooForm("foo"), '_label -> "Error", '_error -> "An error occurred!", '_help -> "Another help text", 'placeholder -> "Error text...", '_class -> "position-relative" ) } </div> </div> }{ @@b4.text( fooForm("foo"), '_label -> "Success", '_success -> "Great!", 'placeholder -> "Success text..." ) @@b4.text( fooForm("foo"), '_label -> "Warning", '_warning -> "Be carefull with this...", 'placeholder -> "Warning text..." ) @@b4.text( fooForm("foo"), '_label -> "Error", '_error -> "An error occurred!", '_help -> "Another help text", 'placeholder -> "Error text..." ) // With feedback tooltips @@b4.vertical.form(routes.Application.vertical, '_feedbackTooltip -> true) { implicit fc => @@b4.text( fooForm("foo"), '_label -> "Success", '_success -> "Great!", 'placeholder -> "Success text...", '_class -> "position-relative" ) @@b4.text( fooForm("foo"), '_label -> "Warning", '_warning -> "Be carefull with this...", 'placeholder -> "Warning text...", '_class -> "position-relative" ) @@b4.text( fooForm("foo"), '_label -> "Error", '_error -> "An error occurred!", '_help -> "Another help text", 'placeholder -> "Error text...", '_class -> "position-relative" ) } } <h3 id="b4-custom">Bootstrap 4 custom forms</h3> @bsExampleWithCode { <div class="row"> <div class="col-md-6"> @b4.checkbox( fooForm("foo_check_custom_1"), '_text -> "Checkbox", 'checked -> true, '_custom -> true ) @b4.radio( fooForm("foo_radio_custom_1"), options = Seq("M"->"Male","F"->"Female"), '_label -> "Radio Group", '_custom -> true ) </div> <div class="col-md-6"> @b4.vertical.form(routes.Application.vertical, '_custom -> true) { implicit fc => @b4.select( fooForm("foo_select_custom_1"), options = fruits, '_label -> "Select" ) @b4.file( fooForm("foo_file_custom_1"), '_label -> "File", 'placeholder -> "Select a file..." ) } </div> </div> }{ @@b4.checkbox( fooForm("foo_check_custom_1"), '_text -> "Checkbox", 'checked -> true, '_custom -> true ) @@b4.radio( fooForm("foo_radio_custom_1"), options = Seq("M"->"Male","F"->"Female"), '_label -> "Radio Group", '_custom -> true ) @@b4.select( fooForm("foo_select_custom_1"), options = fruits, '_label -> "Select", '_custom -> true ) @@b4.file( fooForm("foo_file_custom_1"), '_label -> "File", 'placeholder -> "Select a file...", '_custom -> true ) Or @@b4.vertical.form(routes.Application.vertical, '_custom -> true) { implicit fc => @@b4.checkbox( fooForm("foo_check_custom_1"), '_text -> "Checkbox", 'checked -> true ) @@b4.radio( fooForm("foo_radio_custom_1"), options = Seq("M"->"Male","F"->"Female"), '_label -> "Radio Group" ) @@b4.select( fooForm("foo_select_custom_1"), options = fruits, '_label -> "Select" ) @@b4.file( fooForm("foo_file_custom_1"), '_label -> "File", 'placeholder -> "Select a file..." ) } } <h3 id="customize">Customize them</h3> @bsExampleWithCode { <div class="row"> <div class="col-md-6"> @b4.inputWrapped( "email", fooForm("foo"), '_label -> "Input group", 'placeholder -> "Custom input group for email..." ) { input => <div class="input-group"> <div class="input-group-prepend"> <span class="input-group-text">@@</span> </div> @input </div> } @b4.inputWrapped( "text", fooForm("foo"), '_label -> "Number", 'value -> 0, '_help -> "This needs some JavaScript and CSS" ) { input => <div class="input-number input-group"> <div class="input-group-prepend"> <span class="input-group-text input-number-minus"><i class="fa fa-minus"></i></span> </div> @input <div class="input-group-append"> <span class="input-group-text input-number-plus"><i class="fa fa-plus"></i></span> </div> </div> } </div> <div class="col-md-6"> @b4.inputWrapped( "text", fooForm("foo"), '_label -> "Fully customized", 'placeholder -> "A complicated one..." ) { input => <div class="input-group"> <div class="input-group-prepend"> <span class="input-group-text"><i class="fa fa-star"></i></span> </div> @input <div class="input-group-append"> <button type="button" class="btn btn-outline-secondary" tabindex="-1">Action</button> <button type="button" class="btn btn-outline-secondary dropdown-toggle dropdown-toggle-split" data-toggle="dropdown" tabindex="-1"> <span class="sr-only">Toggle Dropdown</span> </button> <div class="dropdown-menu dropdown-menu-right" role="menu"> <a class="dropdown-item" href="#">Action</a> <a class="dropdown-item" href="#">Another action</a> <a class="dropdown-item" href="#">Something else here</a> <div role="separator" class="dropdown-divider"></div> <a class="dropdown-item" href="#">Separated link</a> </div> </div> </div> } </div> </div> }{ @@b4.inputWrapped( "email", fooForm("foo"), '_label -> "Simple input group", 'placeholder -> "Custom input group for email..." ) { input => <div class="input-group"> <div class="input-group-prepend"> <span class="input-group-text">@@@@</span> </div> @@input </div> } @@b4.inputWrapped( "text", fooForm("foo"), '_label -> "Fully customized", 'placeholder -> "A complicated one..." ) { input => <div class="input-group"> <div class="input-group-prepend"> <span class="input-group-text"><i class="fa fa-star"></i></span> </div> @@input <div class="input-group-append"> <!-- Button and dropdown menu --> </div> </div> } @@b4.inputWrapped( "text", fooForm("foo"), '_label -> "Number", 'value -> 0, '_help -> "This needs some JavaScript and CSS" ) { input => <div class="input-number input-group"> <div class="input-group-prepend"> <span class="input-group-text input-number-minus"><i class="fa fa-minus"></i></span> </div> @@input <div class="input-group-append"> <span class="input-group-text input-number-plus"><i class="fa fa-plus"></i></span> </div> </div> } } <h3 id="more-helpers">More helpers</h3> @bsExampleWithCode { @b4.static("Static HTML"){ <a href="#"><i class="fa fa-star"></i> This is a link</a> } @b4.submit('class -> "btn btn-secondary"){ <i class="fa fa-ok"></i> Submit me! } @b4.free() { <button type="submit" class="btn btn-primary"> <i class="fa fa-ok"></i> Save changes</button> <a class="btn btn-secondary"> <i class="fa fa-remove"></i> Cancel</a> } }{ @@b4.static("Static HTML"){ <a href="#"><i class="fa fa-star"></i> This is a link</a> } @@b4.submit('class -> "btn btn-secondary"){ <i class="fa fa-ok"></i> Submit me! } @@b4.free() { <button type="submit" class="btn btn-primary"> <i class="fa fa-ok"></i> Save changes</button> <a class="btn btn-secondary"> <i class="fa fa-remove"></i> Cancel</a> } } }
service.html
parinaA/sd-dtu.github.io
<!DOCTYPE html> <html lang="en"> <!-- Mirrored from crazycafe.net/demos/meet/service.html by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 04 Jan 2017 13:33:59 GMT --> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <!-- Title --> <title>meet-HTML 5 Template</title> <!-- ================================================================ ***Favicon*** ================================================================= --> <link rel="shortcut icon" type="image/png" href="images/fevicon.png"> <!-- ================================================================ ***CSS File*** ================================================================= --> <!-- ================= *** Google Font-Poppins *** ======================= --> <link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700" rel="stylesheet"> <!-- ================= *** Animate CSS *** ======================= --> <link href="css/animate.min.css" rel="stylesheet" type="text/css"> <!-- ================= *** Bootstrap CSS *** ===================== --> <link href="css/bootstrap.min.css" rel="stylesheet" type="text/css"> <!-- ================= *** Font-awesome CSS *** ================== --> <link href="css/font-awesome.min.css" rel="stylesheet" type="text/css"> <!-- ================= *** icofont CSS *** ======================= --> <link href="css/icofont.css" rel="stylesheet" type="text/css"> <!-- ================= *** Owl Carousel CSS *** ================== --> <link href="css/owl.carousel.css" rel="stylesheet" type="text/css"> <!-- ================= *** Main CSS *** ========================== --> <link href="css/custom/style.css" rel="stylesheet" type="text/css"> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body class="home"> <div id="preloader"> <div class="preloader_spinner"></div> </div> <!-- preloader end --> <!-- ========================================================== 1.*Header_area start ============================================================ --> <header> <div class="romana_header_top"> <div class="container"> <div class="row"> <div class="col-md-7 col-sm-8"> <div class="romana_header_top_left"> <ul> <li><a href="#"><i class="icofont icofont-envelope"></i>contact@sddtu.org</a></li> <li><a href="#"><i class="icofont icofont-iphone"></i>+(91) 9717430033</a></li> <li><a href="#"><i class="icofont icofont-clock-time"></i>Mon-sat(10am-4pm)</a></li> </ul> </div> </div> <!-- column End --> <div class="col-md-5 col-sm-4"> <div class="romana_header_top_right text-right"> <a href="#">Contact Us</a> </div> </div> <!-- column End --> </div> <!-- row End --> </div> <!-- container End --> </div> <!-- Header-Top End --> <div class="romana_header_bottom"> <div class="container"> <div class="row"> <div class="col-sm-2 col-xs-6"> <div class="romana_logo"> <a href="index.html"><img src="images/logo-dark.png" alt=""></a> </div> </div> <!-- column End --> <div class="col-sm-10"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> <span class="sr-only"></span> <i class="fa fa-navicon"></i> </button> </div> <nav id="navbar" class="navbar-collapse collapse"> <ul class="nav navbar-nav"> <li class=""><a href="index.html">Home</a></li> <li class=""><a href="about.html">About</a></li> <li class=""><a href="whyjoin.html">Why Join</a></li> <li class=""><a href="team-detail.html">Team</a></li> <li class=""><a href="service.html">Events</a></li> <li><a href="contact.html">Contact</a></li> </ul> <!-- mega-menu End --> </nav> <!-- nav End --> <form action="#" class="searchForm"> <i class="icofont icofont-close"></i> <input type="search" placeholder="Search now"> <input type="submit" value="&#xeded;"> </form> <!-- searchForm End --> </div> <!-- column End --> </div> <!-- row End --> </div> <!-- container End --> </div> <!-- Header Bottom End --> </header> <!-- Header End --> <!-- ========================================================== 2.*Hero_area start ============================================================ --> <div class="romana_allPage_area"> <div class="container"> <div class="row"> <div class="col-xs-12"> <div class="romana_allPage_text text-center"> <h1>events</h1> <ol class="breadcrumb"> <li><a href="#">Home</a><span></span></li> <li class="active"><a href="#">events</a></li> </ol> </div> </div> <!-- column End --> </div> <!-- row End --> </div> <!-- container End --> </div> <!-- ========================================================== 3.*WoorksWith_area start ============================================================ --> <div class="romana_serviceImg_area romana_section_padding"> <div class="container"> <div class="row"> <div class="col-sm-4"> <div class="romana_service_singleImg"> <img src="images/ser1.jpg" alt=""> <div class="romana_serviceImg_text"> <a href="#"><h3>Monthly Programming Contests</h3></a> <p>Monthly programming contests are organised to hone your coding skills.</p> </div> </div> <div class="romana_service_singleImg"> <img src="images/ser4.png" alt=""> <div class="romana_serviceImg_text"> <a href="#"><h3>Code Like A Girl Challenge</h3></a> <p>A challenge that helps break stereotypes and encourages girls in competetitive coding.</p> </div> </div> </div> <!-- column End --> <div class="col-sm-4"> <div class="romana_service_singleImg"> <img src="images/ser10.jpg" alt=""> <div class="romana_serviceImg_text"> <a href="#"><h3>Mock ACM ICPC</h3></a> <p>Mock ACM ICPC to help you gauge how it is to participate in the coveted competetion and judge where you stand.</p> </div> </div> <div class="romana_service_singleImg"> <img src="images/hackathon.jpg" alt=""> <div class="romana_serviceImg_text"> <a href="#"><h3>Mock Hackathons</h3></a> <p>Mock Hackathons that help you build stamina and learn to figth it out in a hackathon. </p> </div> </div> </div> <!-- column End --> <div class="col-sm-4"> <div class="romana_service_singleImg"> <img src="images/ser3.jpg" alt=""> <div class="romana_serviceImg_text"> <a href="#"><h3>Meetups</h3></a> <p>Regular meetups to discuss ideas,brainstorm and learn from each other.</p> </div> </div> <div class="romana_service_singleImg"> <img src="images/ser6.jpg" alt=""> <div class="romana_serviceImg_text"> <a href="#"><h3>Fest-SYNERGY</h3></a> <p>North India's most prodiguous tech fest! </p><a href=http://synergy.sddtu.org/>Visit here</a> </div> </div> </div> <!-- column End --> </div> <!-- row End --> </div> <!-- container End --> </div> <!-- ========================================================== 4.*Get_Consult_area start ============================================================ --> <!-- ========================================================== 5.*Our_Videos_area start ============================================================ --> <!-- ================================================== 6.*Brand_area start =================================================== --> <div class="romana_brand_area"> <div class="container"> <div class="row"> <div class="col-xs-12"> <div class="brand_crsl"> <div class="single_brand"> <a href="#"><img src="images/brand_img6.jpg" alt=""></a> </div> <div class="single_brand"> <a href="#"><img src="images/brand_img7.jpg" alt=""></a> </div> <div class="single_brand"> <a href="#"><img src="images/brand_img8.jpg" alt=""></a> </div> <div class="single_brand"> <a href="#"><img src="images/brand_img9.jpg" alt=""></a> </div> <div class="single_brand"> <a href="#"><img src="images/brand_img10.jpg" alt=""></a> </div> <div class="single_brand"> <a href="#"><img src="images/brand_img11.jpg" alt=""></a> </div> <div class="single_brand"> <a href="#"><img src="images/brand_img12.jpg" alt=""></a> </div> </div> </div> <!-- column end--> </div> <!-- row end --> </div> <!-- container end --> </div> <!-- ================================================== 7.*Footer_area start =================================================== --> <footer class="romana_footer_area"> <div class="romana_footer_top"> <div class="container"> <div class="row"> <div class="col-sm-4 col-xs-12"> <div class="romana_footer_left"> <div class="romna_footer_logo"> <a href="index.html"><img src="images/logo-dark.png" alt="footer logo"></a> </div> <p>Creating an environment for developers to prosper and be able to successfully implement ideas for it's not about having ideas but making ideas happen </p> <div class="romana_footer_social_link"> <ul> <li><a href="http://fb.com/sddtu"><i class="fa fa-facebook"></i></a></li> <li><a href="https://twitter.com/SynergyDTU"><i class="fa fa-twitter"></i></a></li> <li><a href="https://github.com/SD-DTU"><i class="fa fa-github"></i></a></li> <li><a href="https://plus.google.com/u/0/102708048551503101057"><i class="fa fa-google-plus"></i></a></li> <li><a href="https://www.instagram.com/sd_dtu/"><i class="fa fa-instagram"></i></a></li> </ul> </div> </div> </div> <!-- column End --> <div class="col-sm-4 col-xs-12"> <div class="romana_important_link"> <h2>important links</h2> <ul> <li><a href="index.html">home</a></li> <li><a href="about.html">about us</a></li> <li><a href="service-detail-1.html">Why Join</a></li> </ul> </div> <div class="romana_important_link2"> <ul> <li><a href="service.html">events</a></li> <li><a href="blog.html">Blog</a></li> <li><a href="contact.html">contact</a></li> </ul> </div> </div> <!-- column End --> </div> </div> </div> <!-- footer_top End --> <div class="romana_footer_bottom"> <div class="container"> <div class="romana_footer_bottom_content text-center"> <div class="row"> <div class="col-xs-12"> <p>SD-DTU 2017 &copy; All right reserved <span>Made With <i class="icofont icofont-heart-alt animated infinite zoomIn"></i> by SD-DTU</span></p> </div> <!-- column End --> </div> <!-- row End --> </div> </div> <!-- container End --> </div> <!-- footer_bottom End --> </footer> <!-- ====================================================== ***Js Files*** =========================================================== --> <!-- ================= Main Js ==================== --> <script src="js/jquery-3.1.0.min.js"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <!-- ================= Bootstrap min Js =========== --> <script src="js/bootstrap.min.js"></script> <!-- ================= owl carousel min Js ======== --> <script src="js/owl.carousel.min.js"></script> <!-- ================= Active Js ================== --> <script src="js/active.js"></script> </body> <!-- Mirrored from crazycafe.net/demos/meet/service.html by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 04 Jan 2017 13:34:44 GMT --> </html>
doc/core/Lucene.Net.Search.BooleanQuery.minNrShouldMatch.html
Mpdreamz/lucene.net
<html dir="LTR"> <head> <meta http-equiv="Content-Type" content="text/html; charset=Windows-1252" /> <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5" /> <title>BooleanQuery.minNrShouldMatch Field</title> <xml> </xml> <link rel="stylesheet" type="text/css" href="MSDN.css" /> </head> <body id="bodyID" class="dtBODY"> <div id="nsbanner"> <div id="bannerrow1"> <table class="bannerparthead" cellspacing="0"> <tr id="hdr"> <td class="runninghead">Apache Lucene.Net 2.4.0 Class Library API</td> <td class="product"> </td> </tr> </table> </div> <div id="TitleRow"> <h1 class="dtH1">BooleanQuery.minNrShouldMatch Field </h1> </div> </div> <div id="nstext"> <p> </p> <div class="syntax">protected internal <a href="ms-help://MS.NETFrameworkSDKv1.1/cpref/html/frlrfSystemInt32ClassTopic.htm">int</a> minNrShouldMatch;</div> <p> </p> <h4 class="dtH4">See Also</h4> <p> <a href="Lucene.Net.Search.BooleanQuery.html">BooleanQuery Class</a> | <a href="Lucene.Net.Search.html">Lucene.Net.Search Namespace</a></p> <object type="application/x-oleobject" classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e" viewastext="true" style="display: none;"> <param name="Keyword" value="minNrShouldMatch field"> </param> <param name="Keyword" value="minNrShouldMatch field, BooleanQuery class"> </param> <param name="Keyword" value="BooleanQuery.minNrShouldMatch field"> </param> </object> <hr /> <div id="footer"> <p> </p> <p>Generated from assembly Lucene.Net [2.4.0.2]</p> </div> </div> </body> </html>
ambari-admin/src/main/resources/ui/admin-web/app/views/groups/create.html
arenadata/ambari
<!-- * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. --> <ol class="breadcrumb"> <li><a href="#/groups">{{'common.groups' | translate}}</a></li> <li class="active">{{'groups.createLocal' | translate}}</li> </ol> <hr> <form class="form-horizontal" role="form" novalidate name="form" autocomplete="off"> <div class="form-group" ng-class="{'has-error' : (form.group_name.$error.required || form.group_name.$error.pattern) && form.submitted}"> <label for="groupname" class="col-sm-2 control-label">{{'groups.name' | translate}}</label> <div class="col-sm-10"> <input type="text" id="groupname" class="form-control groupname-input" name="group_name" placeholder="{{'groups.name' | translate}}" ng-model="group.group_name" required ng-pattern="/^([a-zA-Z0-9._\s]+)$/" autocomplete="off"> <div class="alert alert-danger top-margin" ng-show="form.group_name.$error.required && form.submitted"> {{'common.alerts.fieldIsRequired' | translate}} </div> <div class="alert alert-danger top-margin" ng-show="form.group_name.$error.pattern && form.submitted"> {{'groups.alerts.onlySimpleChars' | translate}} </div> </div> </div> <div class="form-group"> <div class="col-sm-offset-2 col-sm-10"> <button class="btn btn-primary groupcreate-btn pull-right left-margin" ng-click="createGroup()">{{'common.controls.save' | translate}}</button> <a href ng-click="cancel()" class="btn btn-default pull-right cancel-button">{{'common.controls.cancel' | translate}}</a> </div> </div> </form>
doc/html/nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.html
benfinke/ns_python
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>dospolicy module &mdash; Nitro documentation</title> <link rel="stylesheet" href="_static/default.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: './', VERSION: '', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true }; </script> <script type="text/javascript" src="_static/jquery.js"></script> <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> <link rel="top" title="Nitro documentation" href="index.html" /> <link rel="up" title="dos package" href="nssrc.com.citrix.netscaler.nitro.resource.config.dos.html" /> <link rel="next" title="feo package" href="nssrc.com.citrix.netscaler.nitro.resource.config.feo.html" /> <link rel="prev" title="dos package" href="nssrc.com.citrix.netscaler.nitro.resource.config.dos.html" /> </head> <body> <div class="related"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="genindex.html" title="General Index" accesskey="I">index</a></li> <li class="right" > <a href="nssrc.com.citrix.netscaler.nitro.resource.config.feo.html" title="feo package" accesskey="N">next</a> |</li> <li class="right" > <a href="nssrc.com.citrix.netscaler.nitro.resource.config.dos.html" title="dos package" accesskey="P">previous</a> |</li> <li><a href="index.html">Nitro documentation</a> &raquo;</li> <li><a href="nssrc.com.citrix.netscaler.nitro.resource.config.html" >config package</a> &raquo;</li> <li><a href="nssrc.com.citrix.netscaler.nitro.resource.config.dos.html" accesskey="U">dos package</a> &raquo;</li> </ul> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> <div class="section" id="module-nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy"> <span id="dospolicy-module"></span><h1>dospolicy module<a class="headerlink" href="#module-nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy" title="Permalink to this headline">¶</a></h1> <dl class="class"> <dt id="nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy"> <em class="property">class </em><tt class="descname">dospolicy</tt><a class="headerlink" href="#nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy" title="Permalink to this definition">¶</a></dt> <dd><p>Bases: <a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.base.base_resource.html#nssrc.com.citrix.netscaler.nitro.resource.base.base_resource.base_resource" title="nssrc.com.citrix.netscaler.nitro.resource.base.base_resource.base_resource"><tt class="xref py py-class docutils literal"><span class="pre">nssrc.com.citrix.netscaler.nitro.resource.base.base_resource.base_resource</span></tt></a></p> <p>Configuration for DoS policy resource.</p> <dl class="attribute"> <dt id="nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.name"> <tt class="descname">name</tt><a class="headerlink" href="#nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.name" title="Permalink to this definition">¶</a></dt> <dd><p>Name for the HTTP DoS protection policy. Must begin with a letter, number, or the underscore character (_). Other characters allowed, after the first character, are the hyphen (-), period (.) hash (#), space ( ), at (&#64;), equals (=), and colon (:) characters.&lt;br/&gt;Minimum length = 1.</p> </dd></dl> <dl class="attribute"> <dt id="nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.qdepth"> <tt class="descname">qdepth</tt><a class="headerlink" href="#nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.qdepth" title="Permalink to this definition">¶</a></dt> <dd><p>Queue depth. The queue size (the number of outstanding service requests on the system) before DoS protection is activated on the service to which the DoS protection policy is bound.&lt;br/&gt;Minimum length = 21.</p> </dd></dl> <dl class="attribute"> <dt id="nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.cltdetectrate"> <tt class="descname">cltdetectrate</tt><a class="headerlink" href="#nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.cltdetectrate" title="Permalink to this definition">¶</a></dt> <dd><p>Client detect rate. Integer representing the percentage of traffic to which the HTTP DoS policy is to be applied after the queue depth condition is satisfied.&lt;br/&gt;Maximum length = 100.</p> </dd></dl> <dl class="classmethod"> <dt id="nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.add"> <em class="property">classmethod </em><tt class="descname">add</tt><big>(</big><em>client</em>, <em>resource</em><big>)</big><a class="headerlink" href="#nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.add" title="Permalink to this definition">¶</a></dt> <dd><p>Use this API to add dospolicy.</p> </dd></dl> <dl class="classmethod"> <dt id="nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.delete"> <em class="property">classmethod </em><tt class="descname">delete</tt><big>(</big><em>client</em>, <em>resource</em><big>)</big><a class="headerlink" href="#nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.delete" title="Permalink to this definition">¶</a></dt> <dd><p>Use this API to delete dospolicy.</p> </dd></dl> <dl class="classmethod"> <dt id="nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.update"> <em class="property">classmethod </em><tt class="descname">update</tt><big>(</big><em>client</em>, <em>resource</em><big>)</big><a class="headerlink" href="#nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.update" title="Permalink to this definition">¶</a></dt> <dd><p>Use this API to update dospolicy.</p> </dd></dl> <dl class="classmethod"> <dt id="nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.unset"> <em class="property">classmethod </em><tt class="descname">unset</tt><big>(</big><em>client</em>, <em>resource</em>, <em>args</em><big>)</big><a class="headerlink" href="#nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.unset" title="Permalink to this definition">¶</a></dt> <dd><p>Use this API to unset the properties of dospolicy resource. Properties that need to be unset are specified in args array.</p> </dd></dl> <dl class="classmethod"> <dt id="nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.get"> <em class="property">classmethod </em><tt class="descname">get</tt><big>(</big><em>client</em>, <em>name=''</em>, <em>option_=''</em><big>)</big><a class="headerlink" href="#nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.get" title="Permalink to this definition">¶</a></dt> <dd><p>Use this API to fetch all the dospolicy resources that are configured on netscaler.</p> </dd></dl> <dl class="classmethod"> <dt id="nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.get_filtered"> <em class="property">classmethod </em><tt class="descname">get_filtered</tt><big>(</big><em>client</em>, <em>filter_</em><big>)</big><a class="headerlink" href="#nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.get_filtered" title="Permalink to this definition">¶</a></dt> <dd><p>Use this API to fetch filtered set of dospolicy resources. filter string should be in JSON format.eg: &#8220;port:80,servicetype:HTTP&#8221;.</p> </dd></dl> <dl class="classmethod"> <dt id="nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.count"> <em class="property">classmethod </em><tt class="descname">count</tt><big>(</big><em>client</em><big>)</big><a class="headerlink" href="#nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.count" title="Permalink to this definition">¶</a></dt> <dd><p>Use this API to count the dospolicy resources configured on NetScaler.</p> </dd></dl> <dl class="classmethod"> <dt id="nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.count_filtered"> <em class="property">classmethod </em><tt class="descname">count_filtered</tt><big>(</big><em>client</em>, <em>filter_</em><big>)</big><a class="headerlink" href="#nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy.count_filtered" title="Permalink to this definition">¶</a></dt> <dd><p>Use this API to count filtered the set of dospolicy resources. Filter string should be in JSON format.eg: &#8220;port:80,servicetype:HTTP&#8221;.</p> </dd></dl> </dd></dl> <dl class="class"> <dt id="nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy_response"> <em class="property">class </em><tt class="descname">dospolicy_response</tt><big>(</big><em>length=1</em><big>)</big><a class="headerlink" href="#nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.dospolicy_response" title="Permalink to this definition">¶</a></dt> <dd><p>Bases: <a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.base.base_response.html#nssrc.com.citrix.netscaler.nitro.resource.base.base_response.base_response" title="nssrc.com.citrix.netscaler.nitro.resource.base.base_response.base_response"><tt class="xref py py-class docutils literal"><span class="pre">nssrc.com.citrix.netscaler.nitro.resource.base.base_response.base_response</span></tt></a></p> </dd></dl> </div> </div> </div> </div> <div class="sphinxsidebar"> <div class="sphinxsidebarwrapper"><ul class="globaltoc"><ul class="current"> <li class="toctree-l1"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.exception.html">Nitro exception Package</a></li> <li class="toctree-l1"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.base.html">Base Package</a></li> <li class="toctree-l1"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.service.html">Service Package</a></li> <li class="toctree-l1"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.util.html">Util Package</a></li> <li class="toctree-l1 current"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.html">Config Package</a><ul class="current"> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.aaa.html">aaa</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.app.html">app</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.appflow.html">appflow</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.appfw.html">appfw</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.appqoe.html">appqoe</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.audit.html">audit</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.authentication.html">authentication</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.authorization.html">authorization</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.autoscale.html">autoscale</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.basic.html">basic</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.ca.html">ca</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.cache.html">cache</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.cluster.html">cluster</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.cmp.html">cmp</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.cr.html">cr</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.cs.html">cs</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.db.html">db</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.dns.html">dns</a></li> <li class="toctree-l2 current"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.dos.html">dos</a><ul class="current"> <li class="toctree-l3 current"><a class="current reference internal" href="">dospolicy</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.feo.html">feo</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.filter.html">filter</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.gslb.html">gslb</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.ha.html">ha</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.ipsec.html">ipsec</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.lb.html">lb</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.lldp.html">lldp</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.network.html">network</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.ns.html">ns</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.ntp.html">ntp</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.policy.html">policy</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.pq.html">pq</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.protocol.html">protocol</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.responder.html">responder</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.rewrite.html">rewrite</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.rise.html">rise</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.router.html">router</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.sc.html">sc</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.snmp.html">snmp</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.spillover.html">spillover</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.ssl.html">ssl</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.stream.html">stream</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.system.html">system</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.tm.html">tm</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.transform.html">transform</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.tunnel.html">tunnel</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.utility.html">utility</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.vpn.html">vpn</a></li> <li class="toctree-l2"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.config.wi.html">wi</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="nssrc.com.citrix.netscaler.nitro.resource.stat.html">Stat Package</a></li> </ul> </ul> <h4>Previous topic</h4> <p class="topless"><a href="nssrc.com.citrix.netscaler.nitro.resource.config.dos.html" title="previous chapter">dos package</a></p> <h4>Next topic</h4> <p class="topless"><a href="nssrc.com.citrix.netscaler.nitro.resource.config.feo.html" title="next chapter">feo package</a></p> <h3>This Page</h3> <ul class="this-page-menu"> <li><a href="_sources/nssrc.com.citrix.netscaler.nitro.resource.config.dos.dospolicy.txt" rel="nofollow">Show Source</a></li> </ul> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> <p class="searchtip" style="font-size: 90%"> Enter search terms or a module, class or function name. </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> </div> </div> <div class="clearer"></div> </div> <div class="footer"> &copy; Copyright © 1999-2014 Citrix Systems, Inc. All Rights Reserved. Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2. </div> </body> </html>
docs/javadoc/com/newatlanta/repackaged/java/nio/file/FileSystemAlreadyExistsException.html
tberthel/gaevfs
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_17) on Wed Dec 02 14:32:14 EST 2009 --> <TITLE> FileSystemAlreadyExistsException </TITLE> <META NAME="date" CONTENT="2009-12-02"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="FileSystemAlreadyExistsException"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../../com/newatlanta/repackaged/java/nio/file/FileSystem.html" title="class in com.newatlanta.repackaged.java.nio.file"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../../com/newatlanta/repackaged/java/nio/file/FileSystemException.html" title="class in com.newatlanta.repackaged.java.nio.file"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?com/newatlanta/repackaged/java/nio/file/FileSystemAlreadyExistsException.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="FileSystemAlreadyExistsException.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#methods_inherited_from_class_java.lang.Throwable">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;METHOD</FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> com.newatlanta.repackaged.java.nio.file</FONT> <BR> Class FileSystemAlreadyExistsException</H2> <PRE> java.lang.Object <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by ">java.lang.Throwable <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by ">java.lang.Exception <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by ">java.lang.RuntimeException <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>com.newatlanta.repackaged.java.nio.file.FileSystemAlreadyExistsException</B> </PRE> <DL> <DT><B>All Implemented Interfaces:</B> <DD>java.io.Serializable</DD> </DL> <HR> <DL> <DT><PRE>public class <B>FileSystemAlreadyExistsException</B><DT>extends java.lang.RuntimeException</DL> </PRE> <P> Runtime exception thrown when an attempt is made to create a file system that already exists. <P> <P> <DL> <DT><B>See Also:</B><DD><A HREF="../../../../../../serialized-form.html#com.newatlanta.repackaged.java.nio.file.FileSystemAlreadyExistsException">Serialized Form</A></DL> <HR> <P> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <A NAME="constructor_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Constructor Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../../com/newatlanta/repackaged/java/nio/file/FileSystemAlreadyExistsException.html#FileSystemAlreadyExistsException()">FileSystemAlreadyExistsException</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Constructs an instance of this class.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../../com/newatlanta/repackaged/java/nio/file/FileSystemAlreadyExistsException.html#FileSystemAlreadyExistsException(java.lang.String)">FileSystemAlreadyExistsException</A></B>(java.lang.String&nbsp;msg)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Constructs an instance of this class.</TD> </TR> </TABLE> &nbsp; <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Throwable"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Throwable</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString</CODE></TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Constructor Detail</B></FONT></TH> </TR> </TABLE> <A NAME="FileSystemAlreadyExistsException()"><!-- --></A><H3> FileSystemAlreadyExistsException</H3> <PRE> public <B>FileSystemAlreadyExistsException</B>()</PRE> <DL> <DD>Constructs an instance of this class. <P> </DL> <HR> <A NAME="FileSystemAlreadyExistsException(java.lang.String)"><!-- --></A><H3> FileSystemAlreadyExistsException</H3> <PRE> public <B>FileSystemAlreadyExistsException</B>(java.lang.String&nbsp;msg)</PRE> <DL> <DD>Constructs an instance of this class. <P> <DL> <DT><B>Parameters:</B><DD><CODE>msg</CODE> - the detail message</DL> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../../com/newatlanta/repackaged/java/nio/file/FileSystem.html" title="class in com.newatlanta.repackaged.java.nio.file"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../../com/newatlanta/repackaged/java/nio/file/FileSystemException.html" title="class in com.newatlanta.repackaged.java.nio.file"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?com/newatlanta/repackaged/java/nio/file/FileSystemAlreadyExistsException.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="FileSystemAlreadyExistsException.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#methods_inherited_from_class_java.lang.Throwable">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;METHOD</FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
views/index.html
Tomella/cossap-3d
<!DOCTYPE html> <html> <head> <meta charset='UTF-8'> <meta name="robots" content="noindex"> <title>COSSAP 3D</title> <link href="cossap3d.css" rel="stylesheet" type="text/css"> </head> <body> <div class="c3d-controls"> <h3 bind-text="text.controlsHeading"> Suburface View </h3> <div class="c3d-surface-list"> <div class="surface"> <h4>View Properties</h4> <div class="texture"> <label>Stretch Elevation</label> (<span id="verticalExaggerationValue">1</span>) <input min="0.2" max="100" step="0.2" id="verticalExaggeration" type="range" value="1"/> </div> </div> </div> <div class="c3d-surface-list"> <div class="surface"> <h4>Surface Properties</h4> <div class="texture"> <label>Active surface</label> <div class="surface-name"> <div> <label>Satelite imagery</label> <input type="radio" name ="surfaceMaterialRadio" value="image" disabled="disabled" checked="checked" title="High resolution satelite imagery"/> </div> <div> <label>Topographic</label> <input type="radio" name ="surfaceMaterialRadio" value="topo" disabled="disabled" title="Geoscience Australia topograhical data" /> </div> <div> <label>Wireframe</label> <input type="radio" name ="surfaceMaterialRadio" value="wireframe" disabled="disabled" title="Low resolution wireframe surface overlay"/> </div> <div> <label>Heatmap</label> <input type="radio" name ="surfaceMaterialRadio" value="heatmap" disabled="disabled" title="Elevation derived heat map"/> </div> </div> </div> <div class="opacity"> <label>Opacity</label> <input min="0" max="1" step="0.05" id="surfaceOpacity" type="range" value="0.8" /> </div> </div> </div> <hr/> <div> <label for="borehole_visibility" style="width:16em; display:inline-block">Show/Hide Boreholes</label> <input type="checkbox" id="showHideBoreholes" checked="checked"> </div> <div> <label for="rocks_visibility" style="width:16em; display:inline-block">Show/Hide Rock Properties</label> <input type="checkbox" id="showHideRocks" checked="checked"> </div> </div> <div class="c3d-target"> <div id="messageBus"><img height="16px" src="resources/imgs/loading-black.gif"></img>Loading...</div> <div id="target"></div> <div id="intersection"></div> </div> <div id="helpPanel" class="open" style="width: 300px"> <hr/> <strong>Navgation Keys</strong> <ul> <li>A - Rotate anticlockwise</li> <li>D - Rotate clockwise</li> <li>W - Zoom in (also left mouse button)</li> <li>S - Zoom out (also right mouse button)</li> <li>R - Tilt towards</li> <li>F - Tilt away</li> </ul> </div> <div id="invalidParameter" class="hide"> Oh dear. The parameters are not recognizable.<br/> I can't draw anything as I don't know where you want it drawn. </div> <div id="serviceIsDead" class="hide"> Oh dear. We can't continue.<br/> One of the critical services is dead. Please try again later. </div> <!-- Stuff we didn't write--> <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r83/three.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/proj4js/2.3.15/proj4.js"></script> <!-- Make IE11 happy --> <script src="resources/polyfills.js"></script> <script src="resources/es6-promise.js"></script> <script src="cossap3d/bower_components/geotiffparser/js/GeotiffParser.js"></script> <!-- Our API's --> <script src="cossap3d/bower_components/elevation/dist/elevation.js"></script> <script src="cossap3d/bower_components/explorer-3d/dist/explorer3d.js"></script> <script src="cossap3d/cossap3d.js"></script> <script type="text/javascript"> Cossap3d.bootstrap(); </script> </body> </html>
web_parser/RGraph4/demos/basic-ajax-dynamic-updates.html
ubiss2015d/alpha
<!DOCTYPE html> <html> <head> <title>A basic example of dynamics updates with AJAX</title> <meta name="robots" content="noindex,nofollow" /> <meta name="description" content="A basic example of a chart created using dynamic updates and AJAX" /> <meta name="googlebot" content="NOODP"> <!-- Include the RGraph libraries --> <script src="../libraries/RGraph.common.core.js" ></script> <script src="../libraries/RGraph.line.js" ></script> <!--[if lt IE 9]><script src="../excanvas/excanvas.js"></script><![endif]--> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> </head> <body> <h1>A basic example of a chart created using dynamic updates and AJAX</h1> <p> This is a basic example of dynamic updates using AJAX to request the data from the server. There are more examples here: </p> <ul> <li><a href="/demos/line-dynamic-updates-range.html">/demos/line-dynamic-updates-range.html</a></li> <li><a href="/demos/line-dynamic-updates.html">/demos/line-dynamic-updates.html</a></li> </ul> <canvas id="cvs" width="600" height="250">[No canvas support]</canvas> <script> // Prefill the data array for (i=0,data=[];i<60; ++i) data[i] = null; /** * Ths window.onload function initiates the AJAX request. The AJAX page is: http://www.rgraph.net/getdata.html * If you view this in your browser you'll see that all it does is output a sequence of numbers. */ $(document).ready(ready = function () { RGraph.AJAX.getNumber('/getdata.html', draw); setTimeout(ready, 1000) }) /** * This is the AJAX callback function. It adds the number retrieved via * AJAX to the data array */ function draw (num) { // Add the number to the array of data data.push(num); // Get rid of the first value of the data array data.shift(); // Clear the canvas RGraph.reset(document.getElementById('cvs')); var line = new RGraph.Line({ id: 'cvs', data: data, options: { labels: ['60s','55s','50s','45s','40s','35s','30s','25s','20s','15s','10s','5s','0s'], numxticks: 12, background: { grid: { autofit: { numvlines: 12 } } }, ymax: 100 } }).draw() } </script> <p> <a href="https://www.facebook.com/sharer/sharer.php?u=http://www.rgraph.net" target="_blank" onclick="window.open('https://www.facebook.com/sharer/sharer.php?u=http://www.rgraph.net', null, 'top=50,left=50,width=600,height=368'); return false"><img src="../images/facebook-large.png" width="200" height="43" alt="Share on Facebook" border="0" title="Visit the RGraph Facebook page" /></a> <a href="https://twitter.com/_rgraph" target="_blank" onclick="window.open('https://twitter.com/_rgraph', null, 'top=50,left=50,width=700,height=400'); return false"><img src="../images/twitter-large.png" width="200" height="43" alt="Share on Twitter" border="0" title="Mention RGraph on Twitter" /></a> </p> </body> </html>
_posts/network/shaz/2012-11-07-cordova-plugins-put-them-in-your-own-repo.html
phonegap/blog
--- title: Cordova plugins? Put them in your own repo date: 2012-11-07 23:40:48 Z tags: - PhoneGap Network format: html external: true author: Shazron Abdullah link: http://shazronatadobe.wordpress.com/2012/11/07/cordova-plugins-put-them-in-your-own-repo-2/ type: post status: publish thumb: "/blog/uploads/thumb/shaz.png" --- [edited: removed reference to pluginstall which is PhoneGap Build centric, to Plugman which is based on pluginstall but is Cordova centric, and more frequently updated] Right now, there is one repo that contains the majority of plugins available for Cordova at: http://github.com/phonegap/phonegap-plugins We don't want to &#8220;clutter&#8221; this repo with code anymore. Authors should maintain [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shazronatadobe.wordpress.com&#038;blog=24879806&#038;post=522&#038;subd=shazronatadobe&#038;ref=&#038;feed=1" width="1" height="1" />
stores/templates/store_admin/customers/overview.html
codepython/CollectorCity-Market-Place
{% extends 'store_admin/customers/base_customers.html' %} {% load i18n %} {% block m_overview %}current_sub_menu{% endblock %} {% block main %} <div class="grid_7 box"> <div class="box_header"><h3><a href="{% url customers_sold_items %}"/>Sold Items</h3></a></div> <div class="box_body"> <p>Buyer's Name - Payment Status</p> {% for sell in sells|slice:":7" %} <p><a href='{% url sell_details sell.id %}'>{{ sell.bidder.username }} - {{ sell.payment.state_actual.get_state_display }}</a></p> {% endfor %} </br> <p><a href="{% url customers_sold_items %}"><b>{% trans "See all" %}</b></a></p> </div> </div> <div class="grid_7 box"> <div class="box_header"><h3><a href="{% url customers_mailing_list %}"/>Customer Mailing List</h3></a></div> <div class="box_body"> <p><a href=''>You Have XXX customers on your mailing list </a></p> </div> </div> {% comment %} <div class="grid_6 box"> <div class="box_header"><h3>{% trans "Payments" %}</h3></div> <div class="box_body"> {% for payment in payments %} <p></p> {% endfor %} <p><a href="">{% trans "See more" %}</a></p> </div> </div> <div class="clear"></div> <div class="grid_6 box"> <div class="box_header"><h3>{% trans "Shipments" %}</h3></div> <div class="box_body"> {% for shipment in shipments %} <p></p> {% endfor %} <p><a href="">{% trans "See more" %}</a></p> </div> </div> {% endcomment %} <div class="grid_14 box"> <div class="box_header"><a href="{% url customers_wish_lists %}" /> <h3>{% trans "Wish List" %}</h3></a></div> <div class="box_body"> {% if shop.wishlist_feature_enabled %} {% for wish in wishlistitems %} <p>{{ wish }}</p> {% endfor %} <br/> <p><a href="{% url customers_wish_lists %}"><b>{% trans "See more" %}</b></a></p> {% else %} <a title="{{ shop.wishlist_feature_help_text }}" class="enable_feature_box" href="{% url enable_feature 'wishlist' %}">{% trans "Enable Wish List Feature" %} for ${{ shop.wishlist_feature_price }}</a> {% endif %} </div> </div> <div class="clear"></div> {% endblock %}
tests/tables/paste01a-input.html
corinthia/corinthia-editorlib
<!DOCTYPE html> <html> <head> <link href="../generic.css" rel="stylesheet"/> <script> function performTest(api) { api.Outline.init(); api.PostponedActions.perform(); api.Clipboard.pasteHTML("<table>"+ "<tr><td>A</td><td>B</td></tr>"+ "<tr><td>C</td><td>D</td></tr>"+ "</table>"); api.tests.TestLib.showSelection(); } </script> </head> <body> <table width="100%"> <col width="25%"> <col width="25%"> <col width="25%"> <col width="25%"> <tr> <td>[One</td> <td>Two</td> <td>Three</td> <td>Four</td> </tr> <tr> <td>Five</td> <td>Six]</td> <td>Seven</td> <td>Eight</td> </tr> <tr> <td>Nine</td> <td>Ten</td> <td>Eleven</td> <td>Twelve</td> </tr> <tr> <td>Thirteen</td> <td>Fourteen</td> <td>Fifteen</td> <td>Sixteen</td> </tr> </table> </body> </html>
ui/dist/arbrowser.html
bisigc/art
<div id="ARdiv"> <div class="page-header"> <h1>Architectural Refactorings (ARs)</h1> </div> <div class="well well-sm" ng-if="isAllowed.check(['Admin','Editor'])"> <button class="btn btn-primary btn-sm" ng-click="$state.go('root.addar')">Add AR</button> </div> <div class="row"> <div class="col-md-8"> <table id="searchObjResults" class="table table-striped table-hover non-select"> <thead> <tr> <th>Name</th> <th>Smells</th> <th>Editor</th> <th>Created</th> <th>Status</th> <th></th> </tr> </thead> <tbody> <tr> <td><input class="form-control" ng-model="search.name" id="name" placeholder="Filter..." /></td> <td><input class="form-control" ng-model="search.smells.name" id="smellname" placeholder="Filter..." /></td> <td class="col-md-2"><input class="form-control" ng-model="search.editor" id="editor" placeholder="Filter..." /></td> <td class="col-md-2"><input class="form-control" ng-model="search.created" id="created" placeholder="Filter..." /></td> <td class="col-md-1"><input class="form-control" ng-model="search.status" id="status" placeholder="Filter..." /></td> <td><button type="button" class="btn btn-warning btn-sm" ng-click="search = []" uib-tooltip="Clear filter fields">clear</button></td> </tr> <tr> <th><a ng-click="reverseName=!reverseName;order('name', reverseName)">Name <span ng-show="reverseName">&#x25B2;</span><span ng-show="!reverseName">&#x25BC;</span></a></th> <th><a ng-click="reverseSmells=!reverseSmells;order('smells', reverseSmells)" uib-tooltip="Sorts by the amount of referenced smells">Smells <span ng-show="reverseSmells">&#x25B2;</span><span ng-show="!reverseSmells">&#x25BC;</span></a></th> <th><a ng-click="reverseEditor=!reverseEditor;order('editor', reverseEditor)">Editor <span ng-show="reverseEditor">&#x25B2;</span><span ng-show="!reverseEditor">&#x25BC;</span></a></th> <th><a ng-click="reverseCreated=!reverseCreated;order('created', reverseCreated)">Created <span ng-show="reverseCreated">&#x25B2;</span><span ng-show="!reverseCreated">&#x25BC;</span></a></th> <th><a ng-click="reverseStatus=!reverseStatus;order('status', reverseStatus)">Status <span ng-show="reverseStatus">&#x25B2;</span><span ng-show="!reverseStatus">&#x25BC;</span></a></th> <th></th> </tr> <tr ng-repeat="ar in arlist | filter:search" ng-dblclick="$state.go('root.singlear',{id: ar.arhead.id})"> <td> <script id="popoverdesc.html" type="text/ng-template"> <div ng-bind-html="ar.description | toSafeHtml"></div> </script> <a ui-sref="root.singlear({id: ar.arhead.id})" uib-tooltip="{{ar.name}}" uib-popover-template="'popoverdesc.html'" popover-title="{{ar.name}}" popover-trigger="mouseenter" popover-placement="right" popover-append-to-body>{{ar.name | limit: 30}}</a> </td> <td> <script id="popoversmelldesc.html" type="text/ng-template"> <div ng-bind-html="smell.description | toSafeHtml" ng-if="smell.description != ''"></div> </script> <span ng-repeat="smell in ar.smells track by $index"> <span ng-if="smell.description" uib-popover-template="'popoversmelldesc.html'" popover-title="{{smell.name}}" popover-trigger="mouseenter" popover-placement="bottom" popover-append-to-body> <a ui-sref="root.singlesmell({id: smell.id})">{{smell.name | limit: 30}}</a> <span ng-if="ar.smells.length - 1 != $index">, </span><br/> </span> <span ng-if="!smell.description" uib-popover="No description" popover-title="{{smell.name}}" popover-trigger="mouseenter" popover-placement="bottom" popover-append-to-body> <a ui-sref="root.singlesmell({id: smell.id})">{{smell.name | limit: 30}}</a> <span ng-if="ar.smells.length - 1 != $index">, </span><br/> </span> </span> </td> <td><a ui-sref="root.userview({id: ar.editor.id})">{{ar.editor.firstname}} {{ar.editor.lastname}}</a></td> <td>{{ar.created | date:'yyyy-MM-dd HH:mm:ss' }}</td> <td>{{ar.status}}</td> <td><a ui-sref="root.aredit({id: ar.id})" ng-if="isAllowed.check(['Admin','Editor'])" uib-tooltip="Edit AR"><span class="glyphicon glyphicon-pencil"></span></a>&nbsp;<a href ng-click="deleteAr(ar.arhead.id)" ng-if="isAllowed.check(['Admin'])" uib-tooltip="Delete AR"><span class="glyphicon glyphicon-trash"></span></a></td> </tr> </tbody> </table> </div> <div class="col-md-4"> <div class="panel panel-default"> <div class="panel-heading">Smell Cloud <span ng-bind-html="cloudcallstatus"></span><span class="glyphicon glyphicon-info-sign pull-right" uib-popover="Click on a Smell-Tag in the Cloud to filter the ARs (The weights for the values are recalculated in a 5 minute interval)" popover-trigger="click" popover-placement="left"></span></div> <div class="panel-body"> <jqcloud words="words" id="smellcloud" auto-resize="true" delay="50" steps="7" font-size="{from:0.09, to:0.04}"></jqcloud> </div> </div> </div> </div> </div>
css/bootstrap.css
octobiwancatnobi/squirrel-u
/*! * Bootstrap v3.3.5 (http://getbootstrap.com) * Copyright 2011-2015 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ html { font-family: sans-serif; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } body { margin: 0; } article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } audio:not([controls]) { display: none; height: 0; } [hidden], template { display: none; } a { background-color: transparent; } a:active, a:hover { outline: 0; } abbr[title] { border-bottom: 1px dotted; } b, strong { font-weight: bold; } dfn { font-style: italic; } h1 { margin: .67em 0; font-size: 2em; } mark { color: #000; background: #ff0; } small { font-size: 80%; } sub, sup { position: relative; font-size: 75%; line-height: 0; vertical-align: baseline; } sup { top: -.5em; } sub { bottom: -.25em; } img { border: 0; } svg:not(:root) { overflow: hidden; } figure { margin: 1em 40px; } hr { height: 0; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; } pre { overflow: auto; } code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } button, input, optgroup, select, textarea { margin: 0; font: inherit; color: inherit; } button { overflow: visible; } button, select { text-transform: none; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } button[disabled], html input[disabled] { cursor: default; } button::-moz-focus-inner, input::-moz-focus-inner { padding: 0; border: 0; } input { line-height: normal; } input[type="checkbox"], input[type="radio"] { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; padding: 0; } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } input[type="search"] { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; -webkit-appearance: textfield; } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } fieldset { padding: .35em .625em .75em; margin: 0 2px; border: 1px solid #c0c0c0; } legend { padding: 0; border: 0; } textarea { overflow: auto; } optgroup { font-weight: bold; } table { border-spacing: 0; border-collapse: collapse; } td, th { padding: 0; } /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ @media print { *, *:before, *:after { color: #000 !important; text-shadow: none !important; background: transparent !important; -webkit-box-shadow: none !important; box-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } a[href^="#"]:after, a[href^="javascript:"]:after { content: ""; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } thead { display: table-header-group; } tr, img { page-break-inside: avoid; } img { max-width: 100% !important; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } .navbar { display: none; } .btn > .caret, .dropup > .btn > .caret { border-top-color: #000 !important; } .label { border: 1px solid #000; } .table { border-collapse: collapse !important; } .table td, .table th { background-color: #fff !important; } .table-bordered th, .table-bordered td { border: 1px solid #ddd !important; } } @font-face { font-family: 'Glyphicons Halflings'; src: url('../fonts/glyphicons-halflings-regular.eot'); src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); } .glyphicon { position: relative; top: 1px; display: inline-block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: normal; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .glyphicon-asterisk:before { content: "\2a"; } .glyphicon-plus:before { content: "\2b"; } .glyphicon-euro:before, .glyphicon-eur:before { content: "\20ac"; } .glyphicon-minus:before { content: "\2212"; } .glyphicon-cloud:before { content: "\2601"; } .glyphicon-envelope:before { content: "\2709"; } .glyphicon-pencil:before { content: "\270f"; } .glyphicon-glass:before { content: "\e001"; } .glyphicon-music:before { content: "\e002"; } .glyphicon-search:before { content: "\e003"; } .glyphicon-heart:before { content: "\e005"; } .glyphicon-star:before { content: "\e006"; } .glyphicon-star-empty:before { content: "\e007"; } .glyphicon-user:before { content: "\e008"; } .glyphicon-film:before { content: "\e009"; } .glyphicon-th-large:before { content: "\e010"; } .glyphicon-th:before { content: "\e011"; } .glyphicon-th-list:before { content: "\e012"; } .glyphicon-ok:before { content: "\e013"; } .glyphicon-remove:before { content: "\e014"; } .glyphicon-zoom-in:before { content: "\e015"; } .glyphicon-zoom-out:before { content: "\e016"; } .glyphicon-off:before { content: "\e017"; } .glyphicon-signal:before { content: "\e018"; } .glyphicon-cog:before { content: "\e019"; } .glyphicon-trash:before { content: "\e020"; } .glyphicon-home:before { content: "\e021"; } .glyphicon-file:before { content: "\e022"; } .glyphicon-time:before { content: "\e023"; } .glyphicon-road:before { content: "\e024"; } .glyphicon-download-alt:before { content: "\e025"; } .glyphicon-download:before { content: "\e026"; } .glyphicon-upload:before { content: "\e027"; } .glyphicon-inbox:before { content: "\e028"; } .glyphicon-play-circle:before { content: "\e029"; } .glyphicon-repeat:before { content: "\e030"; } .glyphicon-refresh:before { content: "\e031"; } .glyphicon-list-alt:before { content: "\e032"; } .glyphicon-lock:before { content: "\e033"; } .glyphicon-flag:before { content: "\e034"; } .glyphicon-headphones:before { content: "\e035"; } .glyphicon-volume-off:before { content: "\e036"; } .glyphicon-volume-down:before { content: "\e037"; } .glyphicon-volume-up:before { content: "\e038"; } .glyphicon-qrcode:before { content: "\e039"; } .glyphicon-barcode:before { content: "\e040"; } .glyphicon-tag:before { content: "\e041"; } .glyphicon-tags:before { content: "\e042"; } .glyphicon-book:before { content: "\e043"; } .glyphicon-bookmark:before { content: "\e044"; } .glyphicon-print:before { content: "\e045"; } .glyphicon-camera:before { content: "\e046"; } .glyphicon-font:before { content: "\e047"; } .glyphicon-bold:before { content: "\e048"; } .glyphicon-italic:before { content: "\e049"; } .glyphicon-text-height:before { content: "\e050"; } .glyphicon-text-width:before { content: "\e051"; } .glyphicon-align-left:before { content: "\e052"; } .glyphicon-align-center:before { content: "\e053"; } .glyphicon-align-right:before { content: "\e054"; } .glyphicon-align-justify:before { content: "\e055"; } .glyphicon-list:before { content: "\e056"; } .glyphicon-indent-left:before { content: "\e057"; } .glyphicon-indent-right:before { content: "\e058"; } .glyphicon-facetime-video:before { content: "\e059"; } .glyphicon-picture:before { content: "\e060"; } .glyphicon-map-marker:before { content: "\e062"; } .glyphicon-adjust:before { content: "\e063"; } .glyphicon-tint:before { content: "\e064"; } .glyphicon-edit:before { content: "\e065"; } .glyphicon-share:before { content: "\e066"; } .glyphicon-check:before { content: "\e067"; } .glyphicon-move:before { content: "\e068"; } .glyphicon-step-backward:before { content: "\e069"; } .glyphicon-fast-backward:before { content: "\e070"; } .glyphicon-backward:before { content: "\e071"; } .glyphicon-play:before { content: "\e072"; } .glyphicon-pause:before { content: "\e073"; } .glyphicon-stop:before { content: "\e074"; } .glyphicon-forward:before { content: "\e075"; } .glyphicon-fast-forward:before { content: "\e076"; } .glyphicon-step-forward:before { content: "\e077"; } .glyphicon-eject:before { content: "\e078"; } .glyphicon-chevron-left:before { content: "\e079"; } .glyphicon-chevron-right:before { content: "\e080"; } .glyphicon-plus-sign:before { content: "\e081"; } .glyphicon-minus-sign:before { content: "\e082"; } .glyphicon-remove-sign:before { content: "\e083"; } .glyphicon-ok-sign:before { content: "\e084"; } .glyphicon-question-sign:before { content: "\e085"; } .glyphicon-info-sign:before { content: "\e086"; } .glyphicon-screenshot:before { content: "\e087"; } .glyphicon-remove-circle:before { content: "\e088"; } .glyphicon-ok-circle:before { content: "\e089"; } .glyphicon-ban-circle:before { content: "\e090"; } .glyphicon-arrow-left:before { content: "\e091"; } .glyphicon-arrow-right:before { content: "\e092"; } .glyphicon-arrow-up:before { content: "\e093"; } .glyphicon-arrow-down:before { content: "\e094"; } .glyphicon-share-alt:before { content: "\e095"; } .glyphicon-resize-full:before { content: "\e096"; } .glyphicon-resize-small:before { content: "\e097"; } .glyphicon-exclamation-sign:before { content: "\e101"; } .glyphicon-gift:before { content: "\e102"; } .glyphicon-leaf:before { content: "\e103"; } .glyphicon-fire:before { content: "\e104"; } .glyphicon-eye-open:before { content: "\e105"; } .glyphicon-eye-close:before { content: "\e106"; } .glyphicon-warning-sign:before { content: "\e107"; } .glyphicon-plane:before { content: "\e108"; } .glyphicon-calendar:before { content: "\e109"; } .glyphicon-random:before { content: "\e110"; } .glyphicon-comment:before { content: "\e111"; } .glyphicon-magnet:before { content: "\e112"; } .glyphicon-chevron-up:before { content: "\e113"; } .glyphicon-chevron-down:before { content: "\e114"; } .glyphicon-retweet:before { content: "\e115"; } .glyphicon-shopping-cart:before { content: "\e116"; } .glyphicon-folder-close:before { content: "\e117"; } .glyphicon-folder-open:before { content: "\e118"; } .glyphicon-resize-vertical:before { content: "\e119"; } .glyphicon-resize-horizontal:before { content: "\e120"; } .glyphicon-hdd:before { content: "\e121"; } .glyphicon-bullhorn:before { content: "\e122"; } .glyphicon-bell:before { content: "\e123"; } .glyphicon-certificate:before { content: "\e124"; } .glyphicon-thumbs-up:before { content: "\e125"; } .glyphicon-thumbs-down:before { content: "\e126"; } .glyphicon-hand-right:before { content: "\e127"; } .glyphicon-hand-left:before { content: "\e128"; } .glyphicon-hand-up:before { content: "\e129"; } .glyphicon-hand-down:before { content: "\e130"; } .glyphicon-circle-arrow-right:before { content: "\e131"; } .glyphicon-circle-arrow-left:before { content: "\e132"; } .glyphicon-circle-arrow-up:before { content: "\e133"; } .glyphicon-circle-arrow-down:before { content: "\e134"; } .glyphicon-globe:before { content: "\e135"; } .glyphicon-wrench:before { content: "\e136"; } .glyphicon-tasks:before { content: "\e137"; } .glyphicon-filter:before { content: "\e138"; } .glyphicon-briefcase:before { content: "\e139"; } .glyphicon-fullscreen:before { content: "\e140"; } .glyphicon-dashboard:before { content: "\e141"; } .glyphicon-paperclip:before { content: "\e142"; } .glyphicon-heart-empty:before { content: "\e143"; } .glyphicon-link:before { content: "\e144"; } .glyphicon-phone:before { content: "\e145"; } .glyphicon-pushpin:before { content: "\e146"; } .glyphicon-usd:before { content: "\e148"; } .glyphicon-gbp:before { content: "\e149"; } .glyphicon-sort:before { content: "\e150"; } .glyphicon-sort-by-alphabet:before { content: "\e151"; } .glyphicon-sort-by-alphabet-alt:before { content: "\e152"; } .glyphicon-sort-by-order:before { content: "\e153"; } .glyphicon-sort-by-order-alt:before { content: "\e154"; } .glyphicon-sort-by-attributes:before { content: "\e155"; } .glyphicon-sort-by-attributes-alt:before { content: "\e156"; } .glyphicon-unchecked:before { content: "\e157"; } .glyphicon-expand:before { content: "\e158"; } .glyphicon-collapse-down:before { content: "\e159"; } .glyphicon-collapse-up:before { content: "\e160"; } .glyphicon-log-in:before { content: "\e161"; } .glyphicon-flash:before { content: "\e162"; } .glyphicon-log-out:before { content: "\e163"; } .glyphicon-new-window:before { content: "\e164"; } .glyphicon-record:before { content: "\e165"; } .glyphicon-save:before { content: "\e166"; } .glyphicon-open:before { content: "\e167"; } .glyphicon-saved:before { content: "\e168"; } .glyphicon-import:before { content: "\e169"; } .glyphicon-export:before { content: "\e170"; } .glyphicon-send:before { content: "\e171"; } .glyphicon-floppy-disk:before { content: "\e172"; } .glyphicon-floppy-saved:before { content: "\e173"; } .glyphicon-floppy-remove:before { content: "\e174"; } .glyphicon-floppy-save:before { content: "\e175"; } .glyphicon-floppy-open:before { content: "\e176"; } .glyphicon-credit-card:before { content: "\e177"; } .glyphicon-transfer:before { content: "\e178"; } .glyphicon-cutlery:before { content: "\e179"; } .glyphicon-header:before { content: "\e180"; } .glyphicon-compressed:before { content: "\e181"; } .glyphicon-earphone:before { content: "\e182"; } .glyphicon-phone-alt:before { content: "\e183"; } .glyphicon-tower:before { content: "\e184"; } .glyphicon-stats:before { content: "\e185"; } .glyphicon-sd-video:before { content: "\e186"; } .glyphicon-hd-video:before { content: "\e187"; } .glyphicon-subtitles:before { content: "\e188"; } .glyphicon-sound-stereo:before { content: "\e189"; } .glyphicon-sound-dolby:before { content: "\e190"; } .glyphicon-sound-5-1:before { content: "\e191"; } .glyphicon-sound-6-1:before { content: "\e192"; } .glyphicon-sound-7-1:before { content: "\e193"; } .glyphicon-copyright-mark:before { content: "\e194"; } .glyphicon-registration-mark:before { content: "\e195"; } .glyphicon-cloud-download:before { content: "\e197"; } .glyphicon-cloud-upload:before { content: "\e198"; } .glyphicon-tree-conifer:before { content: "\e199"; } .glyphicon-tree-deciduous:before { content: "\e200"; } .glyphicon-cd:before { content: "\e201"; } .glyphicon-save-file:before { content: "\e202"; } .glyphicon-open-file:before { content: "\e203"; } .glyphicon-level-up:before { content: "\e204"; } .glyphicon-copy:before { content: "\e205"; } .glyphicon-paste:before { content: "\e206"; } .glyphicon-alert:before { content: "\e209"; } .glyphicon-equalizer:before { content: "\e210"; } .glyphicon-king:before { content: "\e211"; } .glyphicon-queen:before { content: "\e212"; } .glyphicon-pawn:before { content: "\e213"; } .glyphicon-bishop:before { content: "\e214"; } .glyphicon-knight:before { content: "\e215"; } .glyphicon-baby-formula:before { content: "\e216"; } .glyphicon-tent:before { content: "\26fa"; } .glyphicon-blackboard:before { content: "\e218"; } .glyphicon-bed:before { content: "\e219"; } .glyphicon-apple:before { content: "\f8ff"; } .glyphicon-erase:before { content: "\e221"; } .glyphicon-hourglass:before { content: "\231b"; } .glyphicon-lamp:before { content: "\e223"; } .glyphicon-duplicate:before { content: "\e224"; } .glyphicon-piggy-bank:before { content: "\e225"; } .glyphicon-scissors:before { content: "\e226"; } .glyphicon-bitcoin:before { content: "\e227"; } .glyphicon-btc:before { content: "\e227"; } .glyphicon-xbt:before { content: "\e227"; } .glyphicon-yen:before { content: "\00a5"; } .glyphicon-jpy:before { content: "\00a5"; } .glyphicon-ruble:before { content: "\20bd"; } .glyphicon-rub:before { content: "\20bd"; } .glyphicon-scale:before { content: "\e230"; } .glyphicon-ice-lolly:before { content: "\e231"; } .glyphicon-ice-lolly-tasted:before { content: "\e232"; } .glyphicon-education:before { content: "\e233"; } .glyphicon-option-horizontal:before { content: "\e234"; } .glyphicon-option-vertical:before { content: "\e235"; } .glyphicon-menu-hamburger:before { content: "\e236"; } .glyphicon-modal-window:before { content: "\e237"; } .glyphicon-oil:before { content: "\e238"; } .glyphicon-grain:before { content: "\e239"; } .glyphicon-sunglasses:before { content: "\e240"; } .glyphicon-text-size:before { content: "\e241"; } .glyphicon-text-color:before { content: "\e242"; } .glyphicon-text-background:before { content: "\e243"; } .glyphicon-object-align-top:before { content: "\e244"; } .glyphicon-object-align-bottom:before { content: "\e245"; } .glyphicon-object-align-horizontal:before { content: "\e246"; } .glyphicon-object-align-left:before { content: "\e247"; } .glyphicon-object-align-vertical:before { content: "\e248"; } .glyphicon-object-align-right:before { content: "\e249"; } .glyphicon-triangle-right:before { content: "\e250"; } .glyphicon-triangle-left:before { content: "\e251"; } .glyphicon-triangle-bottom:before { content: "\e252"; } .glyphicon-triangle-top:before { content: "\e253"; } .glyphicon-console:before { content: "\e254"; } .glyphicon-superscript:before { content: "\e255"; } .glyphicon-subscript:before { content: "\e256"; } .glyphicon-menu-left:before { content: "\e257"; } .glyphicon-menu-right:before { content: "\e258"; } .glyphicon-menu-down:before { content: "\e259"; } .glyphicon-menu-up:before { content: "\e260"; } * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } html { font-size: 10px; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } body { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.42857143; color: #333; background-color: #fff; } input, button, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; } a { color: #337ab7; text-decoration: none; } a:hover, a:focus { color: #23527c; text-decoration: underline; } a:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } figure { margin: 0; } img { vertical-align: middle; } .img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img { display: block; max-width: 100%; height: auto; } .img-rounded { border-radius: 6px; } .img-thumbnail { display: inline-block; max-width: 100%; height: auto; padding: 4px; line-height: 1.42857143; background-color: #fff; border: 1px solid #ddd; border-radius: 4px; -webkit-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .img-circle { border-radius: 50%; } hr { margin-top: 20px; margin-bottom: 20px; border: 0; border-top: 1px solid #eee; } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; } .sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; } [role="button"] { cursor: pointer; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: inherit; font-weight: 500; line-height: 1.1; color: inherit; } h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small { font-weight: normal; line-height: 1; color: #777; } h1, .h1, h2, .h2, h3, .h3 { margin-top: 20px; margin-bottom: 10px; } h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small { font-size: 65%; } h4, .h4, h5, .h5, h6, .h6 { margin-top: 10px; margin-bottom: 10px; } h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small { font-size: 75%; } h1, .h1 { font-size: 36px; } h2, .h2 { font-size: 30px; } h3, .h3 { font-size: 24px; } h4, .h4 { font-size: 18px; } h5, .h5 { font-size: 14px; } h6, .h6 { font-size: 12px; } p { margin: 0 0 10px; } .lead { margin-bottom: 20px; font-size: 16px; font-weight: 300; line-height: 1.4; } @media (min-width: 768px) { .lead { font-size: 21px; } } small, .small { font-size: 85%; } mark, .mark { padding: .2em; background-color: #fcf8e3; } .text-left { text-align: left; } .text-right { text-align: right; } .text-center { text-align: center; } .text-justify { text-align: justify; } .text-nowrap { white-space: nowrap; } .text-lowercase { text-transform: lowercase; } .text-uppercase { text-transform: uppercase; } .text-capitalize { text-transform: capitalize; } .text-muted { color: #777; } .text-primary { color: #337ab7; } a.text-primary:hover, a.text-primary:focus { color: #286090; } .text-success { color: #3c763d; } a.text-success:hover, a.text-success:focus { color: #2b542c; } .text-info { color: #31708f; } a.text-info:hover, a.text-info:focus { color: #245269; } .text-warning { color: #8a6d3b; } a.text-warning:hover, a.text-warning:focus { color: #66512c; } .text-danger { color: #a94442; } a.text-danger:hover, a.text-danger:focus { color: #843534; } .bg-primary { color: #fff; background-color: #337ab7; } a.bg-primary:hover, a.bg-primary:focus { background-color: #286090; } .bg-success { background-color: #dff0d8; } a.bg-success:hover, a.bg-success:focus { background-color: #c1e2b3; } .bg-info { background-color: #d9edf7; } a.bg-info:hover, a.bg-info:focus { background-color: #afd9ee; } .bg-warning { background-color: #fcf8e3; } a.bg-warning:hover, a.bg-warning:focus { background-color: #f7ecb5; } .bg-danger { background-color: #f2dede; } a.bg-danger:hover, a.bg-danger:focus { background-color: #e4b9b9; } .page-header { padding-bottom: 9px; margin: 40px 0 20px; border-bottom: 1px solid #eee; } ul, ol { margin-top: 0; margin-bottom: 10px; } ul ul, ol ul, ul ol, ol ol { margin-bottom: 0; } .list-unstyled { padding-left: 0; list-style: none; } .list-inline { padding-left: 0; margin-left: -5px; list-style: none; } .list-inline > li { display: inline-block; padding-right: 5px; padding-left: 5px; } dl { margin-top: 0; margin-bottom: 20px; } dt, dd { line-height: 1.42857143; } dt { font-weight: bold; } dd { margin-left: 0; } @media (min-width: 768px) { .dl-horizontal dt { float: left; width: 160px; overflow: hidden; clear: left; text-align: right; text-overflow: ellipsis; white-space: nowrap; } .dl-horizontal dd { margin-left: 180px; } } abbr[title], abbr[data-original-title] { cursor: help; border-bottom: 1px dotted #777; } .initialism { font-size: 90%; text-transform: uppercase; } blockquote { padding: 10px 20px; margin: 0 0 20px; font-size: 17.5px; border-left: 5px solid #eee; } blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child { margin-bottom: 0; } blockquote footer, blockquote small, blockquote .small { display: block; font-size: 80%; line-height: 1.42857143; color: #777; } blockquote footer:before, blockquote small:before, blockquote .small:before { content: '\2014 \00A0'; } .blockquote-reverse, blockquote.pull-right { padding-right: 15px; padding-left: 0; text-align: right; border-right: 5px solid #eee; border-left: 0; } .blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before { content: ''; } .blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after { content: '\00A0 \2014'; } address { margin-bottom: 20px; font-style: normal; line-height: 1.42857143; } code, kbd, pre, samp { font-family: Menlo, Monaco, Consolas, "Courier New", monospace; } code { padding: 2px 4px; font-size: 90%; color: #c7254e; background-color: #f9f2f4; border-radius: 4px; } kbd { padding: 2px 4px; font-size: 90%; color: #fff; background-color: #333; border-radius: 3px; -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); } kbd kbd { padding: 0; font-size: 100%; font-weight: bold; -webkit-box-shadow: none; box-shadow: none; } pre { display: block; padding: 9.5px; margin: 0 0 10px; font-size: 13px; line-height: 1.42857143; color: #333; word-break: break-all; word-wrap: break-word; background-color: #f5f5f5; border: 1px solid #ccc; border-radius: 4px; } pre code { padding: 0; font-size: inherit; color: inherit; white-space: pre-wrap; background-color: transparent; border-radius: 0; } .pre-scrollable { max-height: 340px; overflow-y: scroll; } .container { padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } @media (min-width: 768px) { .container { width: 750px; } } @media (min-width: 992px) { .container { width: 970px; } } @media (min-width: 1200px) { .container { width: 1170px; } } .container-fluid { padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } .row { margin-right: -15px; margin-left: -15px; } .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { position: relative; min-height: 1px; padding-right: 15px; padding-left: 15px; } .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { float: left; } .col-xs-12 { width: 100%; } .col-xs-11 { width: 91.66666667%; } .col-xs-10 { width: 83.33333333%; } .col-xs-9 { width: 75%; } .col-xs-8 { width: 66.66666667%; } .col-xs-7 { width: 58.33333333%; } .col-xs-6 { width: 50%; } .col-xs-5 { width: 41.66666667%; } .col-xs-4 { width: 33.33333333%; } .col-xs-3 { width: 25%; } .col-xs-2 { width: 16.66666667%; } .col-xs-1 { width: 8.33333333%; } .col-xs-pull-12 { right: 100%; } .col-xs-pull-11 { right: 91.66666667%; } .col-xs-pull-10 { right: 83.33333333%; } .col-xs-pull-9 { right: 75%; } .col-xs-pull-8 { right: 66.66666667%; } .col-xs-pull-7 { right: 58.33333333%; } .col-xs-pull-6 { right: 50%; } .col-xs-pull-5 { right: 41.66666667%; } .col-xs-pull-4 { right: 33.33333333%; } .col-xs-pull-3 { right: 25%; } .col-xs-pull-2 { right: 16.66666667%; } .col-xs-pull-1 { right: 8.33333333%; } .col-xs-pull-0 { right: auto; } .col-xs-push-12 { left: 100%; } .col-xs-push-11 { left: 91.66666667%; } .col-xs-push-10 { left: 83.33333333%; } .col-xs-push-9 { left: 75%; } .col-xs-push-8 { left: 66.66666667%; } .col-xs-push-7 { left: 58.33333333%; } .col-xs-push-6 { left: 50%; } .col-xs-push-5 { left: 41.66666667%; } .col-xs-push-4 { left: 33.33333333%; } .col-xs-push-3 { left: 25%; } .col-xs-push-2 { left: 16.66666667%; } .col-xs-push-1 { left: 8.33333333%; } .col-xs-push-0 { left: auto; } .col-xs-offset-12 { margin-left: 100%; } .col-xs-offset-11 { margin-left: 91.66666667%; } .col-xs-offset-10 { margin-left: 83.33333333%; } .col-xs-offset-9 { margin-left: 75%; } .col-xs-offset-8 { margin-left: 66.66666667%; } .col-xs-offset-7 { margin-left: 58.33333333%; } .col-xs-offset-6 { margin-left: 50%; } .col-xs-offset-5 { margin-left: 41.66666667%; } .col-xs-offset-4 { margin-left: 33.33333333%; } .col-xs-offset-3 { margin-left: 25%; } .col-xs-offset-2 { margin-left: 16.66666667%; } .col-xs-offset-1 { margin-left: 8.33333333%; } .col-xs-offset-0 { margin-left: 0; } @media (min-width: 768px) { .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { float: left; } .col-sm-12 { width: 100%; } .col-sm-11 { width: 91.66666667%; } .col-sm-10 { width: 83.33333333%; } .col-sm-9 { width: 75%; } .col-sm-8 { width: 66.66666667%; } .col-sm-7 { width: 58.33333333%; } .col-sm-6 { width: 50%; } .col-sm-5 { width: 41.66666667%; } .col-sm-4 { width: 33.33333333%; } .col-sm-3 { width: 25%; } .col-sm-2 { width: 16.66666667%; } .col-sm-1 { width: 8.33333333%; } .col-sm-pull-12 { right: 100%; } .col-sm-pull-11 { right: 91.66666667%; } .col-sm-pull-10 { right: 83.33333333%; } .col-sm-pull-9 { right: 75%; } .col-sm-pull-8 { right: 66.66666667%; } .col-sm-pull-7 { right: 58.33333333%; } .col-sm-pull-6 { right: 50%; } .col-sm-pull-5 { right: 41.66666667%; } .col-sm-pull-4 { right: 33.33333333%; } .col-sm-pull-3 { right: 25%; } .col-sm-pull-2 { right: 16.66666667%; } .col-sm-pull-1 { right: 8.33333333%; } .col-sm-pull-0 { right: auto; } .col-sm-push-12 { left: 100%; } .col-sm-push-11 { left: 91.66666667%; } .col-sm-push-10 { left: 83.33333333%; } .col-sm-push-9 { left: 75%; } .col-sm-push-8 { left: 66.66666667%; } .col-sm-push-7 { left: 58.33333333%; } .col-sm-push-6 { left: 50%; } .col-sm-push-5 { left: 41.66666667%; } .col-sm-push-4 { left: 33.33333333%; } .col-sm-push-3 { left: 25%; } .col-sm-push-2 { left: 16.66666667%; } .col-sm-push-1 { left: 8.33333333%; } .col-sm-push-0 { left: auto; } .col-sm-offset-12 { margin-left: 100%; } .col-sm-offset-11 { margin-left: 91.66666667%; } .col-sm-offset-10 { margin-left: 83.33333333%; } .col-sm-offset-9 { margin-left: 75%; } .col-sm-offset-8 { margin-left: 66.66666667%; } .col-sm-offset-7 { margin-left: 58.33333333%; } .col-sm-offset-6 { margin-left: 50%; } .col-sm-offset-5 { margin-left: 41.66666667%; } .col-sm-offset-4 { margin-left: 33.33333333%; } .col-sm-offset-3 { margin-left: 25%; } .col-sm-offset-2 { margin-left: 16.66666667%; } .col-sm-offset-1 { margin-left: 8.33333333%; } .col-sm-offset-0 { margin-left: 0; } } @media (min-width: 992px) { .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { float: left; } .col-md-12 { width: 100%; } .col-md-11 { width: 91.66666667%; } .col-md-10 { width: 83.33333333%; } .col-md-9 { width: 75%; } .col-md-8 { width: 66.66666667%; } .col-md-7 { width: 58.33333333%; } .col-md-6 { width: 50%; } .col-md-5 { width: 41.66666667%; } .col-md-4 { width: 33.33333333%; } .col-md-3 { width: 25%; } .col-md-2 { width: 16.66666667%; } .col-md-1 { width: 8.33333333%; } .col-md-pull-12 { right: 100%; } .col-md-pull-11 { right: 91.66666667%; } .col-md-pull-10 { right: 83.33333333%; } .col-md-pull-9 { right: 75%; } .col-md-pull-8 { right: 66.66666667%; } .col-md-pull-7 { right: 58.33333333%; } .col-md-pull-6 { right: 50%; } .col-md-pull-5 { right: 41.66666667%; } .col-md-pull-4 { right: 33.33333333%; } .col-md-pull-3 { right: 25%; } .col-md-pull-2 { right: 16.66666667%; } .col-md-pull-1 { right: 8.33333333%; } .col-md-pull-0 { right: auto; } .col-md-push-12 { left: 100%; } .col-md-push-11 { left: 91.66666667%; } .col-md-push-10 { left: 83.33333333%; } .col-md-push-9 { left: 75%; } .col-md-push-8 { left: 66.66666667%; } .col-md-push-7 { left: 58.33333333%; } .col-md-push-6 { left: 50%; } .col-md-push-5 { left: 41.66666667%; } .col-md-push-4 { left: 33.33333333%; } .col-md-push-3 { left: 25%; } .col-md-push-2 { left: 16.66666667%; } .col-md-push-1 { left: 8.33333333%; } .col-md-push-0 { left: auto; } .col-md-offset-12 { margin-left: 100%; } .col-md-offset-11 { margin-left: 91.66666667%; } .col-md-offset-10 { margin-left: 83.33333333%; } .col-md-offset-9 { margin-left: 75%; } .col-md-offset-8 { margin-left: 66.66666667%; } .col-md-offset-7 { margin-left: 58.33333333%; } .col-md-offset-6 { margin-left: 50%; } .col-md-offset-5 { margin-left: 41.66666667%; } .col-md-offset-4 { margin-left: 33.33333333%; } .col-md-offset-3 { margin-left: 25%; } .col-md-offset-2 { margin-left: 16.66666667%; } .col-md-offset-1 { margin-left: 8.33333333%; } .col-md-offset-0 { margin-left: 0; } } @media (min-width: 1200px) { .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { float: left; } .col-lg-12 { width: 100%; } .col-lg-11 { width: 91.66666667%; } .col-lg-10 { width: 83.33333333%; } .col-lg-9 { width: 75%; } .col-lg-8 { width: 66.66666667%; } .col-lg-7 { width: 58.33333333%; } .col-lg-6 { width: 50%; } .col-lg-5 { width: 41.66666667%; } .col-lg-4 { width: 33.33333333%; } .col-lg-3 { width: 25%; } .col-lg-2 { width: 16.66666667%; } .col-lg-1 { width: 8.33333333%; } .col-lg-pull-12 { right: 100%; } .col-lg-pull-11 { right: 91.66666667%; } .col-lg-pull-10 { right: 83.33333333%; } .col-lg-pull-9 { right: 75%; } .col-lg-pull-8 { right: 66.66666667%; } .col-lg-pull-7 { right: 58.33333333%; } .col-lg-pull-6 { right: 50%; } .col-lg-pull-5 { right: 41.66666667%; } .col-lg-pull-4 { right: 33.33333333%; } .col-lg-pull-3 { right: 25%; } .col-lg-pull-2 { right: 16.66666667%; } .col-lg-pull-1 { right: 8.33333333%; } .col-lg-pull-0 { right: auto; } .col-lg-push-12 { left: 100%; } .col-lg-push-11 { left: 91.66666667%; } .col-lg-push-10 { left: 83.33333333%; } .col-lg-push-9 { left: 75%; } .col-lg-push-8 { left: 66.66666667%; } .col-lg-push-7 { left: 58.33333333%; } .col-lg-push-6 { left: 50%; } .col-lg-push-5 { left: 41.66666667%; } .col-lg-push-4 { left: 33.33333333%; } .col-lg-push-3 { left: 25%; } .col-lg-push-2 { left: 16.66666667%; } .col-lg-push-1 { left: 8.33333333%; } .col-lg-push-0 { left: auto; } .col-lg-offset-12 { margin-left: 100%; } .col-lg-offset-11 { margin-left: 91.66666667%; } .col-lg-offset-10 { margin-left: 83.33333333%; } .col-lg-offset-9 { margin-left: 75%; } .col-lg-offset-8 { margin-left: 66.66666667%; } .col-lg-offset-7 { margin-left: 58.33333333%; } .col-lg-offset-6 { margin-left: 50%; } .col-lg-offset-5 { margin-left: 41.66666667%; } .col-lg-offset-4 { margin-left: 33.33333333%; } .col-lg-offset-3 { margin-left: 25%; } .col-lg-offset-2 { margin-left: 16.66666667%; } .col-lg-offset-1 { margin-left: 8.33333333%; } .col-lg-offset-0 { margin-left: 0; } } table { background-color: transparent; } caption { padding-top: 8px; padding-bottom: 8px; color: #777; text-align: left; } th { text-align: left; } .table { width: 100%; max-width: 100%; margin-bottom: 20px; } .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td { padding: 8px; line-height: 1.42857143; vertical-align: top; border-top: 1px solid #ddd; } .table > thead > tr > th { vertical-align: bottom; border-bottom: 2px solid #ddd; } .table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > td { border-top: 0; } .table > tbody + tbody { border-top: 2px solid #ddd; } .table .table { background-color: #fff; } .table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td { padding: 5px; } .table-bordered { border: 1px solid #ddd; } .table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td { border: 1px solid #ddd; } .table-bordered > thead > tr > th, .table-bordered > thead > tr > td { border-bottom-width: 2px; } .table-striped > tbody > tr:nth-of-type(odd) { background-color: #f9f9f9; } .table-hover > tbody > tr:hover { background-color: #f5f5f5; } table col[class*="col-"] { position: static; display: table-column; float: none; } table td[class*="col-"], table th[class*="col-"] { position: static; display: table-cell; float: none; } .table > thead > tr > td.active, .table > tbody > tr > td.active, .table > tfoot > tr > td.active, .table > thead > tr > th.active, .table > tbody > tr > th.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > tbody > tr.active > td, .table > tfoot > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr.active > th, .table > tfoot > tr.active > th { background-color: #f5f5f5; } .table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th { background-color: #e8e8e8; } .table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th { background-color: #dff0d8; } .table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th { background-color: #d0e9c6; } .table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th { background-color: #d9edf7; } .table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th { background-color: #c4e3f3; } .table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th { background-color: #fcf8e3; } .table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th { background-color: #faf2cc; } .table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th { background-color: #f2dede; } .table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th { background-color: #ebcccc; } .table-responsive { min-height: .01%; overflow-x: auto; } @media screen and (max-width: 767px) { .table-responsive { width: 100%; margin-bottom: 15px; overflow-y: hidden; -ms-overflow-style: -ms-autohiding-scrollbar; border: 1px solid #ddd; } .table-responsive > .table { margin-bottom: 0; } .table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > td { white-space: nowrap; } .table-responsive > .table-bordered { border: 0; } .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > td { border-bottom: 0; } } fieldset { min-width: 0; padding: 0; margin: 0; border: 0; } legend { display: block; width: 100%; padding: 0; margin-bottom: 20px; font-size: 21px; line-height: inherit; color: #333; border: 0; border-bottom: 1px solid #e5e5e5; } label { display: inline-block; max-width: 100%; margin-bottom: 5px; font-weight: bold; } input[type="search"] { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } input[type="radio"], input[type="checkbox"] { margin: 4px 0 0; margin-top: 1px \9; line-height: normal; } input[type="file"] { display: block; } input[type="range"] { display: block; width: 100%; } select[multiple], select[size] { height: auto; } input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } output { display: block; padding-top: 7px; font-size: 14px; line-height: 1.42857143; color: #555; } .form-control { display: block; width: 100%; height: 34px; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; color: #555; background-color: #fff; background-image: none; border: 1px solid #ccc; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .form-control:focus { border-color: #66afe9; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); } .form-control::-moz-placeholder { color: #999; opacity: 1; } .form-control:-ms-input-placeholder { color: #999; } .form-control::-webkit-input-placeholder { color: #999; } .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { background-color: #eee; opacity: 1; } .form-control[disabled], fieldset[disabled] .form-control { cursor: not-allowed; } textarea.form-control { height: auto; } input[type="search"] { -webkit-appearance: none; } @media screen and (-webkit-min-device-pixel-ratio: 0) { input[type="date"].form-control, input[type="time"].form-control, input[type="datetime-local"].form-control, input[type="month"].form-control { line-height: 34px; } input[type="date"].input-sm, input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm, .input-group-sm input[type="date"], .input-group-sm input[type="time"], .input-group-sm input[type="datetime-local"], .input-group-sm input[type="month"] { line-height: 30px; } input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg, .input-group-lg input[type="date"], .input-group-lg input[type="time"], .input-group-lg input[type="datetime-local"], .input-group-lg input[type="month"] { line-height: 46px; } } .form-group { margin-bottom: 15px; } .radio, .checkbox { position: relative; display: block; margin-top: 10px; margin-bottom: 10px; } .radio label, .checkbox label { min-height: 20px; padding-left: 20px; margin-bottom: 0; font-weight: normal; cursor: pointer; } .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { position: absolute; margin-top: 4px \9; margin-left: -20px; } .radio + .radio, .checkbox + .checkbox { margin-top: -5px; } .radio-inline, .checkbox-inline { position: relative; display: inline-block; padding-left: 20px; margin-bottom: 0; font-weight: normal; vertical-align: middle; cursor: pointer; } .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline { margin-top: 0; margin-left: 10px; } input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"].disabled, input[type="checkbox"].disabled, fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"] { cursor: not-allowed; } .radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox-inline { cursor: not-allowed; } .radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio label, fieldset[disabled] .checkbox label { cursor: not-allowed; } .form-control-static { min-height: 34px; padding-top: 7px; padding-bottom: 7px; margin-bottom: 0; } .form-control-static.input-lg, .form-control-static.input-sm { padding-right: 0; padding-left: 0; } .input-sm { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } select.input-sm { height: 30px; line-height: 30px; } textarea.input-sm, select[multiple].input-sm { height: auto; } .form-group-sm .form-control { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .form-group-sm select.form-control { height: 30px; line-height: 30px; } .form-group-sm textarea.form-control, .form-group-sm select[multiple].form-control { height: auto; } .form-group-sm .form-control-static { height: 30px; min-height: 32px; padding: 6px 10px; font-size: 12px; line-height: 1.5; } .input-lg { height: 46px; padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } select.input-lg { height: 46px; line-height: 46px; } textarea.input-lg, select[multiple].input-lg { height: auto; } .form-group-lg .form-control { height: 46px; padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } .form-group-lg select.form-control { height: 46px; line-height: 46px; } .form-group-lg textarea.form-control, .form-group-lg select[multiple].form-control { height: auto; } .form-group-lg .form-control-static { height: 46px; min-height: 38px; padding: 11px 16px; font-size: 18px; line-height: 1.3333333; } .has-feedback { position: relative; } .has-feedback .form-control { padding-right: 42.5px; } .form-control-feedback { position: absolute; top: 0; right: 0; z-index: 2; display: block; width: 34px; height: 34px; line-height: 34px; text-align: center; pointer-events: none; } .input-lg + .form-control-feedback, .input-group-lg + .form-control-feedback, .form-group-lg .form-control + .form-control-feedback { width: 46px; height: 46px; line-height: 46px; } .input-sm + .form-control-feedback, .input-group-sm + .form-control-feedback, .form-group-sm .form-control + .form-control-feedback { width: 30px; height: 30px; line-height: 30px; } .has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label { color: #3c763d; } .has-success .form-control { border-color: #3c763d; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); } .has-success .form-control:focus { border-color: #2b542c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; } .has-success .input-group-addon { color: #3c763d; background-color: #dff0d8; border-color: #3c763d; } .has-success .form-control-feedback { color: #3c763d; } .has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label { color: #8a6d3b; } .has-warning .form-control { border-color: #8a6d3b; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); } .has-warning .form-control:focus { border-color: #66512c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; } .has-warning .input-group-addon { color: #8a6d3b; background-color: #fcf8e3; border-color: #8a6d3b; } .has-warning .form-control-feedback { color: #8a6d3b; } .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { color: #a94442; } .has-error .form-control { border-color: #a94442; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); } .has-error .form-control:focus { border-color: #843534; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; } .has-error .input-group-addon { color: #a94442; background-color: #f2dede; border-color: #a94442; } .has-error .form-control-feedback { color: #a94442; } .has-feedback label ~ .form-control-feedback { top: 25px; } .has-feedback label.sr-only ~ .form-control-feedback { top: 0; } .help-block { display: block; margin-top: 5px; margin-bottom: 10px; color: #737373; } @media (min-width: 768px) { .form-inline .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .form-inline .form-control { display: inline-block; width: auto; vertical-align: middle; } .form-inline .form-control-static { display: inline-block; } .form-inline .input-group { display: inline-table; vertical-align: middle; } .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control { width: auto; } .form-inline .input-group > .form-control { width: 100%; } .form-inline .control-label { margin-bottom: 0; vertical-align: middle; } .form-inline .radio, .form-inline .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .form-inline .radio label, .form-inline .checkbox label { padding-left: 0; } .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] { position: relative; margin-left: 0; } .form-inline .has-feedback .form-control-feedback { top: 0; } } .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline { padding-top: 7px; margin-top: 0; margin-bottom: 0; } .form-horizontal .radio, .form-horizontal .checkbox { min-height: 27px; } .form-horizontal .form-group { margin-right: -15px; margin-left: -15px; } @media (min-width: 768px) { .form-horizontal .control-label { padding-top: 7px; margin-bottom: 0; text-align: right; } } .form-horizontal .has-feedback .form-control-feedback { right: 15px; } @media (min-width: 768px) { .form-horizontal .form-group-lg .control-label { padding-top: 14.333333px; font-size: 18px; } } @media (min-width: 768px) { .form-horizontal .form-group-sm .control-label { padding-top: 6px; font-size: 12px; } } .btn { display: inline-block; padding: 6px 12px; margin-bottom: 0; font-size: 14px; font-weight: normal; line-height: 1.42857143; text-align: center; white-space: nowrap; vertical-align: middle; -ms-touch-action: manipulation; touch-action: manipulation; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-image: none; border: 1px solid transparent; border-radius: 4px; } .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } .btn:hover, .btn:focus, .btn.focus { color: #333; text-decoration: none; } .btn:active, .btn.active { background-image: none; outline: 0; -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); } .btn.disabled, .btn[disabled], fieldset[disabled] .btn { cursor: not-allowed; filter: alpha(opacity=65); -webkit-box-shadow: none; box-shadow: none; opacity: .65; } a.btn.disabled, fieldset[disabled] a.btn { pointer-events: none; } .btn-default { color: #333; background-color: #fff; border-color: #ccc; } .btn-default:focus, .btn-default.focus { color: #333; background-color: #e6e6e6; border-color: #8c8c8c; } .btn-default:hover { color: #333; background-color: #e6e6e6; border-color: #adadad; } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { color: #333; background-color: #e6e6e6; border-color: #adadad; } .btn-default:active:hover, .btn-default.active:hover, .open > .dropdown-toggle.btn-default:hover, .btn-default:active:focus, .btn-default.active:focus, .open > .dropdown-toggle.btn-default:focus, .btn-default:active.focus, .btn-default.active.focus, .open > .dropdown-toggle.btn-default.focus { color: #333; background-color: #d4d4d4; border-color: #8c8c8c; } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { background-image: none; } .btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active { background-color: #fff; border-color: #ccc; } .btn-default .badge { color: #fff; background-color: #333; } .btn-primary { color: #fff; background-color: #337ab7; border-color: #2e6da4; } .btn-primary:focus, .btn-primary.focus { color: #fff; background-color: #286090; border-color: #122b40; } .btn-primary:hover { color: #fff; background-color: #286090; border-color: #204d74; } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { color: #fff; background-color: #286090; border-color: #204d74; } .btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open > .dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus { color: #fff; background-color: #204d74; border-color: #122b40; } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { background-image: none; } .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active { background-color: #337ab7; border-color: #2e6da4; } .btn-primary .badge { color: #337ab7; background-color: #fff; } .btn-success { color: #fff; background-color: #5cb85c; border-color: #4cae4c; } .btn-success:focus, .btn-success.focus { color: #fff; background-color: #449d44; border-color: #255625; } .btn-success:hover { color: #fff; background-color: #449d44; border-color: #398439; } .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { color: #fff; background-color: #449d44; border-color: #398439; } .btn-success:active:hover, .btn-success.active:hover, .open > .dropdown-toggle.btn-success:hover, .btn-success:active:focus, .btn-success.active:focus, .open > .dropdown-toggle.btn-success:focus, .btn-success:active.focus, .btn-success.active.focus, .open > .dropdown-toggle.btn-success.focus { color: #fff; background-color: #398439; border-color: #255625; } .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { background-image: none; } .btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active { background-color: #5cb85c; border-color: #4cae4c; } .btn-success .badge { color: #5cb85c; background-color: #fff; } .btn-info { color: #fff; background-color: #5bc0de; border-color: #46b8da; } .btn-info:focus, .btn-info.focus { color: #fff; background-color: #31b0d5; border-color: #1b6d85; } .btn-info:hover { color: #fff; background-color: #31b0d5; border-color: #269abc; } .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info { color: #fff; background-color: #31b0d5; border-color: #269abc; } .btn-info:active:hover, .btn-info.active:hover, .open > .dropdown-toggle.btn-info:hover, .btn-info:active:focus, .btn-info.active:focus, .open > .dropdown-toggle.btn-info:focus, .btn-info:active.focus, .btn-info.active.focus, .open > .dropdown-toggle.btn-info.focus { color: #fff; background-color: #269abc; border-color: #1b6d85; } .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info { background-image: none; } .btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active { background-color: #5bc0de; border-color: #46b8da; } .btn-info .badge { color: #5bc0de; background-color: #fff; } .btn-warning { color: #fff; background-color: #f0ad4e; border-color: #eea236; } .btn-warning:focus, .btn-warning.focus { color: #fff; background-color: #ec971f; border-color: #985f0d; } .btn-warning:hover { color: #fff; background-color: #ec971f; border-color: #d58512; } .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { color: #fff; background-color: #ec971f; border-color: #d58512; } .btn-warning:active:hover, .btn-warning.active:hover, .open > .dropdown-toggle.btn-warning:hover, .btn-warning:active:focus, .btn-warning.active:focus, .open > .dropdown-toggle.btn-warning:focus, .btn-warning:active.focus, .btn-warning.active.focus, .open > .dropdown-toggle.btn-warning.focus { color: #fff; background-color: #d58512; border-color: #985f0d; } .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { background-image: none; } .btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active { background-color: #f0ad4e; border-color: #eea236; } .btn-warning .badge { color: #f0ad4e; background-color: #fff; } .btn-danger { color: #fff; background-color: #d9534f; border-color: #d43f3a; } .btn-danger:focus, .btn-danger.focus { color: #fff; background-color: #c9302c; border-color: #761c19; } .btn-danger:hover { color: #fff; background-color: #c9302c; border-color: #ac2925; } .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger { color: #fff; background-color: #c9302c; border-color: #ac2925; } .btn-danger:active:hover, .btn-danger.active:hover, .open > .dropdown-toggle.btn-danger:hover, .btn-danger:active:focus, .btn-danger.active:focus, .open > .dropdown-toggle.btn-danger:focus, .btn-danger:active.focus, .btn-danger.active.focus, .open > .dropdown-toggle.btn-danger.focus { color: #fff; background-color: #ac2925; border-color: #761c19; } .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger { background-image: none; } .btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active { background-color: #d9534f; border-color: #d43f3a; } .btn-danger .badge { color: #d9534f; background-color: #fff; } .btn-link { font-weight: normal; color: #337ab7; border-radius: 0; } .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link { background-color: transparent; -webkit-box-shadow: none; box-shadow: none; } .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { border-color: transparent; } .btn-link:hover, .btn-link:focus { color: #23527c; text-decoration: underline; background-color: transparent; } .btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus { color: #777; text-decoration: none; } .btn-lg, .btn-group-lg > .btn { padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } .btn-sm, .btn-group-sm > .btn { padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-xs, .btn-group-xs > .btn { padding: 1px 5px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-block { display: block; width: 100%; } .btn-block + .btn-block { margin-top: 5px; } input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { width: 100%; } .fade { opacity: 0; -webkit-transition: opacity .15s linear; -o-transition: opacity .15s linear; transition: opacity .15s linear; } .fade.in { opacity: 1; } .collapse { display: none; } .collapse.in { display: block; } tr.collapse.in { display: table-row; } tbody.collapse.in { display: table-row-group; } .collapsing { position: relative; height: 0; overflow: hidden; -webkit-transition-timing-function: ease; -o-transition-timing-function: ease; transition-timing-function: ease; -webkit-transition-duration: .35s; -o-transition-duration: .35s; transition-duration: .35s; -webkit-transition-property: height, visibility; -o-transition-property: height, visibility; transition-property: height, visibility; } .caret { display: inline-block; width: 0; height: 0; margin-left: 2px; vertical-align: middle; border-top: 4px dashed; border-top: 4px solid \9; border-right: 4px solid transparent; border-left: 4px solid transparent; } .dropup, .dropdown { position: relative; } .dropdown-toggle:focus { outline: 0; } .dropdown-menu { position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 160px; padding: 5px 0; margin: 2px 0 0; font-size: 14px; text-align: left; list-style: none; background-color: #fff; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, .15); border-radius: 4px; -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175); box-shadow: 0 6px 12px rgba(0, 0, 0, .175); } .dropdown-menu.pull-right { right: 0; left: auto; } .dropdown-menu .divider { height: 1px; margin: 9px 0; overflow: hidden; background-color: #e5e5e5; } .dropdown-menu > li > a { display: block; padding: 3px 20px; clear: both; font-weight: normal; line-height: 1.42857143; color: #333; white-space: nowrap; } .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { color: #262626; text-decoration: none; background-color: #f5f5f5; } .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { color: #fff; text-decoration: none; background-color: #337ab7; outline: 0; } .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { color: #777; } .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { text-decoration: none; cursor: not-allowed; background-color: transparent; background-image: none; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } .open > .dropdown-menu { display: block; } .open > a { outline: 0; } .dropdown-menu-right { right: 0; left: auto; } .dropdown-menu-left { right: auto; left: 0; } .dropdown-header { display: block; padding: 3px 20px; font-size: 12px; line-height: 1.42857143; color: #777; white-space: nowrap; } .dropdown-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 990; } .pull-right > .dropdown-menu { right: 0; left: auto; } .dropup .caret, .navbar-fixed-bottom .dropdown .caret { content: ""; border-top: 0; border-bottom: 4px dashed; border-bottom: 4px solid \9; } .dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu { top: auto; bottom: 100%; margin-bottom: 2px; } @media (min-width: 768px) { .navbar-right .dropdown-menu { right: 0; left: auto; } .navbar-right .dropdown-menu-left { right: auto; left: 0; } } .btn-group, .btn-group-vertical { position: relative; display: inline-block; vertical-align: middle; } .btn-group > .btn, .btn-group-vertical > .btn { position: relative; float: left; } .btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active { z-index: 2; } .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group { margin-left: -1px; } .btn-toolbar { margin-left: -5px; } .btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group { float: left; } .btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group { margin-left: 5px; } .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { border-radius: 0; } .btn-group > .btn:first-child { margin-left: 0; } .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { border-top-right-radius: 0; border-bottom-right-radius: 0; } .btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0; } .btn-group > .btn-group { float: left; } .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-top-right-radius: 0; border-bottom-right-radius: 0; } .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { border-top-left-radius: 0; border-bottom-left-radius: 0; } .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { outline: 0; } .btn-group > .btn + .dropdown-toggle { padding-right: 8px; padding-left: 8px; } .btn-group > .btn-lg + .dropdown-toggle { padding-right: 12px; padding-left: 12px; } .btn-group.open .dropdown-toggle { -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); } .btn-group.open .dropdown-toggle.btn-link { -webkit-box-shadow: none; box-shadow: none; } .btn .caret { margin-left: 0; } .btn-lg .caret { border-width: 5px 5px 0; border-bottom-width: 0; } .dropup .btn-lg .caret { border-width: 0 5px 5px; } .btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn { display: block; float: none; width: 100%; max-width: 100%; } .btn-group-vertical > .btn-group > .btn { float: none; } .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group { margin-top: -1px; margin-left: 0; } .btn-group-vertical > .btn:not(:first-child):not(:last-child) { border-radius: 0; } .btn-group-vertical > .btn:first-child:not(:last-child) { border-top-right-radius: 4px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn:last-child:not(:first-child) { border-top-left-radius: 0; border-top-right-radius: 0; border-bottom-left-radius: 4px; } .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { border-top-left-radius: 0; border-top-right-radius: 0; } .btn-group-justified { display: table; width: 100%; table-layout: fixed; border-collapse: separate; } .btn-group-justified > .btn, .btn-group-justified > .btn-group { display: table-cell; float: none; width: 1%; } .btn-group-justified > .btn-group .btn { width: 100%; } .btn-group-justified > .btn-group .dropdown-menu { left: auto; } [data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .btn-group > .btn input[type="radio"], [data-toggle="buttons"] > .btn input[type="checkbox"], [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { position: absolute; clip: rect(0, 0, 0, 0); pointer-events: none; } .input-group { position: relative; display: table; border-collapse: separate; } .input-group[class*="col-"] { float: none; padding-right: 0; padding-left: 0; } .input-group .form-control { position: relative; z-index: 2; float: left; width: 100%; margin-bottom: 0; } .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn { height: 46px; padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn { height: 46px; line-height: 46px; } textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn { height: auto; } .input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn { height: 30px; line-height: 30px; } textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn { height: auto; } .input-group-addon, .input-group-btn, .input-group .form-control { display: table-cell; } .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) { border-radius: 0; } .input-group-addon, .input-group-btn { width: 1%; white-space: nowrap; vertical-align: middle; } .input-group-addon { padding: 6px 12px; font-size: 14px; font-weight: normal; line-height: 1; color: #555; text-align: center; background-color: #eee; border: 1px solid #ccc; border-radius: 4px; } .input-group-addon.input-sm { padding: 5px 10px; font-size: 12px; border-radius: 3px; } .input-group-addon.input-lg { padding: 10px 16px; font-size: 18px; border-radius: 6px; } .input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] { margin-top: 0; } .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn { border-top-right-radius: 0; border-bottom-right-radius: 0; } .input-group-addon:first-child { border-right: 0; } .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn { border-top-left-radius: 0; border-bottom-left-radius: 0; } .input-group-addon:last-child { border-left: 0; } .input-group-btn { position: relative; font-size: 0; white-space: nowrap; } .input-group-btn > .btn { position: relative; } .input-group-btn > .btn + .btn { margin-left: -1px; } .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { z-index: 2; } .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group { margin-right: -1px; } .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group { z-index: 2; margin-left: -1px; } .nav { padding-left: 0; margin-bottom: 0; list-style: none; } .nav > li { position: relative; display: block; } .nav > li > a { position: relative; display: block; padding: 10px 15px; } .nav > li > a:hover, .nav > li > a:focus { text-decoration: none; background-color: #eee; } .nav > li.disabled > a { color: #777; } .nav > li.disabled > a:hover, .nav > li.disabled > a:focus { color: #777; text-decoration: none; cursor: not-allowed; background-color: transparent; } .nav .open > a, .nav .open > a:hover, .nav .open > a:focus { background-color: #eee; border-color: #337ab7; } .nav .nav-divider { height: 1px; margin: 9px 0; overflow: hidden; background-color: #e5e5e5; } .nav > li > a > img { max-width: none; } .nav-tabs { border-bottom: 1px solid #ddd; } .nav-tabs > li { float: left; margin-bottom: -1px; } .nav-tabs > li > a { margin-right: 2px; line-height: 1.42857143; border: 1px solid transparent; border-radius: 4px 4px 0 0; } .nav-tabs > li > a:hover { border-color: #eee #eee #ddd; } .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { color: #555; cursor: default; background-color: #fff; border: 1px solid #ddd; border-bottom-color: transparent; } .nav-tabs.nav-justified { width: 100%; border-bottom: 0; } .nav-tabs.nav-justified > li { float: none; } .nav-tabs.nav-justified > li > a { margin-bottom: 5px; text-align: center; } .nav-tabs.nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 768px) { .nav-tabs.nav-justified > li { display: table-cell; width: 1%; } .nav-tabs.nav-justified > li > a { margin-bottom: 0; } } .nav-tabs.nav-justified > li > a { margin-right: 0; border-radius: 4px; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border: 1px solid #ddd; } @media (min-width: 768px) { .nav-tabs.nav-justified > li > a { border-bottom: 1px solid #ddd; border-radius: 4px 4px 0 0; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border-bottom-color: #fff; } } .nav-pills > li { float: left; } .nav-pills > li > a { border-radius: 4px; } .nav-pills > li + li { margin-left: 2px; } .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { color: #fff; background-color: #337ab7; } .nav-stacked > li { float: none; } .nav-stacked > li + li { margin-top: 2px; margin-left: 0; } .nav-justified { width: 100%; } .nav-justified > li { float: none; } .nav-justified > li > a { margin-bottom: 5px; text-align: center; } .nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 768px) { .nav-justified > li { display: table-cell; width: 1%; } .nav-justified > li > a { margin-bottom: 0; } } .nav-tabs-justified { border-bottom: 0; } .nav-tabs-justified > li > a { margin-right: 0; border-radius: 4px; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus { border: 1px solid #ddd; } @media (min-width: 768px) { .nav-tabs-justified > li > a { border-bottom: 1px solid #ddd; border-radius: 4px 4px 0 0; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus { border-bottom-color: #fff; } } .tab-content > .tab-pane { display: none; } .tab-content > .active { display: block; } .nav-tabs .dropdown-menu { margin-top: -1px; border-top-left-radius: 0; border-top-right-radius: 0; } .navbar { position: relative; min-height: 50px; margin-bottom: 20px; border: 1px solid transparent; } @media (min-width: 768px) { .navbar { border-radius: 4px; } } @media (min-width: 768px) { .navbar-header { float: left; } } .navbar-collapse { padding-right: 15px; padding-left: 15px; overflow-x: visible; -webkit-overflow-scrolling: touch; border-top: 1px solid transparent; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); } .navbar-collapse.in { overflow-y: auto; } @media (min-width: 768px) { .navbar-collapse { width: auto; border-top: 0; -webkit-box-shadow: none; box-shadow: none; } .navbar-collapse.collapse { display: block !important; height: auto !important; padding-bottom: 0; overflow: visible !important; } .navbar-collapse.in { overflow-y: visible; } .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { padding-right: 0; padding-left: 0; } } .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { max-height: 340px; } @media (max-device-width: 480px) and (orientation: landscape) { .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { max-height: 200px; } } .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: -15px; margin-left: -15px; } @media (min-width: 768px) { .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: 0; margin-left: 0; } } .navbar-static-top { z-index: 1000; border-width: 0 0 1px; } @media (min-width: 768px) { .navbar-static-top { border-radius: 0; } } .navbar-fixed-top, .navbar-fixed-bottom { position: fixed; right: 0; left: 0; z-index: 1030; } @media (min-width: 768px) { .navbar-fixed-top, .navbar-fixed-bottom { border-radius: 0; } } .navbar-fixed-top { top: 0; border-width: 0 0 1px; } .navbar-fixed-bottom { bottom: 0; margin-bottom: 0; border-width: 1px 0 0; } .navbar-brand { float: left; height: 50px; padding: 15px 15px; font-size: 18px; line-height: 20px; } .navbar-brand:hover, .navbar-brand:focus { text-decoration: none; } .navbar-brand > img { display: block; } @media (min-width: 768px) { .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { margin-left: -15px; } } .navbar-toggle { position: relative; float: right; padding: 9px 10px; margin-top: 8px; margin-right: 15px; margin-bottom: 8px; background-color: transparent; background-image: none; border: 1px solid transparent; border-radius: 4px; } .navbar-toggle:focus { outline: 0; } .navbar-toggle .icon-bar { display: block; width: 22px; height: 2px; border-radius: 1px; } .navbar-toggle .icon-bar + .icon-bar { margin-top: 4px; } @media (min-width: 768px) { .navbar-toggle { display: none; } } .navbar-nav { margin: 7.5px -15px; } .navbar-nav > li > a { padding-top: 10px; padding-bottom: 10px; line-height: 20px; } @media (max-width: 767px) { .navbar-nav .open .dropdown-menu { position: static; float: none; width: auto; margin-top: 0; background-color: transparent; border: 0; -webkit-box-shadow: none; box-shadow: none; } .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header { padding: 5px 15px 5px 25px; } .navbar-nav .open .dropdown-menu > li > a { line-height: 20px; } .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { background-image: none; } } @media (min-width: 768px) { .navbar-nav { float: left; margin: 0; } .navbar-nav > li { float: left; } .navbar-nav > li > a { padding-top: 15px; padding-bottom: 15px; } } .navbar-form { padding: 10px 15px; margin-top: 8px; margin-right: -15px; margin-bottom: 8px; margin-left: -15px; border-top: 1px solid transparent; border-bottom: 1px solid transparent; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); } @media (min-width: 768px) { .navbar-form .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .navbar-form .form-control { display: inline-block; width: auto; vertical-align: middle; } .navbar-form .form-control-static { display: inline-block; } .navbar-form .input-group { display: inline-table; vertical-align: middle; } .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn, .navbar-form .input-group .form-control { width: auto; } .navbar-form .input-group > .form-control { width: 100%; } .navbar-form .control-label { margin-bottom: 0; vertical-align: middle; } .navbar-form .radio, .navbar-form .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .navbar-form .radio label, .navbar-form .checkbox label { padding-left: 0; } .navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] { position: relative; margin-left: 0; } .navbar-form .has-feedback .form-control-feedback { top: 0; } } @media (max-width: 767px) { .navbar-form .form-group { margin-bottom: 5px; } .navbar-form .form-group:last-child { margin-bottom: 0; } } @media (min-width: 768px) { .navbar-form { width: auto; padding-top: 0; padding-bottom: 0; margin-right: 0; margin-left: 0; border: 0; -webkit-box-shadow: none; box-shadow: none; } } .navbar-nav > li > .dropdown-menu { margin-top: 0; border-top-left-radius: 0; border-top-right-radius: 0; } .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { margin-bottom: 0; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .navbar-btn { margin-top: 8px; margin-bottom: 8px; } .navbar-btn.btn-sm { margin-top: 10px; margin-bottom: 10px; } .navbar-btn.btn-xs { margin-top: 14px; margin-bottom: 14px; } .navbar-text { margin-top: 15px; margin-bottom: 15px; } @media (min-width: 768px) { .navbar-text { float: left; margin-right: 15px; margin-left: 15px; } } @media (min-width: 768px) { .navbar-left { float: left !important; } .navbar-right { float: right !important; margin-right: -15px; } .navbar-right ~ .navbar-right { margin-right: 0; } } .navbar-default { background-color: #f8f8f8; border-color: #e7e7e7; } .navbar-default .navbar-brand { color: #777; } .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { color: #5e5e5e; background-color: transparent; } .navbar-default .navbar-text { color: #777; } .navbar-default .navbar-nav > li > a { color: #777; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: #333; background-color: transparent; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: #555; background-color: #e7e7e7; } .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { color: #ccc; background-color: transparent; } .navbar-default .navbar-toggle { border-color: #ddd; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: #ddd; } .navbar-default .navbar-toggle .icon-bar { background-color: #888; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border-color: #e7e7e7; } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { color: #555; background-color: #e7e7e7; } @media (max-width: 767px) { .navbar-default .navbar-nav .open .dropdown-menu > li > a { color: #777; } .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #333; background-color: transparent; } .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { color: #555; background-color: #e7e7e7; } .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #ccc; background-color: transparent; } } .navbar-default .navbar-link { color: #777; } .navbar-default .navbar-link:hover { color: #333; } .navbar-default .btn-link { color: #777; } .navbar-default .btn-link:hover, .navbar-default .btn-link:focus { color: #333; } .navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:focus { color: #ccc; } .navbar-inverse { background-color: #222; border-color: #080808; } .navbar-inverse .navbar-brand { color: #9d9d9d; } .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { color: #fff; background-color: transparent; } .navbar-inverse .navbar-text { color: #9d9d9d; } .navbar-inverse .navbar-nav > li > a { color: #9d9d9d; } .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { color: #fff; background-color: transparent; } .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { color: #fff; background-color: #080808; } .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { color: #444; background-color: transparent; } .navbar-inverse .navbar-toggle { border-color: #333; } .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { background-color: #333; } .navbar-inverse .navbar-toggle .icon-bar { background-color: #fff; } .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { border-color: #101010; } .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { color: #fff; background-color: #080808; } @media (max-width: 767px) { .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { border-color: #080808; } .navbar-inverse .navbar-nav .open .dropdown-menu .divider { background-color: #080808; } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { color: #9d9d9d; } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { color: #fff; background-color: transparent; } .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { color: #fff; background-color: #080808; } .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #444; background-color: transparent; } } .navbar-inverse .navbar-link { color: #9d9d9d; } .navbar-inverse .navbar-link:hover { color: #fff; } .navbar-inverse .btn-link { color: #9d9d9d; } .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { color: #fff; } .navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus { color: #444; } .pagination { display: inline-block; padding-left: 0; margin: 20px 0; border-radius: 4px; } .pagination > li { display: inline; } .pagination > li > a, .pagination > li > span { position: relative; float: left; padding: 6px 12px; margin-left: -1px; line-height: 1.42857143; color: #337ab7; text-decoration: none; background-color: #fff; border: 1px solid #ddd; } .pagination > li:first-child > a, .pagination > li:first-child > span { margin-left: 0; border-top-left-radius: 4px; border-bottom-left-radius: 4px; } .pagination > li:last-child > a, .pagination > li:last-child > span { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } .pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus { z-index: 3; color: #23527c; background-color: #eee; border-color: #ddd; } .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus { z-index: 2; color: #fff; cursor: default; background-color: #337ab7; border-color: #337ab7; } .pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus { color: #777; cursor: not-allowed; background-color: #fff; border-color: #ddd; } .pagination-lg > li > a, .pagination-lg > li > span { padding: 10px 16px; font-size: 18px; line-height: 1.3333333; } .pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } .pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } .pagination-sm > li > a, .pagination-sm > li > span { padding: 5px 10px; font-size: 12px; line-height: 1.5; } .pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } .pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } .pager { padding-left: 0; margin: 20px 0; text-align: center; list-style: none; } .pager li { display: inline; } .pager li > a, .pager li > span { display: inline-block; padding: 5px 14px; background-color: #fff; border: 1px solid #ddd; border-radius: 15px; } .pager li > a:hover, .pager li > a:focus { text-decoration: none; background-color: #eee; } .pager .next > a, .pager .next > span { float: right; } .pager .previous > a, .pager .previous > span { float: left; } .pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span { color: #777; cursor: not-allowed; background-color: #fff; } .label { display: inline; padding: .2em .6em .3em; font-size: 75%; font-weight: bold; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: .25em; } a.label:hover, a.label:focus { color: #fff; text-decoration: none; cursor: pointer; } .label:empty { display: none; } .btn .label { position: relative; top: -1px; } .label-default { background-color: #777; } .label-default[href]:hover, .label-default[href]:focus { background-color: #5e5e5e; } .label-primary { background-color: #337ab7; } .label-primary[href]:hover, .label-primary[href]:focus { background-color: #286090; } .label-success { background-color: #5cb85c; } .label-success[href]:hover, .label-success[href]:focus { background-color: #449d44; } .label-info { background-color: #5bc0de; } .label-info[href]:hover, .label-info[href]:focus { background-color: #31b0d5; } .label-warning { background-color: #f0ad4e; } .label-warning[href]:hover, .label-warning[href]:focus { background-color: #ec971f; } .label-danger { background-color: #d9534f; } .label-danger[href]:hover, .label-danger[href]:focus { background-color: #c9302c; } .badge { display: inline-block; min-width: 10px; padding: 3px 7px; font-size: 12px; font-weight: bold; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: middle; background-color: #777; border-radius: 10px; } .badge:empty { display: none; } .btn .badge { position: relative; top: -1px; } .btn-xs .badge, .btn-group-xs > .btn .badge { top: 0; padding: 1px 5px; } a.badge:hover, a.badge:focus { color: #fff; text-decoration: none; cursor: pointer; } .list-group-item.active > .badge, .nav-pills > .active > a > .badge { color: #337ab7; background-color: #fff; } .list-group-item > .badge { float: right; } .list-group-item > .badge + .badge { margin-right: 5px; } .nav-pills > li > a > .badge { margin-left: 3px; } .jumbotron { padding-top: 30px; padding-bottom: 30px; margin-bottom: 30px; color: inherit; background-color: #eee; } .jumbotron h1, .jumbotron .h1 { color: inherit; } .jumbotron p { margin-bottom: 15px; font-size: 21px; font-weight: 200; } .jumbotron > hr { border-top-color: #d5d5d5; } .container .jumbotron, .container-fluid .jumbotron { border-radius: 6px; } .jumbotron .container { max-width: 100%; } @media screen and (min-width: 768px) { .jumbotron { padding-top: 48px; padding-bottom: 48px; } .container .jumbotron, .container-fluid .jumbotron { padding-right: 60px; padding-left: 60px; } .jumbotron h1, .jumbotron .h1 { font-size: 63px; } } .thumbnail { display: block; padding: 4px; margin-bottom: 20px; line-height: 1.42857143; background-color: #fff; border: 1px solid #ddd; border-radius: 4px; -webkit-transition: border .2s ease-in-out; -o-transition: border .2s ease-in-out; transition: border .2s ease-in-out; } .thumbnail > img, .thumbnail a > img { margin-right: auto; margin-left: auto; } a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { border-color: #337ab7; } .thumbnail .caption { padding: 9px; color: #333; } .alert { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 4px; } .alert h4 { margin-top: 0; color: inherit; } .alert .alert-link { font-weight: bold; } .alert > p, .alert > ul { margin-bottom: 0; } .alert > p + p { margin-top: 5px; } .alert-dismissable, .alert-dismissible { padding-right: 35px; } .alert-dismissable .close, .alert-dismissible .close { position: relative; top: -2px; right: -21px; color: inherit; } .alert-success { color: #3c763d; background-color: #dff0d8; border-color: #d6e9c6; } .alert-success hr { border-top-color: #c9e2b3; } .alert-success .alert-link { color: #2b542c; } .alert-info { color: #31708f; background-color: #d9edf7; border-color: #bce8f1; } .alert-info hr { border-top-color: #a6e1ec; } .alert-info .alert-link { color: #245269; } .alert-warning { color: #8a6d3b; background-color: #fcf8e3; border-color: #faebcc; } .alert-warning hr { border-top-color: #f7e1b5; } .alert-warning .alert-link { color: #66512c; } .alert-danger { color: #a94442; background-color: #f2dede; border-color: #ebccd1; } .alert-danger hr { border-top-color: #e4b9c0; } .alert-danger .alert-link { color: #843534; } @-webkit-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } @-o-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } @keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } .progress { height: 20px; margin-bottom: 20px; overflow: hidden; background-color: #f5f5f5; border-radius: 4px; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); } .progress-bar { float: left; width: 0; height: 100%; font-size: 12px; line-height: 20px; color: #fff; text-align: center; background-color: #337ab7; -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); -webkit-transition: width .6s ease; -o-transition: width .6s ease; transition: width .6s ease; } .progress-striped .progress-bar, .progress-bar-striped { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); -webkit-background-size: 40px 40px; background-size: 40px 40px; } .progress.active .progress-bar, .progress-bar.active { -webkit-animation: progress-bar-stripes 2s linear infinite; -o-animation: progress-bar-stripes 2s linear infinite; animation: progress-bar-stripes 2s linear infinite; } .progress-bar-success { background-color: #5cb85c; } .progress-striped .progress-bar-success { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); } .progress-bar-info { background-color: #5bc0de; } .progress-striped .progress-bar-info { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); } .progress-bar-warning { background-color: #f0ad4e; } .progress-striped .progress-bar-warning { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); } .progress-bar-danger { background-color: #d9534f; } .progress-striped .progress-bar-danger { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); } .media { margin-top: 15px; } .media:first-child { margin-top: 0; } .media, .media-body { overflow: hidden; zoom: 1; } .media-body { width: 10000px; } .media-object { display: block; } .media-object.img-thumbnail { max-width: none; } .media-right, .media > .pull-right { padding-left: 10px; } .media-left, .media > .pull-left { padding-right: 10px; } .media-left, .media-right, .media-body { display: table-cell; vertical-align: top; } .media-middle { vertical-align: middle; } .media-bottom { vertical-align: bottom; } .media-heading { margin-top: 0; margin-bottom: 5px; } .media-list { padding-left: 0; list-style: none; } .list-group { padding-left: 0; margin-bottom: 20px; } .list-group-item { position: relative; display: block; padding: 10px 15px; margin-bottom: -1px; background-color: #fff; border: 1px solid #ddd; } .list-group-item:first-child { border-top-left-radius: 4px; border-top-right-radius: 4px; } .list-group-item:last-child { margin-bottom: 0; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } a.list-group-item, button.list-group-item { color: #555; } a.list-group-item .list-group-item-heading, button.list-group-item .list-group-item-heading { color: #333; } a.list-group-item:hover, button.list-group-item:hover, a.list-group-item:focus, button.list-group-item:focus { color: #555; text-decoration: none; background-color: #f5f5f5; } button.list-group-item { width: 100%; text-align: left; } .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { color: #777; cursor: not-allowed; background-color: #eee; } .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { color: inherit; } .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { color: #777; } .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { z-index: 2; color: #fff; background-color: #337ab7; border-color: #337ab7; } .list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > .small { color: inherit; } .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { color: #c7ddef; } .list-group-item-success { color: #3c763d; background-color: #dff0d8; } a.list-group-item-success, button.list-group-item-success { color: #3c763d; } a.list-group-item-success .list-group-item-heading, button.list-group-item-success .list-group-item-heading { color: inherit; } a.list-group-item-success:hover, button.list-group-item-success:hover, a.list-group-item-success:focus, button.list-group-item-success:focus { color: #3c763d; background-color: #d0e9c6; } a.list-group-item-success.active, button.list-group-item-success.active, a.list-group-item-success.active:hover, button.list-group-item-success.active:hover, a.list-group-item-success.active:focus, button.list-group-item-success.active:focus { color: #fff; background-color: #3c763d; border-color: #3c763d; } .list-group-item-info { color: #31708f; background-color: #d9edf7; } a.list-group-item-info, button.list-group-item-info { color: #31708f; } a.list-group-item-info .list-group-item-heading, button.list-group-item-info .list-group-item-heading { color: inherit; } a.list-group-item-info:hover, button.list-group-item-info:hover, a.list-group-item-info:focus, button.list-group-item-info:focus { color: #31708f; background-color: #c4e3f3; } a.list-group-item-info.active, button.list-group-item-info.active, a.list-group-item-info.active:hover, button.list-group-item-info.active:hover, a.list-group-item-info.active:focus, button.list-group-item-info.active:focus { color: #fff; background-color: #31708f; border-color: #31708f; } .list-group-item-warning { color: #8a6d3b; background-color: #fcf8e3; } a.list-group-item-warning, button.list-group-item-warning { color: #8a6d3b; } a.list-group-item-warning .list-group-item-heading, button.list-group-item-warning .list-group-item-heading { color: inherit; } a.list-group-item-warning:hover, button.list-group-item-warning:hover, a.list-group-item-warning:focus, button.list-group-item-warning:focus { color: #8a6d3b; background-color: #faf2cc; } a.list-group-item-warning.active, button.list-group-item-warning.active, a.list-group-item-warning.active:hover, button.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, button.list-group-item-warning.active:focus { color: #fff; background-color: #8a6d3b; border-color: #8a6d3b; } .list-group-item-danger { color: #a94442; background-color: #f2dede; } a.list-group-item-danger, button.list-group-item-danger { color: #a94442; } a.list-group-item-danger .list-group-item-heading, button.list-group-item-danger .list-group-item-heading { color: inherit; } a.list-group-item-danger:hover, button.list-group-item-danger:hover, a.list-group-item-danger:focus, button.list-group-item-danger:focus { color: #a94442; background-color: #ebcccc; } a.list-group-item-danger.active, button.list-group-item-danger.active, a.list-group-item-danger.active:hover, button.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, button.list-group-item-danger.active:focus { color: #fff; background-color: #a94442; border-color: #a94442; } .list-group-item-heading { margin-top: 0; margin-bottom: 5px; } .list-group-item-text { margin-bottom: 0; line-height: 1.3; } .panel { margin-bottom: 20px; background-color: #fff; border: 1px solid transparent; border-radius: 4px; -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05); box-shadow: 0 1px 1px rgba(0, 0, 0, .05); } .panel-body { padding: 15px; } .panel-heading { padding: 10px 15px; border-bottom: 1px solid transparent; border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel-heading > .dropdown .dropdown-toggle { color: inherit; } .panel-title { margin-top: 0; margin-bottom: 0; font-size: 16px; color: inherit; } .panel-title > a, .panel-title > small, .panel-title > .small, .panel-title > small > a, .panel-title > .small > a { color: inherit; } .panel-footer { padding: 10px 15px; background-color: #f5f5f5; border-top: 1px solid #ddd; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .list-group, .panel > .panel-collapse > .list-group { margin-bottom: 0; } .panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item { border-width: 1px 0; border-radius: 0; } .panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { border-top: 0; border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { border-bottom: 0; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { border-top-left-radius: 0; border-top-right-radius: 0; } .panel-heading + .list-group .list-group-item:first-child { border-top-width: 0; } .list-group + .panel-footer { border-top-width: 0; } .panel > .table, .panel > .table-responsive > .table, .panel > .panel-collapse > .table { margin-bottom: 0; } .panel > .table caption, .panel > .table-responsive > .table caption, .panel > .panel-collapse > .table caption { padding-right: 15px; padding-left: 15px; } .panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child { border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { border-top-left-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { border-top-right-radius: 3px; } .panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child { border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { border-bottom-right-radius: 3px; } .panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body { border-top: 1px solid #ddd; } .panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td { border-top: 0; } .panel > .table-bordered, .panel > .table-responsive > .table-bordered { border: 0; } .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { border-bottom: 0; } .panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { border-bottom: 0; } .panel > .table-responsive { margin-bottom: 0; border: 0; } .panel-group { margin-bottom: 20px; } .panel-group .panel { margin-bottom: 0; border-radius: 4px; } .panel-group .panel + .panel { margin-top: 5px; } .panel-group .panel-heading { border-bottom: 0; } .panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group { border-top: 1px solid #ddd; } .panel-group .panel-footer { border-top: 0; } .panel-group .panel-footer + .panel-collapse .panel-body { border-bottom: 1px solid #ddd; } .panel-default { border-color: #ddd; } .panel-default > .panel-heading { color: #333; background-color: #f5f5f5; border-color: #ddd; } .panel-default > .panel-heading + .panel-collapse > .panel-body { border-top-color: #ddd; } .panel-default > .panel-heading .badge { color: #f5f5f5; background-color: #333; } .panel-default > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #ddd; } .panel-primary { border-color: #337ab7; } .panel-primary > .panel-heading { color: #fff; background-color: #337ab7; border-color: #337ab7; } .panel-primary > .panel-heading + .panel-collapse > .panel-body { border-top-color: #337ab7; } .panel-primary > .panel-heading .badge { color: #337ab7; background-color: #fff; } .panel-primary > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #337ab7; } .panel-success { border-color: #d6e9c6; } .panel-success > .panel-heading { color: #3c763d; background-color: #dff0d8; border-color: #d6e9c6; } .panel-success > .panel-heading + .panel-collapse > .panel-body { border-top-color: #d6e9c6; } .panel-success > .panel-heading .badge { color: #dff0d8; background-color: #3c763d; } .panel-success > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #d6e9c6; } .panel-info { border-color: #bce8f1; } .panel-info > .panel-heading { color: #31708f; background-color: #d9edf7; border-color: #bce8f1; } .panel-info > .panel-heading + .panel-collapse > .panel-body { border-top-color: #bce8f1; } .panel-info > .panel-heading .badge { color: #d9edf7; background-color: #31708f; } .panel-info > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #bce8f1; } .panel-warning { border-color: #faebcc; } .panel-warning > .panel-heading { color: #8a6d3b; background-color: #fcf8e3; border-color: #faebcc; } .panel-warning > .panel-heading + .panel-collapse > .panel-body { border-top-color: #faebcc; } .panel-warning > .panel-heading .badge { color: #fcf8e3; background-color: #8a6d3b; } .panel-warning > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #faebcc; } .panel-danger { border-color: #ebccd1; } .panel-danger > .panel-heading { color: #a94442; background-color: #f2dede; border-color: #ebccd1; } .panel-danger > .panel-heading + .panel-collapse > .panel-body { border-top-color: #ebccd1; } .panel-danger > .panel-heading .badge { color: #f2dede; background-color: #a94442; } .panel-danger > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #ebccd1; } .embed-responsive { position: relative; display: block; height: 0; padding: 0; overflow: hidden; } .embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video { position: absolute; top: 0; bottom: 0; left: 0; width: 100%; height: 100%; border: 0; } .embed-responsive-16by9 { padding-bottom: 56.25%; } .embed-responsive-4by3 { padding-bottom: 75%; } .well { min-height: 20px; padding: 19px; margin-bottom: 20px; background-color: #f5f5f5; border: 1px solid #e3e3e3; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); } .well blockquote { border-color: #ddd; border-color: rgba(0, 0, 0, .15); } .well-lg { padding: 24px; border-radius: 6px; } .well-sm { padding: 9px; border-radius: 3px; } .close { float: right; font-size: 21px; font-weight: bold; line-height: 1; color: #000; text-shadow: 0 1px 0 #fff; filter: alpha(opacity=20); opacity: .2; } .close:hover, .close:focus { color: #000; text-decoration: none; cursor: pointer; filter: alpha(opacity=50); opacity: .5; } button.close { -webkit-appearance: none; padding: 0; cursor: pointer; background: transparent; border: 0; } .modal-open { overflow: hidden; } .modal { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1050; display: none; overflow: hidden; -webkit-overflow-scrolling: touch; outline: 0; } .modal.fade .modal-dialog { -webkit-transition: -webkit-transform .3s ease-out; -o-transition: -o-transform .3s ease-out; transition: transform .3s ease-out; -webkit-transform: translate(0, -25%); -ms-transform: translate(0, -25%); -o-transform: translate(0, -25%); transform: translate(0, -25%); } .modal.in .modal-dialog { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); } .modal-open .modal { overflow-x: hidden; overflow-y: auto; } .modal-dialog { position: relative; width: auto; margin: 10px; } .modal-content { position: relative; background-color: #fff; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #999; border: 1px solid rgba(0, 0, 0, .2); border-radius: 6px; outline: 0; -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5); box-shadow: 0 3px 9px rgba(0, 0, 0, .5); } .modal-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1040; background-color: #000; } .modal-backdrop.fade { filter: alpha(opacity=0); opacity: 0; } .modal-backdrop.in { filter: alpha(opacity=50); opacity: .5; } .modal-header { min-height: 16.42857143px; padding: 15px; border-bottom: 1px solid #e5e5e5; } .modal-header .close { margin-top: -2px; } .modal-title { margin: 0; line-height: 1.42857143; } .modal-body { position: relative; padding: 15px; } .modal-footer { padding: 15px; text-align: right; border-top: 1px solid #e5e5e5; } .modal-footer .btn + .btn { margin-bottom: 0; margin-left: 5px; } .modal-footer .btn-group .btn + .btn { margin-left: -1px; } .modal-footer .btn-block + .btn-block { margin-left: 0; } .modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll; } @media (min-width: 768px) { .modal-dialog { width: 600px; margin: 30px auto; } .modal-content { -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5); box-shadow: 0 5px 15px rgba(0, 0, 0, .5); } .modal-sm { width: 300px; } } @media (min-width: 992px) { .modal-lg { width: 900px; } } .tooltip { position: absolute; z-index: 1070; display: block; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-weight: normal; line-height: 1.42857143; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; word-wrap: normal; white-space: normal; filter: alpha(opacity=0); opacity: 0; line-break: auto; } .tooltip.in { filter: alpha(opacity=90); opacity: .9; } .tooltip.top { padding: 5px 0; margin-top: -3px; } .tooltip.right { padding: 0 5px; margin-left: 3px; } .tooltip.bottom { padding: 5px 0; margin-top: 3px; } .tooltip.left { padding: 0 5px; margin-left: -3px; } .tooltip-inner { max-width: 200px; padding: 3px 8px; color: #fff; text-align: center; background-color: #000; border-radius: 4px; } .tooltip-arrow { position: absolute; width: 0; height: 0; border-color: transparent; border-style: solid; } .tooltip.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -5px; border-width: 5px 5px 0; border-top-color: #000; } .tooltip.top-left .tooltip-arrow { right: 5px; bottom: 0; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #000; } .tooltip.top-right .tooltip-arrow { bottom: 0; left: 5px; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #000; } .tooltip.right .tooltip-arrow { top: 50%; left: 0; margin-top: -5px; border-width: 5px 5px 5px 0; border-right-color: #000; } .tooltip.left .tooltip-arrow { top: 50%; right: 0; margin-top: -5px; border-width: 5px 0 5px 5px; border-left-color: #000; } .tooltip.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -5px; border-width: 0 5px 5px; border-bottom-color: #000; } .tooltip.bottom-left .tooltip-arrow { top: 0; right: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #000; } .tooltip.bottom-right .tooltip-arrow { top: 0; left: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #000; } .popover { position: absolute; top: 0; left: 0; z-index: 1060; display: none; max-width: 276px; padding: 1px; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal; line-height: 1.42857143; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; word-wrap: normal; white-space: normal; background-color: #fff; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, .2); border-radius: 6px; -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2); box-shadow: 0 5px 10px rgba(0, 0, 0, .2); line-break: auto; } .popover.top { margin-top: -10px; } .popover.right { margin-left: 10px; } .popover.bottom { margin-top: 10px; } .popover.left { margin-left: -10px; } .popover-title { padding: 8px 14px; margin: 0; font-size: 14px; background-color: #f7f7f7; border-bottom: 1px solid #ebebeb; border-radius: 5px 5px 0 0; } .popover-content { padding: 9px 14px; } .popover > .arrow, .popover > .arrow:after { position: absolute; display: block; width: 0; height: 0; border-color: transparent; border-style: solid; } .popover > .arrow { border-width: 11px; } .popover > .arrow:after { content: ""; border-width: 10px; } .popover.top > .arrow { bottom: -11px; left: 50%; margin-left: -11px; border-top-color: #999; border-top-color: rgba(0, 0, 0, .25); border-bottom-width: 0; } .popover.top > .arrow:after { bottom: 1px; margin-left: -10px; content: " "; border-top-color: #fff; border-bottom-width: 0; } .popover.right > .arrow { top: 50%; left: -11px; margin-top: -11px; border-right-color: #999; border-right-color: rgba(0, 0, 0, .25); border-left-width: 0; } .popover.right > .arrow:after { bottom: -10px; left: 1px; content: " "; border-right-color: #fff; border-left-width: 0; } .popover.bottom > .arrow { top: -11px; left: 50%; margin-left: -11px; border-top-width: 0; border-bottom-color: #999; border-bottom-color: rgba(0, 0, 0, .25); } .popover.bottom > .arrow:after { top: 1px; margin-left: -10px; content: " "; border-top-width: 0; border-bottom-color: #fff; } .popover.left > .arrow { top: 50%; right: -11px; margin-top: -11px; border-right-width: 0; border-left-color: #999; border-left-color: rgba(0, 0, 0, .25); } .popover.left > .arrow:after { right: 1px; bottom: -10px; content: " "; border-right-width: 0; border-left-color: #fff; } .carousel { position: relative; } .carousel-inner { position: relative; width: 100%; overflow: hidden; } .carousel-inner > .item { position: relative; display: none; -webkit-transition: .6s ease-in-out left; -o-transition: .6s ease-in-out left; transition: .6s ease-in-out left; } .carousel-inner > .item > img, .carousel-inner > .item > a > img { line-height: 1; } @media all and (transform-3d), (-webkit-transform-3d) { .carousel-inner > .item { -webkit-transition: -webkit-transform .6s ease-in-out; -o-transition: -o-transform .6s ease-in-out; transition: transform .6s ease-in-out; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-perspective: 1000px; perspective: 1000px; } .carousel-inner > .item.next, .carousel-inner > .item.active.right { left: 0; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } .carousel-inner > .item.prev, .carousel-inner > .item.active.left { left: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active { left: 0; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev { display: block; } .carousel-inner > .active { left: 0; } .carousel-inner > .next, .carousel-inner > .prev { position: absolute; top: 0; width: 100%; } .carousel-inner > .next { left: 100%; } .carousel-inner > .prev { left: -100%; } .carousel-inner > .next.left, .carousel-inner > .prev.right { left: 0; } .carousel-inner > .active.left { left: -100%; } .carousel-inner > .active.right { left: 100%; } .carousel-control { position: absolute; top: 0; bottom: 0; left: 0; width: 15%; font-size: 20px; color: #fff; text-align: center; text-shadow: 0 1px 2px rgba(0, 0, 0, .6); filter: alpha(opacity=50); opacity: .5; } .carousel-control.left { background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001))); background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); background-repeat: repeat-x; } .carousel-control.right { right: 0; left: auto; background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5))); background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); background-repeat: repeat-x; } .carousel-control:hover, .carousel-control:focus { color: #fff; text-decoration: none; filter: alpha(opacity=90); outline: 0; opacity: .9; } .carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right { position: absolute; top: 50%; z-index: 5; display: inline-block; margin-top: -10px; } .carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left { left: 50%; margin-left: -10px; } .carousel-control .icon-next, .carousel-control .glyphicon-chevron-right { right: 50%; margin-right: -10px; } .carousel-control .icon-prev, .carousel-control .icon-next { width: 20px; height: 20px; font-family: serif; line-height: 1; } .carousel-control .icon-prev:before { content: '\2039'; } .carousel-control .icon-next:before { content: '\203a'; } .carousel-indicators { position: absolute; bottom: 10px; left: 50%; z-index: 15; width: 60%; padding-left: 0; margin-left: -30%; text-align: center; list-style: none; } .carousel-indicators li { display: inline-block; width: 10px; height: 10px; margin: 1px; text-indent: -999px; cursor: pointer; background-color: #000 \9; background-color: rgba(0, 0, 0, 0); border: 1px solid #fff; border-radius: 10px; } .carousel-indicators .active { width: 12px; height: 12px; margin: 0; background-color: #fff; } .carousel-caption { position: absolute; right: 15%; bottom: 20px; left: 15%; z-index: 10; padding-top: 20px; padding-bottom: 20px; color: #fff; text-align: center; text-shadow: 0 1px 2px rgba(0, 0, 0, .6); } .carousel-caption .btn { text-shadow: none; } @media screen and (min-width: 768px) { .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next { width: 30px; height: 30px; margin-top: -15px; font-size: 30px; } .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev { margin-left: -15px; } .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next { margin-right: -15px; } .carousel-caption { right: 20%; left: 20%; padding-bottom: 30px; } .carousel-indicators { bottom: 20px; } } .clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-footer:before, .modal-footer:after { display: table; content: " "; } .clearfix:after, .dl-horizontal dd:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical > .btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-footer:after { clear: both; } .center-block { display: block; margin-right: auto; margin-left: auto; } .pull-right { float: right !important; } .pull-left { float: left !important; } .hide { display: none !important; } .show { display: block !important; } .invisible { visibility: hidden; } .text-hide { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; } .hidden { display: none !important; } .affix { position: fixed; } @-ms-viewport { width: device-width; } .visible-xs, .visible-sm, .visible-md, .visible-lg { display: none !important; } .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block { display: none !important; } @media (max-width: 767px) { .visible-xs { display: block !important; } table.visible-xs { display: table !important; } tr.visible-xs { display: table-row !important; } th.visible-xs, td.visible-xs { display: table-cell !important; } } @media (max-width: 767px) { .visible-xs-block { display: block !important; } } @media (max-width: 767px) { .visible-xs-inline { display: inline !important; } } @media (max-width: 767px) { .visible-xs-inline-block { display: inline-block !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm { display: block !important; } table.visible-sm { display: table !important; } tr.visible-sm { display: table-row !important; } th.visible-sm, td.visible-sm { display: table-cell !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm-block { display: block !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm-inline { display: inline !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm-inline-block { display: inline-block !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md { display: block !important; } table.visible-md { display: table !important; } tr.visible-md { display: table-row !important; } th.visible-md, td.visible-md { display: table-cell !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-block { display: block !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-inline { display: inline !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-inline-block { display: inline-block !important; } } @media (min-width: 1200px) { .visible-lg { display: block !important; } table.visible-lg { display: table !important; } tr.visible-lg { display: table-row !important; } th.visible-lg, td.visible-lg { display: table-cell !important; } } @media (min-width: 1200px) { .visible-lg-block { display: block !important; } } @media (min-width: 1200px) { .visible-lg-inline { display: inline !important; } } @media (min-width: 1200px) { .visible-lg-inline-block { display: inline-block !important; } } @media (max-width: 767px) { .hidden-xs { display: none !important; } } @media (min-width: 768px) and (max-width: 991px) { .hidden-sm { display: none !important; } } @media (min-width: 992px) and (max-width: 1199px) { .hidden-md { display: none !important; } } @media (min-width: 1200px) { .hidden-lg { display: none !important; } } .visible-print { display: none !important; } @media print { .visible-print { display: block !important; } table.visible-print { display: table !important; } tr.visible-print { display: table-row !important; } th.visible-print, td.visible-print { display: table-cell !important; } } .visible-print-block { display: none !important; } @media print { .visible-print-block { display: block !important; } } .visible-print-inline { display: none !important; } @media print { .visible-print-inline { display: inline !important; } } .visible-print-inline-block { display: none !important; } @media print { .visible-print-inline-block { display: inline-block !important; } } @media print { .hidden-print { display: none !important; } } /*# sourceMappingURL=bootstrap.css.map */
webapps-master/cspquiz/main2.css
ram8647/webapps
html { font-size: 100% ; // for responsive font-size, not sure if needed } #quizbody { background-color: beige; } #quizdata { background-color: beige; float:left; padding: 10px; max-width: 55%; } #quizpreview { display:block; float:right; background-color: bisque; padding: 10px; max-width: 40%; } #quiz_section { width: 85%; margin: auto; // border: 2px solid green; } #questiondiv, #choices_container, #feedback-div { padding: 1%; } #logo { float: left; // instead of table width: 25%; max-width: 25%; min-width: 150px; } #heading { font-size: 3em; // 3x html font-size font-weight: bolder; } #filter-div { float: none; clear: both; // stop floating left } #score { float: right; font-size: 1em; font-weight: normal; } #hint-div, #feedback-div { width: 90%; margin: 5px auto 5px; // top left/right bottom padding: 5px; position: relative; box-shadow: 3px 3px 2px #aaaaaa; } #feedback-div { margin-bottom: 0px; } #hint { padding: 5px; // not working because span instead of div } select option:disabled { color: whitesmoke; // disabled menu categories hard to see in original color font-weight: bold; } /* The Modal (background) */ .modal { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 1; /* Sit on top */ left: 0; top: 0; width: 100%; /* Full width */ height: 100%; /* Full height */ overflow: auto; /* Enable scroll if needed */ background-color: rgb(0,0,0); /* Fallback color */ background-color: rgba(0,0,0,0.4); /* Black w/ opacity */ } /* Modal Content/Box */ .modal-content { background-color: #fefefe; margin: 15% auto; /* 15% from the top and centered */ padding: 20px; border: 1px solid #888; width: 33%; /* Could be more or less, depending on screen size */ box-shadow: 3px 3px 2px black; } /* The Close Button */ .close { color: #aaa; float: right; font-size: 22px; font-weight: bold; margin-top: -20px; } .close:hover, .close:focus { color: black; text-decoration: none; cursor: pointer; }
src/main/resources/static/online/css/fonts/flaticon/font/flaticon.css
camunda-consulting/camunda-showcase-insurance-application
/* Flaticon icon font: Flaticon Creation date: 03/12/2018 06:50 */ @font-face { font-family: "Flaticon"; src: url("./Flaticon.eot"); src: url("./Flaticon.eot?#iefix") format("embedded-opentype"), url("./Flaticon.woff") format("woff"), url("./Flaticon.ttf") format("truetype"), url("./Flaticon.svg#Flaticon") format("svg"); font-weight: normal; font-style: normal; } @media screen and (-webkit-min-device-pixel-ratio:0) { @font-face { font-family: "Flaticon"; src: url("./Flaticon.svg#Flaticon") format("svg"); } } [class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after { font-family: Flaticon; font-size: 20px; font-style: normal; margin-left: 20px; } .flaticon-resume:before { content: "\f100"; } .flaticon-employee:before { content: "\f101"; } .flaticon-collaboration:before { content: "\f102"; } .flaticon-promotions:before { content: "\f103"; }
library/angular-1.4.9/docs/partials/api/ng/service/$animateCss.html
lvkklemo/shopApp
<a href='https://github.com/angular/angular.js/edit/v1.4.x/src/ng/animateCss.js?message=docs($animateCss)%3A%20describe%20your%20change...#L3' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this Doc</a> <a href='https://github.com/angular/angular.js/tree/v1.4.9/src/ng/animateCss.js#L3' class='view-source pull-right btn btn-primary'> <i class="glyphicon glyphicon-zoom-in">&nbsp;</i>View Source </a> <header class="api-profile-header"> <h1 class="api-profile-header-heading">$animateCss</h1> <ol class="api-profile-header-structure naked-list step-list"> <li> - service in module <a href="api/ng">ng</a> </li> </ol> </header> <div class="api-profile-description"> <p>This is the core version of <code>$animateCss</code>. By default, only when the <code>ngAnimate</code> is included, then the <code>$animateCss</code> service will actually perform animations.</p> <p>Click here <a href="api/ngAnimate/service/$animateCss">to read the documentation for $animateCss</a>.</p> </div> <div> </div>
docs/darks/log/utils/time/class-use/AndroidDateFormater.html
liulhdarks/darks-logs
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_14) on Mon Apr 14 22:44:52 CST 2014 --> <TITLE> Àà darks.log.utils.time.AndroidDateFormater µÄʹÓà </TITLE> <META NAME="date" CONTENT="2014-04-14"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Àà darks.log.utils.time.AndroidDateFormater µÄʹÓÃ"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Ìø¹ýµ¼º½Á´½Ó"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>¸ÅÊö</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Èí¼þ°ü</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../darks/log/utils/time/AndroidDateFormater.html" title="darks.log.utils.time ÖеÄÀà"><FONT CLASS="NavBarFont1"><B>Àà</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>ʹÓÃ</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Ê÷</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Ë÷Òý</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>°ïÖú</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;ÉÏÒ»¸ö&nbsp; &nbsp;ÏÂÒ»¸ö</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?darks/log/utils/time/\class-useAndroidDateFormater.html" target="_top"><B>¿ò¼Ü</B></A> &nbsp; &nbsp;<A HREF="AndroidDateFormater.html" target="_top"><B>ÎÞ¿ò¼Ü</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>ËùÓÐÀà</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>ËùÓÐÀà</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Àà darks.log.utils.time.AndroidDateFormater<br>µÄʹÓÃ</B></H2> </CENTER> ûÓÐ darks.log.utils.time.AndroidDateFormater µÄÓ÷¨ <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Ìø¹ýµ¼º½Á´½Ó"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>¸ÅÊö</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Èí¼þ°ü</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../darks/log/utils/time/AndroidDateFormater.html" title="darks.log.utils.time ÖеÄÀà"><FONT CLASS="NavBarFont1"><B>Àà</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>ʹÓÃ</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Ê÷</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Ë÷Òý</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>°ïÖú</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;ÉÏÒ»¸ö&nbsp; &nbsp;ÏÂÒ»¸ö</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?darks/log/utils/time/\class-useAndroidDateFormater.html" target="_top"><B>¿ò¼Ü</B></A> &nbsp; &nbsp;<A HREF="AndroidDateFormater.html" target="_top"><B>ÎÞ¿ò¼Ü</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>ËùÓÐÀà</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>ËùÓÐÀà</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
node_modules/npm/html/doc/misc/npm-coding-style.html
rtiwariops/rain
<!doctype html> <html> <title>npm-coding-style</title> <meta charset="utf-8"> <link rel="stylesheet" type="text/css" href="../../static/style.css"> <link rel="canonical" href="https://www.npmjs.org/doc/misc/npm-coding-style.html"> <script async=true src="../../static/toc.js"></script> <body> <div id="wrapper"> <h1><a href="../misc/npm-coding-style.html">npm-coding-style</a></h1> <p>npm&#39;s &quot;funny&quot; coding style</p> <h2 id="description">DESCRIPTION</h2> <p>npm&#39;s coding style is a bit unconventional. It is not different for difference&#39;s sake, but rather a carefully crafted style that is designed to reduce visual clutter and make bugs more apparent.</p> <p>If you want to contribute to npm (which is very encouraged), you should make your code conform to npm&#39;s style.</p> <p>Note: this concerns npm&#39;s code not the specific packages that you can download from the npm registry.</p> <h2 id="line-length">Line Length</h2> <p>Keep lines shorter than 80 characters. It&#39;s better for lines to be too short than to be too long. Break up long lists, objects, and other statements onto multiple lines.</p> <h2 id="indentation">Indentation</h2> <p>Two-spaces. Tabs are better, but they look like hell in web browsers (and on GitHub), and node uses 2 spaces, so that&#39;s that.</p> <p>Configure your editor appropriately.</p> <h2 id="curly-braces">Curly braces</h2> <p>Curly braces belong on the same line as the thing that necessitates them.</p> <p>Bad:</p> <pre><code>function () { </code></pre><p>Good:</p> <pre><code>function () { </code></pre><p>If a block needs to wrap to the next line, use a curly brace. Don&#39;t use it if it doesn&#39;t.</p> <p>Bad:</p> <pre><code>if (foo) { bar() } while (foo) bar() </code></pre><p>Good:</p> <pre><code>if (foo) bar() while (foo) { bar() } </code></pre><h2 id="semicolons">Semicolons</h2> <p>Don&#39;t use them except in four situations:</p> <ul> <li><code>for (;;)</code> loops. They&#39;re actually required.</li> <li>null loops like: <code>while (something) ;</code> (But you&#39;d better have a good reason for doing that.)</li> <li><code>case &#39;foo&#39;: doSomething(); break</code></li> <li>In front of a leading <code>(</code> or <code>[</code> at the start of the line. This prevents the expression from being interpreted as a function call or property access, respectively.</li> </ul> <p>Some examples of good semicolon usage:</p> <pre><code>;(x || y).doSomething() ;[a, b, c].forEach(doSomething) for (var i = 0; i &lt; 10; i ++) { switch (state) { case &#39;begin&#39;: start(); continue case &#39;end&#39;: finish(); break default: throw new Error(&#39;unknown state&#39;) } end() } </code></pre><p>Note that starting lines with <code>-</code> and <code>+</code> also should be prefixed with a semicolon, but this is much less common.</p> <h2 id="comma-first">Comma First</h2> <p>If there is a list of things separated by commas, and it wraps across multiple lines, put the comma at the start of the next line, directly below the token that starts the list. Put the final token in the list on a line by itself. For example:</p> <pre><code>var magicWords = [ &#39;abracadabra&#39; , &#39;gesundheit&#39; , &#39;ventrilo&#39; ] , spells = { &#39;fireball&#39; : function () { setOnFire() } , &#39;water&#39; : function () { putOut() } } , a = 1 , b = &#39;abc&#39; , etc , somethingElse </code></pre><h2 id="quotes">Quotes</h2> <p>Use single quotes for strings except to avoid escaping.</p> <p>Bad:</p> <pre><code>var notOk = &quot;Just double quotes&quot; </code></pre><p>Good:</p> <pre><code>var ok = &#39;String contains &quot;double&quot; quotes&#39; var alsoOk = &quot;String contains &#39;single&#39; quotes or apostrophe&quot; </code></pre><h2 id="whitespace">Whitespace</h2> <p>Put a single space in front of ( for anything other than a function call. Also use a single space wherever it makes things more readable.</p> <p>Don&#39;t leave trailing whitespace at the end of lines. Don&#39;t indent empty lines. Don&#39;t use more spaces than are helpful.</p> <h2 id="functions">Functions</h2> <p>Use named functions. They make stack traces a lot easier to read.</p> <h2 id="callbacks-sync-async-style">Callbacks, Sync/async Style</h2> <p>Use the asynchronous/non-blocking versions of things as much as possible. It might make more sense for npm to use the synchronous fs APIs, but this way, the fs and http and child process stuff all uses the same callback-passing methodology.</p> <p>The callback should always be the last argument in the list. Its first argument is the Error or null.</p> <p>Be very careful never to ever ever throw anything. It&#39;s worse than useless. Just send the error message back as the first argument to the callback.</p> <h2 id="errors">Errors</h2> <p>Always create a new Error object with your message. Don&#39;t just return a string message to the callback. Stack traces are handy.</p> <h2 id="logging">Logging</h2> <p>Logging is done using the <a href="https://github.com/npm/npmlog">npmlog</a> utility.</p> <p>Please clean up logs when they are no longer helpful. In particular, logging the same object over and over again is not helpful. Logs should report what&#39;s happening so that it&#39;s easier to track down where a fault occurs.</p> <p>Use appropriate log levels. See <code><a href="../misc/npm-config.html">npm-config(7)</a></code> and search for &quot;loglevel&quot;.</p> <h2 id="case-naming-etc-">Case, naming, etc.</h2> <p>Use <code>lowerCamelCase</code> for multiword identifiers when they refer to objects, functions, methods, properties, or anything not specified in this section.</p> <p>Use <code>UpperCamelCase</code> for class names (things that you&#39;d pass to &quot;new&quot;).</p> <p>Use <code>all-lower-hyphen-css-case</code> for multiword filenames and config keys.</p> <p>Use named functions. They make stack traces easier to follow.</p> <p>Use <code>CAPS_SNAKE_CASE</code> for constants, things that should never change and are rarely used.</p> <p>Use a single uppercase letter for function names where the function would normally be anonymous, but needs to call itself recursively. It makes it clear that it&#39;s a &quot;throwaway&quot; function.</p> <h2 id="null-undefined-false-0">null, undefined, false, 0</h2> <p>Boolean variables and functions should always be either <code>true</code> or <code>false</code>. Don&#39;t set it to 0 unless it&#39;s supposed to be a number.</p> <p>When something is intentionally missing or removed, set it to <code>null</code>.</p> <p>Don&#39;t set things to <code>undefined</code>. Reserve that value to mean &quot;not yet set to anything.&quot;</p> <p>Boolean objects are verboten.</p> <h2 id="see-also">SEE ALSO</h2> <ul> <li><a href="../misc/npm-developers.html">npm-developers(7)</a></li> <li><a href="../cli/npm.html">npm(1)</a></li> </ul> </div> <table border=0 cellspacing=0 cellpadding=0 id=npmlogo> <tr><td style="width:180px;height:10px;background:rgb(237,127,127)" colspan=18>&nbsp;</td></tr> <tr><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td colspan=6 style="width:60px;height:10px;background:#fff">&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td></tr> <tr><td colspan=2 style="width:20px;height:30px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=4 colspan=2>&nbsp;</td><td style="width:10px;height:20px;background:rgb(237,127,127)" rowspan=2>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=3 colspan=2>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td></tr> <tr><td style="width:10px;height:10px;background:#fff" rowspan=2>&nbsp;</td></tr> <tr><td style="width:10px;height:10px;background:#fff">&nbsp;</td></tr> <tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr> <tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr> </table> <p id="footer">npm-coding-style &mdash; npm@4.6.1</p>
UI/src/components/widgets/codeanalysis/testList.html
nireeshT/Hygieia
<div class="col-xs-12"><br> <div class="widget "> <div class="widget-heading"> {{ $ctrl.testTitle }} </div> <div hide-empty="['{{ $ctrl.testData[0] }}']"> <div ng-class="($ctrl.testData[0].totalCount>3) ? 'widget-body divWithScroll' : 'widget-body'"> <div class="dash-row clickable ca-test-row" ng-repeat="test in $ctrl.testData | orderBy:'-details.endTime'" ng-click="$ctrl.details(test.details)" uib-tooltip-html="'<p>{{test.name}}</p>'"> <div class="col-xs-6 ca-name ellipsis"> {{ test.name | limitTo: 30 }}{{test.name.length > 30 ? '...' : ''}} </div> <div class="col-xs-3 ca-value" ng-class="{'widget-font-fail': (test.failureCount > 0) || (test.successCount == 0)}"> {{test.successPercent}} </div> <div class="col-sx-3 text-small-date"> {{test.details.endTime | fromNow |limitTo:10}} </div> </div> </div> </div> </div> </div>
docs/solr-core/org/apache/solr/spelling/suggest/tst/package-summary.html
BibAlex/bhl_rails_4_solr
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_55) on Fri Jun 20 06:34:20 EDT 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>org.apache.solr.spelling.suggest.tst (Solr 4.9.0 API)</title> <meta name="date" content="2014-06-20"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="org.apache.solr.spelling.suggest.tst (Solr 4.9.0 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/apache/solr/spelling/suggest/jaspell/package-summary.html">Prev Package</a></li> <li><a href="../../../../../../org/apache/solr/store/blockcache/package-summary.html">Next Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/solr/spelling/suggest/tst/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Package" class="title">Package&nbsp;org.apache.solr.spelling.suggest.tst</h1> <div class="docSummary"> <div class="block"> Factories for <a href="http://lucene.apache.org/core/4_9_0/suggest/org/apache/lucene/search/suggest/tst/package-summary.html?is-external=true">TST</a> based <a href="../../../../../../org/apache/solr/spelling/suggest/Suggester.html" title="class in org.apache.solr.spelling.suggest"><code>Suggester</code></a>s</div> </div> <p>See:&nbsp;<a href="#package_description">Description</a></p> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation"> <caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Class</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../../../org/apache/solr/spelling/suggest/tst/TSTLookupFactory.html" title="class in org.apache.solr.spelling.suggest.tst">TSTLookupFactory</a></td> <td class="colLast"> <div class="block">Factory for <a href="http://lucene.apache.org/core/4_9_0/suggest/org/apache/lucene/search/suggest/tst/TSTLookup.html?is-external=true" title="class or interface in org.apache.lucene.search.suggest.tst"><code>TSTLookup</code></a></div> </td> </tr> </tbody> </table> </li> </ul> <a name="package_description"> <!-- --> </a> <h2 title="Package org.apache.solr.spelling.suggest.tst Description">Package org.apache.solr.spelling.suggest.tst Description</h2> <div class="block"><p> Factories for <a href="http://lucene.apache.org/core/4_9_0/suggest/org/apache/lucene/search/suggest/tst/package-summary.html?is-external=true">TST</a> based <a href="../../../../../../org/apache/solr/spelling/suggest/Suggester.html" title="class in org.apache.solr.spelling.suggest"><code>Suggester</code></a>s </p></div> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/apache/solr/spelling/suggest/jaspell/package-summary.html">Prev Package</a></li> <li><a href="../../../../../../org/apache/solr/store/blockcache/package-summary.html">Next Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/solr/spelling/suggest/tst/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small> <i>Copyright &copy; 2000-2014 Apache Software Foundation. All Rights Reserved.</i> <script src='../../../../../../prettify.js' type='text/javascript'></script> <script type='text/javascript'> (function(){ var oldonload = window.onload; if (typeof oldonload != 'function') { window.onload = prettyPrint; } else { window.onload = function() { oldonload(); prettyPrint(); } } })(); </script> </small></p> </body> </html>
corpus-oa-pmr/10.1136_bmjopen-2016-011048/pdftable/doubleTable4.html
ContentMine/cm-ucl
<?xml version="1.0" encoding="UTF-8"?> <html xmlns="http://www.w3.org/1999/xhtml"> <table border="1"> <tr> <td style="vertical-align:top"> <img src="../image/table4.png" width="500.0" height="284.4364937388193" style="vertical-align:top"/> </td> <td width="500.0" style="vertical-align:top"> <div> <svg stroke="none" stroke-width="0.0" id="svg2" version="1.1" inkscape:version="0.91 r13725" sodipodi:docname="table4.svg" height="800.0" width="700.0" xmlns="http://www.w3.org/2000/svg" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"> <g transform="scale(0.977331766996288) translate(-41.839,-450.631)"> <g class="metadata" id="metadata5416"> <g class="RDF"> <g class="Work" rdf:about="" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <g class="format">image/svg+xml</g> <g class="type" rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> <title stroke="black" stroke-width="1.0"/> </g> </g> </g> <g class="namedview" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="887" inkscape:window-height="858" id="namedview5414" showgrid="false" inkscape:zoom="0.80203125" inkscape:cx="300" inkscape:cy="400" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="0" inkscape:current-layer="svg2"/> <path stroke="black" clip-path="url(#clipPath1)" fill="#b2ccff" stroke-width="0.0" id="path2838" d="M41.839 735.173 L553.436 735.173 L553.436 450.631 L41.839 450.631 Z"/> <path stroke="black" clip-path="url(#clipPath1)" fill="#000000" stroke-width="0.0" id="path2840" d="M48.302 467.129 L546.973 467.129 L546.973 466.619 L48.302 466.619 Z"/> <path stroke="black" clip-path="url(#clipPath1)" fill="#000000" stroke-width="0.0" id="path2842" d="M48.302 684.15 L546.973 684.15 L546.973 683.64 L48.302 683.64 Z"/> <path stroke="black" clip-path="url(#clipPath1)" fill="#000000" stroke-width="0.0" id="path2844" d="M48.302 515.602 L546.973 515.602 L546.973 515.148 L48.302 515.148 Z"/> <text stroke="none" fill="#1919ff" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="604.0" x="48.302" y="463.614" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2846" xmlns:svgx="http://www.xml-cml.org/schema/svgx">T</text> <text stroke="none" fill="#1919ff" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="53.575" y="463.614" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2848" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#1919ff" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="604.0" x="58.543" y="463.614" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2850" xmlns:svgx="http://www.xml-cml.org/schema/svgx">b</text> <text stroke="none" fill="#1919ff" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="270.0" x="63.979" y="463.614" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2852" xmlns:svgx="http://www.xml-cml.org/schema/svgx">l</text> <text stroke="none" fill="#1919ff" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="66.409" y="463.614" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2854" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#1919ff" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="74.041" y="463.614" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2856" xmlns:svgx="http://www.xml-cml.org/schema/svgx">4</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="718.0" x="87.987" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2858" xmlns:svgx="http://www.xml-cml.org/schema/svgx">U</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="94.449" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2860" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="98.949" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2862" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="106.639" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2864" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="111.607" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2866" xmlns:svgx="http://www.xml-cml.org/schema/svgx">f</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="116.731" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2868" xmlns:svgx="http://www.xml-cml.org/schema/svgx">h</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="121.699" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2870" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="126.667" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2872" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="131.635" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2874" xmlns:svgx="http://www.xml-cml.org/schema/svgx">l</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="133.597" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2876" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="136.027" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2878" xmlns:svgx="http://www.xml-cml.org/schema/svgx">h</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="140.995" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2880" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="145.495" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2882" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="150.463" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2884" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="153.186" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2886" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="160.839" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2888" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="163.561" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2890" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="168.529" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2892" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="173.029" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2894" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="177.997" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2896" xmlns:svgx="http://www.xml-cml.org/schema/svgx">u</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="182.965" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2898" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="185.672" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2900" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="190.172" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2902" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="195.14" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2904" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="202.34" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2906" xmlns:svgx="http://www.xml-cml.org/schema/svgx">d</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="207.308" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2908" xmlns:svgx="http://www.xml-cml.org/schema/svgx">u</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="212.276" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2910" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="215.174" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2912" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="217.136" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2914" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="222.104" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2916" xmlns:svgx="http://www.xml-cml.org/schema/svgx">g</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="229.723" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2918" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="234.691" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2920" xmlns:svgx="http://www.xml-cml.org/schema/svgx">-</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="237.589" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2922" xmlns:svgx="http://www.xml-cml.org/schema/svgx">y</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="241.913" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2924" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="246.881" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2926" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="251.849" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2928" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="257.447" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2930" xmlns:svgx="http://www.xml-cml.org/schema/svgx">f</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="259.877" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2932" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="264.845" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2934" xmlns:svgx="http://www.xml-cml.org/schema/svgx">l</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="266.807" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2936" xmlns:svgx="http://www.xml-cml.org/schema/svgx">l</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="268.769" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2938" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="718.0" x="273.548" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2940" xmlns:svgx="http://www.xml-cml.org/schema/svgx">w</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="280.01" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2942" xmlns:svgx="http://www.xml-cml.org/schema/svgx">-</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="282.908" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2944" xmlns:svgx="http://www.xml-cml.org/schema/svgx">u</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="287.876" y="463.614" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text2946" xmlns:svgx="http://www.xml-cml.org/schema/svgx">p</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="718.0" x="246.727" y="478.128" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2948" xmlns:svgx="http://www.xml-cml.org/schema/svgx">U</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="270.0" x="253.189" y="478.128" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2950" xmlns:svgx="http://www.xml-cml.org/schema/svgx">l</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="322.0" x="255.619" y="478.128" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2952" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="385.0" x="258.517" y="478.128" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2954" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="261.808" y="478.128" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2956" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="266.776" y="478.128" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2958" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="604.0" x="271.744" y="478.128" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2960" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="604.0" x="277.18" y="478.128" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2962" xmlns:svgx="http://www.xml-cml.org/schema/svgx">u</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="604.0" x="282.616" y="478.128" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2964" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="604.0" x="288.052" y="478.128" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2966" xmlns:svgx="http://www.xml-cml.org/schema/svgx">d</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="322.0" x="246.727" y="489.126" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2968" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="249.625" y="489.126" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2970" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="270.0" x="254.593" y="489.126" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2972" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="270.0" x="257.023" y="489.126" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2974" xmlns:svgx="http://www.xml-cml.org/schema/svgx">l</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="604.0" x="259.453" y="489.126" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2976" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="385.0" x="264.889" y="489.126" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2978" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="268.215" y="489.126" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2980" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="604.0" x="273.183" y="489.126" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2982" xmlns:svgx="http://www.xml-cml.org/schema/svgx">d</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="322.0" x="246.727" y="500.124" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2984" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="385.0" x="249.625" y="500.124" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2986" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="252.907" y="500.124" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2988" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="257.875" y="500.124" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2990" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="322.0" x="262.658" y="500.124" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2992" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="885.0" x="265.556" y="500.124" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2994" xmlns:svgx="http://www.xml-cml.org/schema/svgx">m</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="273.521" y="500.124" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2996" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="604.0" x="278.489" y="500.124" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text2998" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="322.0" x="283.925" y="500.124" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3000" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="718.0" x="326.608" y="500.124" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3002" xmlns:svgx="http://www.xml-cml.org/schema/svgx">U</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="333.07" y="500.124" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3004" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="604.0" x="338.038" y="500.124" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3006" xmlns:svgx="http://www.xml-cml.org/schema/svgx">u</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="343.474" y="500.124" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3008" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="270.0" x="348.442" y="500.124" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3010" xmlns:svgx="http://www.xml-cml.org/schema/svgx">l</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="353.595" y="500.124" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3012" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="358.563" y="500.124" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3014" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="385.0" x="363.531" y="500.124" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3016" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="366.805" y="500.124" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3018" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="604.0" x="246.727" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3020" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="583.0" x="252.163" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3022" xmlns:svgx="http://www.xml-cml.org/schema/svgx">=</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="257.41" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3024" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="262.378" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3026" xmlns:svgx="http://www.xml-cml.org/schema/svgx">4</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="385.0" x="267.346" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3028" xmlns:svgx="http://www.xml-cml.org/schema/svgx">*</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="604.0" x="326.608" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3030" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="583.0" x="332.044" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3032" xmlns:svgx="http://www.xml-cml.org/schema/svgx">=</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="337.291" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3034" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="342.259" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3036" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="770.0" x="397.645" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3038" xmlns:svgx="http://www.xml-cml.org/schema/svgx">O</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="718.0" x="404.575" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3040" xmlns:svgx="http://www.xml-cml.org/schema/svgx">R</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPLNLD+AdvOT7b6c0d50.B+20" svgx:charCode="8224" svgx:hexCode="2020" x="411.023" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3042" svgx:width="750.0" xmlns:svgx="http://www.xml-cml.org/schema/svgx">†</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="441.864" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3044" xmlns:svgx="http://www.xml-cml.org/schema/svgx">9</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="446.832" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3046" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="885.0" x="451.8" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3048" xmlns:svgx="http://www.xml-cml.org/schema/svgx">%</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="718.0" x="462.501" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3050" xmlns:svgx="http://www.xml-cml.org/schema/svgx">C</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="270.0" x="468.963" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3052" xmlns:svgx="http://www.xml-cml.org/schema/svgx">I</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="604.0" x="515.226" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3054" xmlns:svgx="http://www.xml-cml.org/schema/svgx">p</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="666.0" x="523.333" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3056" xmlns:svgx="http://www.xml-cml.org/schema/svgx">V</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="529.172" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3058" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="270.0" x="534.14" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3060" xmlns:svgx="http://www.xml-cml.org/schema/svgx">l</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="604.0" x="536.57" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3062" xmlns:svgx="http://www.xml-cml.org/schema/svgx">u</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPIFJP+AdvOT7b6c0d50.B" svgx:width="552.0" x="542.006" y="511.122" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3064" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="770.0" x="48.302" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3066" xmlns:svgx="http://www.xml-cml.org/schema/svgx">G</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="666.0" x="55.232" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3068" xmlns:svgx="http://www.xml-cml.org/schema/svgx">P</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="63.95" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3070" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="66.671" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3072" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="71.639" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3074" xmlns:svgx="http://www.xml-cml.org/schema/svgx">-</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="74.537" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3076" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="79.037" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3078" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="84.005" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3080" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="88.973" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3082" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="93.473" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3084" xmlns:svgx="http://www.xml-cml.org/schema/svgx">u</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="98.441" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3086" xmlns:svgx="http://www.xml-cml.org/schema/svgx">l</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="100.403" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3088" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="102.833" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3090" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="107.605" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3092" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="110.035" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3094" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="111.997" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3096" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="116.965" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3098" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="121.933" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3100" xmlns:svgx="http://www.xml-cml.org/schema/svgx">,</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="127.051" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3102" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="134.705" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3104" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="885.0" x="137.603" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3106" xmlns:svgx="http://www.xml-cml.org/schema/svgx">%</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="145.568" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3108" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="254.158" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3110" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="259.125" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3112" xmlns:svgx="http://www.xml-cml.org/schema/svgx">4</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="266.8" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3114" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="269.698" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3116" xmlns:svgx="http://www.xml-cml.org/schema/svgx">4</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="274.666" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3118" xmlns:svgx="http://www.xml-cml.org/schema/svgx">3</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="279.634" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3120" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="334.038" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3122" xmlns:svgx="http://www.xml-cml.org/schema/svgx">3</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="339.006" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3124" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="346.68" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3126" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="349.578" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3128" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="354.546" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3130" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="359.514" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3132" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="397.648" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3134" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="402.616" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3136" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="405.046" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3138" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="410.014" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3140" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="441.869" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3142" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="446.837" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3144" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="449.267" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3146" xmlns:svgx="http://www.xml-cml.org/schema/svgx">4</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="454.235" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3148" xmlns:svgx="http://www.xml-cml.org/schema/svgx">9</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="461.939" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3150" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="464.369" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3152" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="472.03" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3154" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="476.998" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3156" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="479.428" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3158" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="484.396" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3160" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="515.231" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3162" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="520.199" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3164" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="522.629" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3166" xmlns:svgx="http://www.xml-cml.org/schema/svgx">9</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="527.597" y="526.599" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3168" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="718.0" x="48.302" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3170" xmlns:svgx="http://www.xml-cml.org/schema/svgx">N</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="54.764" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3172" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="59.732" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3174" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="64.857" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3176" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="69.825" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3178" xmlns:svgx="http://www.xml-cml.org/schema/svgx">f</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="74.949" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3180" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="77.67" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3182" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="82.638" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3184" xmlns:svgx="http://www.xml-cml.org/schema/svgx">-</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="85.536" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3186" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="90.036" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3188" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="95.004" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3190" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="99.972" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3192" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="104.472" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3194" xmlns:svgx="http://www.xml-cml.org/schema/svgx">u</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="109.44" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3196" xmlns:svgx="http://www.xml-cml.org/schema/svgx">l</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="111.402" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3198" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="113.832" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3200" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="118.604" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3202" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="121.034" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3204" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="122.996" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3206" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="127.964" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3208" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="132.932" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3210" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="140.148" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3212" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="822.0" x="143.046" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3214" xmlns:svgx="http://www.xml-cml.org/schema/svgx">m</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="150.444" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3216" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="155.412" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3218" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="160.38" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3220" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="165.348" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3222" xmlns:svgx="http://www.xml-cml.org/schema/svgx">,</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="666.0" x="170.48" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3224" xmlns:svgx="http://www.xml-cml.org/schema/svgx">S</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="718.0" x="176.474" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3226" xmlns:svgx="http://www.xml-cml.org/schema/svgx">D</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="182.936" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3228" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="251.721" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3230" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="256.689" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3232" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="259.119" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3234" xmlns:svgx="http://www.xml-cml.org/schema/svgx">7</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="266.802" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3236" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="269.7" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3238" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="274.668" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3240" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="277.098" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3242" xmlns:svgx="http://www.xml-cml.org/schema/svgx">9</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="282.066" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3244" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="331.602" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3246" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="336.57" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3248" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="339.0" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3250" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="346.683" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3252" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="349.581" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3254" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="354.549" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3256" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="356.979" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3258" xmlns:svgx="http://www.xml-cml.org/schema/svgx">3</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="361.947" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3260" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="515.231" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3262" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="520.199" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3264" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="522.629" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3266" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="527.597" y="537.598" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3268" xmlns:svgx="http://www.xml-cml.org/schema/svgx">6</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="718.0" x="48.302" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3270" xmlns:svgx="http://www.xml-cml.org/schema/svgx">D</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="54.764" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3272" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="56.726" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3274" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="61.694" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3276" xmlns:svgx="http://www.xml-cml.org/schema/svgx">g</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="66.662" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3278" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="71.63" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3280" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="76.598" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3282" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="80.902" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3284" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="83.332" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3286" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="85.294" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3288" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="92.525" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3290" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="822.0" x="94.487" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3292" xmlns:svgx="http://www.xml-cml.org/schema/svgx">m</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="101.885" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3294" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="106.853" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3296" xmlns:svgx="http://www.xml-cml.org/schema/svgx">g</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="111.821" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3298" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="113.783" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3300" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="118.751" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3302" xmlns:svgx="http://www.xml-cml.org/schema/svgx">g</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="126.371" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3304" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="131.339" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3306" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="134.237" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3308" xmlns:svgx="http://www.xml-cml.org/schema/svgx">d</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="139.205" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3310" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="144.173" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3312" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="146.895" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3314" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="151.863" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3316" xmlns:svgx="http://www.xml-cml.org/schema/svgx">d</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="159.537" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3318" xmlns:svgx="http://www.xml-cml.org/schema/svgx">b</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="164.505" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3320" xmlns:svgx="http://www.xml-cml.org/schema/svgx">y</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="770.0" x="171.727" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3322" xmlns:svgx="http://www.xml-cml.org/schema/svgx">G</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="666.0" x="178.657" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3324" xmlns:svgx="http://www.xml-cml.org/schema/svgx">P</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="184.256" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3326" xmlns:svgx="http://www.xml-cml.org/schema/svgx">,</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="189.415" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3328" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="197.069" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3330" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="885.0" x="199.967" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3332" xmlns:svgx="http://www.xml-cml.org/schema/svgx">%</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="207.932" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3334" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPLNLE+AdvOT82c4f4c4+20" svgx:charCode="8225" svgx:hexCode="2021" x="210.841" y="548.597" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3336" svgx:width="750.0" xmlns:svgx="http://www.xml-cml.org/schema/svgx">‡</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="254.154" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3338" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="259.122" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3340" xmlns:svgx="http://www.xml-cml.org/schema/svgx">6</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="266.796" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3342" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="269.694" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3344" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="274.662" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3346" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="279.63" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3348" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="284.598" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3350" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="334.035" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3352" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="339.003" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3354" xmlns:svgx="http://www.xml-cml.org/schema/svgx">3</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="346.677" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3356" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="349.575" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3358" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="354.543" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3360" xmlns:svgx="http://www.xml-cml.org/schema/svgx">4</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="359.511" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3362" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="397.645" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3364" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="402.613" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3366" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="405.043" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3368" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="410.011" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3370" xmlns:svgx="http://www.xml-cml.org/schema/svgx">8</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="441.866" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3372" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="446.834" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3374" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="449.264" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3376" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="454.232" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3378" xmlns:svgx="http://www.xml-cml.org/schema/svgx">7</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="461.936" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3380" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="464.366" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3382" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="472.028" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3384" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="476.995" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3386" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="479.425" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3388" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="484.393" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3390" xmlns:svgx="http://www.xml-cml.org/schema/svgx">4</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="515.228" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3392" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="520.196" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3394" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="522.626" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3396" xmlns:svgx="http://www.xml-cml.org/schema/svgx">4</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="527.594" y="548.597" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3398" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPLNLE+AdvOT82c4f4c4+20" svgx:charCode="8211" svgx:hexCode="2013" x="48.302" y="559.651" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3400" svgx:width="750.0" xmlns:svgx="http://www.xml-cml.org/schema/svgx">–</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="666.0" x="55.956" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3402" xmlns:svgx="http://www.xml-cml.org/schema/svgx">P</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="61.95" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3404" xmlns:svgx="http://www.xml-cml.org/schema/svgx">l</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="63.912" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3406" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="68.88" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3408" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="70.842" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3410" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="78.521" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3412" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="81.242" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3414" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="86.21" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3416" xmlns:svgx="http://www.xml-cml.org/schema/svgx">d</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="91.178" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3418" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="93.14" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3420" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="98.108" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3422" xmlns:svgx="http://www.xml-cml.org/schema/svgx">g</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="103.076" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3424" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="105.792" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3426" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="110.76" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3428" xmlns:svgx="http://www.xml-cml.org/schema/svgx">p</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="115.728" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3430" xmlns:svgx="http://www.xml-cml.org/schema/svgx">h</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="120.696" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3432" xmlns:svgx="http://www.xml-cml.org/schema/svgx">y</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="125.011" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3434" xmlns:svgx="http://www.xml-cml.org/schema/svgx">,</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="130.113" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3436" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="137.767" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3438" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="885.0" x="140.665" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3440" xmlns:svgx="http://www.xml-cml.org/schema/svgx">%</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="148.63" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3442" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="259.09" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3444" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="266.801" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3446" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="269.699" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3448" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="274.667" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3450" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="338.971" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3452" xmlns:svgx="http://www.xml-cml.org/schema/svgx">6</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="346.681" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3454" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="349.579" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3456" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="354.547" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3458" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="359.515" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3460" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="397.649" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3462" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="402.617" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3464" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="405.047" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3466" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="410.015" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3468" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="441.87" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3470" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="446.838" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3472" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="449.268" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3474" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="454.236" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3476" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="461.939" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3478" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="464.369" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3480" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="472.031" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3482" xmlns:svgx="http://www.xml-cml.org/schema/svgx">4</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="476.999" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3484" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="479.429" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3486" xmlns:svgx="http://www.xml-cml.org/schema/svgx">9</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="484.397" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3488" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="515.232" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3490" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="520.2" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3492" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="522.63" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3494" xmlns:svgx="http://www.xml-cml.org/schema/svgx">9</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="527.598" y="559.651" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3496" xmlns:svgx="http://www.xml-cml.org/schema/svgx">8</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPLNLE+AdvOT82c4f4c4+20" svgx:charCode="8211" svgx:hexCode="2013" x="48.302" y="570.649" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3498" svgx:width="750.0" xmlns:svgx="http://www.xml-cml.org/schema/svgx">–</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="718.0" x="55.956" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3500" xmlns:svgx="http://www.xml-cml.org/schema/svgx">U</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="62.418" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3502" xmlns:svgx="http://www.xml-cml.org/schema/svgx">l</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="64.38" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3504" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="66.81" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3506" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="69.563" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3508" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="74.531" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3510" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="79.031" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3512" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="83.999" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3514" xmlns:svgx="http://www.xml-cml.org/schema/svgx">u</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="88.967" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3516" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="93.935" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3518" xmlns:svgx="http://www.xml-cml.org/schema/svgx">d</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="101.596" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3520" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="822.0" x="103.558" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3522" xmlns:svgx="http://www.xml-cml.org/schema/svgx">m</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="110.956" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3524" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="115.924" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3526" xmlns:svgx="http://www.xml-cml.org/schema/svgx">g</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="120.892" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3528" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="122.854" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3530" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="127.822" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3532" xmlns:svgx="http://www.xml-cml.org/schema/svgx">g</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="132.79" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3534" xmlns:svgx="http://www.xml-cml.org/schema/svgx">,</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="137.88" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3536" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="145.591" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3538" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="885.0" x="148.488" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3540" xmlns:svgx="http://www.xml-cml.org/schema/svgx">%</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="156.453" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3542" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPLNLE+AdvOT82c4f4c4+20" svgx:charCode="8225" svgx:hexCode="2021" x="159.307" y="570.649" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3544" svgx:width="750.0" xmlns:svgx="http://www.xml-cml.org/schema/svgx">‡</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="254.155" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3546" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="259.123" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3548" xmlns:svgx="http://www.xml-cml.org/schema/svgx">6</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="266.797" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3550" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="269.695" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3552" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="274.663" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3554" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="279.631" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3556" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="284.599" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3558" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="334.036" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3560" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="339.004" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3562" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="346.678" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3564" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="349.576" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3566" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="354.544" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3568" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="359.512" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3570" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="397.646" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3572" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="402.614" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3574" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="405.044" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3576" xmlns:svgx="http://www.xml-cml.org/schema/svgx">7</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="410.012" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3578" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="441.867" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3580" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="446.835" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3582" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="449.265" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3584" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="454.233" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3586" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="461.937" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3588" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="464.367" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3590" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="472.028" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3592" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="476.996" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3594" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="479.426" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3596" xmlns:svgx="http://www.xml-cml.org/schema/svgx">6</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="484.394" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3598" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="515.229" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3600" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="520.197" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3602" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="522.627" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3604" xmlns:svgx="http://www.xml-cml.org/schema/svgx">6</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="527.595" y="570.649" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3606" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="666.0" x="48.303" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3608" xmlns:svgx="http://www.xml-cml.org/schema/svgx">P</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="54.297" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3610" xmlns:svgx="http://www.xml-cml.org/schema/svgx">h</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="59.265" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3612" xmlns:svgx="http://www.xml-cml.org/schema/svgx">y</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="63.554" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3614" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="68.054" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3616" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="70.016" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3618" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="74.984" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3620" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="77.414" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3622" xmlns:svgx="http://www.xml-cml.org/schema/svgx">h</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="82.382" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3624" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="87.35" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3626" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="90.087" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3628" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="95.055" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3630" xmlns:svgx="http://www.xml-cml.org/schema/svgx">p</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="100.023" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3632" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="101.985" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3634" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="106.301" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3636" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="111.403" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3638" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="114.125" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3640" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="119.093" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3642" xmlns:svgx="http://www.xml-cml.org/schema/svgx">f</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="121.523" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3644" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="126.491" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3646" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="129.389" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3648" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="132.154" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3650" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="137.122" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3652" xmlns:svgx="http://www.xml-cml.org/schema/svgx">l</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="139.084" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3654" xmlns:svgx="http://www.xml-cml.org/schema/svgx">,</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="144.173" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3656" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="151.883" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3658" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="885.0" x="154.781" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3660" xmlns:svgx="http://www.xml-cml.org/schema/svgx">%</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="162.746" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3662" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="254.157" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3664" xmlns:svgx="http://www.xml-cml.org/schema/svgx">3</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="259.125" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3666" xmlns:svgx="http://www.xml-cml.org/schema/svgx">3</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="266.8" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3668" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="269.698" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3670" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="274.666" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3672" xmlns:svgx="http://www.xml-cml.org/schema/svgx">9</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="279.634" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3674" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="334.038" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3676" xmlns:svgx="http://www.xml-cml.org/schema/svgx">3</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="339.006" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3678" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="346.68" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3680" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="349.578" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3682" xmlns:svgx="http://www.xml-cml.org/schema/svgx">6</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="354.546" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3684" xmlns:svgx="http://www.xml-cml.org/schema/svgx">4</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="359.514" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3686" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="397.648" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3688" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="402.616" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3690" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="405.046" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3692" xmlns:svgx="http://www.xml-cml.org/schema/svgx">8</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="410.014" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3694" xmlns:svgx="http://www.xml-cml.org/schema/svgx">3</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="441.869" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3696" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="446.837" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3698" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="449.267" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3700" xmlns:svgx="http://www.xml-cml.org/schema/svgx">3</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="454.235" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3702" xmlns:svgx="http://www.xml-cml.org/schema/svgx">8</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="461.939" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3704" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="464.369" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3706" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="472.03" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3708" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="476.998" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3710" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="479.428" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3712" xmlns:svgx="http://www.xml-cml.org/schema/svgx">8</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="484.396" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3714" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="515.231" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3716" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="520.199" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3718" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="522.629" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3720" xmlns:svgx="http://www.xml-cml.org/schema/svgx">6</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="527.597" y="581.648" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3722" xmlns:svgx="http://www.xml-cml.org/schema/svgx">4</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="718.0" x="48.303" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3724" xmlns:svgx="http://www.xml-cml.org/schema/svgx">N</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="54.765" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3726" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="59.733" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3728" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="64.858" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3730" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="69.826" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3732" xmlns:svgx="http://www.xml-cml.org/schema/svgx">f</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="74.949" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3734" xmlns:svgx="http://www.xml-cml.org/schema/svgx">p</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="79.917" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3736" xmlns:svgx="http://www.xml-cml.org/schema/svgx">h</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="84.885" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3738" xmlns:svgx="http://www.xml-cml.org/schema/svgx">y</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="89.236" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3740" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="93.736" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3742" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="95.698" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3744" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="100.666" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3746" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="103.096" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3748" xmlns:svgx="http://www.xml-cml.org/schema/svgx">h</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="108.064" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3750" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="113.032" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3752" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="115.712" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3754" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="120.68" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3756" xmlns:svgx="http://www.xml-cml.org/schema/svgx">p</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="125.648" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3758" xmlns:svgx="http://www.xml-cml.org/schema/svgx">y</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="132.664" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3760" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="137.164" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3762" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="142.132" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3764" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="146.632" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3766" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="151.132" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3768" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="153.094" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3770" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="158.062" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3772" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="163.03" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3774" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="170.196" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3776" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="822.0" x="173.094" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3778" xmlns:svgx="http://www.xml-cml.org/schema/svgx">m</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="180.492" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3780" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="185.46" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3782" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="190.428" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3784" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="195.396" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3786" xmlns:svgx="http://www.xml-cml.org/schema/svgx">,</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="666.0" x="200.527" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3788" xmlns:svgx="http://www.xml-cml.org/schema/svgx">S</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="718.0" x="206.521" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3790" xmlns:svgx="http://www.xml-cml.org/schema/svgx">D</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="212.983" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3792" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" svgx:charName="section" svgx:charCode="167" svgx:hexCode="a7" x="215.881" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3794" xmlns:svgx="http://www.xml-cml.org/schema/svgx">§</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="246.733" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3796" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="251.701" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3798" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="256.669" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3800" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="259.099" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3802" xmlns:svgx="http://www.xml-cml.org/schema/svgx">9</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="266.802" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3804" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="269.701" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3806" xmlns:svgx="http://www.xml-cml.org/schema/svgx">9</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="274.668" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3808" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="277.098" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3810" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="282.066" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3812" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="326.614" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3814" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="331.582" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3816" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="336.55" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3818" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="338.98" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3820" xmlns:svgx="http://www.xml-cml.org/schema/svgx">4</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="346.684" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3822" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="349.582" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3824" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="354.55" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3826" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="359.518" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3828" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="361.948" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3830" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="366.916" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3832" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="515.233" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3834" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="520.201" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3836" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="522.631" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3838" xmlns:svgx="http://www.xml-cml.org/schema/svgx">6</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="527.599" y="592.647" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3840" xmlns:svgx="http://www.xml-cml.org/schema/svgx">4</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="822.0" x="48.303" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3842" xmlns:svgx="http://www.xml-cml.org/schema/svgx">M</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="55.701" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3844" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="60.669" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3846" xmlns:svgx="http://www.xml-cml.org/schema/svgx">d</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="65.637" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3848" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="67.599" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3850" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="72.099" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3852" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="76.877" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3854" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="79.307" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3856" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="81.269" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3858" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="86.237" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3860" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="93.885" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3862" xmlns:svgx="http://www.xml-cml.org/schema/svgx">u</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="98.853" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3864" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="103.353" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3866" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="108.321" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3868" xmlns:svgx="http://www.xml-cml.org/schema/svgx">d</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="113.289" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3870" xmlns:svgx="http://www.xml-cml.org/schema/svgx">,</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="118.434" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3872" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="126.087" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3874" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="885.0" x="128.985" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3876" xmlns:svgx="http://www.xml-cml.org/schema/svgx">%</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="136.95" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3878" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="254.157" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3880" xmlns:svgx="http://www.xml-cml.org/schema/svgx">3</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="259.125" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3882" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="266.8" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3884" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="269.698" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3886" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="274.666" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3888" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="279.634" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3890" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="334.038" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3892" xmlns:svgx="http://www.xml-cml.org/schema/svgx">3</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="339.006" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3894" xmlns:svgx="http://www.xml-cml.org/schema/svgx">6</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="346.68" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3896" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="349.578" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3898" xmlns:svgx="http://www.xml-cml.org/schema/svgx">6</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="354.546" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3900" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="359.514" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3902" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="397.648" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3904" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="402.616" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3906" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="405.046" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3908" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="410.014" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3910" xmlns:svgx="http://www.xml-cml.org/schema/svgx">9</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="441.869" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3912" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="446.837" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3914" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="449.267" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3916" xmlns:svgx="http://www.xml-cml.org/schema/svgx">7</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="454.235" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3918" xmlns:svgx="http://www.xml-cml.org/schema/svgx">3</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="461.939" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3920" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="464.369" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3922" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="472.03" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3924" xmlns:svgx="http://www.xml-cml.org/schema/svgx">3</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="476.998" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3926" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="479.428" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3928" xmlns:svgx="http://www.xml-cml.org/schema/svgx">4</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="484.396" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3930" xmlns:svgx="http://www.xml-cml.org/schema/svgx">7</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="515.231" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3932" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="520.199" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3934" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="522.629" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3936" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="527.597" y="603.646" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3938" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPLNLE+AdvOT82c4f4c4+20" svgx:charCode="8211" svgx:hexCode="2013" x="48.303" y="614.645" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text3940" svgx:width="750.0" xmlns:svgx="http://www.xml-cml.org/schema/svgx">–</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="770.0" x="55.957" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3942" xmlns:svgx="http://www.xml-cml.org/schema/svgx">G</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="666.0" x="62.887" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3944" xmlns:svgx="http://www.xml-cml.org/schema/svgx">P</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="71.604" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3946" xmlns:svgx="http://www.xml-cml.org/schema/svgx">p</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="76.572" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3948" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="79.258" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3950" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="84.226" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3952" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="88.726" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3954" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="93.226" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3956" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="96.124" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3958" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="98.086" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3960" xmlns:svgx="http://www.xml-cml.org/schema/svgx">p</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="103.054" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3962" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="105.484" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3964" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="107.446" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3966" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="112.414" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3968" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="117.382" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3970" xmlns:svgx="http://www.xml-cml.org/schema/svgx">,</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="122.516" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3972" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="130.227" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3974" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="885.0" x="133.125" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3976" xmlns:svgx="http://www.xml-cml.org/schema/svgx">%</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="141.09" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3978" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="254.157" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3980" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="259.125" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3982" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="266.8" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3984" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="269.698" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3986" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="274.666" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3988" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="279.634" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3990" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="334.038" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3992" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="339.006" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3994" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="346.68" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3996" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="349.578" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text3998" xmlns:svgx="http://www.xml-cml.org/schema/svgx">3</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="354.546" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4000" xmlns:svgx="http://www.xml-cml.org/schema/svgx">8</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="359.514" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4002" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="397.648" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4004" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="402.616" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4006" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="405.046" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4008" xmlns:svgx="http://www.xml-cml.org/schema/svgx">8</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="410.014" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4010" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="441.869" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4012" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="446.837" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4014" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="449.267" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4016" xmlns:svgx="http://www.xml-cml.org/schema/svgx">3</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="454.235" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4018" xmlns:svgx="http://www.xml-cml.org/schema/svgx">7</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="461.939" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4020" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="464.369" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4022" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="472.03" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4024" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="476.998" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4026" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="479.428" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4028" xmlns:svgx="http://www.xml-cml.org/schema/svgx">9</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="484.396" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4030" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="515.231" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4032" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="520.199" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4034" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="522.629" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4036" xmlns:svgx="http://www.xml-cml.org/schema/svgx">7</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="527.597" y="614.645" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4038" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPLNLE+AdvOT82c4f4c4+20" svgx:charCode="8211" svgx:hexCode="2013" x="48.303" y="625.643" font-size="9.0" font-family="Helvetica" font-weight="bold" id="text4040" svgx:width="750.0" xmlns:svgx="http://www.xml-cml.org/schema/svgx">–</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="770.0" x="55.957" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4042" xmlns:svgx="http://www.xml-cml.org/schema/svgx">O</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="604.0" x="62.703" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4044" xmlns:svgx="http://www.xml-cml.org/schema/svgx">T</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="718.0" x="67.975" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4046" xmlns:svgx="http://www.xml-cml.org/schema/svgx">C</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="74.437" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4048" xmlns:svgx="http://www.xml-cml.org/schema/svgx">,</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="79.541" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4050" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="87.252" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4052" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="885.0" x="90.15" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4054" xmlns:svgx="http://www.xml-cml.org/schema/svgx">%</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="98.115" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4056" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="254.156" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4058" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="259.124" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4060" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="266.798" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4062" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="269.696" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4064" xmlns:svgx="http://www.xml-cml.org/schema/svgx">4</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="274.664" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4066" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="279.632" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4068" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="334.036" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4070" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="339.004" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4072" xmlns:svgx="http://www.xml-cml.org/schema/svgx">7</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="346.678" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4074" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="349.576" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4076" xmlns:svgx="http://www.xml-cml.org/schema/svgx">4</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="354.544" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4078" xmlns:svgx="http://www.xml-cml.org/schema/svgx">9</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="359.512" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4080" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="397.646" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4082" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="402.614" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4084" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="405.044" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4086" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="410.012" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4088" xmlns:svgx="http://www.xml-cml.org/schema/svgx">7</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="441.867" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4090" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="446.835" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4092" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="449.265" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4094" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="454.233" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4096" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="461.937" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4098" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="464.367" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4100" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="472.028" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4102" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="476.996" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4104" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="479.426" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4106" xmlns:svgx="http://www.xml-cml.org/schema/svgx">4</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="484.394" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4108" xmlns:svgx="http://www.xml-cml.org/schema/svgx">9</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="515.229" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4110" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="520.197" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4112" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="522.627" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4114" xmlns:svgx="http://www.xml-cml.org/schema/svgx">6</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="527.595" y="625.643" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4116" xmlns:svgx="http://www.xml-cml.org/schema/svgx">9</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="718.0" x="48.303" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4118" xmlns:svgx="http://www.xml-cml.org/schema/svgx">N</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="54.765" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4120" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="59.733" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4122" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="64.858" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4124" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="69.826" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4126" xmlns:svgx="http://www.xml-cml.org/schema/svgx">f</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="770.0" x="74.949" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4128" xmlns:svgx="http://www.xml-cml.org/schema/svgx">G</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="666.0" x="81.879" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4130" xmlns:svgx="http://www.xml-cml.org/schema/svgx">P</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="90.597" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4132" xmlns:svgx="http://www.xml-cml.org/schema/svgx">p</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="95.565" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4134" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="98.307" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4136" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="103.275" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4138" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="107.775" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4140" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="112.275" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4142" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="115.173" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4144" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="117.135" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4146" xmlns:svgx="http://www.xml-cml.org/schema/svgx">p</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="122.103" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4148" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="124.533" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4150" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="126.495" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4152" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="131.463" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4154" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="136.431" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4156" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="143.606" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4158" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="822.0" x="146.504" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4160" xmlns:svgx="http://www.xml-cml.org/schema/svgx">m</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="153.902" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4162" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="158.87" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4164" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="163.838" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4166" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="168.806" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4168" xmlns:svgx="http://www.xml-cml.org/schema/svgx">,</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="666.0" x="173.938" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4170" xmlns:svgx="http://www.xml-cml.org/schema/svgx">S</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="718.0" x="179.932" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4172" xmlns:svgx="http://www.xml-cml.org/schema/svgx">D</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="186.394" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4174" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="251.721" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4176" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="256.689" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4178" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="259.119" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4180" xmlns:svgx="http://www.xml-cml.org/schema/svgx">6</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="266.802" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4182" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="269.7" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4184" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="274.668" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4186" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="277.098" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4188" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="282.066" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4190" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="331.602" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4192" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="336.57" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4194" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="339.0" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4196" xmlns:svgx="http://www.xml-cml.org/schema/svgx">4</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="346.683" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4198" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="349.581" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4200" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="354.549" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4202" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="356.979" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4204" xmlns:svgx="http://www.xml-cml.org/schema/svgx">7</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="361.947" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4206" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="515.231" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4208" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="520.199" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4210" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="522.629" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4212" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="527.597" y="636.642" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4214" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="718.0" x="48.303" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4216" xmlns:svgx="http://www.xml-cml.org/schema/svgx">C</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="54.596" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4218" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="59.564" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4220" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="62.462" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4222" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="64.892" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4224" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="66.854" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4226" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="71.354" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4228" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="76.322" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4230" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="80.619" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4232" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="83.049" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4234" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="88.017" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4236" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="90.767" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4238" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="95.735" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4240" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="97.697" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4242" xmlns:svgx="http://www.xml-cml.org/schema/svgx">d</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="105.337" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4244" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="107.299" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4246" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="112.267" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4248" xmlns:svgx="http://www.xml-cml.org/schema/svgx">j</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="114.229" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4250" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="119.197" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4252" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="123.697" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4254" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="126.127" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4256" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="128.089" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4258" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="133.057" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4260" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="138.025" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4262" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="145.25" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4264" xmlns:svgx="http://www.xml-cml.org/schema/svgx">b</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="150.218" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4266" xmlns:svgx="http://www.xml-cml.org/schema/svgx">y</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="770.0" x="157.383" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4268" xmlns:svgx="http://www.xml-cml.org/schema/svgx">G</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="666.0" x="164.313" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4270" xmlns:svgx="http://www.xml-cml.org/schema/svgx">P</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="169.913" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4272" xmlns:svgx="http://www.xml-cml.org/schema/svgx">,</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="175.072" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4274" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="182.725" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4276" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="885.0" x="185.623" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4278" xmlns:svgx="http://www.xml-cml.org/schema/svgx">%</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="193.588" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4280" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="254.159" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4282" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="259.127" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4284" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="266.802" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4286" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="269.7" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4288" xmlns:svgx="http://www.xml-cml.org/schema/svgx">3</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="274.668" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4290" xmlns:svgx="http://www.xml-cml.org/schema/svgx">9</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="279.636" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4292" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="334.04" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4294" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="339.008" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4296" xmlns:svgx="http://www.xml-cml.org/schema/svgx">7</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="346.682" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4298" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="349.58" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4300" xmlns:svgx="http://www.xml-cml.org/schema/svgx">3</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="354.548" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4302" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="359.516" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4304" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="397.65" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4306" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="402.618" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4308" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="405.048" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4310" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="410.016" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4312" xmlns:svgx="http://www.xml-cml.org/schema/svgx">7</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="441.87" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4314" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="446.838" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4316" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="449.268" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4318" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="454.236" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4320" xmlns:svgx="http://www.xml-cml.org/schema/svgx">7</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="461.94" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4322" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="464.37" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4324" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="472.032" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4326" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="477.0" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4328" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="479.43" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4330" xmlns:svgx="http://www.xml-cml.org/schema/svgx">8</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="484.398" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4332" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="515.233" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4334" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="520.201" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4336" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="522.631" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4338" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="527.599" y="647.641" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4340" xmlns:svgx="http://www.xml-cml.org/schema/svgx">6</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="718.0" x="48.303" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4342" xmlns:svgx="http://www.xml-cml.org/schema/svgx">N</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="54.765" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4344" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="59.733" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4346" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="64.858" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4348" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="69.826" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4350" xmlns:svgx="http://www.xml-cml.org/schema/svgx">f</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="74.949" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4352" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="76.911" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4354" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="81.879" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4356" xmlns:svgx="http://www.xml-cml.org/schema/svgx">j</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="83.841" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4358" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="88.809" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4360" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="93.309" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4362" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="95.739" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4364" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="97.701" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4366" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="102.669" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4368" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="107.637" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4370" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="114.863" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4372" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="822.0" x="117.761" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4374" xmlns:svgx="http://www.xml-cml.org/schema/svgx">m</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="125.159" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4376" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="130.127" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4378" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="135.095" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4380" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="140.063" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4382" xmlns:svgx="http://www.xml-cml.org/schema/svgx">,</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="666.0" x="145.194" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4384" xmlns:svgx="http://www.xml-cml.org/schema/svgx">S</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="718.0" x="151.188" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4386" xmlns:svgx="http://www.xml-cml.org/schema/svgx">D</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="157.651" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4388" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="251.721" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4390" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="256.689" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4392" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="259.119" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4394" xmlns:svgx="http://www.xml-cml.org/schema/svgx">4</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="266.802" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4396" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="269.7" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4398" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="274.668" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4400" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="277.098" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4402" xmlns:svgx="http://www.xml-cml.org/schema/svgx">6</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="282.066" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4404" xmlns:svgx="http://www.xml-cml.org/schema/svgx">7</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="287.034" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4406" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="331.602" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4408" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="336.57" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4410" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="339.0" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4412" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="346.683" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4414" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="349.581" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4416" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="354.549" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4418" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="356.979" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4420" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="361.947" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4422" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="366.915" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4424" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="515.232" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4426" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="520.2" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4428" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="522.63" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4430" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="527.598" y="658.64" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4432" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="666.0" x="48.303" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4434" xmlns:svgx="http://www.xml-cml.org/schema/svgx">S</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="54.297" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4436" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="59.265" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4438" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="63.765" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4440" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="68.733" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4442" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="73.701" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4444" xmlns:svgx="http://www.xml-cml.org/schema/svgx">d</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="78.669" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4446" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="83.637" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4448" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="86.535" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4450" xmlns:svgx="http://www.xml-cml.org/schema/svgx">y</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="93.715" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4452" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="98.215" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4454" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="103.183" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4456" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="105.905" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4458" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="113.559" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4460" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="116.28" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4462" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="121.248" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4464" xmlns:svgx="http://www.xml-cml.org/schema/svgx">f</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="123.678" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4466" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="128.646" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4468" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="131.544" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4470" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="134.252" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4472" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="139.22" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4474" xmlns:svgx="http://www.xml-cml.org/schema/svgx">l</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="141.182" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4476" xmlns:svgx="http://www.xml-cml.org/schema/svgx">,</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="146.328" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4478" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="153.982" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4480" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="885.0" x="156.88" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4482" xmlns:svgx="http://www.xml-cml.org/schema/svgx">%</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="164.845" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4484" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="254.159" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4486" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="259.127" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4488" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="266.802" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4490" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="269.7" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4492" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="274.668" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4494" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="279.636" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4496" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="338.973" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4498" xmlns:svgx="http://www.xml-cml.org/schema/svgx">7</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="346.683" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4500" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="349.581" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4502" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="354.549" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4504" xmlns:svgx="http://www.xml-cml.org/schema/svgx">3</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="359.517" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4506" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="397.651" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4508" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="402.619" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4510" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="405.049" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4512" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="410.017" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4514" xmlns:svgx="http://www.xml-cml.org/schema/svgx">3</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="441.871" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4516" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="446.839" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4518" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="449.269" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4520" xmlns:svgx="http://www.xml-cml.org/schema/svgx">7</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="454.237" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4522" xmlns:svgx="http://www.xml-cml.org/schema/svgx">3</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="461.941" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4524" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="464.371" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4526" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="472.033" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4528" xmlns:svgx="http://www.xml-cml.org/schema/svgx">6</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="477.001" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4530" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="479.431" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4532" xmlns:svgx="http://www.xml-cml.org/schema/svgx">8</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="484.399" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4534" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="515.234" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4536" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="520.202" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4538" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="522.632" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4540" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="527.6" y="669.639" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4542" xmlns:svgx="http://www.xml-cml.org/schema/svgx">6</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="666.0" x="48.303" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4544" xmlns:svgx="http://www.xml-cml.org/schema/svgx">S</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="54.297" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4546" xmlns:svgx="http://www.xml-cml.org/schema/svgx">u</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="59.265" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4548" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="62.163" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4550" xmlns:svgx="http://www.xml-cml.org/schema/svgx">g</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="67.131" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4552" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="72.099" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4554" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="74.997" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4556" xmlns:svgx="http://www.xml-cml.org/schema/svgx">y</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="79.315" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4558" xmlns:svgx="http://www.xml-cml.org/schema/svgx">,</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="84.474" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4560" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="92.128" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4562" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="885.0" x="95.026" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4564" xmlns:svgx="http://www.xml-cml.org/schema/svgx">%</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="102.991" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4566" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="259.089" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4568" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="266.799" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4570" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="269.697" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4572" xmlns:svgx="http://www.xml-cml.org/schema/svgx">2</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="274.665" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4574" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="338.969" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4576" xmlns:svgx="http://www.xml-cml.org/schema/svgx">3</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="346.679" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4578" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="349.577" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4580" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="354.545" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4582" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="397.646" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4584" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="402.614" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4586" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="405.044" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4588" xmlns:svgx="http://www.xml-cml.org/schema/svgx">7</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="410.012" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4590" xmlns:svgx="http://www.xml-cml.org/schema/svgx">4</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="441.867" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4592" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="446.835" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4594" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="449.265" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4596" xmlns:svgx="http://www.xml-cml.org/schema/svgx">1</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="454.233" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4598" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="461.937" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4600" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="464.367" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4602" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="472.028" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4604" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="476.996" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4606" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="479.426" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4608" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="484.394" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4610" xmlns:svgx="http://www.xml-cml.org/schema/svgx">4</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="515.229" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4612" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="520.197" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4614" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="522.627" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4616" xmlns:svgx="http://www.xml-cml.org/schema/svgx">7</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="527.595" y="680.638" font-size="9.0" font-family="TimesNewRoman" font-weight="normal" id="text4618" xmlns:svgx="http://www.xml-cml.org/schema/svgx">7</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="385.0" x="48.302" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4620" xmlns:svgx="http://www.xml-cml.org/schema/svgx">*</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="770.0" x="51.382" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4622" xmlns:svgx="http://www.xml-cml.org/schema/svgx">O</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="57.542" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4624" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="61.958" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4626" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="68.712" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4628" xmlns:svgx="http://www.xml-cml.org/schema/svgx">p</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="73.128" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4630" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="77.386" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4632" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="79.546" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4634" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="81.29" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4636" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="85.706" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4638" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="90.122" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4640" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="94.621" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4642" xmlns:svgx="http://www.xml-cml.org/schema/svgx">g</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="99.037" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4644" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="103.295" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4646" xmlns:svgx="http://www.xml-cml.org/schema/svgx">v</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="107.094" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4648" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="113.897" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4650" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="118.313" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4652" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="125.122" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4654" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="129.122" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4656" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="133.538" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4658" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="137.954" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4660" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="141.954" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4662" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="146.37" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4664" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="150.786" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4666" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="155.283" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4668" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="157.443" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4670" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="164.24" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4672" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="168.656" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4674" xmlns:svgx="http://www.xml-cml.org/schema/svgx">b</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="173.072" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4676" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="175.232" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4678" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="179.648" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4680" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="181.392" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4682" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="188.165" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4684" xmlns:svgx="http://www.xml-cml.org/schema/svgx">h</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="192.58" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4686" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="196.996" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4688" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="201.941" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4690" xmlns:svgx="http://www.xml-cml.org/schema/svgx">p</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="206.357" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4692" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="210.559" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4694" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="212.719" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4696" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="214.463" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4698" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="218.879" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4700" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="223.294" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4702" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="227.85" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4704" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="230.23" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4706" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="234.646" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4708" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="238.646" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4710" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="243.062" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4712" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="245.638" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4714" xmlns:svgx="http://www.xml-cml.org/schema/svgx">d</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="250.054" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4716" xmlns:svgx="http://www.xml-cml.org/schema/svgx">,</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="254.552" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4718" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="258.968" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4720" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="263.384" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4722" xmlns:svgx="http://www.xml-cml.org/schema/svgx">d</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="270.199" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4724" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="274.615" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4726" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="279.031" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4728" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="770.0" x="285.789" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4730" xmlns:svgx="http://www.xml-cml.org/schema/svgx">G</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="666.0" x="291.949" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4732" xmlns:svgx="http://www.xml-cml.org/schema/svgx">P</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="299.622" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4734" xmlns:svgx="http://www.xml-cml.org/schema/svgx">d</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="304.038" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4736" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="305.781" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4738" xmlns:svgx="http://www.xml-cml.org/schema/svgx">d</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="312.605" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4740" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="317.021" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4742" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="321.437" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4744" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="325.984" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4746" xmlns:svgx="http://www.xml-cml.org/schema/svgx">d</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="330.4" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4748" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="334.816" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4750" xmlns:svgx="http://www.xml-cml.org/schema/svgx">l</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="336.56" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4752" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="338.304" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4754" xmlns:svgx="http://www.xml-cml.org/schema/svgx">v</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="342.085" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4756" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="346.501" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4758" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="351.439" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4760" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="353.599" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4762" xmlns:svgx="http://www.xml-cml.org/schema/svgx">h</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="358.015" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4764" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="364.819" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4766" xmlns:svgx="http://www.xml-cml.org/schema/svgx">p</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="369.235" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4768" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="373.437" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4770" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="375.597" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4772" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="377.341" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4774" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="381.757" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4776" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="386.173" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4778" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="390.728" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4780" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="393.165" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4782" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="397.581" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4784" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="401.581" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4786" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="405.997" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4788" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="408.573" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4790" xmlns:svgx="http://www.xml-cml.org/schema/svgx">d</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="412.989" y="693.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4792" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPLNLE+AdvOT82c4f4c4+20" svgx:charCode="8224" svgx:hexCode="2020" x="48.302" y="702.121" font-size="8.0" font-family="Helvetica" font-weight="bold" id="text4794" svgx:width="750.0" xmlns:svgx="http://www.xml-cml.org/schema/svgx">†</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="52.725" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4796" xmlns:svgx="http://www.xml-cml.org/schema/svgx">L</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="57.141" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4798" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="61.557" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4800" xmlns:svgx="http://www.xml-cml.org/schema/svgx">g</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="65.972" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4802" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="67.716" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4804" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="71.49" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4806" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="73.65" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4808" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="75.394" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4810" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="81.808" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4812" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="84.189" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4814" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="88.605" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4816" xmlns:svgx="http://www.xml-cml.org/schema/svgx">g</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="93.021" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4818" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="95.415" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4820" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="99.83" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4822" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="103.83" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4824" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="107.83" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4826" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="109.574" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4828" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="113.99" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4830" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="120.757" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4832" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="125.173" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4834" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="129.588" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4836" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="134.004" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4838" xmlns:svgx="http://www.xml-cml.org/schema/svgx">l</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="135.748" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4840" xmlns:svgx="http://www.xml-cml.org/schema/svgx">y</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="139.522" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4842" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="143.522" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4844" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="145.266" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4846" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="151.598" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4848" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="155.598" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4850" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="160.014" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4852" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="162.59" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4854" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="164.978" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4856" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="169.394" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4858" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="173.394" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4860" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="175.554" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4862" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="179.969" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4864" xmlns:svgx="http://www.xml-cml.org/schema/svgx">d</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="186.748" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4866" xmlns:svgx="http://www.xml-cml.org/schema/svgx">f</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="188.908" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4868" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="193.324" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4870" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="198.143" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4872" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="202.559" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4874" xmlns:svgx="http://www.xml-cml.org/schema/svgx">g</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="206.975" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4876" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="213.733" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4878" xmlns:svgx="http://www.xml-cml.org/schema/svgx">(</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="216.309" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4880" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="220.139" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4882" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="222.299" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4884" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="224.675" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4886" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="228.926" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4888" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="231.086" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4890" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="232.83" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4892" xmlns:svgx="http://www.xml-cml.org/schema/svgx">f</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="234.99" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4894" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="236.734" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4896" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="240.734" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4898" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="244.97" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4900" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="247.13" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4902" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="248.874" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4904" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="253.29" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4906" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="260.051" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4908" xmlns:svgx="http://www.xml-cml.org/schema/svgx">v</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="264.051" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4910" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="268.467" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4912" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="271.043" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4914" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="272.787" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4916" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="277.203" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4918" xmlns:svgx="http://www.xml-cml.org/schema/svgx">b</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="281.619" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4920" xmlns:svgx="http://www.xml-cml.org/schema/svgx">l</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="283.363" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4922" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="287.779" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4924" xmlns:svgx="http://www.xml-cml.org/schema/svgx">,</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="292.309" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4926" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="296.309" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4928" xmlns:svgx="http://www.xml-cml.org/schema/svgx">u</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="300.725" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4930" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="302.885" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4932" xmlns:svgx="http://www.xml-cml.org/schema/svgx">-</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="305.461" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4934" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="309.877" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4936" xmlns:svgx="http://www.xml-cml.org/schema/svgx">f</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="312.037" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4938" xmlns:svgx="http://www.xml-cml.org/schema/svgx">f</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="316.573" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4940" xmlns:svgx="http://www.xml-cml.org/schema/svgx">5</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="320.989" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4942" xmlns:svgx="http://www.xml-cml.org/schema/svgx">0</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="327.345" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4944" xmlns:svgx="http://www.xml-cml.org/schema/svgx">y</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="331.144" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4946" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="335.56" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4948" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="339.975" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4950" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="342.551" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4952" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="346.551" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4954" xmlns:svgx="http://www.xml-cml.org/schema/svgx">)</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="349.127" y="702.121" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4956" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPLNLE+AdvOT82c4f4c4+20" svgx:charCode="8225" svgx:hexCode="2021" x="48.302" y="711.136" font-size="8.0" font-family="Helvetica" font-weight="bold" id="text4958" svgx:width="750.0" xmlns:svgx="http://www.xml-cml.org/schema/svgx">‡</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="52.725" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4960" xmlns:svgx="http://www.xml-cml.org/schema/svgx">I</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="54.885" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4962" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="59.301" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4964" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="63.301" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4966" xmlns:svgx="http://www.xml-cml.org/schema/svgx">l</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="65.044" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4968" xmlns:svgx="http://www.xml-cml.org/schema/svgx">u</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="69.46" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4970" xmlns:svgx="http://www.xml-cml.org/schema/svgx">d</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="73.876" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4972" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="75.62" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4974" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="79.937" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4976" xmlns:svgx="http://www.xml-cml.org/schema/svgx">g</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="86.74" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4978" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="88.484" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4980" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="92.9" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4982" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="95.06" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4984" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="99.476" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4986" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="102.052" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4988" xmlns:svgx="http://www.xml-cml.org/schema/svgx">v</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="105.846" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4990" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="110.262" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4992" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="114.677" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4994" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="116.837" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4996" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="118.581" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text4998" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="122.997" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5000" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="129.77" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5002" xmlns:svgx="http://www.xml-cml.org/schema/svgx">u</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="134.186" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5004" xmlns:svgx="http://www.xml-cml.org/schema/svgx">l</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="135.93" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5006" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="138.09" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5008" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="140.485" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5010" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="144.901" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5012" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="148.901" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5014" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="153.317" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5016" xmlns:svgx="http://www.xml-cml.org/schema/svgx">u</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="157.733" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5018" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="162.149" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5020" xmlns:svgx="http://www.xml-cml.org/schema/svgx">d</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="166.565" y="711.136" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5022" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" svgx:charName="section" svgx:charCode="167" svgx:hexCode="a7" x="48.302" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5024" xmlns:svgx="http://www.xml-cml.org/schema/svgx">§</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="604.0" x="52.718" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5026" xmlns:svgx="http://www.xml-cml.org/schema/svgx">F</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="57.55" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5028" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="59.925" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5030" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="822.0" x="64.341" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5032" xmlns:svgx="http://www.xml-cml.org/schema/svgx">m</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="73.304" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5034" xmlns:svgx="http://www.xml-cml.org/schema/svgx">f</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="75.464" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5036" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="77.208" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5038" xmlns:svgx="http://www.xml-cml.org/schema/svgx">v</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="81.015" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5040" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="87.818" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5042" xmlns:svgx="http://www.xml-cml.org/schema/svgx">p</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="92.234" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5044" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="96.492" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5046" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="98.652" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5048" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="100.396" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5050" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="104.812" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5052" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="109.228" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5054" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="111.388" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5056" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="117.752" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5058" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="119.496" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5060" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="126.256" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5062" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="130.672" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5064" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="134.93" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5066" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="138.93" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5068" xmlns:svgx="http://www.xml-cml.org/schema/svgx">h</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="145.702" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5070" xmlns:svgx="http://www.xml-cml.org/schema/svgx">g</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="150.118" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5072" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="152.505" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5074" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="156.921" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5076" xmlns:svgx="http://www.xml-cml.org/schema/svgx">u</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="161.337" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5078" xmlns:svgx="http://www.xml-cml.org/schema/svgx">p</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="165.753" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5080" xmlns:svgx="http://www.xml-cml.org/schema/svgx">,</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="170.306" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5082" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="172.466" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5084" xmlns:svgx="http://www.xml-cml.org/schema/svgx">h</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="176.882" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5086" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="183.629" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5088" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="188.045" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5090" xmlns:svgx="http://www.xml-cml.org/schema/svgx">u</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="822.0" x="192.461" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5092" xmlns:svgx="http://www.xml-cml.org/schema/svgx">m</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="199.037" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5094" xmlns:svgx="http://www.xml-cml.org/schema/svgx">b</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="203.453" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5096" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="207.869" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5098" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="212.827" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5100" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="214.571" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5102" xmlns:svgx="http://www.xml-cml.org/schema/svgx">s</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="220.934" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5104" xmlns:svgx="http://www.xml-cml.org/schema/svgx">l</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="222.678" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5106" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="226.943" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5108" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="230.943" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5110" xmlns:svgx="http://www.xml-cml.org/schema/svgx">k</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="234.943" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5112" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="236.687" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5114" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="241.103" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5116" xmlns:svgx="http://www.xml-cml.org/schema/svgx">g</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="245.519" y="720.15" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5118" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="770.0" x="48.302" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5120" xmlns:svgx="http://www.xml-cml.org/schema/svgx">G</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="666.0" x="54.462" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5122" xmlns:svgx="http://www.xml-cml.org/schema/svgx">P</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="59.471" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5124" xmlns:svgx="http://www.xml-cml.org/schema/svgx">,</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="64.006" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5126" xmlns:svgx="http://www.xml-cml.org/schema/svgx">g</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="68.422" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5128" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="72.838" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5130" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="77.254" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5132" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="81.67" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5134" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="84.019" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5136" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="88.435" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5138" xmlns:svgx="http://www.xml-cml.org/schema/svgx">l</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="92.579" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5140" xmlns:svgx="http://www.xml-cml.org/schema/svgx">p</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="96.995" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5142" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="99.382" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5144" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="103.634" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5146" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="107.634" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5148" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="109.794" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5150" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="111.538" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5152" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="113.698" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5154" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="115.442" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5156" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="119.858" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5158" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="124.274" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5160" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="128.69" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5162" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="131.187" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5164" xmlns:svgx="http://www.xml-cml.org/schema/svgx">;</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="770.0" x="135.779" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5166" xmlns:svgx="http://www.xml-cml.org/schema/svgx">O</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="604.0" x="141.732" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5168" xmlns:svgx="http://www.xml-cml.org/schema/svgx">T</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="718.0" x="146.38" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5170" xmlns:svgx="http://www.xml-cml.org/schema/svgx">C</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="152.124" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5172" xmlns:svgx="http://www.xml-cml.org/schema/svgx">,</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="156.699" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5174" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="160.894" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5176" xmlns:svgx="http://www.xml-cml.org/schema/svgx">v</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="164.749" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5178" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="169.165" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5180" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="171.741" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5182" xmlns:svgx="http://www.xml-cml.org/schema/svgx">-</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="174.317" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5184" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="176.477" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5186" xmlns:svgx="http://www.xml-cml.org/schema/svgx">h</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="180.893" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5188" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="185.309" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5190" xmlns:svgx="http://www.xml-cml.org/schema/svgx">-</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="187.885" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5192" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="191.885" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5194" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="196.213" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5196" xmlns:svgx="http://www.xml-cml.org/schema/svgx">u</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="200.629" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5198" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="205.045" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5200" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="207.205" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5202" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="322.0" x="211.621" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5204" xmlns:svgx="http://www.xml-cml.org/schema/svgx">r</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="822.0" x="216.566" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5206" xmlns:svgx="http://www.xml-cml.org/schema/svgx">m</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="223.142" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5208" xmlns:svgx="http://www.xml-cml.org/schema/svgx">e</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="227.558" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5210" xmlns:svgx="http://www.xml-cml.org/schema/svgx">d</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="231.974" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5212" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="500.0" x="233.718" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5214" xmlns:svgx="http://www.xml-cml.org/schema/svgx">c</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="237.718" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5216" xmlns:svgx="http://www.xml-cml.org/schema/svgx">a</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="241.908" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5218" xmlns:svgx="http://www.xml-cml.org/schema/svgx">t</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="218.0" x="244.068" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5220" xmlns:svgx="http://www.xml-cml.org/schema/svgx">i</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="245.812" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5222" xmlns:svgx="http://www.xml-cml.org/schema/svgx">o</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="552.0" x="250.228" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5224" xmlns:svgx="http://www.xml-cml.org/schema/svgx">n</text> <text stroke="none" fill="#000000" clip-path="url(#clipPath1)" svgx:fontName="HPFBJL+AdvOT82c4f4c4" svgx:width="270.0" x="254.644" y="729.107" font-size="8.0" font-family="TimesNewRoman" font-weight="normal" id="text5226" xmlns:svgx="http://www.xml-cml.org/schema/svgx">.</text> <g class="sections" transform="matrix(1.0,0.0,0.0,1.0,0.0,0.0)"> <rect stroke="black" stroke-width="1.0" x="48.302" y="454.614" width="244.542" height="9.0" fill="yellow" opacity="0.2" class="table.title"> <title stroke="black" stroke-width="1.0">table.title</title> </rect> <rect stroke="black" stroke-width="1.0" x="246.727" y="469.128" width="300.24699999999996" height="41.99400000000003" fill="red" opacity="0.2" class="table.header"> <title stroke="black" stroke-width="1.0">table.header</title> </rect> <rect stroke="black" stroke-width="1.0" x="48.302" y="517.599" width="484.26599999999996" height="163.039" fill="cyan" opacity="0.2" class="table.body"> <title stroke="black" stroke-width="1.0">table.body</title> </rect> <rect stroke="black" stroke-width="1.0" x="48.302" y="685.107" width="366.847" height="44.0" fill="blue" opacity="0.2" class="table.footer"> <title stroke="black" stroke-width="1.0">table.footer</title> </rect> </g> <g class="title.title" transform="matrix(1.0,0.0,0.0,1.0,0.0,0.0)"> <rect stroke="black" stroke-width="1.0" x="48.302" y="454.614" width="244.542" height="9.0" fill="yellow" opacity="0.2"> <title stroke="black" stroke-width="1.0">TITLE: {[Helvetica, TimesNewRoman]}{[9.0 x 2]}{[bold, normal]}{[null x 2]} //Table 4 Use of healthcare resources during 1-year follow-up </title> </rect> </g> <g class="header.columnBoxes" transform="matrix(1.0,0.0,0.0,1.0,0.0,0.0)"> <rect stroke="black" stroke-width="1.0" x="246.0" y="469.128" width="47.0" height="41.99400000000003" fill="green" opacity="0.2"> <title stroke="black" stroke-width="1.0">HEADERCOLUMN: 0/Ultrasound // tailored // treatment // n=54* // </title> </rect> <rect stroke="black" stroke-width="1.0" x="326.0" y="469.128" width="45.0" height="41.99400000000003" fill="green" opacity="0.2"> <title stroke="black" stroke-width="1.0">HEADERCOLUMN: 1/Usual care // n=55 // </title> </rect> <rect stroke="black" stroke-width="1.0" x="397.0" y="469.128" width="20.0" height="41.99400000000003" fill="green" opacity="0.2"> <title stroke="black" stroke-width="1.0">HEADERCOLUMN: 2/OR† // </title> </rect> <rect stroke="black" stroke-width="1.0" x="441.0" y="469.128" width="30.0" height="41.99400000000003" fill="green" opacity="0.2"> <title stroke="black" stroke-width="1.0">HEADERCOLUMN: 3/95% CI // </title> </rect> <rect stroke="black" stroke-width="1.0" x="515.0" y="469.128" width="31.0" height="41.99400000000003" fill="green" opacity="0.2"> <title stroke="black" stroke-width="1.0">HEADERCOLUMN: 4/p Value // </title> </rect> </g> <g class="header.boxes" transform="matrix(1.0,0.0,0.0,1.0,0.0,0.0)"/> <g class="body.subtableBoxes" transform="matrix(1.0,0.0,0.0,1.0,0.0,0.0)"/> <g class="body.columnBoxes" transform="matrix(1.0,0.0,0.0,1.0,0.0,0.0)"> <rect stroke="black" stroke-width="1.0" x="48.0" y="517.599" width="172.0" height="163.039" fill="red" opacity="0.2"> <title stroke="black" stroke-width="1.0">BODYCOLUMN: 0/GP re-consultation, n (%) // No. of re-consultations (mean, SD) // Diagnostic imaging ordered by GP, n (%)‡ // –Plain radiography, n (%) // –Ultrasound imaging, n (%)‡ // Physiotherapist referral, n (%) // No. of physiotherapy sessions (mean, SD)§ // Medication used, n (%) // –GP prescription, n (%) // –OTC, n (%) // No. of GP prescriptions (mean, SD) // Corticosteroid injections by GP, n (%) // No. of injections (mean, SD) // Secondary care referral, n (%) // Surgery, n (%) // </title> </rect> <rect stroke="black" stroke-width="1.0" x="246.0" y="517.599" width="43.0" height="163.039" fill="red" opacity="0.2"> <title stroke="black" stroke-width="1.0">BODYCOLUMN: 1/24 (43) // 1.7 (0.9) // 56 (100) // 1 (2) // 56 (100) // 33 (59) // 12.9 (9.0) // 31 (55) // 12 (21) // 25 (45) // 1.6 (1.2) // 22 (39) // 1.4 (0.67) // 11 (20) // 1 (2) // </title> </rect> <rect stroke="black" stroke-width="1.0" x="326.0" y="517.599" width="43.0" height="163.039" fill="red" opacity="0.2"> <title stroke="black" stroke-width="1.0">BODYCOLUMN: 2/30 (55) // 2.1 (1.3) // 13 (24) // 6 (11) // 12 (22) // 35 (64) // 12.4 (10.2) // 36 (65) // 21 (38) // 27 (49) // 1.4 (0.7) // 17 (31) // 1.5 (0.51) // 7 (13) // 3 (5) // </title> </rect> <rect stroke="black" stroke-width="1.0" x="397.0" y="517.599" width="17.0" height="163.039" fill="red" opacity="0.2"> <title stroke="black" stroke-width="1.0">BODYCOLUMN: 3/1.05 // // 0.58 // 1.02 // 0.72 // 0.83 // // 1.59 // 0.85 // 1.17 // // 1.27 // // 2.23 // 0.74 // </title> </rect> <rect stroke="black" stroke-width="1.0" x="441.0" y="517.599" width="48.0" height="163.039" fill="red" opacity="0.2"> <title stroke="black" stroke-width="1.0">BODYCOLUMN: 4/0.49 to 2.25 // // 0.17 to 2.04 // 0.21 to 4.92 // 0.20 to 2.60 // 0.38 to 1.81 // // 0.73 to 3.47 // 0.37 to 1.95 // 0.55 to 2.49 // // 0.57 to 2.82 // // 0.73 to 6.82 // 0.10 to 5.54 // </title> </rect> <rect stroke="black" stroke-width="1.0" x="515.0" y="517.599" width="17.0" height="163.039" fill="red" opacity="0.2"> <title stroke="black" stroke-width="1.0">BODYCOLUMN: 5/0.90 // 0.26 // 0.40 // 0.98 // 0.62 // 0.64 // 0.64 // 0.25 // 0.70 // 0.69 // 1.00 // 0.56 // 0.50 // 0.16 // 0.77 // </title> </rect> </g> <g class="body.cellBoxes" transform="matrix(1.0,0.0,0.0,1.0,0.0,0.0)"> <g class="col.0"> <rect stroke="black" stroke-width="1.0" x="48.302" y="517.599" width="100.16400000000002" height="9.0" fill="red" opacity="0.2" class="cell.0.0"> <title stroke="black" stroke-width="1.0">0.0/GP re-consultation, n (%)</title> </rect> <rect stroke="black" stroke-width="1.0" x="48.302" y="528.598" width="137.532" height="9.0" fill="red" opacity="0.2" class="cell.0.1"> <title stroke="black" stroke-width="1.0">0.1/No. of re-consultations (mean, SD)</title> </rect> <rect stroke="black" stroke-width="1.0" x="48.302" y="539.597" width="169.28900000000002" height="9.0" fill="red" opacity="0.2" class="cell.0.2"> <title stroke="black" stroke-width="1.0">0.2/Diagnostic imaging ordered by GP, n (%)‡</title> </rect> <rect stroke="black" stroke-width="1.0" x="48.302" y="550.651" width="103.226" height="9.0" fill="red" opacity="0.2" class="cell.0.3"> <title stroke="black" stroke-width="1.0">0.3/–Plain radiography, n (%)</title> </rect> <rect stroke="black" stroke-width="1.0" x="48.302" y="561.649" width="117.755" height="9.0" fill="red" opacity="0.2" class="cell.0.4"> <title stroke="black" stroke-width="1.0">0.4/–Ultrasound imaging, n (%)‡</title> </rect> <rect stroke="black" stroke-width="1.0" x="48.303" y="572.648" width="117.34100000000001" height="9.0" fill="red" opacity="0.2" class="cell.0.5"> <title stroke="black" stroke-width="1.0">0.5/Physiotherapist referral, n (%)</title> </rect> <rect stroke="black" stroke-width="1.0" x="48.303" y="583.647" width="172.546" height="9.0" fill="red" opacity="0.2" class="cell.0.6"> <title stroke="black" stroke-width="1.0">0.6/No. of physiotherapy sessions (mean, SD)§</title> </rect> <rect stroke="black" stroke-width="1.0" x="48.303" y="594.646" width="91.54499999999999" height="9.0" fill="red" opacity="0.2" class="cell.0.7"> <title stroke="black" stroke-width="1.0">0.7/Medication used, n (%)</title> </rect> <rect stroke="black" stroke-width="1.0" x="48.303" y="605.645" width="95.685" height="9.0" fill="red" opacity="0.2" class="cell.0.8"> <title stroke="black" stroke-width="1.0">0.8/–GP prescription, n (%)</title> </rect> <rect stroke="black" stroke-width="1.0" x="48.303" y="616.643" width="52.709999999999994" height="9.0" fill="red" opacity="0.2" class="cell.0.9"> <title stroke="black" stroke-width="1.0">0.9/–OTC, n (%)</title> </rect> <rect stroke="black" stroke-width="1.0" x="48.303" y="627.642" width="140.989" height="9.0" fill="red" opacity="0.2" class="cell.0.10"> <title stroke="black" stroke-width="1.0">0.10/No. of GP prescriptions (mean, SD)</title> </rect> <rect stroke="black" stroke-width="1.0" x="48.303" y="638.641" width="148.183" height="9.0" fill="red" opacity="0.2" class="cell.0.11"> <title stroke="black" stroke-width="1.0">0.11/Corticosteroid injections by GP, n (%)</title> </rect> <rect stroke="black" stroke-width="1.0" x="48.303" y="649.64" width="112.24600000000001" height="9.0" fill="red" opacity="0.2" class="cell.0.12"> <title stroke="black" stroke-width="1.0">0.12/No. of injections (mean, SD)</title> </rect> <rect stroke="black" stroke-width="1.0" x="48.303" y="660.639" width="119.44" height="9.0" fill="red" opacity="0.2" class="cell.0.13"> <title stroke="black" stroke-width="1.0">0.13/Secondary care referral, n (%)</title> </rect> <rect stroke="black" stroke-width="1.0" x="48.303" y="671.638" width="57.586" height="9.0" fill="red" opacity="0.2" class="cell.0.14"> <title stroke="black" stroke-width="1.0">0.14/Surgery, n (%)</title> </rect> </g> <g class="col.1"> <rect stroke="black" stroke-width="1.0" x="254.158" y="517.599" width="28.374000000000052" height="9.0" fill="red" opacity="0.2" class="cell.1.0"> <title stroke="black" stroke-width="1.0">1.0/24 (43)</title> </rect> <rect stroke="black" stroke-width="1.0" x="251.721" y="528.598" width="33.242999999999995" height="9.0" fill="red" opacity="0.2" class="cell.1.1"> <title stroke="black" stroke-width="1.0">1.1/1.7 (0.9)</title> </rect> <rect stroke="black" stroke-width="1.0" x="254.154" y="539.597" width="33.34200000000004" height="9.0" fill="red" opacity="0.2" class="cell.1.2"> <title stroke="black" stroke-width="1.0">1.2/56 (100)</title> </rect> <rect stroke="black" stroke-width="1.0" x="259.09" y="550.651" width="18.475000000000023" height="9.0" fill="red" opacity="0.2" class="cell.1.3"> <title stroke="black" stroke-width="1.0">1.3/1 (2)</title> </rect> <rect stroke="black" stroke-width="1.0" x="254.155" y="561.649" width="33.34200000000001" height="9.0" fill="red" opacity="0.2" class="cell.1.4"> <title stroke="black" stroke-width="1.0">1.4/56 (100)</title> </rect> <rect stroke="black" stroke-width="1.0" x="254.157" y="572.648" width="28.37500000000003" height="9.0" fill="red" opacity="0.2" class="cell.1.5"> <title stroke="black" stroke-width="1.0">1.5/33 (59)</title> </rect> <rect stroke="black" stroke-width="1.0" x="246.733" y="583.647" width="38.230999999999995" height="9.0" fill="red" opacity="0.2" class="cell.1.6"> <title stroke="black" stroke-width="1.0">1.6/12.9 (9.0)</title> </rect> <rect stroke="black" stroke-width="1.0" x="254.157" y="594.646" width="28.37500000000003" height="9.0" fill="red" opacity="0.2" class="cell.1.7"> <title stroke="black" stroke-width="1.0">1.7/31 (55)</title> </rect> <rect stroke="black" stroke-width="1.0" x="254.157" y="605.645" width="28.37500000000003" height="9.0" fill="red" opacity="0.2" class="cell.1.8"> <title stroke="black" stroke-width="1.0">1.8/12 (21)</title> </rect> <rect stroke="black" stroke-width="1.0" x="254.156" y="616.643" width="28.374000000000024" height="9.0" fill="red" opacity="0.2" class="cell.1.9"> <title stroke="black" stroke-width="1.0">1.9/25 (45)</title> </rect> <rect stroke="black" stroke-width="1.0" x="251.721" y="627.642" width="33.242999999999995" height="9.0" fill="red" opacity="0.2" class="cell.1.10"> <title stroke="black" stroke-width="1.0">1.10/1.6 (1.2)</title> </rect> <rect stroke="black" stroke-width="1.0" x="254.159" y="638.641" width="28.375000000000057" height="9.0" fill="red" opacity="0.2" class="cell.1.11"> <title stroke="black" stroke-width="1.0">1.11/22 (39)</title> </rect> <rect stroke="black" stroke-width="1.0" x="251.721" y="649.64" width="38.21100000000001" height="9.0" fill="red" opacity="0.2" class="cell.1.12"> <title stroke="black" stroke-width="1.0">1.12/1.4 (0.67)</title> </rect> <rect stroke="black" stroke-width="1.0" x="254.159" y="660.639" width="28.375000000000057" height="9.0" fill="red" opacity="0.2" class="cell.1.13"> <title stroke="black" stroke-width="1.0">1.13/11 (20)</title> </rect> <rect stroke="black" stroke-width="1.0" x="259.089" y="671.638" width="18.474000000000046" height="9.0" fill="red" opacity="0.2" class="cell.1.14"> <title stroke="black" stroke-width="1.0">1.14/1 (2)</title> </rect> </g> <g class="col.2"> <rect stroke="black" stroke-width="1.0" x="334.038" y="517.599" width="28.374000000000024" height="9.0" fill="red" opacity="0.2" class="cell.2.0"> <title stroke="black" stroke-width="1.0">2.0/30 (55)</title> </rect> <rect stroke="black" stroke-width="1.0" x="331.602" y="528.598" width="33.24300000000005" height="9.0" fill="red" opacity="0.2" class="cell.2.1"> <title stroke="black" stroke-width="1.0">2.1/2.1 (1.3)</title> </rect> <rect stroke="black" stroke-width="1.0" x="334.035" y="539.597" width="28.374000000000024" height="9.0" fill="red" opacity="0.2" class="cell.2.2"> <title stroke="black" stroke-width="1.0">2.2/13 (24)</title> </rect> <rect stroke="black" stroke-width="1.0" x="338.971" y="550.651" width="23.442000000000007" height="9.0" fill="red" opacity="0.2" class="cell.2.3"> <title stroke="black" stroke-width="1.0">2.3/6 (11)</title> </rect> <rect stroke="black" stroke-width="1.0" x="334.036" y="561.649" width="28.374000000000024" height="9.0" fill="red" opacity="0.2" class="cell.2.4"> <title stroke="black" stroke-width="1.0">2.4/12 (22)</title> </rect> <rect stroke="black" stroke-width="1.0" x="334.038" y="572.648" width="28.374000000000024" height="9.0" fill="red" opacity="0.2" class="cell.2.5"> <title stroke="black" stroke-width="1.0">2.5/35 (64)</title> </rect> <rect stroke="black" stroke-width="1.0" x="326.614" y="583.647" width="43.200000000000045" height="9.0" fill="red" opacity="0.2" class="cell.2.6"> <title stroke="black" stroke-width="1.0">2.6/12.4 (10.2)</title> </rect> <rect stroke="black" stroke-width="1.0" x="334.038" y="594.646" width="28.374000000000024" height="9.0" fill="red" opacity="0.2" class="cell.2.7"> <title stroke="black" stroke-width="1.0">2.7/36 (65)</title> </rect> <rect stroke="black" stroke-width="1.0" x="334.038" y="605.645" width="28.374000000000024" height="9.0" fill="red" opacity="0.2" class="cell.2.8"> <title stroke="black" stroke-width="1.0">2.8/21 (38)</title> </rect> <rect stroke="black" stroke-width="1.0" x="334.036" y="616.643" width="28.374000000000024" height="9.0" fill="red" opacity="0.2" class="cell.2.9"> <title stroke="black" stroke-width="1.0">2.9/27 (49)</title> </rect> <rect stroke="black" stroke-width="1.0" x="331.602" y="627.642" width="33.24300000000005" height="9.0" fill="red" opacity="0.2" class="cell.2.10"> <title stroke="black" stroke-width="1.0">2.10/1.4 (0.7)</title> </rect> <rect stroke="black" stroke-width="1.0" x="334.04" y="638.641" width="28.374000000000024" height="9.0" fill="red" opacity="0.2" class="cell.2.11"> <title stroke="black" stroke-width="1.0">2.11/17 (31)</title> </rect> <rect stroke="black" stroke-width="1.0" x="331.602" y="649.64" width="38.21100000000007" height="9.0" fill="red" opacity="0.2" class="cell.2.12"> <title stroke="black" stroke-width="1.0">2.12/1.5 (0.51)</title> </rect> <rect stroke="black" stroke-width="1.0" x="338.973" y="660.639" width="23.442000000000007" height="9.0" fill="red" opacity="0.2" class="cell.2.13"> <title stroke="black" stroke-width="1.0">2.13/7 (13)</title> </rect> <rect stroke="black" stroke-width="1.0" x="338.969" y="671.638" width="18.474000000000046" height="9.0" fill="red" opacity="0.2" class="cell.2.14"> <title stroke="black" stroke-width="1.0">2.14/3 (5)</title> </rect> </g> <g class="col.3"> <rect stroke="black" stroke-width="1.0" x="397.648" y="517.599" width="17.334000000000003" height="9.0" fill="red" opacity="0.2" class="cell.3.0"> <title stroke="black" stroke-width="1.0">3.0/1.05</title> </rect> <rect stroke="black" stroke-width="1.0" x="397.645" y="539.597" width="17.33400000000006" height="9.0" fill="red" opacity="0.2" class="cell.3.2"> <title stroke="black" stroke-width="1.0">3.2/0.58</title> </rect> <rect stroke="black" stroke-width="1.0" x="397.649" y="550.651" width="17.334000000000003" height="9.0" fill="red" opacity="0.2" class="cell.3.3"> <title stroke="black" stroke-width="1.0">3.3/1.02</title> </rect> <rect stroke="black" stroke-width="1.0" x="397.646" y="561.649" width="17.334000000000003" height="9.0" fill="red" opacity="0.2" class="cell.3.4"> <title stroke="black" stroke-width="1.0">3.4/0.72</title> </rect> <rect stroke="black" stroke-width="1.0" x="397.648" y="572.648" width="17.334000000000003" height="9.0" fill="red" opacity="0.2" class="cell.3.5"> <title stroke="black" stroke-width="1.0">3.5/0.83</title> </rect> <rect stroke="black" stroke-width="1.0" x="397.648" y="594.646" width="17.334000000000003" height="9.0" fill="red" opacity="0.2" class="cell.3.7"> <title stroke="black" stroke-width="1.0">3.7/1.59</title> </rect> <rect stroke="black" stroke-width="1.0" x="397.648" y="605.645" width="17.334000000000003" height="9.0" fill="red" opacity="0.2" class="cell.3.8"> <title stroke="black" stroke-width="1.0">3.8/0.85</title> </rect> <rect stroke="black" stroke-width="1.0" x="397.646" y="616.643" width="17.334000000000003" height="9.0" fill="red" opacity="0.2" class="cell.3.9"> <title stroke="black" stroke-width="1.0">3.9/1.17</title> </rect> <rect stroke="black" stroke-width="1.0" x="397.65" y="638.641" width="17.33400000000006" height="9.0" fill="red" opacity="0.2" class="cell.3.11"> <title stroke="black" stroke-width="1.0">3.11/1.27</title> </rect> <rect stroke="black" stroke-width="1.0" x="397.651" y="660.639" width="17.334000000000003" height="9.0" fill="red" opacity="0.2" class="cell.3.13"> <title stroke="black" stroke-width="1.0">3.13/2.23</title> </rect> <rect stroke="black" stroke-width="1.0" x="397.646" y="671.638" width="17.334000000000003" height="9.0" fill="red" opacity="0.2" class="cell.3.14"> <title stroke="black" stroke-width="1.0">3.14/0.74</title> </rect> </g> <g class="col.4"> <rect stroke="black" stroke-width="1.0" x="441.869" y="517.599" width="47.495000000000005" height="9.0" fill="red" opacity="0.2" class="cell.4.0"> <title stroke="black" stroke-width="1.0">4.0/0.49 to 2.25</title> </rect> <rect stroke="black" stroke-width="1.0" x="441.866" y="539.597" width="47.495000000000005" height="9.0" fill="red" opacity="0.2" class="cell.4.2"> <title stroke="black" stroke-width="1.0">4.2/0.17 to 2.04</title> </rect> <rect stroke="black" stroke-width="1.0" x="441.87" y="550.651" width="47.495000000000005" height="9.0" fill="red" opacity="0.2" class="cell.4.3"> <title stroke="black" stroke-width="1.0">4.3/0.21 to 4.92</title> </rect> <rect stroke="black" stroke-width="1.0" x="441.867" y="561.649" width="47.495000000000005" height="9.0" fill="red" opacity="0.2" class="cell.4.4"> <title stroke="black" stroke-width="1.0">4.4/0.20 to 2.60</title> </rect> <rect stroke="black" stroke-width="1.0" x="441.869" y="572.648" width="47.495000000000005" height="9.0" fill="red" opacity="0.2" class="cell.4.5"> <title stroke="black" stroke-width="1.0">4.5/0.38 to 1.81</title> </rect> <rect stroke="black" stroke-width="1.0" x="441.869" y="594.646" width="47.495000000000005" height="9.0" fill="red" opacity="0.2" class="cell.4.7"> <title stroke="black" stroke-width="1.0">4.7/0.73 to 3.47</title> </rect> <rect stroke="black" stroke-width="1.0" x="441.869" y="605.645" width="47.495000000000005" height="9.0" fill="red" opacity="0.2" class="cell.4.8"> <title stroke="black" stroke-width="1.0">4.8/0.37 to 1.95</title> </rect> <rect stroke="black" stroke-width="1.0" x="441.867" y="616.643" width="47.495000000000005" height="9.0" fill="red" opacity="0.2" class="cell.4.9"> <title stroke="black" stroke-width="1.0">4.9/0.55 to 2.49</title> </rect> <rect stroke="black" stroke-width="1.0" x="441.87" y="638.641" width="47.49600000000004" height="9.0" fill="red" opacity="0.2" class="cell.4.11"> <title stroke="black" stroke-width="1.0">4.11/0.57 to 2.82</title> </rect> <rect stroke="black" stroke-width="1.0" x="441.871" y="660.639" width="47.49600000000004" height="9.0" fill="red" opacity="0.2" class="cell.4.13"> <title stroke="black" stroke-width="1.0">4.13/0.73 to 6.82</title> </rect> <rect stroke="black" stroke-width="1.0" x="441.867" y="671.638" width="47.495000000000005" height="9.0" fill="red" opacity="0.2" class="cell.4.14"> <title stroke="black" stroke-width="1.0">4.14/0.10 to 5.54</title> </rect> </g> <g class="col.5"> <rect stroke="black" stroke-width="1.0" x="515.231" y="517.599" width="17.333999999999946" height="9.0" fill="red" opacity="0.2" class="cell.5.0"> <title stroke="black" stroke-width="1.0">5.0/0.90</title> </rect> <rect stroke="black" stroke-width="1.0" x="515.231" y="528.598" width="17.333999999999946" height="9.0" fill="red" opacity="0.2" class="cell.5.1"> <title stroke="black" stroke-width="1.0">5.1/0.26</title> </rect> <rect stroke="black" stroke-width="1.0" x="515.228" y="539.597" width="17.33400000000006" height="9.0" fill="red" opacity="0.2" class="cell.5.2"> <title stroke="black" stroke-width="1.0">5.2/0.40</title> </rect> <rect stroke="black" stroke-width="1.0" x="515.232" y="550.651" width="17.333999999999946" height="9.0" fill="red" opacity="0.2" class="cell.5.3"> <title stroke="black" stroke-width="1.0">5.3/0.98</title> </rect> <rect stroke="black" stroke-width="1.0" x="515.229" y="561.649" width="17.333999999999946" height="9.0" fill="red" opacity="0.2" class="cell.5.4"> <title stroke="black" stroke-width="1.0">5.4/0.62</title> </rect> <rect stroke="black" stroke-width="1.0" x="515.231" y="572.648" width="17.333999999999946" height="9.0" fill="red" opacity="0.2" class="cell.5.5"> <title stroke="black" stroke-width="1.0">5.5/0.64</title> </rect> <rect stroke="black" stroke-width="1.0" x="515.233" y="583.647" width="17.33400000000006" height="9.0" fill="red" opacity="0.2" class="cell.5.6"> <title stroke="black" stroke-width="1.0">5.6/0.64</title> </rect> <rect stroke="black" stroke-width="1.0" x="515.231" y="594.646" width="17.333999999999946" height="9.0" fill="red" opacity="0.2" class="cell.5.7"> <title stroke="black" stroke-width="1.0">5.7/0.25</title> </rect> <rect stroke="black" stroke-width="1.0" x="515.231" y="605.645" width="17.333999999999946" height="9.0" fill="red" opacity="0.2" class="cell.5.8"> <title stroke="black" stroke-width="1.0">5.8/0.70</title> </rect> <rect stroke="black" stroke-width="1.0" x="515.229" y="616.643" width="17.333999999999946" height="9.0" fill="red" opacity="0.2" class="cell.5.9"> <title stroke="black" stroke-width="1.0">5.9/0.69</title> </rect> <rect stroke="black" stroke-width="1.0" x="515.231" y="627.642" width="17.333999999999946" height="9.0" fill="red" opacity="0.2" class="cell.5.10"> <title stroke="black" stroke-width="1.0">5.10/1.00</title> </rect> <rect stroke="black" stroke-width="1.0" x="515.233" y="638.641" width="17.33400000000006" height="9.0" fill="red" opacity="0.2" class="cell.5.11"> <title stroke="black" stroke-width="1.0">5.11/0.56</title> </rect> <rect stroke="black" stroke-width="1.0" x="515.232" y="649.64" width="17.333999999999946" height="9.0" fill="red" opacity="0.2" class="cell.5.12"> <title stroke="black" stroke-width="1.0">5.12/0.50</title> </rect> <rect stroke="black" stroke-width="1.0" x="515.234" y="660.639" width="17.333999999999946" height="9.0" fill="red" opacity="0.2" class="cell.5.13"> <title stroke="black" stroke-width="1.0">5.13/0.16</title> </rect> <rect stroke="black" stroke-width="1.0" x="515.229" y="671.638" width="17.333999999999946" height="9.0" fill="red" opacity="0.2" class="cell.5.14"> <title stroke="black" stroke-width="1.0">5.14/0.77</title> </rect> </g> </g> <g class="footer.title" transform="matrix(1.0,0.0,0.0,1.0,0.0,0.0)"> <rect stroke="black" stroke-width="1.0" x="48.302" y="685.107" width="366.847" height="44.0" fill="blue" opacity="0.2"> <title stroke="black" stroke-width="1.0">footer: footer.title: {[TimesNewRoman x 3, Helvetica x 2]}{[8.0 x 5]}{[normal x 3, NORMAL x 2]}{[null x 5]} //*One patient gave no consent to obtain her patient record, and one GP did not deliver the patient record. †Logistic regression analysis corrected for age (stratification variable, cut-off 50 years). ‡Including intervention ultrasound. §From five patients in each group, the number is lacking. GP, general practitioner; OTC, over-the-counter medication. </title> </rect> </g> <rect x="41.839" y="450.631" width="511.59700000000004" height="284.54200000000003" stroke="black" stroke-width="2.0" fill="none"/> </g> </svg> </div> </td> </tr> </table> </html>
packages/hbase-0.98.7-hadoop2/docs/xref/org/apache/hadoop/hbase/security/visibility/DefaultVisibilityLabelServiceImpl.html
gsoundar/mambo-ec2-deploy
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <title>DefaultVisibilityLabelServiceImpl xref</title> <link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" /> </head> <body> <div id="overview"><a href="../../../../../../../apidocs/org/apache/hadoop/hbase/security/visibility/DefaultVisibilityLabelServiceImpl.html">View Javadoc</a></div><pre> <a class="jxr_linenumber" name="1" href="#1">1</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="2" href="#2">2</a> <em class="jxr_javadoccomment"> * Licensed to the Apache Software Foundation (ASF) under one</em> <a class="jxr_linenumber" name="3" href="#3">3</a> <em class="jxr_javadoccomment"> * or more contributor license agreements. See the NOTICE file</em> <a class="jxr_linenumber" name="4" href="#4">4</a> <em class="jxr_javadoccomment"> * distributed with this work for additional information</em> <a class="jxr_linenumber" name="5" href="#5">5</a> <em class="jxr_javadoccomment"> * regarding copyright ownership. The ASF licenses this file</em> <a class="jxr_linenumber" name="6" href="#6">6</a> <em class="jxr_javadoccomment"> * to you under the Apache License, Version 2.0 (the</em> <a class="jxr_linenumber" name="7" href="#7">7</a> <em class="jxr_javadoccomment"> * "License"); you may not use this file except in compliance</em> <a class="jxr_linenumber" name="8" href="#8">8</a> <em class="jxr_javadoccomment"> * with the License. You may obtain a copy of the License at</em> <a class="jxr_linenumber" name="9" href="#9">9</a> <em class="jxr_javadoccomment"> *</em> <a class="jxr_linenumber" name="10" href="#10">10</a> <em class="jxr_javadoccomment"> * <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em> <a class="jxr_linenumber" name="11" href="#11">11</a> <em class="jxr_javadoccomment"> *</em> <a class="jxr_linenumber" name="12" href="#12">12</a> <em class="jxr_javadoccomment"> * Unless required by applicable law or agreed to in writing, software</em> <a class="jxr_linenumber" name="13" href="#13">13</a> <em class="jxr_javadoccomment"> * distributed under the License is distributed on an "AS IS" BASIS,</em> <a class="jxr_linenumber" name="14" href="#14">14</a> <em class="jxr_javadoccomment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em> <a class="jxr_linenumber" name="15" href="#15">15</a> <em class="jxr_javadoccomment"> * See the License for the specific language governing permissions and</em> <a class="jxr_linenumber" name="16" href="#16">16</a> <em class="jxr_javadoccomment"> * limitations under the License.</em> <a class="jxr_linenumber" name="17" href="#17">17</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="18" href="#18">18</a> <strong class="jxr_keyword">package</strong> org.apache.hadoop.hbase.security.visibility; <a class="jxr_linenumber" name="19" href="#19">19</a> <a class="jxr_linenumber" name="20" href="#20">20</a> <strong class="jxr_keyword">import</strong> <strong class="jxr_keyword">static</strong> org.apache.hadoop.hbase.TagType.VISIBILITY_TAG_TYPE; <a class="jxr_linenumber" name="21" href="#21">21</a> <strong class="jxr_keyword">import</strong> <strong class="jxr_keyword">static</strong> org.apache.hadoop.hbase.security.visibility.VisibilityConstants.LABELS_TABLE_FAMILY; <a class="jxr_linenumber" name="22" href="#22">22</a> <strong class="jxr_keyword">import</strong> <strong class="jxr_keyword">static</strong> org.apache.hadoop.hbase.security.visibility.VisibilityConstants.LABELS_TABLE_NAME; <a class="jxr_linenumber" name="23" href="#23">23</a> <strong class="jxr_keyword">import</strong> <strong class="jxr_keyword">static</strong> org.apache.hadoop.hbase.security.visibility.VisibilityConstants.LABEL_QUALIFIER; <a class="jxr_linenumber" name="24" href="#24">24</a> <strong class="jxr_keyword">import</strong> <strong class="jxr_keyword">static</strong> org.apache.hadoop.hbase.security.visibility.VisibilityConstants.SORTED_ORDINAL_SERIALIZATION_FORMAT; <a class="jxr_linenumber" name="25" href="#25">25</a> <strong class="jxr_keyword">import</strong> <strong class="jxr_keyword">static</strong> org.apache.hadoop.hbase.security.visibility.VisibilityUtils.SYSTEM_LABEL; <a class="jxr_linenumber" name="26" href="#26">26</a> <a class="jxr_linenumber" name="27" href="#27">27</a> <strong class="jxr_keyword">import</strong> java.io.ByteArrayOutputStream; <a class="jxr_linenumber" name="28" href="#28">28</a> <strong class="jxr_keyword">import</strong> java.io.DataOutputStream; <a class="jxr_linenumber" name="29" href="#29">29</a> <strong class="jxr_keyword">import</strong> java.io.IOException; <a class="jxr_linenumber" name="30" href="#30">30</a> <strong class="jxr_keyword">import</strong> java.util.ArrayList; <a class="jxr_linenumber" name="31" href="#31">31</a> <strong class="jxr_keyword">import</strong> java.util.BitSet; <a class="jxr_linenumber" name="32" href="#32">32</a> <strong class="jxr_keyword">import</strong> java.util.Collections; <a class="jxr_linenumber" name="33" href="#33">33</a> <strong class="jxr_keyword">import</strong> java.util.HashMap; <a class="jxr_linenumber" name="34" href="#34">34</a> <strong class="jxr_keyword">import</strong> java.util.Iterator; <a class="jxr_linenumber" name="35" href="#35">35</a> <strong class="jxr_keyword">import</strong> java.util.List; <a class="jxr_linenumber" name="36" href="#36">36</a> <strong class="jxr_keyword">import</strong> java.util.Map; <a class="jxr_linenumber" name="37" href="#37">37</a> <strong class="jxr_keyword">import</strong> java.util.Set; <a class="jxr_linenumber" name="38" href="#38">38</a> <a class="jxr_linenumber" name="39" href="#39">39</a> <strong class="jxr_keyword">import</strong> org.apache.commons.logging.Log; <a class="jxr_linenumber" name="40" href="#40">40</a> <strong class="jxr_keyword">import</strong> org.apache.commons.logging.LogFactory; <a class="jxr_linenumber" name="41" href="#41">41</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.classification.InterfaceAudience; <a class="jxr_linenumber" name="42" href="#42">42</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.conf.Configuration; <a class="jxr_linenumber" name="43" href="#43">43</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.Cell; <a class="jxr_linenumber" name="44" href="#44">44</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.CellUtil; <a class="jxr_linenumber" name="45" href="#45">45</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.HConstants.OperationStatusCode; <a class="jxr_linenumber" name="46" href="#46">46</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.Tag; <a class="jxr_linenumber" name="47" href="#47">47</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.client.Delete; <a class="jxr_linenumber" name="48" href="#48">48</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.client.Mutation; <a class="jxr_linenumber" name="49" href="#49">49</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.client.Put; <a class="jxr_linenumber" name="50" href="#50">50</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.client.Scan; <a class="jxr_linenumber" name="51" href="#51">51</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.coprocessor.RegionCoprocessorEnvironment; <a class="jxr_linenumber" name="52" href="#52">52</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.filter.Filter; <a class="jxr_linenumber" name="53" href="#53">53</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.io.util.StreamUtils; <a class="jxr_linenumber" name="54" href="#54">54</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.regionserver.HRegion; <a class="jxr_linenumber" name="55" href="#55">55</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.regionserver.OperationStatus; <a class="jxr_linenumber" name="56" href="#56">56</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.regionserver.RegionScanner; <a class="jxr_linenumber" name="57" href="#57">57</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.security.User; <a class="jxr_linenumber" name="58" href="#58">58</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.security.access.AccessControlLists; <a class="jxr_linenumber" name="59" href="#59">59</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.util.Bytes; <a class="jxr_linenumber" name="60" href="#60">60</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.util.Pair; <a class="jxr_linenumber" name="61" href="#61">61</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.zookeeper.ZooKeeperWatcher; <a class="jxr_linenumber" name="62" href="#62">62</a> <a class="jxr_linenumber" name="63" href="#63">63</a> <strong class="jxr_keyword">import</strong> com.google.common.collect.Lists; <a class="jxr_linenumber" name="64" href="#64">64</a> <a class="jxr_linenumber" name="65" href="#65">65</a> @InterfaceAudience.Private <a class="jxr_linenumber" name="66" href="#66">66</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/hadoop/hbase/security/visibility/DefaultVisibilityLabelServiceImpl.html">DefaultVisibilityLabelServiceImpl</a> <strong class="jxr_keyword">implements</strong> <a href="../../../../../../org/apache/hadoop/hbase/security/visibility/VisibilityLabelService.html">VisibilityLabelService</a> { <a class="jxr_linenumber" name="67" href="#67">67</a> <a class="jxr_linenumber" name="68" href="#68">68</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> Log LOG = LogFactory.getLog(DefaultVisibilityLabelServiceImpl.<strong class="jxr_keyword">class</strong>); <a class="jxr_linenumber" name="69" href="#69">69</a> <a class="jxr_linenumber" name="70" href="#70">70</a> <em class="jxr_comment">// "system" label is having an ordinal value 1.</em> <a class="jxr_linenumber" name="71" href="#71">71</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> SYSTEM_LABEL_ORDINAL = 1; <a class="jxr_linenumber" name="72" href="#72">72</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/hadoop/hbase/Tag.html">Tag</a>[] LABELS_TABLE_TAGS = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/Tag.html">Tag</a>[1]; <a class="jxr_linenumber" name="73" href="#73">73</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> byte[] DUMMY_VALUE = <strong class="jxr_keyword">new</strong> byte[0]; <a class="jxr_linenumber" name="74" href="#74">74</a> <a class="jxr_linenumber" name="75" href="#75">75</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">volatile</strong> <strong class="jxr_keyword">int</strong> ordinalCounter = -1; <a class="jxr_linenumber" name="76" href="#76">76</a> <strong class="jxr_keyword">private</strong> Configuration conf; <a class="jxr_linenumber" name="77" href="#77">77</a> <strong class="jxr_keyword">private</strong> <a href="../../../../../../org/apache/hadoop/hbase/regionserver/HRegion.html">HRegion</a> labelsRegion; <a class="jxr_linenumber" name="78" href="#78">78</a> <strong class="jxr_keyword">private</strong> <a href="../../../../../../org/apache/hadoop/hbase/security/visibility/VisibilityLabelsCache.html">VisibilityLabelsCache</a> labelsCache; <a class="jxr_linenumber" name="79" href="#79">79</a> <strong class="jxr_keyword">private</strong> List&lt;ScanLabelGenerator&gt; scanLabelGenerators; <a class="jxr_linenumber" name="80" href="#80">80</a> <a class="jxr_linenumber" name="81" href="#81">81</a> <strong class="jxr_keyword">static</strong> { <a class="jxr_linenumber" name="82" href="#82">82</a> ByteArrayOutputStream baos = <strong class="jxr_keyword">new</strong> ByteArrayOutputStream(); <a class="jxr_linenumber" name="83" href="#83">83</a> DataOutputStream dos = <strong class="jxr_keyword">new</strong> DataOutputStream(baos); <a class="jxr_linenumber" name="84" href="#84">84</a> <strong class="jxr_keyword">try</strong> { <a class="jxr_linenumber" name="85" href="#85">85</a> StreamUtils.writeRawVInt32(dos, SYSTEM_LABEL_ORDINAL); <a class="jxr_linenumber" name="86" href="#86">86</a> } <strong class="jxr_keyword">catch</strong> (IOException e) { <a class="jxr_linenumber" name="87" href="#87">87</a> <em class="jxr_comment">// We write to a byte array. No Exception can happen.</em> <a class="jxr_linenumber" name="88" href="#88">88</a> } <a class="jxr_linenumber" name="89" href="#89">89</a> LABELS_TABLE_TAGS[0] = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/Tag.html">Tag</a>(VISIBILITY_TAG_TYPE, baos.toByteArray()); <a class="jxr_linenumber" name="90" href="#90">90</a> } <a class="jxr_linenumber" name="91" href="#91">91</a> <a class="jxr_linenumber" name="92" href="#92">92</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/hadoop/hbase/security/visibility/DefaultVisibilityLabelServiceImpl.html">DefaultVisibilityLabelServiceImpl</a>() { <a class="jxr_linenumber" name="93" href="#93">93</a> <a class="jxr_linenumber" name="94" href="#94">94</a> } <a class="jxr_linenumber" name="95" href="#95">95</a> <a class="jxr_linenumber" name="96" href="#96">96</a> @Override <a class="jxr_linenumber" name="97" href="#97">97</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setConf(Configuration conf) { <a class="jxr_linenumber" name="98" href="#98">98</a> <strong class="jxr_keyword">this</strong>.conf = conf; <a class="jxr_linenumber" name="99" href="#99">99</a> } <a class="jxr_linenumber" name="100" href="#100">100</a> <a class="jxr_linenumber" name="101" href="#101">101</a> @Override <a class="jxr_linenumber" name="102" href="#102">102</a> <strong class="jxr_keyword">public</strong> Configuration getConf() { <a class="jxr_linenumber" name="103" href="#103">103</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">this</strong>.conf; <a class="jxr_linenumber" name="104" href="#104">104</a> } <a class="jxr_linenumber" name="105" href="#105">105</a> <a class="jxr_linenumber" name="106" href="#106">106</a> @Override <a class="jxr_linenumber" name="107" href="#107">107</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> init(<a href="../../../../../../org/apache/hadoop/hbase/coprocessor/RegionCoprocessorEnvironment.html">RegionCoprocessorEnvironment</a> e) <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="108" href="#108">108</a> <a href="../../../../../../org/apache/hadoop/hbase/zookeeper/ZooKeeperWatcher.html">ZooKeeperWatcher</a> zk = e.getRegionServerServices().getZooKeeper(); <a class="jxr_linenumber" name="109" href="#109">109</a> <strong class="jxr_keyword">try</strong> { <a class="jxr_linenumber" name="110" href="#110">110</a> labelsCache = VisibilityLabelsCache.createAndGet(zk, <strong class="jxr_keyword">this</strong>.conf); <a class="jxr_linenumber" name="111" href="#111">111</a> } <strong class="jxr_keyword">catch</strong> (IOException ioe) { <a class="jxr_linenumber" name="112" href="#112">112</a> LOG.error(<span class="jxr_string">"Error creating VisibilityLabelsCache"</span>, ioe); <a class="jxr_linenumber" name="113" href="#113">113</a> <strong class="jxr_keyword">throw</strong> ioe; <a class="jxr_linenumber" name="114" href="#114">114</a> } <a class="jxr_linenumber" name="115" href="#115">115</a> <strong class="jxr_keyword">this</strong>.scanLabelGenerators = VisibilityUtils.getScanLabelGenerators(<strong class="jxr_keyword">this</strong>.conf); <a class="jxr_linenumber" name="116" href="#116">116</a> <strong class="jxr_keyword">if</strong> (e.getRegion().getRegionInfo().getTable().equals(LABELS_TABLE_NAME)) { <a class="jxr_linenumber" name="117" href="#117">117</a> <strong class="jxr_keyword">this</strong>.labelsRegion = e.getRegion(); <a class="jxr_linenumber" name="118" href="#118">118</a> Pair&lt;Map&lt;String, Integer&gt;, Map&lt;String, List&lt;Integer&gt;&gt;&gt; labelsAndUserAuths = <a class="jxr_linenumber" name="119" href="#119">119</a> extractLabelsAndAuths(getExistingLabelsWithAuths()); <a class="jxr_linenumber" name="120" href="#120">120</a> Map&lt;String, Integer&gt; labels = labelsAndUserAuths.getFirst(); <a class="jxr_linenumber" name="121" href="#121">121</a> Map&lt;String, List&lt;Integer&gt;&gt; userAuths = labelsAndUserAuths.getSecond(); <a class="jxr_linenumber" name="122" href="#122">122</a> <em class="jxr_comment">// Add the "system" label if it is not added into the system yet</em> <a class="jxr_linenumber" name="123" href="#123">123</a> addSystemLabel(<strong class="jxr_keyword">this</strong>.labelsRegion, labels, userAuths); <a class="jxr_linenumber" name="124" href="#124">124</a> <strong class="jxr_keyword">int</strong> ordinal = SYSTEM_LABEL_ORDINAL; <em class="jxr_comment">// Ordinal 1 is reserved for "system" label.</em> <a class="jxr_linenumber" name="125" href="#125">125</a> <strong class="jxr_keyword">for</strong> (Integer i : labels.values()) { <a class="jxr_linenumber" name="126" href="#126">126</a> <strong class="jxr_keyword">if</strong> (i &gt; ordinal) { <a class="jxr_linenumber" name="127" href="#127">127</a> ordinal = i; <a class="jxr_linenumber" name="128" href="#128">128</a> } <a class="jxr_linenumber" name="129" href="#129">129</a> } <a class="jxr_linenumber" name="130" href="#130">130</a> <strong class="jxr_keyword">this</strong>.ordinalCounter = ordinal + 1; <a class="jxr_linenumber" name="131" href="#131">131</a> <strong class="jxr_keyword">if</strong> (labels.size() &gt; 0) { <a class="jxr_linenumber" name="132" href="#132">132</a> <em class="jxr_comment">// If there is no data need not write to zk</em> <a class="jxr_linenumber" name="133" href="#133">133</a> byte[] serialized = VisibilityUtils.getDataToWriteToZooKeeper(labels); <a class="jxr_linenumber" name="134" href="#134">134</a> <strong class="jxr_keyword">this</strong>.labelsCache.writeToZookeeper(serialized, <strong class="jxr_keyword">true</strong>); <a class="jxr_linenumber" name="135" href="#135">135</a> <strong class="jxr_keyword">this</strong>.labelsCache.refreshLabelsCache(serialized); <a class="jxr_linenumber" name="136" href="#136">136</a> } <a class="jxr_linenumber" name="137" href="#137">137</a> <strong class="jxr_keyword">if</strong> (userAuths.size() &gt; 0) { <a class="jxr_linenumber" name="138" href="#138">138</a> byte[] serialized = VisibilityUtils.getUserAuthsDataToWriteToZooKeeper(userAuths); <a class="jxr_linenumber" name="139" href="#139">139</a> <strong class="jxr_keyword">this</strong>.labelsCache.writeToZookeeper(serialized, false); <a class="jxr_linenumber" name="140" href="#140">140</a> <strong class="jxr_keyword">this</strong>.labelsCache.refreshUserAuthsCache(serialized); <a class="jxr_linenumber" name="141" href="#141">141</a> } <a class="jxr_linenumber" name="142" href="#142">142</a> } <a class="jxr_linenumber" name="143" href="#143">143</a> } <a class="jxr_linenumber" name="144" href="#144">144</a> <a class="jxr_linenumber" name="145" href="#145">145</a> <strong class="jxr_keyword">protected</strong> List&lt;List&lt;Cell&gt;&gt; getExistingLabelsWithAuths() <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="146" href="#146">146</a> <a href="../../../../../../org/apache/hadoop/hbase/client/Scan.html">Scan</a> scan = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/client/Scan.html">Scan</a>(); <a class="jxr_linenumber" name="147" href="#147">147</a> <a href="../../../../../../org/apache/hadoop/hbase/regionserver/RegionScanner.html">RegionScanner</a> scanner = labelsRegion.getScanner(scan); <a class="jxr_linenumber" name="148" href="#148">148</a> List&lt;List&lt;Cell&gt;&gt; existingLabels = <strong class="jxr_keyword">new</strong> ArrayList&lt;List&lt;Cell&gt;&gt;(); <a class="jxr_linenumber" name="149" href="#149">149</a> <strong class="jxr_keyword">try</strong> { <a class="jxr_linenumber" name="150" href="#150">150</a> <strong class="jxr_keyword">while</strong> (<strong class="jxr_keyword">true</strong>) { <a class="jxr_linenumber" name="151" href="#151">151</a> List&lt;Cell&gt; cells = <strong class="jxr_keyword">new</strong> ArrayList&lt;Cell&gt;(); <a class="jxr_linenumber" name="152" href="#152">152</a> scanner.next(cells); <a class="jxr_linenumber" name="153" href="#153">153</a> <strong class="jxr_keyword">if</strong> (cells.isEmpty()) { <a class="jxr_linenumber" name="154" href="#154">154</a> <strong class="jxr_keyword">break</strong>; <a class="jxr_linenumber" name="155" href="#155">155</a> } <a class="jxr_linenumber" name="156" href="#156">156</a> existingLabels.add(cells); <a class="jxr_linenumber" name="157" href="#157">157</a> } <a class="jxr_linenumber" name="158" href="#158">158</a> } <strong class="jxr_keyword">finally</strong> { <a class="jxr_linenumber" name="159" href="#159">159</a> scanner.close(); <a class="jxr_linenumber" name="160" href="#160">160</a> } <a class="jxr_linenumber" name="161" href="#161">161</a> <strong class="jxr_keyword">return</strong> existingLabels; <a class="jxr_linenumber" name="162" href="#162">162</a> } <a class="jxr_linenumber" name="163" href="#163">163</a> <a class="jxr_linenumber" name="164" href="#164">164</a> <strong class="jxr_keyword">protected</strong> Pair&lt;Map&lt;String, Integer&gt;, Map&lt;String, List&lt;Integer&gt;&gt;&gt; extractLabelsAndAuths( <a class="jxr_linenumber" name="165" href="#165">165</a> List&lt;List&lt;Cell&gt;&gt; labelDetails) { <a class="jxr_linenumber" name="166" href="#166">166</a> Map&lt;String, Integer&gt; labels = <strong class="jxr_keyword">new</strong> HashMap&lt;String, Integer&gt;(); <a class="jxr_linenumber" name="167" href="#167">167</a> Map&lt;String, List&lt;Integer&gt;&gt; userAuths = <strong class="jxr_keyword">new</strong> HashMap&lt;String, List&lt;Integer&gt;&gt;(); <a class="jxr_linenumber" name="168" href="#168">168</a> <strong class="jxr_keyword">for</strong> (List&lt;Cell&gt; cells : labelDetails) { <a class="jxr_linenumber" name="169" href="#169">169</a> <strong class="jxr_keyword">for</strong> (Cell cell : cells) { <a class="jxr_linenumber" name="170" href="#170">170</a> <strong class="jxr_keyword">if</strong> (Bytes.equals(cell.getQualifierArray(), cell.getQualifierOffset(), <a class="jxr_linenumber" name="171" href="#171">171</a> cell.getQualifierLength(), LABEL_QUALIFIER, 0, LABEL_QUALIFIER.length)) { <a class="jxr_linenumber" name="172" href="#172">172</a> labels.put( <a class="jxr_linenumber" name="173" href="#173">173</a> Bytes.toString(cell.getValueArray(), cell.getValueOffset(), cell.getValueLength()), <a class="jxr_linenumber" name="174" href="#174">174</a> Bytes.toInt(cell.getRowArray(), cell.getRowOffset())); <a class="jxr_linenumber" name="175" href="#175">175</a> } <strong class="jxr_keyword">else</strong> { <a class="jxr_linenumber" name="176" href="#176">176</a> <em class="jxr_comment">// These are user cells who has authorization for this label</em> <a class="jxr_linenumber" name="177" href="#177">177</a> String user = Bytes.toString(cell.getQualifierArray(), cell.getQualifierOffset(), <a class="jxr_linenumber" name="178" href="#178">178</a> cell.getQualifierLength()); <a class="jxr_linenumber" name="179" href="#179">179</a> List&lt;Integer&gt; auths = userAuths.get(user); <a class="jxr_linenumber" name="180" href="#180">180</a> <strong class="jxr_keyword">if</strong> (auths == <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="181" href="#181">181</a> auths = <strong class="jxr_keyword">new</strong> ArrayList&lt;Integer&gt;(); <a class="jxr_linenumber" name="182" href="#182">182</a> userAuths.put(user, auths); <a class="jxr_linenumber" name="183" href="#183">183</a> } <a class="jxr_linenumber" name="184" href="#184">184</a> auths.add(Bytes.toInt(cell.getRowArray(), cell.getRowOffset())); <a class="jxr_linenumber" name="185" href="#185">185</a> } <a class="jxr_linenumber" name="186" href="#186">186</a> } <a class="jxr_linenumber" name="187" href="#187">187</a> } <a class="jxr_linenumber" name="188" href="#188">188</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> Pair&lt;Map&lt;String, Integer&gt;, Map&lt;String, List&lt;Integer&gt;&gt;&gt;(labels, userAuths); <a class="jxr_linenumber" name="189" href="#189">189</a> } <a class="jxr_linenumber" name="190" href="#190">190</a> <a class="jxr_linenumber" name="191" href="#191">191</a> <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">void</strong> addSystemLabel(<a href="../../../../../../org/apache/hadoop/hbase/regionserver/HRegion.html">HRegion</a> region, Map&lt;String, Integer&gt; labels, <a class="jxr_linenumber" name="192" href="#192">192</a> Map&lt;String, List&lt;Integer&gt;&gt; userAuths) <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="193" href="#193">193</a> <strong class="jxr_keyword">if</strong> (!labels.containsKey(SYSTEM_LABEL)) { <a class="jxr_linenumber" name="194" href="#194">194</a> <a href="../../../../../../org/apache/hadoop/hbase/client/Put.html">Put</a> p = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/client/Put.html">Put</a>(Bytes.toBytes(SYSTEM_LABEL_ORDINAL)); <a class="jxr_linenumber" name="195" href="#195">195</a> p.addImmutable(LABELS_TABLE_FAMILY, LABEL_QUALIFIER, Bytes.toBytes(SYSTEM_LABEL)); <a class="jxr_linenumber" name="196" href="#196">196</a> <em class="jxr_comment">// Set auth for "system" label for all super users.</em> <a class="jxr_linenumber" name="197" href="#197">197</a> List&lt;String&gt; superUsers = getSystemAndSuperUsers(); <a class="jxr_linenumber" name="198" href="#198">198</a> <strong class="jxr_keyword">for</strong> (String superUser : superUsers) { <a class="jxr_linenumber" name="199" href="#199">199</a> p.addImmutable(LABELS_TABLE_FAMILY, Bytes.toBytes(superUser), DUMMY_VALUE, <a class="jxr_linenumber" name="200" href="#200">200</a> LABELS_TABLE_TAGS); <a class="jxr_linenumber" name="201" href="#201">201</a> } <a class="jxr_linenumber" name="202" href="#202">202</a> region.put(p); <a class="jxr_linenumber" name="203" href="#203">203</a> labels.put(SYSTEM_LABEL, SYSTEM_LABEL_ORDINAL); <a class="jxr_linenumber" name="204" href="#204">204</a> <strong class="jxr_keyword">for</strong> (String superUser : superUsers) { <a class="jxr_linenumber" name="205" href="#205">205</a> List&lt;Integer&gt; auths = userAuths.get(superUser); <a class="jxr_linenumber" name="206" href="#206">206</a> <strong class="jxr_keyword">if</strong> (auths == <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="207" href="#207">207</a> auths = <strong class="jxr_keyword">new</strong> ArrayList&lt;Integer&gt;(1); <a class="jxr_linenumber" name="208" href="#208">208</a> userAuths.put(superUser, auths); <a class="jxr_linenumber" name="209" href="#209">209</a> } <a class="jxr_linenumber" name="210" href="#210">210</a> auths.add(SYSTEM_LABEL_ORDINAL); <a class="jxr_linenumber" name="211" href="#211">211</a> } <a class="jxr_linenumber" name="212" href="#212">212</a> } <a class="jxr_linenumber" name="213" href="#213">213</a> } <a class="jxr_linenumber" name="214" href="#214">214</a> <a class="jxr_linenumber" name="215" href="#215">215</a> <strong class="jxr_keyword">protected</strong> List&lt;String&gt; getSystemAndSuperUsers() <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="216" href="#216">216</a> <a href="../../../../../../org/apache/hadoop/hbase/security/User.html">User</a> user = User.getCurrent(); <a class="jxr_linenumber" name="217" href="#217">217</a> <strong class="jxr_keyword">if</strong> (user == <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="218" href="#218">218</a> <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IOException(<span class="jxr_string">"Unable to obtain the current user, "</span> <a class="jxr_linenumber" name="219" href="#219">219</a> + <span class="jxr_string">"authorization checks for internal operations will not work correctly!"</span>); <a class="jxr_linenumber" name="220" href="#220">220</a> } <a class="jxr_linenumber" name="221" href="#221">221</a> <strong class="jxr_keyword">if</strong> (LOG.isTraceEnabled()) { <a class="jxr_linenumber" name="222" href="#222">222</a> LOG.trace(<span class="jxr_string">"Current user name is "</span> + user.getShortName()); <a class="jxr_linenumber" name="223" href="#223">223</a> } <a class="jxr_linenumber" name="224" href="#224">224</a> String currentUser = user.getShortName(); <a class="jxr_linenumber" name="225" href="#225">225</a> List&lt;String&gt; superUsers = Lists.asList(currentUser, <a class="jxr_linenumber" name="226" href="#226">226</a> <strong class="jxr_keyword">this</strong>.conf.getStrings(AccessControlLists.SUPERUSER_CONF_KEY, <strong class="jxr_keyword">new</strong> String[0])); <a class="jxr_linenumber" name="227" href="#227">227</a> <strong class="jxr_keyword">return</strong> superUsers; <a class="jxr_linenumber" name="228" href="#228">228</a> } <a class="jxr_linenumber" name="229" href="#229">229</a> <a class="jxr_linenumber" name="230" href="#230">230</a> @Override <a class="jxr_linenumber" name="231" href="#231">231</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/hadoop/hbase/regionserver/OperationStatus.html">OperationStatus</a>[] addLabels(List&lt;byte[]&gt; labels) <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="232" href="#232">232</a> assert labelsRegion != <strong class="jxr_keyword">null</strong>; <a class="jxr_linenumber" name="233" href="#233">233</a> <a href="../../../../../../org/apache/hadoop/hbase/regionserver/OperationStatus.html">OperationStatus</a>[] finalOpStatus = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/regionserver/OperationStatus.html">OperationStatus</a>[labels.size()]; <a class="jxr_linenumber" name="234" href="#234">234</a> List&lt;Mutation&gt; puts = <strong class="jxr_keyword">new</strong> ArrayList&lt;Mutation&gt;(labels.size()); <a class="jxr_linenumber" name="235" href="#235">235</a> <strong class="jxr_keyword">int</strong> i = 0; <a class="jxr_linenumber" name="236" href="#236">236</a> <strong class="jxr_keyword">for</strong> (byte[] label : labels) { <a class="jxr_linenumber" name="237" href="#237">237</a> String labelStr = Bytes.toString(label); <a class="jxr_linenumber" name="238" href="#238">238</a> <strong class="jxr_keyword">if</strong> (<strong class="jxr_keyword">this</strong>.labelsCache.getLabelOrdinal(labelStr) &gt; 0) { <a class="jxr_linenumber" name="239" href="#239">239</a> finalOpStatus[i] = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/regionserver/OperationStatus.html">OperationStatus</a>(OperationStatusCode.FAILURE, <a class="jxr_linenumber" name="240" href="#240">240</a> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/security/visibility/LabelAlreadyExistsException.html">LabelAlreadyExistsException</a>(<span class="jxr_string">"Label '"</span> + labelStr + <span class="jxr_string">"' already exists"</span>)); <a class="jxr_linenumber" name="241" href="#241">241</a> } <strong class="jxr_keyword">else</strong> { <a class="jxr_linenumber" name="242" href="#242">242</a> <a href="../../../../../../org/apache/hadoop/hbase/client/Put.html">Put</a> p = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/client/Put.html">Put</a>(Bytes.toBytes(ordinalCounter)); <a class="jxr_linenumber" name="243" href="#243">243</a> p.addImmutable(LABELS_TABLE_FAMILY, LABEL_QUALIFIER, label, LABELS_TABLE_TAGS); <a class="jxr_linenumber" name="244" href="#244">244</a> <strong class="jxr_keyword">if</strong> (LOG.isDebugEnabled()) { <a class="jxr_linenumber" name="245" href="#245">245</a> LOG.debug(<span class="jxr_string">"Adding the label "</span> + labelStr); <a class="jxr_linenumber" name="246" href="#246">246</a> } <a class="jxr_linenumber" name="247" href="#247">247</a> puts.add(p); <a class="jxr_linenumber" name="248" href="#248">248</a> ordinalCounter++; <a class="jxr_linenumber" name="249" href="#249">249</a> } <a class="jxr_linenumber" name="250" href="#250">250</a> i++; <a class="jxr_linenumber" name="251" href="#251">251</a> } <a class="jxr_linenumber" name="252" href="#252">252</a> <strong class="jxr_keyword">if</strong> (mutateLabelsRegion(puts, finalOpStatus)) { <a class="jxr_linenumber" name="253" href="#253">253</a> updateZk(<strong class="jxr_keyword">true</strong>); <a class="jxr_linenumber" name="254" href="#254">254</a> } <a class="jxr_linenumber" name="255" href="#255">255</a> <strong class="jxr_keyword">return</strong> finalOpStatus; <a class="jxr_linenumber" name="256" href="#256">256</a> } <a class="jxr_linenumber" name="257" href="#257">257</a> <a class="jxr_linenumber" name="258" href="#258">258</a> @Override <a class="jxr_linenumber" name="259" href="#259">259</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/hadoop/hbase/regionserver/OperationStatus.html">OperationStatus</a>[] setAuths(byte[] user, List&lt;byte[]&gt; authLabels) <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="260" href="#260">260</a> assert labelsRegion != <strong class="jxr_keyword">null</strong>; <a class="jxr_linenumber" name="261" href="#261">261</a> <a href="../../../../../../org/apache/hadoop/hbase/regionserver/OperationStatus.html">OperationStatus</a>[] finalOpStatus = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/regionserver/OperationStatus.html">OperationStatus</a>[authLabels.size()]; <a class="jxr_linenumber" name="262" href="#262">262</a> List&lt;Mutation&gt; puts = <strong class="jxr_keyword">new</strong> ArrayList&lt;Mutation&gt;(authLabels.size()); <a class="jxr_linenumber" name="263" href="#263">263</a> <strong class="jxr_keyword">int</strong> i = 0; <a class="jxr_linenumber" name="264" href="#264">264</a> <strong class="jxr_keyword">for</strong> (byte[] auth : authLabels) { <a class="jxr_linenumber" name="265" href="#265">265</a> String authStr = Bytes.toString(auth); <a class="jxr_linenumber" name="266" href="#266">266</a> <strong class="jxr_keyword">int</strong> labelOrdinal = <strong class="jxr_keyword">this</strong>.labelsCache.getLabelOrdinal(authStr); <a class="jxr_linenumber" name="267" href="#267">267</a> <strong class="jxr_keyword">if</strong> (labelOrdinal == 0) { <a class="jxr_linenumber" name="268" href="#268">268</a> <em class="jxr_comment">// This label is not yet added. 1st this should be added to the system</em> <a class="jxr_linenumber" name="269" href="#269">269</a> finalOpStatus[i] = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/regionserver/OperationStatus.html">OperationStatus</a>(OperationStatusCode.FAILURE, <a class="jxr_linenumber" name="270" href="#270">270</a> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/security/visibility/InvalidLabelException.html">InvalidLabelException</a>(<span class="jxr_string">"Label '"</span> + authStr + <span class="jxr_string">"' doesn't exists"</span>)); <a class="jxr_linenumber" name="271" href="#271">271</a> } <strong class="jxr_keyword">else</strong> { <a class="jxr_linenumber" name="272" href="#272">272</a> <a href="../../../../../../org/apache/hadoop/hbase/client/Put.html">Put</a> p = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/client/Put.html">Put</a>(Bytes.toBytes(labelOrdinal)); <a class="jxr_linenumber" name="273" href="#273">273</a> p.addImmutable(LABELS_TABLE_FAMILY, user, DUMMY_VALUE, LABELS_TABLE_TAGS); <a class="jxr_linenumber" name="274" href="#274">274</a> puts.add(p); <a class="jxr_linenumber" name="275" href="#275">275</a> } <a class="jxr_linenumber" name="276" href="#276">276</a> i++; <a class="jxr_linenumber" name="277" href="#277">277</a> } <a class="jxr_linenumber" name="278" href="#278">278</a> <strong class="jxr_keyword">if</strong> (mutateLabelsRegion(puts, finalOpStatus)) { <a class="jxr_linenumber" name="279" href="#279">279</a> updateZk(false); <a class="jxr_linenumber" name="280" href="#280">280</a> } <a class="jxr_linenumber" name="281" href="#281">281</a> <strong class="jxr_keyword">return</strong> finalOpStatus; <a class="jxr_linenumber" name="282" href="#282">282</a> } <a class="jxr_linenumber" name="283" href="#283">283</a> <a class="jxr_linenumber" name="284" href="#284">284</a> @Override <a class="jxr_linenumber" name="285" href="#285">285</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/hadoop/hbase/regionserver/OperationStatus.html">OperationStatus</a>[] clearAuths(byte[] user, List&lt;byte[]&gt; authLabels) <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="286" href="#286">286</a> assert labelsRegion != <strong class="jxr_keyword">null</strong>; <a class="jxr_linenumber" name="287" href="#287">287</a> <a href="../../../../../../org/apache/hadoop/hbase/regionserver/OperationStatus.html">OperationStatus</a>[] finalOpStatus = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/regionserver/OperationStatus.html">OperationStatus</a>[authLabels.size()]; <a class="jxr_linenumber" name="288" href="#288">288</a> List&lt;String&gt; currentAuths = <strong class="jxr_keyword">this</strong>.getAuths(user, <strong class="jxr_keyword">true</strong>); <a class="jxr_linenumber" name="289" href="#289">289</a> List&lt;Mutation&gt; deletes = <strong class="jxr_keyword">new</strong> ArrayList&lt;Mutation&gt;(authLabels.size()); <a class="jxr_linenumber" name="290" href="#290">290</a> <strong class="jxr_keyword">int</strong> i = 0; <a class="jxr_linenumber" name="291" href="#291">291</a> <strong class="jxr_keyword">for</strong> (byte[] authLabel : authLabels) { <a class="jxr_linenumber" name="292" href="#292">292</a> String authLabelStr = Bytes.toString(authLabel); <a class="jxr_linenumber" name="293" href="#293">293</a> <strong class="jxr_keyword">if</strong> (currentAuths.contains(authLabelStr)) { <a class="jxr_linenumber" name="294" href="#294">294</a> <strong class="jxr_keyword">int</strong> labelOrdinal = <strong class="jxr_keyword">this</strong>.labelsCache.getLabelOrdinal(authLabelStr); <a class="jxr_linenumber" name="295" href="#295">295</a> assert labelOrdinal &gt; 0; <a class="jxr_linenumber" name="296" href="#296">296</a> <a href="../../../../../../org/apache/hadoop/hbase/client/Delete.html">Delete</a> d = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/client/Delete.html">Delete</a>(Bytes.toBytes(labelOrdinal)); <a class="jxr_linenumber" name="297" href="#297">297</a> d.deleteColumns(LABELS_TABLE_FAMILY, user); <a class="jxr_linenumber" name="298" href="#298">298</a> deletes.add(d); <a class="jxr_linenumber" name="299" href="#299">299</a> } <strong class="jxr_keyword">else</strong> { <a class="jxr_linenumber" name="300" href="#300">300</a> <em class="jxr_comment">// This label is not set for the user.</em> <a class="jxr_linenumber" name="301" href="#301">301</a> finalOpStatus[i] = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/regionserver/OperationStatus.html">OperationStatus</a>(OperationStatusCode.FAILURE, <a class="jxr_linenumber" name="302" href="#302">302</a> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/security/visibility/InvalidLabelException.html">InvalidLabelException</a>(<span class="jxr_string">"Label '"</span> + authLabelStr + <span class="jxr_string">"' is not set for the user "</span> <a class="jxr_linenumber" name="303" href="#303">303</a> + Bytes.toString(user))); <a class="jxr_linenumber" name="304" href="#304">304</a> } <a class="jxr_linenumber" name="305" href="#305">305</a> i++; <a class="jxr_linenumber" name="306" href="#306">306</a> } <a class="jxr_linenumber" name="307" href="#307">307</a> <strong class="jxr_keyword">if</strong> (mutateLabelsRegion(deletes, finalOpStatus)) { <a class="jxr_linenumber" name="308" href="#308">308</a> updateZk(false); <a class="jxr_linenumber" name="309" href="#309">309</a> } <a class="jxr_linenumber" name="310" href="#310">310</a> <strong class="jxr_keyword">return</strong> finalOpStatus; <a class="jxr_linenumber" name="311" href="#311">311</a> } <a class="jxr_linenumber" name="312" href="#312">312</a> <a class="jxr_linenumber" name="313" href="#313">313</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="314" href="#314">314</a> <em class="jxr_javadoccomment"> * Adds the mutations to labels region and set the results to the finalOpStatus. finalOpStatus</em> <a class="jxr_linenumber" name="315" href="#315">315</a> <em class="jxr_javadoccomment"> * might have some entries in it where the OpStatus is FAILURE. We will leave those and set in</em> <a class="jxr_linenumber" name="316" href="#316">316</a> <em class="jxr_javadoccomment"> * others in the order.</em> <a class="jxr_linenumber" name="317" href="#317">317</a> <em class="jxr_javadoccomment"> * @param mutations</em> <a class="jxr_linenumber" name="318" href="#318">318</a> <em class="jxr_javadoccomment"> * @param finalOpStatus</em> <a class="jxr_linenumber" name="319" href="#319">319</a> <em class="jxr_javadoccomment"> * @return whether we need a ZK update or not.</em> <a class="jxr_linenumber" name="320" href="#320">320</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="321" href="#321">321</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">boolean</strong> mutateLabelsRegion(List&lt;Mutation&gt; mutations, <a href="../../../../../../org/apache/hadoop/hbase/regionserver/OperationStatus.html">OperationStatus</a>[] finalOpStatus) <a class="jxr_linenumber" name="322" href="#322">322</a> <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="323" href="#323">323</a> <a href="../../../../../../org/apache/hadoop/hbase/regionserver/OperationStatus.html">OperationStatus</a>[] opStatus = <strong class="jxr_keyword">this</strong>.labelsRegion.batchMutate(mutations <a class="jxr_linenumber" name="324" href="#324">324</a> .toArray(<strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/client/Mutation.html">Mutation</a>[mutations.size()])); <a class="jxr_linenumber" name="325" href="#325">325</a> <strong class="jxr_keyword">int</strong> i = 0; <a class="jxr_linenumber" name="326" href="#326">326</a> <strong class="jxr_keyword">boolean</strong> updateZk = false; <a class="jxr_linenumber" name="327" href="#327">327</a> <strong class="jxr_keyword">for</strong> (OperationStatus status : opStatus) { <a class="jxr_linenumber" name="328" href="#328">328</a> <em class="jxr_comment">// Update the zk when atleast one of the mutation was added successfully.</em> <a class="jxr_linenumber" name="329" href="#329">329</a> updateZk = updateZk || (status.getOperationStatusCode() == OperationStatusCode.SUCCESS); <a class="jxr_linenumber" name="330" href="#330">330</a> <strong class="jxr_keyword">for</strong> (; i &lt; finalOpStatus.length; i++) { <a class="jxr_linenumber" name="331" href="#331">331</a> <strong class="jxr_keyword">if</strong> (finalOpStatus[i] == <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="332" href="#332">332</a> finalOpStatus[i] = status; <a class="jxr_linenumber" name="333" href="#333">333</a> <strong class="jxr_keyword">break</strong>; <a class="jxr_linenumber" name="334" href="#334">334</a> } <a class="jxr_linenumber" name="335" href="#335">335</a> } <a class="jxr_linenumber" name="336" href="#336">336</a> } <a class="jxr_linenumber" name="337" href="#337">337</a> <strong class="jxr_keyword">return</strong> updateZk; <a class="jxr_linenumber" name="338" href="#338">338</a> } <a class="jxr_linenumber" name="339" href="#339">339</a> <a class="jxr_linenumber" name="340" href="#340">340</a> @Override <a class="jxr_linenumber" name="341" href="#341">341</a> <strong class="jxr_keyword">public</strong> List&lt;String&gt; getAuths(byte[] user, <strong class="jxr_keyword">boolean</strong> systemCall) <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="342" href="#342">342</a> assert (labelsRegion != <strong class="jxr_keyword">null</strong> || systemCall); <a class="jxr_linenumber" name="343" href="#343">343</a> <strong class="jxr_keyword">if</strong> (systemCall || labelsRegion == <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="344" href="#344">344</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">this</strong>.labelsCache.getAuths(Bytes.toString(user)); <a class="jxr_linenumber" name="345" href="#345">345</a> } <a class="jxr_linenumber" name="346" href="#346">346</a> <a href="../../../../../../org/apache/hadoop/hbase/client/Scan.html">Scan</a> s = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/client/Scan.html">Scan</a>(); <a class="jxr_linenumber" name="347" href="#347">347</a> s.addColumn(LABELS_TABLE_FAMILY, user); <a class="jxr_linenumber" name="348" href="#348">348</a> <a href="../../../../../../org/apache/hadoop/hbase/filter/Filter.html">Filter</a> filter = VisibilityUtils.createVisibilityLabelFilter(<strong class="jxr_keyword">this</strong>.labelsRegion, <a class="jxr_linenumber" name="349" href="#349">349</a> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/security/visibility/Authorizations.html">Authorizations</a>(SYSTEM_LABEL)); <a class="jxr_linenumber" name="350" href="#350">350</a> s.setFilter(filter); <a class="jxr_linenumber" name="351" href="#351">351</a> List&lt;String&gt; auths = <strong class="jxr_keyword">new</strong> ArrayList&lt;String&gt;(); <a class="jxr_linenumber" name="352" href="#352">352</a> <a href="../../../../../../org/apache/hadoop/hbase/regionserver/RegionScanner.html">RegionScanner</a> scanner = <strong class="jxr_keyword">this</strong>.labelsRegion.getScanner(s); <a class="jxr_linenumber" name="353" href="#353">353</a> List&lt;Cell&gt; results = <strong class="jxr_keyword">new</strong> ArrayList&lt;Cell&gt;(1); <a class="jxr_linenumber" name="354" href="#354">354</a> <strong class="jxr_keyword">while</strong> (<strong class="jxr_keyword">true</strong>) { <a class="jxr_linenumber" name="355" href="#355">355</a> scanner.next(results); <a class="jxr_linenumber" name="356" href="#356">356</a> <strong class="jxr_keyword">if</strong> (results.isEmpty()) <strong class="jxr_keyword">break</strong>; <a class="jxr_linenumber" name="357" href="#357">357</a> <a href="../../../../../../org/apache/hadoop/hbase/Cell.html">Cell</a> cell = results.get(0); <a class="jxr_linenumber" name="358" href="#358">358</a> <strong class="jxr_keyword">int</strong> ordinal = Bytes.toInt(cell.getRowArray(), cell.getRowOffset(), cell.getRowLength()); <a class="jxr_linenumber" name="359" href="#359">359</a> String label = <strong class="jxr_keyword">this</strong>.labelsCache.getLabel(ordinal); <a class="jxr_linenumber" name="360" href="#360">360</a> <strong class="jxr_keyword">if</strong> (label != <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="361" href="#361">361</a> auths.add(label); <a class="jxr_linenumber" name="362" href="#362">362</a> } <a class="jxr_linenumber" name="363" href="#363">363</a> results.clear(); <a class="jxr_linenumber" name="364" href="#364">364</a> } <a class="jxr_linenumber" name="365" href="#365">365</a> <strong class="jxr_keyword">return</strong> auths; <a class="jxr_linenumber" name="366" href="#366">366</a> } <a class="jxr_linenumber" name="367" href="#367">367</a> <a class="jxr_linenumber" name="368" href="#368">368</a> @Override <a class="jxr_linenumber" name="369" href="#369">369</a> <strong class="jxr_keyword">public</strong> List&lt;Tag&gt; createVisibilityExpTags(String visExpression, <strong class="jxr_keyword">boolean</strong> withSerializationFormat, <a class="jxr_linenumber" name="370" href="#370">370</a> <strong class="jxr_keyword">boolean</strong> checkAuths) <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="371" href="#371">371</a> Set&lt;Integer&gt; auths = <strong class="jxr_keyword">null</strong>; <a class="jxr_linenumber" name="372" href="#372">372</a> <strong class="jxr_keyword">if</strong> (checkAuths) { <a class="jxr_linenumber" name="373" href="#373">373</a> auths = <strong class="jxr_keyword">this</strong>.labelsCache.getAuthsAsOrdinals(VisibilityUtils.getActiveUser().getShortName()); <a class="jxr_linenumber" name="374" href="#374">374</a> } <a class="jxr_linenumber" name="375" href="#375">375</a> <strong class="jxr_keyword">return</strong> VisibilityUtils.createVisibilityExpTags(visExpression, withSerializationFormat, <a class="jxr_linenumber" name="376" href="#376">376</a> checkAuths, auths, labelsCache); <a class="jxr_linenumber" name="377" href="#377">377</a> } <a class="jxr_linenumber" name="378" href="#378">378</a> <a class="jxr_linenumber" name="379" href="#379">379</a> <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">void</strong> updateZk(<strong class="jxr_keyword">boolean</strong> labelAddition) <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="380" href="#380">380</a> <em class="jxr_comment">// We will add to zookeeper here.</em> <a class="jxr_linenumber" name="381" href="#381">381</a> <em class="jxr_comment">// TODO we should add the delta only to zk. Else this will be a very heavy op and when there are</em> <a class="jxr_linenumber" name="382" href="#382">382</a> <em class="jxr_comment">// so many labels and auth in the system, we will end up adding lots of data to zk. Most</em> <a class="jxr_linenumber" name="383" href="#383">383</a> <em class="jxr_comment">// possibly we will exceed zk node data limit!</em> <a class="jxr_linenumber" name="384" href="#384">384</a> Pair&lt;Map&lt;String, Integer&gt;, Map&lt;String, List&lt;Integer&gt;&gt;&gt; labelsAndUserAuths = <a class="jxr_linenumber" name="385" href="#385">385</a> extractLabelsAndAuths(getExistingLabelsWithAuths()); <a class="jxr_linenumber" name="386" href="#386">386</a> Map&lt;String, Integer&gt; existingLabels = labelsAndUserAuths.getFirst(); <a class="jxr_linenumber" name="387" href="#387">387</a> Map&lt;String, List&lt;Integer&gt;&gt; userAuths = labelsAndUserAuths.getSecond(); <a class="jxr_linenumber" name="388" href="#388">388</a> <strong class="jxr_keyword">if</strong> (labelAddition) { <a class="jxr_linenumber" name="389" href="#389">389</a> byte[] serialized = VisibilityUtils.getDataToWriteToZooKeeper(existingLabels); <a class="jxr_linenumber" name="390" href="#390">390</a> <strong class="jxr_keyword">this</strong>.labelsCache.writeToZookeeper(serialized, <strong class="jxr_keyword">true</strong>); <a class="jxr_linenumber" name="391" href="#391">391</a> } <strong class="jxr_keyword">else</strong> { <a class="jxr_linenumber" name="392" href="#392">392</a> byte[] serialized = VisibilityUtils.getUserAuthsDataToWriteToZooKeeper(userAuths); <a class="jxr_linenumber" name="393" href="#393">393</a> <strong class="jxr_keyword">this</strong>.labelsCache.writeToZookeeper(serialized, false); <a class="jxr_linenumber" name="394" href="#394">394</a> } <a class="jxr_linenumber" name="395" href="#395">395</a> } <a class="jxr_linenumber" name="396" href="#396">396</a> <a class="jxr_linenumber" name="397" href="#397">397</a> @Override <a class="jxr_linenumber" name="398" href="#398">398</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/hadoop/hbase/security/visibility/VisibilityExpEvaluator.html">VisibilityExpEvaluator</a> getVisibilityExpEvaluator(<a href="../../../../../../org/apache/hadoop/hbase/security/visibility/Authorizations.html">Authorizations</a> authorizations) <a class="jxr_linenumber" name="399" href="#399">399</a> <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="400" href="#400">400</a> <em class="jxr_comment">// If a super user issues a get/scan, he should be able to scan the cells</em> <a class="jxr_linenumber" name="401" href="#401">401</a> <em class="jxr_comment">// irrespective of the Visibility labels</em> <a class="jxr_linenumber" name="402" href="#402">402</a> <strong class="jxr_keyword">if</strong> (isReadFromSuperUser()) { <a class="jxr_linenumber" name="403" href="#403">403</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/security/visibility/VisibilityExpEvaluator.html">VisibilityExpEvaluator</a>() { <a class="jxr_linenumber" name="404" href="#404">404</a> @Override <a class="jxr_linenumber" name="405" href="#405">405</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> evaluate(<a href="../../../../../../org/apache/hadoop/hbase/Cell.html">Cell</a> cell) <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="406" href="#406">406</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>; <a class="jxr_linenumber" name="407" href="#407">407</a> } <a class="jxr_linenumber" name="408" href="#408">408</a> }; <a class="jxr_linenumber" name="409" href="#409">409</a> } <a class="jxr_linenumber" name="410" href="#410">410</a> List&lt;String&gt; authLabels = <strong class="jxr_keyword">null</strong>; <a class="jxr_linenumber" name="411" href="#411">411</a> <strong class="jxr_keyword">for</strong> (ScanLabelGenerator scanLabelGenerator : scanLabelGenerators) { <a class="jxr_linenumber" name="412" href="#412">412</a> <strong class="jxr_keyword">try</strong> { <a class="jxr_linenumber" name="413" href="#413">413</a> <em class="jxr_comment">// null authorizations to be handled inside SLG impl.</em> <a class="jxr_linenumber" name="414" href="#414">414</a> authLabels = scanLabelGenerator.getLabels(VisibilityUtils.getActiveUser(), authorizations); <a class="jxr_linenumber" name="415" href="#415">415</a> authLabels = (authLabels == <strong class="jxr_keyword">null</strong>) ? <strong class="jxr_keyword">new</strong> ArrayList&lt;String&gt;() : authLabels; <a class="jxr_linenumber" name="416" href="#416">416</a> authorizations = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/security/visibility/Authorizations.html">Authorizations</a>(authLabels); <a class="jxr_linenumber" name="417" href="#417">417</a> } <strong class="jxr_keyword">catch</strong> (Throwable t) { <a class="jxr_linenumber" name="418" href="#418">418</a> LOG.error(t); <a class="jxr_linenumber" name="419" href="#419">419</a> <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IOException(t); <a class="jxr_linenumber" name="420" href="#420">420</a> } <a class="jxr_linenumber" name="421" href="#421">421</a> } <a class="jxr_linenumber" name="422" href="#422">422</a> <strong class="jxr_keyword">int</strong> labelsCount = <strong class="jxr_keyword">this</strong>.labelsCache.getLabelsCount(); <a class="jxr_linenumber" name="423" href="#423">423</a> <strong class="jxr_keyword">final</strong> BitSet bs = <strong class="jxr_keyword">new</strong> BitSet(labelsCount + 1); <em class="jxr_comment">// ordinal is index 1 based</em> <a class="jxr_linenumber" name="424" href="#424">424</a> <strong class="jxr_keyword">if</strong> (authLabels != <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="425" href="#425">425</a> <strong class="jxr_keyword">for</strong> (String authLabel : authLabels) { <a class="jxr_linenumber" name="426" href="#426">426</a> <strong class="jxr_keyword">int</strong> labelOrdinal = <strong class="jxr_keyword">this</strong>.labelsCache.getLabelOrdinal(authLabel); <a class="jxr_linenumber" name="427" href="#427">427</a> <strong class="jxr_keyword">if</strong> (labelOrdinal != 0) { <a class="jxr_linenumber" name="428" href="#428">428</a> bs.set(labelOrdinal); <a class="jxr_linenumber" name="429" href="#429">429</a> } <a class="jxr_linenumber" name="430" href="#430">430</a> } <a class="jxr_linenumber" name="431" href="#431">431</a> } <a class="jxr_linenumber" name="432" href="#432">432</a> <a class="jxr_linenumber" name="433" href="#433">433</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/hadoop/hbase/security/visibility/VisibilityExpEvaluator.html">VisibilityExpEvaluator</a>() { <a class="jxr_linenumber" name="434" href="#434">434</a> @Override <a class="jxr_linenumber" name="435" href="#435">435</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> evaluate(<a href="../../../../../../org/apache/hadoop/hbase/Cell.html">Cell</a> cell) <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="436" href="#436">436</a> <strong class="jxr_keyword">boolean</strong> visibilityTagPresent = false; <a class="jxr_linenumber" name="437" href="#437">437</a> <em class="jxr_comment">// Save an object allocation where we can</em> <a class="jxr_linenumber" name="438" href="#438">438</a> <strong class="jxr_keyword">if</strong> (cell.getTagsLengthUnsigned() &gt; 0) { <a class="jxr_linenumber" name="439" href="#439">439</a> Iterator&lt;Tag&gt; tagsItr = CellUtil.tagsIterator(cell.getTagsArray(), cell.getTagsOffset(), <a class="jxr_linenumber" name="440" href="#440">440</a> cell.getTagsLengthUnsigned()); <a class="jxr_linenumber" name="441" href="#441">441</a> <strong class="jxr_keyword">while</strong> (tagsItr.hasNext()) { <a class="jxr_linenumber" name="442" href="#442">442</a> <strong class="jxr_keyword">boolean</strong> includeKV = <strong class="jxr_keyword">true</strong>; <a class="jxr_linenumber" name="443" href="#443">443</a> <a href="../../../../../../org/apache/hadoop/hbase/Tag.html">Tag</a> tag = tagsItr.next(); <a class="jxr_linenumber" name="444" href="#444">444</a> <strong class="jxr_keyword">if</strong> (tag.getType() == VISIBILITY_TAG_TYPE) { <a class="jxr_linenumber" name="445" href="#445">445</a> visibilityTagPresent = <strong class="jxr_keyword">true</strong>; <a class="jxr_linenumber" name="446" href="#446">446</a> <strong class="jxr_keyword">int</strong> offset = tag.getTagOffset(); <a class="jxr_linenumber" name="447" href="#447">447</a> <strong class="jxr_keyword">int</strong> endOffset = offset + tag.getTagLength(); <a class="jxr_linenumber" name="448" href="#448">448</a> <strong class="jxr_keyword">while</strong> (offset &lt; endOffset) { <a class="jxr_linenumber" name="449" href="#449">449</a> Pair&lt;Integer, Integer&gt; result = <a href="../../../../../../org/apache/hadoop/hbase/io/util/StreamUtils.html">StreamUtils</a> <a class="jxr_linenumber" name="450" href="#450">450</a> .readRawVarint32(tag.getBuffer(), offset); <a class="jxr_linenumber" name="451" href="#451">451</a> <strong class="jxr_keyword">int</strong> currLabelOrdinal = result.getFirst(); <a class="jxr_linenumber" name="452" href="#452">452</a> <strong class="jxr_keyword">if</strong> (currLabelOrdinal &lt; 0) { <a class="jxr_linenumber" name="453" href="#453">453</a> <em class="jxr_comment">// check for the absence of this label in the Scan Auth labels</em> <a class="jxr_linenumber" name="454" href="#454">454</a> <em class="jxr_comment">// ie. to check BitSet corresponding bit is 0</em> <a class="jxr_linenumber" name="455" href="#455">455</a> <strong class="jxr_keyword">int</strong> temp = -currLabelOrdinal; <a class="jxr_linenumber" name="456" href="#456">456</a> <strong class="jxr_keyword">if</strong> (bs.get(temp)) { <a class="jxr_linenumber" name="457" href="#457">457</a> includeKV = false; <a class="jxr_linenumber" name="458" href="#458">458</a> <strong class="jxr_keyword">break</strong>; <a class="jxr_linenumber" name="459" href="#459">459</a> } <a class="jxr_linenumber" name="460" href="#460">460</a> } <strong class="jxr_keyword">else</strong> { <a class="jxr_linenumber" name="461" href="#461">461</a> <strong class="jxr_keyword">if</strong> (!bs.get(currLabelOrdinal)) { <a class="jxr_linenumber" name="462" href="#462">462</a> includeKV = false; <a class="jxr_linenumber" name="463" href="#463">463</a> <strong class="jxr_keyword">break</strong>; <a class="jxr_linenumber" name="464" href="#464">464</a> } <a class="jxr_linenumber" name="465" href="#465">465</a> } <a class="jxr_linenumber" name="466" href="#466">466</a> offset += result.getSecond(); <a class="jxr_linenumber" name="467" href="#467">467</a> } <a class="jxr_linenumber" name="468" href="#468">468</a> <strong class="jxr_keyword">if</strong> (includeKV) { <a class="jxr_linenumber" name="469" href="#469">469</a> <em class="jxr_comment">// We got one visibility expression getting evaluated to true. Good to include this</em> <a class="jxr_linenumber" name="470" href="#470">470</a> <em class="jxr_comment">// KV in the result then.</em> <a class="jxr_linenumber" name="471" href="#471">471</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>; <a class="jxr_linenumber" name="472" href="#472">472</a> } <a class="jxr_linenumber" name="473" href="#473">473</a> } <a class="jxr_linenumber" name="474" href="#474">474</a> } <a class="jxr_linenumber" name="475" href="#475">475</a> } <a class="jxr_linenumber" name="476" href="#476">476</a> <strong class="jxr_keyword">return</strong> !(visibilityTagPresent); <a class="jxr_linenumber" name="477" href="#477">477</a> } <a class="jxr_linenumber" name="478" href="#478">478</a> }; <a class="jxr_linenumber" name="479" href="#479">479</a> } <a class="jxr_linenumber" name="480" href="#480">480</a> <a class="jxr_linenumber" name="481" href="#481">481</a> <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">boolean</strong> isReadFromSuperUser() <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="482" href="#482">482</a> byte[] user = Bytes.toBytes(VisibilityUtils.getActiveUser().getShortName()); <a class="jxr_linenumber" name="483" href="#483">483</a> <strong class="jxr_keyword">return</strong> havingSystemAuth(user); <a class="jxr_linenumber" name="484" href="#484">484</a> } <a class="jxr_linenumber" name="485" href="#485">485</a> <a class="jxr_linenumber" name="486" href="#486">486</a> @Override <a class="jxr_linenumber" name="487" href="#487">487</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> havingSystemAuth(byte[] user) <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="488" href="#488">488</a> List&lt;String&gt; auths = <strong class="jxr_keyword">this</strong>.getAuths(user, <strong class="jxr_keyword">true</strong>); <a class="jxr_linenumber" name="489" href="#489">489</a> <strong class="jxr_keyword">if</strong> (LOG.isTraceEnabled()) { <a class="jxr_linenumber" name="490" href="#490">490</a> LOG.trace(<span class="jxr_string">"The auths for user "</span> + Bytes.toString(user) + <span class="jxr_string">" are "</span> + auths); <a class="jxr_linenumber" name="491" href="#491">491</a> } <a class="jxr_linenumber" name="492" href="#492">492</a> <strong class="jxr_keyword">return</strong> auths.contains(SYSTEM_LABEL); <a class="jxr_linenumber" name="493" href="#493">493</a> } <a class="jxr_linenumber" name="494" href="#494">494</a> <a class="jxr_linenumber" name="495" href="#495">495</a> @Override <a class="jxr_linenumber" name="496" href="#496">496</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> matchVisibility(List&lt;Tag&gt; putVisTags, Byte putTagsFormat, List&lt;Tag&gt; deleteVisTags, <a class="jxr_linenumber" name="497" href="#497">497</a> Byte deleteTagsFormat) <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="498" href="#498">498</a> <strong class="jxr_keyword">if</strong> ((deleteTagsFormat != <strong class="jxr_keyword">null</strong> &amp;&amp; deleteTagsFormat == SORTED_ORDINAL_SERIALIZATION_FORMAT) <a class="jxr_linenumber" name="499" href="#499">499</a> &amp;&amp; (putTagsFormat == <strong class="jxr_keyword">null</strong> || putTagsFormat == SORTED_ORDINAL_SERIALIZATION_FORMAT)) { <a class="jxr_linenumber" name="500" href="#500">500</a> <strong class="jxr_keyword">if</strong> (putVisTags.size() == 0) { <a class="jxr_linenumber" name="501" href="#501">501</a> <em class="jxr_comment">// Early out if there are no tags in the cell</em> <a class="jxr_linenumber" name="502" href="#502">502</a> <strong class="jxr_keyword">return</strong> false; <a class="jxr_linenumber" name="503" href="#503">503</a> } <a class="jxr_linenumber" name="504" href="#504">504</a> <strong class="jxr_keyword">if</strong> (putTagsFormat == <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="505" href="#505">505</a> <strong class="jxr_keyword">return</strong> matchUnSortedVisibilityTags(putVisTags, deleteVisTags); <a class="jxr_linenumber" name="506" href="#506">506</a> } <strong class="jxr_keyword">else</strong> { <a class="jxr_linenumber" name="507" href="#507">507</a> <strong class="jxr_keyword">return</strong> matchOrdinalSortedVisibilityTags(putVisTags, deleteVisTags); <a class="jxr_linenumber" name="508" href="#508">508</a> } <a class="jxr_linenumber" name="509" href="#509">509</a> } <a class="jxr_linenumber" name="510" href="#510">510</a> <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IOException(<span class="jxr_string">"Unexpected tag format passed for comparison, deleteTagsFormat : "</span> <a class="jxr_linenumber" name="511" href="#511">511</a> + deleteTagsFormat + <span class="jxr_string">", putTagsFormat : "</span> + putTagsFormat); <a class="jxr_linenumber" name="512" href="#512">512</a> } <a class="jxr_linenumber" name="513" href="#513">513</a> <a class="jxr_linenumber" name="514" href="#514">514</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="515" href="#515">515</a> <em class="jxr_javadoccomment"> * @param putVisTags Visibility tags in Put Mutation</em> <a class="jxr_linenumber" name="516" href="#516">516</a> <em class="jxr_javadoccomment"> * @param deleteVisTags Visibility tags in Delete Mutation</em> <a class="jxr_linenumber" name="517" href="#517">517</a> <em class="jxr_javadoccomment"> * @return true when all the visibility tags in Put matches with visibility tags in Delete.</em> <a class="jxr_linenumber" name="518" href="#518">518</a> <em class="jxr_javadoccomment"> * This is used when, at least one set of tags are not sorted based on the label ordinal.</em> <a class="jxr_linenumber" name="519" href="#519">519</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="520" href="#520">520</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">boolean</strong> matchUnSortedVisibilityTags(List&lt;Tag&gt; putVisTags, <a class="jxr_linenumber" name="521" href="#521">521</a> List&lt;Tag&gt; deleteVisTags) <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="522" href="#522">522</a> <strong class="jxr_keyword">return</strong> compareTagsOrdinals(sortTagsBasedOnOrdinal(putVisTags), <a class="jxr_linenumber" name="523" href="#523">523</a> sortTagsBasedOnOrdinal(deleteVisTags)); <a class="jxr_linenumber" name="524" href="#524">524</a> } <a class="jxr_linenumber" name="525" href="#525">525</a> <a class="jxr_linenumber" name="526" href="#526">526</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="527" href="#527">527</a> <em class="jxr_javadoccomment"> * @param putVisTags Visibility tags in Put Mutation</em> <a class="jxr_linenumber" name="528" href="#528">528</a> <em class="jxr_javadoccomment"> * @param deleteVisTags Visibility tags in Delete Mutation</em> <a class="jxr_linenumber" name="529" href="#529">529</a> <em class="jxr_javadoccomment"> * @return true when all the visibility tags in Put matches with visibility tags in Delete.</em> <a class="jxr_linenumber" name="530" href="#530">530</a> <em class="jxr_javadoccomment"> * This is used when both the set of tags are sorted based on the label ordinal.</em> <a class="jxr_linenumber" name="531" href="#531">531</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="532" href="#532">532</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">boolean</strong> matchOrdinalSortedVisibilityTags(List&lt;Tag&gt; putVisTags, <a class="jxr_linenumber" name="533" href="#533">533</a> List&lt;Tag&gt; deleteVisTags) { <a class="jxr_linenumber" name="534" href="#534">534</a> <strong class="jxr_keyword">boolean</strong> matchFound = false; <a class="jxr_linenumber" name="535" href="#535">535</a> <em class="jxr_comment">// If the size does not match. Definitely we are not comparing the equal tags.</em> <a class="jxr_linenumber" name="536" href="#536">536</a> <strong class="jxr_keyword">if</strong> ((deleteVisTags.size()) == putVisTags.size()) { <a class="jxr_linenumber" name="537" href="#537">537</a> <strong class="jxr_keyword">for</strong> (Tag tag : deleteVisTags) { <a class="jxr_linenumber" name="538" href="#538">538</a> matchFound = false; <a class="jxr_linenumber" name="539" href="#539">539</a> <strong class="jxr_keyword">for</strong> (Tag givenTag : putVisTags) { <a class="jxr_linenumber" name="540" href="#540">540</a> <strong class="jxr_keyword">if</strong> (Bytes.equals(tag.getBuffer(), tag.getTagOffset(), tag.getTagLength(), <a class="jxr_linenumber" name="541" href="#541">541</a> givenTag.getBuffer(), givenTag.getTagOffset(), givenTag.getTagLength())) { <a class="jxr_linenumber" name="542" href="#542">542</a> matchFound = <strong class="jxr_keyword">true</strong>; <a class="jxr_linenumber" name="543" href="#543">543</a> <strong class="jxr_keyword">break</strong>; <a class="jxr_linenumber" name="544" href="#544">544</a> } <a class="jxr_linenumber" name="545" href="#545">545</a> } <a class="jxr_linenumber" name="546" href="#546">546</a> <strong class="jxr_keyword">if</strong> (!matchFound) <strong class="jxr_keyword">break</strong>; <a class="jxr_linenumber" name="547" href="#547">547</a> } <a class="jxr_linenumber" name="548" href="#548">548</a> } <a class="jxr_linenumber" name="549" href="#549">549</a> <strong class="jxr_keyword">return</strong> matchFound; <a class="jxr_linenumber" name="550" href="#550">550</a> } <a class="jxr_linenumber" name="551" href="#551">551</a> <a class="jxr_linenumber" name="552" href="#552">552</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> List&lt;List&lt;Integer&gt;&gt; sortTagsBasedOnOrdinal(List&lt;Tag&gt; tags) <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="553" href="#553">553</a> List&lt;List&lt;Integer&gt;&gt; fullTagsList = <strong class="jxr_keyword">new</strong> ArrayList&lt;List&lt;Integer&gt;&gt;(); <a class="jxr_linenumber" name="554" href="#554">554</a> <strong class="jxr_keyword">for</strong> (Tag tag : tags) { <a class="jxr_linenumber" name="555" href="#555">555</a> <strong class="jxr_keyword">if</strong> (tag.getType() == VISIBILITY_TAG_TYPE) { <a class="jxr_linenumber" name="556" href="#556">556</a> getSortedTagOrdinals(fullTagsList, tag); <a class="jxr_linenumber" name="557" href="#557">557</a> } <a class="jxr_linenumber" name="558" href="#558">558</a> } <a class="jxr_linenumber" name="559" href="#559">559</a> <strong class="jxr_keyword">return</strong> fullTagsList; <a class="jxr_linenumber" name="560" href="#560">560</a> } <a class="jxr_linenumber" name="561" href="#561">561</a> <a class="jxr_linenumber" name="562" href="#562">562</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">void</strong> getSortedTagOrdinals(List&lt;List&lt;Integer&gt;&gt; fullTagsList, <a href="../../../../../../org/apache/hadoop/hbase/Tag.html">Tag</a> tag) <a class="jxr_linenumber" name="563" href="#563">563</a> <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="564" href="#564">564</a> List&lt;Integer&gt; tagsOrdinalInSortedOrder = <strong class="jxr_keyword">new</strong> ArrayList&lt;Integer&gt;(); <a class="jxr_linenumber" name="565" href="#565">565</a> <strong class="jxr_keyword">int</strong> offset = tag.getTagOffset(); <a class="jxr_linenumber" name="566" href="#566">566</a> <strong class="jxr_keyword">int</strong> endOffset = offset + tag.getTagLength(); <a class="jxr_linenumber" name="567" href="#567">567</a> <strong class="jxr_keyword">while</strong> (offset &lt; endOffset) { <a class="jxr_linenumber" name="568" href="#568">568</a> Pair&lt;Integer, Integer&gt; result = StreamUtils.readRawVarint32(tag.getBuffer(), offset); <a class="jxr_linenumber" name="569" href="#569">569</a> tagsOrdinalInSortedOrder.add(result.getFirst()); <a class="jxr_linenumber" name="570" href="#570">570</a> offset += result.getSecond(); <a class="jxr_linenumber" name="571" href="#571">571</a> } <a class="jxr_linenumber" name="572" href="#572">572</a> Collections.sort(tagsOrdinalInSortedOrder); <a class="jxr_linenumber" name="573" href="#573">573</a> fullTagsList.add(tagsOrdinalInSortedOrder); <a class="jxr_linenumber" name="574" href="#574">574</a> } <a class="jxr_linenumber" name="575" href="#575">575</a> <a class="jxr_linenumber" name="576" href="#576">576</a> <em class="jxr_comment">/*</em> <a class="jxr_linenumber" name="577" href="#577">577</a> <em class="jxr_comment"> * @return true when all the visibility tags in Put matches with visibility tags in Delete.</em> <a class="jxr_linenumber" name="578" href="#578">578</a> <em class="jxr_comment"> */</em> <a class="jxr_linenumber" name="579" href="#579">579</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">boolean</strong> compareTagsOrdinals(List&lt;List&lt;Integer&gt;&gt; putVisTags, <a class="jxr_linenumber" name="580" href="#580">580</a> List&lt;List&lt;Integer&gt;&gt; deleteVisTags) { <a class="jxr_linenumber" name="581" href="#581">581</a> <strong class="jxr_keyword">boolean</strong> matchFound = false; <a class="jxr_linenumber" name="582" href="#582">582</a> <strong class="jxr_keyword">if</strong> (deleteVisTags.size() == putVisTags.size()) { <a class="jxr_linenumber" name="583" href="#583">583</a> <strong class="jxr_keyword">for</strong> (List&lt;Integer&gt; deleteTagOrdinals : deleteVisTags) { <a class="jxr_linenumber" name="584" href="#584">584</a> matchFound = false; <a class="jxr_linenumber" name="585" href="#585">585</a> <strong class="jxr_keyword">for</strong> (List&lt;Integer&gt; tagOrdinals : putVisTags) { <a class="jxr_linenumber" name="586" href="#586">586</a> <strong class="jxr_keyword">if</strong> (deleteTagOrdinals.equals(tagOrdinals)) { <a class="jxr_linenumber" name="587" href="#587">587</a> matchFound = <strong class="jxr_keyword">true</strong>; <a class="jxr_linenumber" name="588" href="#588">588</a> <strong class="jxr_keyword">break</strong>; <a class="jxr_linenumber" name="589" href="#589">589</a> } <a class="jxr_linenumber" name="590" href="#590">590</a> } <a class="jxr_linenumber" name="591" href="#591">591</a> <strong class="jxr_keyword">if</strong> (!matchFound) <strong class="jxr_keyword">break</strong>; <a class="jxr_linenumber" name="592" href="#592">592</a> } <a class="jxr_linenumber" name="593" href="#593">593</a> } <a class="jxr_linenumber" name="594" href="#594">594</a> <strong class="jxr_keyword">return</strong> matchFound; <a class="jxr_linenumber" name="595" href="#595">595</a> } <a class="jxr_linenumber" name="596" href="#596">596</a> } </pre> <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body> </html>
src/core/resources/sap/sbo/ng4c/app/Dashboard.html
JackieWei/fiori
<div ng-controller="sap.sbo.ng4c.launchpad.dashboard.Dashboard" ng-include="template" ng-class="className"> </div>
doc/1.0.0/guacamole-common/org/apache/guacamole/servlet/class-use/GuacamoleHTTPTunnelServlet.html
mike-jumper/incubator-guacamole-website
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_191) on Fri Dec 21 13:21:29 PST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.apache.guacamole.servlet.GuacamoleHTTPTunnelServlet (guacamole-common 1.0.0 API)</title> <meta name="date" content="2018-12-21"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.guacamole.servlet.GuacamoleHTTPTunnelServlet (guacamole-common 1.0.0 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../org/apache/guacamole/servlet/GuacamoleHTTPTunnelServlet.html" title="class in org.apache.guacamole.servlet">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/guacamole/servlet/class-use/GuacamoleHTTPTunnelServlet.html" target="_top">Frames</a></li> <li><a href="GuacamoleHTTPTunnelServlet.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.apache.guacamole.servlet.GuacamoleHTTPTunnelServlet" class="title">Uses of Class<br>org.apache.guacamole.servlet.GuacamoleHTTPTunnelServlet</h2> </div> <div class="classUseContainer">No usage of org.apache.guacamole.servlet.GuacamoleHTTPTunnelServlet</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../org/apache/guacamole/servlet/GuacamoleHTTPTunnelServlet.html" title="class in org.apache.guacamole.servlet">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/guacamole/servlet/class-use/GuacamoleHTTPTunnelServlet.html" target="_top">Frames</a></li> <li><a href="GuacamoleHTTPTunnelServlet.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2018. All rights reserved.</small></p> <!-- Google Analytics --> <script type="text/javascript"> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-75289145-1', 'auto'); ga('send', 'pageview'); </script> </body> </html>
javadoc-complete/com/google/template/soy/exprparse/package-tree.html
Digaku/closure-template
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <TITLE> com.google.template.soy.exprparse Class Hierarchy (Soy Complete) </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="com.google.template.soy.exprparse Class Hierarchy (Soy Complete)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../com/google/template/soy/examples/package-tree.html"><B>PREV</B></A>&nbsp; &nbsp;<A HREF="../../../../../com/google/template/soy/exprtree/package-tree.html"><B>NEXT</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?com/google/template/soy/exprparse/package-tree.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> Hierarchy For Package com.google.template.soy.exprparse </H2> </CENTER> <DL> <DT><B>Package Hierarchies:</B><DD><A HREF="../../../../../overview-tree.html">All Packages</A></DL> <HR> <H2> Class Hierarchy </H2> <UL> <LI TYPE="circle">java.lang.<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><B>Object</B></A><UL> <LI TYPE="circle">com.google.template.soy.exprparse.<A HREF="../../../../../com/google/template/soy/exprparse/ExpressionParser.html" title="class in com.google.template.soy.exprparse"><B>ExpressionParser</B></A> (implements com.google.template.soy.exprparse.<A HREF="../../../../../com/google/template/soy/exprparse/ExpressionParserConstants.html" title="interface in com.google.template.soy.exprparse">ExpressionParserConstants</A>) <LI TYPE="circle">com.google.template.soy.exprparse.<A HREF="../../../../../com/google/template/soy/exprparse/ExpressionParserTokenManager.html" title="class in com.google.template.soy.exprparse"><B>ExpressionParserTokenManager</B></A> (implements com.google.template.soy.exprparse.<A HREF="../../../../../com/google/template/soy/exprparse/ExpressionParserConstants.html" title="interface in com.google.template.soy.exprparse">ExpressionParserConstants</A>) <LI TYPE="circle">com.google.template.soy.exprparse.<A HREF="../../../../../com/google/template/soy/exprparse/SimpleCharStream.html" title="class in com.google.template.soy.exprparse"><B>SimpleCharStream</B></A><LI TYPE="circle">java.lang.<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><B>Throwable</B></A> (implements java.io.<A HREF="http://java.sun.com/javase/6/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</A>) <UL> <LI TYPE="circle">java.lang.<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Error.html?is-external=true" title="class or interface in java.lang"><B>Error</B></A><UL> <LI TYPE="circle">com.google.template.soy.exprparse.<A HREF="../../../../../com/google/template/soy/exprparse/TokenMgrError.html" title="class in com.google.template.soy.exprparse"><B>TokenMgrError</B></A></UL> <LI TYPE="circle">java.lang.<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang"><B>Exception</B></A><UL> <LI TYPE="circle">com.google.template.soy.exprparse.<A HREF="../../../../../com/google/template/soy/exprparse/ParseException.html" title="class in com.google.template.soy.exprparse"><B>ParseException</B></A></UL> </UL> <LI TYPE="circle">com.google.template.soy.exprparse.<A HREF="../../../../../com/google/template/soy/exprparse/Token.html" title="class in com.google.template.soy.exprparse"><B>Token</B></A></UL> </UL> <H2> Interface Hierarchy </H2> <UL> <LI TYPE="circle">com.google.template.soy.exprparse.<A HREF="../../../../../com/google/template/soy/exprparse/ExpressionParserConstants.html" title="interface in com.google.template.soy.exprparse"><B>ExpressionParserConstants</B></A></UL> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../com/google/template/soy/examples/package-tree.html"><B>PREV</B></A>&nbsp; &nbsp;<A HREF="../../../../../com/google/template/soy/exprtree/package-tree.html"><B>NEXT</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?com/google/template/soy/exprparse/package-tree.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <div id="footer"> <div id="footerlogo" style="float:left"> <img src="http://www.google.com/images/art.gif" alt="Google colored balls"> </div> <div id="copyright" style="float:left"> <p> &copy; 2009 Google - <a href="http://www.google.com/privacy.html">Privacy Policy</a> - <a href="http://www.google.com/terms_of_service.html">Terms and Conditions</a> - <a href="http://www.google.com/about.html">About Google</a> </p> </div> </div> </BODY> </HTML>
doc/index-files/index-10.html
gabrielcc2/IR14Assignment2
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_65) on Sun Jan 18 13:25:58 CET 2015 --> <title>L-Index</title> <meta name="date" content="2015-01-18"> <link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="L-Index"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../overview-summary.html">Overview</a></li> <li>Package</li> <li>Class</li> <li>Use</li> <li><a href="../overview-tree.html">Tree</a></li> <li><a href="../deprecated-list.html">Deprecated</a></li> <li class="navBarCell1Rev">Index</li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="index-9.html">Prev Letter</a></li> <li><a href="index-11.html">Next Letter</a></li> </ul> <ul class="navList"> <li><a href="../index.html?index-filesindex-10.html" target="_top">Frames</a></li> <li><a href="index-10.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">C</a>&nbsp;<a href="index-3.html">D</a>&nbsp;<a href="index-4.html">E</a>&nbsp;<a href="index-5.html">F</a>&nbsp;<a href="index-6.html">G</a>&nbsp;<a href="index-7.html">H</a>&nbsp;<a href="index-8.html">I</a>&nbsp;<a href="index-9.html">J</a>&nbsp;<a href="index-10.html">L</a>&nbsp;<a href="index-11.html">M</a>&nbsp;<a href="index-12.html">N</a>&nbsp;<a href="index-13.html">Q</a>&nbsp;<a href="index-14.html">R</a>&nbsp;<a href="index-15.html">S</a>&nbsp;<a href="index-16.html">T</a>&nbsp;<a href="index-17.html">U</a>&nbsp;<a href="index-18.html">V</a>&nbsp;<a href="index-19.html">W</a>&nbsp;<a name="_L_"> <!-- --> </a> <h2 class="title">L</h2> <dl> <dt><a href="../ir/view/ListOfUnformattedTextDialog.html" title="class in ir.view"><span class="strong">ListOfUnformattedTextDialog</span></a> - Class in <a href="../ir/view/package-summary.html">ir.view</a></dt> <dd> <div class="block">Secondary interface of the GUI, it consists of a window displaying unformatted text.</div> </dd> <dt><span class="strong"><a href="../ir/view/ListOfUnformattedTextDialog.html#ListOfUnformattedTextDialog(java.awt.Frame,%20boolean,%20java.util.List,%20java.lang.Integer,%20java.lang.String,%20boolean)">ListOfUnformattedTextDialog(Frame, boolean, List&lt;URL&gt;, Integer, String, boolean)</a></span> - Constructor for class ir.view.<a href="../ir/view/ListOfUnformattedTextDialog.html" title="class in ir.view">ListOfUnformattedTextDialog</a></dt> <dd> <div class="block">Constructor, to be used for crawling messages.</div> </dd> <dt><span class="strong"><a href="../ir/view/ListOfUnformattedTextDialog.html#ListOfUnformattedTextDialog(java.awt.Frame,%20boolean,%20java.util.List,%20java.lang.String)">ListOfUnformattedTextDialog(Frame, boolean, List&lt;String&gt;, String)</a></span> - Constructor for class ir.view.<a href="../ir/view/ListOfUnformattedTextDialog.html" title="class in ir.view">ListOfUnformattedTextDialog</a></dt> <dd> <div class="block">Constructor to be used for printing lists</div> </dd> <dt><a href="../ir/view/ListOfUnformattedTextDialog.SeparateThreadToCallTheCrawling.html" title="class in ir.view"><span class="strong">ListOfUnformattedTextDialog.SeparateThreadToCallTheCrawling</span></a> - Class in <a href="../ir/view/package-summary.html">ir.view</a></dt> <dd>&nbsp;</dd> <dt><span class="strong"><a href="../ir/view/ListOfUnformattedTextDialog.SeparateThreadToCallTheCrawling.html#ListOfUnformattedTextDialog.SeparateThreadToCallTheCrawling(java.util.List,%20int,%20java.lang.String,%20boolean)">ListOfUnformattedTextDialog.SeparateThreadToCallTheCrawling(List&lt;URL&gt;, int, String, boolean)</a></span> - Constructor for class ir.view.<a href="../ir/view/ListOfUnformattedTextDialog.SeparateThreadToCallTheCrawling.html" title="class in ir.view">ListOfUnformattedTextDialog.SeparateThreadToCallTheCrawling</a></dt> <dd>&nbsp;</dd> <dt><a href="../ir/view/ListOfUnformattedTextDialog.TextAreaOutputStream.html" title="class in ir.view"><span class="strong">ListOfUnformattedTextDialog.TextAreaOutputStream</span></a> - Class in <a href="../ir/view/package-summary.html">ir.view</a></dt> <dd>&nbsp;</dd> <dt><span class="strong"><a href="../ir/view/ListOfUnformattedTextDialog.TextAreaOutputStream.html#ListOfUnformattedTextDialog.TextAreaOutputStream(javax.swing.JTextArea)">ListOfUnformattedTextDialog.TextAreaOutputStream(JTextArea)</a></span> - Constructor for class ir.view.<a href="../ir/view/ListOfUnformattedTextDialog.TextAreaOutputStream.html" title="class in ir.view">ListOfUnformattedTextDialog.TextAreaOutputStream</a></dt> <dd>&nbsp;</dd> <dt><span class="strong"><a href="../ir/view/CodeSearchUI.html#logo">logo</a></span> - Variable in class ir.view.<a href="../ir/view/CodeSearchUI.html" title="class in ir.view">CodeSearchUI</a></dt> <dd>&nbsp;</dd> </dl> <a href="index-1.html">A</a>&nbsp;<a href="index-2.html">C</a>&nbsp;<a href="index-3.html">D</a>&nbsp;<a href="index-4.html">E</a>&nbsp;<a href="index-5.html">F</a>&nbsp;<a href="index-6.html">G</a>&nbsp;<a href="index-7.html">H</a>&nbsp;<a href="index-8.html">I</a>&nbsp;<a href="index-9.html">J</a>&nbsp;<a href="index-10.html">L</a>&nbsp;<a href="index-11.html">M</a>&nbsp;<a href="index-12.html">N</a>&nbsp;<a href="index-13.html">Q</a>&nbsp;<a href="index-14.html">R</a>&nbsp;<a href="index-15.html">S</a>&nbsp;<a href="index-16.html">T</a>&nbsp;<a href="index-17.html">U</a>&nbsp;<a href="index-18.html">V</a>&nbsp;<a href="index-19.html">W</a>&nbsp;</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../overview-summary.html">Overview</a></li> <li>Package</li> <li>Class</li> <li>Use</li> <li><a href="../overview-tree.html">Tree</a></li> <li><a href="../deprecated-list.html">Deprecated</a></li> <li class="navBarCell1Rev">Index</li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="index-9.html">Prev Letter</a></li> <li><a href="index-11.html">Next Letter</a></li> </ul> <ul class="navList"> <li><a href="../index.html?index-filesindex-10.html" target="_top">Frames</a></li> <li><a href="index-10.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
tags/page/1/index.html
LorenzLeitner/lorenzleitner.github.io
<!DOCTYPE html><html><head><title>https://lolei.github.io/tags/</title><link rel="canonical" href="https://lolei.github.io/tags/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://lolei.github.io/tags/" /></head></html>
doc/core/Lucene.Net.Search.FuzzyQuery.html
Mpdreamz/lucene.net
<html dir="LTR"> <head> <meta http-equiv="Content-Type" content="text/html; charset=Windows-1252" /> <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5" /> <title>FuzzyQuery Class</title> <xml> </xml> <link rel="stylesheet" type="text/css" href="MSDN.css" /> </head> <body id="bodyID" class="dtBODY"> <div id="nsbanner"> <div id="bannerrow1"> <table class="bannerparthead" cellspacing="0"> <tr id="hdr"> <td class="runninghead">Apache Lucene.Net 2.4.0 Class Library API</td> <td class="product"> </td> </tr> </table> </div> <div id="TitleRow"> <h1 class="dtH1">FuzzyQuery Class</h1> </div> </div> <div id="nstext"> <p>Implements the fuzzy search query. The similiarity measurement is based on the Levenshtein (edit distance) algorithm. </p> <p>For a list of all members of this type, see <a href="Lucene.Net.Search.FuzzyQueryMembers.html">FuzzyQuery Members</a>.</p> <p> <a href="ms-help://MS.NETFrameworkSDKv1.1/cpref/html/frlrfSystemObjectClassTopic.htm">System.Object</a> <br />   <a href="Lucene.Net.Search.Query.html">Lucene.Net.Search.Query</a><br />      <a href="Lucene.Net.Search.MultiTermQuery.html">Lucene.Net.Search.MultiTermQuery</a><br />         <b>Lucene.Net.Search.FuzzyQuery</b></p> <div class="syntax"> <div>public class FuzzyQuery<b> : <a href="Lucene.Net.Search.MultiTermQuery.html">MultiTermQuery</a></b></div> </div> <H4 class="dtH4">Thread Safety</H4> <P>Public static (<b>Shared</b> in Visual Basic) members of this type are safe for multithreaded operations. Instance members are <b>not</b> guaranteed to be thread-safe.</P> <h4 class="dtH4">Requirements</h4> <p> <b>Namespace: </b> <a href="Lucene.Net.Search.html">Lucene.Net.Search</a> </p> <p> <b>Assembly: </b>Lucene.Net (in Lucene.Net.dll) </p> <h4 class="dtH4">See Also</h4> <p> <a href="Lucene.Net.Search.FuzzyQueryMembers.html">FuzzyQuery Members</a> | <a href="Lucene.Net.Search.html">Lucene.Net.Search Namespace</a></p> <object type="application/x-oleobject" classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e" viewastext="true" style="display: none;"> <param name="Keyword" value="FuzzyQuery class, about FuzzyQuery class"> </param> </object> <hr /> <div id="footer"> <p> </p> <p>Generated from assembly Lucene.Net [2.4.0.2]</p> </div> </div> </body> </html>
examples/index.html
jgravois/citysdk-arcgis
<!DOCTYPE html> <html> <head> <title>CitySDK ArcGIS - DC Business Licenses example</title> <script src="https://code.jquery.com/jquery-2.1.4.min.js" type="text/javascript"></script> <script src="https://rawgit.com/uscensusbureau/citysdk/master/js/citysdk.js"></script> <script src="https://rawgit.com/uscensusbureau/citysdk/master/js/citysdk.census.js"></script> <script src="../js/citysdk.arcgis.js" type="text/javascript"></script> <script type="text/javascript"> var sdk = new CitySDK(); var arcgis = sdk.modules.arcgis; var census = sdk.modules.census; census.enable("d9084c5c4a0e92c442406b5eae0f14ec71d83569"); jQuery(document).ready(function() { request = { "url": "http://maps2.dcgis.dc.gov/dcgis/rest/services/FEEDS/CDW_Feeds/MapServer/0", "where": [ "LICENSESTATUS='ACTIVE'", "ANC='6A'" ] }; arcgis.APIRequest(request,function(response) { var message = []; $.map(response.features, function(feature,i) { var request = { "lat": feature.geometry.y, "lng": feature.geometry.x, "level": "tract", "container": "place", "variables": [ "income", "population", "median_male_age" ] }; var callback = function(response) { $('#output tr:last').after( '<tr><td>' + feature.attributes['TRADE_NAME'] + '</td>' + '<td>' + feature.attributes['WARD'] + '</td>' + '<td>' + response.data.income +'</td></tr>' ); }; census.APIRequest(request, callback); }); }); }); </script> </head> <body style="margin: 0px; padding: 0px;"> <h3>Basic Business License for Washington, DC</h3> <table id="output"> <tr><td>Name</td><td>Ward</td><td>Median Income from ACS</td></tr> </table> </body> </html>
workspace/myproject/myproject/templates/example/admin_1_material_design/app_todo.html
liangazhou/django-rdp
<!DOCTYPE html> <!-- Template Name: Metronic - Responsive Admin Dashboard Template build with Twitter Bootstrap 3.3.5 Version: 4.5.2 Author: KeenThemes Website: http://www.keenthemes.com/ Contact: support@keenthemes.com Follow: www.twitter.com/keenthemes Like: www.facebook.com/keenthemes Purchase: http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes License: You must have a valid license purchased only from themeforest(the above link) in order to legally use the theme for your project. --> <!--[if IE 8]> <html lang="en" class="ie8 no-js"> <![endif]--> <!--[if IE 9]> <html lang="en" class="ie9 no-js"> <![endif]--> <!--[if !IE]><!--> <html lang="en"> <!--<![endif]--> <!-- BEGIN HEAD --> <head> <meta charset="utf-8" /> <title>Metronic | Todo</title> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta content="width=device-width, initial-scale=1" name="viewport" /> <meta content="" name="description" /> <meta content="" name="author" /> <!-- BEGIN GLOBAL MANDATORY STYLES --> <link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700&subset=all" rel="stylesheet" type="text/css" /> <link href="../assets/global/plugins/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css" /> <link href="../assets/global/plugins/simple-line-icons/simple-line-icons.min.css" rel="stylesheet" type="text/css" /> <link href="../assets/global/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" /> <link href="../assets/global/plugins/uniform/css/uniform.default.css" rel="stylesheet" type="text/css" /> <link href="../assets/global/plugins/bootstrap-switch/css/bootstrap-switch.min.css" rel="stylesheet" type="text/css" /> <!-- END GLOBAL MANDATORY STYLES --> <!-- BEGIN PAGE LEVEL PLUGINS --> <link href="../assets/global/plugins/bootstrap-datepicker/css/bootstrap-datepicker3.min.css" rel="stylesheet" type="text/css" /> <link href="../assets/global/plugins/select2/css/select2.min.css" rel="stylesheet" type="text/css" /> <link href="../assets/global/plugins/select2/css/select2-bootstrap.min.css" rel="stylesheet" type="text/css" /> <link href="../assets/global/plugins/jquery-multi-select/css/multi-select.css" rel="stylesheet" type="text/css" /> <!-- END PAGE LEVEL PLUGINS --> <!-- BEGIN THEME GLOBAL STYLES --> <link href="../assets/global/css/components-md.min.css" rel="stylesheet" id="style_components" type="text/css" /> <link href="../assets/global/css/plugins-md.min.css" rel="stylesheet" type="text/css" /> <!-- END THEME GLOBAL STYLES --> <!-- BEGIN PAGE LEVEL STYLES --> <link href="../assets/apps/css/todo.min.css" rel="stylesheet" type="text/css" /> <!-- END PAGE LEVEL STYLES --> <!-- BEGIN THEME LAYOUT STYLES --> <link href="../assets/layouts/layout/css/layout.min.css" rel="stylesheet" type="text/css" /> <link href="../assets/layouts/layout/css/themes/darkblue.min.css" rel="stylesheet" type="text/css" id="style_color" /> <link href="../assets/layouts/layout/css/custom.min.css" rel="stylesheet" type="text/css" /> <!-- END THEME LAYOUT STYLES --> <link rel="shortcut icon" href="favicon.ico" /> </head> <!-- END HEAD --> <body class="page-header-fixed page-sidebar-closed-hide-logo page-container-bg-solid page-content-white page-md"> <!-- BEGIN HEADER --> <div class="page-header navbar navbar-fixed-top"> <!-- BEGIN HEADER INNER --> <div class="page-header-inner "> <!-- BEGIN LOGO --> <div class="page-logo"> <a href="index.html"> <img src="../assets/layouts/layout/img/logo.png" alt="logo" class="logo-default" /> </a> <div class="menu-toggler sidebar-toggler"> </div> </div> <!-- END LOGO --> <!-- BEGIN RESPONSIVE MENU TOGGLER --> <a href="javascript:;" class="menu-toggler responsive-toggler" data-toggle="collapse" data-target=".navbar-collapse"> </a> <!-- END RESPONSIVE MENU TOGGLER --> <!-- BEGIN TOP NAVIGATION MENU --> <div class="top-menu"> <ul class="nav navbar-nav pull-right"> <!-- BEGIN NOTIFICATION DROPDOWN --> <!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte --> <li class="dropdown dropdown-extended dropdown-notification" id="header_notification_bar"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true"> <i class="icon-bell"></i> <span class="badge badge-default"> 7 </span> </a> <ul class="dropdown-menu"> <li class="external"> <h3> <span class="bold">12 pending</span> notifications</h3> <a href="page_user_profile_1.html">view all</a> </li> <li> <ul class="dropdown-menu-list scroller" style="height: 250px;" data-handle-color="#637283"> <li> <a href="javascript:;"> <span class="time">just now</span> <span class="details"> <span class="label label-sm label-icon label-success"> <i class="fa fa-plus"></i> </span> New user registered. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">3 mins</span> <span class="details"> <span class="label label-sm label-icon label-danger"> <i class="fa fa-bolt"></i> </span> Server #12 overloaded. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">10 mins</span> <span class="details"> <span class="label label-sm label-icon label-warning"> <i class="fa fa-bell-o"></i> </span> Server #2 not responding. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">14 hrs</span> <span class="details"> <span class="label label-sm label-icon label-info"> <i class="fa fa-bullhorn"></i> </span> Application error. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">2 days</span> <span class="details"> <span class="label label-sm label-icon label-danger"> <i class="fa fa-bolt"></i> </span> Database overloaded 68%. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">3 days</span> <span class="details"> <span class="label label-sm label-icon label-danger"> <i class="fa fa-bolt"></i> </span> A user IP blocked. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">4 days</span> <span class="details"> <span class="label label-sm label-icon label-warning"> <i class="fa fa-bell-o"></i> </span> Storage Server #4 not responding dfdfdfd. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">5 days</span> <span class="details"> <span class="label label-sm label-icon label-info"> <i class="fa fa-bullhorn"></i> </span> System Error. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">9 days</span> <span class="details"> <span class="label label-sm label-icon label-danger"> <i class="fa fa-bolt"></i> </span> Storage server failed. </span> </a> </li> </ul> </li> </ul> </li> <!-- END NOTIFICATION DROPDOWN --> <!-- BEGIN INBOX DROPDOWN --> <!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte --> <li class="dropdown dropdown-extended dropdown-inbox" id="header_inbox_bar"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true"> <i class="icon-envelope-open"></i> <span class="badge badge-default"> 4 </span> </a> <ul class="dropdown-menu"> <li class="external"> <h3>You have <span class="bold">7 New</span> Messages</h3> <a href="app_inbox.html">view all</a> </li> <li> <ul class="dropdown-menu-list scroller" style="height: 275px;" data-handle-color="#637283"> <li> <a href="#"> <span class="photo"> <img src="../assets/layouts/layout3/img/avatar2.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Lisa Wong </span> <span class="time">Just Now </span> </span> <span class="message"> Vivamus sed auctor nibh congue nibh. auctor nibh auctor nibh... </span> </a> </li> <li> <a href="#"> <span class="photo"> <img src="../assets/layouts/layout3/img/avatar3.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Richard Doe </span> <span class="time">16 mins </span> </span> <span class="message"> Vivamus sed congue nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span> </a> </li> <li> <a href="#"> <span class="photo"> <img src="../assets/layouts/layout3/img/avatar1.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Bob Nilson </span> <span class="time">2 hrs </span> </span> <span class="message"> Vivamus sed nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span> </a> </li> <li> <a href="#"> <span class="photo"> <img src="../assets/layouts/layout3/img/avatar2.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Lisa Wong </span> <span class="time">40 mins </span> </span> <span class="message"> Vivamus sed auctor 40% nibh congue nibh... </span> </a> </li> <li> <a href="#"> <span class="photo"> <img src="../assets/layouts/layout3/img/avatar3.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Richard Doe </span> <span class="time">46 mins </span> </span> <span class="message"> Vivamus sed congue nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span> </a> </li> </ul> </li> </ul> </li> <!-- END INBOX DROPDOWN --> <!-- BEGIN TODO DROPDOWN --> <!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte --> <li class="dropdown dropdown-extended dropdown-tasks" id="header_task_bar"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true"> <i class="icon-calendar"></i> <span class="badge badge-default"> 3 </span> </a> <ul class="dropdown-menu extended tasks"> <li class="external"> <h3>You have <span class="bold">12 pending</span> tasks</h3> <a href="app_todo.html">view all</a> </li> <li> <ul class="dropdown-menu-list scroller" style="height: 275px;" data-handle-color="#637283"> <li> <a href="javascript:;"> <span class="task"> <span class="desc">New release v1.2 </span> <span class="percent">30%</span> </span> <span class="progress"> <span style="width: 40%;" class="progress-bar progress-bar-success" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">40% Complete</span> </span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">Application deployment</span> <span class="percent">65%</span> </span> <span class="progress"> <span style="width: 65%;" class="progress-bar progress-bar-danger" aria-valuenow="65" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">65% Complete</span> </span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">Mobile app release</span> <span class="percent">98%</span> </span> <span class="progress"> <span style="width: 98%;" class="progress-bar progress-bar-success" aria-valuenow="98" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">98% Complete</span> </span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">Database migration</span> <span class="percent">10%</span> </span> <span class="progress"> <span style="width: 10%;" class="progress-bar progress-bar-warning" aria-valuenow="10" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">10% Complete</span> </span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">Web server upgrade</span> <span class="percent">58%</span> </span> <span class="progress"> <span style="width: 58%;" class="progress-bar progress-bar-info" aria-valuenow="58" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">58% Complete</span> </span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">Mobile development</span> <span class="percent">85%</span> </span> <span class="progress"> <span style="width: 85%;" class="progress-bar progress-bar-success" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">85% Complete</span> </span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">New UI release</span> <span class="percent">38%</span> </span> <span class="progress progress-striped"> <span style="width: 38%;" class="progress-bar progress-bar-important" aria-valuenow="18" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">38% Complete</span> </span> </span> </a> </li> </ul> </li> </ul> </li> <!-- END TODO DROPDOWN --> <!-- BEGIN USER LOGIN DROPDOWN --> <!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte --> <li class="dropdown dropdown-user"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true"> <img alt="" class="img-circle" src="../assets/layouts/layout/img/avatar3_small.jpg" /> <span class="username username-hide-on-mobile"> Nick </span> <i class="fa fa-angle-down"></i> </a> <ul class="dropdown-menu dropdown-menu-default"> <li> <a href="page_user_profile_1.html"> <i class="icon-user"></i> My Profile </a> </li> <li> <a href="app_calendar.html"> <i class="icon-calendar"></i> My Calendar </a> </li> <li> <a href="app_inbox.html"> <i class="icon-envelope-open"></i> My Inbox <span class="badge badge-danger"> 3 </span> </a> </li> <li> <a href="app_todo.html"> <i class="icon-rocket"></i> My Tasks <span class="badge badge-success"> 7 </span> </a> </li> <li class="divider"> </li> <li> <a href="page_user_lock_1.html"> <i class="icon-lock"></i> Lock Screen </a> </li> <li> <a href="page_user_login_1.html"> <i class="icon-key"></i> Log Out </a> </li> </ul> </li> <!-- END USER LOGIN DROPDOWN --> <!-- BEGIN QUICK SIDEBAR TOGGLER --> <!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte --> <li class="dropdown dropdown-quick-sidebar-toggler"> <a href="javascript:;" class="dropdown-toggle"> <i class="icon-logout"></i> </a> </li> <!-- END QUICK SIDEBAR TOGGLER --> </ul> </div> <!-- END TOP NAVIGATION MENU --> </div> <!-- END HEADER INNER --> </div> <!-- END HEADER --> <!-- BEGIN HEADER & CONTENT DIVIDER --> <div class="clearfix"> </div> <!-- END HEADER & CONTENT DIVIDER --> <!-- BEGIN CONTAINER --> <div class="page-container"> <!-- BEGIN SIDEBAR --> <div class="page-sidebar-wrapper"> <!-- BEGIN SIDEBAR --> <!-- DOC: Set data-auto-scroll="false" to disable the sidebar from auto scrolling/focusing --> <!-- DOC: Change data-auto-speed="200" to adjust the sub menu slide up/down speed --> <div class="page-sidebar navbar-collapse collapse"> <!-- BEGIN SIDEBAR MENU --> <!-- DOC: Apply "page-sidebar-menu-light" class right after "page-sidebar-menu" to enable light sidebar menu style(without borders) --> <!-- DOC: Apply "page-sidebar-menu-hover-submenu" class right after "page-sidebar-menu" to enable hoverable(hover vs accordion) sub menu mode --> <!-- DOC: Apply "page-sidebar-menu-closed" class right after "page-sidebar-menu" to collapse("page-sidebar-closed" class must be applied to the body element) the sidebar sub menu mode --> <!-- DOC: Set data-auto-scroll="false" to disable the sidebar from auto scrolling/focusing --> <!-- DOC: Set data-keep-expand="true" to keep the submenues expanded --> <!-- DOC: Set data-auto-speed="200" to adjust the sub menu slide up/down speed --> <ul class="page-sidebar-menu page-header-fixed " data-keep-expanded="false" data-auto-scroll="true" data-slide-speed="200" style="padding-top: 20px"> <!-- DOC: To remove the sidebar toggler from the sidebar you just need to completely remove the below "sidebar-toggler-wrapper" LI element --> <li class="sidebar-toggler-wrapper hide"> <!-- BEGIN SIDEBAR TOGGLER BUTTON --> <div class="sidebar-toggler"> </div> <!-- END SIDEBAR TOGGLER BUTTON --> </li> <!-- DOC: To remove the search box from the sidebar you just need to completely remove the below "sidebar-search-wrapper" LI element --> <li class="sidebar-search-wrapper"> <!-- BEGIN RESPONSIVE QUICK SEARCH FORM --> <!-- DOC: Apply "sidebar-search-bordered" class the below search form to have bordered search box --> <!-- DOC: Apply "sidebar-search-bordered sidebar-search-solid" class the below search form to have bordered & solid search box --> <form class="sidebar-search " action="page_general_search_3.html" method="POST"> <a href="javascript:;" class="remove"> <i class="icon-close"></i> </a> <div class="input-group"> <input type="text" class="form-control" placeholder="Search..."> <span class="input-group-btn"> <a href="javascript:;" class="btn submit"> <i class="icon-magnifier"></i> </a> </span> </div> </form> <!-- END RESPONSIVE QUICK SEARCH FORM --> </li> <li class="nav-item start "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-home"></i> <span class="title">Dashboard</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item start "> <a href="index.html" class="nav-link "> <i class="icon-bar-chart"></i> <span class="title">Dashboard 1</span> </a> </li> <li class="nav-item start "> <a href="dashboard_2.html" class="nav-link "> <i class="icon-bulb"></i> <span class="title">Dashboard 2</span> <span class="badge badge-success">1</span> </a> </li> <li class="nav-item start "> <a href="dashboard_3.html" class="nav-link "> <i class="icon-graph"></i> <span class="title">Dashboard 3</span> <span class="badge badge-danger">5</span> </a> </li> </ul> </li> <li class="heading"> <h3 class="uppercase">Features</h3> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-diamond"></i> <span class="title">UI Features</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="ui_colors.html" class="nav-link "> <span class="title">Color Library</span> </a> </li> <li class="nav-item "> <a href="ui_general.html" class="nav-link "> <span class="title">General Components</span> </a> </li> <li class="nav-item "> <a href="ui_buttons.html" class="nav-link "> <span class="title">Buttons</span> </a> </li> <li class="nav-item "> <a href="ui_confirmations.html" class="nav-link "> <span class="title">Popover Confirmations</span> </a> </li> <li class="nav-item "> <a href="ui_icons.html" class="nav-link "> <span class="title">Font Icons</span> </a> </li> <li class="nav-item "> <a href="ui_socicons.html" class="nav-link "> <span class="title">Social Icons</span> </a> </li> <li class="nav-item "> <a href="ui_typography.html" class="nav-link "> <span class="title">Typography</span> </a> </li> <li class="nav-item "> <a href="ui_tabs_accordions_navs.html" class="nav-link "> <span class="title">Tabs, Accordions & Navs</span> </a> </li> <li class="nav-item "> <a href="ui_timeline.html" class="nav-link "> <span class="title">Timeline</span> </a> </li> <li class="nav-item "> <a href="ui_tree.html" class="nav-link "> <span class="title">Tree View</span> </a> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <span class="title">Page Progress Bar</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="ui_page_progress_style_1.html" class="nav-link "> Flash </a> </li> <li class="nav-item "> <a href="ui_page_progress_style_2.html" class="nav-link "> Big Counter </a> </li> </ul> </li> <li class="nav-item "> <a href="ui_blockui.html" class="nav-link "> <span class="title">Block UI</span> </a> </li> <li class="nav-item "> <a href="ui_bootstrap_growl.html" class="nav-link "> <span class="title">Bootstrap Growl Notifications</span> </a> </li> <li class="nav-item "> <a href="ui_notific8.html" class="nav-link "> <span class="title">Notific8 Notifications</span> </a> </li> <li class="nav-item "> <a href="ui_toastr.html" class="nav-link "> <span class="title">Toastr Notifications</span> </a> </li> <li class="nav-item "> <a href="ui_bootbox.html" class="nav-link "> <span class="title">Bootbox Dialogs</span> </a> </li> <li class="nav-item "> <a href="ui_alerts_api.html" class="nav-link "> <span class="title">Metronic Alerts API</span> </a> </li> <li class="nav-item "> <a href="ui_session_timeout.html" class="nav-link "> <span class="title">Session Timeout</span> </a> </li> <li class="nav-item "> <a href="ui_idle_timeout.html" class="nav-link "> <span class="title">User Idle Timeout</span> </a> </li> <li class="nav-item "> <a href="ui_modals.html" class="nav-link "> <span class="title">Modals</span> </a> </li> <li class="nav-item "> <a href="ui_extended_modals.html" class="nav-link "> <span class="title">Extended Modals</span> </a> </li> <li class="nav-item "> <a href="ui_tiles.html" class="nav-link "> <span class="title">Tiles</span> </a> </li> <li class="nav-item "> <a href="ui_datepaginator.html" class="nav-link "> <span class="title">Date Paginator</span> </a> </li> <li class="nav-item "> <a href="ui_nestable.html" class="nav-link "> <span class="title">Nestable List</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-puzzle"></i> <span class="title">Components</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="components_date_time_pickers.html" class="nav-link "> <span class="title">Date & Time Pickers</span> </a> </li> <li class="nav-item "> <a href="components_color_pickers.html" class="nav-link "> <span class="title">Color Pickers</span> <span class="badge badge-danger">2</span> </a> </li> <li class="nav-item "> <a href="components_select2.html" class="nav-link "> <span class="title">Select2 Dropdowns</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_select.html" class="nav-link "> <span class="title">Bootstrap Select</span> </a> </li> <li class="nav-item "> <a href="components_multi_select.html" class="nav-link "> <span class="title">Multi Select</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_select_splitter.html" class="nav-link "> <span class="title">Select Splitter</span> </a> </li> <li class="nav-item "> <a href="components_typeahead.html" class="nav-link "> <span class="title">Typeahead Autocomplete</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_tagsinput.html" class="nav-link "> <span class="title">Bootstrap Tagsinput</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_switch.html" class="nav-link "> <span class="title">Bootstrap Switch</span> <span class="badge badge-success">6</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_maxlength.html" class="nav-link "> <span class="title">Bootstrap Maxlength</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_fileinput.html" class="nav-link "> <span class="title">Bootstrap File Input</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_touchspin.html" class="nav-link "> <span class="title">Bootstrap Touchspin</span> </a> </li> <li class="nav-item "> <a href="components_form_tools.html" class="nav-link "> <span class="title">Form Widgets & Tools</span> </a> </li> <li class="nav-item "> <a href="components_context_menu.html" class="nav-link "> <span class="title">Context Menu</span> </a> </li> <li class="nav-item "> <a href="components_editors.html" class="nav-link "> <span class="title">Markdown & WYSIWYG Editors</span> </a> </li> <li class="nav-item "> <a href="components_code_editors.html" class="nav-link "> <span class="title">Code Editors</span> </a> </li> <li class="nav-item "> <a href="components_ion_sliders.html" class="nav-link "> <span class="title">Ion Range Sliders</span> </a> </li> <li class="nav-item "> <a href="components_noui_sliders.html" class="nav-link "> <span class="title">NoUI Range Sliders</span> </a> </li> <li class="nav-item "> <a href="components_knob_dials.html" class="nav-link "> <span class="title">Knob Circle Dials</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-settings"></i> <span class="title">Form Stuff</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="form_controls.html" class="nav-link "> <span class="title">Bootstrap Form <br>Controls</span> </a> </li> <li class="nav-item "> <a href="form_controls_md.html" class="nav-link "> <span class="title">Material Design <br>Form Controls</span> </a> </li> <li class="nav-item "> <a href="form_validation.html" class="nav-link "> <span class="title">Form Validation</span> </a> </li> <li class="nav-item "> <a href="form_validation_states_md.html" class="nav-link "> <span class="title">Material Design <br>Form Validation States</span> </a> </li> <li class="nav-item "> <a href="form_validation_md.html" class="nav-link "> <span class="title">Material Design <br>Form Validation</span> </a> </li> <li class="nav-item "> <a href="form_layouts.html" class="nav-link "> <span class="title">Form Layouts</span> </a> </li> <li class="nav-item "> <a href="form_input_mask.html" class="nav-link "> <span class="title">Form Input Mask</span> </a> </li> <li class="nav-item "> <a href="form_editable.html" class="nav-link "> <span class="title">Form X-editable</span> </a> </li> <li class="nav-item "> <a href="form_wizard.html" class="nav-link "> <span class="title">Form Wizard</span> </a> </li> <li class="nav-item "> <a href="form_icheck.html" class="nav-link "> <span class="title">iCheck Controls</span> </a> </li> <li class="nav-item "> <a href="form_image_crop.html" class="nav-link "> <span class="title">Image Cropping</span> </a> </li> <li class="nav-item "> <a href="form_fileupload.html" class="nav-link "> <span class="title">Multiple File Upload</span> </a> </li> <li class="nav-item "> <a href="form_dropzone.html" class="nav-link "> <span class="title">Dropzone File Upload</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-bulb"></i> <span class="title">Elements</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="elements_steps.html" class="nav-link "> <span class="title">Steps</span> </a> </li> <li class="nav-item "> <a href="elements_lists.html" class="nav-link "> <span class="title">Lists</span> </a> </li> <li class="nav-item "> <a href="elements_ribbons.html" class="nav-link "> <span class="title">Ribbons</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-briefcase"></i> <span class="title">Tables</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <span class="title">Static Tables</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="table_static_basic.html" class="nav-link "> Basic Tables </a> </li> <li class="nav-item "> <a href="table_static_responsive.html" class="nav-link "> Responsive Tables </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <span class="title">Datatables</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="table_datatables_managed.html" class="nav-link "> Managed Datatables </a> </li> <li class="nav-item "> <a href="table_datatables_buttons.html" class="nav-link "> Buttons Extension </a> </li> <li class="nav-item "> <a href="table_datatables_colreorder.html" class="nav-link "> Colreorder Extension </a> </li> <li class="nav-item "> <a href="table_datatables_rowreorder.html" class="nav-link "> Rowreorder Extension </a> </li> <li class="nav-item "> <a href="table_datatables_scroller.html" class="nav-link "> Scroller Extension </a> </li> <li class="nav-item "> <a href="table_datatables_fixedheader.html" class="nav-link "> FixedHeader Extension </a> </li> <li class="nav-item "> <a href="table_datatables_responsive.html" class="nav-link "> Responsive Extension </a> </li> <li class="nav-item "> <a href="table_datatables_editable.html" class="nav-link "> Editable Datatables </a> </li> <li class="nav-item "> <a href="table_datatables_ajax.html" class="nav-link "> Ajax Datatables </a> </li> </ul> </li> </ul> </li> <li class="nav-item "> <a href="?p=" class="nav-link nav-toggle"> <i class="icon-wallet"></i> <span class="title">Portlets</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="portlet_boxed.html" class="nav-link "> <span class="title">Boxed Portlets</span> </a> </li> <li class="nav-item "> <a href="portlet_light.html" class="nav-link "> <span class="title">Light Portlets</span> </a> </li> <li class="nav-item "> <a href="portlet_solid.html" class="nav-link "> <span class="title">Solid Portlets</span> </a> </li> <li class="nav-item "> <a href="portlet_ajax.html" class="nav-link "> <span class="title">Ajax Portlets</span> </a> </li> <li class="nav-item "> <a href="portlet_draggable.html" class="nav-link "> <span class="title">Draggable Portlets</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-bar-chart"></i> <span class="title">Charts</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="charts_amcharts.html" class="nav-link "> <span class="title">amChart</span> </a> </li> <li class="nav-item "> <a href="charts_flotcharts.html" class="nav-link "> <span class="title">Flot Charts</span> </a> </li> <li class="nav-item "> <a href="charts_flowchart.html" class="nav-link "> <span class="title">Flow Charts</span> </a> </li> <li class="nav-item "> <a href="charts_google.html" class="nav-link "> <span class="title">Google Charts</span> </a> </li> <li class="nav-item "> <a href="charts_echarts.html" class="nav-link "> <span class="title">eCharts</span> </a> </li> <li class="nav-item "> <a href="charts_morris.html" class="nav-link "> <span class="title">Morris Charts</span> </a> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <span class="title">HighCharts</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="charts_highcharts.html" class="nav-link "> HighCharts </a> </li> <li class="nav-item "> <a href="charts_highstock.html" class="nav-link "> HighStock </a> </li> <li class="nav-item "> <a href="charts_highmaps.html" class="nav-link "> HighMaps </a> </li> </ul> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-pointer"></i> <span class="title">Maps</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="maps_google.html" class="nav-link "> <span class="title">Google Maps</span> </a> </li> <li class="nav-item "> <a href="maps_vector.html" class="nav-link "> <span class="title">Vector Maps</span> </a> </li> </ul> </li> <li class="heading"> <h3 class="uppercase">Layouts</h3> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-layers"></i> <span class="title">Page Layouts</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="layout_classic_page_head.html" class="nav-link "> <span class="title">Classic Page Head</span> </a> </li> <li class="nav-item "> <a href="layout_light_page_head.html" class="nav-link "> <span class="title">Light Page Head</span> </a> </li> <li class="nav-item "> <a href="layout_content_grey.html" class="nav-link "> <span class="title">Grey Bg Content</span> </a> </li> <li class="nav-item "> <a href="layout_search_on_header_1.html" class="nav-link "> <span class="title">Search Box On Header 1</span> </a> </li> <li class="nav-item "> <a href="layout_search_on_header_2.html" class="nav-link "> <span class="title">Search Box On Header 2</span> </a> </li> <li class="nav-item "> <a href="layout_language_bar.html" class="nav-link "> <span class="title">Header Language Bar</span> </a> </li> <li class="nav-item "> <a href="layout_footer_fixed.html" class="nav-link "> <span class="title">Fixed Footer</span> </a> </li> <li class="nav-item "> <a href="layout_boxed_page.html" class="nav-link "> <span class="title">Boxed Page</span> </a> </li> <li class="nav-item "> <a href="layout_blank_page.html" class="nav-link "> <span class="title">Blank Page</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-feed"></i> <span class="title">Sidebar Layouts</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="layout_sidebar_menu_light.html" class="nav-link "> <span class="title">Light Sidebar Menu</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_menu_hover.html" class="nav-link "> <span class="title">Hover Sidebar Menu</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_search_1.html" class="nav-link "> <span class="title">Sidebar Search Option 1</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_search_2.html" class="nav-link "> <span class="title">Sidebar Search Option 2</span> </a> </li> <li class="nav-item "> <a href="layout_toggler_on_sidebar.html" class="nav-link "> <span class="title">Sidebar Toggler On Sidebar</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_reversed.html" class="nav-link "> <span class="title">Reversed Sidebar Page</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_fixed.html" class="nav-link "> <span class="title">Fixed Sidebar Layout</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_closed.html" class="nav-link "> <span class="title">Closed Sidebar Layout</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-paper-plane"></i> <span class="title">Horizontal Menu</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="layout_mega_menu_light.html" class="nav-link "> <span class="title">Light Mega Menu</span> </a> </li> <li class="nav-item "> <a href="layout_mega_menu_dark.html" class="nav-link "> <span class="title">Dark Mega Menu</span> </a> </li> <li class="nav-item "> <a href="layout_full_width.html" class="nav-link "> <span class="title">Full Width Layout</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class=" icon-wrench"></i> <span class="title">Custom Layouts</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="layout_disabled_menu.html" class="nav-link "> <span class="title">Disabled Menu Links</span> </a> </li> <li class="nav-item "> <a href="layout_full_height_portlet.html" class="nav-link "> <span class="title">Full Height Portlet</span> </a> </li> <li class="nav-item "> <a href="layout_full_height_content.html" class="nav-link "> <span class="title">Full Height Content</span> </a> </li> </ul> </li> <li class="heading"> <h3 class="uppercase">Pages</h3> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-basket"></i> <span class="title">eCommerce</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="ecommerce_index.html" class="nav-link "> <i class="icon-home"></i> <span class="title">Dashboard</span> </a> </li> <li class="nav-item "> <a href="ecommerce_orders.html" class="nav-link "> <i class="icon-basket"></i> <span class="title">Orders</span> </a> </li> <li class="nav-item "> <a href="ecommerce_orders_view.html" class="nav-link "> <i class="icon-tag"></i> <span class="title">Order View</span> </a> </li> <li class="nav-item "> <a href="ecommerce_products.html" class="nav-link "> <i class="icon-graph"></i> <span class="title">Products</span> </a> </li> <li class="nav-item "> <a href="ecommerce_products_edit.html" class="nav-link "> <i class="icon-graph"></i> <span class="title">Product Edit</span> </a> </li> </ul> </li> <li class="nav-item active open"> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-docs"></i> <span class="title">Apps</span> <span class="selected"></span> <span class="arrow open"></span> </a> <ul class="sub-menu"> <li class="nav-item active open"> <a href="app_todo.html" class="nav-link "> <i class="icon-clock"></i> <span class="title">Todo 1</span> <span class="selected"></span> </a> </li> <li class="nav-item "> <a href="app_todo_2.html" class="nav-link "> <i class="icon-check"></i> <span class="title">Todo 2</span> </a> </li> <li class="nav-item "> <a href="app_inbox.html" class="nav-link "> <i class="icon-envelope"></i> <span class="title">Inbox</span> </a> </li> <li class="nav-item "> <a href="app_calendar.html" class="nav-link "> <i class="icon-calendar"></i> <span class="title">Calendar</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-user"></i> <span class="title">User</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_user_profile_1.html" class="nav-link "> <i class="icon-user"></i> <span class="title">Profile 1</span> </a> </li> <li class="nav-item "> <a href="page_user_profile_1_account.html" class="nav-link "> <i class="icon-user-female"></i> <span class="title">Profile 1 Account</span> </a> </li> <li class="nav-item "> <a href="page_user_profile_1_help.html" class="nav-link "> <i class="icon-user-following"></i> <span class="title">Profile 1 Help</span> </a> </li> <li class="nav-item "> <a href="page_user_profile_2.html" class="nav-link "> <i class="icon-users"></i> <span class="title">Profile 2</span> </a> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-notebook"></i> <span class="title">Login</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_user_login_1.html" class="nav-link " target="_blank"> Login Page 1 </a> </li> <li class="nav-item "> <a href="page_user_login_2.html" class="nav-link " target="_blank"> Login Page 2 </a> </li> <li class="nav-item "> <a href="page_user_login_3.html" class="nav-link " target="_blank"> Login Page 3 </a> </li> <li class="nav-item "> <a href="page_user_login_4.html" class="nav-link " target="_blank"> Login Page 4 </a> </li> <li class="nav-item "> <a href="page_user_login_5.html" class="nav-link " target="_blank"> Login Page 5 </a> </li> <li class="nav-item "> <a href="page_user_login_6.html" class="nav-link " target="_blank"> Login Page 6 </a> </li> </ul> </li> <li class="nav-item "> <a href="page_user_lock_1.html" class="nav-link " target="_blank"> <i class="icon-lock"></i> <span class="title">Lock Screen 1</span> </a> </li> <li class="nav-item "> <a href="page_user_lock_2.html" class="nav-link " target="_blank"> <i class="icon-lock-open"></i> <span class="title">Lock Screen 2</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-social-dribbble"></i> <span class="title">General</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_general_about.html" class="nav-link "> <i class="icon-info"></i> <span class="title">About</span> </a> </li> <li class="nav-item "> <a href="page_general_contact.html" class="nav-link "> <i class="icon-call-end"></i> <span class="title">Contact</span> </a> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-notebook"></i> <span class="title">Portfolio</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_general_portfolio_1.html" class="nav-link "> Portfolio 1 </a> </li> <li class="nav-item "> <a href="page_general_portfolio_2.html" class="nav-link "> Portfolio 2 </a> </li> <li class="nav-item "> <a href="page_general_portfolio_3.html" class="nav-link "> Portfolio 3 </a> </li> <li class="nav-item "> <a href="page_general_portfolio_4.html" class="nav-link "> Portfolio 4 </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-magnifier"></i> <span class="title">Search</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_general_search.html" class="nav-link "> Search 1 </a> </li> <li class="nav-item "> <a href="page_general_search_2.html" class="nav-link "> Search 2 </a> </li> <li class="nav-item "> <a href="page_general_search_3.html" class="nav-link "> Search 3 </a> </li> <li class="nav-item "> <a href="page_general_search_4.html" class="nav-link "> Search 4 </a> </li> <li class="nav-item "> <a href="page_general_search_5.html" class="nav-link "> Search 5 </a> </li> </ul> </li> <li class="nav-item "> <a href="page_general_pricing.html" class="nav-link "> <i class="icon-tag"></i> <span class="title">Pricing</span> </a> </li> <li class="nav-item "> <a href="page_general_faq.html" class="nav-link "> <i class="icon-wrench"></i> <span class="title">FAQ</span> </a> </li> <li class="nav-item "> <a href="page_general_blog.html" class="nav-link "> <i class="icon-pencil"></i> <span class="title">Blog</span> </a> </li> <li class="nav-item "> <a href="page_general_blog_post.html" class="nav-link "> <i class="icon-note"></i> <span class="title">Blog Post</span> </a> </li> <li class="nav-item "> <a href="page_general_invoice.html" class="nav-link "> <i class="icon-envelope"></i> <span class="title">Invoice</span> </a> </li> <li class="nav-item "> <a href="page_general_invoice_2.html" class="nav-link "> <i class="icon-envelope"></i> <span class="title">Invoice 2</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-settings"></i> <span class="title">System</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_system_coming_soon.html" class="nav-link " target="_blank"> <span class="title">Coming Soon</span> </a> </li> <li class="nav-item "> <a href="page_system_404_1.html" class="nav-link "> <span class="title">404 Page 1</span> </a> </li> <li class="nav-item "> <a href="page_system_404_2.html" class="nav-link " target="_blank"> <span class="title">404 Page 2</span> </a> </li> <li class="nav-item "> <a href="page_system_404_3.html" class="nav-link " target="_blank"> <span class="title">404 Page 3</span> </a> </li> <li class="nav-item "> <a href="page_system_500_1.html" class="nav-link "> <span class="title">500 Page 1</span> </a> </li> <li class="nav-item "> <a href="page_system_500_2.html" class="nav-link " target="_blank"> <span class="title">500 Page 2</span> </a> </li> </ul> </li> <li class="nav-item"> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-folder"></i> <span class="title">Multi Level Menu</span> <span class="arrow "></span> </a> <ul class="sub-menu"> <li class="nav-item"> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-settings"></i> Item 1 <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item"> <a href="javascript:;" target="_blank" class="nav-link"> <i class="icon-user"></i> Arrow Toggle <span class="arrow nav-toggle"></span> </a> <ul class="sub-menu"> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-power"></i> Sample Link 1</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-paper-plane"></i> Sample Link 1</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-star"></i> Sample Link 1</a> </li> </ul> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-camera"></i> Sample Link 1</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-link"></i> Sample Link 2</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-pointer"></i> Sample Link 3</a> </li> </ul> </li> <li class="nav-item"> <a href="javascript:;" target="_blank" class="nav-link"> <i class="icon-globe"></i> Arrow Toggle <span class="arrow nav-toggle"></span> </a> <ul class="sub-menu"> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-tag"></i> Sample Link 1</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-pencil"></i> Sample Link 1</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-graph"></i> Sample Link 1</a> </li> </ul> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-bar-chart"></i> Item 3 </a> </li> </ul> </li> </ul> <!-- END SIDEBAR MENU --> <!-- END SIDEBAR MENU --> </div> <!-- END SIDEBAR --> </div> <!-- END SIDEBAR --> <!-- BEGIN CONTENT --> <div class="page-content-wrapper"> <!-- BEGIN CONTENT BODY --> <div class="page-content"> <!-- BEGIN PAGE HEADER--> <!-- BEGIN THEME PANEL --> <div class="theme-panel hidden-xs hidden-sm"> <div class="toggler"> </div> <div class="toggler-close"> </div> <div class="theme-options"> <div class="theme-option theme-colors clearfix"> <span> THEME COLOR </span> <ul> <li class="color-default current tooltips" data-style="default" data-container="body" data-original-title="Default"> </li> <li class="color-darkblue tooltips" data-style="darkblue" data-container="body" data-original-title="Dark Blue"> </li> <li class="color-blue tooltips" data-style="blue" data-container="body" data-original-title="Blue"> </li> <li class="color-grey tooltips" data-style="grey" data-container="body" data-original-title="Grey"> </li> <li class="color-light tooltips" data-style="light" data-container="body" data-original-title="Light"> </li> <li class="color-light2 tooltips" data-style="light2" data-container="body" data-html="true" data-original-title="Light 2"> </li> </ul> </div> <div class="theme-option"> <span> Theme Style </span> <select class="layout-style-option form-control input-sm"> <option value="square" selected="selected">Square corners</option> <option value="rounded">Rounded corners</option> </select> </div> <div class="theme-option"> <span> Layout </span> <select class="layout-option form-control input-sm"> <option value="fluid" selected="selected">Fluid</option> <option value="boxed">Boxed</option> </select> </div> <div class="theme-option"> <span> Header </span> <select class="page-header-option form-control input-sm"> <option value="fixed" selected="selected">Fixed</option> <option value="default">Default</option> </select> </div> <div class="theme-option"> <span> Top Menu Dropdown</span> <select class="page-header-top-dropdown-style-option form-control input-sm"> <option value="light" selected="selected">Light</option> <option value="dark">Dark</option> </select> </div> <div class="theme-option"> <span> Sidebar Mode</span> <select class="sidebar-option form-control input-sm"> <option value="fixed">Fixed</option> <option value="default" selected="selected">Default</option> </select> </div> <div class="theme-option"> <span> Sidebar Menu </span> <select class="sidebar-menu-option form-control input-sm"> <option value="accordion" selected="selected">Accordion</option> <option value="hover">Hover</option> </select> </div> <div class="theme-option"> <span> Sidebar Style </span> <select class="sidebar-style-option form-control input-sm"> <option value="default" selected="selected">Default</option> <option value="light">Light</option> </select> </div> <div class="theme-option"> <span> Sidebar Position </span> <select class="sidebar-pos-option form-control input-sm"> <option value="left" selected="selected">Left</option> <option value="right">Right</option> </select> </div> <div class="theme-option"> <span> Footer </span> <select class="page-footer-option form-control input-sm"> <option value="fixed">Fixed</option> <option value="default" selected="selected">Default</option> </select> </div> </div> </div> <!-- END THEME PANEL --> <!-- END PAGE HEADER--> <div class="todo-main-header"> <h3>ToDo App</h3> <ul class="todo-breadcrumb"> <li> <a href="javascrip:;">Home</a> </li> <li> <a href="javascrip:;">Extra</a> </li> <li> <a class="todo-active" href="javascrip:;">Todo</a> </li> </ul> </div> <div class="todo-container"> <div class="row"> <div class="col-md-5"> <ul class="todo-projects-container"> <li class="todo-padding-b-0"> <div class="todo-head"> <button class="btn btn-square btn-sm green todo-bold">Add Project</button> <h3>Projects</h3> <p>4 Waiting Attention</p> </div> </li> <li class="todo-projects-item"> <h3>Metronic Admin Reborn</h3> <p>Lorem dolor sit amet ipsum dolor sit consectetuer dolore. Lorem dolor sit amet ipsum dolor sit consectetuer dolore.</p> <div class="todo-project-item-foot"> <p class="todo-red todo-inline">17 Tasks Remaining</p> <p class="todo-inline todo-float-r">16 Members <a class="todo-add-button" href="#todo-members-modal" data-toggle="modal">+</a> </p> </div> </li> <div class="todo-projects-divider"></div> <li class="todo-projects-item todo-active"> <h3 class="todo-blue">Williams Logistics CRM</h3> <p>Lorem dolor sit amet ipsum dolor sit consectetuer dolore. Lorem dolor sit amet ipsum dolor sit consectetuer dolore.</p> <div class="todo-project-item-foot"> <p class="todo-red todo-inline">43 Tasks Remaining</p> <p class="todo-inline todo-float-r">32 Members <a class="todo-add-button" href="#todo-members-modal" data-toggle="modal">+</a> </p> </div> </li> <div class="todo-projects-divider"></div> <li class="todo-projects-item"> <h3>Green Man & Van Tracking App</h3> <p>Lorem dolor sit amet ipsum dolor sit consectetuer dolore. Lorem dolor sit amet ipsum dolor sit consectetuer dolore.</p> <div class="todo-project-item-foot"> <p class="todo-red todo-inline">5 Tasks Remaining</p> <p class="todo-inline todo-float-r">9 Members <a class="todo-add-button" href="#todo-members-modal" data-toggle="modal">+</a> </p> </div> </li> <div class="todo-projects-divider"></div> <li class="todo-projects-item"> <h3>Wall Mart Customer Care</h3> <p>Lorem dolor sit amet ipsum dolor sit consectetuer dolore. Lorem dolor sit amet ipsum dolor sit consectetuer dolore.</p> <div class="todo-project-item-foot"> <p class="todo-red todo-inline">27 Tasks Remaining</p> <p class="todo-inline todo-float-r">54 Members <a class="todo-add-button" href="#todo-members-modal" data-toggle="modal">+</a> </p> </div> </li> <div class="todo-projects-divider"></div> <li class="todo-projects-item"> <h3>General Electric Website</h3> <p>Lorem dolor sit amet ipsum dolor sit consectetuer dolore. Lorem dolor sit amet ipsum dolor sit consectetuer dolore.</p> <div class="todo-project-item-foot"> <p class="todo-red todo-inline">11 Tasks Remaining</p> <p class="todo-inline todo-float-r">9 Members <a class="todo-add-button" href="#todo-members-modal" data-toggle="modal">+</a> </p> </div> </li> </ul> </div> <div class="col-md-7"> <div class="todo-tasks-container"> <div class="todo-head"> <button class="btn btn-square btn-sm red todo-bold" data-toggle="modal" href="#todo-task-modal">New Task</button> <h3> <span class="todo-grey">Task:</span> Williams Logistics CRM</h3> <p class="todo-inline">22 Members <a class="todo-add-button" href="#todo-members-modal" data-toggle="modal">+</a> </p> </div> <ul class="todo-tasks-content"> <li class="todo-tasks-item"> <h4 class="todo-inline"> <a data-toggle="modal" href="#todo-task-modal">Design for full featured ToDo Page with something</a> </h4> <p class="todo-inline todo-float-r">Bob, <span class="todo-red">TODAY</span> </p> </li> <li class="todo-tasks-item"> <h4 class="todo-inline"> <a data-toggle="modal" href="#todo-task-modal">Owl carousel pagination animation issue(clients logo, testimonials)</a> </h4> <p class="todo-inline todo-float-r">Shane, <span class="todo-red">TODAY</span> </p> </li> <li class="todo-tasks-item"> <h4 class="todo-inline"> <a data-toggle="modal" href="#todo-task-modal">Non fixed Home 2 header layout</a> </h4> <p class="todo-inline todo-float-r">Sean, <span class="todo-green">01 OCT</span> </p> </li> <li class="todo-tasks-item"> <h4 class="todo-inline"> <a data-toggle="modal" href="#todo-task-modal">Sample Images for Mega Menu Components Category</a> </h4> <p class="todo-inline todo-float-r">Shane, <span class="todo-green">03 OCT</span> </p> </li> <li class="todo-tasks-item"> <h4 class="todo-inline"> <a data-toggle="modal" href="#todo-task-modal">Browser & Device Compatibility</a> </h4> <p class="todo-inline todo-float-r">Bob, <span class="todo-green">07 OCT</span> </p> </li> <li class="todo-tasks-item"> <h4 class="todo-inline"> <a data-toggle="modal" href="#todo-task-modal">Sidebar Menu for Mobile</a> </h4> <p class="todo-inline todo-float-r">Alice, <span class="todo-green">08 OCT</span> </p> </li> <li class="todo-tasks-item"> <h4 class="todo-inline"> <a data-toggle="modal" href="#todo-task-modal">Sidebar Toggler optimization</a> </h4> <p class="todo-inline todo-float-r">Luke, <span class="todo-green">08 OCT</span> </p> </li> <li class="todo-tasks-item"> <h4 class="todo-inline"> <a data-toggle="modal" href="#todo-task-modal">Modals integration</a> </h4> <p class="todo-inline todo-float-r">John, <span class="todo-green">10 OCT</span> </p> </li> <li class="todo-tasks-item"> <h4 class="todo-inline"> <a data-toggle="modal" href="#todo-task-modal">Modals form functionality</a> </h4> <p class="todo-inline todo-float-r">Rudy, <span class="todo-green">12 OCT</span> </p> </li> <li class="todo-tasks-item"> <h4 class="todo-inline"> <a data-toggle="modal" href="#todo-task-modal">Responsive Optimization</a> </h4> <p class="todo-inline todo-float-r">Bob, <span class="todo-green">15 OCT</span> </p> </li> <li class="todo-tasks-item"> <h4 class="todo-inline"> <a data-toggle="modal" href="#todo-task-modal">Search and filter functionality testing</a> </h4> <p class="todo-inline todo-float-r">Hiro, <span class="todo-green">24 OCT</span> </p> </li> <li class="todo-tasks-item"> <h4 class="todo-inline"> <a data-toggle="modal" href="#todo-task-modal">User Acceptance Test Documentation</a> </h4> <p class="todo-inline todo-float-r">Kathy, <span class="todo-green">28 OCT</span> </p> </li> </ul> </div> </div> </div> </div> <div id="todo-task-modal" class="modal fade" role="dialog" aria-labelledby="myModalLabel10" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content scroller" style="height: 100%;" data-always-visible="1" data-rail-visible="0"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true"></button> <button class="btn btn-square btn-sm green todo-bold todo-inline">Complete Task</button> <p class="todo-task-modal-title todo-inline">Due: <input class="form-control input-inline input-medium date-picker todo-task-due todo-inline" size="16" type="text" value="10/01/2015" /> </p> <p class="todo-task-modal-title todo-inline">Assign: <a class="todo-inline todo-task-assign" href="#todo-members-modal" data-toggle="modal">Luke</a> </p> </div> <div class="modal-body todo-task-modal-body"> <h3 class="todo-task-modal-bg">Sample Images for Mega Menu Components Category</h3> <p class="todo-task-modal-bg"> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. <br> <br> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. <br> <br> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. </p> <h4>Attach File <a class="todo-add-button" href="javascrip:;">+</a> </h4> <p class="todo-task-file"> <i class="fa fa-file-o todo-grey"></i> menu_screen.jpg <i class="fa fa-times todo-remove-file"></i> </p> <p class="todo-task-file"> <i class="fa fa-file-o todo-grey"></i> comments.jpg <i class="fa fa-times todo-remove-file"></i> </p> </div> <!-- BEGIN PORTLET--> <div class="portlet light "> <div class="portlet-title"> <div class="caption"> <i class="icon-bubble font-red-sunglo"></i> <span class="caption-subject font-red-sunglo bold uppercase">Chats</span> </div> <div class="actions"> <div class="portlet-input input-inline"> <div class="input-icon right"> <i class="icon-magnifier"></i> <input type="text" class="form-control input-circle" placeholder="search..."> </div> </div> </div> </div> <div class="portlet-body" id="chats"> <div class="scroller" style="height: 525px;" data-always-visible="1" data-rail-visible1="1"> <ul class="chats"> <li class="out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" /> <div class="message"> <span class="arrow"> </span> <a href="javascript:;" class="name"> Lisa Wong </a> <span class="datetime"> at 20:11 </span> <span class="body"> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </span> </div> </li> <li class="out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" /> <div class="message"> <span class="arrow"> </span> <a href="javascript:;" class="name"> Lisa Wong </a> <span class="datetime"> at 20:11 </span> <span class="body"> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </span> </div> </li> <li class="in"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar1.jpg" /> <div class="message"> <span class="arrow"> </span> <a href="javascript:;" class="name"> Bob Nilson </a> <span class="datetime"> at 20:30 </span> <span class="body"> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </span> </div> </li> <li class="in"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar1.jpg" /> <div class="message"> <span class="arrow"> </span> <a href="javascript:;" class="name"> Bob Nilson </a> <span class="datetime"> at 20:30 </span> <span class="body"> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </span> </div> </li> <li class="out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"> </span> <a href="javascript:;" class="name"> Richard Doe </a> <span class="datetime"> at 20:33 </span> <span class="body"> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </span> </div> </li> <li class="in"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"> </span> <a href="javascript:;" class="name"> Richard Doe </a> <span class="datetime"> at 20:35 </span> <span class="body"> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </span> </div> </li> <li class="out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar1.jpg" /> <div class="message"> <span class="arrow"> </span> <a href="javascript:;" class="name"> Bob Nilson </a> <span class="datetime"> at 20:40 </span> <span class="body"> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </span> </div> </li> <li class="in"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"> </span> <a href="javascript:;" class="name"> Richard Doe </a> <span class="datetime"> at 20:40 </span> <span class="body"> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </span> </div> </li> <li class="out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar1.jpg" /> <div class="message"> <span class="arrow"> </span> <a href="javascript:;" class="name"> Bob Nilson </a> <span class="datetime"> at 20:54 </span> <span class="body"> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. sed diam nonummy nibh euismod tincidunt ut laoreet. </span> </div> </li> </ul> </div> <div class="chat-form"> <div class="input-cont"> <input class="form-control" type="text" placeholder="Type a message here..." /> </div> <div class="btn-cont"> <span class="arrow"> </span> <a href="" class="btn blue icn-only"> <i class="fa fa-check icon-white"></i> </a> </div> </div> </div> </div> <!-- END PORTLET--> <div class="modal-footer"> <button class="btn default" data-dismiss="modal" aria-hidden="true">Close</button> <button class="btn green" data-dismiss="modal">Submit</button> </div> </div> </div> </div> <div id="todo-members-modal" class="modal fade" role="dialog" aria-labelledby="myModalLabel10" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true"></button> <h4 class="modal-title">Select a Member</h4> </div> <div class="modal-body"> <form action="#" class="form-horizontal" role="form"> <div class="form-group"> <label class="control-label col-md-4">Selected Members</label> <div class="col-md-8"> <select id="select2_sample2" class="form-control select2 select-height" multiple> <optgroup label="Senior Developers"> <option>Rudy</option> <option>Shane</option> <option>Sean</option> </optgroup> <optgroup label="Technical Team"> <option>Kathy</option> <option>Luke</option> <option>John</option> <option>Darren</option> </optgroup> <optgroup label="Design Team"> <option>Bob</option> <option>Carolina</option> <option>Randy</option> <option>Michael</option> </optgroup> <optgroup label="Testers"> <option>Chris</option> <option>Louis</option> <option>Greg</option> <option>Ashe</option> </optgroup> </select> </div> </div> </form> </div> <div class="modal-footer"> <button class="btn default" data-dismiss="modal" aria-hidden="true">Close</button> <button class="btn green" data-dismiss="modal">Submit</button> </div> </div> </div> </div> </div> <!-- END CONTENT BODY --> </div> <!-- END CONTENT --> <!-- BEGIN QUICK SIDEBAR --> <a href="javascript:;" class="page-quick-sidebar-toggler"> <i class="icon-login"></i> </a> <div class="page-quick-sidebar-wrapper" data-close-on-body-click="false"> <div class="page-quick-sidebar"> <ul class="nav nav-tabs"> <li class="active"> <a href="javascript:;" data-target="#quick_sidebar_tab_1" data-toggle="tab"> Users <span class="badge badge-danger">2</span> </a> </li> <li> <a href="javascript:;" data-target="#quick_sidebar_tab_2" data-toggle="tab"> Alerts <span class="badge badge-success">7</span> </a> </li> <li class="dropdown"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown"> More <i class="fa fa-angle-down"></i> </a> <ul class="dropdown-menu pull-right"> <li> <a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab"> <i class="icon-bell"></i> Alerts </a> </li> <li> <a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab"> <i class="icon-info"></i> Notifications </a> </li> <li> <a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab"> <i class="icon-speech"></i> Activities </a> </li> <li class="divider"></li> <li> <a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab"> <i class="icon-settings"></i> Settings </a> </li> </ul> </li> </ul> <div class="tab-content"> <div class="tab-pane active page-quick-sidebar-chat" id="quick_sidebar_tab_1"> <div class="page-quick-sidebar-chat-users" data-rail-color="#ddd" data-wrapper-class="page-quick-sidebar-list"> <h3 class="list-heading">Staff</h3> <ul class="media-list list-items"> <li class="media"> <div class="media-status"> <span class="badge badge-success">8</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar3.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Bob Nilson</h4> <div class="media-heading-sub"> Project Manager </div> </div> </li> <li class="media"> <img class="media-object" src="../assets/layouts/layout/img/avatar1.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Nick Larson</h4> <div class="media-heading-sub"> Art Director </div> </div> </li> <li class="media"> <div class="media-status"> <span class="badge badge-danger">3</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar4.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Deon Hubert</h4> <div class="media-heading-sub"> CTO </div> </div> </li> <li class="media"> <img class="media-object" src="../assets/layouts/layout/img/avatar2.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Ella Wong</h4> <div class="media-heading-sub"> CEO </div> </div> </li> </ul> <h3 class="list-heading">Customers</h3> <ul class="media-list list-items"> <li class="media"> <div class="media-status"> <span class="badge badge-warning">2</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar6.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Lara Kunis</h4> <div class="media-heading-sub"> CEO, Loop Inc </div> <div class="media-heading-small"> Last seen 03:10 AM </div> </div> </li> <li class="media"> <div class="media-status"> <span class="label label-sm label-success">new</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar7.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Ernie Kyllonen</h4> <div class="media-heading-sub"> Project Manager, <br> SmartBizz PTL </div> </div> </li> <li class="media"> <img class="media-object" src="../assets/layouts/layout/img/avatar8.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Lisa Stone</h4> <div class="media-heading-sub"> CTO, Keort Inc </div> <div class="media-heading-small"> Last seen 13:10 PM </div> </div> </li> <li class="media"> <div class="media-status"> <span class="badge badge-success">7</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar9.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Deon Portalatin</h4> <div class="media-heading-sub"> CFO, H&D LTD </div> </div> </li> <li class="media"> <img class="media-object" src="../assets/layouts/layout/img/avatar10.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Irina Savikova</h4> <div class="media-heading-sub"> CEO, Tizda Motors Inc </div> </div> </li> <li class="media"> <div class="media-status"> <span class="badge badge-danger">4</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar11.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Maria Gomez</h4> <div class="media-heading-sub"> Manager, Infomatic Inc </div> <div class="media-heading-small"> Last seen 03:10 AM </div> </div> </li> </ul> </div> <div class="page-quick-sidebar-item"> <div class="page-quick-sidebar-chat-user"> <div class="page-quick-sidebar-nav"> <a href="javascript:;" class="page-quick-sidebar-back-to-list"> <i class="icon-arrow-left"></i>Back</a> </div> <div class="page-quick-sidebar-chat-user-messages"> <div class="post out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Bob Nilson</a> <span class="datetime">20:15</span> <span class="body"> When could you send me the report ? </span> </div> </div> <div class="post in"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Ella Wong</a> <span class="datetime">20:15</span> <span class="body"> Its almost done. I will be sending it shortly </span> </div> </div> <div class="post out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Bob Nilson</a> <span class="datetime">20:15</span> <span class="body"> Alright. Thanks! :) </span> </div> </div> <div class="post in"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Ella Wong</a> <span class="datetime">20:16</span> <span class="body"> You are most welcome. Sorry for the delay. </span> </div> </div> <div class="post out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Bob Nilson</a> <span class="datetime">20:17</span> <span class="body"> No probs. Just take your time :) </span> </div> </div> <div class="post in"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Ella Wong</a> <span class="datetime">20:40</span> <span class="body"> Alright. I just emailed it to you. </span> </div> </div> <div class="post out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Bob Nilson</a> <span class="datetime">20:17</span> <span class="body"> Great! Thanks. Will check it right away. </span> </div> </div> <div class="post in"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Ella Wong</a> <span class="datetime">20:40</span> <span class="body"> Please let me know if you have any comment. </span> </div> </div> <div class="post out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Bob Nilson</a> <span class="datetime">20:17</span> <span class="body"> Sure. I will check and buzz you if anything needs to be corrected. </span> </div> </div> </div> <div class="page-quick-sidebar-chat-user-form"> <div class="input-group"> <input type="text" class="form-control" placeholder="Type a message here..."> <div class="input-group-btn"> <button type="button" class="btn green"> <i class="icon-paper-clip"></i> </button> </div> </div> </div> </div> </div> </div> <div class="tab-pane page-quick-sidebar-alerts" id="quick_sidebar_tab_2"> <div class="page-quick-sidebar-alerts-list"> <h3 class="list-heading">General</h3> <ul class="feeds list-items"> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-check"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 4 pending tasks. <span class="label label-sm label-warning "> Take action <i class="fa fa-share"></i> </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> Just now </div> </div> </li> <li> <a href="javascript:;"> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-success"> <i class="fa fa-bar-chart-o"></i> </div> </div> <div class="cont-col2"> <div class="desc"> Finance Report for year 2013 has been released. </div> </div> </div> </div> <div class="col2"> <div class="date"> 20 mins </div> </div> </a> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-danger"> <i class="fa fa-user"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 5 pending membership that requires a quick review. </div> </div> </div> </div> <div class="col2"> <div class="date"> 24 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-shopping-cart"></i> </div> </div> <div class="cont-col2"> <div class="desc"> New order received with <span class="label label-sm label-success"> Reference Number: DR23923 </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> 30 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-success"> <i class="fa fa-user"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 5 pending membership that requires a quick review. </div> </div> </div> </div> <div class="col2"> <div class="date"> 24 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-bell-o"></i> </div> </div> <div class="cont-col2"> <div class="desc"> Web server hardware needs to be upgraded. <span class="label label-sm label-warning"> Overdue </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> 2 hours </div> </div> </li> <li> <a href="javascript:;"> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-default"> <i class="fa fa-briefcase"></i> </div> </div> <div class="cont-col2"> <div class="desc"> IPO Report for year 2013 has been released. </div> </div> </div> </div> <div class="col2"> <div class="date"> 20 mins </div> </div> </a> </li> </ul> <h3 class="list-heading">System</h3> <ul class="feeds list-items"> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-check"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 4 pending tasks. <span class="label label-sm label-warning "> Take action <i class="fa fa-share"></i> </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> Just now </div> </div> </li> <li> <a href="javascript:;"> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-danger"> <i class="fa fa-bar-chart-o"></i> </div> </div> <div class="cont-col2"> <div class="desc"> Finance Report for year 2013 has been released. </div> </div> </div> </div> <div class="col2"> <div class="date"> 20 mins </div> </div> </a> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-default"> <i class="fa fa-user"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 5 pending membership that requires a quick review. </div> </div> </div> </div> <div class="col2"> <div class="date"> 24 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-shopping-cart"></i> </div> </div> <div class="cont-col2"> <div class="desc"> New order received with <span class="label label-sm label-success"> Reference Number: DR23923 </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> 30 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-success"> <i class="fa fa-user"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 5 pending membership that requires a quick review. </div> </div> </div> </div> <div class="col2"> <div class="date"> 24 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-warning"> <i class="fa fa-bell-o"></i> </div> </div> <div class="cont-col2"> <div class="desc"> Web server hardware needs to be upgraded. <span class="label label-sm label-default "> Overdue </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> 2 hours </div> </div> </li> <li> <a href="javascript:;"> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-briefcase"></i> </div> </div> <div class="cont-col2"> <div class="desc"> IPO Report for year 2013 has been released. </div> </div> </div> </div> <div class="col2"> <div class="date"> 20 mins </div> </div> </a> </li> </ul> </div> </div> <div class="tab-pane page-quick-sidebar-settings" id="quick_sidebar_tab_3"> <div class="page-quick-sidebar-settings-list"> <h3 class="list-heading">General Settings</h3> <ul class="list-items borderless"> <li> Enable Notifications <input type="checkbox" class="make-switch" checked data-size="small" data-on-color="success" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> <li> Allow Tracking <input type="checkbox" class="make-switch" data-size="small" data-on-color="info" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> <li> Log Errors <input type="checkbox" class="make-switch" checked data-size="small" data-on-color="danger" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> <li> Auto Sumbit Issues <input type="checkbox" class="make-switch" data-size="small" data-on-color="warning" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> <li> Enable SMS Alerts <input type="checkbox" class="make-switch" checked data-size="small" data-on-color="success" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> </ul> <h3 class="list-heading">System Settings</h3> <ul class="list-items borderless"> <li> Security Level <select class="form-control input-inline input-sm input-small"> <option value="1">Normal</option> <option value="2" selected>Medium</option> <option value="e">High</option> </select> </li> <li> Failed Email Attempts <input class="form-control input-inline input-sm input-small" value="5" /> </li> <li> Secondary SMTP Port <input class="form-control input-inline input-sm input-small" value="3560" /> </li> <li> Notify On System Error <input type="checkbox" class="make-switch" checked data-size="small" data-on-color="danger" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> <li> Notify On SMTP Error <input type="checkbox" class="make-switch" checked data-size="small" data-on-color="warning" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> </ul> <div class="inner-content"> <button class="btn btn-success"> <i class="icon-settings"></i> Save Changes</button> </div> </div> </div> </div> </div> </div> <!-- END QUICK SIDEBAR --> </div> <!-- END CONTAINER --> <!-- BEGIN FOOTER --> <div class="page-footer"> <div class="page-footer-inner"> 2014 &copy; Metronic by keenthemes. <a href="http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes" title="Purchase Metronic just for 27$ and get lifetime updates for free" target="_blank">Purchase Metronic!</a> </div> <div class="scroll-to-top"> <i class="icon-arrow-up"></i> </div> </div> <!-- END FOOTER --> <!--[if lt IE 9]> <script src="../assets/global/plugins/respond.min.js"></script> <script src="../assets/global/plugins/excanvas.min.js"></script> <![endif]--> <!-- BEGIN CORE PLUGINS --> <script src="../assets/global/plugins/jquery.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/bootstrap/js/bootstrap.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/js.cookie.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/bootstrap-hover-dropdown/bootstrap-hover-dropdown.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/jquery-slimscroll/jquery.slimscroll.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/jquery.blockui.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/uniform/jquery.uniform.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/bootstrap-switch/js/bootstrap-switch.min.js" type="text/javascript"></script> <!-- END CORE PLUGINS --> <!-- BEGIN PAGE LEVEL PLUGINS --> <script src="../assets/global/plugins/bootstrap-datepicker/js/bootstrap-datepicker.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/select2/js/select2.full.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/jquery-multi-select/js/jquery.multi-select.js" type="text/javascript"></script> <!-- END PAGE LEVEL PLUGINS --> <!-- BEGIN THEME GLOBAL SCRIPTS --> <script src="../assets/global/scripts/app.min.js" type="text/javascript"></script> <!-- END THEME GLOBAL SCRIPTS --> <!-- BEGIN PAGE LEVEL SCRIPTS --> <script src="../assets/apps/scripts/todo.min.js" type="text/javascript"></script> <script src="../assets/pages/scripts/components-date-time-pickers.min.js" type="text/javascript"></script> <!-- END PAGE LEVEL SCRIPTS --> <!-- BEGIN THEME LAYOUT SCRIPTS --> <script src="../assets/layouts/layout/scripts/layout.min.js" type="text/javascript"></script> <script src="../assets/layouts/layout/scripts/demo.min.js" type="text/javascript"></script> <script src="../assets/layouts/global/scripts/quick-sidebar.min.js" type="text/javascript"></script> <!-- END THEME LAYOUT SCRIPTS --> </body> </html>
Jenna-2.6.3/doc/DB/hsql-howto.html
jianglili007/pretty-printer
<html> <!-- (c) Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 Hewlett-Packard Development Company, LP --> <head> <title>Jena2 HSQL HowTo</title> <link href="../styles/doc.css" rel="stylesheet" type="text/css" /> </head> <body> <h1>HowTo Use HSQLDB with Jena2</h1> <h2>What is HSQLDB?</h2> <p><a href="http://www.hsqldb.org/">HSQLDB</a> (also known as Hypersonic or HSQL), is a lightweight, 100% Java SQL Database Engine. Used with Jena, it provides a simple way to give persistence to RDF data by using HSQLDB within the application JVM, using the file system for persistence.&nbsp; HSQLDB can also run as a database server, handling connections from different JVMs, and also as a purely in-memory engine.</p> <p>Using it within one application JVM, and using file-based persistence, is the most useful mode with Jena. The application should manage internal concurrency with <a href="../how-to/concurrency.html">MRSW (multi-reader, single-writer) locking</a>, or Java synchronized (which is single reader, single writer locking), because HSQLDB does not support full transaction isolation. </p> <h2>Download and Installation of HSQLDB</h2> <p><a href="http://sourceforge.net/project/showfiles.php?group_id=23316"> Download HSQLDB</a> from SourceForge, unpack the zip file and put the <code>hsqldb.jar</code> file on the application classpath. This includes the JDBC driver and the database engine.</p> <h2>Connecting Your Jena Program to HSQLDB</h2> <h3>JDBC URLs</h3> <p>JDBC URLs for HSQLDB look like the following:</p> <ul> <li><code>jdbc:hsqldb:file:</code><i><code>filepathname</code></i> : File-persistence</li> <li><code>jdbc:hsqldb:hsql:</code><i><code>DB_NAME</code></i>: database server</li> <li><code>jdbc:hsqldb:mem:</code><i><code>DBname</code></i>: in-memory only</li> </ul> <p>By default, for file-persistence, the user name is &quot;sa&quot; and the password is &quot;&quot;. See the HSQLDB documentation for further details. </p> <p>The database JDBC driver is class <code>org.hsqldb.jdbcDriver</code>.&nbsp; Compare this to Derby where the driver changes but the URL is the same for server or embedded use.</p> <p>The Jena driver name is HSQL.</p> <p>Persistent models are <a href="creating-db-models.html">created</a> in the same way for any database system: </p> <blockquote> <ol> <li>Load the JDBC driver. This enables the Jena program to communicate with the database instance.</li> <li>Create a database connection. This creates a Java object for a database connection.</li> <li>Create a ModelMaker for the database</li> <li>Create a Model for existing or new data.</li> </ol> </blockquote> <p>These steps are illustrated in the following Java code.</p> <pre class="box"> String className = &quot;org.hsqldb.jdbcDriver&quot;; // path of driver class Class.forName (className); // Load the Driver String DB_URL = &quot;jdbc:hsqldb:file:<i>filename</i>&quot;; // URL of database String DB_USER = &quot;sa&quot;;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // database user id String DB_PASSWD = &quot;&quot;;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // database password String DB =&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;HSQL&quot;;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // database type // Create database connection IDBConnection conn = new DBConnection ( DB_URL, DB_USER, DB_PASSWD, DB ); ModelMaker maker = ModelFactory.createModelRDBMaker(conn) ; // create or open the default model Model model = maker.createDefaultModel(); // Close the database connection conn.close(); </pre> <h2>HSQLDB Notes</h2> <p>HSQLDB does not support full ACID transactions; the application can read uncommitted updates from other transactions. The application should use locking within the application, such as <a href="../how-to/concurrency.html">MRSW locking</a> or provide it's own locking, to ensure that updates and reads do not overlap.</p> <p>Jena does not compact the database because it does not know when the database is no longer required by the application - the application must arrange to do this itself. This can be by using the database manager (<code>org.hsqldb.util.DatabaseManager</code>) to compact the database</p> <p>Or the application can do it by either:</p> <ol> <li>Get the Jena driver , cast to Driver_HSQL and call .shutdown().</li> <li>Get the SQL connection and execute &quot;SHUTDOWN COMPACT&quot; as an SQL command.</li> </ol> </body> </html>
docs/by-example-0.95.1/content-based-routing.html
madhuramendis/website
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta property="og:url" content="https://ballerinalang.org" /> <meta property="og:type" content="article" /> <meta property="og:title" content="Flexible. Powerful. Beautiful." /> <meta property="og:description" content="Ballerina by Example is a hands-on introduction to Ballerina using annotated example programs. Check out the first example or browse the full list below. " /> <meta property="og:image" content="http://ballerinalang.org/img/ballerina-fb.jpg" /> <link rel="shortcut icon" href="https://ballerinalang.org/img/favicon.ico" type="image/x-icon"> <link rel="icon" href="https://ballerinalang.org/img/favicon.ico" type="image/x-icon"> <title>Ballerina by Example: Content Based Routing</title> <!--GA--> <script> (function (i, s, o, g, r, a, m) { i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () { (i[r].q = i[r].q || []).push(arguments) }, i[r].l = 1 * new Date(); a = s.createElement(o), m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m) })(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga'); ga('create', 'UA-92163714-1', 'auto'); ga('send', 'pageview'); </script> <!-- Google Tag Manager --> <script>(function (w, d, s, l, i) { w[l] = w[l] || []; w[l].push({'gtm.start': new Date().getTime(), event: 'gtm.js'}); var f = d.getElementsByTagName(s)[0], j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f); })(window, document, 'script', 'dataLayer', 'GTM-KW2LLTW'); </script> <!-- End Google Tag Manager --> <!-- Hotjar Tracking Code for https://ballerinalang.org/ --> <script> (function (h, o, t, j, a, r) { h.hj = h.hj || function () { (h.hj.q = h.hj.q || []).push(arguments) }; h._hjSettings = {hjid: 442732, hjsv: 5}; a = o.getElementsByTagName('head')[0]; r = o.createElement('script'); r.async = 1; r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv; a.appendChild(r); })(window, document, '//static.hotjar.com/c/hotjar-', '.js?sv='); </script> <link href="https://b.content.wso2.com/sites/all/bootstrap/css/bootstrap.css?230617" rel="stylesheet"> <script src="https://b.content.wso2.com/sites/all/bootstrap/js/jquery.js?230617"></script> <script src="https://b.content.wso2.com/sites/all/bootstrap/js/bootstrap.js?230617"></script> <script src="https://b.content.wso2.com/sites/all/ballerina/ballerina-example.js"></script> <script defer="defer" src="https://wso2.cachefly.net/wso2/sites/all/ballerina/js/ballerina.js"></script> <link rel=stylesheet href="site.css"> <link href="https://fonts.googleapis.com/css?family=Cairo:200,300,400,600,700,900" rel="stylesheet"> <link rel=stylesheet href="https://b.content.wso2.com/sites/all/ballerina/ballerina-example.css"> </head> <body> <div class="row cBallerinaNav" id="iBallerinaNavigation"> </div> <div class="row cBallerinaBySampleRow"> <div class="container cBallerinaBySampleContainer"> <div class="FullCode"> <div class="highlight"><pre><span class="kn">import</span> <span class="nx">ballerina</span><span class="p">.</span><span class="nx">net</span><span class="p">.</span><span class="nx">http</span><span class="p">;</span><span class="nd">@http:configuration {</span><span class="nx">basePath</span><span class="p">:</span><span class="s">&quot;/cbr&quot;</span><span class="p">}</span> <span class="kd">service</span><span class="p">&lt;</span><span class="nx">http</span><span class="p">&gt;</span> <span class="nx">contentBasedRouting</span> <span class="p">{</span> <span class="nd">@http:resourceConfig {</span> <span class="nx">methods</span><span class="p">:[</span><span class="s">&quot;POST&quot;</span><span class="p">],</span> <span class="nx">path</span><span class="p">:</span><span class="s">&quot;/route&quot;</span> <span class="p">}</span> <span class="kd">resource</span> <span class="nx">cbrResource</span> <span class="p">(</span><span class="nx">http</span><span class="p">:</span><span class="nx">Request</span> <span class="nx">req</span><span class="p">,</span> <span class="nx">http</span><span class="p">:</span><span class="nx">Response</span> <span class="nx">res</span><span class="p">)</span> <span class="p">{</span> <span class="nx">endpoint</span><span class="p">&lt;</span><span class="nx">http</span><span class="p">:</span><span class="nx">HttpClient</span><span class="p">&gt;</span> <span class="nx">locationEP</span> <span class="p">{</span> <span class="nx">create</span> <span class="nx">http</span><span class="p">:</span><span class="nx">HttpClient</span><span class="p">(</span><span class="s">&quot;http://www.mocky.io&quot;</span><span class="p">,</span> <span class="p">{});</span> <span class="p">}</span> <span class="kt">json</span> <span class="nx">jsonMsg</span> <span class="p">=</span> <span class="nx">req</span><span class="p">.</span><span class="nx">getJsonPayload</span><span class="p">();</span> <span class="kt">string</span> <span class="nx">nameString</span><span class="p">;</span> <span class="nx">nameString</span><span class="p">,</span> <span class="nx">_</span> <span class="p">=</span> <span class="p">(</span><span class="kt">string</span><span class="p">)</span><span class="nx">jsonMsg</span><span class="p">[</span><span class="s">&quot;name&quot;</span><span class="p">];</span> <span class="nx">http</span><span class="p">:</span><span class="nx">Response</span> <span class="nx">clientResponse</span><span class="p">;</span> <span class="nx">http</span><span class="p">:</span><span class="nx">HttpConnectorError</span> <span class="nx">err</span><span class="p">;</span> <span class="k">if</span> <span class="p">(</span><span class="nx">nameString</span> <span class="o">==</span> <span class="s">&quot;sanFrancisco&quot;</span><span class="p">)</span> <span class="p">{</span> <span class="nx">clientResponse</span><span class="p">,</span> <span class="nx">err</span> <span class="p">=</span> <span class="nx">locationEP</span><span class="p">.</span><span class="nx">post</span><span class="p">(</span><span class="s">&quot;/v2/594e018c1100002811d6d39a&quot;</span><span class="p">,</span> <span class="p">{});</span> <span class="p">}</span> <span class="k">else</span> <span class="p">{</span> <span class="nx">clientResponse</span><span class="p">,</span> <span class="nx">err</span> <span class="p">=</span> <span class="nx">locationEP</span><span class="p">.</span><span class="nx">post</span><span class="p">(</span><span class="s">&quot;/v2/594e026c1100004011d6d39c&quot;</span><span class="p">,</span> <span class="p">{});</span> <span class="p">}</span> <span class="k">if</span> <span class="p">(</span><span class="nx">err</span> <span class="o">!=</span> <span class="kc">null</span><span class="p">)</span> <span class="p">{</span> <span class="nx">res</span><span class="p">.</span><span class="nx">setStatusCode</span><span class="p">(</span><span class="mi">500</span><span class="p">);</span> <span class="nx">res</span><span class="p">.</span><span class="nx">setStringPayload</span><span class="p">(</span><span class="nx">err</span><span class="p">.</span><span class="nx">msg</span><span class="p">);</span> <span class="nx">res</span><span class="p">.</span><span class="nx">send</span><span class="p">();</span> <span class="p">}</span> <span class="k">else</span> <span class="p">{</span> <span class="nx">res</span><span class="p">.</span><span class="nx">forward</span><span class="p">(</span><span class="nx">clientResponse</span><span class="p">);</span> <span class="p">}</span> <span class="p">}</span> <span class="p">}</span> </pre></div> </div> <div class="example" id="content-based-routing"> <div class="col-xs-11 col-sm-11 col-md-11"> <h2><a href="./">Ballerina by Example</a>: Content Based Routing</h2> </div> <div class="col-xs-1 col-sm-1 col-md-1"> <a href="./" class="cBackButton"><img src="http://b.content.wso2.com/sites/all/ballerina/backbutton.svg"/></a> </div> <div class="col-xs-12 col-sm-12 col-md-12"> <table> <tr> <td class="docs"> <p>The Content-Based Router service reads the content of a request and routes it to a specific recipient based on its content.</p> </td> <td class="code leading"> <div class="highlight"><pre><span class="kn">import</span> <span class="nx">ballerina</span><span class="p">.</span><span class="nx">net</span><span class="p">.</span><span class="nx">http</span><span class="p">;</span> </pre></div> </td> </tr> <tr> <td class="docs"> </td> <td class="code leading"> <div class="highlight"><pre><span class="nd">@http:configuration {</span><span class="nx">basePath</span><span class="p">:</span><span class="s">&quot;/cbr&quot;</span><span class="p">}</span> <span class="kd">service</span><span class="p">&lt;</span><span class="nx">http</span><span class="p">&gt;</span> <span class="nx">contentBasedRouting</span> <span class="p">{</span> </pre></div> </td> </tr> <tr> <td class="docs"> <p>http:POST{} annotation declares the HTTP method.</p> </td> <td class="code leading"> <div class="highlight"><pre> <span class="nd">@http:resourceConfig {</span> <span class="nx">methods</span><span class="p">:[</span><span class="s">&quot;POST&quot;</span><span class="p">],</span> <span class="nx">path</span><span class="p">:</span><span class="s">&quot;/route&quot;</span> <span class="p">}</span> <span class="kd">resource</span> <span class="nx">cbrResource</span> <span class="p">(</span><span class="nx">http</span><span class="p">:</span><span class="nx">Request</span> <span class="nx">req</span><span class="p">,</span> <span class="nx">http</span><span class="p">:</span><span class="nx">Response</span> <span class="nx">res</span><span class="p">)</span> <span class="p">{</span> <span class="nx">endpoint</span><span class="p">&lt;</span><span class="nx">http</span><span class="p">:</span><span class="nx">HttpClient</span><span class="p">&gt;</span> <span class="nx">locationEP</span> <span class="p">{</span> <span class="nx">create</span> <span class="nx">http</span><span class="p">:</span><span class="nx">HttpClient</span><span class="p">(</span><span class="s">&quot;http://www.mocky.io&quot;</span><span class="p">,</span> <span class="p">{});</span> <span class="p">}</span> </pre></div> </td> </tr> <tr> <td class="docs"> <p>Get JSON payload from the request message.</p> </td> <td class="code leading"> <div class="highlight"><pre> <span class="kt">json</span> <span class="nx">jsonMsg</span> <span class="p">=</span> <span class="nx">req</span><span class="p">.</span><span class="nx">getJsonPayload</span><span class="p">();</span> </pre></div> </td> </tr> <tr> <td class="docs"> <p>Get the string value relevant to the key &ldquo;name&rdquo;.</p> </td> <td class="code leading"> <div class="highlight"><pre> <span class="kt">string</span> <span class="nx">nameString</span><span class="p">;</span> <span class="nx">nameString</span><span class="p">,</span> <span class="nx">_</span> <span class="p">=</span> <span class="p">(</span><span class="kt">string</span><span class="p">)</span><span class="nx">jsonMsg</span><span class="p">[</span><span class="s">&quot;name&quot;</span><span class="p">];</span> <span class="nx">http</span><span class="p">:</span><span class="nx">Response</span> <span class="nx">clientResponse</span><span class="p">;</span> <span class="nx">http</span><span class="p">:</span><span class="nx">HttpConnectorError</span> <span class="nx">err</span><span class="p">;</span> <span class="k">if</span> <span class="p">(</span><span class="nx">nameString</span> <span class="o">==</span> <span class="s">&quot;sanFrancisco&quot;</span><span class="p">)</span> <span class="p">{</span> </pre></div> </td> </tr> <tr> <td class="docs"> <p>&ldquo;post&rdquo; represent the POST action of HTTP connector. Route payload to relevant service as the server accept the entity enclosed.</p> </td> <td class="code leading"> <div class="highlight"><pre> <span class="nx">clientResponse</span><span class="p">,</span> <span class="nx">err</span> <span class="p">=</span> <span class="nx">locationEP</span><span class="p">.</span><span class="nx">post</span><span class="p">(</span><span class="s">&quot;/v2/594e018c1100002811d6d39a&quot;</span><span class="p">,</span> <span class="p">{});</span> <span class="p">}</span> <span class="k">else</span> <span class="p">{</span> <span class="nx">clientResponse</span><span class="p">,</span> <span class="nx">err</span> <span class="p">=</span> <span class="nx">locationEP</span><span class="p">.</span><span class="nx">post</span><span class="p">(</span><span class="s">&quot;/v2/594e026c1100004011d6d39c&quot;</span><span class="p">,</span> <span class="p">{});</span> <span class="p">}</span> </pre></div> </td> </tr> <tr> <td class="docs"> <p>Native function &ldquo;forward&rdquo; sends back the clientResponse to the caller.</p> </td> <td class="code"> <div class="highlight"><pre> <span class="k">if</span> <span class="p">(</span><span class="nx">err</span> <span class="o">!=</span> <span class="kc">null</span><span class="p">)</span> <span class="p">{</span> <span class="nx">res</span><span class="p">.</span><span class="nx">setStatusCode</span><span class="p">(</span><span class="mi">500</span><span class="p">);</span> <span class="nx">res</span><span class="p">.</span><span class="nx">setStringPayload</span><span class="p">(</span><span class="nx">err</span><span class="p">.</span><span class="nx">msg</span><span class="p">);</span> <span class="nx">res</span><span class="p">.</span><span class="nx">send</span><span class="p">();</span> <span class="p">}</span> <span class="k">else</span> <span class="p">{</span> <span class="nx">res</span><span class="p">.</span><span class="nx">forward</span><span class="p">(</span><span class="nx">clientResponse</span><span class="p">);</span> <span class="p">}</span> <span class="p">}</span> <span class="p">}</span> </pre></div> </td> </tr> </table> <table> <tr> <td class="docs"> </td> <td class="code"> <div class="highlight"><pre><span class="gp">$</span> ballerina run content-based-routing.bal <span class="go">ballerina: deploying service(s) in &#39;content-based-routing.bal&#39;</span> <span class="go">ballerina: started HTTP/WS server connector 0.0.0.0:9090</span> </pre></div> </td> </tr> </table> <table> <tr> <td class="docs"> </td> <td class="code leading"> <div class="highlight"><pre><span class="gp">$</span> curl -v http://localhost:9090/cbr/route -d <span class="s1">&#39;{&quot;name&quot; : &quot;sanFrancisco&quot;}&#39;</span> <span class="go">{</span> <span class="go"> &quot;name&quot;: &quot;San Francisco Test Station,USA&quot;,</span> <span class="go"> &quot;longitude&quot;: -122.43,</span> <span class="go"> &quot;latitude&quot;: 37.76,</span> <span class="go"> &quot;altitude&quot;: 150,</span> <span class="go"> &quot;rank&quot;: 1</span> <span class="go">}</span> </pre></div> </td> </tr> <tr> <td class="docs"> </td> <td class="code"> <div class="highlight"><pre><span class="gp">$</span> curl -v http://localhost:9090/cbr/route -d <span class="s1">&#39;{&quot;name&quot; : &quot;london&quot;}&#39;</span> <span class="go">{</span> <span class="go"> &quot;name&quot;: &quot;London Test Station,England&quot;,</span> <span class="go"> &quot;longitude&quot;: -156.49,</span> <span class="go"> &quot;latitude&quot;: 57.76,</span> <span class="go"> &quot;altitude&quot;: 430,</span> <span class="go"> &quot;rank&quot;: 5</span> <span class="go">}</span> </pre></div> </td> </tr> </table> <p class="next"> Next example: <a href="header-based-routing">Header Based Routing</a>. </p> </div> <div class="col-xs-12 col-sm-12 col-md-12 cGOfooter"> <p class="footer"> by <a href="https://twitter.com/ballerinalang">@ballerinalang</a> | <a href="mailto:ballerina-dev@googlegroups.com">feedback</a> | <a href="https://github.com/ballerinalang/ballerina/tree/master/samples/ballerina-by-example/examples/content-based-routing">source</a> </p> <p class="attrib"> This site was generated using a <a href="https://github.com/mmcgrana/gobyexample/">tool</a> developed by <a href="https://twitter.com/mmcgrana">@mmcgrana</a>, licensed under <a href="https://creativecommons.org/licenses/by/2.0/">CC BY</a> / modified from original </p> </div> </div> </div> </div> <div class="row cBallerinaFooter" id="iBallerinaFooter"> </div> </body> </html>
gradle/wrapper/dists/gradle-1.12-all/4ff8jj5a73a7zgj5nnzv1ubq0/gradle-1.12/src/diagnostics/org/gradle/api/tasks/diagnostics/htmldependencyreport/tree.css
Pushjet/Pushjet-Android
/* * Copyright 2013 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* * jsTree default theme 1.0 * Supported features: dots/no-dots, icons/no-icons, focused, loading * Supported plugins: ui (hovered, clicked), checkbox, contextmenu, search */ .jstree-default li, .jstree-default ins { background-image:url("d.png"); background-repeat:no-repeat; background-color:transparent; } .jstree-default li { background-position:-90px 0; background-repeat:repeat-y; } .jstree-default li.jstree-last { background:transparent; } .jstree-default .jstree-open > ins { background-position:-72px 0; } .jstree-default .jstree-closed > ins { background-position:-54px 0; } .jstree-default .jstree-leaf > ins { background-position:-36px 0; } .jstree-default .jstree-hovered { background:#e7f4f9; border:1px solid #d8f0fa; padding:0 2px 0 1px; } .jstree-default .jstree-clicked { background:#beebff; border:1px solid #99defd; padding:0 2px 0 1px; } .jstree-default a .jstree-icon { background-position:-56px -19px; } .jstree-default a.jstree-loading .jstree-icon { background:url("throbber.gif") center center no-repeat !important; } .jstree-default.jstree-focused { background:#ffffee; } .jstree-default .jstree-no-dots li, .jstree-default .jstree-no-dots .jstree-leaf > ins { background:transparent; } .jstree-default .jstree-no-dots .jstree-open > ins { background-position:-18px 0; } .jstree-default .jstree-no-dots .jstree-closed > ins { background-position:0 0; } .jstree-default .jstree-no-icons a .jstree-icon { display:none; } .jstree-default .jstree-search { font-style:italic; } .jstree-default .jstree-no-icons .jstree-checkbox { display:inline-block; } .jstree-default .jstree-no-checkboxes .jstree-checkbox { display:none !important; } .jstree-default .jstree-checked > a > .jstree-checkbox { background-position:-38px -19px; } .jstree-default .jstree-unchecked > a > .jstree-checkbox { background-position:-2px -19px; } .jstree-default .jstree-undetermined > a > .jstree-checkbox { background-position:-20px -19px; } .jstree-default .jstree-checked > a > .jstree-checkbox:hover { background-position:-38px -37px; } .jstree-default .jstree-unchecked > a > .jstree-checkbox:hover { background-position:-2px -37px; } .jstree-default .jstree-undetermined > a > .jstree-checkbox:hover { background-position:-20px -37px; } #vakata-dragged.jstree-default ins { background:transparent !important; } #vakata-dragged.jstree-default .jstree-ok { background:url("d.png") -2px -53px no-repeat !important; } #vakata-dragged.jstree-default .jstree-invalid { background:url("d.png") -18px -53px no-repeat !important; } #jstree-marker.jstree-default { background:url("d.png") -41px -57px no-repeat !important; text-indent:-100px; } .jstree-default a.jstree-search { color:aqua; } .jstree-default .jstree-locked a { color:silver; cursor:default; } #vakata-contextmenu.jstree-default-context, #vakata-contextmenu.jstree-default-context li ul { background:#f0f0f0; border:1px solid #979797; -moz-box-shadow: 1px 1px 2px #999; -webkit-box-shadow: 1px 1px 2px #999; box-shadow: 1px 1px 2px #999; } #vakata-contextmenu.jstree-default-context li { } #vakata-contextmenu.jstree-default-context a { color:black; } #vakata-contextmenu.jstree-default-context a:hover, #vakata-contextmenu.jstree-default-context .vakata-hover > a { padding:0 5px; background:#e8eff7; border:1px solid #aecff7; color:black; -moz-border-radius:2px; -webkit-border-radius:2px; border-radius:2px; } #vakata-contextmenu.jstree-default-context li.jstree-contextmenu-disabled a, #vakata-contextmenu.jstree-default-context li.jstree-contextmenu-disabled a:hover { color:silver; background:transparent; border:0; padding:1px 4px; } #vakata-contextmenu.jstree-default-context li.vakata-separator { background:white; border-top:1px solid #e0e0e0; margin:0; } #vakata-contextmenu.jstree-default-context li ul { margin-left:-4px; } /* IE6 BEGIN */ .jstree-default li, .jstree-default ins, #vakata-dragged.jstree-default .jstree-invalid, #vakata-dragged.jstree-default .jstree-ok, #jstree-marker.jstree-default { _background-image:url("d.gif"); } .jstree-default .jstree-open ins { _background-position:-72px 0; } .jstree-default .jstree-closed ins { _background-position:-54px 0; } .jstree-default .jstree-leaf ins { _background-position:-36px 0; } .jstree-default a ins.jstree-icon { _background-position:-56px -19px; } #vakata-contextmenu.jstree-default-context ins { _display:none; } #vakata-contextmenu.jstree-default-context li { _zoom:1; } .jstree-default .jstree-undetermined a .jstree-checkbox { _background-position:-20px -19px; } .jstree-default .jstree-checked a .jstree-checkbox { _background-position:-38px -19px; } .jstree-default .jstree-unchecked a .jstree-checkbox { _background-position:-2px -19px; } /* IE6 END */ /* customizations */ .jstree a ins { display: none; } .jstree li { line-height: 24px; } .jstree ins { position: relative; top: 4px; }
serve/tags/filesystems/page/1/index.html
aravindhsampath/aravindh.net
<!DOCTYPE html><html><head><title>https://aravindh.net/tags/filesystems/</title><link rel="canonical" href="https://aravindh.net/tags/filesystems/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://aravindh.net/tags/filesystems/" /></head></html>
doc/alu/HyperSpec/Body/syscla_hash-table.html
jasom/eclipse-lisp
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <!-- Common Lisp HyperSpec (TM), version 3.0 generated by kmp on Thu, 2-May-1996 10:21am EDT --> <HTML> <HEAD> <TITLE>CLHS: System Class HASH-TABLE</TITLE> <META HTTP-EQUIV="Author" CONTENT="Kent M. Pitman"> <META HTTP-EQUIV="Organization" CONTENT="The Harlequin Group Limited"> <LINK REL=TOP HREF="../FrontMatter/index.html"> <LINK REL=COPYRIGHT HREF="../FrontMatter/About-HyperSpec.html#Legal"> <LINK REL=DISCLAIMER HREF="../FrontMatter/About-HyperSpec.html#Disclaimer"> <LINK REL=PREV HREF="sec_the_hash__s_dictionary.html"> <LINK REL=UP HREF="sec_the_hash__s_dictionary.html"> <LINK REL=NEXT HREF="fun_make-hash-table.html"> </HEAD> <BODY BGCOLOR="#c0c0c0"> <H1><A REV=MADE HREF="http://www.harlequin.com/"><IMG ALT="[HARLEQUIN]" SRC="../Graphics/Harlequin-Small.gif" ALIGN=Bottom></A><A REL=TOP HREF="../FrontMatter/index.html"><IMG ALT="[Common Lisp HyperSpec (TM)]" SRC="../Graphics/HyperSpec-Small.gif" ALIGN=Bottom></A> <A REL=PREV HREF="sec_the_hash__s_dictionary.html"><IMG ALT="[Previous]" SRC="../Graphics/Prev.gif" ALIGN=Bottom></A><A REL=UP HREF="sec_the_hash__s_dictionary.html"><IMG ALT="[Up]" SRC="../Graphics/Up.gif" ALIGN=Bottom></A><A REL=NEXT HREF="fun_make-hash-table.html"><IMG ALT="[Next]" SRC="../Graphics/Next.gif" ALIGN=Bottom></A></H1> <HR> <A NAME="hash-table"><I>System Class</I> <B>HASH-TABLE</B></A> <P> <P><B>Class Precedence List:</B><P> <A REL=DEFINITION HREF="#hash-table"><B>hash-table</B></A>, <A REL=DEFINITION HREF="syscla_t.html#t"><B>t</B></A> <P> <P><B>Description:</B><P> <P> <A REL=DEFINITION HREF="glo_h.html#hash_table"><I>Hash tables</I></A> provide a way of mapping any <A REL=DEFINITION HREF="glo_o.html#object"><I>object</I></A> (a <A REL=DEFINITION HREF="glo_k.html#key"><I>key</I></A>) to an associated <A REL=DEFINITION HREF="glo_o.html#object"><I>object</I></A> (a <A REL=DEFINITION HREF="glo_v.html#value"><I>value</I></A>). <P> <P><B>See Also:</B><P> <P> <A REL=CHILD HREF="sec_18-1.html">Section 18.1 (Hash Table Concepts)</A>, <A REL=CHILD HREF="sec_22-1-3-13.html">Section 22.1.3.13 (Printing Other Objects)</A> <P> <P><B>Notes:</B><P> <P> The intent is that this mapping be implemented by a hashing mechanism, such as that described in Section 6.4 ``Hashing'' of <A REL=CITATION HREF="gopher://aw.com/11/authors/Knuth/knuthart1-3"><I> The Art of Computer Programming, Volume 3</I></A> (pp506-549). In spite of this intent, no <A REL=DEFINITION HREF="glo_c.html#conforming_implementation"><I>conforming implementation</I></A> is required to use any particular technique to implement the mapping. <P> <HR> <A REL=NAVIGATOR HREF="../FrontMatter/Starting-Points.html"><IMG ALT="[Starting Points]" SRC="../Graphics/Starting-Points.gif" ALIGN=Bottom></A><A REL=TOC HREF="../FrontMatter/Chapter-Index.html"><IMG ALT="[Contents]" SRC="../Graphics/Contents.gif" ALIGN=Bottom></A><A REL=INDEX HREF="../FrontMatter/Master-Index.html"><IMG ALT="[Index]" SRC="../Graphics/Index.gif" ALIGN=Bottom></A><A REL=INDEX HREF="../FrontMatter/Symbol-Index.html"><IMG ALT="[Symbols]" SRC="../Graphics/Symbols.gif" ALIGN=Bottom></A><A REL=GLOSSARY HREF="../Body/sec_26-1.html"><IMG ALT="[Glossary]" SRC="../Graphics/Glossary.gif" ALIGN=Bottom></A><A HREF="../Issues/Issues-Categorized.html"><IMG ALT="[Issues]" SRC="../Graphics/Issues.gif" ALIGN=Bottom></A><BR> <A REL=COPYRIGHT HREF="../FrontMatter/About-HyperSpec.html#Legal"><I>Copyright 1996, The Harlequin Group Limited. All Rights Reserved.</I></A><P> </BODY> </HTML>
djiki/templates/djiki/history.html
hivelocity/djiki
{% extends 'djiki/base_page.html' %} {% load i18n djiki_tags %} {% load url from future %} {% block title %}{% trans "Page history" %}: {{ block.super }}{% endblock %} {% block djiki_main %} <div class="page history grid_12"> <div class="content"> <h1>{{ page.title }}</h1> <form method="get" action="{% url 'djiki-page-diff' page.title|urlize_title %}"> <table> <thead> <tr> <th>{% trans "Modification time" %}</th> <th><button type="submit">{% trans "Compare" %}</button></th> <th>{% trans "Author" %}</th> <th>{% trans "Description" %}</th> <th>{% trans "Operations" %}</th> </tr> </thead> <tbody> {% for revision in history %} <tr> <td> <a href="{% url 'djiki-page-revision' page.title|urlize_title revision.pk %}" title="{% trans "View" %}"> {{ revision.created }}</a> <span class="help_text">({% blocktrans with revision.created|timesince as timesince %}{{ timesince }} ago{% endblocktrans %})</span> </td> <td> <input type="radio" name="from_revision_pk" value="{{ revision.pk }}" /> <input type="radio" name="to_revision_pk" value="{{ revision.pk }}" /> </td> <td> {% if revision.author %}{{ revision.author }} {% else %}<em>{% trans "anonymous" %}</em>{% endif %} </td> <td>{{ revision.description }}</td> <td> <a href="{% url 'djiki-page-revert' page.title|urlize_title revision.pk %}" rel="nofollow" title="{% trans "Revert to this version by discarding all later modifications." %}">[{% trans "revert" %}]</a> <a href="{% url 'djiki-page-undo' page.title|urlize_title revision.pk %}" rel="nofollow" title="{% trans "Undo this revision." %}">[{% trans "undo" %}]</a> </td> </tr> {% endfor %} </tbody> </table> </form> </div> </div> {% endblock %}
static/tmp/zqRHm3F7.css
ChrisSwires/One
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section { display: block; } audio,canvas,video { display: inline-block; *display: inline; *zoom: 1; } audio:not([controls]) { display: none; } [hidden] { display: none; } html { font-size: 100%; overflow-y: scroll; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } body { margin: 0; } body,button,input,select,textarea { font-family: sans-serif; } a { color: #00e; } a:visited { color: #551a8b; } a:focus { outline: thin dotted; } a:hover,a:active { outline: 0; } abbr[title] { border-bottom: 1px dotted; } b,strong { font-weight: bold; } blockquote { margin: 1em 40px; } dfn { font-style: italic; } mark { background: #ff0; color: #000; } pre,code,kbd,samp { font-family: monospace, serif; _font-family: 'courier new', monospace; font-size: 1em; } pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; } q { quotes: none; } q:before,q:after { content: ''; content: none; } small { font-size: 75%; } sub,sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } ul,ol { margin: 1em 0; padding: 0 0 0 40px; } dd { margin: 0 0 0 40px; } nav ul,nav ol { list-style: none; list-style-image: none; } img { border: 0; -ms-interpolation-mode: bicubic; } svg:not(:root) { overflow: hidden; } figure { margin: 0; } form { margin: 0; } fieldset { margin: 0 2px; padding: 0.35em 0.625em 0.75em; } legend { border: 0; *margin-left: -7px; } button,input,select,textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; } button,input { line-height: normal; *overflow: visible; } table button,table input { *overflow: auto; } button,html input[type="button"],input[type="reset"],input[type="submit"] { cursor: pointer; -webkit-appearance: button; } input[type="checkbox"],input[type="radio"] { box-sizing: border-box; padding: 0; } input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; } input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } button::-moz-focus-inner,input::-moz-focus-inner { border: 0; padding: 0; } textarea { overflow: auto; vertical-align: top; } table { border-collapse: collapse; border-spacing: 0; } #sidebar { position: absolute; top: 0; right: 0; } #sidemain { position: absolute; top: 20; right: 2; padding: 1em; border: #CCC solid 2px; border-radius: 5px; margin: 1em; width: 10em; margin: 1em auto; background: #F2F2F2; line-height: 1.5em; color: #333; } h1 { font-family: Helvetica, sans-serif; font-size: 24px; margin-top: 10px; margin-bottom: 15px; } #navbar { margin: 0; padding: 0; height: 1em; } #navbar li { list-style: none; float: left; } #navbar li a { display: block; padding: 3px 8px; background-color: #C0C0C0; color: #fff; text-decoration: none; } #navbar li ul { display: none; width: 10em; background-color: #808080; } #navbar li:hover ul { display: block; position: absolute; margin: 0; padding: 0; } #navbar li:hover li { float: none; } #navbar li:hover li a { background-color: #808080; border-bottom: 1px solid #fff; color: #000; } #navbar li li a:hover { background-color: #808080; } body { font-family: Helvetica, sans-serif; font-size: 14px; background: url(http://hackage.haskell.org/platform/images/background.jpg); background-repeat: no-repeat ; } h2 { font-family: Helvetica, sans-serif; font-size: 18px; margin-top: 10px; margin-bottom: 15px; } #main { padding: 1em; border: #CCC solid 2px; border-radius: 15px; margin: 1em; width: 37em; margin: 1em auto; background: #F2F2F2; line-height: 1.5em; color: #333; } .required { margin: 1em 0; } .optional { margin: 1em 0; } label { width: 8em; display: inline-block; } input,textarea { background: #FAFAFA; } textarea { width: 27em; height: 9em; } ul { list-style: square; } a { color: #A56; } a:hover { color: #C58; } a:active { color: #C58; } a:visited { color: #943; } h1 { font-family: Helvetica, sans-serif; font-size: 24px; margin-top: 10px; margin-bottom: 15px; } #navbar { margin: 0; padding: 0; height: 1em; } #navbar li { list-style: none; float: left; } #navbar li a { display: block; padding: 3px 8px; background-color: #C0C0C0; color: #fff; text-decoration: none; } #navbar li ul { display: none; width: 10em; background-color: #808080; } #navbar li:hover ul { display: block; position: absolute; margin: 0; padding: 0; } #navbar li:hover li { float: none; } #navbar li:hover li a { background-color: #808080; border-bottom: 1px solid #fff; color: #000; } #navbar li li a:hover { background-color: #808080; } body { font-family: Helvetica, sans-serif; font-size: 14px; background: url(http://hackage.haskell.org/platform/images/background.jpg); background-repeat: no-repeat ; } h2 { font-family: Helvetica, sans-serif; font-size: 18px; margin-top: 10px; margin-bottom: 15px; } #main { padding: 1em; border: #CCC solid 2px; border-radius: 15px; margin: 1em; width: 37em; margin: 1em auto; background: #F2F2F2; line-height: 1.5em; color: #333; } .required { margin: 1em 0; } .optional { margin: 1em 0; } label { width: 8em; display: inline-block; } input,textarea { background: #FAFAFA; } textarea { width: 27em; height: 9em; } ul { list-style: square; } a { color: #A56; } a:hover { color: #C58; } a:active { color: #C58; } a:visited { color: #943; }
app/styles/app-theme.html
aperritano/wallcology-admin-polymer
<!-- @license Copyright (c) 2015 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt --> <style is="custom-style"> /* Polymer includes a shim for CSS Custom Properties that we can use for application theming. Below, you'll find the default palette for the Polymer Starter Kit layout. Feel free to play with changing the colors used or generate your own palette of colours at MaterialPalette.com. See https://www.polymer-project.org/1.0/docs/devguide/styling.html#xscope-styling-details for further information on custom CSS properties. */ /* Application theme */ :root { --dark-primary-color: #303F9F; --default-primary-color: #3F51B5; --light-primary-color: #C5CAE9; --text-primary-color: #ffffff; /*text/icons*/ --accent-color: #FF4081; --primary-background-color: #c5cae9; --primary-text-color: #212121; --secondary-text-color: #727272; --disabled-text-color: #bdbdbd; --divider-color: #B6B6B6; /* Components */ /* paper-drawer-panel */ --drawer-menu-color: #ffffff; --drawer-border-color: 1px solid #ccc; --drawer-toolbar-border-color: 1px solid rgba(0, 0, 0, 0.22); /* paper-menu */ --paper-menu-background-color: #fff; --menu-link-color: #111111; } /* General styles */ #drawerToolbar { color: var(--secondary-text-color); background-color: var(--drawer-menu-color); border-bottom: var(--drawer-toolbar-border-color); height: 64px; } paper-material { border-radius: 2px; height: 100%; padding: 16px 0 16px 0; width: calc(98.66% - 16px); margin: 16px auto; background: white; } paper-menu iron-icon { margin-right: 33px; opacity: 0.54; } .paper-menu > .iron-selected { color: var(--default-primary-color); } paper-menu a { text-decoration: none; color: var(--menu-link-color); display: -ms-flexbox; display: -webkit-flex; display: flex; -ms-flex-direction: row; -webkit-flex-direction: row; flex-direction: row; -ms-flex-align: center; -webkit-align-items: center; align-items: center; font-family: 'Roboto', 'Noto', sans-serif; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; font-size: 14px; font-weight: 400; line-height: 24px; min-height: 48px; padding: 0 16px; } #mainToolbar .middle { margin-left: 32px; } #mainToolbar.has-shadow .middle { font-size: 20px; padding-bottom: 0; margin-left: 48px; } /* Height of the scroll area */ .content { height: 900px; } /* Breakpoints */ /* Small */ @media (max-width: 600px) { paper-material { --menu-container-display: none; width: calc(97.33% - 32px); padding-left: 16px; padding-right: 16px; } .paper-font-display1 { font-size: 12px; } .app-name { font-size: 26px; } #drawer .paper-toolbar { margin-left: 16px; } #overlay { min-width: 360px; } .bg { background: white; } } /* Tablet+ */ @media (min-width: 601px) { paper-material { width: calc(98% - 46px); margin-bottom: 32px; padding-left: 30px; padding-right: 30px; } #drawer.paper-drawer-panel > [drawer] { border-right: 1px solid rgba(0, 0, 0, 0.14); } iron-pages { padding: 48px 62px; } } /* Material Design Adaptive Breakpoints */ /* Below you'll find CSS media queries based on the breakpoint guidance published by the Material Design team. You can choose to use, customise or remove these breakpoints based on your needs. http://www.google.com/design/spec/layout/adaptive-ui.html#adaptive-ui-breakpoints */ /* mobile-small */ @media all and (min-width: 0) and (max-width: 360px) and (orientation: portrait) { } /* mobile-large */ @media all and (min-width: 361px) and (orientation: portrait) { } /* mobile-small-landscape */ @media all and (min-width: 0) and (max-width: 480px) and (orientation: landscape) { } /* mobile-large-landscape */ @media all and (min-width: 481px) and (orientation: landscape) { } /* tablet-small-landscape */ @media all and (min-width: 600px) and (max-width: 960px) and (orientation: landscape) { } /* tablet-large-landscape */ @media all and (min-width: 961px) and (orientation: landscape) { } /* tablet-small */ @media all and (min-width: 600px) and (orientation: portrait) { } /* tablet-large */ @media all and (min-width: 601px) and (max-width: 840px) and (orientation : portrait) { } /* desktop-x-small-landscape */ @media all and (min-width: 0) and (max-width: 480px) and (orientation: landscape) { } /* desktop-x-small */ @media all and (min-width: 0) and (max-width: 480px) and (max-aspect-ratio: 4/3) { } /* desktop-small-landscape */ @media all and (min-width: 481px) and (max-width: 840px) and (orientation: landscape) { } /* desktop-small */ @media all and (min-width: 481px) and (max-width: 840px) and (max-aspect-ratio: 4/3) { } /* desktop-medium-landscape */ @media all and (min-width: 841px) and (max-width: 1280px) and (orientation: landscape) { } /* desktop-medium */ @media all and (min-width: 841px) and (max-width: 1280px) and (max-aspect-ratio: 4/3) { } /* desktop-large */ @media all and (min-width: 1281px) and (max-width: 1600px) { } /* desktop-xlarge */ @media all and (min-width: 1601px) and (max-width: 1920px) { } </style>
docs/api/com/mxgraph/util/class-use/mxCellRenderer.CanvasFactory.html
wvc/jgraphx
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_51) on Fri Aug 28 15:40:59 CEST 2015 --> <title>Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (JGraph X 3.4.0.0 API Specification)</title> <meta name="date" content="2015-08-28"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (JGraph X 3.4.0.0 API Specification)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../com/mxgraph/util/mxCellRenderer.CanvasFactory.html" title="class in com.mxgraph.util">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><em><p><b>JGraph X 3.4.0.0</b></p></em></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?com/mxgraph/util/class-use/mxCellRenderer.CanvasFactory.html" target="_top">Frames</a></li> <li><a href="mxCellRenderer.CanvasFactory.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory" class="title">Uses of Class<br>com.mxgraph.util.mxCellRenderer.CanvasFactory</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../com/mxgraph/util/mxCellRenderer.CanvasFactory.html" title="class in com.mxgraph.util">mxCellRenderer.CanvasFactory</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#com.mxgraph.util">com.mxgraph.util</a></td> <td class="colLast"> <div class="block">This package provides utility classes such as mxConstants, mxUtils, mxPoint and mxRectangle as well as all classes for custom events and the undo history.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="com.mxgraph.util"> <!-- --> </a> <h3>Uses of <a href="../../../../com/mxgraph/util/mxCellRenderer.CanvasFactory.html" title="class in com.mxgraph.util">mxCellRenderer.CanvasFactory</a> in <a href="../../../../com/mxgraph/util/package-summary.html">com.mxgraph.util</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../com/mxgraph/util/package-summary.html">com.mxgraph.util</a> with parameters of type <a href="../../../../com/mxgraph/util/mxCellRenderer.CanvasFactory.html" title="class in com.mxgraph.util">mxCellRenderer.CanvasFactory</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../com/mxgraph/canvas/mxICanvas.html" title="interface in com.mxgraph.canvas">mxICanvas</a></code></td> <td class="colLast"><span class="strong">mxCellRenderer.</span><code><strong><a href="../../../../com/mxgraph/util/mxCellRenderer.html#drawCells(com.mxgraph.view.mxGraph, java.lang.Object[], double, com.mxgraph.util.mxRectangle, com.mxgraph.util.mxCellRenderer.CanvasFactory)">drawCells</a></strong>(<a href="../../../../com/mxgraph/view/mxGraph.html" title="class in com.mxgraph.view">mxGraph</a>&nbsp;graph, <a href="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>[]&nbsp;cells, double&nbsp;scale, <a href="../../../../com/mxgraph/util/mxRectangle.html" title="class in com.mxgraph.util">mxRectangle</a>&nbsp;clip, <a href="../../../../com/mxgraph/util/mxCellRenderer.CanvasFactory.html" title="class in com.mxgraph.util">mxCellRenderer.CanvasFactory</a>&nbsp;factory)</code> <div class="block">Draws the given cells using a Graphics2D canvas and returns the buffered image that represents the cells.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../com/mxgraph/util/mxCellRenderer.CanvasFactory.html" title="class in com.mxgraph.util">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><em><p><b>JGraph X 3.4.0.0</b></p></em></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?com/mxgraph/util/class-use/mxCellRenderer.CanvasFactory.html" target="_top">Frames</a></li> <li><a href="mxCellRenderer.CanvasFactory.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small><font size=1>Copyright (c) 2010 <a href="http://www.mxgraph.com/" target="_blank">Gaudenz Alder</a>. All rights reserved.</font></small></p> </body> </html>
mockups/error.html
mozilla/betafarm
<!DOCTYPE html> <html> <head> <title>Error : Mozilla Innovation</title> <meta name="viewport" content="initial-scale=1.0; maximum-scale=1.0; width=device-width;"> <link rel="stylesheet/less" href="css/css-master.less" type="text/css" media="screen"> <!-- <link rel="icon" type="image/x-icon" href="favicon.png"> --> <script src="js/jquery-1.6.1.min.js" type="text/javascript" charset="utf-8"></script> <script src="js/less-1.1.0.min.js" type="text/javascript" charset="utf-8"></script> <script src="js/functions.js" type="text/javascript" charset="utf-8"></script> </head> <body> <div id="grid"></div> <div id="wrapper" class="clearfix"> <header id="universalHeader" class="clearfix"> <div id="icon" class="c2"> <a href="index.html"><img class="block" src="i/logo.png" alt="mozilla innovation"></a> </div> <nav id="topNav" class="c4"> <ul class="clearfix"> <li class="mainItem"> <a class="topic dropdown" href="projects.html">What We Do</a> <ul class="dropdown"> <li><a class="topic" href="projects.html">projects</a></li> <li><a class="topic" href="programs.html">programs</a></li> </ul> </li> <li class="mainItem"> <a class="event" href="events.html">Events</a> </li> <li class="mainItem"> <a class="people" href="people.html">People</a> </li> <li class="mainItem"><a class="about" href="aboutMain.html">About</a></li> <li class="mainItem"><a class="login" href="signedin.html">Sign In</a></li> </ul> </nav> </header> <hr> <section id="ohnoes" class="clearfix"> <div class="c1"></div> <div class="c4 paper"> <h2>An Error Occurred &#x2639;</h2> <p class="serif"><em>Oh, no!</em> It looks like an unexpected error occurred. We've already notified the site administrators. Please try again now, or in a few minutes.</p> <p class="serif right">&mdash;&hearts;, the Message Bot</p> </div> </section> </div> <section id="about" class="clearfix"> <div id="wrapper"> <div class="c1"> <img class="block" src="http://placehold.it/140x63/fff/ccc"> </div> <div class="c2"> <p><strong>Mozilla Innovation</strong> embraces the spirit of open innovation and experimentation on the web. Curious? Find out <a class="brandColor" href="#">more about us &rarr;</a></p> </div> <div class="c1"></div> <div class="c2 actions"> <p>follow us or <a class="brandColor" href="#">sign up</a> for an account</p> <ul> <li class="icon twitter"><a href="#">twitter</a></li> <li class="icon facebook"><a href="#">facebook</a></li> </ul> </div> </div> </section> <footer class="clearfix"> <div id="wrapper"> <div class="c2"> <strong>Mozilla Innovation 2011</strong> </div> <div class="c1"> <strong>Info</strong> <ul> <li><a href="#">contact us</a></li> <li><a href="#">sign up</a></li> <li><a href="#">about us</a></li> <li><a href="#">privacy policy</a></li> </ul> </div> <div class="c1"> <strong>Topics</strong> <ul> <li><a href="#">all topics</a></li> <li><a href="#">identity</a></li> <li><a href="#">social</a></li> <li><a href="#">user mediated data</a></li> <li><a href="#">personalization</a></li> <li><a href="#">contextual integrity</a></li> <li><a href="#">read-write ability</a></li> </ul> </div> <div class="c1"> <strong>Events</strong> <ul> <li><a href="#">events home</a></li> <li><a href="#">education</a></li> <li><a href="#">calendar</a></li> </ul> </div> <div class="c1"> <strong>People</strong> <ul> <li><a href="#">all members</a></li> <li><a href="#">staff</a></li> </ul> </div> </div> </footer> </body> </html>