lazuli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: ae32149c112061b4101c0e487ae422548a1606567d72668ef3c57828356500d8
4
+ data.tar.gz: 343af405cd756bfe618c56973933f9964396faa1f184ad697f4c7f5a3e2e7894
5
+ SHA512:
6
+ metadata.gz: b23533310e1759515f522815fce99bd8f61481e6bdbca67e6996e7e5421337d038a31d40f827089a3c48a223c9f591db2471f0e0afc99d3ca9d832483464f177
7
+ data.tar.gz: f7aa9bb887a547aacca5bd677772582c5d820305990cc4c00702b791514217ad4d938dc5ab853aeeed3b8227e02671a094a39424f7f330028454e96c5766cf86
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
@@ -0,0 +1,11 @@
1
+ # Changelog
2
+
3
+ ## Unreleased
4
+
5
+ ## 0.1.0 - 2020-08-14
6
+ ### Added
7
+ - Initial commit
8
+ - AmazonConnector
9
+ - TemplateGenerator
10
+ - CLI
11
+ - README.md
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in lazuli.gemspec
4
+ gemspec
5
+
6
+ gem "rake", "~> 12.0"
7
+ gem "vacuum"
8
+ gem "parseconfig"
@@ -0,0 +1,48 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ lazuli (0.0.1)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ addressable (2.7.0)
10
+ public_suffix (>= 2.0.2, < 5.0)
11
+ aws-eventstream (1.1.0)
12
+ aws-sigv4 (1.2.2)
13
+ aws-eventstream (~> 1, >= 1.0.2)
14
+ domain_name (0.5.20190701)
15
+ unf (>= 0.0.5, < 1.0.0)
16
+ ffi (1.13.1)
17
+ ffi-compiler (1.0.1)
18
+ ffi (>= 1.0.0)
19
+ rake
20
+ http (4.4.1)
21
+ addressable (~> 2.3)
22
+ http-cookie (~> 1.0)
23
+ http-form_data (~> 2.2)
24
+ http-parser (~> 1.2.0)
25
+ http-cookie (1.0.3)
26
+ domain_name (~> 0.5)
27
+ http-form_data (2.3.0)
28
+ http-parser (1.2.1)
29
+ ffi-compiler (>= 1.0, < 2.0)
30
+ public_suffix (4.0.5)
31
+ rake (12.3.3)
32
+ unf (0.1.4)
33
+ unf_ext
34
+ unf_ext (0.0.7.7)
35
+ vacuum (3.4.0)
36
+ aws-sigv4 (~> 1.0)
37
+ http (~> 4.0)
38
+
39
+ PLATFORMS
40
+ ruby
41
+
42
+ DEPENDENCIES
43
+ lazuli!
44
+ rake (~> 12.0)
45
+ vacuum
46
+
47
+ BUNDLED WITH
48
+ 2.1.4
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 TODO: Write your name
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,41 @@
1
+ <div align="center">
2
+ <h1>Lazuli</h1>
3
+ <h3>An Amazon product importer</h3>
4
+ </div>
5
+
6
+ ## Table of Contents
7
+ 1. [What the fuck is this?](#what-the-fuck)
8
+ 2. [Usage](#usage)
9
+ 2. [Installation](#installation)
10
+
11
+ ## What the fuck
12
+ This is an repository that is intended for transforming an Amazon products into an Jekyll post.
13
+
14
+
15
+ ## Usage
16
+
17
+ ![Preview][preview]
18
+
19
+ First of all you need to create an config file located at your home directory.
20
+ ```sh
21
+ $ cat ~/.lazuli.conf
22
+ # access_key=<your_access_key_here>
23
+ # secret_key=<your_secret_key_here>
24
+ # partner_tag=<your_partner_key_here>
25
+ ```
26
+
27
+ Then run following command
28
+ ```sh
29
+ lazuli
30
+ ```
31
+
32
+ ## Installation
33
+ 1. *You need to have ruby installed.*
34
+ 2. Download the latest gem from the release page.
35
+ ```sh
36
+ $ cd ~/Downloads
37
+ $ gem install --local lazuli
38
+ ```
39
+ If this does not work try it with sudo privileges.
40
+
41
+ [preview]: resources/preview.svg
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "main"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "lazuli"
4
+
5
+ # You can add fixtures and/or initialization code here to make experimenting
6
+ # with your gem easier. You can also use a different console, if you like.
7
+
8
+ # (If you use this, don't forget to add pry to your Gemfile!)
9
+ # require "pry"
10
+ # Pry.start
11
+ CLI. new.dialog
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,30 @@
1
+ require_relative 'lib/version'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "lazuli"
5
+ spec.version = Lazuli::VERSION
6
+ spec.authors = ["IJustDev"]
7
+ spec.email = [""]
8
+
9
+ spec.summary = %q{A cli tool that generates templates by using the Product advertising API 5.0}
10
+ spec.description = %q{}
11
+ spec.homepage = "https://github.com/ijustdev/lazuli"
12
+ spec.license = "MIT"
13
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
14
+
15
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
16
+
17
+ spec.metadata["homepage_uri"] = spec.homepage
18
+ spec.metadata["source_code_uri"] = "https://github.com/ijustdev/lazuli"
19
+ spec.metadata["changelog_uri"] = "https://github.com/ijustdev/lazuli/changelog.md"
20
+
21
+ # Specify which files should be added to the gem when it is released.
22
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
24
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
+ end
26
+ spec.bindir = "bin"
27
+ # spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.executables = ["lazuli"]
29
+ spec.require_paths = ["lib"]
30
+ end
@@ -0,0 +1,102 @@
1
+ require 'vacuum'
2
+ require 'erb'
3
+ require 'parseconfig'
4
+
5
+ class Config
6
+ def initialize
7
+ path = File.join(
8
+ File.expand_path("~"),
9
+ ".lazuli.conf"
10
+ )
11
+ @config = ParseConfig.new(path)
12
+ end
13
+ def get_access_key
14
+ return @config['access_key']
15
+ end
16
+ def get_secret_key
17
+ return @config['secret_key']
18
+ end
19
+ def get_partner_tag
20
+ return @config['partner_tag']
21
+ end
22
+ end
23
+
24
+ class AmazonConnector
25
+ def fetch_items(keyword, access_key, secret_key, partner_tag)
26
+ request = Vacuum.new(marketplace: 'DE',
27
+ access_key: access_key,
28
+ secret_key: secret_key,
29
+ partner_tag: partner_tag)
30
+
31
+ response = request.search_items(title: keyword, keyword: keyword, resources: [
32
+ 'ItemInfo.ProductInfo',
33
+ 'ItemInfo.Title',
34
+ 'Offers.Listings.Price',
35
+ 'Images.Primary.Large',
36
+ ])
37
+
38
+ data = JSON.parse(response, symbolize_keys: true)
39
+ return data["SearchResult"]["Items"]
40
+ end
41
+ end
42
+
43
+ class TemplateGenerator
44
+ def initialize(template_filename, article, dest_filename)
45
+ read_template_from_file(template_filename)
46
+ output = generate_template(article)
47
+ write_output(dest_filename, output)
48
+ end
49
+ def read_template_from_file(template_filename)
50
+ file = File.open(template_filename)
51
+ @template = file.read()
52
+ end
53
+ def generate_template(article)
54
+ price = article["Offers"]["Listings"][0]["Price"]["Amount"]
55
+ details_page_url = article["DetailPageURL"]
56
+ image_url = article["Images"]["Primary"]["Large"]["URL"]
57
+ title = article["ItemInfo"]["Title"]["DisplayValue"]
58
+ brand = "default"
59
+ date = Time.new.to_s
60
+ renderer = ERB.new(@template)
61
+ return renderer.result(binding)
62
+ end
63
+ def write_output(filename, output)
64
+ file = File.open(filename, "w")
65
+ file.write(output)
66
+ end
67
+ end
68
+
69
+ class CLI
70
+ def print_choices(items)
71
+ index = 1
72
+ items.each do |item|
73
+ puts index.to_s + ". " + (item["ItemInfo"]["Title"]["DisplayValue"])[0..50]
74
+ index += 1
75
+ end
76
+ return items
77
+ end
78
+
79
+ def prompt(prompt)
80
+ puts "[*] " + prompt + ": "
81
+ return gets.gsub("\n", '')
82
+ end
83
+
84
+ def dialog()
85
+ config = Config.new
86
+
87
+ template = prompt("Template file")
88
+ query = prompt("Query")
89
+
90
+ items = AmazonConnector. new.fetch_items(
91
+ query.to_s,
92
+ config.get_access_key,
93
+ config.get_secret_key,
94
+ config.get_partner_tag,
95
+ )
96
+ print_choices(items)
97
+
98
+ selected_index = prompt("Index of product").to_i
99
+ output_file = prompt("Output destination")
100
+ TemplateGenerator. new(template, items[selected_index - 1], output_file)
101
+ end
102
+ end
@@ -0,0 +1,3 @@
1
+ module Lazuli
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,163 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="terminal" baseProfile="full" viewBox="0 0 1112 733" width="1112" version="1.1">
2
+ <defs>
3
+ <termtosvg:template_settings xmlns:termtosvg="https://github.com/nbedos/termtosvg">
4
+ <termtosvg:screen_geometry columns="139" rows="43"/>
5
+ <termtosvg:animation type="css"/>
6
+ </termtosvg:template_settings>
7
+ <style type="text/css" id="generated-style"><![CDATA[#screen {
8
+ font-family: 'DejaVu Sans Mono', monospace;
9
+ font-style: normal;
10
+ font-size: 14px;
11
+ }
12
+
13
+ text {
14
+ dominant-baseline: text-before-edge;
15
+ white-space: pre;
16
+ }
17
+
18
+ :root {
19
+ --animation-duration: 25659ms;
20
+ }
21
+
22
+ @keyframes roll {
23
+ 0.000%{transform:translateY(0px)}
24
+ 0.066%{transform:translateY(-748px)}
25
+ 0.074%{transform:translateY(-1496px)}
26
+ 3.375%{transform:translateY(-2244px)}
27
+ 3.960%{transform:translateY(-2992px)}
28
+ 4.470%{transform:translateY(-3740px)}
29
+ 4.872%{transform:translateY(-4488px)}
30
+ 5.168%{transform:translateY(-5236px)}
31
+ 5.433%{transform:translateY(-5984px)}
32
+ 5.772%{transform:translateY(-6732px)}
33
+ 6.306%{transform:translateY(-7480px)}
34
+ 6.559%{transform:translateY(-8228px)}
35
+ 6.820%{transform:translateY(-8976px)}
36
+ 7.019%{transform:translateY(-9724px)}
37
+ 7.292%{transform:translateY(-10472px)}
38
+ 7.837%{transform:translateY(-11220px)}
39
+ 10.164%{transform:translateY(-11968px)}
40
+ 10.180%{transform:translateY(-12716px)}
41
+ 10.187%{transform:translateY(-13464px)}
42
+ 10.191%{transform:translateY(-14212px)}
43
+ 10.199%{transform:translateY(-14960px)}
44
+ 10.234%{transform:translateY(-15708px)}
45
+ 10.250%{transform:translateY(-16456px)}
46
+ 18.099%{transform:translateY(-17204px)}
47
+ 18.687%{transform:translateY(-17952px)}
48
+ 19.366%{transform:translateY(-18700px)}
49
+ 19.631%{transform:translateY(-19448px)}
50
+ 19.927%{transform:translateY(-20196px)}
51
+ 20.433%{transform:translateY(-20944px)}
52
+ 20.885%{transform:translateY(-21692px)}
53
+ 21.221%{transform:translateY(-22440px)}
54
+ 29.226%{transform:translateY(-23188px)}
55
+ 29.253%{transform:translateY(-23936px)}
56
+ 30.325%{transform:translateY(-24684px)}
57
+ 32.273%{transform:translateY(-25432px)}
58
+ 32.550%{transform:translateY(-26180px)}
59
+ 32.764%{transform:translateY(-26928px)}
60
+ 33.407%{transform:translateY(-27676px)}
61
+ 33.657%{transform:translateY(-28424px)}
62
+ 33.972%{transform:translateY(-29172px)}
63
+ 34.132%{transform:translateY(-29920px)}
64
+ 34.686%{transform:translateY(-30668px)}
65
+ 35.029%{transform:translateY(-31416px)}
66
+ 35.808%{transform:translateY(-32164px)}
67
+ 36.019%{transform:translateY(-32912px)}
68
+ 36.264%{transform:translateY(-33660px)}
69
+ 37.242%{transform:translateY(-34408px)}
70
+ 37.281%{transform:translateY(-35156px)}
71
+ 44.168%{transform:translateY(-35904px)}
72
+ 44.405%{transform:translateY(-36652px)}
73
+ 44.904%{transform:translateY(-37400px)}
74
+ 45.442%{transform:translateY(-38148px)}
75
+ 46.202%{transform:translateY(-38896px)}
76
+ 46.494%{transform:translateY(-39644px)}
77
+ 47.266%{transform:translateY(-40392px)}
78
+ 47.660%{transform:translateY(-41140px)}
79
+ 47.948%{transform:translateY(-41888px)}
80
+ 48.564%{transform:translateY(-42636px)}
81
+ 49.238%{transform:translateY(-43384px)}
82
+ 49.476%{transform:translateY(-44132px)}
83
+ 49.916%{transform:translateY(-44880px)}
84
+ 52.340%{transform:translateY(-45628px)}
85
+ 52.356%{transform:translateY(-46376px)}
86
+ 58.884%{transform:translateY(-47124px)}
87
+ 60.809%{transform:translateY(-47872px)}
88
+ 60.836%{transform:translateY(-48620px)}
89
+ 71.336%{transform:translateY(-49368px)}
90
+ 71.491%{transform:translateY(-50116px)}
91
+ 72.177%{transform:translateY(-50864px)}
92
+ 72.735%{transform:translateY(-51612px)}
93
+ 73.974%{transform:translateY(-52360px)}
94
+ 74.274%{transform:translateY(-53108px)}
95
+ 74.535%{transform:translateY(-53856px)}
96
+ 75.299%{transform:translateY(-54604px)}
97
+ 75.736%{transform:translateY(-55352px)}
98
+ 76.106%{transform:translateY(-56100px)}
99
+ 76.425%{transform:translateY(-56848px)}
100
+ 76.464%{transform:translateY(-57596px)}
101
+ 76.496%{transform:translateY(-58344px)}
102
+ 76.535%{transform:translateY(-59092px)}
103
+ 80.128%{transform:translateY(-59840px)}
104
+ 80.911%{transform:translateY(-60588px)}
105
+ 81.227%{transform:translateY(-61336px)}
106
+ 81.558%{transform:translateY(-62084px)}
107
+ 81.983%{transform:translateY(-62832px)}
108
+ 82.201%{transform:translateY(-63580px)}
109
+ 83.160%{transform:translateY(-64328px)}
110
+ 83.932%{transform:translateY(-65076px)}
111
+ 83.994%{transform:translateY(-65824px)}
112
+ 84.918%{transform:translateY(-66572px)}
113
+ 85.510%{transform:translateY(-67320px)}
114
+ 85.572%{transform:translateY(-68068px)}
115
+ 85.814%{transform:translateY(-68816px)}
116
+ 86.391%{transform:translateY(-69564px)}
117
+ 87.509%{transform:translateY(-70312px)}
118
+ 87.993%{transform:translateY(-71060px)}
119
+ 88.129%{transform:translateY(-71808px)}
120
+ 88.760%{transform:translateY(-72556px)}
121
+ 89.976%{transform:translateY(-73304px)}
122
+ 90.019%{transform:translateY(-74052px)}
123
+ 90.046%{transform:translateY(-74800px)}
124
+ 90.101%{transform:translateY(-75548px)}
125
+ 96.103%{transform:translateY(-76296px)}
126
+ 100.000%{transform:translateY(-76296px)}
127
+ }
128
+
129
+ #screen_view {
130
+ animation-duration: 25659ms;
131
+ animation-iteration-count:infinite;
132
+ animation-name:roll;
133
+ animation-timing-function: steps(1,end);
134
+ animation-fill-mode: forwards;
135
+ }
136
+ ]]></style>
137
+ <style type="text/css" id="user-style">
138
+ /* The colors defined below are the default 16 colors used for rendering text of the terminal. Adjust
139
+ them as needed.
140
+ PowerShell colors based on https://en.wikipedia.org/wiki/ANSI_escape_code#Colors */
141
+ .foreground {fill: #cccccc;}
142
+ .background {fill: #0c0c0c;}
143
+ .color0 {fill: #0c0c0c;}
144
+ .color1 {fill: #c50f1f;}
145
+ .color2 {fill: #13a10e;}
146
+ .color3 {fill: #c19c00;}
147
+ .color4 {fill: #0037da;}
148
+ .color5 {fill: #881798;}
149
+ .color6 {fill: #3a96dd;}
150
+ .color7 {fill: #cccccc;}
151
+ .color8 {fill: #767676;}
152
+ .color9 {fill: #e74856;}
153
+ .color10 {fill: #16c60c;}
154
+ .color11 {fill: #f9f1a5;}
155
+ .color12 {fill: #3b78ff;}
156
+ .color13 {fill: #b4009e;}
157
+ .color14 {fill: #61d6d6;}
158
+ .color15 {fill: #f2f2f2;}
159
+ </style>
160
+ </defs>
161
+ <svg id="screen" width="1112" height="731" viewBox="0 0 1112 731" preserveAspectRatio="xMidYMin slice">
162
+ <rect class="background" height="100%" width="100%" x="0" y="0"/><defs><g id="g1"><text x="0" textLength="8" class="background"> </text><text x="8" textLength="1104" class="foreground"> </text></g><g id="g2"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="8" class="foreground"> </text><text x="336" textLength="8" class="background"> </text><text x="344" textLength="768" class="foreground"> </text></g><g id="g3"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="16" class="foreground"> c</text><text x="344" textLength="8" class="background"> </text><text x="352" textLength="760" class="foreground"> </text></g><g id="g4"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="24" class="foreground"> ca</text><text x="352" textLength="8" class="background"> </text><text x="360" textLength="752" class="foreground"> </text></g><g id="g5"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="32" class="foreground"> cat</text><text x="360" textLength="8" class="background"> </text><text x="368" textLength="744" class="foreground"> </text></g><g id="g6"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="40" class="foreground"> cat </text><text x="368" textLength="8" class="background"> </text><text x="376" textLength="736" class="foreground"> </text></g><g id="g7"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="48" class="foreground"> cat t</text><text x="376" textLength="8" class="background"> </text><text x="384" textLength="728" class="foreground"> </text></g><g id="g8"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="56" class="foreground"> cat te</text><text x="384" textLength="8" class="background"> </text><text x="392" textLength="720" class="foreground"> </text></g><g id="g9"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="64" class="foreground"> cat tem</text><text x="392" textLength="8" class="background"> </text><text x="400" textLength="712" class="foreground"> </text></g><g id="g10"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="72" class="foreground"> cat temp</text><text x="400" textLength="8" class="background"> </text><text x="408" textLength="704" class="foreground"> </text></g><g id="g11"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="80" class="foreground"> cat templ</text><text x="408" textLength="8" class="background"> </text><text x="416" textLength="696" class="foreground"> </text></g><g id="g12"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="88" class="foreground"> cat templa</text><text x="416" textLength="8" class="background"> </text><text x="424" textLength="688" class="foreground"> </text></g><g id="g13"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="96" class="foreground"> cat templat</text><text x="424" textLength="8" class="background"> </text><text x="432" textLength="680" class="foreground"> </text></g><g id="g14"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="104" class="foreground"> cat template</text><text x="432" textLength="8" class="background"> </text><text x="440" textLength="672" class="foreground"> </text></g><g id="g15"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="136" class="foreground"> cat template.erb</text><text x="464" textLength="8" font-weight="bold" class="foreground"> </text><text x="472" textLength="8" class="background"> </text><text x="480" textLength="632" class="foreground"> </text></g><g id="g16"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="136" class="foreground"> cat template.erb</text><text x="464" textLength="8" class="background"> </text><text x="472" textLength="640" class="foreground"> </text></g><g id="g17"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="784" class="foreground"> cat template.erb </text></g><g id="g18"><text x="0" textLength="8" class="background"> </text></g><g id="g19"><text x="0" textLength="24" class="foreground">---</text></g><g id="g20"><text x="0" textLength="96" class="foreground">layout: post</text></g><g id="g21"><text x="0" textLength="168" class="foreground">title: "&lt;%= title %&gt;"</text></g><g id="g22"><text x="0" textLength="96" class="foreground">author: alex</text></g><g id="g23"><text x="0" textLength="200" class="foreground">image: "&lt;%= image_url %&gt;"</text></g><g id="g24"><text x="0" textLength="120" class="foreground">featured: false</text></g><g id="g25"><text x="0" textLength="200" class="foreground">post_type: product_review</text></g><g id="g26"><text x="0" textLength="72" class="foreground">rank: -1 </text></g><g id="g27"><text x="0" textLength="96" class="foreground">bewertung: 5</text></g><g id="g28"><text x="0" textLength="232" class="foreground">link: &lt;%= details_page_url %&gt;</text></g><g id="g29"><text x="0" textLength="152" class="foreground">preis: &lt;%= price %&gt;</text></g><g id="g30"><text x="0" textLength="224" class="foreground">categories: ['&lt;%= brand %&gt;']</text></g><g id="g31"><text x="0" textLength="40" class="foreground"># SEO</text></g><g id="g32"><text x="0" textLength="136" class="foreground">date: &lt;%= date %&gt;</text></g><g id="g33"><text x="0" textLength="288" class="foreground">seo_description: "Don't leave blank"</text></g><g id="g34"><text x="0" textLength="208" class="foreground">This could be the content.</text></g><g id="g35"><text x="0" textLength="24" class="foreground"> </text></g><g id="g36"><text x="0" textLength="96" class="foreground"> </text></g><g id="g37"><text x="0" textLength="168" class="foreground"> </text></g><g id="g38"><text x="0" textLength="200" class="foreground"> </text></g><g id="g39"><text x="0" textLength="120" class="foreground"> </text></g><g id="g40"><text x="0" textLength="72" class="foreground"> </text></g><g id="g41"><text x="0" textLength="232" class="foreground"> </text></g><g id="g42"><text x="0" textLength="152" class="foreground"> </text></g><g id="g43"><text x="0" textLength="224" class="foreground"> </text></g><g id="g44"><text x="0" textLength="40" class="foreground"> </text></g><g id="g45"><text x="0" textLength="136" class="foreground"> </text></g><g id="g46"><text x="0" textLength="288" class="foreground"> </text></g><g id="g47"><text x="0" textLength="208" class="foreground"> </text></g><g id="g48"><text x="0" textLength="1112" class="foreground"> </text></g><g id="g49"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="16" class="foreground"> l</text><text x="344" textLength="8" class="background"> </text><text x="352" textLength="760" class="foreground"> </text></g><g id="g50"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="24" class="foreground"> la</text><text x="352" textLength="8" class="background"> </text><text x="360" textLength="752" class="foreground"> </text></g><g id="g51"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="32" class="foreground"> laz</text><text x="360" textLength="8" class="background"> </text><text x="368" textLength="744" class="foreground"> </text></g><g id="g52"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="40" class="foreground"> lazu</text><text x="368" textLength="8" class="background"> </text><text x="376" textLength="736" class="foreground"> </text></g><g id="g53"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="48" class="foreground"> lazul</text><text x="376" textLength="8" class="background"> </text><text x="384" textLength="728" class="foreground"> </text></g><g id="g54"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="56" class="foreground"> lazuli</text><text x="384" textLength="8" class="background"> </text><text x="392" textLength="720" class="foreground"> </text></g><g id="g55"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="64" class="foreground"> lazuli </text><text x="392" textLength="8" class="background"> </text><text x="400" textLength="712" class="foreground"> </text></g><g id="g56"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="784" class="foreground"> lazuli </text></g><g id="g57"><text x="0" textLength="8" class="background"> </text><text x="8" textLength="16" class="foreground"> </text></g><g id="g58"><text x="0" textLength="152" class="foreground">[*] Template file: </text></g><g id="g59"><text x="0" textLength="8" class="background"> </text><text x="8" textLength="88" class="foreground"> </text></g><g id="g60"><text x="0" textLength="8" class="foreground">t</text><text x="8" textLength="8" class="background"> </text><text x="16" textLength="80" class="foreground"> </text></g><g id="g61"><text x="0" textLength="16" class="foreground">te</text><text x="16" textLength="8" class="background"> </text><text x="24" textLength="72" class="foreground"> </text></g><g id="g62"><text x="0" textLength="24" class="foreground">tem</text><text x="24" textLength="8" class="background"> </text><text x="32" textLength="64" class="foreground"> </text></g><g id="g63"><text x="0" textLength="32" class="foreground">temp</text><text x="32" textLength="8" class="background"> </text><text x="40" textLength="56" class="foreground"> </text></g><g id="g64"><text x="0" textLength="40" class="foreground">templ</text><text x="40" textLength="8" class="background"> </text><text x="48" textLength="48" class="foreground"> </text></g><g id="g65"><text x="0" textLength="48" class="foreground">templa</text><text x="48" textLength="8" class="background"> </text><text x="56" textLength="40" class="foreground"> </text></g><g id="g66"><text x="0" textLength="56" class="foreground">templat</text><text x="56" textLength="8" class="background"> </text><text x="64" textLength="32" class="foreground"> </text></g><g id="g67"><text x="0" textLength="64" class="foreground">template</text><text x="64" textLength="8" class="background"> </text><text x="72" textLength="24" class="foreground"> </text></g><g id="g68"><text x="0" textLength="72" class="foreground">template.</text><text x="72" textLength="8" class="background"> </text><text x="80" textLength="16" class="foreground"> </text></g><g id="g69"><text x="0" textLength="80" class="foreground">template.e</text><text x="80" textLength="8" class="background"> </text><text x="88" textLength="8" class="foreground"> </text></g><g id="g70"><text x="0" textLength="88" class="foreground">template.er</text><text x="88" textLength="8" class="background"> </text></g><g id="g71"><text x="0" textLength="96" class="foreground">template.erb</text><text x="96" textLength="8" class="background"> </text></g><g id="g72"><text x="0" textLength="96" class="foreground">template.erb</text></g><g id="g73"><text x="0" textLength="8" class="background"> </text><text x="8" textLength="160" class="foreground"> </text></g><g id="g74"><text x="0" textLength="168" class="foreground">[*] Query: </text></g><g id="g75"><text x="0" textLength="8" class="foreground">S</text><text x="8" textLength="8" class="background"> </text><text x="16" textLength="80" class="foreground"> </text></g><g id="g76"><text x="0" textLength="16" class="foreground">Si</text><text x="16" textLength="8" class="background"> </text><text x="24" textLength="72" class="foreground"> </text></g><g id="g77"><text x="0" textLength="24" class="foreground">Sil</text><text x="24" textLength="8" class="background"> </text><text x="32" textLength="64" class="foreground"> </text></g><g id="g78"><text x="0" textLength="32" class="foreground">Sili</text><text x="32" textLength="8" class="background"> </text><text x="40" textLength="56" class="foreground"> </text></g><g id="g79"><text x="0" textLength="40" class="foreground">Silik</text><text x="40" textLength="8" class="background"> </text><text x="48" textLength="48" class="foreground"> </text></g><g id="g80"><text x="0" textLength="48" class="foreground">Siliko</text><text x="48" textLength="8" class="background"> </text><text x="56" textLength="40" class="foreground"> </text></g><g id="g81"><text x="0" textLength="56" class="foreground">Silikon</text><text x="56" textLength="8" class="background"> </text><text x="64" textLength="32" class="foreground"> </text></g><g id="g82"><text x="0" textLength="64" class="foreground">Silikond</text><text x="64" textLength="8" class="background"> </text><text x="72" textLength="24" class="foreground"> </text></g><g id="g83"><text x="0" textLength="72" class="foreground">Silikondi</text><text x="72" textLength="8" class="background"> </text><text x="80" textLength="16" class="foreground"> </text></g><g id="g84"><text x="0" textLength="80" class="foreground">Silikondil</text><text x="80" textLength="8" class="background"> </text><text x="88" textLength="8" class="foreground"> </text></g><g id="g85"><text x="0" textLength="88" class="foreground">Silikondild</text><text x="88" textLength="8" class="background"> </text></g><g id="g86"><text x="0" textLength="96" class="foreground">Silikondildo</text><text x="96" textLength="8" class="background"> </text></g><g id="g87"><text x="0" textLength="96" class="foreground">Silikondildo</text></g><g id="g88"><text x="0" textLength="8" class="background"> </text><text x="8" textLength="192" class="foreground"> </text></g><g id="g89"><text x="0" textLength="432" class="foreground">1. LQZYTY Anleitung 17,5 cm D-i &amp; l-d&#242;, starker Saugna</text></g><g id="g90"><text x="0" textLength="432" class="foreground">2. 7,28 Zoll Naturgetreue Texture D'i-DLO Hohl Gurt au</text></g><g id="g91"><text x="0" textLength="432" class="foreground">3. WYF's Realistisches Spielzeug f&#252;r Erwachsene Realis</text></g><g id="g92"><text x="0" textLength="432" class="foreground">4. 8,26 Zoll Silikon-&#270;&#238;`ld&#596;s' realistisch Saugnapf for</text></g><g id="g93"><text x="0" textLength="432" class="foreground">5. N / A 4,33 Zoll Schwarzer Silikon-&#270;&#238;`ld&#596;s 'realisti</text></g><g id="g94"><text x="0" textLength="432" class="foreground">6. LIYONG Sex 16,53 Zoll Realistische H&#228;nde frei Leist</text></g><g id="g95"><text x="0" textLength="432" class="foreground">7. Realistisches Spielzeug f&#252;r Erwachsene 7,8 Zoll Gro</text></g><g id="g96"><text x="0" textLength="8" class="background"> </text><text x="8" textLength="216" class="foreground"> </text></g><g id="g97"><text x="0" textLength="432" class="foreground">8. Realistisches Spielzeug f&#252;r Erwachsene Gro&#223;e Super </text></g><g id="g98"><text x="0" textLength="432" class="foreground">9. LIYONG Sex 8,7 Zoll Realistische Silikon-D&#238;ld&#596; Mit </text></g><g id="g99"><text x="0" textLength="440" class="foreground">10. LIYONG Sex 7,9 Zoll Lebensechte Massageger&#228;t Spielz</text></g><g id="g100"><text x="0" textLength="288" class="foreground">[*] Index of product: </text></g><g id="g101"><text x="0" textLength="8" class="foreground">2</text><text x="8" textLength="8" class="background"> </text><text x="16" textLength="8" class="foreground"> </text></g><g id="g102"><text x="0" textLength="24" class="foreground">2 </text></g><g id="g103"><text x="0" textLength="192" class="foreground">[*] Output destination: </text></g><g id="g104"><text x="0" textLength="8" class="background"> </text><text x="8" textLength="200" class="foreground"> </text></g><g id="g105"><text x="0" textLength="8" class="foreground">d</text><text x="8" textLength="8" class="background"> </text><text x="16" textLength="192" class="foreground"> </text></g><g id="g106"><text x="0" textLength="16" class="foreground">di</text><text x="16" textLength="8" class="background"> </text><text x="24" textLength="184" class="foreground"> </text></g><g id="g107"><text x="0" textLength="24" class="foreground">dil</text><text x="24" textLength="8" class="background"> </text><text x="32" textLength="176" class="foreground"> </text></g><g id="g108"><text x="0" textLength="32" class="foreground">dilo</text><text x="32" textLength="8" class="background"> </text><text x="40" textLength="168" class="foreground"> </text></g><g id="g109"><text x="0" textLength="32" class="foreground">dild</text><text x="32" textLength="8" class="background"> </text><text x="40" textLength="168" class="foreground"> </text></g><g id="g110"><text x="0" textLength="40" class="foreground">dildo</text><text x="40" textLength="8" class="background"> </text><text x="48" textLength="160" class="foreground"> </text></g><g id="g111"><text x="0" textLength="48" class="foreground">dildo.</text><text x="48" textLength="8" class="background"> </text><text x="56" textLength="152" class="foreground"> </text></g><g id="g112"><text x="0" textLength="56" class="foreground">dildo.m</text><text x="56" textLength="8" class="background"> </text><text x="64" textLength="144" class="foreground"> </text></g><g id="g113"><text x="0" textLength="64" class="foreground">dildo.md</text><text x="64" textLength="8" class="background"> </text><text x="72" textLength="136" class="foreground"> </text></g><g id="g114"><text x="0" textLength="208" class="foreground">dildo.md </text></g><g id="g115"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="48" class="foreground"> cat d</text><text x="376" textLength="8" class="background"> </text><text x="384" textLength="728" class="foreground"> </text></g><g id="g116"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="56" class="foreground"> cat di</text><text x="384" textLength="8" class="background"> </text><text x="392" textLength="720" class="foreground"> </text></g><g id="g117"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="64" class="foreground"> cat dil</text><text x="392" textLength="8" class="background"> </text><text x="400" textLength="712" class="foreground"> </text></g><g id="g118"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="72" class="foreground"> cat dilo</text><text x="400" textLength="8" class="background"> </text><text x="408" textLength="704" class="foreground"> </text></g><g id="g119"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="80" class="foreground"> cat dilod</text><text x="408" textLength="8" class="background"> </text><text x="416" textLength="696" class="foreground"> </text></g><g id="g120"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="80" class="foreground"> cat diloo</text><text x="408" textLength="8" class="background"> </text><text x="416" textLength="696" class="foreground"> </text></g><g id="g121"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="72" class="foreground"> cat dild</text><text x="400" textLength="8" class="background"> </text><text x="408" textLength="704" class="foreground"> </text></g><g id="g122"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="104" class="foreground"> cat dildo.md</text><text x="432" textLength="8" font-weight="bold" class="foreground"> </text><text x="440" textLength="8" class="background"> </text><text x="448" textLength="664" class="foreground"> </text></g><g id="g123"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="104" class="foreground"> cat dildo.md</text><text x="432" textLength="8" class="background"> </text><text x="440" textLength="672" class="foreground"> </text></g><g id="g124"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="784" class="foreground"> cat dildo.md </text></g><g id="g125"><text x="0" textLength="1112" class="foreground">title: "7,28 Zoll Naturgetreue Texture D'i-DLO Hohl Gurt auf Didlo for M&#228;nner Gurt auf Harneses for M&#228;nner M&#228;nner Realistische Strapless Sp</text></g><g id="g126"><text x="0" textLength="560" class="foreground">ielerisch Spielzeug Silikon-D&#238;ld&#596; Female Relax Massage for Frauen M&#228;n"</text></g><g id="g127"><text x="0" textLength="480" class="foreground">image: "https://m.media-amazon.com/images/I/315CTQV5uUL.jpg"</text></g><g id="g128"><text x="0" textLength="688" class="foreground">link: https://www.amazon.de/dp/B08F53S8P7?tag=kaffeemasch0c-21&amp;linkCode=osi&amp;th=1&amp;psc=1</text></g><g id="g129"><text x="0" textLength="96" class="foreground">preis: 36.46</text></g><g id="g130"><text x="0" textLength="184" class="foreground">categories: ['default']</text></g><g id="g131"><text x="0" textLength="248" class="foreground">date: 2020-08-14 19:06:13 +0200</text></g><g id="g132"><text x="0" textLength="24" font-weight="bold" class="color10">&#10140; </text><text x="24" textLength="184" font-weight="bold" class="color14">affiliates-jekyll-theme</text><text x="208" textLength="8" class="foreground"> </text><text x="216" textLength="40" font-weight="bold" class="color12">git:(</text><text x="256" textLength="48" font-weight="bold" class="color9">master</text><text x="304" textLength="16" font-weight="bold" class="color12">) </text><text x="320" textLength="8" font-weight="bold" class="color11">&#10007;</text><text x="328" textLength="784" class="foreground"> </text></g></defs><g id="screen_view"><g><rect x="0" y="0" width="8" height="17" class="foreground"/><use xlink:href="#g1" y="0"/></g><g><rect x="336" y="748" width="8" height="17" class="foreground"/><use xlink:href="#g2" y="748"/></g><g><rect x="336" y="1496" width="8" height="17" class="foreground"/><use xlink:href="#g2" y="1496"/></g><g><rect x="344" y="2244" width="8" height="17" class="foreground"/><use xlink:href="#g3" y="2244"/></g><g><rect x="352" y="2992" width="8" height="17" class="foreground"/><use xlink:href="#g4" y="2992"/></g><g><rect x="360" y="3740" width="8" height="17" class="foreground"/><use xlink:href="#g5" y="3740"/></g><g><rect x="368" y="4488" width="8" height="17" class="foreground"/><use xlink:href="#g6" y="4488"/></g><g><rect x="376" y="5236" width="8" height="17" class="foreground"/><use xlink:href="#g7" y="5236"/></g><g><rect x="384" y="5984" width="8" height="17" class="foreground"/><use xlink:href="#g8" y="5984"/></g><g><rect x="392" y="6732" width="8" height="17" class="foreground"/><use xlink:href="#g9" y="6732"/></g><g><rect x="400" y="7480" width="8" height="17" class="foreground"/><use xlink:href="#g10" y="7480"/></g><g><rect x="408" y="8228" width="8" height="17" class="foreground"/><use xlink:href="#g11" y="8228"/></g><g><rect x="416" y="8976" width="8" height="17" class="foreground"/><use xlink:href="#g12" y="8976"/></g><g><rect x="424" y="9724" width="8" height="17" class="foreground"/><use xlink:href="#g13" y="9724"/></g><g><rect x="432" y="10472" width="8" height="17" class="foreground"/><use xlink:href="#g14" y="10472"/></g><g><rect x="472" y="11220" width="8" height="17" class="foreground"/><use xlink:href="#g15" y="11220"/></g><g><rect x="464" y="11968" width="8" height="17" class="foreground"/><use xlink:href="#g16" y="11968"/></g><g><use xlink:href="#g17" y="12716"/><rect x="0" y="12733" width="8" height="17" class="foreground"/><use xlink:href="#g18" y="12733"/></g><g><use xlink:href="#g17" y="13464"/><rect x="0" y="13481" width="8" height="17" class="foreground"/><use xlink:href="#g18" y="13481"/></g><g><use xlink:href="#g17" y="14212"/><use xlink:href="#g19" y="14229"/><use xlink:href="#g20" y="14246"/><use xlink:href="#g21" y="14263"/><use xlink:href="#g22" y="14280"/><use xlink:href="#g23" y="14297"/><use xlink:href="#g24" y="14314"/><use xlink:href="#g25" y="14331"/><use xlink:href="#g26" y="14348"/><use xlink:href="#g27" y="14365"/><use xlink:href="#g28" y="14382"/><use xlink:href="#g29" y="14399"/><use xlink:href="#g30" y="14416"/><use xlink:href="#g31" y="14433"/><use xlink:href="#g32" y="14450"/><use xlink:href="#g33" y="14467"/><use xlink:href="#g19" y="14484"/><use xlink:href="#g34" y="14518"/><rect x="0" y="14535" width="8" height="17" class="foreground"/><use xlink:href="#g18" y="14535"/></g><g><use xlink:href="#g17" y="14960"/><use xlink:href="#g19" y="14977"/><use xlink:href="#g20" y="14994"/><use xlink:href="#g21" y="15011"/><use xlink:href="#g22" y="15028"/><use xlink:href="#g23" y="15045"/><use xlink:href="#g24" y="15062"/><use xlink:href="#g25" y="15079"/><use xlink:href="#g26" y="15096"/><use xlink:href="#g27" y="15113"/><use xlink:href="#g28" y="15130"/><use xlink:href="#g29" y="15147"/><use xlink:href="#g30" y="15164"/><use xlink:href="#g31" y="15181"/><use xlink:href="#g32" y="15198"/><use xlink:href="#g33" y="15215"/><use xlink:href="#g19" y="15232"/><use xlink:href="#g34" y="15266"/><rect x="0" y="15283" width="8" height="17" class="foreground"/><use xlink:href="#g1" y="15283"/></g><g><use xlink:href="#g17" y="15708"/><use xlink:href="#g19" y="15725"/><use xlink:href="#g20" y="15742"/><use xlink:href="#g21" y="15759"/><use xlink:href="#g22" y="15776"/><use xlink:href="#g23" y="15793"/><use xlink:href="#g24" y="15810"/><use xlink:href="#g25" y="15827"/><use xlink:href="#g26" y="15844"/><use xlink:href="#g27" y="15861"/><use xlink:href="#g28" y="15878"/><use xlink:href="#g29" y="15895"/><use xlink:href="#g30" y="15912"/><use xlink:href="#g31" y="15929"/><use xlink:href="#g32" y="15946"/><use xlink:href="#g33" y="15963"/><use xlink:href="#g19" y="15980"/><use xlink:href="#g34" y="16014"/><rect x="336" y="16031" width="8" height="17" class="foreground"/><use xlink:href="#g2" y="16031"/></g><g><use xlink:href="#g17" y="16456"/><use xlink:href="#g19" y="16473"/><use xlink:href="#g20" y="16490"/><use xlink:href="#g21" y="16507"/><use xlink:href="#g22" y="16524"/><use xlink:href="#g23" y="16541"/><use xlink:href="#g24" y="16558"/><use xlink:href="#g25" y="16575"/><use xlink:href="#g26" y="16592"/><use xlink:href="#g27" y="16609"/><use xlink:href="#g28" y="16626"/><use xlink:href="#g29" y="16643"/><use xlink:href="#g30" y="16660"/><use xlink:href="#g31" y="16677"/><use xlink:href="#g32" y="16694"/><use xlink:href="#g33" y="16711"/><use xlink:href="#g19" y="16728"/><use xlink:href="#g34" y="16762"/><rect x="336" y="16779" width="8" height="17" class="foreground"/><use xlink:href="#g2" y="16779"/></g><g><rect x="336" y="17204" width="8" height="17" class="foreground"/><use xlink:href="#g2" y="17204"/><use xlink:href="#g35" y="17221"/><use xlink:href="#g36" y="17238"/><use xlink:href="#g37" y="17255"/><use xlink:href="#g36" y="17272"/><use xlink:href="#g38" y="17289"/><use xlink:href="#g39" y="17306"/><use xlink:href="#g38" y="17323"/><use xlink:href="#g40" y="17340"/><use xlink:href="#g36" y="17357"/><use xlink:href="#g41" y="17374"/><use xlink:href="#g42" y="17391"/><use xlink:href="#g43" y="17408"/><use xlink:href="#g44" y="17425"/><use xlink:href="#g45" y="17442"/><use xlink:href="#g46" y="17459"/><use xlink:href="#g35" y="17476"/><use xlink:href="#g47" y="17510"/><use xlink:href="#g48" y="17527"/></g><g><rect x="344" y="17952" width="8" height="17" class="foreground"/><use xlink:href="#g49" y="17952"/><use xlink:href="#g35" y="17969"/><use xlink:href="#g36" y="17986"/><use xlink:href="#g37" y="18003"/><use xlink:href="#g36" y="18020"/><use xlink:href="#g38" y="18037"/><use xlink:href="#g39" y="18054"/><use xlink:href="#g38" y="18071"/><use xlink:href="#g40" y="18088"/><use xlink:href="#g36" y="18105"/><use xlink:href="#g41" y="18122"/><use xlink:href="#g42" y="18139"/><use xlink:href="#g43" y="18156"/><use xlink:href="#g44" y="18173"/><use xlink:href="#g45" y="18190"/><use xlink:href="#g46" y="18207"/><use xlink:href="#g35" y="18224"/><use xlink:href="#g47" y="18258"/><use xlink:href="#g48" y="18275"/></g><g><rect x="352" y="18700" width="8" height="17" class="foreground"/><use xlink:href="#g50" y="18700"/><use xlink:href="#g35" y="18717"/><use xlink:href="#g36" y="18734"/><use xlink:href="#g37" y="18751"/><use xlink:href="#g36" y="18768"/><use xlink:href="#g38" y="18785"/><use xlink:href="#g39" y="18802"/><use xlink:href="#g38" y="18819"/><use xlink:href="#g40" y="18836"/><use xlink:href="#g36" y="18853"/><use xlink:href="#g41" y="18870"/><use xlink:href="#g42" y="18887"/><use xlink:href="#g43" y="18904"/><use xlink:href="#g44" y="18921"/><use xlink:href="#g45" y="18938"/><use xlink:href="#g46" y="18955"/><use xlink:href="#g35" y="18972"/><use xlink:href="#g47" y="19006"/><use xlink:href="#g48" y="19023"/></g><g><rect x="360" y="19448" width="8" height="17" class="foreground"/><use xlink:href="#g51" y="19448"/><use xlink:href="#g35" y="19465"/><use xlink:href="#g36" y="19482"/><use xlink:href="#g37" y="19499"/><use xlink:href="#g36" y="19516"/><use xlink:href="#g38" y="19533"/><use xlink:href="#g39" y="19550"/><use xlink:href="#g38" y="19567"/><use xlink:href="#g40" y="19584"/><use xlink:href="#g36" y="19601"/><use xlink:href="#g41" y="19618"/><use xlink:href="#g42" y="19635"/><use xlink:href="#g43" y="19652"/><use xlink:href="#g44" y="19669"/><use xlink:href="#g45" y="19686"/><use xlink:href="#g46" y="19703"/><use xlink:href="#g35" y="19720"/><use xlink:href="#g47" y="19754"/><use xlink:href="#g48" y="19771"/></g><g><rect x="368" y="20196" width="8" height="17" class="foreground"/><use xlink:href="#g52" y="20196"/><use xlink:href="#g35" y="20213"/><use xlink:href="#g36" y="20230"/><use xlink:href="#g37" y="20247"/><use xlink:href="#g36" y="20264"/><use xlink:href="#g38" y="20281"/><use xlink:href="#g39" y="20298"/><use xlink:href="#g38" y="20315"/><use xlink:href="#g40" y="20332"/><use xlink:href="#g36" y="20349"/><use xlink:href="#g41" y="20366"/><use xlink:href="#g42" y="20383"/><use xlink:href="#g43" y="20400"/><use xlink:href="#g44" y="20417"/><use xlink:href="#g45" y="20434"/><use xlink:href="#g46" y="20451"/><use xlink:href="#g35" y="20468"/><use xlink:href="#g47" y="20502"/><use xlink:href="#g48" y="20519"/></g><g><rect x="376" y="20944" width="8" height="17" class="foreground"/><use xlink:href="#g53" y="20944"/><use xlink:href="#g35" y="20961"/><use xlink:href="#g36" y="20978"/><use xlink:href="#g37" y="20995"/><use xlink:href="#g36" y="21012"/><use xlink:href="#g38" y="21029"/><use xlink:href="#g39" y="21046"/><use xlink:href="#g38" y="21063"/><use xlink:href="#g40" y="21080"/><use xlink:href="#g36" y="21097"/><use xlink:href="#g41" y="21114"/><use xlink:href="#g42" y="21131"/><use xlink:href="#g43" y="21148"/><use xlink:href="#g44" y="21165"/><use xlink:href="#g45" y="21182"/><use xlink:href="#g46" y="21199"/><use xlink:href="#g35" y="21216"/><use xlink:href="#g47" y="21250"/><use xlink:href="#g48" y="21267"/></g><g><rect x="384" y="21692" width="8" height="17" class="foreground"/><use xlink:href="#g54" y="21692"/><use xlink:href="#g35" y="21709"/><use xlink:href="#g36" y="21726"/><use xlink:href="#g37" y="21743"/><use xlink:href="#g36" y="21760"/><use xlink:href="#g38" y="21777"/><use xlink:href="#g39" y="21794"/><use xlink:href="#g38" y="21811"/><use xlink:href="#g40" y="21828"/><use xlink:href="#g36" y="21845"/><use xlink:href="#g41" y="21862"/><use xlink:href="#g42" y="21879"/><use xlink:href="#g43" y="21896"/><use xlink:href="#g44" y="21913"/><use xlink:href="#g45" y="21930"/><use xlink:href="#g46" y="21947"/><use xlink:href="#g35" y="21964"/><use xlink:href="#g47" y="21998"/><use xlink:href="#g48" y="22015"/></g><g><rect x="392" y="22440" width="8" height="17" class="foreground"/><use xlink:href="#g55" y="22440"/><use xlink:href="#g35" y="22457"/><use xlink:href="#g36" y="22474"/><use xlink:href="#g37" y="22491"/><use xlink:href="#g36" y="22508"/><use xlink:href="#g38" y="22525"/><use xlink:href="#g39" y="22542"/><use xlink:href="#g38" y="22559"/><use xlink:href="#g40" y="22576"/><use xlink:href="#g36" y="22593"/><use xlink:href="#g41" y="22610"/><use xlink:href="#g42" y="22627"/><use xlink:href="#g43" y="22644"/><use xlink:href="#g44" y="22661"/><use xlink:href="#g45" y="22678"/><use xlink:href="#g46" y="22695"/><use xlink:href="#g35" y="22712"/><use xlink:href="#g47" y="22746"/><use xlink:href="#g48" y="22763"/></g><g><rect x="392" y="23188" width="8" height="17" class="foreground"/><use xlink:href="#g55" y="23188"/><use xlink:href="#g35" y="23205"/><use xlink:href="#g36" y="23222"/><use xlink:href="#g37" y="23239"/><use xlink:href="#g36" y="23256"/><use xlink:href="#g38" y="23273"/><use xlink:href="#g39" y="23290"/><use xlink:href="#g38" y="23307"/><use xlink:href="#g40" y="23324"/><use xlink:href="#g36" y="23341"/><use xlink:href="#g41" y="23358"/><use xlink:href="#g42" y="23375"/><use xlink:href="#g43" y="23392"/><use xlink:href="#g44" y="23409"/><use xlink:href="#g45" y="23426"/><use xlink:href="#g46" y="23443"/><use xlink:href="#g35" y="23460"/><use xlink:href="#g47" y="23494"/><use xlink:href="#g48" y="23511"/></g><g><use xlink:href="#g56" y="23936"/><rect x="0" y="23953" width="8" height="17" class="foreground"/><use xlink:href="#g57" y="23953"/><use xlink:href="#g36" y="23970"/><use xlink:href="#g37" y="23987"/><use xlink:href="#g36" y="24004"/><use xlink:href="#g38" y="24021"/><use xlink:href="#g39" y="24038"/><use xlink:href="#g38" y="24055"/><use xlink:href="#g40" y="24072"/><use xlink:href="#g36" y="24089"/><use xlink:href="#g41" y="24106"/><use xlink:href="#g42" y="24123"/><use xlink:href="#g43" y="24140"/><use xlink:href="#g44" y="24157"/><use xlink:href="#g45" y="24174"/><use xlink:href="#g46" y="24191"/><use xlink:href="#g35" y="24208"/><use xlink:href="#g47" y="24242"/><use xlink:href="#g48" y="24259"/></g><g><use xlink:href="#g56" y="24684"/><use xlink:href="#g58" y="24701"/><rect x="0" y="24718" width="8" height="17" class="foreground"/><use xlink:href="#g59" y="24718"/><use xlink:href="#g37" y="24735"/><use xlink:href="#g36" y="24752"/><use xlink:href="#g38" y="24769"/><use xlink:href="#g39" y="24786"/><use xlink:href="#g38" y="24803"/><use xlink:href="#g40" y="24820"/><use xlink:href="#g36" y="24837"/><use xlink:href="#g41" y="24854"/><use xlink:href="#g42" y="24871"/><use xlink:href="#g43" y="24888"/><use xlink:href="#g44" y="24905"/><use xlink:href="#g45" y="24922"/><use xlink:href="#g46" y="24939"/><use xlink:href="#g35" y="24956"/><use xlink:href="#g47" y="24990"/><use xlink:href="#g48" y="25007"/></g><g><use xlink:href="#g56" y="25432"/><use xlink:href="#g58" y="25449"/><rect x="8" y="25466" width="8" height="17" class="foreground"/><use xlink:href="#g60" y="25466"/><use xlink:href="#g37" y="25483"/><use xlink:href="#g36" y="25500"/><use xlink:href="#g38" y="25517"/><use xlink:href="#g39" y="25534"/><use xlink:href="#g38" y="25551"/><use xlink:href="#g40" y="25568"/><use xlink:href="#g36" y="25585"/><use xlink:href="#g41" y="25602"/><use xlink:href="#g42" y="25619"/><use xlink:href="#g43" y="25636"/><use xlink:href="#g44" y="25653"/><use xlink:href="#g45" y="25670"/><use xlink:href="#g46" y="25687"/><use xlink:href="#g35" y="25704"/><use xlink:href="#g47" y="25738"/><use xlink:href="#g48" y="25755"/></g><g><use xlink:href="#g56" y="26180"/><use xlink:href="#g58" y="26197"/><rect x="16" y="26214" width="8" height="17" class="foreground"/><use xlink:href="#g61" y="26214"/><use xlink:href="#g37" y="26231"/><use xlink:href="#g36" y="26248"/><use xlink:href="#g38" y="26265"/><use xlink:href="#g39" y="26282"/><use xlink:href="#g38" y="26299"/><use xlink:href="#g40" y="26316"/><use xlink:href="#g36" y="26333"/><use xlink:href="#g41" y="26350"/><use xlink:href="#g42" y="26367"/><use xlink:href="#g43" y="26384"/><use xlink:href="#g44" y="26401"/><use xlink:href="#g45" y="26418"/><use xlink:href="#g46" y="26435"/><use xlink:href="#g35" y="26452"/><use xlink:href="#g47" y="26486"/><use xlink:href="#g48" y="26503"/></g><g><use xlink:href="#g56" y="26928"/><use xlink:href="#g58" y="26945"/><rect x="24" y="26962" width="8" height="17" class="foreground"/><use xlink:href="#g62" y="26962"/><use xlink:href="#g37" y="26979"/><use xlink:href="#g36" y="26996"/><use xlink:href="#g38" y="27013"/><use xlink:href="#g39" y="27030"/><use xlink:href="#g38" y="27047"/><use xlink:href="#g40" y="27064"/><use xlink:href="#g36" y="27081"/><use xlink:href="#g41" y="27098"/><use xlink:href="#g42" y="27115"/><use xlink:href="#g43" y="27132"/><use xlink:href="#g44" y="27149"/><use xlink:href="#g45" y="27166"/><use xlink:href="#g46" y="27183"/><use xlink:href="#g35" y="27200"/><use xlink:href="#g47" y="27234"/><use xlink:href="#g48" y="27251"/></g><g><use xlink:href="#g56" y="27676"/><use xlink:href="#g58" y="27693"/><rect x="32" y="27710" width="8" height="17" class="foreground"/><use xlink:href="#g63" y="27710"/><use xlink:href="#g37" y="27727"/><use xlink:href="#g36" y="27744"/><use xlink:href="#g38" y="27761"/><use xlink:href="#g39" y="27778"/><use xlink:href="#g38" y="27795"/><use xlink:href="#g40" y="27812"/><use xlink:href="#g36" y="27829"/><use xlink:href="#g41" y="27846"/><use xlink:href="#g42" y="27863"/><use xlink:href="#g43" y="27880"/><use xlink:href="#g44" y="27897"/><use xlink:href="#g45" y="27914"/><use xlink:href="#g46" y="27931"/><use xlink:href="#g35" y="27948"/><use xlink:href="#g47" y="27982"/><use xlink:href="#g48" y="27999"/></g><g><use xlink:href="#g56" y="28424"/><use xlink:href="#g58" y="28441"/><rect x="40" y="28458" width="8" height="17" class="foreground"/><use xlink:href="#g64" y="28458"/><use xlink:href="#g37" y="28475"/><use xlink:href="#g36" y="28492"/><use xlink:href="#g38" y="28509"/><use xlink:href="#g39" y="28526"/><use xlink:href="#g38" y="28543"/><use xlink:href="#g40" y="28560"/><use xlink:href="#g36" y="28577"/><use xlink:href="#g41" y="28594"/><use xlink:href="#g42" y="28611"/><use xlink:href="#g43" y="28628"/><use xlink:href="#g44" y="28645"/><use xlink:href="#g45" y="28662"/><use xlink:href="#g46" y="28679"/><use xlink:href="#g35" y="28696"/><use xlink:href="#g47" y="28730"/><use xlink:href="#g48" y="28747"/></g><g><use xlink:href="#g56" y="29172"/><use xlink:href="#g58" y="29189"/><rect x="48" y="29206" width="8" height="17" class="foreground"/><use xlink:href="#g65" y="29206"/><use xlink:href="#g37" y="29223"/><use xlink:href="#g36" y="29240"/><use xlink:href="#g38" y="29257"/><use xlink:href="#g39" y="29274"/><use xlink:href="#g38" y="29291"/><use xlink:href="#g40" y="29308"/><use xlink:href="#g36" y="29325"/><use xlink:href="#g41" y="29342"/><use xlink:href="#g42" y="29359"/><use xlink:href="#g43" y="29376"/><use xlink:href="#g44" y="29393"/><use xlink:href="#g45" y="29410"/><use xlink:href="#g46" y="29427"/><use xlink:href="#g35" y="29444"/><use xlink:href="#g47" y="29478"/><use xlink:href="#g48" y="29495"/></g><g><use xlink:href="#g56" y="29920"/><use xlink:href="#g58" y="29937"/><rect x="56" y="29954" width="8" height="17" class="foreground"/><use xlink:href="#g66" y="29954"/><use xlink:href="#g37" y="29971"/><use xlink:href="#g36" y="29988"/><use xlink:href="#g38" y="30005"/><use xlink:href="#g39" y="30022"/><use xlink:href="#g38" y="30039"/><use xlink:href="#g40" y="30056"/><use xlink:href="#g36" y="30073"/><use xlink:href="#g41" y="30090"/><use xlink:href="#g42" y="30107"/><use xlink:href="#g43" y="30124"/><use xlink:href="#g44" y="30141"/><use xlink:href="#g45" y="30158"/><use xlink:href="#g46" y="30175"/><use xlink:href="#g35" y="30192"/><use xlink:href="#g47" y="30226"/><use xlink:href="#g48" y="30243"/></g><g><use xlink:href="#g56" y="30668"/><use xlink:href="#g58" y="30685"/><rect x="64" y="30702" width="8" height="17" class="foreground"/><use xlink:href="#g67" y="30702"/><use xlink:href="#g37" y="30719"/><use xlink:href="#g36" y="30736"/><use xlink:href="#g38" y="30753"/><use xlink:href="#g39" y="30770"/><use xlink:href="#g38" y="30787"/><use xlink:href="#g40" y="30804"/><use xlink:href="#g36" y="30821"/><use xlink:href="#g41" y="30838"/><use xlink:href="#g42" y="30855"/><use xlink:href="#g43" y="30872"/><use xlink:href="#g44" y="30889"/><use xlink:href="#g45" y="30906"/><use xlink:href="#g46" y="30923"/><use xlink:href="#g35" y="30940"/><use xlink:href="#g47" y="30974"/><use xlink:href="#g48" y="30991"/></g><g><use xlink:href="#g56" y="31416"/><use xlink:href="#g58" y="31433"/><rect x="72" y="31450" width="8" height="17" class="foreground"/><use xlink:href="#g68" y="31450"/><use xlink:href="#g37" y="31467"/><use xlink:href="#g36" y="31484"/><use xlink:href="#g38" y="31501"/><use xlink:href="#g39" y="31518"/><use xlink:href="#g38" y="31535"/><use xlink:href="#g40" y="31552"/><use xlink:href="#g36" y="31569"/><use xlink:href="#g41" y="31586"/><use xlink:href="#g42" y="31603"/><use xlink:href="#g43" y="31620"/><use xlink:href="#g44" y="31637"/><use xlink:href="#g45" y="31654"/><use xlink:href="#g46" y="31671"/><use xlink:href="#g35" y="31688"/><use xlink:href="#g47" y="31722"/><use xlink:href="#g48" y="31739"/></g><g><use xlink:href="#g56" y="32164"/><use xlink:href="#g58" y="32181"/><rect x="80" y="32198" width="8" height="17" class="foreground"/><use xlink:href="#g69" y="32198"/><use xlink:href="#g37" y="32215"/><use xlink:href="#g36" y="32232"/><use xlink:href="#g38" y="32249"/><use xlink:href="#g39" y="32266"/><use xlink:href="#g38" y="32283"/><use xlink:href="#g40" y="32300"/><use xlink:href="#g36" y="32317"/><use xlink:href="#g41" y="32334"/><use xlink:href="#g42" y="32351"/><use xlink:href="#g43" y="32368"/><use xlink:href="#g44" y="32385"/><use xlink:href="#g45" y="32402"/><use xlink:href="#g46" y="32419"/><use xlink:href="#g35" y="32436"/><use xlink:href="#g47" y="32470"/><use xlink:href="#g48" y="32487"/></g><g><use xlink:href="#g56" y="32912"/><use xlink:href="#g58" y="32929"/><rect x="88" y="32946" width="8" height="17" class="foreground"/><use xlink:href="#g70" y="32946"/><use xlink:href="#g37" y="32963"/><use xlink:href="#g36" y="32980"/><use xlink:href="#g38" y="32997"/><use xlink:href="#g39" y="33014"/><use xlink:href="#g38" y="33031"/><use xlink:href="#g40" y="33048"/><use xlink:href="#g36" y="33065"/><use xlink:href="#g41" y="33082"/><use xlink:href="#g42" y="33099"/><use xlink:href="#g43" y="33116"/><use xlink:href="#g44" y="33133"/><use xlink:href="#g45" y="33150"/><use xlink:href="#g46" y="33167"/><use xlink:href="#g35" y="33184"/><use xlink:href="#g47" y="33218"/><use xlink:href="#g48" y="33235"/></g><g><use xlink:href="#g56" y="33660"/><use xlink:href="#g58" y="33677"/><rect x="96" y="33694" width="8" height="17" class="foreground"/><use xlink:href="#g71" y="33694"/><use xlink:href="#g37" y="33711"/><use xlink:href="#g36" y="33728"/><use xlink:href="#g38" y="33745"/><use xlink:href="#g39" y="33762"/><use xlink:href="#g38" y="33779"/><use xlink:href="#g40" y="33796"/><use xlink:href="#g36" y="33813"/><use xlink:href="#g41" y="33830"/><use xlink:href="#g42" y="33847"/><use xlink:href="#g43" y="33864"/><use xlink:href="#g44" y="33881"/><use xlink:href="#g45" y="33898"/><use xlink:href="#g46" y="33915"/><use xlink:href="#g35" y="33932"/><use xlink:href="#g47" y="33966"/><use xlink:href="#g48" y="33983"/></g><g><use xlink:href="#g56" y="34408"/><use xlink:href="#g58" y="34425"/><use xlink:href="#g72" y="34442"/><rect x="0" y="34459" width="8" height="17" class="foreground"/><use xlink:href="#g73" y="34459"/><use xlink:href="#g36" y="34476"/><use xlink:href="#g38" y="34493"/><use xlink:href="#g39" y="34510"/><use xlink:href="#g38" y="34527"/><use xlink:href="#g40" y="34544"/><use xlink:href="#g36" y="34561"/><use xlink:href="#g41" y="34578"/><use xlink:href="#g42" y="34595"/><use xlink:href="#g43" y="34612"/><use xlink:href="#g44" y="34629"/><use xlink:href="#g45" y="34646"/><use xlink:href="#g46" y="34663"/><use xlink:href="#g35" y="34680"/><use xlink:href="#g47" y="34714"/><use xlink:href="#g48" y="34731"/></g><g><use xlink:href="#g56" y="35156"/><use xlink:href="#g58" y="35173"/><use xlink:href="#g72" y="35190"/><use xlink:href="#g74" y="35207"/><rect x="0" y="35224" width="8" height="17" class="foreground"/><use xlink:href="#g59" y="35224"/><use xlink:href="#g38" y="35241"/><use xlink:href="#g39" y="35258"/><use xlink:href="#g38" y="35275"/><use xlink:href="#g40" y="35292"/><use xlink:href="#g36" y="35309"/><use xlink:href="#g41" y="35326"/><use xlink:href="#g42" y="35343"/><use xlink:href="#g43" y="35360"/><use xlink:href="#g44" y="35377"/><use xlink:href="#g45" y="35394"/><use xlink:href="#g46" y="35411"/><use xlink:href="#g35" y="35428"/><use xlink:href="#g47" y="35462"/><use xlink:href="#g48" y="35479"/></g><g><use xlink:href="#g56" y="35904"/><use xlink:href="#g58" y="35921"/><use xlink:href="#g72" y="35938"/><use xlink:href="#g74" y="35955"/><rect x="8" y="35972" width="8" height="17" class="foreground"/><use xlink:href="#g75" y="35972"/><use xlink:href="#g38" y="35989"/><use xlink:href="#g39" y="36006"/><use xlink:href="#g38" y="36023"/><use xlink:href="#g40" y="36040"/><use xlink:href="#g36" y="36057"/><use xlink:href="#g41" y="36074"/><use xlink:href="#g42" y="36091"/><use xlink:href="#g43" y="36108"/><use xlink:href="#g44" y="36125"/><use xlink:href="#g45" y="36142"/><use xlink:href="#g46" y="36159"/><use xlink:href="#g35" y="36176"/><use xlink:href="#g47" y="36210"/><use xlink:href="#g48" y="36227"/></g><g><use xlink:href="#g56" y="36652"/><use xlink:href="#g58" y="36669"/><use xlink:href="#g72" y="36686"/><use xlink:href="#g74" y="36703"/><rect x="16" y="36720" width="8" height="17" class="foreground"/><use xlink:href="#g76" y="36720"/><use xlink:href="#g38" y="36737"/><use xlink:href="#g39" y="36754"/><use xlink:href="#g38" y="36771"/><use xlink:href="#g40" y="36788"/><use xlink:href="#g36" y="36805"/><use xlink:href="#g41" y="36822"/><use xlink:href="#g42" y="36839"/><use xlink:href="#g43" y="36856"/><use xlink:href="#g44" y="36873"/><use xlink:href="#g45" y="36890"/><use xlink:href="#g46" y="36907"/><use xlink:href="#g35" y="36924"/><use xlink:href="#g47" y="36958"/><use xlink:href="#g48" y="36975"/></g><g><use xlink:href="#g56" y="37400"/><use xlink:href="#g58" y="37417"/><use xlink:href="#g72" y="37434"/><use xlink:href="#g74" y="37451"/><rect x="24" y="37468" width="8" height="17" class="foreground"/><use xlink:href="#g77" y="37468"/><use xlink:href="#g38" y="37485"/><use xlink:href="#g39" y="37502"/><use xlink:href="#g38" y="37519"/><use xlink:href="#g40" y="37536"/><use xlink:href="#g36" y="37553"/><use xlink:href="#g41" y="37570"/><use xlink:href="#g42" y="37587"/><use xlink:href="#g43" y="37604"/><use xlink:href="#g44" y="37621"/><use xlink:href="#g45" y="37638"/><use xlink:href="#g46" y="37655"/><use xlink:href="#g35" y="37672"/><use xlink:href="#g47" y="37706"/><use xlink:href="#g48" y="37723"/></g><g><use xlink:href="#g56" y="38148"/><use xlink:href="#g58" y="38165"/><use xlink:href="#g72" y="38182"/><use xlink:href="#g74" y="38199"/><rect x="32" y="38216" width="8" height="17" class="foreground"/><use xlink:href="#g78" y="38216"/><use xlink:href="#g38" y="38233"/><use xlink:href="#g39" y="38250"/><use xlink:href="#g38" y="38267"/><use xlink:href="#g40" y="38284"/><use xlink:href="#g36" y="38301"/><use xlink:href="#g41" y="38318"/><use xlink:href="#g42" y="38335"/><use xlink:href="#g43" y="38352"/><use xlink:href="#g44" y="38369"/><use xlink:href="#g45" y="38386"/><use xlink:href="#g46" y="38403"/><use xlink:href="#g35" y="38420"/><use xlink:href="#g47" y="38454"/><use xlink:href="#g48" y="38471"/></g><g><use xlink:href="#g56" y="38896"/><use xlink:href="#g58" y="38913"/><use xlink:href="#g72" y="38930"/><use xlink:href="#g74" y="38947"/><rect x="40" y="38964" width="8" height="17" class="foreground"/><use xlink:href="#g79" y="38964"/><use xlink:href="#g38" y="38981"/><use xlink:href="#g39" y="38998"/><use xlink:href="#g38" y="39015"/><use xlink:href="#g40" y="39032"/><use xlink:href="#g36" y="39049"/><use xlink:href="#g41" y="39066"/><use xlink:href="#g42" y="39083"/><use xlink:href="#g43" y="39100"/><use xlink:href="#g44" y="39117"/><use xlink:href="#g45" y="39134"/><use xlink:href="#g46" y="39151"/><use xlink:href="#g35" y="39168"/><use xlink:href="#g47" y="39202"/><use xlink:href="#g48" y="39219"/></g><g><use xlink:href="#g56" y="39644"/><use xlink:href="#g58" y="39661"/><use xlink:href="#g72" y="39678"/><use xlink:href="#g74" y="39695"/><rect x="48" y="39712" width="8" height="17" class="foreground"/><use xlink:href="#g80" y="39712"/><use xlink:href="#g38" y="39729"/><use xlink:href="#g39" y="39746"/><use xlink:href="#g38" y="39763"/><use xlink:href="#g40" y="39780"/><use xlink:href="#g36" y="39797"/><use xlink:href="#g41" y="39814"/><use xlink:href="#g42" y="39831"/><use xlink:href="#g43" y="39848"/><use xlink:href="#g44" y="39865"/><use xlink:href="#g45" y="39882"/><use xlink:href="#g46" y="39899"/><use xlink:href="#g35" y="39916"/><use xlink:href="#g47" y="39950"/><use xlink:href="#g48" y="39967"/></g><g><use xlink:href="#g56" y="40392"/><use xlink:href="#g58" y="40409"/><use xlink:href="#g72" y="40426"/><use xlink:href="#g74" y="40443"/><rect x="56" y="40460" width="8" height="17" class="foreground"/><use xlink:href="#g81" y="40460"/><use xlink:href="#g38" y="40477"/><use xlink:href="#g39" y="40494"/><use xlink:href="#g38" y="40511"/><use xlink:href="#g40" y="40528"/><use xlink:href="#g36" y="40545"/><use xlink:href="#g41" y="40562"/><use xlink:href="#g42" y="40579"/><use xlink:href="#g43" y="40596"/><use xlink:href="#g44" y="40613"/><use xlink:href="#g45" y="40630"/><use xlink:href="#g46" y="40647"/><use xlink:href="#g35" y="40664"/><use xlink:href="#g47" y="40698"/><use xlink:href="#g48" y="40715"/></g><g><use xlink:href="#g56" y="41140"/><use xlink:href="#g58" y="41157"/><use xlink:href="#g72" y="41174"/><use xlink:href="#g74" y="41191"/><rect x="64" y="41208" width="8" height="17" class="foreground"/><use xlink:href="#g82" y="41208"/><use xlink:href="#g38" y="41225"/><use xlink:href="#g39" y="41242"/><use xlink:href="#g38" y="41259"/><use xlink:href="#g40" y="41276"/><use xlink:href="#g36" y="41293"/><use xlink:href="#g41" y="41310"/><use xlink:href="#g42" y="41327"/><use xlink:href="#g43" y="41344"/><use xlink:href="#g44" y="41361"/><use xlink:href="#g45" y="41378"/><use xlink:href="#g46" y="41395"/><use xlink:href="#g35" y="41412"/><use xlink:href="#g47" y="41446"/><use xlink:href="#g48" y="41463"/></g><g><use xlink:href="#g56" y="41888"/><use xlink:href="#g58" y="41905"/><use xlink:href="#g72" y="41922"/><use xlink:href="#g74" y="41939"/><rect x="72" y="41956" width="8" height="17" class="foreground"/><use xlink:href="#g83" y="41956"/><use xlink:href="#g38" y="41973"/><use xlink:href="#g39" y="41990"/><use xlink:href="#g38" y="42007"/><use xlink:href="#g40" y="42024"/><use xlink:href="#g36" y="42041"/><use xlink:href="#g41" y="42058"/><use xlink:href="#g42" y="42075"/><use xlink:href="#g43" y="42092"/><use xlink:href="#g44" y="42109"/><use xlink:href="#g45" y="42126"/><use xlink:href="#g46" y="42143"/><use xlink:href="#g35" y="42160"/><use xlink:href="#g47" y="42194"/><use xlink:href="#g48" y="42211"/></g><g><use xlink:href="#g56" y="42636"/><use xlink:href="#g58" y="42653"/><use xlink:href="#g72" y="42670"/><use xlink:href="#g74" y="42687"/><rect x="80" y="42704" width="8" height="17" class="foreground"/><use xlink:href="#g84" y="42704"/><use xlink:href="#g38" y="42721"/><use xlink:href="#g39" y="42738"/><use xlink:href="#g38" y="42755"/><use xlink:href="#g40" y="42772"/><use xlink:href="#g36" y="42789"/><use xlink:href="#g41" y="42806"/><use xlink:href="#g42" y="42823"/><use xlink:href="#g43" y="42840"/><use xlink:href="#g44" y="42857"/><use xlink:href="#g45" y="42874"/><use xlink:href="#g46" y="42891"/><use xlink:href="#g35" y="42908"/><use xlink:href="#g47" y="42942"/><use xlink:href="#g48" y="42959"/></g><g><use xlink:href="#g56" y="43384"/><use xlink:href="#g58" y="43401"/><use xlink:href="#g72" y="43418"/><use xlink:href="#g74" y="43435"/><rect x="88" y="43452" width="8" height="17" class="foreground"/><use xlink:href="#g85" y="43452"/><use xlink:href="#g38" y="43469"/><use xlink:href="#g39" y="43486"/><use xlink:href="#g38" y="43503"/><use xlink:href="#g40" y="43520"/><use xlink:href="#g36" y="43537"/><use xlink:href="#g41" y="43554"/><use xlink:href="#g42" y="43571"/><use xlink:href="#g43" y="43588"/><use xlink:href="#g44" y="43605"/><use xlink:href="#g45" y="43622"/><use xlink:href="#g46" y="43639"/><use xlink:href="#g35" y="43656"/><use xlink:href="#g47" y="43690"/><use xlink:href="#g48" y="43707"/></g><g><use xlink:href="#g56" y="44132"/><use xlink:href="#g58" y="44149"/><use xlink:href="#g72" y="44166"/><use xlink:href="#g74" y="44183"/><rect x="96" y="44200" width="8" height="17" class="foreground"/><use xlink:href="#g86" y="44200"/><use xlink:href="#g38" y="44217"/><use xlink:href="#g39" y="44234"/><use xlink:href="#g38" y="44251"/><use xlink:href="#g40" y="44268"/><use xlink:href="#g36" y="44285"/><use xlink:href="#g41" y="44302"/><use xlink:href="#g42" y="44319"/><use xlink:href="#g43" y="44336"/><use xlink:href="#g44" y="44353"/><use xlink:href="#g45" y="44370"/><use xlink:href="#g46" y="44387"/><use xlink:href="#g35" y="44404"/><use xlink:href="#g47" y="44438"/><use xlink:href="#g48" y="44455"/></g><g><use xlink:href="#g56" y="44880"/><use xlink:href="#g58" y="44897"/><use xlink:href="#g72" y="44914"/><use xlink:href="#g74" y="44931"/><use xlink:href="#g87" y="44948"/><rect x="0" y="44965" width="8" height="17" class="foreground"/><use xlink:href="#g88" y="44965"/><use xlink:href="#g39" y="44982"/><use xlink:href="#g38" y="44999"/><use xlink:href="#g40" y="45016"/><use xlink:href="#g36" y="45033"/><use xlink:href="#g41" y="45050"/><use xlink:href="#g42" y="45067"/><use xlink:href="#g43" y="45084"/><use xlink:href="#g44" y="45101"/><use xlink:href="#g45" y="45118"/><use xlink:href="#g46" y="45135"/><use xlink:href="#g35" y="45152"/><use xlink:href="#g47" y="45186"/><use xlink:href="#g48" y="45203"/></g><g><use xlink:href="#g56" y="45628"/><use xlink:href="#g58" y="45645"/><use xlink:href="#g72" y="45662"/><use xlink:href="#g74" y="45679"/><use xlink:href="#g87" y="45696"/><use xlink:href="#g89" y="45713"/><use xlink:href="#g90" y="45730"/><use xlink:href="#g91" y="45747"/><use xlink:href="#g92" y="45764"/><use xlink:href="#g93" y="45781"/><use xlink:href="#g94" y="45798"/><use xlink:href="#g95" y="45815"/><rect x="0" y="45832" width="8" height="17" class="foreground"/><use xlink:href="#g96" y="45832"/><use xlink:href="#g44" y="45849"/><use xlink:href="#g45" y="45866"/><use xlink:href="#g46" y="45883"/><use xlink:href="#g35" y="45900"/><use xlink:href="#g47" y="45934"/><use xlink:href="#g48" y="45951"/></g><g><use xlink:href="#g56" y="46376"/><use xlink:href="#g58" y="46393"/><use xlink:href="#g72" y="46410"/><use xlink:href="#g74" y="46427"/><use xlink:href="#g87" y="46444"/><use xlink:href="#g89" y="46461"/><use xlink:href="#g90" y="46478"/><use xlink:href="#g91" y="46495"/><use xlink:href="#g92" y="46512"/><use xlink:href="#g93" y="46529"/><use xlink:href="#g94" y="46546"/><use xlink:href="#g95" y="46563"/><use xlink:href="#g97" y="46580"/><use xlink:href="#g98" y="46597"/><use xlink:href="#g99" y="46614"/><use xlink:href="#g100" y="46631"/><rect x="0" y="46648" width="8" height="17" class="foreground"/><use xlink:href="#g57" y="46648"/><use xlink:href="#g47" y="46682"/><use xlink:href="#g48" y="46699"/></g><g><use xlink:href="#g56" y="47124"/><use xlink:href="#g58" y="47141"/><use xlink:href="#g72" y="47158"/><use xlink:href="#g74" y="47175"/><use xlink:href="#g87" y="47192"/><use xlink:href="#g89" y="47209"/><use xlink:href="#g90" y="47226"/><use xlink:href="#g91" y="47243"/><use xlink:href="#g92" y="47260"/><use xlink:href="#g93" y="47277"/><use xlink:href="#g94" y="47294"/><use xlink:href="#g95" y="47311"/><use xlink:href="#g97" y="47328"/><use xlink:href="#g98" y="47345"/><use xlink:href="#g99" y="47362"/><use xlink:href="#g100" y="47379"/><rect x="8" y="47396" width="8" height="17" class="foreground"/><use xlink:href="#g101" y="47396"/><use xlink:href="#g47" y="47430"/><use xlink:href="#g48" y="47447"/></g><g><use xlink:href="#g56" y="47872"/><use xlink:href="#g58" y="47889"/><use xlink:href="#g72" y="47906"/><use xlink:href="#g74" y="47923"/><use xlink:href="#g87" y="47940"/><use xlink:href="#g89" y="47957"/><use xlink:href="#g90" y="47974"/><use xlink:href="#g91" y="47991"/><use xlink:href="#g92" y="48008"/><use xlink:href="#g93" y="48025"/><use xlink:href="#g94" y="48042"/><use xlink:href="#g95" y="48059"/><use xlink:href="#g97" y="48076"/><use xlink:href="#g98" y="48093"/><use xlink:href="#g99" y="48110"/><use xlink:href="#g100" y="48127"/><use xlink:href="#g102" y="48144"/><rect x="0" y="48161" width="8" height="17" class="foreground"/><use xlink:href="#g18" y="48161"/><use xlink:href="#g47" y="48178"/><use xlink:href="#g48" y="48195"/></g><g><use xlink:href="#g56" y="48620"/><use xlink:href="#g58" y="48637"/><use xlink:href="#g72" y="48654"/><use xlink:href="#g74" y="48671"/><use xlink:href="#g87" y="48688"/><use xlink:href="#g89" y="48705"/><use xlink:href="#g90" y="48722"/><use xlink:href="#g91" y="48739"/><use xlink:href="#g92" y="48756"/><use xlink:href="#g93" y="48773"/><use xlink:href="#g94" y="48790"/><use xlink:href="#g95" y="48807"/><use xlink:href="#g97" y="48824"/><use xlink:href="#g98" y="48841"/><use xlink:href="#g99" y="48858"/><use xlink:href="#g100" y="48875"/><use xlink:href="#g102" y="48892"/><use xlink:href="#g103" y="48909"/><rect x="0" y="48926" width="8" height="17" class="foreground"/><use xlink:href="#g104" y="48926"/><use xlink:href="#g48" y="48943"/></g><g><use xlink:href="#g56" y="49368"/><use xlink:href="#g58" y="49385"/><use xlink:href="#g72" y="49402"/><use xlink:href="#g74" y="49419"/><use xlink:href="#g87" y="49436"/><use xlink:href="#g89" y="49453"/><use xlink:href="#g90" y="49470"/><use xlink:href="#g91" y="49487"/><use xlink:href="#g92" y="49504"/><use xlink:href="#g93" y="49521"/><use xlink:href="#g94" y="49538"/><use xlink:href="#g95" y="49555"/><use xlink:href="#g97" y="49572"/><use xlink:href="#g98" y="49589"/><use xlink:href="#g99" y="49606"/><use xlink:href="#g100" y="49623"/><use xlink:href="#g102" y="49640"/><use xlink:href="#g103" y="49657"/><rect x="8" y="49674" width="8" height="17" class="foreground"/><use xlink:href="#g105" y="49674"/><use xlink:href="#g48" y="49691"/></g><g><use xlink:href="#g56" y="50116"/><use xlink:href="#g58" y="50133"/><use xlink:href="#g72" y="50150"/><use xlink:href="#g74" y="50167"/><use xlink:href="#g87" y="50184"/><use xlink:href="#g89" y="50201"/><use xlink:href="#g90" y="50218"/><use xlink:href="#g91" y="50235"/><use xlink:href="#g92" y="50252"/><use xlink:href="#g93" y="50269"/><use xlink:href="#g94" y="50286"/><use xlink:href="#g95" y="50303"/><use xlink:href="#g97" y="50320"/><use xlink:href="#g98" y="50337"/><use xlink:href="#g99" y="50354"/><use xlink:href="#g100" y="50371"/><use xlink:href="#g102" y="50388"/><use xlink:href="#g103" y="50405"/><rect x="16" y="50422" width="8" height="17" class="foreground"/><use xlink:href="#g106" y="50422"/><use xlink:href="#g48" y="50439"/></g><g><use xlink:href="#g56" y="50864"/><use xlink:href="#g58" y="50881"/><use xlink:href="#g72" y="50898"/><use xlink:href="#g74" y="50915"/><use xlink:href="#g87" y="50932"/><use xlink:href="#g89" y="50949"/><use xlink:href="#g90" y="50966"/><use xlink:href="#g91" y="50983"/><use xlink:href="#g92" y="51000"/><use xlink:href="#g93" y="51017"/><use xlink:href="#g94" y="51034"/><use xlink:href="#g95" y="51051"/><use xlink:href="#g97" y="51068"/><use xlink:href="#g98" y="51085"/><use xlink:href="#g99" y="51102"/><use xlink:href="#g100" y="51119"/><use xlink:href="#g102" y="51136"/><use xlink:href="#g103" y="51153"/><rect x="24" y="51170" width="8" height="17" class="foreground"/><use xlink:href="#g107" y="51170"/><use xlink:href="#g48" y="51187"/></g><g><use xlink:href="#g56" y="51612"/><use xlink:href="#g58" y="51629"/><use xlink:href="#g72" y="51646"/><use xlink:href="#g74" y="51663"/><use xlink:href="#g87" y="51680"/><use xlink:href="#g89" y="51697"/><use xlink:href="#g90" y="51714"/><use xlink:href="#g91" y="51731"/><use xlink:href="#g92" y="51748"/><use xlink:href="#g93" y="51765"/><use xlink:href="#g94" y="51782"/><use xlink:href="#g95" y="51799"/><use xlink:href="#g97" y="51816"/><use xlink:href="#g98" y="51833"/><use xlink:href="#g99" y="51850"/><use xlink:href="#g100" y="51867"/><use xlink:href="#g102" y="51884"/><use xlink:href="#g103" y="51901"/><rect x="32" y="51918" width="8" height="17" class="foreground"/><use xlink:href="#g108" y="51918"/><use xlink:href="#g48" y="51935"/></g><g><use xlink:href="#g56" y="52360"/><use xlink:href="#g58" y="52377"/><use xlink:href="#g72" y="52394"/><use xlink:href="#g74" y="52411"/><use xlink:href="#g87" y="52428"/><use xlink:href="#g89" y="52445"/><use xlink:href="#g90" y="52462"/><use xlink:href="#g91" y="52479"/><use xlink:href="#g92" y="52496"/><use xlink:href="#g93" y="52513"/><use xlink:href="#g94" y="52530"/><use xlink:href="#g95" y="52547"/><use xlink:href="#g97" y="52564"/><use xlink:href="#g98" y="52581"/><use xlink:href="#g99" y="52598"/><use xlink:href="#g100" y="52615"/><use xlink:href="#g102" y="52632"/><use xlink:href="#g103" y="52649"/><rect x="24" y="52666" width="8" height="17" class="foreground"/><use xlink:href="#g107" y="52666"/><use xlink:href="#g48" y="52683"/></g><g><use xlink:href="#g56" y="53108"/><use xlink:href="#g58" y="53125"/><use xlink:href="#g72" y="53142"/><use xlink:href="#g74" y="53159"/><use xlink:href="#g87" y="53176"/><use xlink:href="#g89" y="53193"/><use xlink:href="#g90" y="53210"/><use xlink:href="#g91" y="53227"/><use xlink:href="#g92" y="53244"/><use xlink:href="#g93" y="53261"/><use xlink:href="#g94" y="53278"/><use xlink:href="#g95" y="53295"/><use xlink:href="#g97" y="53312"/><use xlink:href="#g98" y="53329"/><use xlink:href="#g99" y="53346"/><use xlink:href="#g100" y="53363"/><use xlink:href="#g102" y="53380"/><use xlink:href="#g103" y="53397"/><rect x="32" y="53414" width="8" height="17" class="foreground"/><use xlink:href="#g109" y="53414"/><use xlink:href="#g48" y="53431"/></g><g><use xlink:href="#g56" y="53856"/><use xlink:href="#g58" y="53873"/><use xlink:href="#g72" y="53890"/><use xlink:href="#g74" y="53907"/><use xlink:href="#g87" y="53924"/><use xlink:href="#g89" y="53941"/><use xlink:href="#g90" y="53958"/><use xlink:href="#g91" y="53975"/><use xlink:href="#g92" y="53992"/><use xlink:href="#g93" y="54009"/><use xlink:href="#g94" y="54026"/><use xlink:href="#g95" y="54043"/><use xlink:href="#g97" y="54060"/><use xlink:href="#g98" y="54077"/><use xlink:href="#g99" y="54094"/><use xlink:href="#g100" y="54111"/><use xlink:href="#g102" y="54128"/><use xlink:href="#g103" y="54145"/><rect x="40" y="54162" width="8" height="17" class="foreground"/><use xlink:href="#g110" y="54162"/><use xlink:href="#g48" y="54179"/></g><g><use xlink:href="#g56" y="54604"/><use xlink:href="#g58" y="54621"/><use xlink:href="#g72" y="54638"/><use xlink:href="#g74" y="54655"/><use xlink:href="#g87" y="54672"/><use xlink:href="#g89" y="54689"/><use xlink:href="#g90" y="54706"/><use xlink:href="#g91" y="54723"/><use xlink:href="#g92" y="54740"/><use xlink:href="#g93" y="54757"/><use xlink:href="#g94" y="54774"/><use xlink:href="#g95" y="54791"/><use xlink:href="#g97" y="54808"/><use xlink:href="#g98" y="54825"/><use xlink:href="#g99" y="54842"/><use xlink:href="#g100" y="54859"/><use xlink:href="#g102" y="54876"/><use xlink:href="#g103" y="54893"/><rect x="48" y="54910" width="8" height="17" class="foreground"/><use xlink:href="#g111" y="54910"/><use xlink:href="#g48" y="54927"/></g><g><use xlink:href="#g56" y="55352"/><use xlink:href="#g58" y="55369"/><use xlink:href="#g72" y="55386"/><use xlink:href="#g74" y="55403"/><use xlink:href="#g87" y="55420"/><use xlink:href="#g89" y="55437"/><use xlink:href="#g90" y="55454"/><use xlink:href="#g91" y="55471"/><use xlink:href="#g92" y="55488"/><use xlink:href="#g93" y="55505"/><use xlink:href="#g94" y="55522"/><use xlink:href="#g95" y="55539"/><use xlink:href="#g97" y="55556"/><use xlink:href="#g98" y="55573"/><use xlink:href="#g99" y="55590"/><use xlink:href="#g100" y="55607"/><use xlink:href="#g102" y="55624"/><use xlink:href="#g103" y="55641"/><rect x="56" y="55658" width="8" height="17" class="foreground"/><use xlink:href="#g112" y="55658"/><use xlink:href="#g48" y="55675"/></g><g><use xlink:href="#g56" y="56100"/><use xlink:href="#g58" y="56117"/><use xlink:href="#g72" y="56134"/><use xlink:href="#g74" y="56151"/><use xlink:href="#g87" y="56168"/><use xlink:href="#g89" y="56185"/><use xlink:href="#g90" y="56202"/><use xlink:href="#g91" y="56219"/><use xlink:href="#g92" y="56236"/><use xlink:href="#g93" y="56253"/><use xlink:href="#g94" y="56270"/><use xlink:href="#g95" y="56287"/><use xlink:href="#g97" y="56304"/><use xlink:href="#g98" y="56321"/><use xlink:href="#g99" y="56338"/><use xlink:href="#g100" y="56355"/><use xlink:href="#g102" y="56372"/><use xlink:href="#g103" y="56389"/><rect x="64" y="56406" width="8" height="17" class="foreground"/><use xlink:href="#g113" y="56406"/><use xlink:href="#g48" y="56423"/></g><g><use xlink:href="#g56" y="56848"/><use xlink:href="#g58" y="56865"/><use xlink:href="#g72" y="56882"/><use xlink:href="#g74" y="56899"/><use xlink:href="#g87" y="56916"/><use xlink:href="#g89" y="56933"/><use xlink:href="#g90" y="56950"/><use xlink:href="#g91" y="56967"/><use xlink:href="#g92" y="56984"/><use xlink:href="#g93" y="57001"/><use xlink:href="#g94" y="57018"/><use xlink:href="#g95" y="57035"/><use xlink:href="#g97" y="57052"/><use xlink:href="#g98" y="57069"/><use xlink:href="#g99" y="57086"/><use xlink:href="#g100" y="57103"/><use xlink:href="#g102" y="57120"/><use xlink:href="#g103" y="57137"/><use xlink:href="#g114" y="57154"/><rect x="0" y="57171" width="8" height="17" class="foreground"/><use xlink:href="#g1" y="57171"/></g><g><use xlink:href="#g56" y="57596"/><use xlink:href="#g58" y="57613"/><use xlink:href="#g72" y="57630"/><use xlink:href="#g74" y="57647"/><use xlink:href="#g87" y="57664"/><use xlink:href="#g89" y="57681"/><use xlink:href="#g90" y="57698"/><use xlink:href="#g91" y="57715"/><use xlink:href="#g92" y="57732"/><use xlink:href="#g93" y="57749"/><use xlink:href="#g94" y="57766"/><use xlink:href="#g95" y="57783"/><use xlink:href="#g97" y="57800"/><use xlink:href="#g98" y="57817"/><use xlink:href="#g99" y="57834"/><use xlink:href="#g100" y="57851"/><use xlink:href="#g102" y="57868"/><use xlink:href="#g103" y="57885"/><use xlink:href="#g114" y="57902"/><rect x="0" y="57919" width="8" height="17" class="foreground"/><use xlink:href="#g1" y="57919"/></g><g><use xlink:href="#g56" y="58344"/><use xlink:href="#g58" y="58361"/><use xlink:href="#g72" y="58378"/><use xlink:href="#g74" y="58395"/><use xlink:href="#g87" y="58412"/><use xlink:href="#g89" y="58429"/><use xlink:href="#g90" y="58446"/><use xlink:href="#g91" y="58463"/><use xlink:href="#g92" y="58480"/><use xlink:href="#g93" y="58497"/><use xlink:href="#g94" y="58514"/><use xlink:href="#g95" y="58531"/><use xlink:href="#g97" y="58548"/><use xlink:href="#g98" y="58565"/><use xlink:href="#g99" y="58582"/><use xlink:href="#g100" y="58599"/><use xlink:href="#g102" y="58616"/><use xlink:href="#g103" y="58633"/><use xlink:href="#g114" y="58650"/><rect x="0" y="58667" width="8" height="17" class="foreground"/><use xlink:href="#g1" y="58667"/></g><g><use xlink:href="#g56" y="59092"/><use xlink:href="#g58" y="59109"/><use xlink:href="#g72" y="59126"/><use xlink:href="#g74" y="59143"/><use xlink:href="#g87" y="59160"/><use xlink:href="#g89" y="59177"/><use xlink:href="#g90" y="59194"/><use xlink:href="#g91" y="59211"/><use xlink:href="#g92" y="59228"/><use xlink:href="#g93" y="59245"/><use xlink:href="#g94" y="59262"/><use xlink:href="#g95" y="59279"/><use xlink:href="#g97" y="59296"/><use xlink:href="#g98" y="59313"/><use xlink:href="#g99" y="59330"/><use xlink:href="#g100" y="59347"/><use xlink:href="#g102" y="59364"/><use xlink:href="#g103" y="59381"/><use xlink:href="#g114" y="59398"/><rect x="336" y="59415" width="8" height="17" class="foreground"/><use xlink:href="#g2" y="59415"/></g><g><use xlink:href="#g56" y="59840"/><use xlink:href="#g58" y="59857"/><use xlink:href="#g72" y="59874"/><use xlink:href="#g74" y="59891"/><use xlink:href="#g87" y="59908"/><use xlink:href="#g89" y="59925"/><use xlink:href="#g90" y="59942"/><use xlink:href="#g91" y="59959"/><use xlink:href="#g92" y="59976"/><use xlink:href="#g93" y="59993"/><use xlink:href="#g94" y="60010"/><use xlink:href="#g95" y="60027"/><use xlink:href="#g97" y="60044"/><use xlink:href="#g98" y="60061"/><use xlink:href="#g99" y="60078"/><use xlink:href="#g100" y="60095"/><use xlink:href="#g102" y="60112"/><use xlink:href="#g103" y="60129"/><use xlink:href="#g114" y="60146"/><rect x="344" y="60163" width="8" height="17" class="foreground"/><use xlink:href="#g3" y="60163"/></g><g><use xlink:href="#g56" y="60588"/><use xlink:href="#g58" y="60605"/><use xlink:href="#g72" y="60622"/><use xlink:href="#g74" y="60639"/><use xlink:href="#g87" y="60656"/><use xlink:href="#g89" y="60673"/><use xlink:href="#g90" y="60690"/><use xlink:href="#g91" y="60707"/><use xlink:href="#g92" y="60724"/><use xlink:href="#g93" y="60741"/><use xlink:href="#g94" y="60758"/><use xlink:href="#g95" y="60775"/><use xlink:href="#g97" y="60792"/><use xlink:href="#g98" y="60809"/><use xlink:href="#g99" y="60826"/><use xlink:href="#g100" y="60843"/><use xlink:href="#g102" y="60860"/><use xlink:href="#g103" y="60877"/><use xlink:href="#g114" y="60894"/><rect x="352" y="60911" width="8" height="17" class="foreground"/><use xlink:href="#g4" y="60911"/></g><g><use xlink:href="#g56" y="61336"/><use xlink:href="#g58" y="61353"/><use xlink:href="#g72" y="61370"/><use xlink:href="#g74" y="61387"/><use xlink:href="#g87" y="61404"/><use xlink:href="#g89" y="61421"/><use xlink:href="#g90" y="61438"/><use xlink:href="#g91" y="61455"/><use xlink:href="#g92" y="61472"/><use xlink:href="#g93" y="61489"/><use xlink:href="#g94" y="61506"/><use xlink:href="#g95" y="61523"/><use xlink:href="#g97" y="61540"/><use xlink:href="#g98" y="61557"/><use xlink:href="#g99" y="61574"/><use xlink:href="#g100" y="61591"/><use xlink:href="#g102" y="61608"/><use xlink:href="#g103" y="61625"/><use xlink:href="#g114" y="61642"/><rect x="360" y="61659" width="8" height="17" class="foreground"/><use xlink:href="#g5" y="61659"/></g><g><use xlink:href="#g56" y="62084"/><use xlink:href="#g58" y="62101"/><use xlink:href="#g72" y="62118"/><use xlink:href="#g74" y="62135"/><use xlink:href="#g87" y="62152"/><use xlink:href="#g89" y="62169"/><use xlink:href="#g90" y="62186"/><use xlink:href="#g91" y="62203"/><use xlink:href="#g92" y="62220"/><use xlink:href="#g93" y="62237"/><use xlink:href="#g94" y="62254"/><use xlink:href="#g95" y="62271"/><use xlink:href="#g97" y="62288"/><use xlink:href="#g98" y="62305"/><use xlink:href="#g99" y="62322"/><use xlink:href="#g100" y="62339"/><use xlink:href="#g102" y="62356"/><use xlink:href="#g103" y="62373"/><use xlink:href="#g114" y="62390"/><rect x="368" y="62407" width="8" height="17" class="foreground"/><use xlink:href="#g6" y="62407"/></g><g><use xlink:href="#g56" y="62832"/><use xlink:href="#g58" y="62849"/><use xlink:href="#g72" y="62866"/><use xlink:href="#g74" y="62883"/><use xlink:href="#g87" y="62900"/><use xlink:href="#g89" y="62917"/><use xlink:href="#g90" y="62934"/><use xlink:href="#g91" y="62951"/><use xlink:href="#g92" y="62968"/><use xlink:href="#g93" y="62985"/><use xlink:href="#g94" y="63002"/><use xlink:href="#g95" y="63019"/><use xlink:href="#g97" y="63036"/><use xlink:href="#g98" y="63053"/><use xlink:href="#g99" y="63070"/><use xlink:href="#g100" y="63087"/><use xlink:href="#g102" y="63104"/><use xlink:href="#g103" y="63121"/><use xlink:href="#g114" y="63138"/><rect x="376" y="63155" width="8" height="17" class="foreground"/><use xlink:href="#g115" y="63155"/></g><g><use xlink:href="#g56" y="63580"/><use xlink:href="#g58" y="63597"/><use xlink:href="#g72" y="63614"/><use xlink:href="#g74" y="63631"/><use xlink:href="#g87" y="63648"/><use xlink:href="#g89" y="63665"/><use xlink:href="#g90" y="63682"/><use xlink:href="#g91" y="63699"/><use xlink:href="#g92" y="63716"/><use xlink:href="#g93" y="63733"/><use xlink:href="#g94" y="63750"/><use xlink:href="#g95" y="63767"/><use xlink:href="#g97" y="63784"/><use xlink:href="#g98" y="63801"/><use xlink:href="#g99" y="63818"/><use xlink:href="#g100" y="63835"/><use xlink:href="#g102" y="63852"/><use xlink:href="#g103" y="63869"/><use xlink:href="#g114" y="63886"/><rect x="384" y="63903" width="8" height="17" class="foreground"/><use xlink:href="#g116" y="63903"/></g><g><use xlink:href="#g56" y="64328"/><use xlink:href="#g58" y="64345"/><use xlink:href="#g72" y="64362"/><use xlink:href="#g74" y="64379"/><use xlink:href="#g87" y="64396"/><use xlink:href="#g89" y="64413"/><use xlink:href="#g90" y="64430"/><use xlink:href="#g91" y="64447"/><use xlink:href="#g92" y="64464"/><use xlink:href="#g93" y="64481"/><use xlink:href="#g94" y="64498"/><use xlink:href="#g95" y="64515"/><use xlink:href="#g97" y="64532"/><use xlink:href="#g98" y="64549"/><use xlink:href="#g99" y="64566"/><use xlink:href="#g100" y="64583"/><use xlink:href="#g102" y="64600"/><use xlink:href="#g103" y="64617"/><use xlink:href="#g114" y="64634"/><rect x="392" y="64651" width="8" height="17" class="foreground"/><use xlink:href="#g117" y="64651"/></g><g><use xlink:href="#g56" y="65076"/><use xlink:href="#g58" y="65093"/><use xlink:href="#g72" y="65110"/><use xlink:href="#g74" y="65127"/><use xlink:href="#g87" y="65144"/><use xlink:href="#g89" y="65161"/><use xlink:href="#g90" y="65178"/><use xlink:href="#g91" y="65195"/><use xlink:href="#g92" y="65212"/><use xlink:href="#g93" y="65229"/><use xlink:href="#g94" y="65246"/><use xlink:href="#g95" y="65263"/><use xlink:href="#g97" y="65280"/><use xlink:href="#g98" y="65297"/><use xlink:href="#g99" y="65314"/><use xlink:href="#g100" y="65331"/><use xlink:href="#g102" y="65348"/><use xlink:href="#g103" y="65365"/><use xlink:href="#g114" y="65382"/><rect x="400" y="65399" width="8" height="17" class="foreground"/><use xlink:href="#g118" y="65399"/></g><g><use xlink:href="#g56" y="65824"/><use xlink:href="#g58" y="65841"/><use xlink:href="#g72" y="65858"/><use xlink:href="#g74" y="65875"/><use xlink:href="#g87" y="65892"/><use xlink:href="#g89" y="65909"/><use xlink:href="#g90" y="65926"/><use xlink:href="#g91" y="65943"/><use xlink:href="#g92" y="65960"/><use xlink:href="#g93" y="65977"/><use xlink:href="#g94" y="65994"/><use xlink:href="#g95" y="66011"/><use xlink:href="#g97" y="66028"/><use xlink:href="#g98" y="66045"/><use xlink:href="#g99" y="66062"/><use xlink:href="#g100" y="66079"/><use xlink:href="#g102" y="66096"/><use xlink:href="#g103" y="66113"/><use xlink:href="#g114" y="66130"/><rect x="408" y="66147" width="8" height="17" class="foreground"/><use xlink:href="#g119" y="66147"/></g><g><use xlink:href="#g56" y="66572"/><use xlink:href="#g58" y="66589"/><use xlink:href="#g72" y="66606"/><use xlink:href="#g74" y="66623"/><use xlink:href="#g87" y="66640"/><use xlink:href="#g89" y="66657"/><use xlink:href="#g90" y="66674"/><use xlink:href="#g91" y="66691"/><use xlink:href="#g92" y="66708"/><use xlink:href="#g93" y="66725"/><use xlink:href="#g94" y="66742"/><use xlink:href="#g95" y="66759"/><use xlink:href="#g97" y="66776"/><use xlink:href="#g98" y="66793"/><use xlink:href="#g99" y="66810"/><use xlink:href="#g100" y="66827"/><use xlink:href="#g102" y="66844"/><use xlink:href="#g103" y="66861"/><use xlink:href="#g114" y="66878"/><rect x="400" y="66895" width="8" height="17" class="foreground"/><use xlink:href="#g118" y="66895"/></g><g><use xlink:href="#g56" y="67320"/><use xlink:href="#g58" y="67337"/><use xlink:href="#g72" y="67354"/><use xlink:href="#g74" y="67371"/><use xlink:href="#g87" y="67388"/><use xlink:href="#g89" y="67405"/><use xlink:href="#g90" y="67422"/><use xlink:href="#g91" y="67439"/><use xlink:href="#g92" y="67456"/><use xlink:href="#g93" y="67473"/><use xlink:href="#g94" y="67490"/><use xlink:href="#g95" y="67507"/><use xlink:href="#g97" y="67524"/><use xlink:href="#g98" y="67541"/><use xlink:href="#g99" y="67558"/><use xlink:href="#g100" y="67575"/><use xlink:href="#g102" y="67592"/><use xlink:href="#g103" y="67609"/><use xlink:href="#g114" y="67626"/><rect x="408" y="67643" width="8" height="17" class="foreground"/><use xlink:href="#g119" y="67643"/></g><g><use xlink:href="#g56" y="68068"/><use xlink:href="#g58" y="68085"/><use xlink:href="#g72" y="68102"/><use xlink:href="#g74" y="68119"/><use xlink:href="#g87" y="68136"/><use xlink:href="#g89" y="68153"/><use xlink:href="#g90" y="68170"/><use xlink:href="#g91" y="68187"/><use xlink:href="#g92" y="68204"/><use xlink:href="#g93" y="68221"/><use xlink:href="#g94" y="68238"/><use xlink:href="#g95" y="68255"/><use xlink:href="#g97" y="68272"/><use xlink:href="#g98" y="68289"/><use xlink:href="#g99" y="68306"/><use xlink:href="#g100" y="68323"/><use xlink:href="#g102" y="68340"/><use xlink:href="#g103" y="68357"/><use xlink:href="#g114" y="68374"/><rect x="400" y="68391" width="8" height="17" class="foreground"/><use xlink:href="#g118" y="68391"/></g><g><use xlink:href="#g56" y="68816"/><use xlink:href="#g58" y="68833"/><use xlink:href="#g72" y="68850"/><use xlink:href="#g74" y="68867"/><use xlink:href="#g87" y="68884"/><use xlink:href="#g89" y="68901"/><use xlink:href="#g90" y="68918"/><use xlink:href="#g91" y="68935"/><use xlink:href="#g92" y="68952"/><use xlink:href="#g93" y="68969"/><use xlink:href="#g94" y="68986"/><use xlink:href="#g95" y="69003"/><use xlink:href="#g97" y="69020"/><use xlink:href="#g98" y="69037"/><use xlink:href="#g99" y="69054"/><use xlink:href="#g100" y="69071"/><use xlink:href="#g102" y="69088"/><use xlink:href="#g103" y="69105"/><use xlink:href="#g114" y="69122"/><rect x="408" y="69139" width="8" height="17" class="foreground"/><use xlink:href="#g120" y="69139"/></g><g><use xlink:href="#g56" y="69564"/><use xlink:href="#g58" y="69581"/><use xlink:href="#g72" y="69598"/><use xlink:href="#g74" y="69615"/><use xlink:href="#g87" y="69632"/><use xlink:href="#g89" y="69649"/><use xlink:href="#g90" y="69666"/><use xlink:href="#g91" y="69683"/><use xlink:href="#g92" y="69700"/><use xlink:href="#g93" y="69717"/><use xlink:href="#g94" y="69734"/><use xlink:href="#g95" y="69751"/><use xlink:href="#g97" y="69768"/><use xlink:href="#g98" y="69785"/><use xlink:href="#g99" y="69802"/><use xlink:href="#g100" y="69819"/><use xlink:href="#g102" y="69836"/><use xlink:href="#g103" y="69853"/><use xlink:href="#g114" y="69870"/><rect x="408" y="69887" width="8" height="17" class="foreground"/><use xlink:href="#g120" y="69887"/></g><g><use xlink:href="#g56" y="70312"/><use xlink:href="#g58" y="70329"/><use xlink:href="#g72" y="70346"/><use xlink:href="#g74" y="70363"/><use xlink:href="#g87" y="70380"/><use xlink:href="#g89" y="70397"/><use xlink:href="#g90" y="70414"/><use xlink:href="#g91" y="70431"/><use xlink:href="#g92" y="70448"/><use xlink:href="#g93" y="70465"/><use xlink:href="#g94" y="70482"/><use xlink:href="#g95" y="70499"/><use xlink:href="#g97" y="70516"/><use xlink:href="#g98" y="70533"/><use xlink:href="#g99" y="70550"/><use xlink:href="#g100" y="70567"/><use xlink:href="#g102" y="70584"/><use xlink:href="#g103" y="70601"/><use xlink:href="#g114" y="70618"/><rect x="400" y="70635" width="8" height="17" class="foreground"/><use xlink:href="#g118" y="70635"/></g><g><use xlink:href="#g56" y="71060"/><use xlink:href="#g58" y="71077"/><use xlink:href="#g72" y="71094"/><use xlink:href="#g74" y="71111"/><use xlink:href="#g87" y="71128"/><use xlink:href="#g89" y="71145"/><use xlink:href="#g90" y="71162"/><use xlink:href="#g91" y="71179"/><use xlink:href="#g92" y="71196"/><use xlink:href="#g93" y="71213"/><use xlink:href="#g94" y="71230"/><use xlink:href="#g95" y="71247"/><use xlink:href="#g97" y="71264"/><use xlink:href="#g98" y="71281"/><use xlink:href="#g99" y="71298"/><use xlink:href="#g100" y="71315"/><use xlink:href="#g102" y="71332"/><use xlink:href="#g103" y="71349"/><use xlink:href="#g114" y="71366"/><rect x="392" y="71383" width="8" height="17" class="foreground"/><use xlink:href="#g117" y="71383"/></g><g><use xlink:href="#g56" y="71808"/><use xlink:href="#g58" y="71825"/><use xlink:href="#g72" y="71842"/><use xlink:href="#g74" y="71859"/><use xlink:href="#g87" y="71876"/><use xlink:href="#g89" y="71893"/><use xlink:href="#g90" y="71910"/><use xlink:href="#g91" y="71927"/><use xlink:href="#g92" y="71944"/><use xlink:href="#g93" y="71961"/><use xlink:href="#g94" y="71978"/><use xlink:href="#g95" y="71995"/><use xlink:href="#g97" y="72012"/><use xlink:href="#g98" y="72029"/><use xlink:href="#g99" y="72046"/><use xlink:href="#g100" y="72063"/><use xlink:href="#g102" y="72080"/><use xlink:href="#g103" y="72097"/><use xlink:href="#g114" y="72114"/><rect x="400" y="72131" width="8" height="17" class="foreground"/><use xlink:href="#g121" y="72131"/></g><g><use xlink:href="#g56" y="72556"/><use xlink:href="#g58" y="72573"/><use xlink:href="#g72" y="72590"/><use xlink:href="#g74" y="72607"/><use xlink:href="#g87" y="72624"/><use xlink:href="#g89" y="72641"/><use xlink:href="#g90" y="72658"/><use xlink:href="#g91" y="72675"/><use xlink:href="#g92" y="72692"/><use xlink:href="#g93" y="72709"/><use xlink:href="#g94" y="72726"/><use xlink:href="#g95" y="72743"/><use xlink:href="#g97" y="72760"/><use xlink:href="#g98" y="72777"/><use xlink:href="#g99" y="72794"/><use xlink:href="#g100" y="72811"/><use xlink:href="#g102" y="72828"/><use xlink:href="#g103" y="72845"/><use xlink:href="#g114" y="72862"/><rect x="440" y="72879" width="8" height="17" class="foreground"/><use xlink:href="#g122" y="72879"/></g><g><use xlink:href="#g56" y="73304"/><use xlink:href="#g58" y="73321"/><use xlink:href="#g72" y="73338"/><use xlink:href="#g74" y="73355"/><use xlink:href="#g87" y="73372"/><use xlink:href="#g89" y="73389"/><use xlink:href="#g90" y="73406"/><use xlink:href="#g91" y="73423"/><use xlink:href="#g92" y="73440"/><use xlink:href="#g93" y="73457"/><use xlink:href="#g94" y="73474"/><use xlink:href="#g95" y="73491"/><use xlink:href="#g97" y="73508"/><use xlink:href="#g98" y="73525"/><use xlink:href="#g99" y="73542"/><use xlink:href="#g100" y="73559"/><use xlink:href="#g102" y="73576"/><use xlink:href="#g103" y="73593"/><use xlink:href="#g114" y="73610"/><rect x="432" y="73627" width="8" height="17" class="foreground"/><use xlink:href="#g123" y="73627"/></g><g><use xlink:href="#g56" y="74052"/><use xlink:href="#g58" y="74069"/><use xlink:href="#g72" y="74086"/><use xlink:href="#g74" y="74103"/><use xlink:href="#g87" y="74120"/><use xlink:href="#g89" y="74137"/><use xlink:href="#g90" y="74154"/><use xlink:href="#g91" y="74171"/><use xlink:href="#g92" y="74188"/><use xlink:href="#g93" y="74205"/><use xlink:href="#g94" y="74222"/><use xlink:href="#g95" y="74239"/><use xlink:href="#g97" y="74256"/><use xlink:href="#g98" y="74273"/><use xlink:href="#g99" y="74290"/><use xlink:href="#g100" y="74307"/><use xlink:href="#g102" y="74324"/><use xlink:href="#g103" y="74341"/><use xlink:href="#g114" y="74358"/><use xlink:href="#g124" y="74375"/><use xlink:href="#g19" y="74392"/><use xlink:href="#g20" y="74409"/><use xlink:href="#g125" y="74426"/><use xlink:href="#g126" y="74443"/><use xlink:href="#g22" y="74460"/><use xlink:href="#g127" y="74477"/><use xlink:href="#g24" y="74494"/><use xlink:href="#g25" y="74511"/><use xlink:href="#g26" y="74528"/><use xlink:href="#g27" y="74545"/><use xlink:href="#g128" y="74562"/><use xlink:href="#g129" y="74579"/><use xlink:href="#g130" y="74596"/><use xlink:href="#g31" y="74613"/><use xlink:href="#g131" y="74630"/><use xlink:href="#g33" y="74647"/><use xlink:href="#g19" y="74664"/><use xlink:href="#g34" y="74698"/><rect x="0" y="74715" width="8" height="17" class="foreground"/><use xlink:href="#g1" y="74715"/></g><g><use xlink:href="#g56" y="74800"/><use xlink:href="#g58" y="74817"/><use xlink:href="#g72" y="74834"/><use xlink:href="#g74" y="74851"/><use xlink:href="#g87" y="74868"/><use xlink:href="#g89" y="74885"/><use xlink:href="#g90" y="74902"/><use xlink:href="#g91" y="74919"/><use xlink:href="#g92" y="74936"/><use xlink:href="#g93" y="74953"/><use xlink:href="#g94" y="74970"/><use xlink:href="#g95" y="74987"/><use xlink:href="#g97" y="75004"/><use xlink:href="#g98" y="75021"/><use xlink:href="#g99" y="75038"/><use xlink:href="#g100" y="75055"/><use xlink:href="#g102" y="75072"/><use xlink:href="#g103" y="75089"/><use xlink:href="#g114" y="75106"/><use xlink:href="#g124" y="75123"/><use xlink:href="#g19" y="75140"/><use xlink:href="#g20" y="75157"/><use xlink:href="#g125" y="75174"/><use xlink:href="#g126" y="75191"/><use xlink:href="#g22" y="75208"/><use xlink:href="#g127" y="75225"/><use xlink:href="#g24" y="75242"/><use xlink:href="#g25" y="75259"/><use xlink:href="#g26" y="75276"/><use xlink:href="#g27" y="75293"/><use xlink:href="#g128" y="75310"/><use xlink:href="#g129" y="75327"/><use xlink:href="#g130" y="75344"/><use xlink:href="#g31" y="75361"/><use xlink:href="#g131" y="75378"/><use xlink:href="#g33" y="75395"/><use xlink:href="#g19" y="75412"/><use xlink:href="#g34" y="75446"/><rect x="336" y="75463" width="8" height="17" class="foreground"/><use xlink:href="#g2" y="75463"/></g><g><use xlink:href="#g56" y="75548"/><use xlink:href="#g58" y="75565"/><use xlink:href="#g72" y="75582"/><use xlink:href="#g74" y="75599"/><use xlink:href="#g87" y="75616"/><use xlink:href="#g89" y="75633"/><use xlink:href="#g90" y="75650"/><use xlink:href="#g91" y="75667"/><use xlink:href="#g92" y="75684"/><use xlink:href="#g93" y="75701"/><use xlink:href="#g94" y="75718"/><use xlink:href="#g95" y="75735"/><use xlink:href="#g97" y="75752"/><use xlink:href="#g98" y="75769"/><use xlink:href="#g99" y="75786"/><use xlink:href="#g100" y="75803"/><use xlink:href="#g102" y="75820"/><use xlink:href="#g103" y="75837"/><use xlink:href="#g114" y="75854"/><use xlink:href="#g124" y="75871"/><use xlink:href="#g19" y="75888"/><use xlink:href="#g20" y="75905"/><use xlink:href="#g125" y="75922"/><use xlink:href="#g126" y="75939"/><use xlink:href="#g22" y="75956"/><use xlink:href="#g127" y="75973"/><use xlink:href="#g24" y="75990"/><use xlink:href="#g25" y="76007"/><use xlink:href="#g26" y="76024"/><use xlink:href="#g27" y="76041"/><use xlink:href="#g128" y="76058"/><use xlink:href="#g129" y="76075"/><use xlink:href="#g130" y="76092"/><use xlink:href="#g31" y="76109"/><use xlink:href="#g131" y="76126"/><use xlink:href="#g33" y="76143"/><use xlink:href="#g19" y="76160"/><use xlink:href="#g34" y="76194"/><rect x="336" y="76211" width="8" height="17" class="foreground"/><use xlink:href="#g2" y="76211"/></g><g><use xlink:href="#g56" y="76296"/><use xlink:href="#g58" y="76313"/><use xlink:href="#g72" y="76330"/><use xlink:href="#g74" y="76347"/><use xlink:href="#g87" y="76364"/><use xlink:href="#g89" y="76381"/><use xlink:href="#g90" y="76398"/><use xlink:href="#g91" y="76415"/><use xlink:href="#g92" y="76432"/><use xlink:href="#g93" y="76449"/><use xlink:href="#g94" y="76466"/><use xlink:href="#g95" y="76483"/><use xlink:href="#g97" y="76500"/><use xlink:href="#g98" y="76517"/><use xlink:href="#g99" y="76534"/><use xlink:href="#g100" y="76551"/><use xlink:href="#g102" y="76568"/><use xlink:href="#g103" y="76585"/><use xlink:href="#g114" y="76602"/><use xlink:href="#g124" y="76619"/><use xlink:href="#g19" y="76636"/><use xlink:href="#g20" y="76653"/><use xlink:href="#g125" y="76670"/><use xlink:href="#g126" y="76687"/><use xlink:href="#g22" y="76704"/><use xlink:href="#g127" y="76721"/><use xlink:href="#g24" y="76738"/><use xlink:href="#g25" y="76755"/><use xlink:href="#g26" y="76772"/><use xlink:href="#g27" y="76789"/><use xlink:href="#g128" y="76806"/><use xlink:href="#g129" y="76823"/><use xlink:href="#g130" y="76840"/><use xlink:href="#g31" y="76857"/><use xlink:href="#g131" y="76874"/><use xlink:href="#g33" y="76891"/><use xlink:href="#g19" y="76908"/><use xlink:href="#g34" y="76942"/><use xlink:href="#g132" y="76959"/><rect x="0" y="76976" width="8" height="17" class="foreground"/><use xlink:href="#g18" y="76976"/></g></g></svg>
163
+ </svg>
@@ -0,0 +1,12 @@
1
+ ---
2
+ title: "<%= title %>"
3
+ image: "<%= image_url %>"
4
+ link: <%= details_page_url %>
5
+ preis: <%= price %>
6
+ categories: ['<%= brand %>']
7
+ # SEO
8
+ date: <%= date %>
9
+ seo_description: "Don't leave blank"
10
+ ---
11
+
12
+ This could be the content.
metadata ADDED
@@ -0,0 +1,65 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lazuli
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - IJustDev
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-08-14 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: ''
14
+ email:
15
+ - ''
16
+ executables:
17
+ - lazuli
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - ".gitignore"
22
+ - CHANGELOG.md
23
+ - Gemfile
24
+ - Gemfile.lock
25
+ - LICENSE.txt
26
+ - README.md
27
+ - Rakefile
28
+ - bin/console
29
+ - bin/lazuli
30
+ - bin/setup
31
+ - lazuli.gemspec
32
+ - lib/lazuli.rb
33
+ - lib/version.rb
34
+ - resources/preview.svg
35
+ - test_template.erb
36
+ homepage: https://github.com/ijustdev/lazuli
37
+ licenses:
38
+ - MIT
39
+ metadata:
40
+ allowed_push_host: https://rubygems.org
41
+ homepage_uri: https://github.com/ijustdev/lazuli
42
+ source_code_uri: https://github.com/ijustdev/lazuli
43
+ changelog_uri: https://github.com/ijustdev/lazuli/changelog.md
44
+ post_install_message:
45
+ rdoc_options: []
46
+ require_paths:
47
+ - lib
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 2.3.0
53
+ required_rubygems_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
58
+ requirements: []
59
+ rubyforge_project:
60
+ rubygems_version: 2.7.6.2
61
+ signing_key:
62
+ specification_version: 4
63
+ summary: A cli tool that generates templates by using the Product advertising API
64
+ 5.0
65
+ test_files: []