The WP Remote WordPress Plugin - Version 4.61

Version Description

  • Streamlined overall UI
  • Firewall Logging Improvements
  • Improved host info
Download this release

Release Info

Developer ritesh.soni36
Plugin Icon 128x128 The WP Remote WordPress Plugin
Version 4.61
Comparing to
See all releases

Code changes from version 4.58 to 4.61

admin/account_details.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="wpremote">
2
+ <div id="main-page">
3
+ <section id="header">
4
+ <div class="custom-container">
5
+ <?php require_once dirname( __FILE__ ) . "/components/header_top.php"; ?>
6
+ </div>
7
+ </section>
8
+ <?php
9
+ require_once dirname( __FILE__ ) . "/components/list_accounts.php";
10
+ require_once dirname( __FILE__ ) . "/components/testimony.php";
11
+ require_once dirname( __FILE__ ) . "/components/footer.php";
12
+ ?>
13
+ </div>
14
+ </div>
admin/add_new_account.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="wpremote">
2
+ <div id="add-new-account">
3
+ <section id="header">
4
+ <div class="custom-container">
5
+ <?php
6
+ require_once dirname( __FILE__ ) . "/components/header_top.php";
7
+ require_once dirname( __FILE__ ) . "/components/form.php";
8
+ ?>
9
+ </div>
10
+ </section>
11
+ <?php
12
+ require_once dirname( __FILE__ ) . "/components/features_list.php";
13
+ require_once dirname( __FILE__ ) . "/components/testimony.php";
14
+ require_once dirname( __FILE__ ) . "/components/footer.php";
15
+ ?>
16
+ </div>
17
+ </div>
admin/components/features_list.php ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $heading = "COMPLETE SITE MANAGEMENT";
3
+ $subheading = "Make site management effortless with WP Remote";
4
+ $img_url = plugins_url("/../../img/wpr-features-list.svg", __FILE__);
5
+ ?>
6
+ <section id="list-features">
7
+ <div class="custom-container">
8
+ <div class="heading text-center">
9
+ <h5><?php echo $heading; ?></h5>
10
+ <h4><?php echo $subheading; ?></h4>
11
+ </div>
12
+ <div class="row">
13
+ <div class="col-xs-12 d-flex">
14
+ <div class="col-xs-12 col-lg-6">
15
+ <div>
16
+ <img class="main-image" src="<?php echo $img_url; ?>"/>
17
+ </div>
18
+ </div>
19
+ <div class="col-xs-12 col-lg-6 d-flex">
20
+ <div id="accordion">
21
+ <div>
22
+ <input type="radio" name="accordion-group" id="option-1" checked />
23
+ <div class="acc-card">
24
+ <label for="option-1">
25
+ <h5>Complete Site Management</h5>
26
+ <h4>Update all your sites in one-click from our fast and flexible dashboard.</h4>
27
+ </label>
28
+ <div class="article">
29
+ <p>Sit back, let WP Remote automatically install updates and never worry about unexpected downtimes.</p>
30
+ </div>
31
+ </div>
32
+ </div>
33
+ <div>
34
+ <input type="radio" name="accordion-group" id="option-2" />
35
+ <div class="acc-card">
36
+ <label for="option-2">
37
+ <h5>100% Guaranteed Security</h5>
38
+ <h4>Keep your sites 100% safe with comprehensive WordPress security</h4>
39
+ </label>
40
+ <div class="article">
41
+ <p>Are you prepared to handle multiple hacks in the same day? Reusing the same plugins and themes means that one single vulnerability can affect multiple clients.</p>
42
+ </div>
43
+ </div>
44
+ </div>
45
+ <div>
46
+ <input type="radio" name="accordion-group" id="option-3" />
47
+ <div class="acc-card">
48
+ <label for="option-3">
49
+ <h5>Integrated Free Staging</h5>
50
+ <h4>Safely test changes and updates with 1-click integrated staging for all your sites.</h4>
51
+ </label>
52
+ <div class="article">
53
+ <p>Test changes and fix bugs by cloning your live website with a free staging environment, powered by BlogVault. Catch errors earlier and make better websites for your clients.</p>
54
+ </div>
55
+ </div>
56
+ </div>
57
+ </div>
58
+ </div>
59
+ </div>
60
+ </div>
61
+ </div>
62
+ </section>
admin/components/footer.php ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php $subtitle = "25,000 happy customers and counting"; ?>
2
+ <section id="footer">
3
+ <div class="custom-container text-center" id="">
4
+ <div class="row">
5
+ <div class="col-lg-12">
6
+ <div class="heading">
7
+ <h5>TRUSTED BY BRANDS WORLDWIDE</h5>
8
+ <h4><?php echo $subtitle; ?></h4>
9
+ </div>
10
+ <div class="heading text-center brand d-flex ">
11
+ <img src="<?php echo plugins_url("/../../img/maintainn.png", __FILE__); ?>" style="height: 32px;" />
12
+ <img src="<?php echo plugins_url("/../../img/sitecare.png", __FILE__); ?>" style="height: 42px;" />
13
+ <img src="<?php echo plugins_url("/../../img/wpbuffs.png", __FILE__); ?>" style="height: 42px;"/>
14
+ <img src="<?php echo plugins_url("/../../img/gowp_new.png", __FILE__); ?>" style="height: 42px;"/>
15
+ <img src="<?php echo plugins_url("/../../img/valet.png", __FILE__); ?>" style="height: 32px;" />
16
+ </div>
17
+ </div>
18
+ </div>
19
+ </div>
20
+ </section>
admin/components/form.php ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="email-form">
2
+ <div class="row">
3
+ <div class="col-xs-12 form-container">
4
+ <div class="search-container text-center ">
5
+ <form action="<?php echo $this->bvinfo->appUrl(); ?>/plugin/bvstart" style="padding-top:10px; margin: 0px;" onsubmit="document.getElementById('get-started').disabled = true;" method="post" name="signup">
6
+ <input type='hidden' name='bvsrc' value='wpplugin'/>
7
+ <?php echo $this->siteInfoTags(); ?>
8
+ <input type="text" placeholder="Enter your email address to continue" id="email" name="email" class="search" required>
9
+ <h5 class="check-box-text mt-2"><input type="checkbox" class="check-box" name="consent" value="1" required>
10
+ <label>I agree to WPRemote <a href="https://wpremote.com/tos/" target="_blank" rel="noopener noreferrer">Terms of Service</a> and <a href="https://wpremote.com/privacy/" target="_blank" rel="noopener noreferrer">Privacy Policy</a></label></h5>
11
+ <button id="get-started" type="submit" class="e-mail-button"><span>Get Started</span></button>
12
+ </form>
13
+ </div>
14
+ </div>
15
+ </div>
admin/components/header_top.php ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $plugin_slug = "wpremote";
3
+ $plugin_logo = plugins_url("/../../img/wpr-top-logo.svg", __FILE__);
4
+ $title = "Manage hundreds of WordPress websites with half the effort";
5
+ $header_logo_link = $this->getWebPage() . "/?utm_source=mc_plugin_lp_logo&utm_medium=logo_link&utm_campaign=mc_plugin_lp_header&utm_term=header_logo&utm_content=image_link";
6
+ ?>
7
+ <div class="header-top">
8
+ <div class="top-links">
9
+ <span><a href="https://wordpress.org/support/plugin/<?php echo $plugin_slug; ?>/reviews/#new-post" target="_blank" rel="noopener noreferrer">
10
+ Leave a Review
11
+ </a></span>
12
+ &nbsp;
13
+ <span><a href="https://wordpress.org/support/plugin/<?php echo $plugin_slug; ?>/" target="_blank" rel="noopener noreferrer">
14
+ Need Help?
15
+ </a></span>
16
+ </div>
17
+ <div class="logo-img">
18
+ <a href="<?php echo $header_logo_link; ?>" target="_blank" rel="noopener noreferrer">
19
+ <img height="70" src="<?php echo $plugin_logo; ?>" alt="Logo">
20
+ </a>
21
+ </div>
22
+ <h2 class="text-center heading"><?php echo $title; ?></h2>
23
+ </div>
admin/components/list_accounts.php ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <section id="account-list">
2
+ <?php $accounts = WPRAccount::accountsByPlugname($this->settings); ?>
3
+ <div class="account-list-container custom-container text-center">
4
+ <h4>Accounts associated with this website</h4>
5
+ <div class="table-container">
6
+ <table>
7
+ <tr><th>Account Email</th><th>Last Synced At</th><th></th></tr>
8
+ <?php
9
+ $nonce = wp_create_nonce('bvnonce');
10
+ foreach($accounts as $key => $value) {
11
+ ?>
12
+ <form action="" method="post">
13
+ <input type='hidden' name='bvnonce' value="<?php echo $nonce; ?>" />
14
+ <input type='hidden' name='pubkey' value="<?php echo $key; ?>" />
15
+ <tr>
16
+ <td><?php echo $value['email']; ?></td>
17
+ <td><?php echo date('Y-m-d H:i:s', $value['lastbackuptime']); ?></td>
18
+ <td><input type='submit' class="button-primary" value='Disconnect' name='disconnect' onclick="return confirm('Are you sure?');"></td>
19
+ </tr>
20
+ </form>
21
+ <?php } ?>
22
+ </table>
23
+ </div>
24
+ <div style="margin: 15px;">
25
+ <a class="btn btn-primary" href="<?php echo $this->bvinfo->appUrl(); ?>" target="_blank">Visit Dashboard</a>
26
+ <a class="btn btn-primary" style="margin-left: 15px;" href="<?php echo $this->mainUrl('&add_account=true'); ?>">Connect New Account</a>
27
+ </div>
28
+ </div>
29
+ </section>
admin/components/testimony.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <section id="testimony">
2
+ <div class="carousel text-center">
3
+ <div class="left-fig"></div>
4
+ <div class="slide-div text-center">
5
+ <input type="radio" name="slides" id="radio-1" checked>
6
+ <ul class="slides text-center">
7
+ <li class="slide text-center">
8
+ <img class="user" src="https://wpremote.com/wp-content/themes/generatepress_child/assets/images/alessio-santoro.jpg"/><br/>
9
+ <p>
10
+ <h1>&ldquo;</h1>
11
+ <h4>"WP Remote Is superior to ALL OTHERS BY FAR.
12
+ I spent 1000$+ on others: used Updraft, ManageWP etc...All of those gave me some problems.
13
+ WP Remote is simple, super fast, doesn’t use server resources and technically speaking perfect."</h4>
14
+ <h5>Alessio Santoro, Freelance Web Designer</h5>
15
+ </p>
16
+ </li>
17
+ </ul>
18
+ <div class="slidesNavigation text-center"></div>
19
+ </div>
20
+ </div>
21
+ </section>
callback/wings/info.php CHANGED
@@ -252,6 +252,10 @@ class BVInfoCallback extends BVCallbackBase {
252
  $host_info['IS_GRIDPANE'] = true;
253
  }
254
 
 
 
 
 
255
  return array('host_info' => $host_info);
256
  }
257
 
252
  $host_info['IS_GRIDPANE'] = true;
253
  }
254
 
255
+ if (defined('WPE_APIKEY')) {
256
+ $host_info['WPE_APIKEY'] = WPE_APIKEY;
257
+ }
258
+
259
  return array('host_info' => $host_info);
260
  }
261
 
css/bootstrap.min.css ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ /*!
2
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
3
+ * Copyright 2011-2016 Twitter, Inc.
4
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
+ *//*! 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:700}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 silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}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{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!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^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{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 td,.table-bordered th{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:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro: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}:after,:before{-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}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>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,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,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,.h5,.h6,h4,h5,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:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{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}dd,dt{line-height:1.42857143}dt{font-weight:700}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[data-original-title],abbr[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 ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer: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 .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer: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:700;-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-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.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-md-1,.col-md-10,.col-md-11,.col-md-12,.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-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.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-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{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-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{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-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{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-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{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>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{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>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{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>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{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>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{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:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{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=checkbox]:focus,input[type=radio]:focus{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::-ms-expand{background-color:transparent;border:0}.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-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.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],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio 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}select[multiple].input-sm,textarea.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 select[multiple].form-control,.form-group-sm textarea.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}select[multiple].input-lg,textarea.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 select[multiple].form-control,.form-group-lg textarea.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}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-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 .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-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 .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-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 .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{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:11px;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:400;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.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{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.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{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.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{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.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{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.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{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.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{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.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{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.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{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.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{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.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{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.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{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.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{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.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;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:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{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=button].btn-block,input[type=reset].btn-block,input[type=submit].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}.dropdown,.dropup{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:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{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-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{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-left-radius:4px;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-right-radius:4px;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=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{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 .form-control:focus{z-index:3}.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}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.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}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn: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:400;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=checkbox],.input-group-addon input[type=radio]{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-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){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:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{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:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{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:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{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:focus,.nav-tabs>li.active>a:hover{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:focus,.nav-tabs.nav-justified>.active>a:hover{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:focus,.nav-tabs.nav-justified>.active>a:hover{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:focus,.nav-pills>li.active>a:hover{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:focus,.nav-tabs-justified>.active>a:hover{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:focus,.nav-tabs-justified>.active>a:hover{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-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{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-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{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:focus,.navbar-brand:hover{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 .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{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 .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{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:focus,.navbar-default .navbar-brand:hover{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:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{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:focus,.navbar-default .navbar-nav>.open>a:hover{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:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{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:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{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:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{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:focus,.navbar-inverse .navbar-nav>.open>a:hover{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:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{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:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.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:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{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:focus,.pager li>a:hover{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:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{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]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;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-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{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{padding-right:15px;padding-left:15px;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 a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{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:700}.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-bar-striped,.progress-striped .progress-bar{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-bar.active,.progress.active .progress-bar{-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-body,.media-left,.media-right{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:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{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:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .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:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{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:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{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:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{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:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{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>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.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>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody: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:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.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 th:first-child,.panel>.table-responsive:first-child>.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 th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.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 th:last-child,.panel>.table-responsive:first-child>.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 th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.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 th:first-child,.panel>.table-responsive:last-child>.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 th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.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 th:last-child,.panel>.table-responsive:last-child>.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 th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.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 td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.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>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{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 embed,.embed-responsive iframe,.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:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;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{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:400;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:400;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>a>img,.carousel-inner>.item>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.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{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);background-color:rgba(0,0,0,0);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:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{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-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row: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-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-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}td.visible-xs,th.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}td.visible-sm,th.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}td.visible-md,th.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}td.visible-lg,th.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}td.visible-print,th.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}}
6
+ /*# sourceMappingURL=bootstrap.min.css.map */
css/bvplugin.min.css CHANGED
@@ -1 +1 @@
1
- .bv-box,.new-account-panel{-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.24),0 0 2px 0 rgba(0,0,0,.24)}<style>.header{background:#25bea0}.top-links{width:400px;float:right;margin-top:15px}.bv-top-button{padding:5px;margin:5px;border:1px solid #17252A;display:inline-block;background:#17252A;border-radius:5px;float:right}.bv-top-button:hover{background:rgba(0,0,0,.6)}.bv-top-button a{text-decoration:none;color:#FFF}.main-title{text-align:center;font-size:32px;margin:10px;text-decoration:underline;font-weight:700}.bv-box{background:#FFF}.new-account-panel{margin-top:10px;margin-bottom:0;border:1px solid #000}.bv-input{font-size:20px;height:40px!important}.bv-tick{color:#52BE80;font-weight:700;padding-left:3px}h2{margin:0;padding:0}.form-title{font-size:24px;margin-bottom:10px}.select-purpose{width:200px;vertical-align:baseline !important;height:40px}.get-started-button{margin-left:10px;height:40px;margin-top:0;font-weight:700;color:#FFF}.side{float:left;margin-top:15px;padding-left:0;padding-right:0}.side-box{padding:0;border:1px solid #000}.side-box-title{font-size:14px;background:#17252a;text-align:center;color:#FFF}.bv-upgrade-button{background:#FF6037;width:80%;margin:0 auto 10px;text-align:center;padding:10px;border-radius:5px}.bv-upgrade-button a{color:#FFF;text-decoration:none;font-size:18px}.footer-logo{margin-right:30px}
1
+ @import url('https://fonts.googleapis.com/css?family=Roboto:400, 500');@import url(https://fonts.googleapis.com/css2?family=Noto+Serif&display=swap);body a,body h1,body h2,body h3,body h4{font-family:Roboto,sans-serif}body button,body h5,body h6,body li,body p,body ul li a{font-family:Roboto,sans-serif}.text-center{text-align:center}.text-right{text-align:right}.d-flex{display:flex}.center-align-dflex{align-items:center;display:flex;justify-content:center;flex-direction:column}.h-100{height:100%}.mb-2{margin-bottom:20px}.mr-1{margin-right:10px}.mt-1{margin-top:10px}.float-right{float:right}.fw-600{font-weight:600}.text-white{color:#fff!important}.text-capitalize{text-transform:capitalize}.text-uppercase{text-transform:uppercase}input[type=checkbox]:checked::before{width:2.3rem;margin:-1px 0 0 -4px}input[type=checkbox]:focus{outline:unset!important}.color-grey{color:#4a4a4a!important}.color-blue{color:#7683ad!important}a{outline:unset!important;box-shadow:none!important}.custom-container{max-width:1440px;margin:auto}#wpcontent{padding:0!important}#wpbody-content{padding-bottom:65px;float:left;width:100%;overflow:visible!important}#add-new-account #header .intro-video{display:none}#header{padding-top:77px;padding-bottom:40px;background-color:#e1f9fe;height:100%;position:relative;text-align:center}#header .top-links{position:absolute;top:15px;right:10px}#header .top-links a{text-decoration:underline}.wpremote #header a:hover{color:#050504}#header .heading{font-family:Roboto;font-style:normal;font-size:22px;font-weight:500}#header .intro-video,#list-features .intro-video{padding:10px 25px;background:rgba(255,255,255);border:1px solid #e3ebfd;box-sizing:border-box;border-radius:8px;max-width:300px;font-family:Lato;font-weight:400;font-style:normal;font-size:14px;line-height:17px;color:#7683ad;margin:auto;margin-top:15px}#list-features .intro-video{margin:unset;margin-top:50px}.email-form{margin-top:10px}.email-form h5.check-box-text input.check-box{position:relative;width:20px;height:20px;margin:0 0 5px 0;border-radius:4px}.email-form h5.check-box-text{font-style:normal;font-weight:400;font-size:14px;line-height:17px;text-align:center;letter-spacing:.291667px;color:#4a4a4a;margin:15px 5px}.email-form .search-container label>a{text-decoration:underline}.email-form input.search{background:#fff;box-sizing:border-box;box-shadow:0 2px 10px rgba(204,203,203,.4);border-radius:8px;padding:25px;max-width:600px;width:100%;font-family:Roboto;font-weight:400;font-size:16px;line-height:10px;letter-spacing:.319444px;height:52px}.wpremote .email-form input.search{border:1px solid rgba(255,216,3,.5)}.email-form .e-mail-button{border:1px solid #e5e5e5;box-sizing:border-box;padding:25px;max-width:600px;width:100%;border-radius:8px;font-style:normal;font-weight:600;font-size:17px;line-height:1px;text-align:center;letter-spacing:.333333px;color:#4a4a4a}.email-form .e-mail-button span{color:#050504}.email-form .e-mail-button:active{transform:translateY(.5px)}.wpremote .email-form .e-mail-button{background:#ffd803}#account-list h4,#footer h4,#list-features h4{font-family:Roboto;font-weight:500;font-style:normal;font-size:24px;line-height:28px;text-align:center;letter-spacing:.416667px;color:#4a4a4a}#account-list h5,#footer h5,#list-features h5{font-family:Roboto;font-weight:400;font-style:normal;font-size:12px;line-height:28px;text-align:center;letter-spacing:.8px;text-transform:uppercase}.wpremote h5{color:#2f9d92}#footer .brand{justify-content:center}#footer .brand img{margin:0 15px}#footer .heading{margin-bottom:30px}#wpbody-content{padding-bottom:65px;float:left;width:100%;overflow:visible!important}#wpbody-content{padding-bottom:65px;float:left;width:100%;overflow:visible!important}#account-list,#footer,#list-features{padding:50px 0}#list-features .heading{padding-bottom:20px}.wpremote #list-features img.main-image{width:100%}#list-features ul{list-style:inside}#list-features li{font-size:12px}#list-features #accordion input{display:none}#list-features #accordion{background:#fff;font-family:Roboto;font-style:normal}#list-features #accordion h4{color:#333;font-weight:500;font-size:18px;line-height:24px;text-align:left}#list-features #accordion h5{color:#2f9d92;font-weight:400;font-size:11px;line-height:22px;letter-spacing:.5px}.wpremote #list-features #accordion h5{color:#2f9d92}#list-features #accordion label{border-radius:8px;display:block;margin-bottom:.125em;padding:.25em 1em;z-index:20}#list-features #accordion label:hover{text-decoration:underline}#list-features #accordion .article{display:none;overflow:hidden;z-index:10;font-weight:400;font-size:14px;line-height:22px;padding:.25em 1em;color:#888}#list-features #accordion input:checked~.acc-card{border:1px solid rgba(101,99,255,.3);box-sizing:border-box;box-shadow:0 2px 8px rgba(229,229,229,.25);border-radius:8px;background:rgba(225,249,254,.3)}#list-features #accordion input:checked~.acc-card .article{display:block}#account-list .account-list-container{width:800px;margin:auto;padding:20px;box-sizing:border-box;box-shadow:2px 2px 9px rgb(212 212 212),0 0 9px rgb(212 212 212);border-radius:11.5px}#account-list table{min-width:700px;margin:auto;margin-top:30px}#account-list .table-container{max-height:340px;overflow:auto}#account-list table input.button-primary{box-shadow:unset}#account-list .table-container::-webkit-scrollbar{width:6px;height:6px}#account-list .table-container::-webkit-scrollbar-thumb{background:#ccc;border-radius:10px;width:6px;height:6px}#account-list table tr th{text-align:center}#account-list table tr td{padding:10px}#testimony{overflow:hidden}#testimony .carousel{padding-top:80px;text-align:center;height:auto;width:100%;margin:auto;position:relative}#testimony .slide h1{font-family:"Noto Serif";font-style:normal;font-weight:400;font-size:144px;line-height:51px;text-align:center;letter-spacing:.9px;color:#7b7afe;padding:20px;max-width:1440px;margin:auto}#testimony .slide h4{font-family:Roboto;font-style:normal;font-weight:400;font-size:28px;line-height:46px;text-align:center;letter-spacing:.2px;color:#fff;padding:20px;max-width:1440px;margin:auto}#testimony .slide h5{font-family:Roboto;font-style:normal;font-weight:400;font-size:18px;line-height:21px;text-align:center;letter-spacing:.15px;color:#fff;mix-blend-mode:normal;opacity:.58;margin:20px}#testimony .carousel .slides{width:400%;left:0;padding-left:0;padding-top:1em;list-style:none;position:relative;-webkit-transition:transform .5s;-moz-transition:transform .5s;-o-transition:transform .5s;transition:transform .5s}#testimony .carousel .slide .user{position:relative;top:-90px;border-radius:50%;height:140px;width:140px}#testimony .carousel .slide-div{background:#2d3a67;width:100%}#testimony .carousel .slides li{width:25%;position:relative;float:left}#testimony .carousel li p{margin-top:0}#testimony .carousel .slidesNavigation{display:inline-block;list-style:none;margin:40px}#testimony .carousel input{display:none}#testimony .carousel .slidesNavigation label{float:left;margin:6px;display:block;height:10px;width:10px;-webkit-border-radius:50%;border-radius:50%;border:solid 1px #fff;background:#fff;opacity:.4;font-size:0}#radio-1:checked~.slides{transform:translateX(0)}#radio-2:checked~.slides{transform:translateX(-25%)}#radio-3:checked~.slides{transform:translateX(-50%)}#radio-4:checked~.slides{transform:translateX(-75%)}#testimony .carousel #radio-1:checked~.slidesNavigation label#dotForRadio-1,#testimony .carousel #radio-2:checked~.slidesNavigation label#dotForRadio-2,#testimony .carousel #radio-3:checked~.slidesNavigation label#dotForRadio-3,#testimony .carousel #radio-4:checked~.slidesNavigation label#dotForRadio-4{opacity:1}@media (max-width:624px){#get-started span{display:none}#get-started:before{font-size:13px;content:"Submit"}#footer .brand{justify-content:center}#footer .brand img{margin:20px;display:inline-block}.email-form .search-container label{font-size:11px}#header .heading{font-size:18px}#header .logo-img img{height:60px}#header .intro-video,#list-features .intro-video{max-width:77%}#list-features .intro-video{margin-bottom:15px}#list-features img.main-image{width:100%}#account-list .account-list-container{width:unset;box-shadow:unset;margin:0 10px}#account-list a.btn{margin-bottom:10px}}@media (max-width:1024px){.man-img{display:none}.d-flex{display:inline-block}.intro-video{margin:auto;margin-bottom:70px}}@media (min-width:1024px) and (max-width:1367px){#get-started span{display:none}#get-started:before{content:"Submit"}}@media (min-width:768px){.justify-content-center{justify-content:center}}@media (max-width:1440px){.row{margin-left:0!important;margin-right:0!important}}
img/gowp_new.png ADDED
Binary file
img/maintainn.png ADDED
Binary file
img/sitecare.png ADDED
Binary file
img/valet.png ADDED
Binary file
img/wpbuffs.png ADDED
Binary file
img/wpr-features-list.svg ADDED
@@ -0,0 +1,619 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg width="342" height="226" viewBox="0 0 342 226" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M137.57 36.2453L137.541 36.4434L144.471 37.4325L144.5 37.2344L137.57 36.2453Z" fill="#84A5B1"/>
3
+ <path d="M311.3 222.6L305.8 218.3L306 218.1L311.5 222.5L311.3 222.6Z" fill="#84A5B1"/>
4
+ <path d="M199.595 0.89793L199.414 0.984375L202.44 7.29697L202.62 7.21053L199.595 0.89793Z" fill="#84A5B1"/>
5
+ <path d="M0.31484 119.181L0.19072 119.338L5.68012 123.682L5.80424 123.525L0.31484 119.181Z" fill="#84A5B1"/>
6
+ <path d="M322.158 129.62L315.565 131.973L315.632 132.161L322.225 129.808L322.158 129.62Z" fill="#84A5B1"/>
7
+ <path d="M230.306 218.76L230.111 218.805L231.672 225.628L231.867 225.584L230.306 218.76Z" fill="#84A5B1"/>
8
+ <path d="M38.8835 206.017L35.8077 212.305L35.9874 212.393L39.0632 206.104L38.8835 206.017Z" fill="#84A5B1"/>
9
+ <path d="M323.626 39.6912L320.529 45.9688L320.708 46.0573L323.806 39.7797L323.626 39.6912Z" fill="#84A5B1"/>
10
+ <path d="M28.3 89.9996C27.4 89.9996 26.6 89.1996 26.6 88.2996C26.6 87.3996 27.4 86.5996 28.3 86.5996C29.2 86.5996 30 87.3996 30 88.2996C30 89.1996 29.3 89.9996 28.3 89.9996ZM28.3 86.8996C27.5 86.8996 26.9 87.4996 26.9 88.2996C26.9 89.0996 27.5 89.6996 28.3 89.6996C29.1 89.6996 29.7 88.9996 29.7 88.2996C29.8 87.4996 29.1 86.8996 28.3 86.8996Z" fill="#84A5B1"/>
11
+ <path d="M340.2 76.5992C339.3 76.5992 338.5 75.7992 338.5 74.8992C338.5 73.9992 339.3 73.1992 340.2 73.1992C341.1 73.1992 341.9 73.9992 341.9 74.8992C341.9 75.7992 341.1 76.5992 340.2 76.5992ZM340.2 73.3992C339.4 73.3992 338.8 73.9992 338.8 74.7992C338.8 75.5992 339.4 76.1992 340.2 76.1992C341 76.1992 341.6 75.5992 341.6 74.7992C341.6 73.9992 341 73.3992 340.2 73.3992Z" fill="#84A5B1"/>
12
+ <path d="M49.1 15.4996C48.2 15.4996 47.4 14.6996 47.4 13.7996C47.4 12.8996 48.2 12.0996 49.1 12.0996C50 12.0996 50.8 12.8996 50.8 13.7996C50.8 14.7996 50.1 15.4996 49.1 15.4996ZM49.1 12.3996C48.3 12.3996 47.7 12.9996 47.7 13.7996C47.7 14.5996 48.3 15.1996 49.1 15.1996C49.9 15.1996 50.5 14.5996 50.5 13.7996C50.6 12.9996 49.9 12.3996 49.1 12.3996Z" fill="#84A5B1"/>
13
+ <path d="M3 187.599C2.1 187.599 1.3 186.799 1.3 185.899C1.3 184.999 2.1 184.199 3 184.199C3.9 184.199 4.7 184.999 4.7 185.899C4.7 186.799 3.9 187.599 3 187.599ZM3 184.399C2.2 184.399 1.6 184.999 1.6 185.799C1.6 186.599 2.2 187.199 3 187.199C3.8 187.199 4.39999 186.599 4.39999 185.799C4.49999 185.099 3.8 184.399 3 184.399Z" fill="#84A5B1"/>
14
+ <path d="M294 12.4C293.1 12.4 292.3 11.6 292.3 10.7C292.3 9.8 293.1 9 294 9C294.9 9 295.7 9.8 295.7 10.7C295.6 11.6 294.9 12.4 294 12.4ZM294 9.3C293.2 9.3 292.6 9.9 292.6 10.7C292.6 11.5 293.2 12.1 294 12.1C294.8 12.1 295.4 11.5 295.4 10.7C295.4 9.9 294.7 9.3 294 9.3Z" fill="#84A5B1"/>
15
+ <path d="M163.2 17.0992C162.3 17.0992 161.5 16.2992 161.5 15.3992C161.5 14.4992 162.3 13.6992 163.2 13.6992C164.1 13.6992 164.9 14.4992 164.9 15.3992C164.9 16.2992 164.1 17.0992 163.2 17.0992ZM163.2 13.8992C162.4 13.8992 161.8 14.4992 161.8 15.2992C161.8 16.0992 162.4 16.6992 163.2 16.6992C164 16.6992 164.6 16.0992 164.6 15.2992C164.6 14.5992 164 13.8992 163.2 13.8992Z" fill="#84A5B1"/>
16
+ <path d="M65.6 225.5C64.7 225.5 63.9 224.7 63.9 223.8C63.9 222.9 64.7 222.1 65.6 222.1C66.5 222.1 67.3 222.9 67.3 223.8C67.2 224.7 66.5 225.5 65.6 225.5ZM65.5 222.4C64.7 222.4 64.1 223 64.1 223.8C64.1 224.6 64.7 225.2 65.5 225.2C66.3 225.2 66.9 224.5 66.9 223.8C67 223 66.3 222.4 65.5 222.4Z" fill="#84A5B1"/>
17
+ <path d="M323.7 175.9C322.8 175.9 322 175.1 322 174.2C322 173.3 322.8 172.5 323.7 172.5C324.6 172.5 325.4 173.3 325.4 174.2C325.4 175.2 324.7 175.9 323.7 175.9ZM323.7 172.8C322.9 172.8 322.3 173.4 322.3 174.2C322.3 175 322.9 175.6 323.7 175.6C324.5 175.6 325.1 175 325.1 174.2C325.1 173.5 324.5 172.8 323.7 172.8Z" fill="#84A5B1"/>
18
+ <path d="M12.0063 9.24911L8.11854 15.0703L8.28486 15.1814L12.1727 9.36019L12.0063 9.24911Z" fill="#84A5B1"/>
19
+ <path d="M76.7 55.1992H252.7C254.4 55.1992 255.8 56.5992 255.8 58.2992V176.899C255.8 178.599 254.4 179.999 252.7 179.999H76.7C75 179.999 73.6 178.599 73.6 176.899V58.2992C73.5 56.5992 74.9 55.1992 76.7 55.1992Z" fill="white"/>
20
+ <path d="M252.6 180.2H76.6C74.8 180.2 73.3 178.7 73.3 176.9V58.3C73.3 56.5 74.8 55 76.6 55H252.6C254.4 55 255.9 56.5 255.9 58.3V176.9C255.9 178.8 254.5 180.2 252.6 180.2ZM76.7 55.4C75.1 55.4 73.8 56.7 73.8 58.3V176.9C73.8 178.5 75.1 179.8 76.7 179.8H252.7C254.3 179.8 255.6 178.5 255.6 176.9V58.3C255.6 56.7 254.3 55.4 252.7 55.4H76.7Z" fill="#171D33"/>
21
+ <path d="M79.4 180.099H249.9C253.2 180.099 255.8 177.499 255.8 174.199V168.199H73.6V174.199C73.5 177.499 76.2 180.099 79.4 180.099Z" fill="#FFD802"/>
22
+ <path d="M249.9 180.2H79.4C76.1 180.2 73.4 177.5 73.4 174.2V168.1H255.8V174.2C255.9 177.5 253.2 180.2 249.9 180.2ZM73.7 168.3V174.2C73.7 177.4 76.3 180 79.4 180H249.9C253.1 180 255.7 177.4 255.7 174.2V168.3H73.7Z" fill="#030405"/>
23
+ <path d="M167.6 174.201C167.6 172.601 166.3 171.301 164.7 171.301C163.1 171.301 161.8 172.601 161.8 174.201C161.8 175.801 163.1 177.101 164.7 177.101C166.3 177.101 167.6 175.701 167.6 174.201Z" fill="#CFCFD6"/>
24
+ <path d="M164.7 177.2C163 177.2 161.6 175.8 161.6 174.1C161.6 172.4 163 171 164.7 171C166.4 171 167.8 172.4 167.8 174.1C167.7 175.8 166.4 177.2 164.7 177.2ZM164.7 171.4C163.2 171.4 162 172.6 162 174.1C162 175.6 163.2 176.8 164.7 176.8C166.2 176.8 167.4 175.6 167.4 174.1C167.4 172.7 166.2 171.4 164.7 171.4Z" fill="#171D33"/>
25
+ <path d="M255.7 58.2992C255.7 56.5992 254.3 55.1992 252.6 55.1992H76.7C75 55.1992 73.6 56.5992 73.6 58.2992H255.7Z" fill="#FFD802"/>
26
+ <path d="M255.9 58.3996H73.5V58.2996C73.5 56.4996 75 55.0996 76.7 55.0996H252.6C254.4 55.0996 255.8 56.5996 255.8 58.2996V58.3996H255.9ZM73.7 58.1996H255.6C255.5 56.5996 254.2 55.2996 252.6 55.2996H76.7C75.1 55.2996 73.7 56.5996 73.7 58.1996Z" fill="#030405"/>
27
+ <path d="M151.6 70.9004H85.7V115.6H151.6V70.9004Z" fill="#E2F2FA"/>
28
+ <path d="M151.6 114H85.7V115.6H151.6V114Z" fill="#E2F2FA"/>
29
+ <path d="M91.8 77.2008H88.8C88.7 77.2008 88.6 77.1008 88.6 77.0008V74.0008C88.6 73.9008 88.7 73.8008 88.8 73.8008H91.8C91.9 73.8008 92 73.9008 92 74.0008V77.0008C92 77.1008 91.9 77.2008 91.8 77.2008ZM89 76.8008H91.7V74.1008H89V76.8008Z" fill="#171D33"/>
30
+ <path d="M97.8 77.2008H94.8C94.7 77.2008 94.6 77.1008 94.6 77.0008C94.6 76.9008 94.7 76.8008 94.8 76.8008H97.8C97.9 76.8008 98 76.9008 98 77.0008C98 77.1008 97.9 77.2008 97.8 77.2008Z" fill="#171D33"/>
31
+ <path d="M96.9 103.1C96.8 103.1 96.8 103.1 96.9 103.1C96.7 103 96.7 102.9 96.7 102.8L105.6 85.6C105.6 85.5 105.7 85.5 105.8 85.5C105.9 85.5 105.9 85.5 106 85.6L114.6 98.5L124.7 88.3L124.8 88.2C124.9 88.2 124.9 88.2 124.9 88.3L131.4 96L141.8 101C141.9 101 141.9 101.2 141.9 101.2C141.9 101.3 141.7 101.3 141.7 101.3L131.3 96.3C131.3 96.3 131.3 96.3 131.2 96.3L124.8 88.8L114.7 99L114.6 99.1C114.5 99.1 114.5 99.1 114.5 99L106 86.2L97 103C97 103.1 96.9 103.1 96.9 103.1Z" fill="#171D33"/>
32
+ <path d="M98 102.899C98 102.299 97.5 101.799 96.9 101.799C96.3 101.799 95.8 102.299 95.8 102.899C95.8 103.499 96.3 103.999 96.9 103.999C97.5 103.999 98 103.499 98 102.899Z" fill="white"/>
33
+ <path d="M96.9 104.2C96.2 104.2 95.6 103.6 95.6 102.9C95.6 102.2 96.2 101.6 96.9 101.6C97.6 101.6 98.2 102.2 98.2 102.9C98.1 103.6 97.6 104.2 96.9 104.2ZM96.9 102C96.4 102 96 102.4 96 102.9C96 103.4 96.4 103.8 96.9 103.8C97.4 103.8 97.8 103.4 97.8 102.9C97.8 102.4 97.4 102 96.9 102Z" fill="#171D33"/>
34
+ <path d="M125.7 88.5004C125.7 87.9004 125.2 87.4004 124.6 87.4004C124 87.4004 123.5 87.9004 123.5 88.5004C123.5 89.1004 124 89.6004 124.6 89.6004C125.2 89.6004 125.7 89.1004 125.7 88.5004Z" fill="white"/>
35
+ <path d="M124.6 89.8011C123.9 89.8011 123.3 89.2012 123.3 88.5012C123.3 87.8012 123.9 87.2012 124.6 87.2012C125.3 87.2012 125.9 87.8012 125.9 88.5012C125.9 89.2012 125.3 89.8011 124.6 89.8011ZM124.6 87.6012C124.1 87.6012 123.7 88.0012 123.7 88.5012C123.7 89.0012 124.1 89.4012 124.6 89.4012C125.1 89.4012 125.5 89.0012 125.5 88.5012C125.5 88.0012 125.1 87.6012 124.6 87.6012Z" fill="#171D33"/>
36
+ <path d="M114.4 99.8992C115.008 99.8992 115.5 99.4067 115.5 98.7992C115.5 98.1917 115.008 97.6992 114.4 97.6992C113.792 97.6992 113.3 98.1917 113.3 98.7992C113.3 99.4067 113.792 99.8992 114.4 99.8992Z" fill="white"/>
37
+ <path d="M114.4 100.1C113.7 100.1 113.1 99.5 113.1 98.8C113.1 98.1 113.7 97.5 114.4 97.5C115.1 97.5 115.7 98.1 115.7 98.8C115.7 99.5 115.1 100.1 114.4 100.1ZM114.4 97.9C113.9 97.9 113.5 98.3 113.5 98.8C113.5 99.3 113.9 99.7 114.4 99.7C114.9 99.7 115.3 99.3 115.3 98.8C115.3 98.3 114.9 97.9 114.4 97.9Z" fill="#171D33"/>
38
+ <path d="M132.3 96.1996C132.3 95.5996 131.8 95.0996 131.2 95.0996C130.6 95.0996 130.1 95.5996 130.1 96.1996C130.1 96.7996 130.6 97.2996 131.2 97.2996C131.8 97.2996 132.3 96.7996 132.3 96.1996Z" fill="white"/>
39
+ <path d="M131.2 97.5004C130.5 97.5004 129.9 96.9004 129.9 96.2004C129.9 95.5004 130.5 94.9004 131.2 94.9004C131.9 94.9004 132.5 95.5004 132.5 96.2004C132.5 96.9004 131.9 97.5004 131.2 97.5004ZM131.2 95.3004C130.7 95.3004 130.3 95.7004 130.3 96.2004C130.3 96.7004 130.7 97.1004 131.2 97.1004C131.7 97.1004 132.1 96.7004 132.1 96.2004C132.1 95.7004 131.7 95.3004 131.2 95.3004Z" fill="#171D33"/>
40
+ <path d="M106.8 85.8011C106.8 85.2011 106.3 84.7012 105.7 84.7012C105.1 84.7012 104.6 85.2011 104.6 85.8011C104.6 86.4011 105.1 86.9012 105.7 86.9012C106.3 86.8012 106.8 86.4011 106.8 85.8011Z" fill="white"/>
41
+ <path d="M105.7 87.0004C105 87.0004 104.4 86.4004 104.4 85.7004C104.4 85.0004 105 84.4004 105.7 84.4004C106.4 84.4004 107 85.0004 107 85.7004C107 86.5004 106.4 87.0004 105.7 87.0004ZM105.7 84.8004C105.2 84.8004 104.8 85.2004 104.8 85.7004C104.8 86.2004 105.2 86.6004 105.7 86.6004C106.2 86.6004 106.6 86.2004 106.6 85.7004C106.6 85.2004 106.2 84.8004 105.7 84.8004Z" fill="#171D33"/>
42
+ <path d="M142.7 101.2C142.7 100.6 142.2 100.1 141.6 100.1C141 100.1 140.5 100.6 140.5 101.2C140.5 101.8 141 102.3 141.6 102.3C142.2 102.3 142.7 101.8 142.7 101.2Z" fill="white"/>
43
+ <path d="M141.6 102.5C140.9 102.5 140.3 101.9 140.3 101.2C140.3 100.5 140.9 99.9004 141.6 99.9004C142.3 99.9004 142.9 100.5 142.9 101.2C142.9 101.9 142.3 102.4 141.6 102.5ZM141.6 100.3C141.1 100.3 140.7 100.7 140.7 101.2C140.7 101.7 141.1 102.1 141.6 102.1C142.1 102.1 142.5 101.7 142.5 101.2C142.5 100.7 142.1 100.3 141.6 100.3Z" fill="#171D33"/>
44
+ <path d="M141.6 108.601H96.9C96.8 108.601 96.7 108.501 96.7 108.401C96.7 108.301 96.8 108.201 96.9 108.201H141.6C141.7 108.201 141.8 108.301 141.8 108.401C141.8 108.501 141.7 108.601 141.6 108.601Z" fill="#171D33"/>
45
+ <path d="M151.6 119.6H85.7V158.4H151.6V119.6Z" fill="#E2F2FA"/>
46
+ <path d="M151.6 156.799H85.7V158.399H151.6V156.799Z" fill="#FFD802"/>
47
+ <path d="M91.8 125.9H88.8C88.7 125.9 88.6 125.8 88.6 125.7V122.7C88.6 122.6 88.7 122.5 88.8 122.5H91.8C91.9 122.5 92 122.6 92 122.7V125.7C92 125.9 91.9 125.9 91.8 125.9ZM89 125.6H91.7V122.9H89V125.6Z" fill="#171D33"/>
48
+ <path d="M97.8 125.9H94.8C94.7 125.9 94.6 125.8 94.6 125.7C94.6 125.6 94.7 125.5 94.8 125.5H97.8C97.9 125.5 98 125.6 98 125.7C98 125.8 97.9 125.9 97.8 125.9Z" fill="#171D33"/>
49
+ <g opacity="0.15">
50
+ <path opacity="0.15" d="M147.2 132.001H92.9C92.3 132.001 91.8 131.501 91.8 130.901C91.8 130.301 92.3 129.801 92.9 129.801H147.2C147.8 129.801 148.3 130.301 148.3 130.901C148.2 131.501 147.8 132.001 147.2 132.001Z" fill="#84A5B1"/>
51
+ </g>
52
+ <path d="M147.2 137.1H92.9C92.3 137.1 91.8 136.6 91.8 136C91.8 135.4 92.3 134.9 92.9 134.9H147.2C147.8 134.9 148.3 135.4 148.3 136C148.2 136.6 147.8 137.1 147.2 137.1Z" fill="white"/>
53
+ <path d="M125.7 142.2H92.9C92.3 142.2 91.8 141.7 91.8 141.1C91.8 140.5 92.3 140 92.9 140H125.7C126.3 140 126.8 140.5 126.8 141.1C126.8 141.8 126.3 142.2 125.7 142.2Z" fill="white"/>
54
+ <g opacity="0.15">
55
+ <path opacity="0.15" d="M116 147.401H92.9C92.3 147.401 91.8 146.901 91.8 146.301C91.8 145.701 92.3 145.201 92.9 145.201H116C116.6 145.201 117.1 145.701 117.1 146.301C117.1 146.901 116.6 147.401 116 147.401Z" fill="#84A5B1"/>
56
+ </g>
57
+ <g opacity="0.15">
58
+ <path opacity="0.15" d="M133 147.401H120.9C120.3 147.401 119.8 146.901 119.8 146.301C119.8 145.701 120.3 145.201 120.9 145.201H133C133.6 145.201 134.1 145.701 134.1 146.301C134.1 146.901 133.6 147.401 133 147.401Z" fill="#84A5B1"/>
59
+ </g>
60
+ <path d="M106.1 152.501H92.9C92.3 152.501 91.8 152.001 91.8 151.401C91.8 150.801 92.3 150.301 92.9 150.301H106.1C106.7 150.301 107.2 150.801 107.2 151.401C107.2 152.001 106.7 152.501 106.1 152.501Z" fill="white"/>
61
+ <path d="M164.1 81.9004H238.1C241.2 81.9004 243.6 79.4004 243.6 76.4004C243.6 73.3004 241.1 70.9004 238.1 70.9004H164.1C161 70.9004 158.6 73.4004 158.6 76.4004C158.5 79.5004 161 81.9004 164.1 81.9004Z" fill="#E2F2FA"/>
62
+ <path d="M194.9 76.5996H164.7V78.7996H194.9V76.5996Z" fill="#828BC5"/>
63
+ <path d="M209.4 76.5996H196.7V78.7996H209.4V76.5996Z" fill="white"/>
64
+ <path d="M164.1 96.9004H238.1C241.2 96.9004 243.6 94.4004 243.6 91.4004C243.6 88.3004 241.1 85.9004 238.1 85.9004H164.1C161 85.9004 158.6 88.4004 158.6 91.4004C158.5 94.4004 161 96.9004 164.1 96.9004Z" fill="#E2F2FA"/>
65
+ <path d="M242.8 98.5004H159.3C158.9 98.5004 158.5 98.1004 158.5 97.7004C158.5 97.3004 158.9 96.9004 159.3 96.9004H242.8C243.2 96.9004 243.6 97.3004 243.6 97.7004C243.6 98.1004 243.2 98.5004 242.8 98.5004Z" fill="white"/>
66
+ <path d="M164.7 89.0992H161.7C161.6 89.0992 161.5 88.9992 161.5 88.8992C161.5 88.7992 161.6 88.6992 161.7 88.6992H164.7C164.8 88.6992 164.9 88.7992 164.9 88.8992C164.9 88.9992 164.8 89.0992 164.7 89.0992Z" fill="#171D33"/>
67
+ <path d="M170.7 89.0992H167.7C167.6 89.0992 167.5 88.9992 167.5 88.8992C167.5 88.7992 167.6 88.6992 167.7 88.6992H170.7C170.8 88.6992 170.9 88.7992 170.9 88.8992C170.9 88.9992 170.8 89.0992 170.7 89.0992Z" fill="#171D33"/>
68
+ <path d="M164.7 89.1H161.7C161.6 89.1 161.5 89 161.5 88.9V87.7C161.5 87.6 161.6 87.5 161.7 87.5H164.7C164.8 87.5 164.9 87.6 164.9 87.7V88.9C164.8 89 164.8 89.1 164.7 89.1ZM161.8 88.7H164.5V87.9H161.8V88.7Z" fill="#171D33"/>
69
+ <path d="M177.4 93.7H165.8C165.2 93.7 164.7 93.2 164.7 92.6C164.7 92 165.2 91.5 165.8 91.5H177.4C178 91.5 178.5 92 178.5 92.6C178.5 93.2 178 93.7 177.4 93.7Z" fill="#FFD802"/>
70
+ <path d="M177.4 93.8004H165.8C165.1 93.8004 164.6 93.3004 164.6 92.6004C164.6 91.9004 165.1 91.4004 165.8 91.4004H177.4C178.1 91.4004 178.6 91.9004 178.6 92.6004C178.6 93.3004 178 93.8004 177.4 93.8004ZM165.8 91.7004C165.3 91.7004 164.8 92.1004 164.8 92.7004C164.8 93.2004 165.2 93.7004 165.8 93.7004H177.4C177.9 93.7004 178.3 93.3004 178.4 92.7004C178.4 92.2004 178 91.7004 177.4 91.7004H165.8Z" fill="#030405"/>
71
+ <path d="M234.6 93.7H196.4C195.8 93.7 195.3 93.2 195.3 92.6C195.3 92 195.8 91.5 196.4 91.5H234.6C235.2 91.5 235.7 92 235.7 92.6C235.7 93.2 235.2 93.7 234.6 93.7Z" fill="#FFD802"/>
72
+ <path d="M234.6 93.8004H196.4C195.7 93.8004 195.2 93.3004 195.2 92.6004C195.2 91.9004 195.7 91.4004 196.4 91.4004H234.6C235.3 91.4004 235.8 91.9004 235.8 92.6004C235.8 92.9004 235.7 93.2004 235.4 93.5004C235.2 93.7004 234.9 93.8004 234.6 93.8004ZM196.4 91.7004C195.9 91.7004 195.4 92.1004 195.4 92.7004C195.4 93.2004 195.8 93.7004 196.4 93.7004H234.6C234.9 93.7004 235.1 93.6004 235.3 93.4004C235.5 93.2004 235.6 93.0004 235.6 92.7004C235.6 92.2004 235.2 91.7004 234.6 91.7004H196.4Z" fill="#030405"/>
73
+ <path d="M192.4 93.7H181.9C181.3 93.7 180.8 93.2 180.8 92.6C180.8 92 181.3 91.5 181.9 91.5H192.4C193 91.5 193.5 92 193.5 92.6C193.5 93.2 193 93.7 192.4 93.7Z" fill="#FFD802"/>
74
+ <path d="M192.4 93.8004H181.9C181.2 93.8004 180.7 93.3004 180.7 92.6004C180.7 91.9004 181.2 91.4004 181.9 91.4004H192.4C193.1 91.4004 193.6 91.9004 193.6 92.6004C193.6 93.3004 193 93.8004 192.4 93.8004ZM181.8 91.7004C181.3 91.7004 180.8 92.1004 180.8 92.7004C180.8 93.2004 181.2 93.7004 181.8 93.7004H192.3C192.8 93.7004 193.3 93.3004 193.3 92.7004C193.3 92.2004 192.9 91.7004 192.3 91.7004H181.8Z" fill="#030405"/>
75
+ <path d="M164.1 111.801H238.1C241.2 111.801 243.6 109.301 243.6 106.301C243.6 103.201 241.1 100.801 238.1 100.801H164.1C161 100.801 158.6 103.301 158.6 106.301C158.5 109.301 161 111.801 164.1 111.801Z" fill="#E2F2FA"/>
76
+ <path d="M164.7 104H161.7C161.6 104 161.5 103.9 161.5 103.8C161.5 103.7 161.6 103.6 161.7 103.6H164.7C164.8 103.6 164.9 103.7 164.9 103.8C164.8 103.9 164.8 104 164.7 104Z" fill="#171D33"/>
77
+ <path d="M170.7 104H167.7C167.6 104 167.5 103.9 167.5 103.8C167.5 103.7 167.6 103.6 167.7 103.6H170.7C170.8 103.6 170.9 103.7 170.9 103.8C170.9 103.9 170.8 104 170.7 104Z" fill="#171D33"/>
78
+ <path d="M164.7 104H161.7C161.6 104 161.5 103.9 161.5 103.8V102.6C161.5 102.5 161.6 102.4 161.7 102.4H164.7C164.8 102.4 164.9 102.5 164.9 102.6V103.8C164.8 103.9 164.8 104 164.7 104ZM161.8 103.6H164.5V102.8H161.8V103.6Z" fill="#171D33"/>
79
+ <path d="M193.8 108.6H165.7C165.1 108.6 164.6 108.1 164.6 107.5C164.6 106.9 165.1 106.4 165.7 106.4H193.8C194.4 106.4 194.9 106.9 194.9 107.5C194.9 108.2 194.4 108.6 193.8 108.6Z" fill="#FFD802"/>
80
+ <path d="M193.8 108.8H165.7C165 108.8 164.5 108.3 164.5 107.6C164.5 106.9 165 106.4 165.7 106.4H193.8C194.5 106.4 195 106.9 195 107.6C195 108.2 194.5 108.8 193.8 108.8ZM165.8 106.6C165.3 106.6 164.8 107 164.8 107.6C164.8 108.1 165.2 108.6 165.8 108.6H193.9C194.4 108.6 194.8 108.2 194.9 107.6C194.9 107.1 194.5 106.6 193.9 106.6H165.8Z" fill="#030405"/>
81
+ <path d="M164.1 126.699H238.1C241.2 126.699 243.6 124.199 243.6 121.199C243.6 118.099 241.1 115.699 238.1 115.699H164.1C161 115.699 158.6 118.199 158.6 121.199C158.5 124.299 161 126.699 164.1 126.699Z" fill="#E2F2FA"/>
82
+ <path d="M164.7 119H161.7C161.6 119 161.5 118.9 161.5 118.8C161.5 118.7 161.6 118.6 161.7 118.6H164.7C164.8 118.6 164.9 118.7 164.9 118.8C164.9 118.9 164.8 119 164.7 119Z" fill="#171D33"/>
83
+ <path d="M170.7 119H167.7C167.6 119 167.5 118.9 167.5 118.8C167.5 118.7 167.6 118.6 167.7 118.6H170.7C170.8 118.6 170.9 118.7 170.9 118.8C170.9 118.9 170.8 119 170.7 119Z" fill="#171D33"/>
84
+ <path d="M164.7 119H161.7C161.6 119 161.5 118.9 161.5 118.8V117.6C161.5 117.5 161.6 117.4 161.7 117.4H164.7C164.8 117.4 164.9 117.5 164.9 117.6V118.8C164.8 118.9 164.8 119 164.7 119ZM161.8 118.6H164.5V117.8H161.8V118.6Z" fill="#171D33"/>
85
+ <g opacity="0.15">
86
+ <path opacity="0.15" d="M184.7 123.6H165.7C165.1 123.6 164.6 123.1 164.6 122.5C164.6 121.9 165.1 121.4 165.7 121.4H184.7C185.3 121.4 185.8 121.9 185.8 122.5C185.8 123.1 185.3 123.6 184.7 123.6Z" fill="#84A5B1"/>
87
+ </g>
88
+ <path d="M222.8 123.6H189.3C188.7 123.6 188.2 123.1 188.2 122.5C188.2 121.9 188.7 121.4 189.3 121.4H222.8C223.4 121.4 223.9 121.9 223.9 122.5C223.9 123.1 223.4 123.6 222.8 123.6Z" fill="white"/>
89
+ <path d="M232.5 121.4H226.6V123.6H232.5V121.4Z" fill="white"/>
90
+ <path d="M171.2 158.4H231C238 158.4 243.7 152.7 243.7 145.7C243.7 138.7 238 133 231 133H171.2C164.2 133 158.5 138.7 158.5 145.7C158.5 152.7 164.2 158.4 171.2 158.4Z" fill="#E2F2FA"/>
91
+ <g opacity="0.15">
92
+ <path opacity="0.15" d="M186.9 139.6H174.7V151.8H186.9V139.6Z" fill="#84A5B1"/>
93
+ </g>
94
+ <path d="M177.7 148.899C177.7 148.899 177.6 148.899 177.6 148.799C177.5 148.699 177.5 148.599 177.6 148.499L183.7 142.499C183.8 142.399 183.9 142.399 184 142.499C184.1 142.599 184.1 142.699 184 142.799L177.9 148.799C177.8 148.899 177.8 148.899 177.7 148.899Z" fill="#171D33"/>
95
+ <path d="M183.8 148.899C183.8 148.899 183.7 148.899 183.7 148.799L177.6 142.799C177.5 142.699 177.5 142.599 177.6 142.499C177.7 142.399 177.8 142.399 177.9 142.499L184 148.499C184.1 148.599 184.1 148.699 184 148.799C183.9 148.899 183.8 148.899 183.8 148.899Z" fill="#171D33"/>
96
+ <path d="M203.5 139.6H191.3V151.8H203.5V139.6Z" fill="white"/>
97
+ <path d="M194.4 148.899C194.4 148.899 194.3 148.899 194.3 148.799C194.2 148.699 194.2 148.599 194.3 148.499L200.3 142.499C200.4 142.399 200.5 142.399 200.6 142.499C200.7 142.599 200.7 142.699 200.6 142.799L194.6 148.799C194.5 148.899 194.5 148.899 194.4 148.899Z" fill="#171D33"/>
98
+ <g opacity="0.15">
99
+ <path opacity="0.15" d="M220.2 139.6H208V151.8H220.2V139.6Z" fill="#84A5B1"/>
100
+ </g>
101
+ <path d="M217.2 148.699H211.7C211.6 148.699 211.5 148.599 211.5 148.499V142.999C211.5 142.899 211.6 142.799 211.7 142.799H217.2C217.3 142.799 217.4 142.899 217.4 142.999V148.499C217.4 148.599 217.3 148.699 217.2 148.699ZM211.9 148.299H217V143.199H211.9V148.299Z" fill="#171D33"/>
102
+ <path d="M236.9 139.6H224.7V151.8H236.9V139.6Z" fill="#828BC5"/>
103
+ <path d="M228.1 143.199C228.1 143.199 228 143.199 228 143.099L227.9 142.999C227.9 142.999 227.9 142.999 227.9 142.899C227.9 142.899 227.9 142.899 227.9 142.799C227.9 142.799 227.9 142.799 228 142.799C228.1 142.799 228.1 142.799 228.2 142.799C228.2 142.799 228.2 142.799 228.2 142.899C228.2 142.899 228.2 142.899 228.2 142.999C228.2 142.999 228.2 143.099 228.1 143.099C228.2 143.199 228.1 143.199 228.1 143.199Z" fill="#171D33"/>
104
+ <path d="M233.6 143.2C233.6 143.2 233.5 143.2 233.5 143.1C233.5 143.1 233.5 143.1 233.5 143C233.5 143 233.5 143 233.5 142.9C233.5 142.9 233.5 142.8 233.6 142.8C233.7 142.7 233.8 142.7 233.9 142.8C233.9 142.8 233.9 142.8 233.9 142.9C233.9 142.9 233.9 142.9 233.9 143C233.9 143 233.9 143 233.9 143.1C233.9 143.1 233.9 143.1 233.9 143.2C233.7 143.1 233.6 143.2 233.6 143.2Z" fill="#171D33"/>
105
+ <path d="M228.1 148.699C228.1 148.699 228 148.699 228 148.599L227.9 148.499C227.9 148.499 227.9 148.399 228 148.399C228.1 148.299 228.2 148.299 228.3 148.399L228.4 148.499C228.4 148.499 228.4 148.599 228.3 148.599C228.2 148.599 228.1 148.699 228.1 148.699Z" fill="#171D33"/>
106
+ <path d="M233.6 148.7C233.5 148.7 233.5 148.6 233.6 148.7C233.5 148.7 233.5 148.7 233.5 148.6C233.5 148.6 233.5 148.6 233.5 148.5C233.5 148.5 233.5 148.5 233.5 148.4C233.5 148.4 233.5 148.4 233.5 148.3C233.5 148.3 233.5 148.3 233.5 148.2C233.6 148.1 233.7 148.1 233.8 148.2C233.8 148.2 233.8 148.2 233.8 148.3C233.8 148.3 233.8 148.3 233.8 148.4C233.8 148.4 233.8 148.4 233.8 148.5C233.8 148.5 233.8 148.5 233.8 148.6C233.7 148.6 233.6 148.6 233.6 148.7C233.6 148.7 233.6 148.6 233.6 148.7Z" fill="#171D33"/>
107
+ <g opacity="0.45">
108
+ <g opacity="0.45">
109
+ <path opacity="0.45" d="M294 201.201H219.9C218.9 201.201 218 200.401 218 199.301V125.201C218 124.201 218.8 123.301 219.9 123.301H294C295 123.301 295.9 124.101 295.9 125.201V199.301C295.9 200.301 295 201.201 294 201.201Z" fill="#828BC5"/>
110
+ </g>
111
+ <g opacity="0.45">
112
+ <path opacity="0.45" d="M294 201.3H219.9C218.8 201.3 217.8 200.4 217.8 199.2V125.1C217.8 124 218.7 123 219.9 123H294C295.1 123 296.1 123.9 296.1 125.1V199.2C296.1 200.4 295.1 201.3 294 201.3ZM219.9 123.5C219 123.5 218.2 124.3 218.2 125.2V199.3C218.2 200.2 219 201 219.9 201H294C294.9 201 295.7 200.3 295.7 199.3V125.2C295.7 124.3 294.9 123.5 294 123.5H219.9V123.5Z" fill="#828BC5"/>
113
+ </g>
114
+ </g>
115
+ <path d="M292.2 199.298H218.1C217.1 199.298 216.2 198.498 216.2 197.398V123.298C216.2 122.298 217 121.398 218.1 121.398H292.2C293.2 121.398 294.1 122.198 294.1 123.298V197.398C294.1 198.498 293.2 199.298 292.2 199.298Z" fill="white"/>
116
+ <path d="M292.2 199.499H218.1C217 199.499 216 198.599 216 197.399V123.299C216 122.199 216.9 121.199 218.1 121.199H292.2C293.3 121.199 294.3 122.099 294.3 123.299V197.399C294.2 198.599 293.3 199.499 292.2 199.499ZM218.1 121.699C217.2 121.699 216.4 122.499 216.4 123.399V197.499C216.4 198.399 217.2 199.199 218.1 199.199H292.2C293.1 199.199 293.9 198.499 293.9 197.499V123.399C293.9 122.499 293.1 121.699 292.2 121.699H218.1Z" fill="#171D33"/>
117
+ <path d="M220.8 128.701C220.8 128.701 220.7 128.701 220.7 128.601C220.6 128.501 220.6 128.401 220.7 128.301L223.5 125.501C223.6 125.401 223.7 125.401 223.8 125.501C223.9 125.601 223.9 125.701 223.8 125.801L221 128.601C220.9 128.701 220.8 128.701 220.8 128.701Z" fill="#171D33"/>
118
+ <path d="M223.5 128.701C223.5 128.701 223.4 128.701 223.4 128.601L220.6 125.801C220.5 125.701 220.5 125.601 220.6 125.501C220.7 125.401 220.8 125.401 220.9 125.501L223.7 128.301C223.8 128.401 223.8 128.501 223.7 128.601C223.6 128.701 223.6 128.701 223.5 128.701Z" fill="#171D33"/>
119
+ <path d="M231.4 155.1C227 155.1 223.4 151.5 223.4 147.1V142C223.4 137.6 227 134 231.4 134C235.8 134 239.4 137.6 239.4 142V147.1C239.4 151.5 235.8 155.1 231.4 155.1ZM231.4 134.4C227.2 134.4 223.8 137.8 223.8 142V147.2C223.8 151.4 227.2 154.8 231.4 154.8C235.6 154.8 239 151.4 239 147.2V142C239 137.8 235.6 134.4 231.4 134.4Z" fill="#171D33"/>
120
+ <path d="M230.8 147.6C227.7 147.9 225.4 150.5 225.4 153.6V154.9H237.2V153.5C237.3 150.1 234.3 147.3 230.8 147.6Z" fill="#FFD802"/>
121
+ <path d="M234.7 143.501C235 141.301 233.1 139.501 230.9 139.701C229.4 139.901 228.2 141.101 228 142.601C227.7 144.801 229.6 146.601 231.8 146.401C233.3 146.201 234.5 145.001 234.7 143.501Z" fill="#FFD802"/>
122
+ <g opacity="0.15">
123
+ <g opacity="0.15">
124
+ <path opacity="0.15" d="M244.5 150.5H258.6C259.4 150.5 260.1 149.8 260.1 149C260.1 148.2 259.4 147.5 258.6 147.5H244.5C243.7 147.5 243 148.2 243 149C243 149.8 243.7 150.5 244.5 150.5Z" fill="#84A5B1"/>
125
+ </g>
126
+ <g opacity="0.15">
127
+ <path opacity="0.15" d="M244.5 154.9H250.2C251 154.9 251.7 154.2 251.7 153.4C251.7 152.6 251 151.9 250.2 151.9H244.5C243.7 151.9 243 152.6 243 153.4C243 154.3 243.7 154.9 244.5 154.9Z" fill="#84A5B1"/>
128
+ </g>
129
+ </g>
130
+ <path d="M284.8 155.1C283.7 155.1 282.8 154.2 282.8 153.1C282.8 152 283.7 151.1 284.8 151.1C285.9 151.1 286.8 152 286.8 153.1C286.9 154.2 286 155.1 284.8 155.1ZM284.8 151.4C283.9 151.4 283.1 152.1 283.1 153.1C283.1 154 283.8 154.8 284.8 154.8C285.7 154.8 286.5 154 286.5 153.1C286.5 152.2 285.8 151.4 284.8 151.4Z" fill="#171D33"/>
131
+ <path d="M229.7 172.201H280.4C283.8 172.201 286.6 169.401 286.6 166.001C286.6 162.601 283.8 159.801 280.4 159.801H229.7C226.3 159.801 223.5 162.601 223.5 166.001C223.5 169.401 226.3 172.201 229.7 172.201Z" fill="#E2F2FA"/>
132
+ <g opacity="0.15">
133
+ <path opacity="0.15" d="M282.3 164.8H228C227.4 164.8 226.9 164.3 226.9 163.7C226.9 163.1 227.4 162.6 228 162.6H282.3C282.9 162.6 283.4 163.1 283.4 163.7C283.4 164.3 282.9 164.8 282.3 164.8Z" fill="#84A5B1"/>
134
+ </g>
135
+ <path d="M247.1 169.899H228C227.4 169.899 226.9 169.399 226.9 168.799C226.9 168.199 227.4 167.699 228 167.699H247.2C247.8 167.699 248.3 168.199 248.3 168.799C248.2 169.399 247.7 169.899 247.1 169.899Z" fill="white"/>
136
+ <path d="M229.7 189.4H280.4C283.8 189.4 286.6 186.6 286.6 183.2C286.6 179.8 283.8 177 280.4 177H229.7C226.3 177 223.5 179.8 223.5 183.2C223.5 186.7 226.3 189.4 229.7 189.4Z" fill="#E2F2FA"/>
137
+ <g opacity="0.15">
138
+ <path opacity="0.15" d="M251.6 182.001H228C227.4 182.001 226.9 181.501 226.9 180.901C226.9 180.301 227.4 179.801 228 179.801H251.7C252.3 179.801 252.8 180.301 252.8 180.901C252.7 181.501 252.2 182.001 251.6 182.001Z" fill="#84A5B1"/>
139
+ </g>
140
+ <path d="M282.3 182.001H255.8C255.2 182.001 254.7 181.501 254.7 180.901C254.7 180.301 255.2 179.801 255.8 179.801H282.3C282.9 179.801 283.4 180.301 283.4 180.901C283.4 181.501 282.9 182.001 282.3 182.001Z" fill="white"/>
141
+ <path d="M258.2 187.2H239.8C239.2 187.2 238.7 186.7 238.7 186.1C238.7 185.5 239.2 185 239.8 185H258.2C258.8 185 259.3 185.5 259.3 186.1C259.3 186.7 258.8 187.2 258.2 187.2Z" fill="white"/>
142
+ <path d="M235.7 187.2H228C227.4 187.2 226.9 186.7 226.9 186.1C226.9 185.5 227.4 185 228 185H235.7C236.3 185 236.8 185.5 236.8 186.1C236.8 186.7 236.3 187.2 235.7 187.2Z" fill="white"/>
143
+ <path d="M219 162.8C215.3 162.8 213.4 161.2 211.6 159.7C209.7 158.1 207.8 156.5 203.6 156.5C201.3 156.5 199.4 154.6 199.4 152.3V150.7C199.4 150.6 199.5 150.5 199.6 150.5C199.7 150.5 199.8 150.6 199.8 150.7V152.3C199.8 154.4 201.5 156.2 203.7 156.2C208 156.2 210 157.9 211.9 159.5C213.7 161 215.5 162.5 219 162.5C219.1 162.5 219.2 162.6 219.2 162.7C219.2 162.7 219.1 162.8 219 162.8Z" fill="#171D33"/>
144
+ <path d="M221.8 162.599C221.8 161.799 221.2 161.199 220.4 161.199C219.6 161.199 219 161.799 219 162.599C219 163.399 219.6 163.999 220.4 163.999C221.2 163.999 221.8 163.399 221.8 162.599Z" fill="#171D33"/>
145
+ <path d="M220.4 164.2C219.5 164.2 218.8 163.5 218.8 162.6C218.8 161.7 219.5 161 220.4 161C221.3 161 222 161.7 222 162.6C222 163 221.8 163.5 221.5 163.7C221.2 164 220.8 164.2 220.4 164.2ZM220.4 161.4C219.8 161.4 219.2 161.9 219.2 162.6C219.2 163.3 219.7 163.8 220.4 163.8C220.7 163.8 221 163.7 221.2 163.5C221.4 163.3 221.6 163 221.6 162.6C221.6 161.9 221.1 161.4 220.4 161.4Z" fill="#171D33"/>
146
+ <path d="M200.9 149.3C200.9 148.5 200.3 147.9 199.5 147.9C198.7 147.9 198.1 148.5 198.1 149.3C198.1 150.1 198.7 150.7 199.5 150.7C200.3 150.7 200.9 150 200.9 149.3Z" fill="#171D33"/>
147
+ <path d="M199.6 150.8C198.7 150.8 198 150.1 198 149.2C198 148.3 198.7 147.6 199.6 147.6C200.5 147.6 201.2 148.3 201.2 149.2C201.2 149.6 201 150 200.7 150.3C200.4 150.7 200 150.8 199.6 150.8ZM199.6 148.1C199 148.1 198.4 148.6 198.4 149.3C198.4 150 198.9 150.5 199.6 150.5C199.9 150.5 200.2 150.4 200.4 150.1C200.6 149.9 200.8 149.6 200.8 149.3C200.8 148.6 200.2 148.1 199.6 148.1Z" fill="#171D33"/>
148
+ <g opacity="0.45">
149
+ <g opacity="0.45">
150
+ <path opacity="0.45" d="M304.4 114.8H253.8C252.8 114.8 251.9 114 251.9 112.9V62.3004C251.9 61.3004 252.7 60.4004 253.8 60.4004H304.4C305.4 60.4004 306.3 61.2004 306.3 62.3004V112.9C306.2 114 305.4 114.8 304.4 114.8Z" fill="#828BC5"/>
151
+ </g>
152
+ <g opacity="0.45">
153
+ <path opacity="0.45" d="M304.4 115.001H253.8C252.7 115.001 251.7 114.101 251.7 112.901V62.3012C251.7 61.2012 252.6 60.2012 253.8 60.2012H304.4C305.5 60.2012 306.5 61.1012 306.5 62.3012V112.901C306.4 114.101 305.5 115.001 304.4 115.001ZM253.7 60.6012C252.8 60.6012 252 61.4012 252 62.3012V112.901C252 113.801 252.8 114.601 253.7 114.601H304.3C305.2 114.601 306 113.801 306 112.901V62.3012C306 61.4012 305.2 60.6012 304.3 60.6012H253.7Z" fill="#828BC5"/>
154
+ </g>
155
+ </g>
156
+ <path d="M302.5 113H251.9C250.9 113 250 112.2 250 111.1V60.4996C250 59.4996 250.8 58.5996 251.9 58.5996H302.5C303.5 58.5996 304.4 59.3996 304.4 60.4996V111.1C304.4 112.1 303.6 113 302.5 113Z" fill="white"/>
157
+ <path d="M302.5 113.2H251.9C250.8 113.2 249.8 112.3 249.8 111.1V60.5004C249.8 59.4004 250.7 58.4004 251.9 58.4004H302.5C303.6 58.4004 304.6 59.3004 304.6 60.5004V111.1C304.6 112.3 303.7 113.2 302.5 113.2ZM251.9 58.8004C251 58.8004 250.2 59.6004 250.2 60.5004V111.1C250.2 112 251 112.8 251.9 112.8H302.5C303.4 112.8 304.2 112 304.2 111.1V60.5004C304.2 59.6004 303.4 58.8004 302.5 58.8004H251.9Z" fill="#171D33"/>
158
+ <path d="M254.6 65.8004C254.6 65.8004 254.5 65.8004 254.5 65.7004C254.4 65.6004 254.4 65.5004 254.5 65.4004L257.3 62.6004C257.4 62.5004 257.5 62.5004 257.6 62.6004C257.7 62.7004 257.7 62.8004 257.6 62.9004L254.8 65.7004C254.7 65.8004 254.7 65.8004 254.6 65.8004Z" fill="#171D33"/>
159
+ <path d="M257.4 65.8004C257.4 65.8004 257.3 65.8004 257.3 65.7004L254.5 62.9004C254.4 62.8004 254.4 62.7004 254.5 62.6004C254.6 62.5004 254.7 62.5004 254.8 62.6004L257.6 65.4004C257.7 65.5004 257.7 65.6004 257.6 65.7004C257.5 65.8004 257.5 65.8004 257.4 65.8004Z" fill="#171D33"/>
160
+ <path d="M253.7 80.3016C250 80.3016 248.1 78.7016 246.3 77.2016C244.4 75.6016 242.5 74.0016 238.3 74.0016C238.2 74.0016 238.1 73.9016 238.1 73.8016C238.1 73.7016 238.2 73.6016 238.3 73.6016C242.6 73.6016 244.6 75.3016 246.6 76.9016C248.4 78.4016 250.1 79.9016 253.7 79.9016C253.8 79.9016 253.9 80.0016 253.9 80.1016C253.9 80.2016 253.8 80.3016 253.7 80.3016Z" fill="#171D33"/>
161
+ <path d="M256.5 80.2027C256.5 79.4027 255.9 78.8027 255.1 78.8027C254.3 78.8027 253.7 79.4027 253.7 80.2027C253.7 81.0027 254.3 81.6027 255.1 81.6027C255.9 81.6027 256.5 80.9027 256.5 80.2027Z" fill="#171D33"/>
162
+ <path d="M255.1 81.702C254.2 81.702 253.5 81.002 253.5 80.102C253.5 79.202 254.2 78.502 255.1 78.502C256 78.502 256.7 79.202 256.7 80.102C256.7 81.002 256 81.702 255.1 81.702ZM255.1 78.9019C254.4 78.9019 253.9 79.402 253.9 80.102C253.9 80.802 254.4 81.302 255.1 81.302C255.8 81.302 256.3 80.802 256.3 80.102C256.3 79.402 255.8 78.9019 255.1 78.9019Z" fill="#171D33"/>
163
+ <path d="M238.3 73.8004C238.3 73.0004 237.7 72.4004 236.9 72.4004C236.1 72.4004 235.5 73.0004 235.5 73.8004C235.5 74.6004 236.1 75.2004 236.9 75.2004C237.7 75.3004 238.3 74.6004 238.3 73.8004Z" fill="#171D33"/>
164
+ <path d="M236.9 75.4012C236 75.4012 235.3 74.7012 235.3 73.8012C235.3 72.9012 236 72.2012 236.9 72.2012C237.8 72.2012 238.5 72.9012 238.5 73.8012C238.5 74.2012 238.3 74.6012 238 74.9012C237.7 75.3012 237.4 75.4012 236.9 75.4012ZM236.9 72.6012C236.2 72.6012 235.7 73.1012 235.7 73.8012C235.7 74.5012 236.2 75.0012 236.9 75.0012C237.2 75.0012 237.5 74.9012 237.7 74.7012C237.9 74.5012 238.1 74.2012 238.1 73.8012C238.1 73.2012 237.6 72.6012 236.9 72.6012Z" fill="#171D33"/>
165
+ <path d="M256.5 88.8004C256.5 88.0004 255.9 87.4004 255.1 87.4004C254.3 87.4004 253.7 88.0004 253.7 88.8004C253.7 89.6004 254.3 90.2004 255.1 90.2004C255.9 90.2004 256.5 89.6004 256.5 88.8004Z" fill="#171D33"/>
166
+ <path d="M255.1 90.4012C254.2 90.4012 253.5 89.7011 253.5 88.8011C253.5 87.9011 254.2 87.2012 255.1 87.2012C256 87.2012 256.7 87.9011 256.7 88.8011C256.7 89.6011 256 90.4012 255.1 90.4012ZM255.1 87.6012C254.4 87.6012 253.9 88.1011 253.9 88.8011C253.9 89.5011 254.4 90.0012 255.1 90.0012C255.8 90.0012 256.3 89.4011 256.3 88.8011C256.3 88.1011 255.8 87.6012 255.1 87.6012Z" fill="#171D33"/>
167
+ <path d="M238.3 88.8004C238.3 88.0004 237.7 87.4004 236.9 87.4004C236.1 87.4004 235.5 88.0004 235.5 88.8004C235.5 89.6004 236.1 90.2004 236.9 90.2004C237.7 90.2004 238.3 89.6004 238.3 88.8004Z" fill="#171D33"/>
168
+ <path d="M236.9 90.4012C236 90.4012 235.3 89.7011 235.3 88.8011C235.3 87.9011 236 87.2012 236.9 87.2012C237.8 87.2012 238.5 87.9011 238.5 88.8011C238.5 89.6011 237.8 90.4012 236.9 90.4012ZM236.9 87.6012C236.2 87.6012 235.7 88.1011 235.7 88.8011C235.7 89.5011 236.2 90.0012 236.9 90.0012C237.6 90.0012 238.1 89.4011 238.1 88.8011C238.1 88.1011 237.6 87.6012 236.9 87.6012Z" fill="#171D33"/>
169
+ <path d="M253.7 89.0016H238.3C238.2 89.0016 238.1 88.9015 238.1 88.8015C238.1 88.7015 238.2 88.6016 238.3 88.6016H253.7C253.8 88.6016 253.9 88.7015 253.9 88.8015C253.9 88.9015 253.8 89.0016 253.7 89.0016Z" fill="#171D33"/>
170
+ <path d="M238.3 103.901C238.2 103.901 238.1 103.801 238.1 103.701C238.1 103.601 238.2 103.501 238.3 103.501C242.5 103.501 244.4 101.901 246.3 100.301C248.1 98.8011 249.9 97.2012 253.7 97.2012C253.8 97.2012 253.9 97.3012 253.9 97.4012C253.9 97.5012 253.8 97.6012 253.7 97.6012C250.1 97.6012 248.4 99.1012 246.6 100.601C244.6 102.201 242.6 103.901 238.3 103.901Z" fill="#171D33"/>
171
+ <path d="M256.5 97.4C256.5 98.2 255.9 98.8 255.1 98.8C254.3 98.8 253.7 98.2 253.7 97.4C253.7 96.6 254.3 96 255.1 96C255.9 96 256.5 96.7 256.5 97.4Z" fill="#171D33"/>
172
+ <path d="M255.1 99.0008C254.2 99.0008 253.5 98.3008 253.5 97.4008C253.5 96.5008 254.2 95.8008 255.1 95.8008C256 95.8008 256.7 96.5008 256.7 97.4008C256.7 98.3008 256 99.0008 255.1 99.0008ZM255.1 96.2008C254.4 96.2008 253.9 96.7008 253.9 97.4008C253.9 98.1008 254.4 98.6008 255.1 98.6008C255.8 98.6008 256.3 98.1008 256.3 97.4008C256.3 96.8008 255.8 96.2008 255.1 96.2008Z" fill="#171D33"/>
173
+ <path d="M238.3 103.701C238.3 104.501 237.7 105.101 236.9 105.101C236.1 105.101 235.5 104.501 235.5 103.701C235.5 102.901 236.1 102.301 236.9 102.301C237.7 102.301 238.3 102.901 238.3 103.701Z" fill="#171D33"/>
174
+ <path d="M236.9 105.302C236 105.302 235.3 104.602 235.3 103.702C235.3 102.802 236 102.102 236.9 102.102C237.8 102.102 238.5 102.802 238.5 103.702C238.5 104.602 237.8 105.302 236.9 105.302ZM236.9 102.502C236.2 102.502 235.7 103.002 235.7 103.702C235.7 104.402 236.2 104.902 236.9 104.902C237.6 104.902 238.1 104.402 238.1 103.702C238.1 103.002 237.6 102.502 236.9 102.502Z" fill="#171D33"/>
175
+ <g opacity="0.45">
176
+ <g opacity="0.45">
177
+ <path opacity="0.45" d="M158.7 207.699H100.7C99.7 207.699 98.8 206.899 98.8 205.799V176.099C98.8 175.099 99.6 174.199 100.7 174.199H158.7C159.7 174.199 160.6 174.999 160.6 176.099V205.799C160.6 206.899 159.8 207.699 158.7 207.699Z" fill="#828BC5"/>
178
+ </g>
179
+ <g opacity="0.45">
180
+ <path opacity="0.45" d="M158.7 207.9H100.7C99.6 207.9 98.6 207 98.6 205.8V176.1C98.6 175 99.5 174 100.7 174H158.7C159.8 174 160.8 174.9 160.8 176.1V205.8C160.8 207 159.9 207.9 158.7 207.9ZM100.7 174.4C99.8 174.4 99 175.2 99 176.1V205.8C99 206.7 99.8 207.5 100.7 207.5H158.7C159.6 207.5 160.4 206.7 160.4 205.8V176.1C160.4 175.2 159.6 174.4 158.7 174.4H100.7Z" fill="#828BC5"/>
181
+ </g>
182
+ </g>
183
+ <path d="M156.9 205.898H98.9C97.9 205.898 97 205.098 97 203.998V174.298C97 173.298 97.8 172.398 98.9 172.398H156.9C157.9 172.398 158.8 173.198 158.8 174.298V203.998C158.8 205.098 157.9 205.898 156.9 205.898Z" fill="white"/>
184
+ <path d="M156.9 206.099H98.9C97.8 206.099 96.8 205.199 96.8 203.999V174.299C96.8 173.199 97.7 172.199 98.9 172.199H156.9C158 172.199 159 173.099 159 174.299V203.999C159 205.199 158 206.099 156.9 206.099ZM98.9 172.599C98 172.599 97.2 173.399 97.2 174.299V203.999C97.2 204.899 98 205.699 98.9 205.699H156.9C157.8 205.699 158.6 204.899 158.6 203.999V174.299C158.6 173.399 157.8 172.599 156.9 172.599H98.9Z" fill="#171D33"/>
185
+ <path d="M101.6 179.599C101.6 179.599 101.5 179.599 101.5 179.499C101.4 179.399 101.4 179.299 101.5 179.199L104.3 176.399C104.4 176.299 104.5 176.299 104.6 176.399C104.7 176.499 104.7 176.599 104.6 176.699L101.8 179.499C101.7 179.599 101.6 179.599 101.6 179.599Z" fill="#171D33"/>
186
+ <path d="M104.4 179.599C104.4 179.599 104.3 179.599 104.3 179.499L101.5 176.699C101.4 176.599 101.4 176.499 101.5 176.399C101.6 176.299 101.7 176.299 101.8 176.399L104.6 179.199C104.7 179.299 104.7 179.399 104.6 179.499C104.5 179.599 104.4 179.599 104.4 179.599Z" fill="#171D33"/>
187
+ <path d="M128.1 174.4C128 174.4 127.9 174.3 127.9 174.2C127.9 170.6 126.4 168.9 124.9 167.1C123.3 165.2 121.6 163.2 121.6 158.9C121.6 156.8 119.9 155 117.7 155H116.1C116 155 115.9 154.9 115.9 154.8C115.9 154.7 116 154.6 116.1 154.6H117.7C120 154.6 121.9 156.5 121.9 158.8C121.9 163 123.5 164.9 125.1 166.8C126.6 168.6 128.2 170.5 128.2 174.2C128.2 174.4 128.2 174.4 128.1 174.4Z" fill="#171D33"/>
188
+ <path d="M128.7 176.999H127.4C127 176.999 126.7 176.699 126.7 176.299V174.999C126.7 174.599 127 174.299 127.4 174.299H128.7C129.1 174.299 129.4 174.599 129.4 174.999V176.299C129.4 176.699 129.1 176.999 128.7 176.999Z" fill="#171D33"/>
189
+ <path d="M128.7 177.2H127.4C126.9 177.2 126.5 176.8 126.5 176.3V175C126.5 174.5 126.9 174.1 127.4 174.1H128.7C129.2 174.1 129.6 174.5 129.6 175V176.3C129.6 176.8 129.2 177.2 128.7 177.2ZM127.4 174.5C127.1 174.5 126.9 174.7 126.9 175V176.3C126.9 176.6 127.1 176.8 127.4 176.8H128.7C129 176.8 129.2 176.6 129.2 176.3V175C129.2 174.7 129 174.5 128.7 174.5H127.4Z" fill="#171D33"/>
190
+ <path d="M114.7 156.198C113.9 156.198 113.3 155.598 113.3 154.798C113.3 153.998 113.9 153.398 114.7 153.398C115.5 153.398 116.1 153.998 116.1 154.798C116.1 155.598 115.5 156.198 114.7 156.198Z" fill="#171D33"/>
191
+ <path d="M114.7 156.399C113.8 156.399 113.1 155.699 113.1 154.799C113.1 153.899 113.8 153.199 114.7 153.199C115.6 153.199 116.3 153.899 116.3 154.799C116.3 155.199 116.2 155.599 115.9 155.899C115.5 156.199 115.1 156.399 114.7 156.399ZM114.7 153.599C114 153.599 113.5 154.099 113.5 154.799C113.5 155.499 114 155.999 114.7 155.999C115 155.999 115.3 155.899 115.6 155.599C115.8 155.399 115.9 155.099 115.9 154.799C115.9 154.199 115.4 153.599 114.7 153.599Z" fill="#171D33"/>
192
+ <g opacity="0.45">
193
+ <g opacity="0.45">
194
+ <path opacity="0.45" d="M204.8 213.501H172.6C171.6 213.501 170.7 212.701 170.7 211.601V192.601C170.7 191.601 171.5 190.701 172.6 190.701H204.9C205.9 190.701 206.8 191.501 206.8 192.601V211.601C206.7 212.601 205.9 213.501 204.8 213.501Z" fill="#828BC5"/>
195
+ </g>
196
+ <g opacity="0.45">
197
+ <path opacity="0.45" d="M204.8 213.6H172.6C171.5 213.6 170.5 212.7 170.5 211.5V192.5C170.5 191.4 171.4 190.4 172.6 190.4H204.9C206 190.4 207 191.3 207 192.5V211.5C206.9 212.7 205.9 213.6 204.8 213.6ZM172.6 190.9C171.7 190.9 170.9 191.7 170.9 192.6V211.6C170.9 212.5 171.7 213.3 172.6 213.3H204.8C205.7 213.3 206.5 212.5 206.5 211.6V192.6C206.5 191.7 205.7 190.9 204.8 190.9H172.6Z" fill="#828BC5"/>
198
+ </g>
199
+ </g>
200
+ <path d="M203 211.599H170.8C169.8 211.599 168.9 210.799 168.9 209.699V190.699C168.9 189.699 169.7 188.799 170.8 188.799H203.1C204.1 188.799 205 189.599 205 190.699V209.699C204.9 210.799 204 211.599 203 211.599Z" fill="white"/>
201
+ <path d="M203 211.8H170.8C169.7 211.8 168.7 210.9 168.7 209.7V190.7C168.7 189.6 169.6 188.6 170.8 188.6H203.1C204.2 188.6 205.2 189.5 205.2 190.7V209.7C205.1 210.9 204.1 211.8 203 211.8ZM170.8 189.1C169.9 189.1 169.1 189.9 169.1 190.8V209.8C169.1 210.7 169.9 211.5 170.8 211.5H203C203.9 211.5 204.7 210.7 204.7 209.8V190.8C204.7 189.9 203.9 189.1 203 189.1H170.8Z" fill="#171D33"/>
202
+ <path d="M173.5 196.099C173.5 196.099 173.4 196.099 173.4 195.999C173.3 195.899 173.3 195.799 173.4 195.699L176.2 192.899C176.3 192.799 176.4 192.799 176.5 192.899C176.6 192.999 176.6 193.099 176.5 193.199L173.7 195.999C173.6 195.999 173.5 196.099 173.5 196.099Z" fill="#171D33"/>
203
+ <path d="M176.2 196.099C176.2 196.099 176.1 196.099 176.1 195.999L173.3 193.199C173.2 193.099 173.2 192.999 173.3 192.899C173.4 192.799 173.5 192.799 173.6 192.899L176.4 195.699C176.5 195.799 176.5 195.899 176.4 195.999C176.3 195.999 176.3 196.099 176.2 196.099Z" fill="#171D33"/>
204
+ <path d="M182.1 205.099C182.1 204.399 181.5 203.799 180.8 203.799C180.1 203.799 179.5 204.399 179.5 205.099C179.5 205.799 180.1 206.399 180.8 206.399C181.5 206.399 182.1 205.799 182.1 205.099Z" fill="#171D33"/>
205
+ <path d="M180.8 206.6C180 206.6 179.3 205.9 179.3 205.1C179.3 204.3 180 203.6 180.8 203.6C181.6 203.6 182.3 204.3 182.3 205.1C182.2 205.9 181.6 206.6 180.8 206.6ZM180.8 204C180.2 204 179.7 204.5 179.7 205.1C179.7 205.7 180.2 206.2 180.8 206.2C181.4 206.2 181.9 205.7 181.9 205.1C181.9 204.4 181.4 204 180.8 204Z" fill="#171D33"/>
206
+ <path d="M195.7 195.4C195.7 194.7 195.1 194.1 194.4 194.1C193.7 194.1 193.1 194.7 193.1 195.4C193.1 196.1 193.7 196.7 194.4 196.7C195.1 196.7 195.7 196.1 195.7 195.4Z" fill="#171D33"/>
207
+ <path d="M194.4 196.9C193.6 196.9 192.9 196.2 192.9 195.4C192.9 194.6 193.6 193.9 194.4 193.9C195.2 193.9 195.9 194.6 195.9 195.4C195.9 196.2 195.2 196.9 194.4 196.9ZM194.4 194.3C193.8 194.3 193.3 194.8 193.3 195.4C193.3 196 193.8 196.5 194.4 196.5C195 196.5 195.5 196 195.5 195.4C195.5 194.8 195 194.3 194.4 194.3Z" fill="#171D33"/>
208
+ <path d="M183.6 205.601C181.9 205.601 180.7 205.301 180.7 205.301C180.6 205.301 180.5 205.201 180.6 205.101C180.6 205.001 180.7 204.901 180.8 205.001C180.8 205.001 185.5 206.201 189.4 203.701C191.9 202.101 193.5 199.301 194.2 195.501C194.2 195.401 194.3 195.301 194.4 195.401C194.5 195.401 194.6 195.501 194.5 195.601C193.8 199.601 192.1 202.401 189.5 204.101C187.6 205.201 185.3 205.601 183.6 205.601Z" fill="#171D33"/>
209
+ <path d="M170.7 201.8C167 201.8 165.1 200.2 163.3 198.7C161.4 197.1 159.5 195.5 155.3 195.5C155.2 195.5 155.1 195.4 155.1 195.3C155.1 195.2 155.2 195.1 155.3 195.1C159.6 195.1 161.6 196.8 163.6 198.4C165.4 199.9 167.1 201.4 170.7 201.4C170.8 201.4 170.9 201.5 170.9 201.6C170.9 201.7 170.8 201.8 170.7 201.8Z" fill="#171D33"/>
210
+ <path d="M173.5 201.599C173.5 200.799 172.9 200.199 172.1 200.199C171.3 200.199 170.7 200.799 170.7 201.599C170.7 202.399 171.3 202.999 172.1 202.999C172.9 202.999 173.5 202.399 173.5 201.599Z" fill="#171D33"/>
211
+ <path d="M172.1 203.2C171.2 203.2 170.5 202.5 170.5 201.6C170.5 200.7 171.2 200 172.1 200C173 200 173.7 200.7 173.7 201.6C173.7 202.5 173 203.2 172.1 203.2ZM172.1 200.4C171.4 200.4 170.9 200.9 170.9 201.6C170.9 202.3 171.4 202.8 172.1 202.8C172.7 202.8 173.3 202.3 173.3 201.6C173.3 201 172.8 200.4 172.1 200.4Z" fill="#171D33"/>
212
+ <path d="M155.3 195.298C155.3 194.498 154.7 193.898 153.9 193.898C153.1 193.898 152.5 194.498 152.5 195.298C152.5 196.098 153.1 196.698 153.9 196.698C154.7 196.698 155.3 196.098 155.3 195.298Z" fill="#171D33"/>
213
+ <path d="M154 196.899C153.1 196.899 152.4 196.199 152.4 195.299C152.4 194.399 153.1 193.699 154 193.699C154.9 193.699 155.6 194.399 155.6 195.299C155.6 195.699 155.4 196.099 155.1 196.399C154.8 196.699 154.4 196.899 154 196.899ZM154 194.099C153.3 194.099 152.8 194.599 152.8 195.299C152.8 195.999 153.3 196.499 154 196.499C154.3 196.499 154.6 196.399 154.8 196.199C155 195.999 155.2 195.699 155.2 195.399C155.2 194.699 154.6 194.099 154 194.099Z" fill="#171D33"/>
214
+ <g opacity="0.45">
215
+ <g opacity="0.45">
216
+ <path opacity="0.45" d="M79.9 184.501H49.8C48.7 184.501 47.8 183.601 47.8 182.501V131.701C47.8 130.601 48.7 129.701 49.8 129.701H79.9C81 129.701 81.9 130.601 81.9 131.701V182.501C81.9 183.601 81 184.501 79.9 184.501Z" fill="#828BC5"/>
217
+ </g>
218
+ <g opacity="0.45">
219
+ <path opacity="0.45" d="M79.9 184.6H49.8C48.6 184.6 47.6 183.6 47.6 182.4V131.6C47.6 130.4 48.6 129.4 49.8 129.4H79.9C81.1 129.4 82.1 130.4 82.1 131.6V182.4C82.1 183 81.9 183.5 81.5 184C81 184.4 80.5 184.6 79.9 184.6ZM49.7 129.8C48.7 129.8 47.9 130.6 47.9 131.6V182.4C47.9 183.4 48.7 184.2 49.7 184.2H79.8C80.3 184.2 80.8 184 81.1 183.7C81.4 183.4 81.6 182.9 81.6 182.4V131.6C81.6 130.6 80.8 129.8 79.8 129.8H49.7Z" fill="#828BC5"/>
220
+ </g>
221
+ </g>
222
+ <path d="M78.1 182.599H48C46.9 182.599 46 181.699 46 180.599V129.799C46 128.699 46.9 127.799 48 127.799H78.1C79.2 127.799 80.1 128.699 80.1 129.799V180.599C80.1 181.799 79.2 182.599 78.1 182.599Z" fill="white"/>
223
+ <path d="M78.1 182.8H48C46.8 182.8 45.8 181.8 45.8 180.6V129.8C45.8 128.6 46.8 127.6 48 127.6H78.1C79.3 127.6 80.3 128.6 80.3 129.8V180.6C80.3 181.2 80.1 181.7 79.7 182.1C79.2 182.6 78.6 182.8 78.1 182.8ZM47.9 128C46.9 128 46.1 128.8 46.1 129.8V180.6C46.1 181.6 46.9 182.4 47.9 182.4H78C78.5 182.4 79 182.2 79.3 181.9C79.6 181.6 79.8 181.1 79.8 180.6V129.8C79.8 128.8 79 128 78 128H47.9Z" fill="#171D33"/>
224
+ <path d="M50.5 135.099C50.5 135.099 50.4 135.099 50.4 134.999C50.3 134.899 50.3 134.799 50.4 134.699L53.2 131.899C53.3 131.799 53.4 131.799 53.5 131.899C53.6 131.999 53.6 132.099 53.5 132.199L50.7 134.999C50.6 134.999 50.5 135.099 50.5 135.099Z" fill="#171D33"/>
225
+ <path d="M53.3 135.099C53.3 135.099 53.2 135.099 53.2 134.999L50.4 132.199C50.3 132.099 50.3 131.999 50.4 131.899C50.5 131.799 50.6 131.799 50.7 131.899L53.5 134.699C53.6 134.799 53.6 134.899 53.5 134.999C53.4 134.999 53.3 135.099 53.3 135.099Z" fill="#171D33"/>
226
+ <path d="M74.4 148.4C74.4 148.3 74.3 148.2 74.3 148.1C74.2 148 74.1 148 74 148C66.9 148.4 63.3 142.1 63.3 142C63.2 141.8 62.8 141.8 62.6 142C62.6 142.1 58.9 148.4 51.9 148C51.8 148 51.7 148 51.6 148.1C51.5 148.2 51.5 148.3 51.5 148.4C51.5 148.6 50.8 165.3 62.9 167.2C62.9 167.2 62.9 167.2 63 167.2H63.1C75.1 165.2 74.4 148.5 74.4 148.4Z" fill="#E2F2FA"/>
227
+ <path d="M76.3 142.001C76.2 142.001 76.1 141.901 76.1 141.801C76.1 141.701 76.2 141.601 76.3 141.601C79.9 141.601 81.6 140.101 83.4 138.601C85.3 137.001 87.3 135.301 91.7 135.301C91.8 135.301 91.9 135.401 91.9 135.501C91.9 135.601 91.8 135.701 91.7 135.701C87.5 135.701 85.6 137.301 83.7 138.901C81.9 140.501 80.1 142.001 76.3 142.001Z" fill="#171D33"/>
228
+ <path d="M73.5 141.9C73.5 141.1 74.1 140.5 74.9 140.5C75.7 140.5 76.3 141.1 76.3 141.9C76.3 142.7 75.7 143.3 74.9 143.3C74.2 143.2 73.5 142.6 73.5 141.9Z" fill="#171D33"/>
229
+ <path d="M74.9 143.399C74.5 143.399 74.1 143.199 73.8 142.899C73.5 142.599 73.3 142.199 73.3 141.799C73.3 140.899 74 140.199 74.9 140.199C75.8 140.199 76.5 140.899 76.5 141.799C76.5 142.699 75.8 143.399 74.9 143.399ZM74.9 140.699C74.2 140.699 73.7 141.199 73.7 141.899C73.7 142.199 73.8 142.499 74 142.799C74.2 142.999 74.5 143.099 74.8 143.099C75.5 143.099 76 142.599 76 141.899C76 141.199 75.6 140.699 74.9 140.699Z" fill="#171D33"/>
230
+ <path d="M91.7 135.599C91.7 134.799 92.3 134.199 93.1 134.199C93.9 134.199 94.5 134.799 94.5 135.599C94.5 136.399 93.9 136.999 93.1 136.999C92.4 136.999 91.7 136.299 91.7 135.599Z" fill="#171D33"/>
231
+ <path d="M93.1 137.1C92.7 137.1 92.4 137 92.1 136.7C91.8 136.4 91.6 136 91.6 135.6C91.6 134.7 92.3 134 93.2 134C94.1 134 94.8 134.7 94.8 135.6C94.7 136.4 94 137.1 93.1 137.1ZM93.1 134.4C92.4 134.4 91.9 134.9 91.9 135.6C91.9 135.9 92 136.2 92.3 136.5C92.5 136.7 92.8 136.8 93.1 136.8C93.8 136.8 94.3 136.3 94.3 135.6C94.3 134.9 93.8 134.4 93.1 134.4Z" fill="#171D33"/>
232
+ <g opacity="0.45">
233
+ <g opacity="0.45">
234
+ <path opacity="0.45" d="M80 116.602H49.6C48.6 116.602 47.7 115.802 47.7 114.702V71.9019C47.7 70.9019 48.5 70.002 49.6 70.002H80C81 70.002 81.9 70.8019 81.9 71.9019V114.702C81.9 115.702 81 116.602 80 116.602Z" fill="#828BC5"/>
235
+ </g>
236
+ <g opacity="0.45">
237
+ <path opacity="0.45" d="M80 116.701H49.6C48.5 116.701 47.5 115.801 47.5 114.601V71.8012C47.5 70.7012 48.4 69.7012 49.6 69.7012H80C81.1 69.7012 82.1 70.6012 82.1 71.8012V114.601C82.1 115.801 81.1 116.701 80 116.701ZM49.6 70.2012C48.7 70.2012 47.9 71.0012 47.9 71.9012V114.701C47.9 115.601 48.7 116.401 49.6 116.401H80C80.9 116.401 81.7 115.701 81.7 114.701V71.9012C81.7 71.0012 80.9 70.2012 80 70.2012H49.6Z" fill="#828BC5"/>
238
+ </g>
239
+ </g>
240
+ <path d="M78.2 114.7H47.8C46.8 114.7 45.9 113.9 45.9 112.8V69.9996C45.9 68.9996 46.7 68.0996 47.8 68.0996H78.2C79.2 68.0996 80.1 68.8996 80.1 69.9996V112.8C80.1 113.9 79.2 114.7 78.2 114.7Z" fill="white"/>
241
+ <path d="M78.2 114.9H47.8C46.7 114.9 45.7 114 45.7 112.8V70.0004C45.7 68.9004 46.6 67.9004 47.8 67.9004H78.2C79.3 67.9004 80.3 68.8004 80.3 70.0004V112.8C80.2 114 79.3 114.9 78.2 114.9ZM47.8 68.4004C46.9 68.4004 46.1 69.2004 46.1 70.1004V112.9C46.1 113.8 46.9 114.6 47.8 114.6H78.2C79.1 114.6 79.9 113.9 79.9 112.9V70.1004C79.9 69.2004 79.1 68.4004 78.2 68.4004H47.8V68.4004Z" fill="#171D33"/>
242
+ <path d="M50.5 75.4C50.5 75.4 50.4 75.4 50.4 75.3C50.3 75.2 50.3 75.1 50.4 75L53.2 72.2C53.3 72.1 53.4 72.1 53.5 72.2C53.6 72.3 53.6 72.4 53.5 72.5L50.7 75.3C50.6 75.4 50.5 75.4 50.5 75.4Z" fill="#171D33"/>
243
+ <path d="M53.3 75.4C53.3 75.4 53.2 75.4 53.2 75.3L50.4 72.5C50.3 72.4 50.3 72.3 50.4 72.2C50.5 72.1 50.6 72.1 50.7 72.2L53.5 75C53.6 75.1 53.6 75.2 53.5 75.3C53.4 75.4 53.3 75.4 53.3 75.4Z" fill="#171D33"/>
244
+ <path d="M91.7 86.1004C87.4 86.1004 85.4 84.4004 83.4 82.8004C81.6 81.3004 79.9 79.8004 76.3 79.8004C76.2 79.8004 76.1 79.7004 76.1 79.6004C76.1 79.5004 76.2 79.4004 76.3 79.4004C80 79.4004 81.9 81.0004 83.7 82.5004C85.6 84.1004 87.5 85.7004 91.7 85.7004C91.8 85.7004 91.9 85.8004 91.9 85.9004C91.9 86.0004 91.8 86.1004 91.7 86.1004Z" fill="#171D33"/>
245
+ <path d="M73.5 79.5992C73.5 80.3992 74.1 80.9992 74.9 80.9992C75.7 80.9992 76.3 80.3992 76.3 79.5992C76.3 78.7992 75.7 78.1992 74.9 78.1992C74.2 78.1992 73.5 78.7992 73.5 79.5992Z" fill="#171D33"/>
246
+ <path d="M74.9 81.2C74 81.2 73.3 80.5 73.3 79.6C73.3 78.7 74 78 74.9 78C75.8 78 76.5 78.7 76.5 79.6C76.5 80.5 75.8 81.2 74.9 81.2ZM74.9 78.4C74.2 78.4 73.7 78.9 73.7 79.6C73.7 80.3 74.2 80.8 74.9 80.8C75.6 80.8 76.1 80.3 76.1 79.6C76.1 78.9 75.6 78.4 74.9 78.4Z" fill="#171D33"/>
247
+ <path d="M91.7 85.9C91.7 86.7 92.3 87.3 93.1 87.3C93.9 87.3 94.5 86.7 94.5 85.9C94.5 85.1 93.9 84.5 93.1 84.5C92.4 84.5 91.7 85.1 91.7 85.9Z" fill="#171D33"/>
248
+ <path d="M93.1 87.5008C92.2 87.5008 91.5 86.8008 91.5 85.9008C91.5 85.0008 92.2 84.3008 93.1 84.3008C94 84.3008 94.7 85.0008 94.7 85.9008C94.7 86.8008 94 87.5008 93.1 87.5008ZM93.1 84.7008C92.4 84.7008 91.9 85.2008 91.9 85.9008C91.9 86.6008 92.4 87.1008 93.1 87.1008C93.8 87.1008 94.3 86.6008 94.3 85.9008C94.3 85.2008 93.8 84.7008 93.1 84.7008Z" fill="#171D33"/>
249
+ <g opacity="0.45">
250
+ <g opacity="0.45">
251
+ <path opacity="0.45" d="M135.5 77.3996H103.3C102.3 77.3996 101.4 76.5996 101.4 75.4996V56.4996C101.4 55.4996 102.2 54.5996 103.3 54.5996H135.5C136.5 54.5996 137.4 55.3996 137.4 56.4996V75.4996C137.4 76.5996 136.5 77.3996 135.5 77.3996Z" fill="#828BC5"/>
252
+ </g>
253
+ <g opacity="0.45">
254
+ <path opacity="0.45" d="M135.5 77.6004H103.3C102.2 77.6004 101.2 76.7004 101.2 75.5004V56.5004C101.2 55.4004 102.1 54.4004 103.3 54.4004H135.5C136.6 54.4004 137.6 55.3004 137.6 56.5004V75.5004C137.5 76.7004 136.6 77.6004 135.5 77.6004ZM103.2 54.9004C102.3 54.9004 101.5 55.7004 101.5 56.6004V75.6004C101.5 76.5004 102.3 77.3004 103.2 77.3004H135.4C136.3 77.3004 137.1 76.6004 137.1 75.6004V56.6004C137.1 55.7004 136.3 54.9004 135.4 54.9004H103.2Z" fill="#828BC5"/>
255
+ </g>
256
+ </g>
257
+ <path d="M133.7 75.5988H101.5C100.5 75.5988 99.6 74.7988 99.6 73.6988V54.6988C99.6 53.6988 100.4 52.7988 101.5 52.7988H133.7C134.7 52.7988 135.6 53.5988 135.6 54.6988V73.6988C135.5 74.7988 134.7 75.5988 133.7 75.5988Z" fill="white"/>
258
+ <path d="M133.7 75.7996H101.5C100.4 75.7996 99.4 74.8996 99.4 73.6996V54.6996C99.4 53.5996 100.3 52.5996 101.5 52.5996H133.7C134.8 52.5996 135.8 53.4996 135.8 54.6996V73.6996C135.7 74.8996 134.8 75.7996 133.7 75.7996ZM101.4 52.9996C100.5 52.9996 99.7 53.7996 99.7 54.6996V73.6996C99.7 74.5996 100.5 75.3996 101.4 75.3996H133.6C134.5 75.3996 135.3 74.5996 135.3 73.6996V54.6996C135.3 53.7996 134.5 52.9996 133.6 52.9996H101.4Z" fill="#171D33"/>
259
+ <path d="M104.1 59.9996C104.1 59.9996 104 59.9996 104 59.8996C103.9 59.7996 103.9 59.6996 104 59.5996L106.8 56.7996C106.9 56.6996 107 56.6996 107.1 56.7996C107.2 56.8996 107.2 56.9996 107.1 57.0996L104.3 59.8996C104.2 59.9996 104.1 59.9996 104.1 59.9996Z" fill="#171D33"/>
260
+ <path d="M106.9 59.9996C106.9 59.9996 106.8 59.9996 106.8 59.8996L104 57.0996C103.9 56.9996 103.9 56.8996 104 56.7996C104.1 56.6996 104.2 56.6996 104.3 56.7996L107.1 59.5996C107.2 59.6996 107.2 59.7996 107.1 59.8996C107 59.9996 106.9 59.9996 106.9 59.9996Z" fill="#171D33"/>
261
+ <g opacity="0.45">
262
+ <g opacity="0.45">
263
+ <path opacity="0.45" d="M223.9 60.6016H147.9C146.9 60.6016 146 61.4016 146 62.5016V68.9016C146 69.9016 146.8 70.8016 147.9 70.8016H223.9C224.9 70.8016 225.8 70.0016 225.8 68.9016V62.5016C225.8 61.4016 225 60.6016 223.9 60.6016Z" fill="#828BC5"/>
264
+ </g>
265
+ <g opacity="0.45">
266
+ <path opacity="0.45" d="M223.9 70.9008H147.9C146.8 70.9008 145.8 70.0008 145.8 68.8008V62.4008C145.8 61.3008 146.7 60.3008 147.9 60.3008H223.9C225 60.3008 226 61.2008 226 62.4008V68.8008C226 70.0008 225.1 70.9008 223.9 70.9008ZM148 60.8008C147.1 60.8008 146.3 61.6008 146.3 62.5008V68.9008C146.3 69.8008 147.1 70.6008 148 70.6008H224C224.9 70.6008 225.7 69.8008 225.7 68.9008V62.5008C225.7 61.6008 224.9 60.8008 224 60.8008H148Z" fill="#828BC5"/>
267
+ </g>
268
+ </g>
269
+ <path d="M222.5 59.2012H146.5C145.5 59.2012 144.6 60.0012 144.6 61.1012V67.5012C144.6 68.5012 145.4 69.4012 146.5 69.4012H222.5C223.5 69.4012 224.4 68.6012 224.4 67.5012V61.1012C224.4 60.0012 223.5 59.2012 222.5 59.2012Z" fill="white"/>
270
+ <path d="M222.5 69.5004H146.5C145.4 69.5004 144.4 68.6004 144.4 67.4004V61.0004C144.4 59.9004 145.3 58.9004 146.5 58.9004H222.5C223.6 58.9004 224.6 59.8004 224.6 61.0004V67.4004C224.6 68.5004 223.6 69.5004 222.5 69.5004ZM146.5 59.3004C145.6 59.3004 144.8 60.1004 144.8 61.0004V67.4004C144.8 68.3004 145.6 69.1004 146.5 69.1004H222.5C223.4 69.1004 224.2 68.3004 224.2 67.4004V61.0004C224.2 60.1004 223.4 59.3004 222.5 59.3004H146.5Z" fill="#171D33"/>
271
+ <path d="M218.5 62.5996H165.6C164.7 62.5996 163.9 63.3996 163.9 64.2996C163.9 65.1996 164.6 65.9996 165.6 65.9996H218.5C219.4 65.9996 220.2 65.1996 220.2 64.2996C220.1 63.2996 219.4 62.5996 218.5 62.5996Z" fill="#FFD802"/>
272
+ <path d="M208.2 62.5996H165.7C164.8 62.5996 164 63.2996 164 64.1996C164 65.0996 164.7 65.8996 165.7 65.8996H208.2V62.5996Z" fill="#E2F2FA"/>
273
+ <path d="M158 65.7004C157.2 65.7004 156.6 65.1004 156.6 64.3004C156.6 63.5004 157.2 62.9004 158 62.9004C158.8 62.9004 159.4 63.5004 159.4 64.3004C159.3 65.0004 158.7 65.7004 158 65.7004Z" fill="#FFD802"/>
274
+ <g opacity="0.45">
275
+ <g opacity="0.45">
276
+ <path opacity="0.45" d="M223.9 46.502H147.9C146.9 46.502 146 47.3019 146 48.4019V54.802C146 55.802 146.8 56.702 147.9 56.702H223.9C224.9 56.702 225.8 55.902 225.8 54.802V48.4019C225.8 47.3019 225 46.502 223.9 46.502Z" fill="#828BC5"/>
277
+ </g>
278
+ <g opacity="0.45">
279
+ <path opacity="0.45" d="M223.9 56.8012H147.9C146.8 56.8012 145.8 55.9012 145.8 54.7012V48.3012C145.8 47.2012 146.7 46.2012 147.9 46.2012H223.9C225 46.2012 226 47.1012 226 48.3012V54.7012C226 55.9012 225.1 56.8012 223.9 56.8012ZM148 46.7012C147.1 46.7012 146.3 47.5012 146.3 48.4012V54.8012C146.3 55.7012 147.1 56.5012 148 56.5012H224C224.9 56.5012 225.7 55.7012 225.7 54.8012V48.4012C225.7 47.5012 224.9 46.7012 224 46.7012H148Z" fill="#828BC5"/>
280
+ </g>
281
+ </g>
282
+ <path d="M222.5 45H146.5C145.5 45 144.6 45.8 144.6 46.9V53.3C144.6 54.3 145.4 55.2 146.5 55.2H222.5C223.5 55.2 224.4 54.4 224.4 53.3V46.9C224.4 45.9 223.5 45 222.5 45Z" fill="white"/>
283
+ <path d="M222.5 55.4008H146.5C145.4 55.4008 144.4 54.5008 144.4 53.3008V46.9008C144.4 45.8008 145.3 44.8008 146.5 44.8008H222.5C223.6 44.8008 224.6 45.7008 224.6 46.9008V53.3008C224.6 54.5008 223.6 55.4008 222.5 55.4008ZM146.5 45.2008C145.6 45.2008 144.8 46.0008 144.8 46.9008V53.3008C144.8 54.2008 145.6 55.0008 146.5 55.0008H222.5C223.4 55.0008 224.2 54.2008 224.2 53.3008V46.9008C224.2 46.0008 223.4 45.2008 222.5 45.2008H146.5Z" fill="#171D33"/>
284
+ <path d="M218.5 48.5H165.6C164.7 48.5 163.9 49.3 163.9 50.2C163.9 51.1 164.6 51.9 165.6 51.9H218.5C219.4 51.9 220.2 51.1 220.2 50.2C220.1 49.2 219.4 48.5 218.5 48.5Z" fill="#FFD802"/>
285
+ <path d="M177.5 48.5H165.6C164.7 48.5 163.9 49.3 163.9 50.2C163.9 51.1 164.6 51.9 165.6 51.9H177.5V48.5Z" fill="#E2F2FA"/>
286
+ <path d="M158 51.4992C157.2 51.4992 156.6 50.8992 156.6 50.0992C156.6 49.2992 157.2 48.6992 158 48.6992C158.8 48.6992 159.4 49.2992 159.4 50.0992C159.3 50.8992 158.7 51.4992 158 51.4992Z" fill="#FFD802"/>
287
+ <g opacity="0.45">
288
+ <g opacity="0.45">
289
+ <path opacity="0.45" d="M223.9 74.8008H147.9C146.9 74.8008 146 75.6008 146 76.7008V83.1008C146 84.1008 146.8 85.0008 147.9 85.0008H223.9C224.9 85.0008 225.8 84.2008 225.8 83.1008V76.7008C225.8 75.6008 225 74.8008 223.9 74.8008Z" fill="#828BC5"/>
290
+ </g>
291
+ </g>
292
+ <path d="M222.5 73.3008H146.5C145.5 73.3008 144.6 74.1008 144.6 75.2008V81.6008C144.6 82.6008 145.4 83.5008 146.5 83.5008H222.5C223.5 83.5008 224.4 82.7008 224.4 81.6008V75.2008C224.4 74.1008 223.5 73.3008 222.5 73.3008Z" fill="white"/>
293
+ <path d="M218.5 76.6992H165.6C164.7 76.6992 163.9 77.4992 163.9 78.3992C163.9 79.2992 164.6 80.0992 165.6 80.0992H218.5C219.4 80.0992 220.2 79.2992 220.2 78.3992C220.1 77.3992 219.4 76.6992 218.5 76.6992Z" fill="#FFD802"/>
294
+ <path d="M216.5 76.6992H165.7C164.8 76.6992 164 77.4992 164 78.3992C164 79.2992 164.7 80.0992 165.7 80.0992H216.5V76.6992Z" fill="#E2F2FA"/>
295
+ <path d="M158 79.8C157.2 79.8 156.6 79.2 156.6 78.4C156.6 77.6 157.2 77 158 77C158.8 77 159.4 77.6 159.4 78.4C159.3 79.2 158.7 79.8 158 79.8Z" fill="#FFD802"/>
296
+ <path d="M132.6 57.1004C132.5 57.1004 132.4 57.0004 132.4 56.9004C132.4 56.8004 132.5 56.7004 132.6 56.7004C136.2 56.7004 137.9 55.2004 139.7 53.7004C141.6 52.1004 143.6 50.4004 148 50.4004C148.1 50.4004 148.2 50.5004 148.2 50.6004C148.2 50.7004 148.1 50.8004 148 50.8004C143.8 50.8004 141.9 52.4004 140 54.0004C138.2 55.5004 136.3 57.1004 132.6 57.1004Z" fill="#171D33"/>
297
+ <path d="M129.8 56.9C129.8 56.1 130.4 55.5 131.2 55.5C132 55.5 132.6 56.1 132.6 56.9C132.6 57.7 132 58.3 131.2 58.3C130.4 58.3 129.8 57.7 129.8 56.9Z" fill="#171D33"/>
298
+ <path d="M131.2 58.5008C130.8 58.5008 130.4 58.3008 130.1 58.0008C129.8 57.7008 129.6 57.3008 129.6 56.9008C129.6 56.0008 130.3 55.3008 131.2 55.3008C132.1 55.3008 132.8 56.0008 132.8 56.9008C132.7 57.8008 132 58.5008 131.2 58.5008ZM131.2 55.7008C130.5 55.7008 130 56.2008 130 56.9008C130 57.2008 130.1 57.5008 130.4 57.8008C130.6 58.0008 130.9 58.1008 131.2 58.1008C131.9 58.1008 132.4 57.6008 132.4 56.9008C132.4 56.2008 131.8 55.7008 131.2 55.7008Z" fill="#171D33"/>
299
+ <path d="M148 50.5992C148 49.7992 148.6 49.1992 149.4 49.1992C150.2 49.1992 150.8 49.7992 150.8 50.5992C150.8 51.3992 150.2 51.9992 149.4 51.9992C148.6 51.9992 148 51.3992 148 50.5992Z" fill="#171D33"/>
300
+ <path d="M149.4 52.2C149 52.2 148.6 52 148.3 51.7C148 51.4 147.8 51 147.8 50.6C147.8 49.7 148.5 49 149.4 49C150.3 49 151 49.7 151 50.6C150.9 51.5 150.2 52.2 149.4 52.2ZM149.4 49.4C148.7 49.4 148.2 49.9 148.2 50.6C148.2 50.9 148.3 51.2 148.6 51.5C148.8 51.7 149.1 51.9 149.4 51.8C150.1 51.8 150.6 51.3 150.6 50.6C150.6 49.9 150 49.4 149.4 49.4Z" fill="#171D33"/>
301
+ <path d="M129.8 64.5992C129.8 63.7992 130.4 63.1992 131.2 63.1992C132 63.1992 132.6 63.7992 132.6 64.5992C132.6 65.3992 132 65.9992 131.2 65.9992C130.4 65.9992 129.8 65.2992 129.8 64.5992Z" fill="#171D33"/>
302
+ <path d="M131.2 66.2C130.3 66.2 129.6 65.5 129.6 64.6C129.6 63.7 130.3 63 131.2 63C132.1 63 132.8 63.7 132.8 64.6C132.7 65.4 132 66.2 131.2 66.2ZM131.2 63.3C130.5 63.3 130 63.8 130 64.5C130 65.2 130.5 65.7 131.2 65.7C131.9 65.7 132.4 65.2 132.4 64.5C132.4 63.9 131.8 63.3 131.2 63.3Z" fill="#171D33"/>
303
+ <path d="M148 64.5992C148 63.7992 148.6 63.1992 149.4 63.1992C150.2 63.1992 150.8 63.7992 150.8 64.5992C150.8 65.3992 150.2 65.9992 149.4 65.9992C148.6 65.9992 148 65.2992 148 64.5992Z" fill="#171D33"/>
304
+ <path d="M149.4 66.2C148.5 66.2 147.8 65.5 147.8 64.6C147.8 63.7 148.5 63 149.4 63C150.3 63 151 63.7 151 64.6C150.9 65.4 150.2 66.2 149.4 66.2ZM149.4 63.3C148.7 63.3 148.2 63.8 148.2 64.5C148.2 65.2 148.7 65.7 149.4 65.7C150.1 65.7 150.6 65.2 150.6 64.5C150.6 63.9 150 63.3 149.4 63.3Z" fill="#171D33"/>
305
+ <path d="M148 64.8004H132.6C132.5 64.8004 132.4 64.7004 132.4 64.6004C132.4 64.5004 132.5 64.4004 132.6 64.4004H148C148.1 64.4004 148.2 64.5004 148.2 64.6004C148.2 64.7004 148.1 64.8004 148 64.8004Z" fill="#171D33"/>
306
+ <path d="M148 78.2C143.7 78.2 141.7 76.5 139.7 74.9C137.9 73.4 136.2 71.9 132.6 71.9C132.5 71.9 132.4 71.8 132.4 71.7C132.4 71.6 132.5 71.5 132.6 71.5C136.3 71.5 138.2 73.1 140 74.6C141.9 76.2 143.8 77.8 148 77.8C148.1 77.8 148.2 77.9 148.2 78C148.2 78.1 148.1 78.2 148 78.2Z" fill="#171D33"/>
307
+ <path d="M129.8 71.6988C129.8 72.4988 130.4 73.0988 131.2 73.0988C132 73.0988 132.6 72.4988 132.6 71.6988C132.6 70.8988 132 70.2988 131.2 70.2988C130.4 70.2988 129.8 70.9988 129.8 71.6988Z" fill="#171D33"/>
308
+ <path d="M131.2 73.2996C130.3 73.2996 129.6 72.5996 129.6 71.6996C129.6 70.7996 130.3 70.0996 131.2 70.0996C132.1 70.0996 132.8 70.7996 132.8 71.6996C132.7 72.5996 132 73.2996 131.2 73.2996ZM131.2 70.4996C130.5 70.4996 130 70.9996 130 71.6996C130 72.3996 130.5 72.8996 131.2 72.8996C131.9 72.8996 132.4 72.3996 132.4 71.6996C132.4 71.0996 131.8 70.4996 131.2 70.4996Z" fill="#171D33"/>
309
+ <path d="M148 77.9996C148 78.7996 148.6 79.3996 149.4 79.3996C150.2 79.3996 150.8 78.7996 150.8 77.9996C150.8 77.1996 150.2 76.5996 149.4 76.5996C148.6 76.5996 148 77.2996 148 77.9996Z" fill="#171D33"/>
310
+ <path d="M149.4 79.6004C148.5 79.6004 147.8 78.9004 147.8 78.0004C147.8 77.1004 148.5 76.4004 149.4 76.4004C150.3 76.4004 151 77.1004 151 78.0004C150.9 78.9004 150.2 79.6004 149.4 79.6004ZM149.4 76.8004C148.7 76.8004 148.2 77.3004 148.2 78.0004C148.2 78.7004 148.7 79.2004 149.4 79.2004C150.1 79.2004 150.6 78.7004 150.6 78.0004C150.6 77.4004 150 76.8004 149.4 76.8004Z" fill="#171D33"/>
311
+ <path d="M126.9 62.6992H104V73.6992H126.9V62.6992Z" fill="#F8F9FD"/>
312
+ <path d="M110.2 68.3984H107.4V71.3984H110.2V68.3984Z" fill="#7097AF"/>
313
+ <path d="M113.1 65.5996H110.2V71.3996H113.1V65.5996Z" fill="#E9EDF6"/>
314
+ <path d="M116.4 64.1992H113.1V71.3992H116.4V64.1992Z" fill="white"/>
315
+ <path d="M127 71.3984H107.4V72.0984H127V71.3984Z" fill="#BBD4E0"/>
316
+ <path d="M114 63.0992C114.11 63.0992 114.2 63.0097 114.2 62.8992C114.2 62.7888 114.11 62.6992 114 62.6992C113.89 62.6992 113.8 62.7888 113.8 62.8992C113.8 63.0097 113.89 63.0992 114 63.0992Z" fill="#BBD4E0"/>
317
+ <path d="M114 63.6988C114.11 63.6988 114.2 63.6093 114.2 63.4988C114.2 63.3884 114.11 63.2988 114 63.2988C113.89 63.2988 113.8 63.3884 113.8 63.4988C113.8 63.6093 113.89 63.6988 114 63.6988Z" fill="#BBD4E0"/>
318
+ <path d="M114 64.2984C114.11 64.2984 114.2 64.2089 114.2 64.0984C114.2 63.988 114.11 63.8984 114 63.8984C113.89 63.8984 113.8 63.988 113.8 64.0984C113.8 64.2089 113.89 64.2984 114 64.2984Z" fill="#BBD4E0"/>
319
+ <path d="M114 64.9C114.11 64.9 114.2 64.8105 114.2 64.7C114.2 64.5895 114.11 64.5 114 64.5C113.89 64.5 113.8 64.5895 113.8 64.7C113.8 64.8105 113.89 64.9 114 64.9Z" fill="#BBD4E0"/>
320
+ <path d="M114 65.5992C114.11 65.5992 114.2 65.5097 114.2 65.3992C114.2 65.2888 114.11 65.1992 114 65.1992C113.89 65.1992 113.8 65.2888 113.8 65.3992C113.8 65.5097 113.89 65.5992 114 65.5992Z" fill="#BBD4E0"/>
321
+ <path d="M114 66.1988C114.11 66.1988 114.2 66.1093 114.2 65.9988C114.2 65.8884 114.11 65.7988 114 65.7988C113.89 65.7988 113.8 65.8884 113.8 65.9988C113.8 66.1093 113.89 66.1988 114 66.1988Z" fill="#BBD4E0"/>
322
+ <path d="M114 66.7984C114.11 66.7984 114.2 66.7089 114.2 66.5984C114.2 66.488 114.11 66.3984 114 66.3984C113.89 66.3984 113.8 66.488 113.8 66.5984C113.8 66.7089 113.89 66.7984 114 66.7984Z" fill="#BBD4E0"/>
323
+ <path d="M114 67.4C114.11 67.4 114.2 67.3105 114.2 67.2C114.2 67.0895 114.11 67 114 67C113.89 67 113.8 67.0895 113.8 67.2C113.8 67.3105 113.89 67.4 114 67.4Z" fill="#BBD4E0"/>
324
+ <path d="M114.8 63.0992C114.91 63.0992 115 63.0097 115 62.8992C115 62.7888 114.91 62.6992 114.8 62.6992C114.69 62.6992 114.6 62.7888 114.6 62.8992C114.6 63.0097 114.69 63.0992 114.8 63.0992Z" fill="#BBD4E0"/>
325
+ <path d="M114.8 63.6988C114.91 63.6988 115 63.6093 115 63.4988C115 63.3884 114.91 63.2988 114.8 63.2988C114.69 63.2988 114.6 63.3884 114.6 63.4988C114.6 63.6093 114.69 63.6988 114.8 63.6988Z" fill="#BBD4E0"/>
326
+ <path d="M114.8 64.2984C114.91 64.2984 115 64.2089 115 64.0984C115 63.988 114.91 63.8984 114.8 63.8984C114.69 63.8984 114.6 63.988 114.6 64.0984C114.6 64.2089 114.69 64.2984 114.8 64.2984Z" fill="#BBD4E0"/>
327
+ <path d="M114.8 64.9C114.91 64.9 115 64.8105 115 64.7C115 64.5895 114.91 64.5 114.8 64.5C114.69 64.5 114.6 64.5895 114.6 64.7C114.6 64.8105 114.69 64.9 114.8 64.9Z" fill="#BBD4E0"/>
328
+ <path d="M114.8 65.5992C114.91 65.5992 115 65.5097 115 65.3992C115 65.2888 114.91 65.1992 114.8 65.1992C114.69 65.1992 114.6 65.2888 114.6 65.3992C114.6 65.5097 114.69 65.5992 114.8 65.5992Z" fill="#BBD4E0"/>
329
+ <path d="M114.8 66.1988C114.91 66.1988 115 66.1093 115 65.9988C115 65.8884 114.91 65.7988 114.8 65.7988C114.69 65.7988 114.6 65.8884 114.6 65.9988C114.6 66.1093 114.69 66.1988 114.8 66.1988Z" fill="#BBD4E0"/>
330
+ <path d="M114.8 66.7984C114.91 66.7984 115 66.7089 115 66.5984C115 66.488 114.91 66.3984 114.8 66.3984C114.69 66.3984 114.6 66.488 114.6 66.5984C114.6 66.7089 114.69 66.7984 114.8 66.7984Z" fill="#BBD4E0"/>
331
+ <path d="M114.8 67.4C114.91 67.4 115 67.3105 115 67.2C115 67.0895 114.91 67 114.8 67C114.69 67 114.6 67.0895 114.6 67.2C114.6 67.3105 114.69 67.4 114.8 67.4Z" fill="#BBD4E0"/>
332
+ <path d="M115.5 63.0992C115.61 63.0992 115.7 63.0097 115.7 62.8992C115.7 62.7888 115.61 62.6992 115.5 62.6992C115.39 62.6992 115.3 62.7888 115.3 62.8992C115.3 63.0097 115.39 63.0992 115.5 63.0992Z" fill="#BBD4E0"/>
333
+ <path d="M115.5 63.6988C115.61 63.6988 115.7 63.6093 115.7 63.4988C115.7 63.3884 115.61 63.2988 115.5 63.2988C115.39 63.2988 115.3 63.3884 115.3 63.4988C115.3 63.6093 115.39 63.6988 115.5 63.6988Z" fill="#BBD4E0"/>
334
+ <path d="M115.5 64.2984C115.61 64.2984 115.7 64.2089 115.7 64.0984C115.7 63.988 115.61 63.8984 115.5 63.8984C115.39 63.8984 115.3 63.988 115.3 64.0984C115.3 64.2089 115.39 64.2984 115.5 64.2984Z" fill="#BBD4E0"/>
335
+ <path d="M115.5 64.9C115.61 64.9 115.7 64.8105 115.7 64.7C115.7 64.5895 115.61 64.5 115.5 64.5C115.39 64.5 115.3 64.5895 115.3 64.7C115.3 64.8105 115.39 64.9 115.5 64.9Z" fill="#BBD4E0"/>
336
+ <path d="M115.5 65.5992C115.61 65.5992 115.7 65.5097 115.7 65.3992C115.7 65.2888 115.61 65.1992 115.5 65.1992C115.39 65.1992 115.3 65.2888 115.3 65.3992C115.3 65.5097 115.39 65.5992 115.5 65.5992Z" fill="#BBD4E0"/>
337
+ <path d="M115.5 66.1988C115.61 66.1988 115.7 66.1093 115.7 65.9988C115.7 65.8884 115.61 65.7988 115.5 65.7988C115.39 65.7988 115.3 65.8884 115.3 65.9988C115.3 66.1093 115.39 66.1988 115.5 66.1988Z" fill="#BBD4E0"/>
338
+ <path d="M115.5 66.7984C115.61 66.7984 115.7 66.7089 115.7 66.5984C115.7 66.488 115.61 66.3984 115.5 66.3984C115.39 66.3984 115.3 66.488 115.3 66.5984C115.3 66.7089 115.39 66.7984 115.5 66.7984Z" fill="#BBD4E0"/>
339
+ <path d="M115.5 67.4C115.61 67.4 115.7 67.3105 115.7 67.2C115.7 67.0895 115.61 67 115.5 67C115.39 67 115.3 67.0895 115.3 67.2C115.3 67.3105 115.39 67.4 115.5 67.4Z" fill="#BBD4E0"/>
340
+ <path d="M116.3 63.0992C116.41 63.0992 116.5 63.0097 116.5 62.8992C116.5 62.7888 116.41 62.6992 116.3 62.6992C116.19 62.6992 116.1 62.7888 116.1 62.8992C116.1 63.0097 116.19 63.0992 116.3 63.0992Z" fill="#BBD4E0"/>
341
+ <path d="M116.3 63.6988C116.41 63.6988 116.5 63.6093 116.5 63.4988C116.5 63.3884 116.41 63.2988 116.3 63.2988C116.19 63.2988 116.1 63.3884 116.1 63.4988C116.1 63.6093 116.19 63.6988 116.3 63.6988Z" fill="#BBD4E0"/>
342
+ <path d="M116.3 64.2984C116.41 64.2984 116.5 64.2089 116.5 64.0984C116.5 63.988 116.41 63.8984 116.3 63.8984C116.19 63.8984 116.1 63.988 116.1 64.0984C116.1 64.2089 116.19 64.2984 116.3 64.2984Z" fill="#BBD4E0"/>
343
+ <path d="M116.3 64.9C116.41 64.9 116.5 64.8105 116.5 64.7C116.5 64.5895 116.41 64.5 116.3 64.5C116.19 64.5 116.1 64.5895 116.1 64.7C116.1 64.8105 116.19 64.9 116.3 64.9Z" fill="#BBD4E0"/>
344
+ <path d="M116.3 65.5992C116.41 65.5992 116.5 65.5097 116.5 65.3992C116.5 65.2888 116.41 65.1992 116.3 65.1992C116.19 65.1992 116.1 65.2888 116.1 65.3992C116.1 65.5097 116.19 65.5992 116.3 65.5992Z" fill="#BBD4E0"/>
345
+ <path d="M116.3 66.1988C116.41 66.1988 116.5 66.1093 116.5 65.9988C116.5 65.8884 116.41 65.7988 116.3 65.7988C116.19 65.7988 116.1 65.8884 116.1 65.9988C116.1 66.1093 116.19 66.1988 116.3 66.1988Z" fill="#BBD4E0"/>
346
+ <path d="M116.3 66.7984C116.41 66.7984 116.5 66.7089 116.5 66.5984C116.5 66.488 116.41 66.3984 116.3 66.3984C116.19 66.3984 116.1 66.488 116.1 66.5984C116.1 66.7089 116.19 66.7984 116.3 66.7984Z" fill="#BBD4E0"/>
347
+ <path d="M116.3 67.4C116.41 67.4 116.5 67.3105 116.5 67.2C116.5 67.0895 116.41 67 116.3 67C116.19 67 116.1 67.0895 116.1 67.2C116.1 67.3105 116.19 67.4 116.3 67.4Z" fill="#BBD4E0"/>
348
+ <path d="M117 63.0992C117.11 63.0992 117.2 63.0097 117.2 62.8992C117.2 62.7888 117.11 62.6992 117 62.6992C116.89 62.6992 116.8 62.7888 116.8 62.8992C116.8 63.0097 116.89 63.0992 117 63.0992Z" fill="#BBD4E0"/>
349
+ <path d="M117 63.6988C117.11 63.6988 117.2 63.6093 117.2 63.4988C117.2 63.3884 117.11 63.2988 117 63.2988C116.89 63.2988 116.8 63.3884 116.8 63.4988C116.8 63.6093 116.89 63.6988 117 63.6988Z" fill="#BBD4E0"/>
350
+ <path d="M117 64.2984C117.11 64.2984 117.2 64.2089 117.2 64.0984C117.2 63.988 117.11 63.8984 117 63.8984C116.89 63.8984 116.8 63.988 116.8 64.0984C116.8 64.2089 116.89 64.2984 117 64.2984Z" fill="#BBD4E0"/>
351
+ <path d="M117 64.9C117.11 64.9 117.2 64.8105 117.2 64.7C117.2 64.5895 117.11 64.5 117 64.5C116.89 64.5 116.8 64.5895 116.8 64.7C116.8 64.8105 116.89 64.9 117 64.9Z" fill="#BBD4E0"/>
352
+ <path d="M117 65.5992C117.11 65.5992 117.2 65.5097 117.2 65.3992C117.2 65.2888 117.11 65.1992 117 65.1992C116.89 65.1992 116.8 65.2888 116.8 65.3992C116.8 65.5097 116.89 65.5992 117 65.5992Z" fill="#BBD4E0"/>
353
+ <path d="M117 66.1988C117.11 66.1988 117.2 66.1093 117.2 65.9988C117.2 65.8884 117.11 65.7988 117 65.7988C116.89 65.7988 116.8 65.8884 116.8 65.9988C116.8 66.1093 116.89 66.1988 117 66.1988Z" fill="#BBD4E0"/>
354
+ <path d="M117 66.7984C117.11 66.7984 117.2 66.7089 117.2 66.5984C117.2 66.488 117.11 66.3984 117 66.3984C116.89 66.3984 116.8 66.488 116.8 66.5984C116.8 66.7089 116.89 66.7984 117 66.7984Z" fill="#BBD4E0"/>
355
+ <path d="M117 67.4C117.11 67.4 117.2 67.3105 117.2 67.2C117.2 67.0895 117.11 67 117 67C116.89 67 116.8 67.0895 116.8 67.2C116.8 67.3105 116.89 67.4 117 67.4Z" fill="#BBD4E0"/>
356
+ <path d="M117.8 63.0992C117.91 63.0992 118 63.0097 118 62.8992C118 62.7888 117.91 62.6992 117.8 62.6992C117.69 62.6992 117.6 62.7888 117.6 62.8992C117.6 63.0097 117.69 63.0992 117.8 63.0992Z" fill="#BBD4E0"/>
357
+ <path d="M117.8 63.6988C117.91 63.6988 118 63.6093 118 63.4988C118 63.3884 117.91 63.2988 117.8 63.2988C117.69 63.2988 117.6 63.3884 117.6 63.4988C117.6 63.6093 117.69 63.6988 117.8 63.6988Z" fill="#BBD4E0"/>
358
+ <path d="M117.8 64.2984C117.91 64.2984 118 64.2089 118 64.0984C118 63.988 117.91 63.8984 117.8 63.8984C117.69 63.8984 117.6 63.988 117.6 64.0984C117.6 64.2089 117.69 64.2984 117.8 64.2984Z" fill="#BBD4E0"/>
359
+ <path d="M117.8 64.9C117.91 64.9 118 64.8105 118 64.7C118 64.5895 117.91 64.5 117.8 64.5C117.69 64.5 117.6 64.5895 117.6 64.7C117.6 64.8105 117.69 64.9 117.8 64.9Z" fill="#BBD4E0"/>
360
+ <path d="M117.8 65.5992C117.91 65.5992 118 65.5097 118 65.3992C118 65.2888 117.91 65.1992 117.8 65.1992C117.69 65.1992 117.6 65.2888 117.6 65.3992C117.6 65.5097 117.69 65.5992 117.8 65.5992Z" fill="#BBD4E0"/>
361
+ <path d="M117.8 66.1988C117.91 66.1988 118 66.1093 118 65.9988C118 65.8884 117.91 65.7988 117.8 65.7988C117.69 65.7988 117.6 65.8884 117.6 65.9988C117.6 66.1093 117.69 66.1988 117.8 66.1988Z" fill="#BBD4E0"/>
362
+ <path d="M117.8 66.7984C117.91 66.7984 118 66.7089 118 66.5984C118 66.488 117.91 66.3984 117.8 66.3984C117.69 66.3984 117.6 66.488 117.6 66.5984C117.6 66.7089 117.69 66.7984 117.8 66.7984Z" fill="#BBD4E0"/>
363
+ <path d="M117.8 67.4C117.91 67.4 118 67.3105 118 67.2C118 67.0895 117.91 67 117.8 67C117.69 67 117.6 67.0895 117.6 67.2C117.6 67.3105 117.69 67.4 117.8 67.4Z" fill="#BBD4E0"/>
364
+ <path d="M118.5 63.0992C118.61 63.0992 118.7 63.0097 118.7 62.8992C118.7 62.7888 118.61 62.6992 118.5 62.6992C118.39 62.6992 118.3 62.7888 118.3 62.8992C118.3 63.0097 118.39 63.0992 118.5 63.0992Z" fill="#BBD4E0"/>
365
+ <path d="M118.5 63.6988C118.61 63.6988 118.7 63.6093 118.7 63.4988C118.7 63.3884 118.61 63.2988 118.5 63.2988C118.39 63.2988 118.3 63.3884 118.3 63.4988C118.3 63.6093 118.39 63.6988 118.5 63.6988Z" fill="#BBD4E0"/>
366
+ <path d="M118.5 64.2984C118.61 64.2984 118.7 64.2089 118.7 64.0984C118.7 63.988 118.61 63.8984 118.5 63.8984C118.39 63.8984 118.3 63.988 118.3 64.0984C118.3 64.2089 118.39 64.2984 118.5 64.2984Z" fill="#BBD4E0"/>
367
+ <path d="M118.5 64.9C118.61 64.9 118.7 64.8105 118.7 64.7C118.7 64.5895 118.61 64.5 118.5 64.5C118.39 64.5 118.3 64.5895 118.3 64.7C118.3 64.8105 118.39 64.9 118.5 64.9Z" fill="#BBD4E0"/>
368
+ <path d="M118.5 65.5992C118.61 65.5992 118.7 65.5097 118.7 65.3992C118.7 65.2888 118.61 65.1992 118.5 65.1992C118.39 65.1992 118.3 65.2888 118.3 65.3992C118.3 65.5097 118.39 65.5992 118.5 65.5992Z" fill="#BBD4E0"/>
369
+ <path d="M118.5 66.1988C118.61 66.1988 118.7 66.1093 118.7 65.9988C118.7 65.8884 118.61 65.7988 118.5 65.7988C118.39 65.7988 118.3 65.8884 118.3 65.9988C118.3 66.1093 118.39 66.1988 118.5 66.1988Z" fill="#BBD4E0"/>
370
+ <path d="M118.5 66.7984C118.61 66.7984 118.7 66.7089 118.7 66.5984C118.7 66.488 118.61 66.3984 118.5 66.3984C118.39 66.3984 118.3 66.488 118.3 66.5984C118.3 66.7089 118.39 66.7984 118.5 66.7984Z" fill="#BBD4E0"/>
371
+ <path d="M118.5 67.4C118.61 67.4 118.7 67.3105 118.7 67.2C118.7 67.0895 118.61 67 118.5 67C118.39 67 118.3 67.0895 118.3 67.2C118.3 67.3105 118.39 67.4 118.5 67.4Z" fill="#BBD4E0"/>
372
+ <path d="M119.3 63.0992C119.41 63.0992 119.5 63.0097 119.5 62.8992C119.5 62.7888 119.41 62.6992 119.3 62.6992C119.19 62.6992 119.1 62.7888 119.1 62.8992C119.1 63.0097 119.19 63.0992 119.3 63.0992Z" fill="#BBD4E0"/>
373
+ <path d="M119.3 63.6988C119.41 63.6988 119.5 63.6093 119.5 63.4988C119.5 63.3884 119.41 63.2988 119.3 63.2988C119.19 63.2988 119.1 63.3884 119.1 63.4988C119.1 63.6093 119.19 63.6988 119.3 63.6988Z" fill="#BBD4E0"/>
374
+ <path d="M119.3 64.2984C119.41 64.2984 119.5 64.2089 119.5 64.0984C119.5 63.988 119.41 63.8984 119.3 63.8984C119.19 63.8984 119.1 63.988 119.1 64.0984C119.1 64.2089 119.19 64.2984 119.3 64.2984Z" fill="#BBD4E0"/>
375
+ <path d="M119.3 64.9C119.41 64.9 119.5 64.8105 119.5 64.7C119.5 64.5895 119.41 64.5 119.3 64.5C119.19 64.5 119.1 64.5895 119.1 64.7C119.1 64.8105 119.19 64.9 119.3 64.9Z" fill="#BBD4E0"/>
376
+ <path d="M119.3 65.5992C119.41 65.5992 119.5 65.5097 119.5 65.3992C119.5 65.2888 119.41 65.1992 119.3 65.1992C119.19 65.1992 119.1 65.2888 119.1 65.3992C119.1 65.5097 119.19 65.5992 119.3 65.5992Z" fill="#BBD4E0"/>
377
+ <path d="M119.3 66.1988C119.41 66.1988 119.5 66.1093 119.5 65.9988C119.5 65.8884 119.41 65.7988 119.3 65.7988C119.19 65.7988 119.1 65.8884 119.1 65.9988C119.1 66.1093 119.19 66.1988 119.3 66.1988Z" fill="#BBD4E0"/>
378
+ <path d="M119.3 66.7984C119.41 66.7984 119.5 66.7089 119.5 66.5984C119.5 66.488 119.41 66.3984 119.3 66.3984C119.19 66.3984 119.1 66.488 119.1 66.5984C119.1 66.7089 119.19 66.7984 119.3 66.7984Z" fill="#BBD4E0"/>
379
+ <path d="M119.3 67.4C119.41 67.4 119.5 67.3105 119.5 67.2C119.5 67.0895 119.41 67 119.3 67C119.19 67 119.1 67.0895 119.1 67.2C119.1 67.3105 119.19 67.4 119.3 67.4Z" fill="#BBD4E0"/>
380
+ <path d="M120 63.0992C120.11 63.0992 120.2 63.0097 120.2 62.8992C120.2 62.7888 120.11 62.6992 120 62.6992C119.89 62.6992 119.8 62.7888 119.8 62.8992C119.8 63.0097 119.89 63.0992 120 63.0992Z" fill="#BBD4E0"/>
381
+ <path d="M120 63.6988C120.11 63.6988 120.2 63.6093 120.2 63.4988C120.2 63.3884 120.11 63.2988 120 63.2988C119.89 63.2988 119.8 63.3884 119.8 63.4988C119.8 63.6093 119.89 63.6988 120 63.6988Z" fill="#BBD4E0"/>
382
+ <path d="M120 64.2984C120.11 64.2984 120.2 64.2089 120.2 64.0984C120.2 63.988 120.11 63.8984 120 63.8984C119.89 63.8984 119.8 63.988 119.8 64.0984C119.8 64.2089 119.89 64.2984 120 64.2984Z" fill="#BBD4E0"/>
383
+ <path d="M120 64.9C120.11 64.9 120.2 64.8105 120.2 64.7C120.2 64.5895 120.11 64.5 120 64.5C119.89 64.5 119.8 64.5895 119.8 64.7C119.8 64.8105 119.89 64.9 120 64.9Z" fill="#BBD4E0"/>
384
+ <path d="M120 65.5992C120.11 65.5992 120.2 65.5097 120.2 65.3992C120.2 65.2888 120.11 65.1992 120 65.1992C119.89 65.1992 119.8 65.2888 119.8 65.3992C119.8 65.5097 119.89 65.5992 120 65.5992Z" fill="#BBD4E0"/>
385
+ <path d="M120 66.1988C120.11 66.1988 120.2 66.1093 120.2 65.9988C120.2 65.8884 120.11 65.7988 120 65.7988C119.89 65.7988 119.8 65.8884 119.8 65.9988C119.8 66.1093 119.89 66.1988 120 66.1988Z" fill="#BBD4E0"/>
386
+ <path d="M120 66.7984C120.11 66.7984 120.2 66.7089 120.2 66.5984C120.2 66.488 120.11 66.3984 120 66.3984C119.89 66.3984 119.8 66.488 119.8 66.5984C119.8 66.7089 119.89 66.7984 120 66.7984Z" fill="#BBD4E0"/>
387
+ <path d="M120 67.4C120.11 67.4 120.2 67.3105 120.2 67.2C120.2 67.0895 120.11 67 120 67C119.89 67 119.8 67.0895 119.8 67.2C119.8 67.3105 119.89 67.4 120 67.4Z" fill="#BBD4E0"/>
388
+ <path d="M120.9 63.0992C121.01 63.0992 121.1 63.0097 121.1 62.8992C121.1 62.7888 121.01 62.6992 120.9 62.6992C120.79 62.6992 120.7 62.7888 120.7 62.8992C120.7 63.0097 120.79 63.0992 120.9 63.0992Z" fill="#BBD4E0"/>
389
+ <path d="M120.9 63.6988C121.01 63.6988 121.1 63.6093 121.1 63.4988C121.1 63.3884 121.01 63.2988 120.9 63.2988C120.79 63.2988 120.7 63.3884 120.7 63.4988C120.7 63.6093 120.79 63.6988 120.9 63.6988Z" fill="#BBD4E0"/>
390
+ <path d="M120.9 64.2984C121.01 64.2984 121.1 64.2089 121.1 64.0984C121.1 63.988 121.01 63.8984 120.9 63.8984C120.79 63.8984 120.7 63.988 120.7 64.0984C120.7 64.2089 120.79 64.2984 120.9 64.2984Z" fill="#BBD4E0"/>
391
+ <path d="M120.9 64.9C121.01 64.9 121.1 64.8105 121.1 64.7C121.1 64.5895 121.01 64.5 120.9 64.5C120.79 64.5 120.7 64.5895 120.7 64.7C120.7 64.8105 120.79 64.9 120.9 64.9Z" fill="#BBD4E0"/>
392
+ <path d="M120.9 65.5992C121.01 65.5992 121.1 65.5097 121.1 65.3992C121.1 65.2888 121.01 65.1992 120.9 65.1992C120.79 65.1992 120.7 65.2888 120.7 65.3992C120.7 65.5097 120.79 65.5992 120.9 65.5992Z" fill="#BBD4E0"/>
393
+ <path d="M120.9 66.1988C121.01 66.1988 121.1 66.1093 121.1 65.9988C121.1 65.8884 121.01 65.7988 120.9 65.7988C120.79 65.7988 120.7 65.8884 120.7 65.9988C120.7 66.1093 120.79 66.1988 120.9 66.1988Z" fill="#BBD4E0"/>
394
+ <path d="M120.9 66.7984C121.01 66.7984 121.1 66.7089 121.1 66.5984C121.1 66.488 121.01 66.3984 120.9 66.3984C120.79 66.3984 120.7 66.488 120.7 66.5984C120.7 66.7089 120.79 66.7984 120.9 66.7984Z" fill="#BBD4E0"/>
395
+ <path d="M120.9 67.4C121.01 67.4 121.1 67.3105 121.1 67.2C121.1 67.0895 121.01 67 120.9 67C120.79 67 120.7 67.0895 120.7 67.2C120.7 67.3105 120.79 67.4 120.9 67.4Z" fill="#BBD4E0"/>
396
+ <path d="M121.6 63.0992C121.71 63.0992 121.8 63.0097 121.8 62.8992C121.8 62.7888 121.71 62.6992 121.6 62.6992C121.49 62.6992 121.4 62.7888 121.4 62.8992C121.4 63.0097 121.49 63.0992 121.6 63.0992Z" fill="#BBD4E0"/>
397
+ <path d="M121.6 63.6988C121.71 63.6988 121.8 63.6093 121.8 63.4988C121.8 63.3884 121.71 63.2988 121.6 63.2988C121.49 63.2988 121.4 63.3884 121.4 63.4988C121.4 63.6093 121.49 63.6988 121.6 63.6988Z" fill="#BBD4E0"/>
398
+ <path d="M121.6 64.2984C121.71 64.2984 121.8 64.2089 121.8 64.0984C121.8 63.988 121.71 63.8984 121.6 63.8984C121.49 63.8984 121.4 63.988 121.4 64.0984C121.4 64.2089 121.49 64.2984 121.6 64.2984Z" fill="#BBD4E0"/>
399
+ <path d="M121.6 64.9C121.71 64.9 121.8 64.8105 121.8 64.7C121.8 64.5895 121.71 64.5 121.6 64.5C121.49 64.5 121.4 64.5895 121.4 64.7C121.4 64.8105 121.49 64.9 121.6 64.9Z" fill="#BBD4E0"/>
400
+ <path d="M121.6 65.5992C121.71 65.5992 121.8 65.5097 121.8 65.3992C121.8 65.2888 121.71 65.1992 121.6 65.1992C121.49 65.1992 121.4 65.2888 121.4 65.3992C121.4 65.5097 121.49 65.5992 121.6 65.5992Z" fill="#BBD4E0"/>
401
+ <path d="M121.6 66.1988C121.71 66.1988 121.8 66.1093 121.8 65.9988C121.8 65.8884 121.71 65.7988 121.6 65.7988C121.49 65.7988 121.4 65.8884 121.4 65.9988C121.4 66.1093 121.49 66.1988 121.6 66.1988Z" fill="#BBD4E0"/>
402
+ <path d="M121.6 66.7984C121.71 66.7984 121.8 66.7089 121.8 66.5984C121.8 66.488 121.71 66.3984 121.6 66.3984C121.49 66.3984 121.4 66.488 121.4 66.5984C121.4 66.7089 121.49 66.7984 121.6 66.7984Z" fill="#BBD4E0"/>
403
+ <path d="M121.6 67.4C121.71 67.4 121.8 67.3105 121.8 67.2C121.8 67.0895 121.71 67 121.6 67C121.49 67 121.4 67.0895 121.4 67.2C121.4 67.3105 121.49 67.4 121.6 67.4Z" fill="#BBD4E0"/>
404
+ <path d="M122.4 63.0992C122.51 63.0992 122.6 63.0097 122.6 62.8992C122.6 62.7888 122.51 62.6992 122.4 62.6992C122.29 62.6992 122.2 62.7888 122.2 62.8992C122.2 63.0097 122.29 63.0992 122.4 63.0992Z" fill="#BBD4E0"/>
405
+ <path d="M122.4 63.6988C122.51 63.6988 122.6 63.6093 122.6 63.4988C122.6 63.3884 122.51 63.2988 122.4 63.2988C122.29 63.2988 122.2 63.3884 122.2 63.4988C122.2 63.6093 122.29 63.6988 122.4 63.6988Z" fill="#BBD4E0"/>
406
+ <path d="M122.4 64.2984C122.51 64.2984 122.6 64.2089 122.6 64.0984C122.6 63.988 122.51 63.8984 122.4 63.8984C122.29 63.8984 122.2 63.988 122.2 64.0984C122.2 64.2089 122.29 64.2984 122.4 64.2984Z" fill="#BBD4E0"/>
407
+ <path d="M122.4 64.9C122.51 64.9 122.6 64.8105 122.6 64.7C122.6 64.5895 122.51 64.5 122.4 64.5C122.29 64.5 122.2 64.5895 122.2 64.7C122.2 64.8105 122.29 64.9 122.4 64.9Z" fill="#BBD4E0"/>
408
+ <path d="M122.4 65.5992C122.51 65.5992 122.6 65.5097 122.6 65.3992C122.6 65.2888 122.51 65.1992 122.4 65.1992C122.29 65.1992 122.2 65.2888 122.2 65.3992C122.2 65.5097 122.29 65.5992 122.4 65.5992Z" fill="#BBD4E0"/>
409
+ <path d="M122.4 66.1988C122.51 66.1988 122.6 66.1093 122.6 65.9988C122.6 65.8884 122.51 65.7988 122.4 65.7988C122.29 65.7988 122.2 65.8884 122.2 65.9988C122.2 66.1093 122.29 66.1988 122.4 66.1988Z" fill="#BBD4E0"/>
410
+ <path d="M122.4 66.7984C122.51 66.7984 122.6 66.7089 122.6 66.5984C122.6 66.488 122.51 66.3984 122.4 66.3984C122.29 66.3984 122.2 66.488 122.2 66.5984C122.2 66.7089 122.29 66.7984 122.4 66.7984Z" fill="#BBD4E0"/>
411
+ <path d="M122.4 67.4C122.51 67.4 122.6 67.3105 122.6 67.2C122.6 67.0895 122.51 67 122.4 67C122.29 67 122.2 67.0895 122.2 67.2C122.2 67.3105 122.29 67.4 122.4 67.4Z" fill="#BBD4E0"/>
412
+ <path d="M123.1 63.0992C123.21 63.0992 123.3 63.0097 123.3 62.8992C123.3 62.7888 123.21 62.6992 123.1 62.6992C122.99 62.6992 122.9 62.7888 122.9 62.8992C122.9 63.0097 122.99 63.0992 123.1 63.0992Z" fill="#BBD4E0"/>
413
+ <path d="M123.1 63.6988C123.21 63.6988 123.3 63.6093 123.3 63.4988C123.3 63.3884 123.21 63.2988 123.1 63.2988C122.99 63.2988 122.9 63.3884 122.9 63.4988C122.9 63.6093 122.99 63.6988 123.1 63.6988Z" fill="#BBD4E0"/>
414
+ <path d="M123.1 64.2984C123.21 64.2984 123.3 64.2089 123.3 64.0984C123.3 63.988 123.21 63.8984 123.1 63.8984C122.99 63.8984 122.9 63.988 122.9 64.0984C122.9 64.2089 122.99 64.2984 123.1 64.2984Z" fill="#BBD4E0"/>
415
+ <path d="M123.1 64.9C123.21 64.9 123.3 64.8105 123.3 64.7C123.3 64.5895 123.21 64.5 123.1 64.5C122.99 64.5 122.9 64.5895 122.9 64.7C122.9 64.8105 122.99 64.9 123.1 64.9Z" fill="#BBD4E0"/>
416
+ <path d="M123.1 65.5992C123.21 65.5992 123.3 65.5097 123.3 65.3992C123.3 65.2888 123.21 65.1992 123.1 65.1992C122.99 65.1992 122.9 65.2888 122.9 65.3992C122.9 65.5097 122.99 65.5992 123.1 65.5992Z" fill="#BBD4E0"/>
417
+ <path d="M123.1 66.1988C123.21 66.1988 123.3 66.1093 123.3 65.9988C123.3 65.8884 123.21 65.7988 123.1 65.7988C122.99 65.7988 122.9 65.8884 122.9 65.9988C122.9 66.1093 122.99 66.1988 123.1 66.1988Z" fill="#BBD4E0"/>
418
+ <path d="M123.1 66.7984C123.21 66.7984 123.3 66.7089 123.3 66.5984C123.3 66.488 123.21 66.3984 123.1 66.3984C122.99 66.3984 122.9 66.488 122.9 66.5984C122.9 66.7089 122.99 66.7984 123.1 66.7984Z" fill="#BBD4E0"/>
419
+ <path d="M123.1 67.4C123.21 67.4 123.3 67.3105 123.3 67.2C123.3 67.0895 123.21 67 123.1 67C122.99 67 122.9 67.0895 122.9 67.2C122.9 67.3105 122.99 67.4 123.1 67.4Z" fill="#BBD4E0"/>
420
+ <path d="M123.9 63.0992C124.01 63.0992 124.1 63.0097 124.1 62.8992C124.1 62.7888 124.01 62.6992 123.9 62.6992C123.79 62.6992 123.7 62.7888 123.7 62.8992C123.7 63.0097 123.79 63.0992 123.9 63.0992Z" fill="#BBD4E0"/>
421
+ <path d="M123.9 63.6988C124.01 63.6988 124.1 63.6093 124.1 63.4988C124.1 63.3884 124.01 63.2988 123.9 63.2988C123.79 63.2988 123.7 63.3884 123.7 63.4988C123.7 63.6093 123.79 63.6988 123.9 63.6988Z" fill="#BBD4E0"/>
422
+ <path d="M123.9 64.2984C124.01 64.2984 124.1 64.2089 124.1 64.0984C124.1 63.988 124.01 63.8984 123.9 63.8984C123.79 63.8984 123.7 63.988 123.7 64.0984C123.7 64.2089 123.79 64.2984 123.9 64.2984Z" fill="#BBD4E0"/>
423
+ <path d="M123.9 64.9C124.01 64.9 124.1 64.8105 124.1 64.7C124.1 64.5895 124.01 64.5 123.9 64.5C123.79 64.5 123.7 64.5895 123.7 64.7C123.7 64.8105 123.79 64.9 123.9 64.9Z" fill="#BBD4E0"/>
424
+ <path d="M123.9 65.5992C124.01 65.5992 124.1 65.5097 124.1 65.3992C124.1 65.2888 124.01 65.1992 123.9 65.1992C123.79 65.1992 123.7 65.2888 123.7 65.3992C123.7 65.5097 123.79 65.5992 123.9 65.5992Z" fill="#BBD4E0"/>
425
+ <path d="M123.9 66.1988C124.01 66.1988 124.1 66.1093 124.1 65.9988C124.1 65.8884 124.01 65.7988 123.9 65.7988C123.79 65.7988 123.7 65.8884 123.7 65.9988C123.7 66.1093 123.79 66.1988 123.9 66.1988Z" fill="#BBD4E0"/>
426
+ <path d="M123.9 66.7984C124.01 66.7984 124.1 66.7089 124.1 66.5984C124.1 66.488 124.01 66.3984 123.9 66.3984C123.79 66.3984 123.7 66.488 123.7 66.5984C123.7 66.7089 123.79 66.7984 123.9 66.7984Z" fill="#BBD4E0"/>
427
+ <path d="M123.9 67.4C124.01 67.4 124.1 67.3105 124.1 67.2C124.1 67.0895 124.01 67 123.9 67C123.79 67 123.7 67.0895 123.7 67.2C123.7 67.3105 123.79 67.4 123.9 67.4Z" fill="#BBD4E0"/>
428
+ <path d="M124.7 63.0992C124.81 63.0992 124.9 63.0097 124.9 62.8992C124.9 62.7888 124.81 62.6992 124.7 62.6992C124.59 62.6992 124.5 62.7888 124.5 62.8992C124.5 63.0097 124.59 63.0992 124.7 63.0992Z" fill="#BBD4E0"/>
429
+ <path d="M124.7 63.6988C124.81 63.6988 124.9 63.6093 124.9 63.4988C124.9 63.3884 124.81 63.2988 124.7 63.2988C124.59 63.2988 124.5 63.3884 124.5 63.4988C124.5 63.6093 124.59 63.6988 124.7 63.6988Z" fill="#BBD4E0"/>
430
+ <path d="M124.7 64.2984C124.81 64.2984 124.9 64.2089 124.9 64.0984C124.9 63.988 124.81 63.8984 124.7 63.8984C124.59 63.8984 124.5 63.988 124.5 64.0984C124.5 64.2089 124.59 64.2984 124.7 64.2984Z" fill="#BBD4E0"/>
431
+ <path d="M124.7 64.9C124.81 64.9 124.9 64.8105 124.9 64.7C124.9 64.5895 124.81 64.5 124.7 64.5C124.59 64.5 124.5 64.5895 124.5 64.7C124.5 64.8105 124.59 64.9 124.7 64.9Z" fill="#BBD4E0"/>
432
+ <path d="M124.7 65.5992C124.81 65.5992 124.9 65.5097 124.9 65.3992C124.9 65.2888 124.81 65.1992 124.7 65.1992C124.59 65.1992 124.5 65.2888 124.5 65.3992C124.5 65.5097 124.59 65.5992 124.7 65.5992Z" fill="#BBD4E0"/>
433
+ <path d="M124.7 66.1988C124.81 66.1988 124.9 66.1093 124.9 65.9988C124.9 65.8884 124.81 65.7988 124.7 65.7988C124.59 65.7988 124.5 65.8884 124.5 65.9988C124.5 66.1093 124.59 66.1988 124.7 66.1988Z" fill="#BBD4E0"/>
434
+ <path d="M124.7 66.7984C124.81 66.7984 124.9 66.7089 124.9 66.5984C124.9 66.488 124.81 66.3984 124.7 66.3984C124.59 66.3984 124.5 66.488 124.5 66.5984C124.5 66.7089 124.59 66.7984 124.7 66.7984Z" fill="#BBD4E0"/>
435
+ <path d="M124.7 67.4C124.81 67.4 124.9 67.3105 124.9 67.2C124.9 67.0895 124.81 67 124.7 67C124.59 67 124.5 67.0895 124.5 67.2C124.5 67.3105 124.59 67.4 124.7 67.4Z" fill="#BBD4E0"/>
436
+ <path d="M125.4 63.0992C125.51 63.0992 125.6 63.0097 125.6 62.8992C125.6 62.7888 125.51 62.6992 125.4 62.6992C125.29 62.6992 125.2 62.7888 125.2 62.8992C125.2 63.0097 125.29 63.0992 125.4 63.0992Z" fill="#BBD4E0"/>
437
+ <path d="M125.4 63.6988C125.51 63.6988 125.6 63.6093 125.6 63.4988C125.6 63.3884 125.51 63.2988 125.4 63.2988C125.29 63.2988 125.2 63.3884 125.2 63.4988C125.2 63.6093 125.29 63.6988 125.4 63.6988Z" fill="#BBD4E0"/>
438
+ <path d="M125.4 64.2984C125.51 64.2984 125.6 64.2089 125.6 64.0984C125.6 63.988 125.51 63.8984 125.4 63.8984C125.29 63.8984 125.2 63.988 125.2 64.0984C125.2 64.2089 125.29 64.2984 125.4 64.2984Z" fill="#BBD4E0"/>
439
+ <path d="M125.4 64.9C125.51 64.9 125.6 64.8105 125.6 64.7C125.6 64.5895 125.51 64.5 125.4 64.5C125.29 64.5 125.2 64.5895 125.2 64.7C125.2 64.8105 125.29 64.9 125.4 64.9Z" fill="#BBD4E0"/>
440
+ <path d="M125.4 65.5992C125.51 65.5992 125.6 65.5097 125.6 65.3992C125.6 65.2888 125.51 65.1992 125.4 65.1992C125.29 65.1992 125.2 65.2888 125.2 65.3992C125.2 65.5097 125.29 65.5992 125.4 65.5992Z" fill="#BBD4E0"/>
441
+ <path d="M125.4 66.1988C125.51 66.1988 125.6 66.1093 125.6 65.9988C125.6 65.8884 125.51 65.7988 125.4 65.7988C125.29 65.7988 125.2 65.8884 125.2 65.9988C125.2 66.1093 125.29 66.1988 125.4 66.1988Z" fill="#BBD4E0"/>
442
+ <path d="M125.4 66.7984C125.51 66.7984 125.6 66.7089 125.6 66.5984C125.6 66.488 125.51 66.3984 125.4 66.3984C125.29 66.3984 125.2 66.488 125.2 66.5984C125.2 66.7089 125.29 66.7984 125.4 66.7984Z" fill="#BBD4E0"/>
443
+ <path d="M125.4 67.4C125.51 67.4 125.6 67.3105 125.6 67.2C125.6 67.0895 125.51 67 125.4 67C125.29 67 125.2 67.0895 125.2 67.2C125.2 67.3105 125.29 67.4 125.4 67.4Z" fill="#BBD4E0"/>
444
+ <path d="M126.2 63.0992C126.31 63.0992 126.4 63.0097 126.4 62.8992C126.4 62.7888 126.31 62.6992 126.2 62.6992C126.09 62.6992 126 62.7888 126 62.8992C126 63.0097 126.09 63.0992 126.2 63.0992Z" fill="#BBD4E0"/>
445
+ <path d="M126.2 63.6988C126.31 63.6988 126.4 63.6093 126.4 63.4988C126.4 63.3884 126.31 63.2988 126.2 63.2988C126.09 63.2988 126 63.3884 126 63.4988C126 63.6093 126.09 63.6988 126.2 63.6988Z" fill="#BBD4E0"/>
446
+ <path d="M126.2 64.2984C126.31 64.2984 126.4 64.2089 126.4 64.0984C126.4 63.988 126.31 63.8984 126.2 63.8984C126.09 63.8984 126 63.988 126 64.0984C126 64.2089 126.09 64.2984 126.2 64.2984Z" fill="#BBD4E0"/>
447
+ <path d="M126.2 64.9C126.31 64.9 126.4 64.8105 126.4 64.7C126.4 64.5895 126.31 64.5 126.2 64.5C126.09 64.5 126 64.5895 126 64.7C126 64.8105 126.09 64.9 126.2 64.9Z" fill="#BBD4E0"/>
448
+ <path d="M126.2 65.5992C126.31 65.5992 126.4 65.5097 126.4 65.3992C126.4 65.2888 126.31 65.1992 126.2 65.1992C126.09 65.1992 126 65.2888 126 65.3992C126 65.5097 126.09 65.5992 126.2 65.5992Z" fill="#BBD4E0"/>
449
+ <path d="M126.2 66.1988C126.31 66.1988 126.4 66.1093 126.4 65.9988C126.4 65.8884 126.31 65.7988 126.2 65.7988C126.09 65.7988 126 65.8884 126 65.9988C126 66.1093 126.09 66.1988 126.2 66.1988Z" fill="#BBD4E0"/>
450
+ <path d="M126.2 66.7984C126.31 66.7984 126.4 66.7089 126.4 66.5984C126.4 66.488 126.31 66.3984 126.2 66.3984C126.09 66.3984 126 66.488 126 66.5984C126 66.7089 126.09 66.7984 126.2 66.7984Z" fill="#BBD4E0"/>
451
+ <path d="M126.2 67.4C126.31 67.4 126.4 67.3105 126.4 67.2C126.4 67.0895 126.31 67 126.2 67C126.09 67 126 67.0895 126 67.2C126 67.3105 126.09 67.4 126.2 67.4Z" fill="#BBD4E0"/>
452
+ <path d="M298.6 74.4004H262.3V99.0004H298.6V74.4004Z" fill="#FAFBFD"/>
453
+ <path d="M278.4 75.6012C278.51 75.6012 278.6 75.5116 278.6 75.4012C278.6 75.2907 278.51 75.2012 278.4 75.2012C278.29 75.2012 278.2 75.2907 278.2 75.4012C278.2 75.5116 278.29 75.6012 278.4 75.6012Z" fill="#BBD4E0"/>
454
+ <path d="M278.4 76.4019C278.51 76.4019 278.6 76.3124 278.6 76.202C278.6 76.0915 278.51 76.002 278.4 76.002C278.29 76.002 278.2 76.0915 278.2 76.202C278.2 76.3124 278.29 76.4019 278.4 76.4019Z" fill="#BBD4E0"/>
455
+ <path d="M278.4 77.2008C278.51 77.2008 278.6 77.1112 278.6 77.0008C278.6 76.8903 278.51 76.8008 278.4 76.8008C278.29 76.8008 278.2 76.8903 278.2 77.0008C278.2 77.1112 278.29 77.2008 278.4 77.2008Z" fill="#BBD4E0"/>
456
+ <path d="M278.4 78.1012C278.51 78.1012 278.6 78.0116 278.6 77.9012C278.6 77.7907 278.51 77.7012 278.4 77.7012C278.29 77.7012 278.2 77.7907 278.2 77.9012C278.2 78.0116 278.29 78.1012 278.4 78.1012Z" fill="#BBD4E0"/>
457
+ <path d="M278.4 78.9019C278.51 78.9019 278.6 78.8124 278.6 78.702C278.6 78.5915 278.51 78.502 278.4 78.502C278.29 78.502 278.2 78.5915 278.2 78.702C278.2 78.8124 278.29 78.9019 278.4 78.9019Z" fill="#BBD4E0"/>
458
+ <path d="M278.4 79.7008C278.51 79.7008 278.6 79.6112 278.6 79.5008C278.6 79.3903 278.51 79.3008 278.4 79.3008C278.29 79.3008 278.2 79.3903 278.2 79.5008C278.2 79.6112 278.29 79.7008 278.4 79.7008Z" fill="#BBD4E0"/>
459
+ <path d="M278.4 80.6012C278.51 80.6012 278.6 80.5116 278.6 80.4012C278.6 80.2907 278.51 80.2012 278.4 80.2012C278.29 80.2012 278.2 80.2907 278.2 80.4012C278.2 80.5116 278.29 80.6012 278.4 80.6012Z" fill="#BBD4E0"/>
460
+ <path d="M278.4 81.4019C278.51 81.4019 278.6 81.3124 278.6 81.202C278.6 81.0915 278.51 81.002 278.4 81.002C278.29 81.002 278.2 81.0915 278.2 81.202C278.2 81.3124 278.29 81.4019 278.4 81.4019Z" fill="#BBD4E0"/>
461
+ <path d="M279.4 75.6012C279.51 75.6012 279.6 75.5116 279.6 75.4012C279.6 75.2907 279.51 75.2012 279.4 75.2012C279.29 75.2012 279.2 75.2907 279.2 75.4012C279.2 75.5116 279.29 75.6012 279.4 75.6012Z" fill="#BBD4E0"/>
462
+ <path d="M279.4 76.4019C279.51 76.4019 279.6 76.3124 279.6 76.202C279.6 76.0915 279.51 76.002 279.4 76.002C279.29 76.002 279.2 76.0915 279.2 76.202C279.2 76.3124 279.29 76.4019 279.4 76.4019Z" fill="#BBD4E0"/>
463
+ <path d="M279.4 77.2008C279.51 77.2008 279.6 77.1112 279.6 77.0008C279.6 76.8903 279.51 76.8008 279.4 76.8008C279.29 76.8008 279.2 76.8903 279.2 77.0008C279.2 77.1112 279.29 77.2008 279.4 77.2008Z" fill="#BBD4E0"/>
464
+ <path d="M279.4 78.1012C279.51 78.1012 279.6 78.0116 279.6 77.9012C279.6 77.7907 279.51 77.7012 279.4 77.7012C279.29 77.7012 279.2 77.7907 279.2 77.9012C279.2 78.0116 279.29 78.1012 279.4 78.1012Z" fill="#BBD4E0"/>
465
+ <path d="M279.4 78.9019C279.51 78.9019 279.6 78.8124 279.6 78.702C279.6 78.5915 279.51 78.502 279.4 78.502C279.29 78.502 279.2 78.5915 279.2 78.702C279.2 78.8124 279.29 78.9019 279.4 78.9019Z" fill="#BBD4E0"/>
466
+ <path d="M279.4 79.7008C279.51 79.7008 279.6 79.6112 279.6 79.5008C279.6 79.3903 279.51 79.3008 279.4 79.3008C279.29 79.3008 279.2 79.3903 279.2 79.5008C279.2 79.6112 279.29 79.7008 279.4 79.7008Z" fill="#BBD4E0"/>
467
+ <path d="M279.4 80.6012C279.51 80.6012 279.6 80.5116 279.6 80.4012C279.6 80.2907 279.51 80.2012 279.4 80.2012C279.29 80.2012 279.2 80.2907 279.2 80.4012C279.2 80.5116 279.29 80.6012 279.4 80.6012Z" fill="#BBD4E0"/>
468
+ <path d="M279.4 81.4019C279.51 81.4019 279.6 81.3124 279.6 81.202C279.6 81.0915 279.51 81.002 279.4 81.002C279.29 81.002 279.2 81.0915 279.2 81.202C279.2 81.3124 279.29 81.4019 279.4 81.4019Z" fill="#BBD4E0"/>
469
+ <path d="M280.5 75.6012C280.61 75.6012 280.7 75.5116 280.7 75.4012C280.7 75.2907 280.61 75.2012 280.5 75.2012C280.39 75.2012 280.3 75.2907 280.3 75.4012C280.3 75.5116 280.39 75.6012 280.5 75.6012Z" fill="#BBD4E0"/>
470
+ <path d="M280.5 76.4019C280.61 76.4019 280.7 76.3124 280.7 76.202C280.7 76.0915 280.61 76.002 280.5 76.002C280.39 76.002 280.3 76.0915 280.3 76.202C280.3 76.3124 280.39 76.4019 280.5 76.4019Z" fill="#BBD4E0"/>
471
+ <path d="M280.5 77.2008C280.61 77.2008 280.7 77.1112 280.7 77.0008C280.7 76.8903 280.61 76.8008 280.5 76.8008C280.39 76.8008 280.3 76.8903 280.3 77.0008C280.3 77.1112 280.39 77.2008 280.5 77.2008Z" fill="#BBD4E0"/>
472
+ <path d="M280.5 78.1012C280.61 78.1012 280.7 78.0116 280.7 77.9012C280.7 77.7907 280.61 77.7012 280.5 77.7012C280.39 77.7012 280.3 77.7907 280.3 77.9012C280.3 78.0116 280.39 78.1012 280.5 78.1012Z" fill="#BBD4E0"/>
473
+ <path d="M280.5 78.9019C280.61 78.9019 280.7 78.8124 280.7 78.702C280.7 78.5915 280.61 78.502 280.5 78.502C280.39 78.502 280.3 78.5915 280.3 78.702C280.3 78.8124 280.39 78.9019 280.5 78.9019Z" fill="#BBD4E0"/>
474
+ <path d="M280.5 79.7008C280.61 79.7008 280.7 79.6112 280.7 79.5008C280.7 79.3903 280.61 79.3008 280.5 79.3008C280.39 79.3008 280.3 79.3903 280.3 79.5008C280.3 79.6112 280.39 79.7008 280.5 79.7008Z" fill="#BBD4E0"/>
475
+ <path d="M280.5 80.6012C280.61 80.6012 280.7 80.5116 280.7 80.4012C280.7 80.2907 280.61 80.2012 280.5 80.2012C280.39 80.2012 280.3 80.2907 280.3 80.4012C280.3 80.5116 280.39 80.6012 280.5 80.6012Z" fill="#BBD4E0"/>
476
+ <path d="M280.5 81.4019C280.61 81.4019 280.7 81.3124 280.7 81.202C280.7 81.0915 280.61 81.002 280.5 81.002C280.39 81.002 280.3 81.0915 280.3 81.202C280.3 81.3124 280.39 81.4019 280.5 81.4019Z" fill="#BBD4E0"/>
477
+ <path d="M281.5 75.6012C281.61 75.6012 281.7 75.5116 281.7 75.4012C281.7 75.2907 281.61 75.2012 281.5 75.2012C281.39 75.2012 281.3 75.2907 281.3 75.4012C281.3 75.5116 281.39 75.6012 281.5 75.6012Z" fill="#BBD4E0"/>
478
+ <path d="M281.5 76.4019C281.61 76.4019 281.7 76.3124 281.7 76.202C281.7 76.0915 281.61 76.002 281.5 76.002C281.39 76.002 281.3 76.0915 281.3 76.202C281.3 76.3124 281.39 76.4019 281.5 76.4019Z" fill="#BBD4E0"/>
479
+ <path d="M281.5 77.2008C281.61 77.2008 281.7 77.1112 281.7 77.0008C281.7 76.8903 281.61 76.8008 281.5 76.8008C281.39 76.8008 281.3 76.8903 281.3 77.0008C281.3 77.1112 281.39 77.2008 281.5 77.2008Z" fill="#BBD4E0"/>
480
+ <path d="M281.5 78.1012C281.61 78.1012 281.7 78.0116 281.7 77.9012C281.7 77.7907 281.61 77.7012 281.5 77.7012C281.39 77.7012 281.3 77.7907 281.3 77.9012C281.3 78.0116 281.39 78.1012 281.5 78.1012Z" fill="#BBD4E0"/>
481
+ <path d="M281.5 78.9019C281.61 78.9019 281.7 78.8124 281.7 78.702C281.7 78.5915 281.61 78.502 281.5 78.502C281.39 78.502 281.3 78.5915 281.3 78.702C281.3 78.8124 281.39 78.9019 281.5 78.9019Z" fill="#BBD4E0"/>
482
+ <path d="M281.5 79.7008C281.61 79.7008 281.7 79.6112 281.7 79.5008C281.7 79.3903 281.61 79.3008 281.5 79.3008C281.39 79.3008 281.3 79.3903 281.3 79.5008C281.3 79.6112 281.39 79.7008 281.5 79.7008Z" fill="#BBD4E0"/>
483
+ <path d="M281.5 80.6012C281.61 80.6012 281.7 80.5116 281.7 80.4012C281.7 80.2907 281.61 80.2012 281.5 80.2012C281.39 80.2012 281.3 80.2907 281.3 80.4012C281.3 80.5116 281.39 80.6012 281.5 80.6012Z" fill="#BBD4E0"/>
484
+ <path d="M281.5 81.4019C281.61 81.4019 281.7 81.3124 281.7 81.202C281.7 81.0915 281.61 81.002 281.5 81.002C281.39 81.002 281.3 81.0915 281.3 81.202C281.3 81.3124 281.39 81.4019 281.5 81.4019Z" fill="#BBD4E0"/>
485
+ <path d="M282.6 75.6012C282.71 75.6012 282.8 75.5116 282.8 75.4012C282.8 75.2907 282.71 75.2012 282.6 75.2012C282.49 75.2012 282.4 75.2907 282.4 75.4012C282.4 75.5116 282.49 75.6012 282.6 75.6012Z" fill="#BBD4E0"/>
486
+ <path d="M282.6 76.4019C282.71 76.4019 282.8 76.3124 282.8 76.202C282.8 76.0915 282.71 76.002 282.6 76.002C282.49 76.002 282.4 76.0915 282.4 76.202C282.4 76.3124 282.49 76.4019 282.6 76.4019Z" fill="#BBD4E0"/>
487
+ <path d="M282.6 77.2008C282.71 77.2008 282.8 77.1112 282.8 77.0008C282.8 76.8903 282.71 76.8008 282.6 76.8008C282.49 76.8008 282.4 76.8903 282.4 77.0008C282.4 77.1112 282.49 77.2008 282.6 77.2008Z" fill="#BBD4E0"/>
488
+ <path d="M282.6 78.1012C282.71 78.1012 282.8 78.0116 282.8 77.9012C282.8 77.7907 282.71 77.7012 282.6 77.7012C282.49 77.7012 282.4 77.7907 282.4 77.9012C282.4 78.0116 282.49 78.1012 282.6 78.1012Z" fill="#BBD4E0"/>
489
+ <path d="M282.6 78.9019C282.71 78.9019 282.8 78.8124 282.8 78.702C282.8 78.5915 282.71 78.502 282.6 78.502C282.49 78.502 282.4 78.5915 282.4 78.702C282.4 78.8124 282.49 78.9019 282.6 78.9019Z" fill="#BBD4E0"/>
490
+ <path d="M282.6 79.7008C282.71 79.7008 282.8 79.6112 282.8 79.5008C282.8 79.3903 282.71 79.3008 282.6 79.3008C282.49 79.3008 282.4 79.3903 282.4 79.5008C282.4 79.6112 282.49 79.7008 282.6 79.7008Z" fill="#BBD4E0"/>
491
+ <path d="M282.6 80.6012C282.71 80.6012 282.8 80.5116 282.8 80.4012C282.8 80.2907 282.71 80.2012 282.6 80.2012C282.49 80.2012 282.4 80.2907 282.4 80.4012C282.4 80.5116 282.49 80.6012 282.6 80.6012Z" fill="#BBD4E0"/>
492
+ <path d="M282.6 81.4019C282.71 81.4019 282.8 81.3124 282.8 81.202C282.8 81.0915 282.71 81.002 282.6 81.002C282.49 81.002 282.4 81.0915 282.4 81.202C282.4 81.3124 282.49 81.4019 282.6 81.4019Z" fill="#BBD4E0"/>
493
+ <path d="M283.6 75.6012C283.71 75.6012 283.8 75.5116 283.8 75.4012C283.8 75.2907 283.71 75.2012 283.6 75.2012C283.49 75.2012 283.4 75.2907 283.4 75.4012C283.4 75.5116 283.49 75.6012 283.6 75.6012Z" fill="#BBD4E0"/>
494
+ <path d="M283.6 76.4019C283.71 76.4019 283.8 76.3124 283.8 76.202C283.8 76.0915 283.71 76.002 283.6 76.002C283.49 76.002 283.4 76.0915 283.4 76.202C283.4 76.3124 283.49 76.4019 283.6 76.4019Z" fill="#BBD4E0"/>
495
+ <path d="M283.6 77.2008C283.71 77.2008 283.8 77.1112 283.8 77.0008C283.8 76.8903 283.71 76.8008 283.6 76.8008C283.49 76.8008 283.4 76.8903 283.4 77.0008C283.4 77.1112 283.49 77.2008 283.6 77.2008Z" fill="#BBD4E0"/>
496
+ <path d="M283.6 78.1012C283.71 78.1012 283.8 78.0116 283.8 77.9012C283.8 77.7907 283.71 77.7012 283.6 77.7012C283.49 77.7012 283.4 77.7907 283.4 77.9012C283.4 78.0116 283.49 78.1012 283.6 78.1012Z" fill="#BBD4E0"/>
497
+ <path d="M283.6 78.9019C283.71 78.9019 283.8 78.8124 283.8 78.702C283.8 78.5915 283.71 78.502 283.6 78.502C283.49 78.502 283.4 78.5915 283.4 78.702C283.4 78.8124 283.49 78.9019 283.6 78.9019Z" fill="#BBD4E0"/>
498
+ <path d="M283.6 79.7008C283.71 79.7008 283.8 79.6112 283.8 79.5008C283.8 79.3903 283.71 79.3008 283.6 79.3008C283.49 79.3008 283.4 79.3903 283.4 79.5008C283.4 79.6112 283.49 79.7008 283.6 79.7008Z" fill="#BBD4E0"/>
499
+ <path d="M283.6 80.6012C283.71 80.6012 283.8 80.5116 283.8 80.4012C283.8 80.2907 283.71 80.2012 283.6 80.2012C283.49 80.2012 283.4 80.2907 283.4 80.4012C283.4 80.5116 283.49 80.6012 283.6 80.6012Z" fill="#BBD4E0"/>
500
+ <path d="M283.6 81.4019C283.71 81.4019 283.8 81.3124 283.8 81.202C283.8 81.0915 283.71 81.002 283.6 81.002C283.49 81.002 283.4 81.0915 283.4 81.202C283.4 81.3124 283.49 81.4019 283.6 81.4019Z" fill="#BBD4E0"/>
501
+ <path d="M284.7 75.6012C284.81 75.6012 284.9 75.5116 284.9 75.4012C284.9 75.2907 284.81 75.2012 284.7 75.2012C284.59 75.2012 284.5 75.2907 284.5 75.4012C284.5 75.5116 284.59 75.6012 284.7 75.6012Z" fill="#BBD4E0"/>
502
+ <path d="M284.7 76.4019C284.81 76.4019 284.9 76.3124 284.9 76.202C284.9 76.0915 284.81 76.002 284.7 76.002C284.59 76.002 284.5 76.0915 284.5 76.202C284.5 76.3124 284.59 76.4019 284.7 76.4019Z" fill="#BBD4E0"/>
503
+ <path d="M284.7 77.2008C284.81 77.2008 284.9 77.1112 284.9 77.0008C284.9 76.8903 284.81 76.8008 284.7 76.8008C284.59 76.8008 284.5 76.8903 284.5 77.0008C284.5 77.1112 284.59 77.2008 284.7 77.2008Z" fill="#BBD4E0"/>
504
+ <path d="M284.7 78.1012C284.81 78.1012 284.9 78.0116 284.9 77.9012C284.9 77.7907 284.81 77.7012 284.7 77.7012C284.59 77.7012 284.5 77.7907 284.5 77.9012C284.5 78.0116 284.59 78.1012 284.7 78.1012Z" fill="#BBD4E0"/>
505
+ <path d="M284.7 78.9019C284.81 78.9019 284.9 78.8124 284.9 78.702C284.9 78.5915 284.81 78.502 284.7 78.502C284.59 78.502 284.5 78.5915 284.5 78.702C284.5 78.8124 284.59 78.9019 284.7 78.9019Z" fill="#BBD4E0"/>
506
+ <path d="M284.7 79.7008C284.81 79.7008 284.9 79.6112 284.9 79.5008C284.9 79.3903 284.81 79.3008 284.7 79.3008C284.59 79.3008 284.5 79.3903 284.5 79.5008C284.5 79.6112 284.59 79.7008 284.7 79.7008Z" fill="#BBD4E0"/>
507
+ <path d="M284.7 80.6012C284.81 80.6012 284.9 80.5116 284.9 80.4012C284.9 80.2907 284.81 80.2012 284.7 80.2012C284.59 80.2012 284.5 80.2907 284.5 80.4012C284.5 80.5116 284.59 80.6012 284.7 80.6012Z" fill="#BBD4E0"/>
508
+ <path d="M284.7 81.4019C284.81 81.4019 284.9 81.3124 284.9 81.202C284.9 81.0915 284.81 81.002 284.7 81.002C284.59 81.002 284.5 81.0915 284.5 81.202C284.5 81.3124 284.59 81.4019 284.7 81.4019Z" fill="#BBD4E0"/>
509
+ <path d="M285.7 75.6012C285.81 75.6012 285.9 75.5116 285.9 75.4012C285.9 75.2907 285.81 75.2012 285.7 75.2012C285.59 75.2012 285.5 75.2907 285.5 75.4012C285.5 75.5116 285.59 75.6012 285.7 75.6012Z" fill="#BBD4E0"/>
510
+ <path d="M285.7 76.4019C285.81 76.4019 285.9 76.3124 285.9 76.202C285.9 76.0915 285.81 76.002 285.7 76.002C285.59 76.002 285.5 76.0915 285.5 76.202C285.5 76.3124 285.59 76.4019 285.7 76.4019Z" fill="#BBD4E0"/>
511
+ <path d="M285.7 77.2008C285.81 77.2008 285.9 77.1112 285.9 77.0008C285.9 76.8903 285.81 76.8008 285.7 76.8008C285.59 76.8008 285.5 76.8903 285.5 77.0008C285.5 77.1112 285.59 77.2008 285.7 77.2008Z" fill="#BBD4E0"/>
512
+ <path d="M285.7 78.1012C285.81 78.1012 285.9 78.0116 285.9 77.9012C285.9 77.7907 285.81 77.7012 285.7 77.7012C285.59 77.7012 285.5 77.7907 285.5 77.9012C285.5 78.0116 285.59 78.1012 285.7 78.1012Z" fill="#BBD4E0"/>
513
+ <path d="M285.7 78.9019C285.81 78.9019 285.9 78.8124 285.9 78.702C285.9 78.5915 285.81 78.502 285.7 78.502C285.59 78.502 285.5 78.5915 285.5 78.702C285.5 78.8124 285.59 78.9019 285.7 78.9019Z" fill="#BBD4E0"/>
514
+ <path d="M285.7 79.7008C285.81 79.7008 285.9 79.6112 285.9 79.5008C285.9 79.3903 285.81 79.3008 285.7 79.3008C285.59 79.3008 285.5 79.3903 285.5 79.5008C285.5 79.6112 285.59 79.7008 285.7 79.7008Z" fill="#BBD4E0"/>
515
+ <path d="M285.7 80.6012C285.81 80.6012 285.9 80.5116 285.9 80.4012C285.9 80.2907 285.81 80.2012 285.7 80.2012C285.59 80.2012 285.5 80.2907 285.5 80.4012C285.5 80.5116 285.59 80.6012 285.7 80.6012Z" fill="#BBD4E0"/>
516
+ <path d="M285.7 81.4019C285.81 81.4019 285.9 81.3124 285.9 81.202C285.9 81.0915 285.81 81.002 285.7 81.002C285.59 81.002 285.5 81.0915 285.5 81.202C285.5 81.3124 285.59 81.4019 285.7 81.4019Z" fill="#BBD4E0"/>
517
+ <path d="M286.8 75.6012C286.91 75.6012 287 75.5116 287 75.4012C287 75.2907 286.91 75.2012 286.8 75.2012C286.69 75.2012 286.6 75.2907 286.6 75.4012C286.6 75.5116 286.69 75.6012 286.8 75.6012Z" fill="#BBD4E0"/>
518
+ <path d="M286.8 76.4019C286.91 76.4019 287 76.3124 287 76.202C287 76.0915 286.91 76.002 286.8 76.002C286.69 76.002 286.6 76.0915 286.6 76.202C286.6 76.3124 286.69 76.4019 286.8 76.4019Z" fill="#BBD4E0"/>
519
+ <path d="M286.8 77.2008C286.91 77.2008 287 77.1112 287 77.0008C287 76.8903 286.91 76.8008 286.8 76.8008C286.69 76.8008 286.6 76.8903 286.6 77.0008C286.6 77.1112 286.69 77.2008 286.8 77.2008Z" fill="#BBD4E0"/>
520
+ <path d="M286.8 78.1012C286.91 78.1012 287 78.0116 287 77.9012C287 77.7907 286.91 77.7012 286.8 77.7012C286.69 77.7012 286.6 77.7907 286.6 77.9012C286.6 78.0116 286.69 78.1012 286.8 78.1012Z" fill="#BBD4E0"/>
521
+ <path d="M286.8 78.9019C286.91 78.9019 287 78.8124 287 78.702C287 78.5915 286.91 78.502 286.8 78.502C286.69 78.502 286.6 78.5915 286.6 78.702C286.6 78.8124 286.69 78.9019 286.8 78.9019Z" fill="#BBD4E0"/>
522
+ <path d="M286.8 79.7008C286.91 79.7008 287 79.6112 287 79.5008C287 79.3903 286.91 79.3008 286.8 79.3008C286.69 79.3008 286.6 79.3903 286.6 79.5008C286.6 79.6112 286.69 79.7008 286.8 79.7008Z" fill="#BBD4E0"/>
523
+ <path d="M286.8 80.6012C286.91 80.6012 287 80.5116 287 80.4012C287 80.2907 286.91 80.2012 286.8 80.2012C286.69 80.2012 286.6 80.2907 286.6 80.4012C286.6 80.5116 286.69 80.6012 286.8 80.6012Z" fill="#BBD4E0"/>
524
+ <path d="M286.8 81.4019C286.91 81.4019 287 81.3124 287 81.202C287 81.0915 286.91 81.002 286.8 81.002C286.69 81.002 286.6 81.0915 286.6 81.202C286.6 81.3124 286.69 81.4019 286.8 81.4019Z" fill="#BBD4E0"/>
525
+ <path d="M287.8 75.6012C287.91 75.6012 288 75.5116 288 75.4012C288 75.2907 287.91 75.2012 287.8 75.2012C287.69 75.2012 287.6 75.2907 287.6 75.4012C287.6 75.5116 287.69 75.6012 287.8 75.6012Z" fill="#BBD4E0"/>
526
+ <path d="M287.8 76.4019C287.91 76.4019 288 76.3124 288 76.202C288 76.0915 287.91 76.002 287.8 76.002C287.69 76.002 287.6 76.0915 287.6 76.202C287.6 76.3124 287.69 76.4019 287.8 76.4019Z" fill="#BBD4E0"/>
527
+ <path d="M287.8 77.2008C287.91 77.2008 288 77.1112 288 77.0008C288 76.8903 287.91 76.8008 287.8 76.8008C287.69 76.8008 287.6 76.8903 287.6 77.0008C287.6 77.1112 287.69 77.2008 287.8 77.2008Z" fill="#BBD4E0"/>
528
+ <path d="M287.8 78.1012C287.91 78.1012 288 78.0116 288 77.9012C288 77.7907 287.91 77.7012 287.8 77.7012C287.69 77.7012 287.6 77.7907 287.6 77.9012C287.6 78.0116 287.69 78.1012 287.8 78.1012Z" fill="#BBD4E0"/>
529
+ <path d="M287.8 78.9019C287.91 78.9019 288 78.8124 288 78.702C288 78.5915 287.91 78.502 287.8 78.502C287.69 78.502 287.6 78.5915 287.6 78.702C287.6 78.8124 287.69 78.9019 287.8 78.9019Z" fill="#BBD4E0"/>
530
+ <path d="M287.8 79.7008C287.91 79.7008 288 79.6112 288 79.5008C288 79.3903 287.91 79.3008 287.8 79.3008C287.69 79.3008 287.6 79.3903 287.6 79.5008C287.6 79.6112 287.69 79.7008 287.8 79.7008Z" fill="#BBD4E0"/>
531
+ <path d="M287.8 80.6012C287.91 80.6012 288 80.5116 288 80.4012C288 80.2907 287.91 80.2012 287.8 80.2012C287.69 80.2012 287.6 80.2907 287.6 80.4012C287.6 80.5116 287.69 80.6012 287.8 80.6012Z" fill="#BBD4E0"/>
532
+ <path d="M287.8 81.4019C287.91 81.4019 288 81.3124 288 81.202C288 81.0915 287.91 81.002 287.8 81.002C287.69 81.002 287.6 81.0915 287.6 81.202C287.6 81.3124 287.69 81.4019 287.8 81.4019Z" fill="#BBD4E0"/>
533
+ <path d="M288.9 75.6012C289.01 75.6012 289.1 75.5116 289.1 75.4012C289.1 75.2907 289.01 75.2012 288.9 75.2012C288.79 75.2012 288.7 75.2907 288.7 75.4012C288.7 75.5116 288.79 75.6012 288.9 75.6012Z" fill="#BBD4E0"/>
534
+ <path d="M288.9 76.4019C289.01 76.4019 289.1 76.3124 289.1 76.202C289.1 76.0915 289.01 76.002 288.9 76.002C288.79 76.002 288.7 76.0915 288.7 76.202C288.7 76.3124 288.79 76.4019 288.9 76.4019Z" fill="#BBD4E0"/>
535
+ <path d="M288.9 77.2008C289.01 77.2008 289.1 77.1112 289.1 77.0008C289.1 76.8903 289.01 76.8008 288.9 76.8008C288.79 76.8008 288.7 76.8903 288.7 77.0008C288.7 77.1112 288.79 77.2008 288.9 77.2008Z" fill="#BBD4E0"/>
536
+ <path d="M288.9 78.1012C289.01 78.1012 289.1 78.0116 289.1 77.9012C289.1 77.7907 289.01 77.7012 288.9 77.7012C288.79 77.7012 288.7 77.7907 288.7 77.9012C288.7 78.0116 288.79 78.1012 288.9 78.1012Z" fill="#BBD4E0"/>
537
+ <path d="M288.9 78.9019C289.01 78.9019 289.1 78.8124 289.1 78.702C289.1 78.5915 289.01 78.502 288.9 78.502C288.79 78.502 288.7 78.5915 288.7 78.702C288.7 78.8124 288.79 78.9019 288.9 78.9019Z" fill="#BBD4E0"/>
538
+ <path d="M288.9 79.7008C289.01 79.7008 289.1 79.6112 289.1 79.5008C289.1 79.3903 289.01 79.3008 288.9 79.3008C288.79 79.3008 288.7 79.3903 288.7 79.5008C288.7 79.6112 288.79 79.7008 288.9 79.7008Z" fill="#BBD4E0"/>
539
+ <path d="M288.9 80.6012C289.01 80.6012 289.1 80.5116 289.1 80.4012C289.1 80.2907 289.01 80.2012 288.9 80.2012C288.79 80.2012 288.7 80.2907 288.7 80.4012C288.7 80.5116 288.79 80.6012 288.9 80.6012Z" fill="#BBD4E0"/>
540
+ <path d="M288.9 81.4019C289.01 81.4019 289.1 81.3124 289.1 81.202C289.1 81.0915 289.01 81.002 288.9 81.002C288.79 81.002 288.7 81.0915 288.7 81.202C288.7 81.3124 288.79 81.4019 288.9 81.4019Z" fill="#BBD4E0"/>
541
+ <path d="M289.8 75.6012C289.91 75.6012 290 75.5116 290 75.4012C290 75.2907 289.91 75.2012 289.8 75.2012C289.69 75.2012 289.6 75.2907 289.6 75.4012C289.6 75.5116 289.69 75.6012 289.8 75.6012Z" fill="#BBD4E0"/>
542
+ <path d="M289.8 76.4019C289.91 76.4019 290 76.3124 290 76.202C290 76.0915 289.91 76.002 289.8 76.002C289.69 76.002 289.6 76.0915 289.6 76.202C289.6 76.3124 289.69 76.4019 289.8 76.4019Z" fill="#BBD4E0"/>
543
+ <path d="M289.8 77.2008C289.91 77.2008 290 77.1112 290 77.0008C290 76.8903 289.91 76.8008 289.8 76.8008C289.69 76.8008 289.6 76.8903 289.6 77.0008C289.6 77.1112 289.69 77.2008 289.8 77.2008Z" fill="#BBD4E0"/>
544
+ <path d="M289.8 78.1012C289.91 78.1012 290 78.0116 290 77.9012C290 77.7907 289.91 77.7012 289.8 77.7012C289.69 77.7012 289.6 77.7907 289.6 77.9012C289.6 78.0116 289.69 78.1012 289.8 78.1012Z" fill="#BBD4E0"/>
545
+ <path d="M289.8 78.9019C289.91 78.9019 290 78.8124 290 78.702C290 78.5915 289.91 78.502 289.8 78.502C289.69 78.502 289.6 78.5915 289.6 78.702C289.6 78.8124 289.69 78.9019 289.8 78.9019Z" fill="#BBD4E0"/>
546
+ <path d="M289.8 79.7008C289.91 79.7008 290 79.6112 290 79.5008C290 79.3903 289.91 79.3008 289.8 79.3008C289.69 79.3008 289.6 79.3903 289.6 79.5008C289.6 79.6112 289.69 79.7008 289.8 79.7008Z" fill="#BBD4E0"/>
547
+ <path d="M289.8 80.6012C289.91 80.6012 290 80.5116 290 80.4012C290 80.2907 289.91 80.2012 289.8 80.2012C289.69 80.2012 289.6 80.2907 289.6 80.4012C289.6 80.5116 289.69 80.6012 289.8 80.6012Z" fill="#BBD4E0"/>
548
+ <path d="M289.8 81.4019C289.91 81.4019 290 81.3124 290 81.202C290 81.0915 289.91 81.002 289.8 81.002C289.69 81.002 289.6 81.0915 289.6 81.202C289.6 81.3124 289.69 81.4019 289.8 81.4019Z" fill="#BBD4E0"/>
549
+ <path d="M291 75.6012C291.11 75.6012 291.2 75.5116 291.2 75.4012C291.2 75.2907 291.11 75.2012 291 75.2012C290.89 75.2012 290.8 75.2907 290.8 75.4012C290.8 75.5116 290.89 75.6012 291 75.6012Z" fill="#BBD4E0"/>
550
+ <path d="M291 76.4019C291.11 76.4019 291.2 76.3124 291.2 76.202C291.2 76.0915 291.11 76.002 291 76.002C290.89 76.002 290.8 76.0915 290.8 76.202C290.8 76.3124 290.89 76.4019 291 76.4019Z" fill="#BBD4E0"/>
551
+ <path d="M291 77.2008C291.11 77.2008 291.2 77.1112 291.2 77.0008C291.2 76.8903 291.11 76.8008 291 76.8008C290.89 76.8008 290.8 76.8903 290.8 77.0008C290.8 77.1112 290.89 77.2008 291 77.2008Z" fill="#BBD4E0"/>
552
+ <path d="M291 78.1012C291.11 78.1012 291.2 78.0116 291.2 77.9012C291.2 77.7907 291.11 77.7012 291 77.7012C290.89 77.7012 290.8 77.7907 290.8 77.9012C290.8 78.0116 290.89 78.1012 291 78.1012Z" fill="#BBD4E0"/>
553
+ <path d="M291 78.9019C291.11 78.9019 291.2 78.8124 291.2 78.702C291.2 78.5915 291.11 78.502 291 78.502C290.89 78.502 290.8 78.5915 290.8 78.702C290.8 78.8124 290.89 78.9019 291 78.9019Z" fill="#BBD4E0"/>
554
+ <path d="M291 79.7008C291.11 79.7008 291.2 79.6112 291.2 79.5008C291.2 79.3903 291.11 79.3008 291 79.3008C290.89 79.3008 290.8 79.3903 290.8 79.5008C290.8 79.6112 290.89 79.7008 291 79.7008Z" fill="#BBD4E0"/>
555
+ <path d="M291 80.6012C291.11 80.6012 291.2 80.5116 291.2 80.4012C291.2 80.2907 291.11 80.2012 291 80.2012C290.89 80.2012 290.8 80.2907 290.8 80.4012C290.8 80.5116 290.89 80.6012 291 80.6012Z" fill="#BBD4E0"/>
556
+ <path d="M291 81.4019C291.11 81.4019 291.2 81.3124 291.2 81.202C291.2 81.0915 291.11 81.002 291 81.002C290.89 81.002 290.8 81.0915 290.8 81.202C290.8 81.3124 290.89 81.4019 291 81.4019Z" fill="#BBD4E0"/>
557
+ <path d="M291.9 75.6012C292.01 75.6012 292.1 75.5116 292.1 75.4012C292.1 75.2907 292.01 75.2012 291.9 75.2012C291.79 75.2012 291.7 75.2907 291.7 75.4012C291.7 75.5116 291.79 75.6012 291.9 75.6012Z" fill="#BBD4E0"/>
558
+ <path d="M291.9 76.4019C292.01 76.4019 292.1 76.3124 292.1 76.202C292.1 76.0915 292.01 76.002 291.9 76.002C291.79 76.002 291.7 76.0915 291.7 76.202C291.7 76.3124 291.79 76.4019 291.9 76.4019Z" fill="#BBD4E0"/>
559
+ <path d="M291.9 77.2008C292.01 77.2008 292.1 77.1112 292.1 77.0008C292.1 76.8903 292.01 76.8008 291.9 76.8008C291.79 76.8008 291.7 76.8903 291.7 77.0008C291.7 77.1112 291.79 77.2008 291.9 77.2008Z" fill="#BBD4E0"/>
560
+ <path d="M291.9 78.1012C292.01 78.1012 292.1 78.0116 292.1 77.9012C292.1 77.7907 292.01 77.7012 291.9 77.7012C291.79 77.7012 291.7 77.7907 291.7 77.9012C291.7 78.0116 291.79 78.1012 291.9 78.1012Z" fill="#BBD4E0"/>
561
+ <path d="M291.9 78.9019C292.01 78.9019 292.1 78.8124 292.1 78.702C292.1 78.5915 292.01 78.502 291.9 78.502C291.79 78.502 291.7 78.5915 291.7 78.702C291.7 78.8124 291.79 78.9019 291.9 78.9019Z" fill="#BBD4E0"/>
562
+ <path d="M291.9 79.7008C292.01 79.7008 292.1 79.6112 292.1 79.5008C292.1 79.3903 292.01 79.3008 291.9 79.3008C291.79 79.3008 291.7 79.3903 291.7 79.5008C291.7 79.6112 291.79 79.7008 291.9 79.7008Z" fill="#BBD4E0"/>
563
+ <path d="M291.9 80.6012C292.01 80.6012 292.1 80.5116 292.1 80.4012C292.1 80.2907 292.01 80.2012 291.9 80.2012C291.79 80.2012 291.7 80.2907 291.7 80.4012C291.7 80.5116 291.79 80.6012 291.9 80.6012Z" fill="#BBD4E0"/>
564
+ <path d="M291.9 81.4019C292.01 81.4019 292.1 81.3124 292.1 81.202C292.1 81.0915 292.01 81.002 291.9 81.002C291.79 81.002 291.7 81.0915 291.7 81.202C291.7 81.3124 291.79 81.4019 291.9 81.4019Z" fill="#BBD4E0"/>
565
+ <path d="M293 75.6012C293.11 75.6012 293.2 75.5116 293.2 75.4012C293.2 75.2907 293.11 75.2012 293 75.2012C292.89 75.2012 292.8 75.2907 292.8 75.4012C292.8 75.5116 292.89 75.6012 293 75.6012Z" fill="#BBD4E0"/>
566
+ <path d="M293 76.4019C293.11 76.4019 293.2 76.3124 293.2 76.202C293.2 76.0915 293.11 76.002 293 76.002C292.89 76.002 292.8 76.0915 292.8 76.202C292.8 76.3124 292.89 76.4019 293 76.4019Z" fill="#BBD4E0"/>
567
+ <path d="M293 77.2008C293.11 77.2008 293.2 77.1112 293.2 77.0008C293.2 76.8903 293.11 76.8008 293 76.8008C292.89 76.8008 292.8 76.8903 292.8 77.0008C292.8 77.1112 292.89 77.2008 293 77.2008Z" fill="#BBD4E0"/>
568
+ <path d="M293 78.1012C293.11 78.1012 293.2 78.0116 293.2 77.9012C293.2 77.7907 293.11 77.7012 293 77.7012C292.89 77.7012 292.8 77.7907 292.8 77.9012C292.8 78.0116 292.89 78.1012 293 78.1012Z" fill="#BBD4E0"/>
569
+ <path d="M293 78.9019C293.11 78.9019 293.2 78.8124 293.2 78.702C293.2 78.5915 293.11 78.502 293 78.502C292.89 78.502 292.8 78.5915 292.8 78.702C292.8 78.8124 292.89 78.9019 293 78.9019Z" fill="#BBD4E0"/>
570
+ <path d="M293 79.7008C293.11 79.7008 293.2 79.6112 293.2 79.5008C293.2 79.3903 293.11 79.3008 293 79.3008C292.89 79.3008 292.8 79.3903 292.8 79.5008C292.8 79.6112 292.89 79.7008 293 79.7008Z" fill="#BBD4E0"/>
571
+ <path d="M293 80.6012C293.11 80.6012 293.2 80.5116 293.2 80.4012C293.2 80.2907 293.11 80.2012 293 80.2012C292.89 80.2012 292.8 80.2907 292.8 80.4012C292.8 80.5116 292.89 80.6012 293 80.6012Z" fill="#BBD4E0"/>
572
+ <path d="M293 81.4019C293.11 81.4019 293.2 81.3124 293.2 81.202C293.2 81.0915 293.11 81.002 293 81.002C292.89 81.002 292.8 81.0915 292.8 81.202C292.8 81.3124 292.89 81.4019 293 81.4019Z" fill="#BBD4E0"/>
573
+ <path d="M294 75.6012C294.11 75.6012 294.2 75.5116 294.2 75.4012C294.2 75.2907 294.11 75.2012 294 75.2012C293.89 75.2012 293.8 75.2907 293.8 75.4012C293.8 75.5116 293.89 75.6012 294 75.6012Z" fill="#BBD4E0"/>
574
+ <path d="M294 76.4019C294.11 76.4019 294.2 76.3124 294.2 76.202C294.2 76.0915 294.11 76.002 294 76.002C293.89 76.002 293.8 76.0915 293.8 76.202C293.8 76.3124 293.89 76.4019 294 76.4019Z" fill="#BBD4E0"/>
575
+ <path d="M294 77.2008C294.11 77.2008 294.2 77.1112 294.2 77.0008C294.2 76.8903 294.11 76.8008 294 76.8008C293.89 76.8008 293.8 76.8903 293.8 77.0008C293.8 77.1112 293.89 77.2008 294 77.2008Z" fill="#BBD4E0"/>
576
+ <path d="M294 78.1012C294.11 78.1012 294.2 78.0116 294.2 77.9012C294.2 77.7907 294.11 77.7012 294 77.7012C293.89 77.7012 293.8 77.7907 293.8 77.9012C293.8 78.0116 293.89 78.1012 294 78.1012Z" fill="#BBD4E0"/>
577
+ <path d="M294 78.9019C294.11 78.9019 294.2 78.8124 294.2 78.702C294.2 78.5915 294.11 78.502 294 78.502C293.89 78.502 293.8 78.5915 293.8 78.702C293.8 78.8124 293.89 78.9019 294 78.9019Z" fill="#BBD4E0"/>
578
+ <path d="M294 79.7008C294.11 79.7008 294.2 79.6112 294.2 79.5008C294.2 79.3903 294.11 79.3008 294 79.3008C293.89 79.3008 293.8 79.3903 293.8 79.5008C293.8 79.6112 293.89 79.7008 294 79.7008Z" fill="#BBD4E0"/>
579
+ <path d="M294 80.6012C294.11 80.6012 294.2 80.5116 294.2 80.4012C294.2 80.2907 294.11 80.2012 294 80.2012C293.89 80.2012 293.8 80.2907 293.8 80.4012C293.8 80.5116 293.89 80.6012 294 80.6012Z" fill="#BBD4E0"/>
580
+ <path d="M294 81.4019C294.11 81.4019 294.2 81.3124 294.2 81.202C294.2 81.0915 294.11 81.002 294 81.002C293.89 81.002 293.8 81.0915 293.8 81.202C293.8 81.3124 293.89 81.4019 294 81.4019Z" fill="#BBD4E0"/>
581
+ <path d="M295.1 75.6012C295.21 75.6012 295.3 75.5116 295.3 75.4012C295.3 75.2907 295.21 75.2012 295.1 75.2012C294.99 75.2012 294.9 75.2907 294.9 75.4012C294.9 75.5116 294.99 75.6012 295.1 75.6012Z" fill="#BBD4E0"/>
582
+ <path d="M295.1 76.4019C295.21 76.4019 295.3 76.3124 295.3 76.202C295.3 76.0915 295.21 76.002 295.1 76.002C294.99 76.002 294.9 76.0915 294.9 76.202C294.9 76.3124 294.99 76.4019 295.1 76.4019Z" fill="#BBD4E0"/>
583
+ <path d="M295.1 77.2008C295.21 77.2008 295.3 77.1112 295.3 77.0008C295.3 76.8903 295.21 76.8008 295.1 76.8008C294.99 76.8008 294.9 76.8903 294.9 77.0008C294.9 77.1112 294.99 77.2008 295.1 77.2008Z" fill="#BBD4E0"/>
584
+ <path d="M295.1 78.1012C295.21 78.1012 295.3 78.0116 295.3 77.9012C295.3 77.7907 295.21 77.7012 295.1 77.7012C294.99 77.7012 294.9 77.7907 294.9 77.9012C294.9 78.0116 294.99 78.1012 295.1 78.1012Z" fill="#BBD4E0"/>
585
+ <path d="M295.1 78.9019C295.21 78.9019 295.3 78.8124 295.3 78.702C295.3 78.5915 295.21 78.502 295.1 78.502C294.99 78.502 294.9 78.5915 294.9 78.702C294.9 78.8124 294.99 78.9019 295.1 78.9019Z" fill="#BBD4E0"/>
586
+ <path d="M295.1 79.7008C295.21 79.7008 295.3 79.6112 295.3 79.5008C295.3 79.3903 295.21 79.3008 295.1 79.3008C294.99 79.3008 294.9 79.3903 294.9 79.5008C294.9 79.6112 294.99 79.7008 295.1 79.7008Z" fill="#BBD4E0"/>
587
+ <path d="M295.1 80.6012C295.21 80.6012 295.3 80.5116 295.3 80.4012C295.3 80.2907 295.21 80.2012 295.1 80.2012C294.99 80.2012 294.9 80.2907 294.9 80.4012C294.9 80.5116 294.99 80.6012 295.1 80.6012Z" fill="#BBD4E0"/>
588
+ <path d="M295.1 81.4019C295.21 81.4019 295.3 81.3124 295.3 81.202C295.3 81.0915 295.21 81.002 295.1 81.002C294.99 81.002 294.9 81.0915 294.9 81.202C294.9 81.3124 294.99 81.4019 295.1 81.4019Z" fill="#BBD4E0"/>
589
+ <path d="M296.2 75.6012C296.31 75.6012 296.4 75.5116 296.4 75.4012C296.4 75.2907 296.31 75.2012 296.2 75.2012C296.09 75.2012 296 75.2907 296 75.4012C296 75.5116 296.09 75.6012 296.2 75.6012Z" fill="#BBD4E0"/>
590
+ <path d="M296.2 76.4019C296.31 76.4019 296.4 76.3124 296.4 76.202C296.4 76.0915 296.31 76.002 296.2 76.002C296.09 76.002 296 76.0915 296 76.202C296 76.3124 296.09 76.4019 296.2 76.4019Z" fill="#BBD4E0"/>
591
+ <path d="M296.2 77.2008C296.31 77.2008 296.4 77.1112 296.4 77.0008C296.4 76.8903 296.31 76.8008 296.2 76.8008C296.09 76.8008 296 76.8903 296 77.0008C296 77.1112 296.09 77.2008 296.2 77.2008Z" fill="#BBD4E0"/>
592
+ <path d="M296.2 78.1012C296.31 78.1012 296.4 78.0116 296.4 77.9012C296.4 77.7907 296.31 77.7012 296.2 77.7012C296.09 77.7012 296 77.7907 296 77.9012C296 78.0116 296.09 78.1012 296.2 78.1012Z" fill="#BBD4E0"/>
593
+ <path d="M296.2 78.9019C296.31 78.9019 296.4 78.8124 296.4 78.702C296.4 78.5915 296.31 78.502 296.2 78.502C296.09 78.502 296 78.5915 296 78.702C296 78.8124 296.09 78.9019 296.2 78.9019Z" fill="#BBD4E0"/>
594
+ <path d="M296.2 79.7008C296.31 79.7008 296.4 79.6112 296.4 79.5008C296.4 79.3903 296.31 79.3008 296.2 79.3008C296.09 79.3008 296 79.3903 296 79.5008C296 79.6112 296.09 79.7008 296.2 79.7008Z" fill="#BBD4E0"/>
595
+ <path d="M296.2 80.6012C296.31 80.6012 296.4 80.5116 296.4 80.4012C296.4 80.2907 296.31 80.2012 296.2 80.2012C296.09 80.2012 296 80.2907 296 80.4012C296 80.5116 296.09 80.6012 296.2 80.6012Z" fill="#BBD4E0"/>
596
+ <path d="M296.2 81.4019C296.31 81.4019 296.4 81.3124 296.4 81.202C296.4 81.0915 296.31 81.002 296.2 81.002C296.09 81.002 296 81.0915 296 81.202C296 81.3124 296.09 81.4019 296.2 81.4019Z" fill="#BBD4E0"/>
597
+ <path d="M297.2 75.6012C297.31 75.6012 297.4 75.5116 297.4 75.4012C297.4 75.2907 297.31 75.2012 297.2 75.2012C297.09 75.2012 297 75.2907 297 75.4012C297 75.5116 297.09 75.6012 297.2 75.6012Z" fill="#BBD4E0"/>
598
+ <path d="M297.2 76.4019C297.31 76.4019 297.4 76.3124 297.4 76.202C297.4 76.0915 297.31 76.002 297.2 76.002C297.09 76.002 297 76.0915 297 76.202C297 76.3124 297.09 76.4019 297.2 76.4019Z" fill="#BBD4E0"/>
599
+ <path d="M297.2 77.2008C297.31 77.2008 297.4 77.1112 297.4 77.0008C297.4 76.8903 297.31 76.8008 297.2 76.8008C297.09 76.8008 297 76.8903 297 77.0008C297 77.1112 297.09 77.2008 297.2 77.2008Z" fill="#BBD4E0"/>
600
+ <path d="M297.2 78.1012C297.31 78.1012 297.4 78.0116 297.4 77.9012C297.4 77.7907 297.31 77.7012 297.2 77.7012C297.09 77.7012 297 77.7907 297 77.9012C297 78.0116 297.09 78.1012 297.2 78.1012Z" fill="#BBD4E0"/>
601
+ <path d="M297.2 78.9019C297.31 78.9019 297.4 78.8124 297.4 78.702C297.4 78.5915 297.31 78.502 297.2 78.502C297.09 78.502 297 78.5915 297 78.702C297 78.8124 297.09 78.9019 297.2 78.9019Z" fill="#BBD4E0"/>
602
+ <path d="M297.2 79.7008C297.31 79.7008 297.4 79.6112 297.4 79.5008C297.4 79.3903 297.31 79.3008 297.2 79.3008C297.09 79.3008 297 79.3903 297 79.5008C297 79.6112 297.09 79.7008 297.2 79.7008Z" fill="#BBD4E0"/>
603
+ <path d="M297.2 80.6012C297.31 80.6012 297.4 80.5116 297.4 80.4012C297.4 80.2907 297.31 80.2012 297.2 80.2012C297.09 80.2012 297 80.2907 297 80.4012C297 80.5116 297.09 80.6012 297.2 80.6012Z" fill="#BBD4E0"/>
604
+ <path d="M297.2 81.4019C297.31 81.4019 297.4 81.3124 297.4 81.202C297.4 81.0915 297.31 81.002 297.2 81.002C297.09 81.002 297 81.0915 297 81.202C297 81.3124 297.09 81.4019 297.2 81.4019Z" fill="#BBD4E0"/>
605
+ <path d="M298.3 75.6012C298.41 75.6012 298.5 75.5116 298.5 75.4012C298.5 75.2907 298.41 75.2012 298.3 75.2012C298.19 75.2012 298.1 75.2907 298.1 75.4012C298.1 75.5116 298.19 75.6012 298.3 75.6012Z" fill="#BBD4E0"/>
606
+ <path d="M298.3 76.4019C298.41 76.4019 298.5 76.3124 298.5 76.202C298.5 76.0915 298.41 76.002 298.3 76.002C298.19 76.002 298.1 76.0915 298.1 76.202C298.1 76.3124 298.19 76.4019 298.3 76.4019Z" fill="#BBD4E0"/>
607
+ <path d="M298.3 77.2008C298.41 77.2008 298.5 77.1112 298.5 77.0008C298.5 76.8903 298.41 76.8008 298.3 76.8008C298.19 76.8008 298.1 76.8903 298.1 77.0008C298.1 77.1112 298.19 77.2008 298.3 77.2008Z" fill="#BBD4E0"/>
608
+ <path d="M298.3 78.1012C298.41 78.1012 298.5 78.0116 298.5 77.9012C298.5 77.7907 298.41 77.7012 298.3 77.7012C298.19 77.7012 298.1 77.7907 298.1 77.9012C298.1 78.0116 298.19 78.1012 298.3 78.1012Z" fill="#BBD4E0"/>
609
+ <path d="M298.3 78.9019C298.41 78.9019 298.5 78.8124 298.5 78.702C298.5 78.5915 298.41 78.502 298.3 78.502C298.19 78.502 298.1 78.5915 298.1 78.702C298.1 78.8124 298.19 78.9019 298.3 78.9019Z" fill="#BBD4E0"/>
610
+ <path d="M298.3 79.7008C298.41 79.7008 298.5 79.6112 298.5 79.5008C298.5 79.3903 298.41 79.3008 298.3 79.3008C298.19 79.3008 298.1 79.3903 298.1 79.5008C298.1 79.6112 298.19 79.7008 298.3 79.7008Z" fill="#BBD4E0"/>
611
+ <path d="M298.3 80.6012C298.41 80.6012 298.5 80.5116 298.5 80.4012C298.5 80.2907 298.41 80.2012 298.3 80.2012C298.19 80.2012 298.1 80.2907 298.1 80.4012C298.1 80.5116 298.19 80.6012 298.3 80.6012Z" fill="#BBD4E0"/>
612
+ <path d="M298.3 81.4019C298.41 81.4019 298.5 81.3124 298.5 81.202C298.5 81.0915 298.41 81.002 298.3 81.002C298.19 81.002 298.1 81.0915 298.1 81.202C298.1 81.3124 298.19 81.4019 298.3 81.4019Z" fill="#BBD4E0"/>
613
+ <path d="M293.6 82H275.9V83.8H293.6V82Z" fill="white"/>
614
+ <path d="M269.9 85.0004C271.17 85.0004 272.2 83.9706 272.2 82.7004C272.2 81.4301 271.17 80.4004 269.9 80.4004C268.63 80.4004 267.6 81.4301 267.6 82.7004C267.6 83.9706 268.63 85.0004 269.9 85.0004Z" fill="white"/>
615
+ <path d="M268.1 84.2012L271.6 81.2012C271.7 81.4012 272.1 81.9012 272.1 82.7012C272.1 82.8012 272.1 83.9012 271.3 84.5012C270.5 85.2012 269.2 85.1012 268.1 84.2012Z" fill="#7097AF"/>
616
+ <path d="M291.2 98.3992C291.2 95.6992 290.2 93.0992 288.2 91.1992C286.3 89.2992 283.8 88.1992 281.1 88.1992C278.4 88.1992 275.9 89.2992 274 91.1992C272.1 93.0992 271 95.6992 271 98.3992C271 98.7992 271.3 99.0992 271.7 99.0992H290.6C290.9 99.0992 291.2 98.6992 291.2 98.3992ZM279 97.6992C279 97.4992 279.1 97.2992 279.2 97.0992C279.4 96.5992 279.9 96.1992 280.4 95.9992C280.9 95.7992 281.5 95.7992 282 95.9992C282.7 96.2992 283.2 96.9992 283.3 97.6992H279ZM284.6 97.6992C284.5 96.5992 284 95.5992 283.1 94.9992L284 92.9992C284.2 92.6992 284 92.1992 283.7 92.0992C283.4 91.8992 283 92.0992 282.8 92.4992L281.9 94.4992C281.2 94.2992 280.5 94.3992 279.9 94.6992C279 94.9992 278.3 95.6992 278 96.5992C277.8 96.9992 277.7 97.3992 277.7 97.7992H272.5C272.6 95.8992 273.4 94.1992 274.6 92.6992L275.2 93.2992C275.3 93.3992 275.5 93.4992 275.7 93.4992C275.9 93.4992 276 93.3992 276.2 93.2992C276.5 92.9992 276.5 92.5992 276.2 92.2992L275.6 91.6992C277 90.4992 278.8 89.6992 280.6 89.5992V90.3992C280.6 90.7992 280.9 91.0992 281.3 91.0992C281.7 91.0992 282 90.7992 282 90.3992V89.5992C283.8 89.6992 285.6 90.4992 287 91.6992L286.4 92.2992C286.1 92.5992 286.1 92.9992 286.4 93.2992C286.5 93.3992 286.7 93.4992 286.9 93.4992C287.1 93.4992 287.2 93.3992 287.4 93.2992L288 92.6992C289.2 94.0992 289.9 95.8992 290.1 97.7992L284.6 97.6992Z" fill="#CCE3EC"/>
617
+ <path d="M290.5 99.1996H271.6C271.2 99.1996 270.8 98.7996 270.8 98.3996C270.8 95.6996 271.9 93.0996 273.8 91.0996C275.7 89.0996 278.3 88.0996 281 88.0996C283.8 88.0996 286.3 89.1996 288.2 91.0996C290.1 92.9996 291.2 95.5996 291.2 98.3996C291.3 98.7996 291 99.1996 290.5 99.1996ZM281.1 88.2996C278.4 88.2996 275.9 89.3996 274 91.2996C272.1 93.1996 271.1 95.7996 271.1 98.3996C271.1 98.6996 271.4 98.9996 271.7 98.9996H290.6C290.9 98.9996 291.2 98.7996 291.2 98.3996C291.2 95.6996 290.2 93.1996 288.3 91.2996C286.3 89.3996 283.8 88.2996 281.1 88.2996ZM283.4 97.7996H278.8V97.6996C278.8 97.3996 278.9 97.1996 279 96.9996C279.3 96.3996 279.7 95.9996 280.3 95.7996C280.9 95.5996 281.5 95.5996 282 95.7996C282.7 96.0996 283.3 96.7996 283.3 97.5996L283.4 97.7996ZM279.1 97.5996H283.1C283 96.8996 282.5 96.3996 281.9 96.0996C281.4 95.8996 280.9 95.8996 280.3 96.0996C279.8 96.2996 279.4 96.6996 279.2 97.1996C279.2 97.2996 279.1 97.3996 279.1 97.5996ZM289.9 97.7996H284.6V97.6996H284.5C284.4 96.6996 283.9 95.6996 283 95.0996L282.9 94.9996L283.8 92.8996C283.9 92.7996 283.9 92.5996 283.8 92.4996C283.7 92.3996 283.6 92.2996 283.5 92.1996C283.4 92.0996 283.2 92.0996 283.1 92.1996C283 92.2996 282.8 92.3996 282.8 92.4996L281.9 94.4996H281.8C281.1 94.2996 280.5 94.3996 279.8 94.5996C279 94.8996 278.3 95.5996 277.9 96.3996C277.7 96.7996 277.6 97.1996 277.6 97.4996V97.5996H272.1V97.4996C272.2 95.5996 273 93.7996 274.2 92.3996L274.3 92.2996L275 92.9996C275.1 93.0996 275.3 93.1996 275.4 93.1996C275.6 93.1996 275.7 93.1996 275.8 92.9996C276 92.7996 276 92.3996 275.8 92.1996L275.1 91.4996L275.2 91.3996C276.6 90.1996 278.4 89.3996 280.3 89.2996H280.4V90.2996C280.4 90.5996 280.7 90.8996 281 90.8996C281.3 90.8996 281.6 90.5996 281.6 90.2996V89.2996H281.7C283.6 89.3996 285.3 90.1996 286.8 91.3996L286.9 91.4996L286.2 92.1996C286 92.3996 286 92.7996 286.2 92.9996C286.3 93.0996 286.5 93.1996 286.6 93.1996C286.7 93.1996 286.9 93.0996 287 92.9996L287.7 92.2996L287.8 92.3996C289 93.7996 289.8 95.5996 289.9 97.4996V97.7996ZM284.7 97.5996H289.7C289.5 95.7996 288.9 94.1996 287.7 92.7996L287.2 93.2996C287 93.4996 286.9 93.4996 286.6 93.4996C286.4 93.4996 286.2 93.3996 286 93.2996C285.7 92.9996 285.7 92.4996 286 92.1996L286.5 91.6996C285.1 90.4996 283.5 89.8996 281.8 89.6996V90.3996C281.8 90.7996 281.4 91.1996 281 91.1996C280.6 91.1996 280.2 90.7996 280.2 90.3996V89.6996C278.4 89.8996 276.8 90.5996 275.5 91.6996L276 92.1996C276.3 92.4996 276.3 92.9996 276 93.2996C275.9 93.4996 275.7 93.4996 275.4 93.4996C275.2 93.4996 275 93.3996 274.8 93.2996L274.3 92.7996C273.2 94.1996 272.5 95.7996 272.3 97.5996H277.3C277.3 97.1996 277.4 96.7996 277.6 96.4996C278 95.5996 278.7 94.8996 279.6 94.5996C280.2 94.2996 280.9 94.2996 281.6 94.3996L282.4 92.4996C282.5 92.2996 282.6 92.0996 282.9 92.0996C283.1 91.9996 283.3 91.9996 283.5 92.0996C283.7 92.1996 283.8 92.2996 283.9 92.4996C284 92.6996 284 92.8996 283.9 93.0996L283.1 94.9996C284.1 95.5996 284.6 96.4996 284.7 97.5996Z" fill="#FAFBFD"/>
618
+ <path d="M222.5 83.5004H146.5C145.4 83.5004 144.4 82.6004 144.4 81.4004V75.0004C144.4 73.9004 145.3 72.9004 146.5 72.9004H222.5C223.6 72.9004 224.6 73.8004 224.6 75.0004V81.4004C224.6 82.6004 223.6 83.5004 222.5 83.5004ZM146.5 73.4004C145.6 73.4004 144.8 74.2004 144.8 75.1004V81.5004C144.8 82.4004 145.6 83.2004 146.5 83.2004H222.5C223.4 83.2004 224.2 82.4004 224.2 81.5004V75.1004C224.2 74.2004 223.4 73.4004 222.5 73.4004H146.5Z" fill="#171D33"/>
619
+ </svg>
img/wpr-top-logo.svg ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg width="258" height="70" viewBox="0 0 258 70" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M50.4221 44H17.5742C15.0505 44 13 41.9845 13 39.4996C13 37.0151 15.0505 35 17.5742 35H50.4221C52.9495 35 55 37.0151 55 39.4996C55 41.9845 52.9495 44 50.4221 44Z" fill="#040404"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M0 38.5C0 40.4323 2.01522 42 4.49975 42C6.98323 42 9 40.4323 9 38.5C9 36.5668 6.98323 35 4.49975 35C2.01522 35 0 36.5668 0 38.5Z" fill="#2F9D92"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M50.4221 57H17.5742C15.0505 57 13 54.7602 13 51.9989C13 49.2403 15.0505 47 17.5742 47H50.4221C52.9495 47 55 49.2403 55 51.9989C55 54.7602 52.9495 57 50.4221 57Z" fill="#040404"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M0 51C0 53.2087 2.01522 55 4.49975 55C6.98323 55 9 53.2087 9 51C9 48.7915 6.98323 47 4.49975 47C2.01522 47 0 48.7915 0 51Z" fill="#2F9D92"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M50.4221 69H17.5742C15.0505 69 13 66.9863 13 64.5C13 62.0148 15.0505 60 17.5742 60H50.4221C52.9495 60 55 62.0148 55 64.5C55 66.9863 52.9495 69 50.4221 69Z" fill="#040404"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M0 64.9979C0 67.2096 2.01522 69 4.49975 69C6.98323 69 9 67.2096 9 64.9979C9 62.7904 6.98323 61 4.49975 61C2.01522 61 0 62.7904 0 64.9979Z" fill="#2F9D92"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M49.7197 31C47.3531 31 45.4344 29.1022 45.4344 26.7562C45.4344 16.6841 37.1653 8.48694 27.0001 8.48694C16.8317 8.48694 8.56511 16.6841 8.56511 26.7562C8.56511 29.1022 6.64904 31 4.28281 31C1.91607 31 0 29.1022 0 26.7562C0 12.0028 12.1104 0 27.0001 0C41.8891 0 54 12.0028 54 26.7562C54 29.1022 52.0813 31 49.7197 31Z" fill="#040404"/>
9
+ <path d="M97.9788 55.6563L102.115 39.2102H105.794L99.5298 60.7273H96.5471L91.3173 44.4205L86.2267 60.7273H83.2439L77 39.2102H80.6589L84.8944 55.3182L89.9054 39.2102H92.8683L97.9788 55.6563Z" fill="#040404"/>
10
+ <path d="M127.727 50.2074C127.727 53.482 126.978 56.1203 125.48 58.1222C123.982 60.1241 121.954 61.125 119.395 61.125C116.783 61.125 114.729 60.2964 113.231 58.6392V69H109.552V39.2102H112.913L113.091 41.5966C114.589 39.7405 116.671 38.8125 119.335 38.8125C121.92 38.8125 123.962 39.7869 125.46 41.7358C126.971 43.6847 127.727 46.3958 127.727 49.8693V50.2074ZM124.048 49.7898C124.048 47.3636 123.531 45.4479 122.497 44.0426C121.463 42.6373 120.045 41.9347 118.242 41.9347C116.015 41.9347 114.344 42.9223 113.231 44.8977V55.179C114.331 57.1411 116.015 58.1222 118.281 58.1222C120.045 58.1222 121.443 57.4261 122.477 56.0341C123.525 54.6288 124.048 52.5473 124.048 49.7898Z" fill="#040404"/>
11
+ <path d="M142.82 42.5114C142.263 42.4186 141.66 42.3722 141.01 42.3722C138.597 42.3722 136.96 43.3996 136.099 45.4545V60.7273H132.42V39.2102H135.999L136.059 41.696C137.265 39.7737 138.975 38.8125 141.189 38.8125C141.905 38.8125 142.449 38.9053 142.82 39.0909V42.5114Z" fill="#040404"/>
12
+ <path d="M154.751 61.125C151.834 61.125 149.461 60.1705 147.632 58.2614C145.802 56.339 144.888 53.7737 144.888 50.5653V49.8892C144.888 47.7547 145.292 45.8523 146.101 44.1818C146.923 42.4981 148.063 41.1856 149.521 40.2443C150.992 39.2898 152.583 38.8125 154.293 38.8125C157.091 38.8125 159.265 39.7339 160.816 41.5767C162.367 43.4195 163.142 46.0578 163.142 49.4915V51.0227H148.567C148.62 53.1439 149.236 54.8608 150.416 56.1733C151.609 57.4725 153.12 58.1222 154.95 58.1222C156.249 58.1222 157.349 57.857 158.251 57.3267C159.152 56.7964 159.941 56.0938 160.617 55.2188L162.864 56.9688C161.061 59.7396 158.357 61.125 154.751 61.125ZM154.293 41.8352C152.809 41.8352 151.563 42.3788 150.555 43.4659C149.548 44.5398 148.924 46.0511 148.686 48H159.464V47.7216C159.357 45.8523 158.854 44.4072 157.952 43.3864C157.051 42.3523 155.831 41.8352 154.293 41.8352Z" fill="#040404"/>
13
+ <path d="M170.878 39.2102L170.977 41.5966C172.555 39.7405 174.682 38.8125 177.36 38.8125C180.369 38.8125 182.418 39.9659 183.505 42.2727C184.221 41.2386 185.148 40.4034 186.289 39.767C187.442 39.1307 188.801 38.8125 190.365 38.8125C195.084 38.8125 197.484 41.3116 197.563 46.3097V60.7273H193.885V46.5284C193.885 44.9905 193.533 43.8438 192.831 43.0881C192.128 42.3191 190.948 41.9347 189.291 41.9347C187.926 41.9347 186.792 42.3456 185.891 43.1676C184.989 43.9763 184.466 45.0701 184.32 46.4489V60.7273H180.621V46.6278C180.621 43.4991 179.09 41.9347 176.028 41.9347C173.615 41.9347 171.965 42.9621 171.076 45.017V60.7273H167.398V39.2102H170.878Z" fill="#040404"/>
14
+ <path d="M202.157 49.7699C202.157 47.6619 202.568 45.7661 203.39 44.0824C204.225 42.3987 205.378 41.0994 206.85 40.1847C208.335 39.2699 210.025 38.8125 211.92 38.8125C214.85 38.8125 217.217 39.8267 219.019 41.8551C220.836 43.8835 221.744 46.5814 221.744 49.9489V50.2074C221.744 52.3021 221.339 54.1847 220.531 55.8551C219.735 57.5123 218.589 58.8049 217.091 59.733C215.606 60.661 213.896 61.125 211.96 61.125C209.044 61.125 206.677 60.1108 204.861 58.0824C203.058 56.054 202.157 53.3693 202.157 50.0284V49.7699ZM205.856 50.2074C205.856 52.5938 206.406 54.5095 207.506 55.9545C208.62 57.3996 210.104 58.1222 211.96 58.1222C213.829 58.1222 215.314 57.393 216.414 55.9347C217.515 54.4631 218.065 52.4081 218.065 49.7699C218.065 47.41 217.502 45.5009 216.375 44.0426C215.261 42.571 213.776 41.8352 211.92 41.8352C210.104 41.8352 208.639 42.5578 207.526 44.0028C206.412 45.4479 205.856 47.5161 205.856 50.2074Z" fill="#040404"/>
15
+ <path d="M231.348 34V39.2102H235.365V42.054H231.348V55.3977C231.348 56.2595 231.527 56.9091 231.885 57.3466C232.243 57.7708 232.853 57.983 233.715 57.983C234.139 57.983 234.722 57.9034 235.464 57.7443V60.7273C234.497 60.9924 233.555 61.125 232.641 61.125C230.997 61.125 229.757 60.6278 228.922 59.6335C228.087 58.6392 227.669 57.2273 227.669 55.3977V42.054H223.752V39.2102H227.669V34H231.348Z" fill="#040404"/>
16
+ <path d="M248.608 61.125C245.692 61.125 243.319 60.1705 241.49 58.2614C239.66 56.339 238.745 53.7737 238.745 50.5653V49.8892C238.745 47.7547 239.15 45.8523 239.958 44.1818C240.78 42.4981 241.92 41.1856 243.379 40.2443C244.85 39.2898 246.441 38.8125 248.151 38.8125C250.948 38.8125 253.122 39.7339 254.673 41.5767C256.224 43.4195 257 46.0578 257 49.4915V51.0227H242.424C242.477 53.1439 243.094 54.8608 244.274 56.1733C245.467 57.4725 246.978 58.1222 248.807 58.1222C250.106 58.1222 251.207 57.857 252.108 57.3267C253.01 56.7964 253.798 56.0938 254.475 55.2188L256.722 56.9688C254.919 59.7396 252.214 61.125 248.608 61.125ZM248.151 41.8352C246.666 41.8352 245.42 42.3788 244.413 43.4659C243.405 44.5398 242.782 46.0511 242.544 48H253.321V47.7216C253.215 45.8523 252.711 44.4072 251.81 43.3864C250.909 42.3523 249.689 41.8352 248.151 41.8352Z" fill="#040404"/>
17
+ <path d="M97.9788 55.6563L102.115 39.2102H105.794L99.5298 60.7273H96.5471L91.3173 44.4205L86.2267 60.7273H83.2439L77 39.2102H80.6589L84.8944 55.3182L89.9054 39.2102H92.8683L97.9788 55.6563Z" stroke="#040404"/>
18
+ <path d="M127.727 50.2074C127.727 53.482 126.978 56.1203 125.48 58.1222C123.982 60.1241 121.954 61.125 119.395 61.125C116.783 61.125 114.729 60.2964 113.231 58.6392V69H109.552V39.2102H112.913L113.091 41.5966C114.589 39.7405 116.671 38.8125 119.335 38.8125C121.92 38.8125 123.962 39.7869 125.46 41.7358C126.971 43.6847 127.727 46.3958 127.727 49.8693V50.2074ZM124.048 49.7898C124.048 47.3636 123.531 45.4479 122.497 44.0426C121.463 42.6373 120.045 41.9347 118.242 41.9347C116.015 41.9347 114.344 42.9223 113.231 44.8977V55.179C114.331 57.1411 116.015 58.1222 118.281 58.1222C120.045 58.1222 121.443 57.4261 122.477 56.0341C123.525 54.6288 124.048 52.5473 124.048 49.7898Z" stroke="#040404"/>
19
+ <path d="M142.82 42.5114C142.263 42.4186 141.66 42.3722 141.01 42.3722C138.597 42.3722 136.96 43.3996 136.099 45.4545V60.7273H132.42V39.2102H135.999L136.059 41.696C137.265 39.7737 138.975 38.8125 141.189 38.8125C141.905 38.8125 142.449 38.9053 142.82 39.0909V42.5114Z" stroke="#040404"/>
20
+ <path d="M154.751 61.125C151.834 61.125 149.461 60.1705 147.632 58.2614C145.802 56.339 144.888 53.7737 144.888 50.5653V49.8892C144.888 47.7547 145.292 45.8523 146.101 44.1818C146.923 42.4981 148.063 41.1856 149.521 40.2443C150.992 39.2898 152.583 38.8125 154.293 38.8125C157.091 38.8125 159.265 39.7339 160.816 41.5767C162.367 43.4195 163.142 46.0578 163.142 49.4915V51.0227H148.567C148.62 53.1439 149.236 54.8608 150.416 56.1733C151.609 57.4725 153.12 58.1222 154.95 58.1222C156.249 58.1222 157.349 57.857 158.251 57.3267C159.152 56.7964 159.941 56.0938 160.617 55.2188L162.864 56.9688C161.061 59.7396 158.357 61.125 154.751 61.125ZM154.293 41.8352C152.809 41.8352 151.563 42.3788 150.555 43.4659C149.548 44.5398 148.924 46.0511 148.686 48H159.464V47.7216C159.357 45.8523 158.854 44.4072 157.952 43.3864C157.051 42.3523 155.831 41.8352 154.293 41.8352Z" stroke="#040404"/>
21
+ <path d="M170.878 39.2102L170.977 41.5966C172.555 39.7405 174.682 38.8125 177.36 38.8125C180.369 38.8125 182.418 39.9659 183.505 42.2727C184.221 41.2386 185.148 40.4034 186.289 39.767C187.442 39.1307 188.801 38.8125 190.365 38.8125C195.084 38.8125 197.484 41.3116 197.563 46.3097V60.7273H193.885V46.5284C193.885 44.9905 193.533 43.8438 192.831 43.0881C192.128 42.3191 190.948 41.9347 189.291 41.9347C187.926 41.9347 186.792 42.3456 185.891 43.1676C184.989 43.9763 184.466 45.0701 184.32 46.4489V60.7273H180.621V46.6278C180.621 43.4991 179.09 41.9347 176.028 41.9347C173.615 41.9347 171.965 42.9621 171.076 45.017V60.7273H167.398V39.2102H170.878Z" stroke="#040404"/>
22
+ <path d="M202.157 49.7699C202.157 47.6619 202.568 45.7661 203.39 44.0824C204.225 42.3987 205.378 41.0994 206.85 40.1847C208.335 39.2699 210.025 38.8125 211.92 38.8125C214.85 38.8125 217.217 39.8267 219.019 41.8551C220.836 43.8835 221.744 46.5814 221.744 49.9489V50.2074C221.744 52.3021 221.339 54.1847 220.531 55.8551C219.735 57.5123 218.589 58.8049 217.091 59.733C215.606 60.661 213.896 61.125 211.96 61.125C209.044 61.125 206.677 60.1108 204.861 58.0824C203.058 56.054 202.157 53.3693 202.157 50.0284V49.7699ZM205.856 50.2074C205.856 52.5938 206.406 54.5095 207.506 55.9545C208.62 57.3996 210.104 58.1222 211.96 58.1222C213.829 58.1222 215.314 57.393 216.414 55.9347C217.515 54.4631 218.065 52.4081 218.065 49.7699C218.065 47.41 217.502 45.5009 216.375 44.0426C215.261 42.571 213.776 41.8352 211.92 41.8352C210.104 41.8352 208.639 42.5578 207.526 44.0028C206.412 45.4479 205.856 47.5161 205.856 50.2074Z" stroke="#040404"/>
23
+ <path d="M231.348 34V39.2102H235.365V42.054H231.348V55.3977C231.348 56.2595 231.527 56.9091 231.885 57.3466C232.243 57.7708 232.853 57.983 233.715 57.983C234.139 57.983 234.722 57.9034 235.464 57.7443V60.7273C234.497 60.9924 233.555 61.125 232.641 61.125C230.997 61.125 229.757 60.6278 228.922 59.6335C228.087 58.6392 227.669 57.2273 227.669 55.3977V42.054H223.752V39.2102H227.669V34H231.348Z" stroke="#040404"/>
24
+ <path d="M248.608 61.125C245.692 61.125 243.319 60.1705 241.49 58.2614C239.66 56.339 238.745 53.7737 238.745 50.5653V49.8892C238.745 47.7547 239.15 45.8523 239.958 44.1818C240.78 42.4981 241.92 41.1856 243.379 40.2443C244.85 39.2898 246.441 38.8125 248.151 38.8125C250.948 38.8125 253.122 39.7339 254.673 41.5767C256.224 43.4195 257 46.0578 257 49.4915V51.0227H242.424C242.477 53.1439 243.094 54.8608 244.274 56.1733C245.467 57.4725 246.978 58.1222 248.807 58.1222C250.106 58.1222 251.207 57.857 252.108 57.3267C253.01 56.7964 253.798 56.0938 254.475 55.2188L256.722 56.9688C254.919 59.7396 252.214 61.125 248.608 61.125ZM248.151 41.8352C246.666 41.8352 245.42 42.3788 244.413 43.4659C243.405 44.5398 242.782 46.0511 242.544 48H253.321V47.7216C253.215 45.8523 252.711 44.4072 251.81 43.3864C250.909 42.3523 249.689 41.8352 248.151 41.8352Z" stroke="#040404"/>
25
+ </svg>
info.php CHANGED
@@ -10,7 +10,7 @@ if (!class_exists('WPRInfo')) :
10
  public $badgeinfo = 'wprbadge';
11
  public $ip_header_option = 'wpripheader';
12
  public $brand_option = 'wprbrand';
13
- public $version = '4.58';
14
  public $webpage = 'https://wpremote.com';
15
  public $appurl = 'https://app.wpremote.com';
16
  public $slug = 'wpremote/plugin.php';
@@ -19,7 +19,7 @@ if (!class_exists('WPRInfo')) :
19
  public $brand_icon = '/img/icon.png';
20
  public $services_option_name = 'wprconfig';
21
 
22
- const DB_VERSION = '2';
23
 
24
  public function __construct($settings) {
25
  $this->settings = $settings;
10
  public $badgeinfo = 'wprbadge';
11
  public $ip_header_option = 'wpripheader';
12
  public $brand_option = 'wprbrand';
13
+ public $version = '4.61';
14
  public $webpage = 'https://wpremote.com';
15
  public $appurl = 'https://app.wpremote.com';
16
  public $slug = 'wpremote/plugin.php';
19
  public $brand_icon = '/img/icon.png';
20
  public $services_option_name = 'wprconfig';
21
 
22
+ const DB_VERSION = '3';
23
 
24
  public function __construct($settings) {
25
  $this->settings = $settings;
plugin.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://wpremote.com
5
  Description: Manage your WordPress site with <a href="https://wpremote.com/">WP Remote</a>.
6
  Author: WP Remote
7
  Author URI: https://wpremote.com
8
- Version: 4.58
9
  Network: True
10
  */
11
 
@@ -77,8 +77,7 @@ if (is_admin()) {
77
  add_filter('plugin_action_links', array($wpadmin, 'settingsLink'), 10, 2);
78
  add_action('admin_head', array($wpadmin, 'removeAdminNotices'), 3);
79
  add_action('admin_notices', array($wpadmin, 'activateWarning'));
80
- ##ADMINENQUEUESCRIPTS##
81
- ##REMOVEDEACTIVATIONLINK##
82
  }
83
 
84
 
5
  Description: Manage your WordPress site with <a href="https://wpremote.com/">WP Remote</a>.
6
  Author: WP Remote
7
  Author URI: https://wpremote.com
8
+ Version: 4.61
9
  Network: True
10
  */
11
 
77
  add_filter('plugin_action_links', array($wpadmin, 'settingsLink'), 10, 2);
78
  add_action('admin_head', array($wpadmin, 'removeAdminNotices'), 3);
79
  add_action('admin_notices', array($wpadmin, 'activateWarning'));
80
+ add_action('admin_enqueue_scripts', array($wpadmin, 'wprsecAdminMenu'));
 
81
  }
82
 
83
 
protect/fw/fw.php CHANGED
@@ -252,7 +252,7 @@ class BVFW {
252
  $this->terminateRequest(BVWPRequest::BLACKLISTED);
253
  }
254
  if ($this->config->isRulesModeEnabled()) {
255
- if ($this->ruleSet) {
256
  $this->evaluateRules($this->ruleSet);
257
  } else {
258
  $this->request->updateRulesInfo('errors', 'ruleset', 'Invalid RuleSet');
@@ -395,7 +395,7 @@ class BVFW {
395
 
396
  if (BVFWRuleEvaluator::VERSION >= $min_rule_engine_ver) {
397
  if ($this->ruleEvaluator->evaluateRule($ruleLogic) && empty($this->ruleEvaluator->getErrors())) {
398
- $this->request->updateRulesInfo('matched_rules', $id, null);
399
  $this->executeActions($actions);
400
  } elseif (!empty($this->ruleEvaluator->getErrors())) {
401
  $this->request->updateRulesInfo("errors", (string) $id, $this->ruleEvaluator->getErrors());
252
  $this->terminateRequest(BVWPRequest::BLACKLISTED);
253
  }
254
  if ($this->config->isRulesModeEnabled()) {
255
+ if (is_array($this->ruleSet)) {
256
  $this->evaluateRules($this->ruleSet);
257
  } else {
258
  $this->request->updateRulesInfo('errors', 'ruleset', 'Invalid RuleSet');
395
 
396
  if (BVFWRuleEvaluator::VERSION >= $min_rule_engine_ver) {
397
  if ($this->ruleEvaluator->evaluateRule($ruleLogic) && empty($this->ruleEvaluator->getErrors())) {
398
+ $this->request->updateMatchedRules($id);
399
  $this->executeActions($actions);
400
  } elseif (!empty($this->ruleEvaluator->getErrors())) {
401
  $this->request->updateRulesInfo("errors", (string) $id, $this->ruleEvaluator->getErrors());
protect/fw/request.php CHANGED
@@ -20,6 +20,7 @@ class BVWPRequest {
20
  private $status;
21
  private $rulesInfo;
22
  private $reqInfo;
 
23
 
24
  #status
25
  const ALLOWED = 1;
@@ -44,6 +45,7 @@ class BVWPRequest {
44
  $path = '';
45
  $this->ip = $ip;
46
  $this->rulesInfo = array();
 
47
  $this->reqInfo = array();
48
  $this->setRespCode(0);
49
  $this->setCategory(BVWPRequest::NORMAL);
@@ -160,6 +162,10 @@ class BVWPRequest {
160
  $this->uri = $uri;
161
  }
162
 
 
 
 
 
163
  public function updateRulesInfo($category, $sub_category, $value) {
164
  $rule_info = (array_key_exists($category, $this->rulesInfo)) ? $this->rulesInfo[$category] : array();
165
  $rule_info[$sub_category] = $value;
@@ -170,6 +176,10 @@ class BVWPRequest {
170
  return $this->rulesInfo;
171
  }
172
 
 
 
 
 
173
  public function updateReqInfo($info) {
174
  if (is_array($info)) {
175
  $this->reqInfo = $this->reqInfo + $info;
@@ -213,7 +223,8 @@ class BVWPRequest {
213
  "status" => $this->getStatus(),
214
  "category" => $this->getCategory(),
215
  "rules_info" => $rules_info,
216
- "request_id" => $this->getRequestID()
 
217
  );
218
  return $data;
219
  }
20
  private $status;
21
  private $rulesInfo;
22
  private $reqInfo;
23
+ private $matchedRules;
24
 
25
  #status
26
  const ALLOWED = 1;
45
  $path = '';
46
  $this->ip = $ip;
47
  $this->rulesInfo = array();
48
+ $this->matchedRules = array();
49
  $this->reqInfo = array();
50
  $this->setRespCode(0);
51
  $this->setCategory(BVWPRequest::NORMAL);
162
  $this->uri = $uri;
163
  }
164
 
165
+ public function updateMatchedRules($matched_rule_id) {
166
+ $this->matchedRules[] = $matched_rule_id;
167
+ }
168
+
169
  public function updateRulesInfo($category, $sub_category, $value) {
170
  $rule_info = (array_key_exists($category, $this->rulesInfo)) ? $this->rulesInfo[$category] : array();
171
  $rule_info[$sub_category] = $value;
176
  return $this->rulesInfo;
177
  }
178
 
179
+ public function getMatchedRules() {
180
+ return $this->matchedRules;
181
+ }
182
+
183
  public function updateReqInfo($info) {
184
  if (is_array($info)) {
185
  $this->reqInfo = $this->reqInfo + $info;
223
  "status" => $this->getStatus(),
224
  "category" => $this->getCategory(),
225
  "rules_info" => $rules_info,
226
+ "request_id" => $this->getRequestID(),
227
+ "matched_rules"=> serialize($this->getMatchedRules())
228
  );
229
  return $data;
230
  }
readme.txt CHANGED
@@ -6,7 +6,7 @@ Donate link: https://app.wpremote.com/home/signup
6
  Requires at least: 4.0
7
  Tested up to: 5.7
8
  Requires PHP: 5.4.0
9
- Stable tag: 4.58
10
  License: GPLv2 or later
11
  License URI: [http://www.gnu.org/licenses/gpl-2.0.html](http://www.gnu.org/licenses/gpl-2.0.html)
12
 
@@ -32,6 +32,11 @@ You can email us at support@wpremote.com for support.
32
  3. Sign up for an account at wpremote.com and add your site.
33
 
34
  == CHANGELOG ==
 
 
 
 
 
35
  = 4.58 =
36
  * Fixed firewall caching issue
37
  * Minor bug fixes
6
  Requires at least: 4.0
7
  Tested up to: 5.7
8
  Requires PHP: 5.4.0
9
+ Stable tag: 4.61
10
  License: GPLv2 or later
11
  License URI: [http://www.gnu.org/licenses/gpl-2.0.html](http://www.gnu.org/licenses/gpl-2.0.html)
12
 
32
  3. Sign up for an account at wpremote.com and add your site.
33
 
34
  == CHANGELOG ==
35
+ = 4.61 =
36
+ * Streamlined overall UI
37
+ * Firewall Logging Improvements
38
+ * Improved host info
39
+
40
  = 4.58 =
41
  * Fixed firewall caching issue
42
  * Minor bug fixes
wp_admin.php CHANGED
@@ -55,6 +55,14 @@ class WPRWPAdmin {
55
  }
56
  }
57
 
 
 
 
 
 
 
 
 
58
  public function menu() {
59
  $brand = $this->bvinfo->getBrandInfo();
60
  if (!$brand || (!array_key_exists('hide', $brand) && !array_key_exists('hide_from_menu', $brand))) {
@@ -139,24 +147,29 @@ class WPRWPAdmin {
139
  }
140
  }
141
 
 
 
 
 
 
 
 
 
142
  public function adminPage() {
143
- wp_enqueue_style( 'bvsurface', plugins_url('css/bvmui.min.css', __FILE__));
144
- wp_enqueue_style( 'bvplugin', plugins_url('css/bvplugin.min.css', __FILE__));
145
  if (isset($_REQUEST['bvnonce']) && wp_verify_nonce( $_REQUEST['bvnonce'], 'bvnonce' )) {
146
  $info = array();
147
  $this->siteinfo->basic($info);
148
  $this->bvapi->pingbv('/bvapi/disconnect', $info, $_REQUEST['pubkey']);
149
  WPRAccount::remove($this->settings, $_REQUEST['pubkey']);
150
  }
151
- require_once dirname( __FILE__ ) . '/admin/header.php';
152
  if (WPRAccount::isConfigured($this->settings)) {
153
  if (!isset($_REQUEST['add_account'])) {
154
- require_once dirname( __FILE__ ) . '/admin/main_page.php';
155
  } else {
156
- require_once dirname( __FILE__ ) . '/admin/add_new_acc.php';
157
  }
158
  } else {
159
- require_once dirname( __FILE__ ) . '/admin/add_new_acc.php';
160
  }
161
  }
162
 
55
  }
56
  }
57
 
58
+ public function wprsecAdminMenu($hook) {
59
+ if ($hook === 'toplevel_page_wpremote' || preg_match("/wpr_add_account$/", $hook) || preg_match("/wpr_account_details$/", $hook)) {
60
+ wp_enqueue_style( 'bvsurface', plugins_url('css/bvmui.min.css', __FILE__));
61
+ wp_enqueue_style( 'bootstrap', plugins_url('css/bootstrap.min.css', __FILE__));
62
+ wp_enqueue_style( 'bvplugin', plugins_url('css/bvplugin.min.css', __FILE__));
63
+ }
64
+ }
65
+
66
  public function menu() {
67
  $brand = $this->bvinfo->getBrandInfo();
68
  if (!$brand || (!array_key_exists('hide', $brand) && !array_key_exists('hide_from_menu', $brand))) {
147
  }
148
  }
149
 
150
+ public function showAddAccountPage() {
151
+ require_once dirname( __FILE__ ) . "/admin/add_new_account.php";
152
+ }
153
+
154
+ public function showAccountDetailsPage() {
155
+ require_once dirname( __FILE__ ) . "/admin/account_details.php";
156
+ }
157
+
158
  public function adminPage() {
 
 
159
  if (isset($_REQUEST['bvnonce']) && wp_verify_nonce( $_REQUEST['bvnonce'], 'bvnonce' )) {
160
  $info = array();
161
  $this->siteinfo->basic($info);
162
  $this->bvapi->pingbv('/bvapi/disconnect', $info, $_REQUEST['pubkey']);
163
  WPRAccount::remove($this->settings, $_REQUEST['pubkey']);
164
  }
 
165
  if (WPRAccount::isConfigured($this->settings)) {
166
  if (!isset($_REQUEST['add_account'])) {
167
+ $this->showAccountDetailsPage();
168
  } else {
169
+ $this->showAddAccountPage();
170
  }
171
  } else {
172
+ $this->showAddAccountPage();
173
  }
174
  }
175