rabbit-slide-kou-db-tech-showcase-online-2020 2020.12.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rabbit +1 -0
- data/README.rd +48 -0
- data/Rakefile +18 -0
- data/config.yaml +23 -0
- data/images/amazon-athena-improvement.svg +58 -0
- data/images/apache-arrow-and-amazon-athena.svg +1846 -0
- data/images/apache-arrow-and-apache-spark.svg +1306 -0
- data/images/apache-arrow-and-data-interchange.svg +833 -0
- data/images/apache-spark-improvement.svg +58 -0
- data/images/columnar.svg +641 -0
- data/images/simd-null.svg +285 -0
- data/pdf/db-tech-showcase-online-2020-why-apache-arrow-format-is-fast.pdf +0 -0
- data/theme.rb +5 -0
- data/thumbnail.png +0 -0
- data/why-apache-arrow-format-is-fast.rab +460 -0
- metadata +89 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 0f9aafc870f8f4fa42b3a00844b9319dbd0d074d264e6ed07f294a2506e70cb7
|
4
|
+
data.tar.gz: 67dc137db860db67aeba17d1250e19af6e037dd6527b45fabf86dabb91967b62
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 550521dd884f1ac08c65d842e9b5ec8e39021e04c8dc4a51f1394e67a18acf912ea2593438e1a9d589593bff785545ea5e0072526a205e79cb87f89332740a71
|
7
|
+
data.tar.gz: d66e3ddbf2b27152a442b32fd126fd737cb80b8e029490686e724b1a4c7728f47131979ef94e116364ac5b6c0ac7259152c9fecba6a43d2b933082c631a122b0
|
data/.rabbit
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--size=1920,1080 why-apache-arrow-format-is-fast.rab
|
data/README.rd
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
= Apache Arrowフォーマットはなぜ速いのか
|
2
|
+
|
3
|
+
2020年代、ビッグデータをどう扱えばよいか。今は各プロダクト毎に効率的な扱い方を実装していますが、2020年代はそんな時代ではありません!ビッグデータの扱いでも、共通で必要なものはプロダクトを超えて協力して開発して共有する、そんな時代です!ビッグデータのための共通基盤、それがオープンソースのApache Arrowです。AmazonもGoogleもNVIDIAも開発に参加しています。
|
4
|
+
|
5
|
+
このセッションではApache Arrow開発チームの主要メンバーがApache Arrowフォーマットがなぜ速いのかを説明します。
|
6
|
+
|
7
|
+
== ライセンス
|
8
|
+
|
9
|
+
=== スライド
|
10
|
+
|
11
|
+
CC BY-SA 4.0
|
12
|
+
|
13
|
+
原著作者:須藤功平
|
14
|
+
|
15
|
+
==== 株式会社クリアコードのロゴ
|
16
|
+
|
17
|
+
CC BY-SA 4.0
|
18
|
+
|
19
|
+
原著作者:株式会社クリアコード
|
20
|
+
|
21
|
+
ページヘッダーで使っています。
|
22
|
+
|
23
|
+
==== Apache Arrowのロゴ
|
24
|
+
|
25
|
+
Apache License 2.0
|
26
|
+
|
27
|
+
原著作者:The Apache Software Foundation
|
28
|
+
|
29
|
+
== 作者向け
|
30
|
+
|
31
|
+
=== 表示
|
32
|
+
|
33
|
+
rake
|
34
|
+
|
35
|
+
=== 公開
|
36
|
+
|
37
|
+
rake publish
|
38
|
+
|
39
|
+
== 閲覧者向け
|
40
|
+
|
41
|
+
=== インストール
|
42
|
+
|
43
|
+
gem install rabbit-slide-kou-db-tech-showcase-online-2020
|
44
|
+
|
45
|
+
=== 表示
|
46
|
+
|
47
|
+
rabbit rabbit-slide-kou-db-tech-showcase-online-2020.gem
|
48
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
require "rabbit/task/slide"
|
2
|
+
|
3
|
+
# Edit ./config.yaml to customize meta data
|
4
|
+
|
5
|
+
spec = nil
|
6
|
+
Rabbit::Task::Slide.new do |task|
|
7
|
+
spec = task.spec
|
8
|
+
spec.files += Dir.glob("images/**/*.*")
|
9
|
+
spec.files += Dir.glob("toolss/**/*.*")
|
10
|
+
# spec.files -= Dir.glob("private/**/*.*")
|
11
|
+
spec.add_runtime_dependency("rabbit-theme-clear-code")
|
12
|
+
end
|
13
|
+
|
14
|
+
desc "Tag #{spec.version}"
|
15
|
+
task :tag do
|
16
|
+
sh("git", "tag", "-a", spec.version.to_s, "-m", "Publish #{spec.version}")
|
17
|
+
sh("git", "push", "--tags")
|
18
|
+
end
|
data/config.yaml
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
---
|
2
|
+
id: db-tech-showcase-online-2020
|
3
|
+
base_name: why-apache-arrow-format-is-fast
|
4
|
+
tags:
|
5
|
+
- rabbit
|
6
|
+
- dbts2020
|
7
|
+
- ApacheArrow
|
8
|
+
presentation_date: 2020-12-08
|
9
|
+
version: 2020.12.8.0
|
10
|
+
licenses:
|
11
|
+
- CC-BY-SA-4.0
|
12
|
+
slideshare_id: db-tech-showcase-online-2020
|
13
|
+
speaker_deck_id:
|
14
|
+
ustream_id:
|
15
|
+
vimeo_id:
|
16
|
+
youtube_id: _Gqxu212NFw
|
17
|
+
author:
|
18
|
+
markup_language: :rd
|
19
|
+
name: 須藤功平
|
20
|
+
email: kou@clear-code.com
|
21
|
+
rubygems_user: kou
|
22
|
+
slideshare_user: kou
|
23
|
+
speaker_deck_user:
|
@@ -0,0 +1,58 @@
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8' ?>
|
2
|
+
<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 504.00 273.60'>
|
3
|
+
<defs>
|
4
|
+
<style type='text/css'><![CDATA[
|
5
|
+
line, polyline, polygon, path, rect, circle {
|
6
|
+
fill: none;
|
7
|
+
stroke: #000000;
|
8
|
+
stroke-linecap: round;
|
9
|
+
stroke-linejoin: round;
|
10
|
+
stroke-miterlimit: 10.00;
|
11
|
+
}
|
12
|
+
]]></style>
|
13
|
+
</defs>
|
14
|
+
<rect width='100%' height='100%' style='stroke: none; fill: #FFFFFF;'/>
|
15
|
+
<rect x='0.000000000000064' y='0.00' width='504.00' height='273.60' style='stroke-width: 1.07; stroke: #FFFFFF; fill: #FFFFFF;' />
|
16
|
+
<defs>
|
17
|
+
<clipPath id='cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg='>
|
18
|
+
<rect x='169.25' y='22.78' width='329.27' height='206.58' />
|
19
|
+
</clipPath>
|
20
|
+
</defs>
|
21
|
+
<rect x='169.25' y='22.78' width='329.27' height='206.58' style='stroke-width: 1.07; stroke: none; fill: #EBEBEB;' clip-path='url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=)' />
|
22
|
+
<polyline points='220.14,229.36 220.14,22.78 ' style='stroke-width: 0.53; stroke: #FFFFFF; stroke-linecap: butt;' clip-path='url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=)' />
|
23
|
+
<polyline points='291.98,229.36 291.98,22.78 ' style='stroke-width: 0.53; stroke: #FFFFFF; stroke-linecap: butt;' clip-path='url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=)' />
|
24
|
+
<polyline points='363.82,229.36 363.82,22.78 ' style='stroke-width: 0.53; stroke: #FFFFFF; stroke-linecap: butt;' clip-path='url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=)' />
|
25
|
+
<polyline points='435.66,229.36 435.66,22.78 ' style='stroke-width: 0.53; stroke: #FFFFFF; stroke-linecap: butt;' clip-path='url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=)' />
|
26
|
+
<polyline points='169.25,173.02 498.52,173.02 ' style='stroke-width: 1.07; stroke: #FFFFFF; stroke-linecap: butt;' clip-path='url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=)' />
|
27
|
+
<polyline points='169.25,79.12 498.52,79.12 ' style='stroke-width: 1.07; stroke: #FFFFFF; stroke-linecap: butt;' clip-path='url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=)' />
|
28
|
+
<polyline points='184.22,229.36 184.22,22.78 ' style='stroke-width: 1.07; stroke: #FFFFFF; stroke-linecap: butt;' clip-path='url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=)' />
|
29
|
+
<polyline points='256.06,229.36 256.06,22.78 ' style='stroke-width: 1.07; stroke: #FFFFFF; stroke-linecap: butt;' clip-path='url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=)' />
|
30
|
+
<polyline points='327.90,229.36 327.90,22.78 ' style='stroke-width: 1.07; stroke: #FFFFFF; stroke-linecap: butt;' clip-path='url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=)' />
|
31
|
+
<polyline points='399.74,229.36 399.74,22.78 ' style='stroke-width: 1.07; stroke: #FFFFFF; stroke-linecap: butt;' clip-path='url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=)' />
|
32
|
+
<polyline points='471.58,229.36 471.58,22.78 ' style='stroke-width: 1.07; stroke: #FFFFFF; stroke-linecap: butt;' clip-path='url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=)' />
|
33
|
+
<rect x='184.22' y='130.76' width='299.34' height='84.51' style='stroke-width: 1.07; stroke: none; stroke-linecap: square; stroke-linejoin: miter; fill: #595959;' clip-path='url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=)' />
|
34
|
+
<rect x='184.22' y='36.86' width='23.95' height='84.51' style='stroke-width: 1.07; stroke: none; stroke-linecap: square; stroke-linejoin: miter; fill: #595959;' clip-path='url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=)' />
|
35
|
+
<defs>
|
36
|
+
<clipPath id='cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA='>
|
37
|
+
<rect x='0.00' y='0.00' width='504.00' height='273.60' />
|
38
|
+
</clipPath>
|
39
|
+
</defs>
|
40
|
+
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=)'><text x='56.45' y='176.05' style='font-size: 8.80px; fill: #4D4D4D; font-family: Liberation Sans;' textLength='107.86px' lengthAdjust='spacingAndGlyphs'>Athena + CSV on S3 Query</text></g>
|
41
|
+
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=)'><text x='18.07' y='82.15' style='font-size: 8.80px; fill: #4D4D4D; font-family: Liberation Sans;' textLength='146.25px' lengthAdjust='spacingAndGlyphs'>Federated S3 Query w/Apache Arrow</text></g>
|
42
|
+
<polyline points='166.51,173.02 169.25,173.02 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' clip-path='url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=)' />
|
43
|
+
<polyline points='166.51,79.12 169.25,79.12 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' clip-path='url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=)' />
|
44
|
+
<polyline points='184.22,232.10 184.22,229.36 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' clip-path='url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=)' />
|
45
|
+
<polyline points='256.06,232.10 256.06,229.36 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' clip-path='url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=)' />
|
46
|
+
<polyline points='327.90,232.10 327.90,229.36 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' clip-path='url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=)' />
|
47
|
+
<polyline points='399.74,232.10 399.74,229.36 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' clip-path='url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=)' />
|
48
|
+
<polyline points='471.58,232.10 471.58,229.36 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' clip-path='url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=)' />
|
49
|
+
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=)'><text x='181.77' y='240.34' style='font-size: 8.80px; fill: #4D4D4D; font-family: Liberation Sans;' textLength='4.89px' lengthAdjust='spacingAndGlyphs'>0</text></g>
|
50
|
+
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=)'><text x='253.61' y='240.34' style='font-size: 8.80px; fill: #4D4D4D; font-family: Liberation Sans;' textLength='4.89px' lengthAdjust='spacingAndGlyphs'>2</text></g>
|
51
|
+
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=)'><text x='325.45' y='240.34' style='font-size: 8.80px; fill: #4D4D4D; font-family: Liberation Sans;' textLength='4.89px' lengthAdjust='spacingAndGlyphs'>4</text></g>
|
52
|
+
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=)'><text x='397.29' y='240.34' style='font-size: 8.80px; fill: #4D4D4D; font-family: Liberation Sans;' textLength='4.89px' lengthAdjust='spacingAndGlyphs'>6</text></g>
|
53
|
+
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=)'><text x='469.13' y='240.34' style='font-size: 8.80px; fill: #4D4D4D; font-family: Liberation Sans;' textLength='4.89px' lengthAdjust='spacingAndGlyphs'>8</text></g>
|
54
|
+
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=)'><text x='197.86' y='252.48' style='font-size: 11.00px; font-family: Liberation Sans;' textLength='272.05px' lengthAdjust='spacingAndGlyphs'>Elapsed time to process 1 billion rows (Shorter is faster)</text></g>
|
55
|
+
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=)'><text transform='translate(13.05,144.41) rotate(-90)' style='font-size: 11.00px; font-family: Liberation Sans;' textLength='36.69px' lengthAdjust='spacingAndGlyphs'>Method</text></g>
|
56
|
+
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=)'><text x='169.25' y='14.56' style='font-size: 13.20px; font-family: Liberation Sans;' textLength='319.90px' lengthAdjust='spacingAndGlyphs'>Apache Arrow improves data interchange performance</text></g>
|
57
|
+
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=)'><text x='59.75' y='266.29' style='font-size: 8.80px; font-family: Liberation Sans;' textLength='438.77px' lengthAdjust='spacingAndGlyphs'>Data at https://github.com/awslabs/aws-athena-query-federation/tree/master/athena-federation-sdk#performance</text></g>
|
58
|
+
</svg>
|
@@ -0,0 +1,1846 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<svg
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
8
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
9
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
10
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
11
|
+
width="157.54396mm"
|
12
|
+
height="80.881943mm"
|
13
|
+
viewBox="0 0 157.54397 80.881942"
|
14
|
+
version="1.1"
|
15
|
+
id="svg8"
|
16
|
+
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
17
|
+
sodipodi:docname="apache-arrow-and-amazon-athena.svg">
|
18
|
+
<defs
|
19
|
+
id="defs2">
|
20
|
+
<marker
|
21
|
+
style="overflow:visible"
|
22
|
+
id="marker1668"
|
23
|
+
refX="0"
|
24
|
+
refY="0"
|
25
|
+
orient="auto"
|
26
|
+
inkscape:stockid="Arrow1Send"
|
27
|
+
inkscape:isstock="true">
|
28
|
+
<path
|
29
|
+
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
|
30
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
31
|
+
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
32
|
+
id="path1666" />
|
33
|
+
</marker>
|
34
|
+
<marker
|
35
|
+
style="overflow:visible"
|
36
|
+
id="marker1278"
|
37
|
+
refX="0"
|
38
|
+
refY="0"
|
39
|
+
orient="auto"
|
40
|
+
inkscape:stockid="Arrow1Send"
|
41
|
+
inkscape:isstock="true"
|
42
|
+
inkscape:collect="always">
|
43
|
+
<path
|
44
|
+
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
|
45
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
46
|
+
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
47
|
+
id="path1276" />
|
48
|
+
</marker>
|
49
|
+
<marker
|
50
|
+
style="overflow:visible"
|
51
|
+
id="marker1268"
|
52
|
+
refX="0"
|
53
|
+
refY="0"
|
54
|
+
orient="auto"
|
55
|
+
inkscape:stockid="Arrow1Send"
|
56
|
+
inkscape:isstock="true">
|
57
|
+
<path
|
58
|
+
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
|
59
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
60
|
+
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
61
|
+
id="path1266" />
|
62
|
+
</marker>
|
63
|
+
<marker
|
64
|
+
style="overflow:visible"
|
65
|
+
id="TriangleOutS"
|
66
|
+
refX="0"
|
67
|
+
refY="0"
|
68
|
+
orient="auto"
|
69
|
+
inkscape:stockid="TriangleOutS"
|
70
|
+
inkscape:isstock="true">
|
71
|
+
<path
|
72
|
+
transform="scale(0.2)"
|
73
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
74
|
+
d="M 5.77,0 -2.88,5 V -5 Z"
|
75
|
+
id="path2733" />
|
76
|
+
</marker>
|
77
|
+
<marker
|
78
|
+
style="overflow:visible"
|
79
|
+
id="marker2327"
|
80
|
+
refX="0"
|
81
|
+
refY="0"
|
82
|
+
orient="auto"
|
83
|
+
inkscape:stockid="Arrow1Send"
|
84
|
+
inkscape:isstock="true">
|
85
|
+
<path
|
86
|
+
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
|
87
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
88
|
+
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
89
|
+
id="path2325" />
|
90
|
+
</marker>
|
91
|
+
<marker
|
92
|
+
style="overflow:visible"
|
93
|
+
id="marker2151"
|
94
|
+
refX="0"
|
95
|
+
refY="0"
|
96
|
+
orient="auto"
|
97
|
+
inkscape:stockid="Arrow1Send"
|
98
|
+
inkscape:isstock="true">
|
99
|
+
<path
|
100
|
+
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
|
101
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
102
|
+
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
103
|
+
id="path2149" />
|
104
|
+
</marker>
|
105
|
+
<marker
|
106
|
+
style="overflow:visible"
|
107
|
+
id="marker2092"
|
108
|
+
refX="0"
|
109
|
+
refY="0"
|
110
|
+
orient="auto"
|
111
|
+
inkscape:stockid="Arrow1Send"
|
112
|
+
inkscape:isstock="true">
|
113
|
+
<path
|
114
|
+
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
|
115
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
116
|
+
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
117
|
+
id="path2090" />
|
118
|
+
</marker>
|
119
|
+
<rect
|
120
|
+
x="-213.16458"
|
121
|
+
y="96.868965"
|
122
|
+
width="19.35424"
|
123
|
+
height="22.214643"
|
124
|
+
id="rect2450" />
|
125
|
+
<marker
|
126
|
+
style="overflow:visible"
|
127
|
+
id="marker2259"
|
128
|
+
refX="0"
|
129
|
+
refY="0"
|
130
|
+
orient="auto"
|
131
|
+
inkscape:stockid="Arrow1Send"
|
132
|
+
inkscape:isstock="true">
|
133
|
+
<path
|
134
|
+
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
|
135
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
136
|
+
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
137
|
+
id="path2257" />
|
138
|
+
</marker>
|
139
|
+
<marker
|
140
|
+
style="overflow:visible"
|
141
|
+
id="marker1914"
|
142
|
+
refX="0"
|
143
|
+
refY="0"
|
144
|
+
orient="auto"
|
145
|
+
inkscape:stockid="Arrow1Send"
|
146
|
+
inkscape:isstock="true">
|
147
|
+
<path
|
148
|
+
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
|
149
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
150
|
+
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
151
|
+
id="path1912" />
|
152
|
+
</marker>
|
153
|
+
<marker
|
154
|
+
style="overflow:visible"
|
155
|
+
id="marker1641"
|
156
|
+
refX="0"
|
157
|
+
refY="0"
|
158
|
+
orient="auto"
|
159
|
+
inkscape:stockid="Arrow1Send"
|
160
|
+
inkscape:isstock="true">
|
161
|
+
<path
|
162
|
+
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
|
163
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
164
|
+
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
165
|
+
id="path1639" />
|
166
|
+
</marker>
|
167
|
+
<marker
|
168
|
+
style="overflow:visible"
|
169
|
+
id="marker1571"
|
170
|
+
refX="0"
|
171
|
+
refY="0"
|
172
|
+
orient="auto"
|
173
|
+
inkscape:stockid="Arrow1Send"
|
174
|
+
inkscape:isstock="true">
|
175
|
+
<path
|
176
|
+
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
|
177
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
178
|
+
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
179
|
+
id="path1569" />
|
180
|
+
</marker>
|
181
|
+
<marker
|
182
|
+
style="overflow:visible"
|
183
|
+
id="Arrow1Send"
|
184
|
+
refX="0"
|
185
|
+
refY="0"
|
186
|
+
orient="auto"
|
187
|
+
inkscape:stockid="Arrow1Send"
|
188
|
+
inkscape:isstock="true"
|
189
|
+
inkscape:collect="always">
|
190
|
+
<path
|
191
|
+
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
|
192
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
193
|
+
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
194
|
+
id="path1308" />
|
195
|
+
</marker>
|
196
|
+
<marker
|
197
|
+
inkscape:isstock="true"
|
198
|
+
style="overflow:visible"
|
199
|
+
id="marker8361"
|
200
|
+
refX="0"
|
201
|
+
refY="0"
|
202
|
+
orient="auto"
|
203
|
+
inkscape:stockid="Arrow1Mend">
|
204
|
+
<path
|
205
|
+
transform="matrix(-0.4,0,0,-0.4,-4,0)"
|
206
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
207
|
+
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
208
|
+
id="path8359"
|
209
|
+
inkscape:connector-curvature="0" />
|
210
|
+
</marker>
|
211
|
+
<marker
|
212
|
+
inkscape:isstock="true"
|
213
|
+
style="overflow:visible"
|
214
|
+
id="marker6254"
|
215
|
+
refX="0"
|
216
|
+
refY="0"
|
217
|
+
orient="auto"
|
218
|
+
inkscape:stockid="Arrow1Mend">
|
219
|
+
<path
|
220
|
+
transform="matrix(-0.4,0,0,-0.4,-4,0)"
|
221
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
222
|
+
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
223
|
+
id="path6252"
|
224
|
+
inkscape:connector-curvature="0" />
|
225
|
+
</marker>
|
226
|
+
<marker
|
227
|
+
inkscape:stockid="Arrow1Mstart"
|
228
|
+
orient="auto"
|
229
|
+
refY="0"
|
230
|
+
refX="0"
|
231
|
+
id="marker6190"
|
232
|
+
style="overflow:visible"
|
233
|
+
inkscape:isstock="true">
|
234
|
+
<path
|
235
|
+
id="path6188"
|
236
|
+
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
237
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
238
|
+
transform="matrix(0.4,0,0,0.4,4,0)"
|
239
|
+
inkscape:connector-curvature="0" />
|
240
|
+
</marker>
|
241
|
+
<marker
|
242
|
+
inkscape:isstock="true"
|
243
|
+
style="overflow:visible"
|
244
|
+
id="marker4687"
|
245
|
+
refX="0"
|
246
|
+
refY="0"
|
247
|
+
orient="auto"
|
248
|
+
inkscape:stockid="Arrow1Mend">
|
249
|
+
<path
|
250
|
+
transform="matrix(-0.4,0,0,-0.4,-4,0)"
|
251
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
252
|
+
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
253
|
+
id="path4685"
|
254
|
+
inkscape:connector-curvature="0" />
|
255
|
+
</marker>
|
256
|
+
<marker
|
257
|
+
inkscape:stockid="Arrow1Lstart"
|
258
|
+
orient="auto"
|
259
|
+
refY="0"
|
260
|
+
refX="0"
|
261
|
+
id="Arrow1Lstart"
|
262
|
+
style="overflow:visible"
|
263
|
+
inkscape:isstock="true">
|
264
|
+
<path
|
265
|
+
id="path1831"
|
266
|
+
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
267
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
268
|
+
transform="matrix(0.8,0,0,0.8,10,0)"
|
269
|
+
inkscape:connector-curvature="0" />
|
270
|
+
</marker>
|
271
|
+
<marker
|
272
|
+
inkscape:stockid="Arrow1Lend"
|
273
|
+
orient="auto"
|
274
|
+
refY="0"
|
275
|
+
refX="0"
|
276
|
+
id="Arrow1Lend"
|
277
|
+
style="overflow:visible"
|
278
|
+
inkscape:isstock="true">
|
279
|
+
<path
|
280
|
+
id="path1834"
|
281
|
+
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
282
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
283
|
+
transform="matrix(-0.8,0,0,-0.8,-10,0)"
|
284
|
+
inkscape:connector-curvature="0" />
|
285
|
+
</marker>
|
286
|
+
<inkscape:perspective
|
287
|
+
id="perspective95"
|
288
|
+
inkscape:persp3d-origin="24.000007 : 36.733068 : 1"
|
289
|
+
inkscape:vp_z="48.00001 : 44.733068 : 1"
|
290
|
+
inkscape:vp_y="0 : 999.99974 : 0"
|
291
|
+
inkscape:vp_x="0 : 44.733068 : 1"
|
292
|
+
sodipodi:type="inkscape:persp3d" />
|
293
|
+
<linearGradient
|
294
|
+
id="linearGradient4126">
|
295
|
+
<stop
|
296
|
+
id="stop4128"
|
297
|
+
offset="0.0000000"
|
298
|
+
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
|
299
|
+
<stop
|
300
|
+
id="stop4130"
|
301
|
+
offset="1.0000000"
|
302
|
+
style="stop-color:#ffffff;stop-opacity:0.16494845;" />
|
303
|
+
</linearGradient>
|
304
|
+
<linearGradient
|
305
|
+
id="linearGradient4114"
|
306
|
+
inkscape:collect="always">
|
307
|
+
<stop
|
308
|
+
id="stop4116"
|
309
|
+
offset="0"
|
310
|
+
style="stop-color:#000000;stop-opacity:1;" />
|
311
|
+
<stop
|
312
|
+
id="stop4118"
|
313
|
+
offset="1"
|
314
|
+
style="stop-color:#000000;stop-opacity:0;" />
|
315
|
+
</linearGradient>
|
316
|
+
<linearGradient
|
317
|
+
id="linearGradient3962">
|
318
|
+
<stop
|
319
|
+
id="stop3964"
|
320
|
+
offset="0.0000000"
|
321
|
+
style="stop-color:#d3e9ff;stop-opacity:1.0000000;" />
|
322
|
+
<stop
|
323
|
+
id="stop4134"
|
324
|
+
offset="0.15517241"
|
325
|
+
style="stop-color:#d3e9ff;stop-opacity:1.0000000;" />
|
326
|
+
<stop
|
327
|
+
id="stop4346"
|
328
|
+
offset="0.75000000"
|
329
|
+
style="stop-color:#4074ae;stop-opacity:1.0000000;" />
|
330
|
+
<stop
|
331
|
+
id="stop3966"
|
332
|
+
offset="1.0000000"
|
333
|
+
style="stop-color:#36486c;stop-opacity:1.0000000;" />
|
334
|
+
</linearGradient>
|
335
|
+
<inkscape:perspective
|
336
|
+
id="perspective31"
|
337
|
+
inkscape:persp3d-origin="24.000007 : 36.733068 : 1"
|
338
|
+
inkscape:vp_z="48.00001 : 44.733068 : 1"
|
339
|
+
inkscape:vp_y="0 : 999.99974 : 0"
|
340
|
+
inkscape:vp_x="0 : 44.733068 : 1"
|
341
|
+
sodipodi:type="inkscape:persp3d" />
|
342
|
+
<linearGradient
|
343
|
+
id="linearGradient3264">
|
344
|
+
<stop
|
345
|
+
id="stop3266"
|
346
|
+
offset="0"
|
347
|
+
style="stop-color:#c9c9c9;stop-opacity:1;" />
|
348
|
+
<stop
|
349
|
+
style="stop-color:#f8f8f8;stop-opacity:1;"
|
350
|
+
offset="0.25"
|
351
|
+
id="stop3276" />
|
352
|
+
<stop
|
353
|
+
style="stop-color:#e2e2e2;stop-opacity:1;"
|
354
|
+
offset="0.5"
|
355
|
+
id="stop3272" />
|
356
|
+
<stop
|
357
|
+
id="stop3274"
|
358
|
+
offset="0.75"
|
359
|
+
style="stop-color:#b0b0b0;stop-opacity:1;" />
|
360
|
+
<stop
|
361
|
+
id="stop3268"
|
362
|
+
offset="1"
|
363
|
+
style="stop-color:#c9c9c9;stop-opacity:1;" />
|
364
|
+
</linearGradient>
|
365
|
+
<linearGradient
|
366
|
+
id="linearGradient2300">
|
367
|
+
<stop
|
368
|
+
style="stop-color:#000000;stop-opacity:0.32673267;"
|
369
|
+
offset="0.0000000"
|
370
|
+
id="stop2302" />
|
371
|
+
<stop
|
372
|
+
style="stop-color:#000000;stop-opacity:0;"
|
373
|
+
offset="1"
|
374
|
+
id="stop2304" />
|
375
|
+
</linearGradient>
|
376
|
+
<linearGradient
|
377
|
+
y2="248.6311"
|
378
|
+
x2="153.0005"
|
379
|
+
y1="15.4238"
|
380
|
+
x1="99.777298"
|
381
|
+
gradientUnits="userSpaceOnUse"
|
382
|
+
id="aigrd1">
|
383
|
+
<stop
|
384
|
+
id="stop53300"
|
385
|
+
style="stop-color:#184375"
|
386
|
+
offset="0" />
|
387
|
+
<stop
|
388
|
+
id="stop53302"
|
389
|
+
style="stop-color:#C8BDDC"
|
390
|
+
offset="1" />
|
391
|
+
</linearGradient>
|
392
|
+
<linearGradient
|
393
|
+
gradientTransform="matrix(0.200685,0,0,0.200685,-0.585758,-1.050787)"
|
394
|
+
y2="248.6311"
|
395
|
+
x2="153.0005"
|
396
|
+
y1="15.4238"
|
397
|
+
x1="99.777298"
|
398
|
+
gradientUnits="userSpaceOnUse"
|
399
|
+
id="linearGradient53551"
|
400
|
+
xlink:href="#aigrd1"
|
401
|
+
inkscape:collect="always" />
|
402
|
+
<inkscape:perspective
|
403
|
+
id="perspective22"
|
404
|
+
inkscape:persp3d-origin="24.000007 : 36.733068 : 1"
|
405
|
+
inkscape:vp_z="48.00001 : 44.733068 : 1"
|
406
|
+
inkscape:vp_y="0 : 999.99974 : 0"
|
407
|
+
inkscape:vp_x="0 : 44.733068 : 1"
|
408
|
+
sodipodi:type="inkscape:persp3d" />
|
409
|
+
<inkscape:perspective
|
410
|
+
id="perspective114"
|
411
|
+
inkscape:persp3d-origin="24.000007 : 36.733068 : 1"
|
412
|
+
inkscape:vp_z="48.00001 : 44.733068 : 1"
|
413
|
+
inkscape:vp_y="0 : 999.99974 : 0"
|
414
|
+
inkscape:vp_x="0 : 44.733068 : 1"
|
415
|
+
sodipodi:type="inkscape:persp3d" />
|
416
|
+
<linearGradient
|
417
|
+
id="linearGradient5048">
|
418
|
+
<stop
|
419
|
+
id="stop5050"
|
420
|
+
offset="0"
|
421
|
+
style="stop-color:black;stop-opacity:0;" />
|
422
|
+
<stop
|
423
|
+
style="stop-color:black;stop-opacity:1;"
|
424
|
+
offset="0.5"
|
425
|
+
id="stop5056" />
|
426
|
+
<stop
|
427
|
+
id="stop5052"
|
428
|
+
offset="1"
|
429
|
+
style="stop-color:black;stop-opacity:0;" />
|
430
|
+
</linearGradient>
|
431
|
+
<linearGradient
|
432
|
+
id="linearGradient6719">
|
433
|
+
<stop
|
434
|
+
id="stop6721"
|
435
|
+
offset="0"
|
436
|
+
style="stop-color:#73d216;stop-opacity:1;" />
|
437
|
+
<stop
|
438
|
+
id="stop6723"
|
439
|
+
offset="1.0000000"
|
440
|
+
style="stop-color:#d5f7b3;stop-opacity:1.0000000;" />
|
441
|
+
</linearGradient>
|
442
|
+
<linearGradient
|
443
|
+
id="linearGradient6711">
|
444
|
+
<stop
|
445
|
+
id="stop6713"
|
446
|
+
offset="0.0000000"
|
447
|
+
style="stop-color:#5b8ccb;stop-opacity:1.0000000;" />
|
448
|
+
<stop
|
449
|
+
id="stop6715"
|
450
|
+
offset="1.0000000"
|
451
|
+
style="stop-color:#3465a4;stop-opacity:1.0000000;" />
|
452
|
+
</linearGradient>
|
453
|
+
<linearGradient
|
454
|
+
id="linearGradient6699">
|
455
|
+
<stop
|
456
|
+
id="stop6701"
|
457
|
+
offset="0.0000000"
|
458
|
+
style="stop-color:#ff7171;stop-opacity:1.0000000;" />
|
459
|
+
<stop
|
460
|
+
id="stop6703"
|
461
|
+
offset="1.0000000"
|
462
|
+
style="stop-color:#cc0000;stop-opacity:1.0000000;" />
|
463
|
+
</linearGradient>
|
464
|
+
<radialGradient
|
465
|
+
gradientUnits="userSpaceOnUse"
|
466
|
+
gradientTransform="matrix(1,0,0,0.284916,0,30.08928)"
|
467
|
+
r="15.821514"
|
468
|
+
fy="42.07798"
|
469
|
+
fx="24.306795"
|
470
|
+
cy="42.07798"
|
471
|
+
cx="24.306795"
|
472
|
+
id="radialGradient4548"
|
473
|
+
xlink:href="#linearGradient4114"
|
474
|
+
inkscape:collect="always" />
|
475
|
+
<linearGradient
|
476
|
+
id="linearGradient269">
|
477
|
+
<stop
|
478
|
+
style="stop-color:#a3a3a3;stop-opacity:1.0000000;"
|
479
|
+
offset="0.0000000"
|
480
|
+
id="stop270" />
|
481
|
+
<stop
|
482
|
+
style="stop-color:#4c4c4c;stop-opacity:1.0000000;"
|
483
|
+
offset="1.0000000"
|
484
|
+
id="stop271" />
|
485
|
+
</linearGradient>
|
486
|
+
<linearGradient
|
487
|
+
id="linearGradient259">
|
488
|
+
<stop
|
489
|
+
style="stop-color:#fafafa;stop-opacity:1.0000000;"
|
490
|
+
offset="0.0000000"
|
491
|
+
id="stop260" />
|
492
|
+
<stop
|
493
|
+
style="stop-color:#bbbbbb;stop-opacity:1.0000000;"
|
494
|
+
offset="1.0000000"
|
495
|
+
id="stop261" />
|
496
|
+
</linearGradient>
|
497
|
+
<linearGradient
|
498
|
+
id="linearGradient15662">
|
499
|
+
<stop
|
500
|
+
style="stop-color:#ffffff;stop-opacity:1.0000000;"
|
501
|
+
offset="0.0000000"
|
502
|
+
id="stop15664" />
|
503
|
+
<stop
|
504
|
+
style="stop-color:#f8f8f8;stop-opacity:1.0000000;"
|
505
|
+
offset="1.0000000"
|
506
|
+
id="stop15666" />
|
507
|
+
</linearGradient>
|
508
|
+
<linearGradient
|
509
|
+
id="aigrd13"
|
510
|
+
gradientUnits="userSpaceOnUse"
|
511
|
+
x1="97.241203"
|
512
|
+
y1="82.093803"
|
513
|
+
x2="118.302"
|
514
|
+
y2="99.298401">
|
515
|
+
<stop
|
516
|
+
offset="0"
|
517
|
+
style="stop-color:#E8F066"
|
518
|
+
id="stop12995" />
|
519
|
+
<stop
|
520
|
+
offset="1"
|
521
|
+
style="stop-color:#949941"
|
522
|
+
id="stop12997" />
|
523
|
+
</linearGradient>
|
524
|
+
<linearGradient
|
525
|
+
id="aigrd12"
|
526
|
+
gradientUnits="userSpaceOnUse"
|
527
|
+
x1="90.8311"
|
528
|
+
y1="89.110397"
|
529
|
+
x2="115.5175"
|
530
|
+
y2="100.6528">
|
531
|
+
<stop
|
532
|
+
offset="0"
|
533
|
+
style="stop-color:#E8F066"
|
534
|
+
id="stop12988" />
|
535
|
+
<stop
|
536
|
+
offset="1"
|
537
|
+
style="stop-color:#777A34"
|
538
|
+
id="stop12990" />
|
539
|
+
</linearGradient>
|
540
|
+
<linearGradient
|
541
|
+
id="aigrd11"
|
542
|
+
gradientUnits="userSpaceOnUse"
|
543
|
+
x1="105.0923"
|
544
|
+
y1="75.109901"
|
545
|
+
x2="124.8197"
|
546
|
+
y2="92.612297">
|
547
|
+
<stop
|
548
|
+
offset="0"
|
549
|
+
style="stop-color:#3FA6CC"
|
550
|
+
id="stop12981" />
|
551
|
+
<stop
|
552
|
+
offset="1"
|
553
|
+
style="stop-color:#00687A"
|
554
|
+
id="stop12983" />
|
555
|
+
</linearGradient>
|
556
|
+
<linearGradient
|
557
|
+
id="aigrd10"
|
558
|
+
gradientUnits="userSpaceOnUse"
|
559
|
+
x1="107.8672"
|
560
|
+
y1="84.757797"
|
561
|
+
x2="126.1107"
|
562
|
+
y2="94.800003">
|
563
|
+
<stop
|
564
|
+
offset="0"
|
565
|
+
style="stop-color:#2C7894"
|
566
|
+
id="stop12974" />
|
567
|
+
<stop
|
568
|
+
offset="1"
|
569
|
+
style="stop-color:#0E3D47"
|
570
|
+
id="stop12976" />
|
571
|
+
</linearGradient>
|
572
|
+
<linearGradient
|
573
|
+
id="aigrd9"
|
574
|
+
gradientUnits="userSpaceOnUse"
|
575
|
+
x1="105.8184"
|
576
|
+
y1="78.107903"
|
577
|
+
x2="118.2002"
|
578
|
+
y2="95.899902">
|
579
|
+
<stop
|
580
|
+
offset="0"
|
581
|
+
style="stop-color:#C1553A"
|
582
|
+
id="stop12967" />
|
583
|
+
<stop
|
584
|
+
offset="1"
|
585
|
+
style="stop-color:#803926"
|
586
|
+
id="stop12969" />
|
587
|
+
</linearGradient>
|
588
|
+
<linearGradient
|
589
|
+
id="aigrd8"
|
590
|
+
gradientUnits="userSpaceOnUse"
|
591
|
+
x1="106.0254"
|
592
|
+
y1="81.1763"
|
593
|
+
x2="118.3481"
|
594
|
+
y2="98.883202">
|
595
|
+
<stop
|
596
|
+
offset="0"
|
597
|
+
style="stop-color:#C09287"
|
598
|
+
id="stop12960" />
|
599
|
+
<stop
|
600
|
+
offset="1"
|
601
|
+
style="stop-color:#803926"
|
602
|
+
id="stop12962" />
|
603
|
+
</linearGradient>
|
604
|
+
<linearGradient
|
605
|
+
y2="98.883202"
|
606
|
+
x2="118.3481"
|
607
|
+
y1="81.1763"
|
608
|
+
x1="106.0254"
|
609
|
+
gradientUnits="userSpaceOnUse"
|
610
|
+
id="linearGradient1681"
|
611
|
+
xlink:href="#aigrd8"
|
612
|
+
inkscape:collect="always" />
|
613
|
+
<linearGradient
|
614
|
+
y2="95.899902"
|
615
|
+
x2="118.2002"
|
616
|
+
y1="78.107903"
|
617
|
+
x1="105.8184"
|
618
|
+
gradientUnits="userSpaceOnUse"
|
619
|
+
id="linearGradient1683"
|
620
|
+
xlink:href="#aigrd9"
|
621
|
+
inkscape:collect="always" />
|
622
|
+
<linearGradient
|
623
|
+
y2="94.800003"
|
624
|
+
x2="126.1107"
|
625
|
+
y1="84.757797"
|
626
|
+
x1="107.8672"
|
627
|
+
gradientUnits="userSpaceOnUse"
|
628
|
+
id="linearGradient1685"
|
629
|
+
xlink:href="#aigrd10"
|
630
|
+
inkscape:collect="always" />
|
631
|
+
<linearGradient
|
632
|
+
y2="92.612297"
|
633
|
+
x2="124.8197"
|
634
|
+
y1="75.109901"
|
635
|
+
x1="105.0923"
|
636
|
+
gradientUnits="userSpaceOnUse"
|
637
|
+
id="linearGradient1687"
|
638
|
+
xlink:href="#aigrd11"
|
639
|
+
inkscape:collect="always" />
|
640
|
+
<linearGradient
|
641
|
+
y2="100.6528"
|
642
|
+
x2="115.5175"
|
643
|
+
y1="89.110397"
|
644
|
+
x1="90.8311"
|
645
|
+
gradientUnits="userSpaceOnUse"
|
646
|
+
id="linearGradient1689"
|
647
|
+
xlink:href="#aigrd12"
|
648
|
+
inkscape:collect="always" />
|
649
|
+
<linearGradient
|
650
|
+
y2="99.298401"
|
651
|
+
x2="118.302"
|
652
|
+
y1="82.093803"
|
653
|
+
x1="97.241203"
|
654
|
+
gradientUnits="userSpaceOnUse"
|
655
|
+
id="linearGradient1691"
|
656
|
+
xlink:href="#aigrd13"
|
657
|
+
inkscape:collect="always" />
|
658
|
+
<clipPath
|
659
|
+
id="cpNzguMjd8NDk4LjUyfDIyOS4zNnwyMi43OA==">
|
660
|
+
<rect
|
661
|
+
x="78.269997"
|
662
|
+
y="22.780001"
|
663
|
+
width="420.25"
|
664
|
+
height="206.58"
|
665
|
+
id="rect10" />
|
666
|
+
</clipPath>
|
667
|
+
<clipPath
|
668
|
+
id="clipPath124">
|
669
|
+
<rect
|
670
|
+
x="78.269997"
|
671
|
+
y="22.780001"
|
672
|
+
width="420.25"
|
673
|
+
height="206.58"
|
674
|
+
id="rect122" />
|
675
|
+
</clipPath>
|
676
|
+
<clipPath
|
677
|
+
id="clipPath128">
|
678
|
+
<rect
|
679
|
+
x="78.269997"
|
680
|
+
y="22.780001"
|
681
|
+
width="420.25"
|
682
|
+
height="206.58"
|
683
|
+
id="rect126" />
|
684
|
+
</clipPath>
|
685
|
+
<clipPath
|
686
|
+
id="clipPath132">
|
687
|
+
<rect
|
688
|
+
x="78.269997"
|
689
|
+
y="22.780001"
|
690
|
+
width="420.25"
|
691
|
+
height="206.58"
|
692
|
+
id="rect130" />
|
693
|
+
</clipPath>
|
694
|
+
<clipPath
|
695
|
+
id="clipPath136">
|
696
|
+
<rect
|
697
|
+
x="78.269997"
|
698
|
+
y="22.780001"
|
699
|
+
width="420.25"
|
700
|
+
height="206.58"
|
701
|
+
id="rect134" />
|
702
|
+
</clipPath>
|
703
|
+
<clipPath
|
704
|
+
id="clipPath140">
|
705
|
+
<rect
|
706
|
+
x="78.269997"
|
707
|
+
y="22.780001"
|
708
|
+
width="420.25"
|
709
|
+
height="206.58"
|
710
|
+
id="rect138" />
|
711
|
+
</clipPath>
|
712
|
+
<clipPath
|
713
|
+
id="clipPath144">
|
714
|
+
<rect
|
715
|
+
x="78.269997"
|
716
|
+
y="22.780001"
|
717
|
+
width="420.25"
|
718
|
+
height="206.58"
|
719
|
+
id="rect142" />
|
720
|
+
</clipPath>
|
721
|
+
<clipPath
|
722
|
+
id="clipPath148">
|
723
|
+
<rect
|
724
|
+
x="78.269997"
|
725
|
+
y="22.780001"
|
726
|
+
width="420.25"
|
727
|
+
height="206.58"
|
728
|
+
id="rect146" />
|
729
|
+
</clipPath>
|
730
|
+
<clipPath
|
731
|
+
id="clipPath152">
|
732
|
+
<rect
|
733
|
+
x="78.269997"
|
734
|
+
y="22.780001"
|
735
|
+
width="420.25"
|
736
|
+
height="206.58"
|
737
|
+
id="rect150" />
|
738
|
+
</clipPath>
|
739
|
+
<clipPath
|
740
|
+
id="clipPath156">
|
741
|
+
<rect
|
742
|
+
x="78.269997"
|
743
|
+
y="22.780001"
|
744
|
+
width="420.25"
|
745
|
+
height="206.58"
|
746
|
+
id="rect154" />
|
747
|
+
</clipPath>
|
748
|
+
<clipPath
|
749
|
+
id="clipPath160">
|
750
|
+
<rect
|
751
|
+
x="78.269997"
|
752
|
+
y="22.780001"
|
753
|
+
width="420.25"
|
754
|
+
height="206.58"
|
755
|
+
id="rect158" />
|
756
|
+
</clipPath>
|
757
|
+
<clipPath
|
758
|
+
id="clipPath164">
|
759
|
+
<rect
|
760
|
+
x="78.269997"
|
761
|
+
y="22.780001"
|
762
|
+
width="420.25"
|
763
|
+
height="206.58"
|
764
|
+
id="rect162" />
|
765
|
+
</clipPath>
|
766
|
+
<clipPath
|
767
|
+
id="clipPath168">
|
768
|
+
<rect
|
769
|
+
x="78.269997"
|
770
|
+
y="22.780001"
|
771
|
+
width="420.25"
|
772
|
+
height="206.58"
|
773
|
+
id="rect166" />
|
774
|
+
</clipPath>
|
775
|
+
<clipPath
|
776
|
+
id="clipPath172">
|
777
|
+
<rect
|
778
|
+
x="78.269997"
|
779
|
+
y="22.780001"
|
780
|
+
width="420.25"
|
781
|
+
height="206.58"
|
782
|
+
id="rect170" />
|
783
|
+
</clipPath>
|
784
|
+
<clipPath
|
785
|
+
id="cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=">
|
786
|
+
<rect
|
787
|
+
x="0"
|
788
|
+
y="0"
|
789
|
+
width="504"
|
790
|
+
height="273.60001"
|
791
|
+
id="rect43" />
|
792
|
+
</clipPath>
|
793
|
+
<clipPath
|
794
|
+
id="clipPath178">
|
795
|
+
<rect
|
796
|
+
x="0"
|
797
|
+
y="0"
|
798
|
+
width="504"
|
799
|
+
height="273.60001"
|
800
|
+
id="rect176" />
|
801
|
+
</clipPath>
|
802
|
+
<clipPath
|
803
|
+
id="clipPath182">
|
804
|
+
<rect
|
805
|
+
x="0"
|
806
|
+
y="0"
|
807
|
+
width="504"
|
808
|
+
height="273.60001"
|
809
|
+
id="rect180" />
|
810
|
+
</clipPath>
|
811
|
+
<clipPath
|
812
|
+
id="clipPath186">
|
813
|
+
<rect
|
814
|
+
x="0"
|
815
|
+
y="0"
|
816
|
+
width="504"
|
817
|
+
height="273.60001"
|
818
|
+
id="rect184" />
|
819
|
+
</clipPath>
|
820
|
+
<clipPath
|
821
|
+
id="clipPath190">
|
822
|
+
<rect
|
823
|
+
x="0"
|
824
|
+
y="0"
|
825
|
+
width="504"
|
826
|
+
height="273.60001"
|
827
|
+
id="rect188" />
|
828
|
+
</clipPath>
|
829
|
+
<clipPath
|
830
|
+
id="clipPath194">
|
831
|
+
<rect
|
832
|
+
x="0"
|
833
|
+
y="0"
|
834
|
+
width="504"
|
835
|
+
height="273.60001"
|
836
|
+
id="rect192" />
|
837
|
+
</clipPath>
|
838
|
+
<clipPath
|
839
|
+
id="clipPath198">
|
840
|
+
<rect
|
841
|
+
x="0"
|
842
|
+
y="0"
|
843
|
+
width="504"
|
844
|
+
height="273.60001"
|
845
|
+
id="rect196" />
|
846
|
+
</clipPath>
|
847
|
+
<clipPath
|
848
|
+
id="clipPath202">
|
849
|
+
<rect
|
850
|
+
x="0"
|
851
|
+
y="0"
|
852
|
+
width="504"
|
853
|
+
height="273.60001"
|
854
|
+
id="rect200" />
|
855
|
+
</clipPath>
|
856
|
+
<clipPath
|
857
|
+
id="clipPath206">
|
858
|
+
<rect
|
859
|
+
x="0"
|
860
|
+
y="0"
|
861
|
+
width="504"
|
862
|
+
height="273.60001"
|
863
|
+
id="rect204" />
|
864
|
+
</clipPath>
|
865
|
+
<clipPath
|
866
|
+
id="clipPath210">
|
867
|
+
<rect
|
868
|
+
x="0"
|
869
|
+
y="0"
|
870
|
+
width="504"
|
871
|
+
height="273.60001"
|
872
|
+
id="rect208" />
|
873
|
+
</clipPath>
|
874
|
+
<clipPath
|
875
|
+
id="clipPath214">
|
876
|
+
<rect
|
877
|
+
x="0"
|
878
|
+
y="0"
|
879
|
+
width="504"
|
880
|
+
height="273.60001"
|
881
|
+
id="rect212" />
|
882
|
+
</clipPath>
|
883
|
+
<clipPath
|
884
|
+
id="clipPath218">
|
885
|
+
<rect
|
886
|
+
x="0"
|
887
|
+
y="0"
|
888
|
+
width="504"
|
889
|
+
height="273.60001"
|
890
|
+
id="rect216" />
|
891
|
+
</clipPath>
|
892
|
+
<clipPath
|
893
|
+
id="clipPath222">
|
894
|
+
<rect
|
895
|
+
x="0"
|
896
|
+
y="0"
|
897
|
+
width="504"
|
898
|
+
height="273.60001"
|
899
|
+
id="rect220" />
|
900
|
+
</clipPath>
|
901
|
+
<clipPath
|
902
|
+
id="clipPath226">
|
903
|
+
<rect
|
904
|
+
x="0"
|
905
|
+
y="0"
|
906
|
+
width="504"
|
907
|
+
height="273.60001"
|
908
|
+
id="rect224" />
|
909
|
+
</clipPath>
|
910
|
+
<clipPath
|
911
|
+
id="clipPath230">
|
912
|
+
<rect
|
913
|
+
x="0"
|
914
|
+
y="0"
|
915
|
+
width="504"
|
916
|
+
height="273.60001"
|
917
|
+
id="rect228" />
|
918
|
+
</clipPath>
|
919
|
+
<clipPath
|
920
|
+
id="clipPath234">
|
921
|
+
<rect
|
922
|
+
x="0"
|
923
|
+
y="0"
|
924
|
+
width="504"
|
925
|
+
height="273.60001"
|
926
|
+
id="rect232" />
|
927
|
+
</clipPath>
|
928
|
+
<clipPath
|
929
|
+
id="cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=-1">
|
930
|
+
<rect
|
931
|
+
x="0"
|
932
|
+
y="0"
|
933
|
+
width="504"
|
934
|
+
height="273.60001"
|
935
|
+
id="rect43-9" />
|
936
|
+
</clipPath>
|
937
|
+
<clipPath
|
938
|
+
id="cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=-2">
|
939
|
+
<rect
|
940
|
+
x="0"
|
941
|
+
y="0"
|
942
|
+
width="504"
|
943
|
+
height="273.60001"
|
944
|
+
id="rect43-2" />
|
945
|
+
</clipPath>
|
946
|
+
<clipPath
|
947
|
+
id="cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=">
|
948
|
+
<rect
|
949
|
+
x="169.25"
|
950
|
+
y="22.780001"
|
951
|
+
width="329.26999"
|
952
|
+
height="206.58"
|
953
|
+
id="rect10-8" />
|
954
|
+
</clipPath>
|
955
|
+
<clipPath
|
956
|
+
id="clipPath937">
|
957
|
+
<rect
|
958
|
+
x="169.25"
|
959
|
+
y="22.780001"
|
960
|
+
width="329.26999"
|
961
|
+
height="206.58"
|
962
|
+
id="rect935" />
|
963
|
+
</clipPath>
|
964
|
+
<clipPath
|
965
|
+
id="clipPath941">
|
966
|
+
<rect
|
967
|
+
x="169.25"
|
968
|
+
y="22.780001"
|
969
|
+
width="329.26999"
|
970
|
+
height="206.58"
|
971
|
+
id="rect939" />
|
972
|
+
</clipPath>
|
973
|
+
<clipPath
|
974
|
+
id="clipPath945">
|
975
|
+
<rect
|
976
|
+
x="169.25"
|
977
|
+
y="22.780001"
|
978
|
+
width="329.26999"
|
979
|
+
height="206.58"
|
980
|
+
id="rect943" />
|
981
|
+
</clipPath>
|
982
|
+
<clipPath
|
983
|
+
id="clipPath949">
|
984
|
+
<rect
|
985
|
+
x="169.25"
|
986
|
+
y="22.780001"
|
987
|
+
width="329.26999"
|
988
|
+
height="206.58"
|
989
|
+
id="rect947" />
|
990
|
+
</clipPath>
|
991
|
+
<clipPath
|
992
|
+
id="clipPath953">
|
993
|
+
<rect
|
994
|
+
x="169.25"
|
995
|
+
y="22.780001"
|
996
|
+
width="329.26999"
|
997
|
+
height="206.58"
|
998
|
+
id="rect951" />
|
999
|
+
</clipPath>
|
1000
|
+
<clipPath
|
1001
|
+
id="clipPath957">
|
1002
|
+
<rect
|
1003
|
+
x="169.25"
|
1004
|
+
y="22.780001"
|
1005
|
+
width="329.26999"
|
1006
|
+
height="206.58"
|
1007
|
+
id="rect955" />
|
1008
|
+
</clipPath>
|
1009
|
+
<clipPath
|
1010
|
+
id="clipPath961">
|
1011
|
+
<rect
|
1012
|
+
x="169.25"
|
1013
|
+
y="22.780001"
|
1014
|
+
width="329.26999"
|
1015
|
+
height="206.58"
|
1016
|
+
id="rect959" />
|
1017
|
+
</clipPath>
|
1018
|
+
<clipPath
|
1019
|
+
id="clipPath965">
|
1020
|
+
<rect
|
1021
|
+
x="169.25"
|
1022
|
+
y="22.780001"
|
1023
|
+
width="329.26999"
|
1024
|
+
height="206.58"
|
1025
|
+
id="rect963" />
|
1026
|
+
</clipPath>
|
1027
|
+
<clipPath
|
1028
|
+
id="clipPath969">
|
1029
|
+
<rect
|
1030
|
+
x="169.25"
|
1031
|
+
y="22.780001"
|
1032
|
+
width="329.26999"
|
1033
|
+
height="206.58"
|
1034
|
+
id="rect967" />
|
1035
|
+
</clipPath>
|
1036
|
+
<clipPath
|
1037
|
+
id="clipPath973">
|
1038
|
+
<rect
|
1039
|
+
x="169.25"
|
1040
|
+
y="22.780001"
|
1041
|
+
width="329.26999"
|
1042
|
+
height="206.58"
|
1043
|
+
id="rect971" />
|
1044
|
+
</clipPath>
|
1045
|
+
<clipPath
|
1046
|
+
id="clipPath977">
|
1047
|
+
<rect
|
1048
|
+
x="169.25"
|
1049
|
+
y="22.780001"
|
1050
|
+
width="329.26999"
|
1051
|
+
height="206.58"
|
1052
|
+
id="rect975" />
|
1053
|
+
</clipPath>
|
1054
|
+
<clipPath
|
1055
|
+
id="cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=-5">
|
1056
|
+
<rect
|
1057
|
+
x="0"
|
1058
|
+
y="0"
|
1059
|
+
width="504"
|
1060
|
+
height="273.60001"
|
1061
|
+
id="rect39-3" />
|
1062
|
+
</clipPath>
|
1063
|
+
<clipPath
|
1064
|
+
id="clipPath983">
|
1065
|
+
<rect
|
1066
|
+
x="0"
|
1067
|
+
y="0"
|
1068
|
+
width="504"
|
1069
|
+
height="273.60001"
|
1070
|
+
id="rect981" />
|
1071
|
+
</clipPath>
|
1072
|
+
<clipPath
|
1073
|
+
id="clipPath987">
|
1074
|
+
<rect
|
1075
|
+
x="0"
|
1076
|
+
y="0"
|
1077
|
+
width="504"
|
1078
|
+
height="273.60001"
|
1079
|
+
id="rect985" />
|
1080
|
+
</clipPath>
|
1081
|
+
<clipPath
|
1082
|
+
id="clipPath991">
|
1083
|
+
<rect
|
1084
|
+
x="0"
|
1085
|
+
y="0"
|
1086
|
+
width="504"
|
1087
|
+
height="273.60001"
|
1088
|
+
id="rect989" />
|
1089
|
+
</clipPath>
|
1090
|
+
<clipPath
|
1091
|
+
id="clipPath995">
|
1092
|
+
<rect
|
1093
|
+
x="0"
|
1094
|
+
y="0"
|
1095
|
+
width="504"
|
1096
|
+
height="273.60001"
|
1097
|
+
id="rect993" />
|
1098
|
+
</clipPath>
|
1099
|
+
<clipPath
|
1100
|
+
id="clipPath999">
|
1101
|
+
<rect
|
1102
|
+
x="0"
|
1103
|
+
y="0"
|
1104
|
+
width="504"
|
1105
|
+
height="273.60001"
|
1106
|
+
id="rect997" />
|
1107
|
+
</clipPath>
|
1108
|
+
<clipPath
|
1109
|
+
id="clipPath1003">
|
1110
|
+
<rect
|
1111
|
+
x="0"
|
1112
|
+
y="0"
|
1113
|
+
width="504"
|
1114
|
+
height="273.60001"
|
1115
|
+
id="rect1001" />
|
1116
|
+
</clipPath>
|
1117
|
+
<clipPath
|
1118
|
+
id="clipPath1007">
|
1119
|
+
<rect
|
1120
|
+
x="0"
|
1121
|
+
y="0"
|
1122
|
+
width="504"
|
1123
|
+
height="273.60001"
|
1124
|
+
id="rect1005" />
|
1125
|
+
</clipPath>
|
1126
|
+
<clipPath
|
1127
|
+
id="clipPath1011">
|
1128
|
+
<rect
|
1129
|
+
x="0"
|
1130
|
+
y="0"
|
1131
|
+
width="504"
|
1132
|
+
height="273.60001"
|
1133
|
+
id="rect1009" />
|
1134
|
+
</clipPath>
|
1135
|
+
<clipPath
|
1136
|
+
id="clipPath1015">
|
1137
|
+
<rect
|
1138
|
+
x="0"
|
1139
|
+
y="0"
|
1140
|
+
width="504"
|
1141
|
+
height="273.60001"
|
1142
|
+
id="rect1013" />
|
1143
|
+
</clipPath>
|
1144
|
+
<clipPath
|
1145
|
+
id="cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=-3">
|
1146
|
+
<rect
|
1147
|
+
x="0"
|
1148
|
+
y="0"
|
1149
|
+
width="504"
|
1150
|
+
height="273.60001"
|
1151
|
+
id="rect43-7" />
|
1152
|
+
</clipPath>
|
1153
|
+
<clipPath
|
1154
|
+
id="clipPath2062">
|
1155
|
+
<rect
|
1156
|
+
x="0"
|
1157
|
+
y="0"
|
1158
|
+
width="504"
|
1159
|
+
height="273.60001"
|
1160
|
+
id="rect2060" />
|
1161
|
+
</clipPath>
|
1162
|
+
<clipPath
|
1163
|
+
id="cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=-9">
|
1164
|
+
<rect
|
1165
|
+
x="169.25"
|
1166
|
+
y="22.780001"
|
1167
|
+
width="329.26999"
|
1168
|
+
height="206.58"
|
1169
|
+
id="rect10-3" />
|
1170
|
+
</clipPath>
|
1171
|
+
<clipPath
|
1172
|
+
id="clipPath947">
|
1173
|
+
<rect
|
1174
|
+
x="169.25"
|
1175
|
+
y="22.780001"
|
1176
|
+
width="329.26999"
|
1177
|
+
height="206.58"
|
1178
|
+
id="rect945" />
|
1179
|
+
</clipPath>
|
1180
|
+
<clipPath
|
1181
|
+
id="clipPath951">
|
1182
|
+
<rect
|
1183
|
+
x="169.25"
|
1184
|
+
y="22.780001"
|
1185
|
+
width="329.26999"
|
1186
|
+
height="206.58"
|
1187
|
+
id="rect949" />
|
1188
|
+
</clipPath>
|
1189
|
+
<clipPath
|
1190
|
+
id="clipPath955">
|
1191
|
+
<rect
|
1192
|
+
x="169.25"
|
1193
|
+
y="22.780001"
|
1194
|
+
width="329.26999"
|
1195
|
+
height="206.58"
|
1196
|
+
id="rect953" />
|
1197
|
+
</clipPath>
|
1198
|
+
<clipPath
|
1199
|
+
id="clipPath959">
|
1200
|
+
<rect
|
1201
|
+
x="169.25"
|
1202
|
+
y="22.780001"
|
1203
|
+
width="329.26999"
|
1204
|
+
height="206.58"
|
1205
|
+
id="rect957" />
|
1206
|
+
</clipPath>
|
1207
|
+
<clipPath
|
1208
|
+
id="clipPath963">
|
1209
|
+
<rect
|
1210
|
+
x="169.25"
|
1211
|
+
y="22.780001"
|
1212
|
+
width="329.26999"
|
1213
|
+
height="206.58"
|
1214
|
+
id="rect961" />
|
1215
|
+
</clipPath>
|
1216
|
+
<clipPath
|
1217
|
+
id="clipPath967">
|
1218
|
+
<rect
|
1219
|
+
x="169.25"
|
1220
|
+
y="22.780001"
|
1221
|
+
width="329.26999"
|
1222
|
+
height="206.58"
|
1223
|
+
id="rect965" />
|
1224
|
+
</clipPath>
|
1225
|
+
<clipPath
|
1226
|
+
id="clipPath971">
|
1227
|
+
<rect
|
1228
|
+
x="169.25"
|
1229
|
+
y="22.780001"
|
1230
|
+
width="329.26999"
|
1231
|
+
height="206.58"
|
1232
|
+
id="rect969" />
|
1233
|
+
</clipPath>
|
1234
|
+
<clipPath
|
1235
|
+
id="clipPath975">
|
1236
|
+
<rect
|
1237
|
+
x="169.25"
|
1238
|
+
y="22.780001"
|
1239
|
+
width="329.26999"
|
1240
|
+
height="206.58"
|
1241
|
+
id="rect973" />
|
1242
|
+
</clipPath>
|
1243
|
+
<clipPath
|
1244
|
+
id="clipPath979">
|
1245
|
+
<rect
|
1246
|
+
x="169.25"
|
1247
|
+
y="22.780001"
|
1248
|
+
width="329.26999"
|
1249
|
+
height="206.58"
|
1250
|
+
id="rect977" />
|
1251
|
+
</clipPath>
|
1252
|
+
<clipPath
|
1253
|
+
id="clipPath983-2">
|
1254
|
+
<rect
|
1255
|
+
x="169.25"
|
1256
|
+
y="22.780001"
|
1257
|
+
width="329.26999"
|
1258
|
+
height="206.58"
|
1259
|
+
id="rect981-4" />
|
1260
|
+
</clipPath>
|
1261
|
+
<clipPath
|
1262
|
+
id="clipPath987-3">
|
1263
|
+
<rect
|
1264
|
+
x="169.25"
|
1265
|
+
y="22.780001"
|
1266
|
+
width="329.26999"
|
1267
|
+
height="206.58"
|
1268
|
+
id="rect985-7" />
|
1269
|
+
</clipPath>
|
1270
|
+
<clipPath
|
1271
|
+
id="clipPath991-1">
|
1272
|
+
<rect
|
1273
|
+
x="169.25"
|
1274
|
+
y="22.780001"
|
1275
|
+
width="329.26999"
|
1276
|
+
height="206.58"
|
1277
|
+
id="rect989-2" />
|
1278
|
+
</clipPath>
|
1279
|
+
<clipPath
|
1280
|
+
id="clipPath995-2">
|
1281
|
+
<rect
|
1282
|
+
x="169.25"
|
1283
|
+
y="22.780001"
|
1284
|
+
width="329.26999"
|
1285
|
+
height="206.58"
|
1286
|
+
id="rect993-0" />
|
1287
|
+
</clipPath>
|
1288
|
+
<clipPath
|
1289
|
+
id="cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=-21">
|
1290
|
+
<rect
|
1291
|
+
x="0"
|
1292
|
+
y="0"
|
1293
|
+
width="504"
|
1294
|
+
height="273.60001"
|
1295
|
+
id="rect43-75" />
|
1296
|
+
</clipPath>
|
1297
|
+
<clipPath
|
1298
|
+
id="clipPath1001">
|
1299
|
+
<rect
|
1300
|
+
x="0"
|
1301
|
+
y="0"
|
1302
|
+
width="504"
|
1303
|
+
height="273.60001"
|
1304
|
+
id="rect999" />
|
1305
|
+
</clipPath>
|
1306
|
+
<clipPath
|
1307
|
+
id="clipPath1005">
|
1308
|
+
<rect
|
1309
|
+
x="0"
|
1310
|
+
y="0"
|
1311
|
+
width="504"
|
1312
|
+
height="273.60001"
|
1313
|
+
id="rect1003" />
|
1314
|
+
</clipPath>
|
1315
|
+
<clipPath
|
1316
|
+
id="clipPath1009">
|
1317
|
+
<rect
|
1318
|
+
x="0"
|
1319
|
+
y="0"
|
1320
|
+
width="504"
|
1321
|
+
height="273.60001"
|
1322
|
+
id="rect1007" />
|
1323
|
+
</clipPath>
|
1324
|
+
<clipPath
|
1325
|
+
id="clipPath1013">
|
1326
|
+
<rect
|
1327
|
+
x="0"
|
1328
|
+
y="0"
|
1329
|
+
width="504"
|
1330
|
+
height="273.60001"
|
1331
|
+
id="rect1011" />
|
1332
|
+
</clipPath>
|
1333
|
+
<clipPath
|
1334
|
+
id="clipPath1017">
|
1335
|
+
<rect
|
1336
|
+
x="0"
|
1337
|
+
y="0"
|
1338
|
+
width="504"
|
1339
|
+
height="273.60001"
|
1340
|
+
id="rect1015" />
|
1341
|
+
</clipPath>
|
1342
|
+
<clipPath
|
1343
|
+
id="clipPath1021">
|
1344
|
+
<rect
|
1345
|
+
x="0"
|
1346
|
+
y="0"
|
1347
|
+
width="504"
|
1348
|
+
height="273.60001"
|
1349
|
+
id="rect1019" />
|
1350
|
+
</clipPath>
|
1351
|
+
<clipPath
|
1352
|
+
id="clipPath1025">
|
1353
|
+
<rect
|
1354
|
+
x="0"
|
1355
|
+
y="0"
|
1356
|
+
width="504"
|
1357
|
+
height="273.60001"
|
1358
|
+
id="rect1023" />
|
1359
|
+
</clipPath>
|
1360
|
+
<clipPath
|
1361
|
+
id="clipPath1029">
|
1362
|
+
<rect
|
1363
|
+
x="0"
|
1364
|
+
y="0"
|
1365
|
+
width="504"
|
1366
|
+
height="273.60001"
|
1367
|
+
id="rect1027" />
|
1368
|
+
</clipPath>
|
1369
|
+
<clipPath
|
1370
|
+
id="clipPath1033">
|
1371
|
+
<rect
|
1372
|
+
x="0"
|
1373
|
+
y="0"
|
1374
|
+
width="504"
|
1375
|
+
height="273.60001"
|
1376
|
+
id="rect1031" />
|
1377
|
+
</clipPath>
|
1378
|
+
<clipPath
|
1379
|
+
id="clipPath1037">
|
1380
|
+
<rect
|
1381
|
+
x="0"
|
1382
|
+
y="0"
|
1383
|
+
width="504"
|
1384
|
+
height="273.60001"
|
1385
|
+
id="rect1035" />
|
1386
|
+
</clipPath>
|
1387
|
+
<clipPath
|
1388
|
+
id="clipPath1041">
|
1389
|
+
<rect
|
1390
|
+
x="0"
|
1391
|
+
y="0"
|
1392
|
+
width="504"
|
1393
|
+
height="273.60001"
|
1394
|
+
id="rect1039" />
|
1395
|
+
</clipPath>
|
1396
|
+
</defs>
|
1397
|
+
<sodipodi:namedview
|
1398
|
+
id="base"
|
1399
|
+
pagecolor="#ffffff"
|
1400
|
+
bordercolor="#666666"
|
1401
|
+
borderopacity="1.0"
|
1402
|
+
inkscape:pageopacity="0.0"
|
1403
|
+
inkscape:pageshadow="2"
|
1404
|
+
inkscape:zoom="1.5758445"
|
1405
|
+
inkscape:cx="217.14404"
|
1406
|
+
inkscape:cy="178.21994"
|
1407
|
+
inkscape:document-units="mm"
|
1408
|
+
inkscape:current-layer="layer1"
|
1409
|
+
showgrid="false"
|
1410
|
+
inkscape:window-width="1996"
|
1411
|
+
inkscape:window-height="1205"
|
1412
|
+
inkscape:window-x="287"
|
1413
|
+
inkscape:window-y="151"
|
1414
|
+
inkscape:window-maximized="0"
|
1415
|
+
fit-margin-top="5"
|
1416
|
+
fit-margin-left="5"
|
1417
|
+
fit-margin-right="5"
|
1418
|
+
fit-margin-bottom="5"
|
1419
|
+
inkscape:document-rotation="0"
|
1420
|
+
inkscape:lockguides="false"
|
1421
|
+
showguides="false" />
|
1422
|
+
<metadata
|
1423
|
+
id="metadata5">
|
1424
|
+
<rdf:RDF>
|
1425
|
+
<cc:Work
|
1426
|
+
rdf:about="">
|
1427
|
+
<dc:format>image/svg+xml</dc:format>
|
1428
|
+
<dc:type
|
1429
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
1430
|
+
<dc:title></dc:title>
|
1431
|
+
</cc:Work>
|
1432
|
+
</rdf:RDF>
|
1433
|
+
</metadata>
|
1434
|
+
<g
|
1435
|
+
inkscape:label="レイヤー 1"
|
1436
|
+
inkscape:groupmode="layer"
|
1437
|
+
id="layer1"
|
1438
|
+
transform="translate(204.32159,-75.961423)">
|
1439
|
+
<rect
|
1440
|
+
y="85.214218"
|
1441
|
+
x="-199.27159"
|
1442
|
+
height="15.537"
|
1443
|
+
width="13.064"
|
1444
|
+
id="rect3188"
|
1445
|
+
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
1446
|
+
<text
|
1447
|
+
xml:space="preserve"
|
1448
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
1449
|
+
x="-192.72221"
|
1450
|
+
y="96.845619"
|
1451
|
+
id="text3194"
|
1452
|
+
inkscape:transform-center-x="-13.309773"><tspan
|
1453
|
+
sodipodi:role="line"
|
1454
|
+
x="-192.72221"
|
1455
|
+
y="96.845619"
|
1456
|
+
style="stroke-width:0.264583"
|
1457
|
+
id="tspan1287">S3</tspan></text>
|
1458
|
+
<rect
|
1459
|
+
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
1460
|
+
id="rect6579"
|
1461
|
+
width="36.681999"
|
1462
|
+
height="15.53701"
|
1463
|
+
x="-112.68378"
|
1464
|
+
y="85.214211" />
|
1465
|
+
<text
|
1466
|
+
id="text1102"
|
1467
|
+
y="96.845619"
|
1468
|
+
x="-93.829941"
|
1469
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
1470
|
+
xml:space="preserve"><tspan
|
1471
|
+
style="stroke-width:0.264583"
|
1472
|
+
y="96.845619"
|
1473
|
+
x="-93.829941"
|
1474
|
+
sodipodi:role="line"
|
1475
|
+
id="tspan1291">Athena</tspan></text>
|
1476
|
+
<path
|
1477
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.997134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Send)"
|
1478
|
+
d="m -187.02759,92.98271 h 73.699"
|
1479
|
+
id="path1829"
|
1480
|
+
inkscape:connector-curvature="0"
|
1481
|
+
sodipodi:nodetypes="cc" />
|
1482
|
+
<text
|
1483
|
+
xml:space="preserve"
|
1484
|
+
id="text2448"
|
1485
|
+
style="color:#000000;font-size:0.705556px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-decoration:none;text-decoration-line:none;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;white-space:pre;shape-inside:url(#rect2450);overflow:visible;fill:none;stroke:#48e85e;stroke-width:0.5;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;" />
|
1486
|
+
<text
|
1487
|
+
xml:space="preserve"
|
1488
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.76389px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
1489
|
+
x="-187.16925"
|
1490
|
+
y="148.75664"
|
1491
|
+
id="text1363"
|
1492
|
+
inkscape:transform-center-x="-13.309773"><tspan
|
1493
|
+
sodipodi:role="line"
|
1494
|
+
id="tspan1361"
|
1495
|
+
x="-187.16925"
|
1496
|
+
y="148.75664">Apache Arrow logo is licensed under Apache License 2.0 © 2016-2020 The Apache Software Foundation</tspan></text>
|
1497
|
+
<text
|
1498
|
+
id="text1944"
|
1499
|
+
y="89.434326"
|
1500
|
+
x="-147.42719"
|
1501
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
1502
|
+
xml:space="preserve"><tspan
|
1503
|
+
style="stroke-width:0.264583"
|
1504
|
+
y="89.434326"
|
1505
|
+
x="-147.42719"
|
1506
|
+
sodipodi:role="line"
|
1507
|
+
id="tspan1946">CSV</tspan></text>
|
1508
|
+
<rect
|
1509
|
+
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
1510
|
+
id="rect1192"
|
1511
|
+
width="28.094244"
|
1512
|
+
height="15.53701"
|
1513
|
+
x="-162.87076"
|
1514
|
+
y="122.38787" />
|
1515
|
+
<text
|
1516
|
+
id="text1196"
|
1517
|
+
y="128.35921"
|
1518
|
+
x="-148.77859"
|
1519
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29167px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
1520
|
+
xml:space="preserve"><tspan
|
1521
|
+
style="font-size:5.29167px;stroke-width:0.264583"
|
1522
|
+
y="128.35921"
|
1523
|
+
x="-148.77859"
|
1524
|
+
sodipodi:role="line"
|
1525
|
+
id="tspan1194">Federated</tspan><tspan
|
1526
|
+
style="font-size:5.29167px;stroke-width:0.264583"
|
1527
|
+
y="135.07901"
|
1528
|
+
x="-148.77859"
|
1529
|
+
sodipodi:role="line"
|
1530
|
+
id="tspan1198">Query</tspan></text>
|
1531
|
+
<path
|
1532
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutS)"
|
1533
|
+
d="m -147.0171,102.72058 v 16.09297"
|
1534
|
+
id="path2147"
|
1535
|
+
inkscape:connector-curvature="0"
|
1536
|
+
sodipodi:nodetypes="cc" />
|
1537
|
+
<text
|
1538
|
+
id="text2964"
|
1539
|
+
y="109.33287"
|
1540
|
+
x="-141.5863"
|
1541
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
1542
|
+
xml:space="preserve"><tspan
|
1543
|
+
sodipodi:role="line"
|
1544
|
+
id="tspan1237"
|
1545
|
+
x="-141.5863"
|
1546
|
+
y="109.33287">組込クエリーより</tspan><tspan
|
1547
|
+
sodipodi:role="line"
|
1548
|
+
x="-141.5863"
|
1549
|
+
y="119.91621"
|
1550
|
+
id="tspan1239">高速</tspan></text>
|
1551
|
+
<rect
|
1552
|
+
y="122.38788"
|
1553
|
+
x="-199.27159"
|
1554
|
+
height="15.537003"
|
1555
|
+
width="13.064"
|
1556
|
+
id="rect1246"
|
1557
|
+
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
1558
|
+
<text
|
1559
|
+
xml:space="preserve"
|
1560
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
1561
|
+
x="-192.72221"
|
1562
|
+
y="134.01929"
|
1563
|
+
id="text1250"
|
1564
|
+
inkscape:transform-center-x="-13.309773"><tspan
|
1565
|
+
sodipodi:role="line"
|
1566
|
+
x="-192.72221"
|
1567
|
+
y="134.01929"
|
1568
|
+
style="stroke-width:0.264583"
|
1569
|
+
id="tspan1248">S3</tspan></text>
|
1570
|
+
<rect
|
1571
|
+
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
1572
|
+
id="rect1252"
|
1573
|
+
width="36.681999"
|
1574
|
+
height="15.53701"
|
1575
|
+
x="-112.68378"
|
1576
|
+
y="122.38787" />
|
1577
|
+
<text
|
1578
|
+
id="text1256"
|
1579
|
+
y="134.01929"
|
1580
|
+
x="-93.829941"
|
1581
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
1582
|
+
xml:space="preserve"><tspan
|
1583
|
+
style="stroke-width:0.264583"
|
1584
|
+
y="134.01929"
|
1585
|
+
x="-93.829941"
|
1586
|
+
sodipodi:role="line"
|
1587
|
+
id="tspan1254">Athena</tspan></text>
|
1588
|
+
<g
|
1589
|
+
clip-path="url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=)"
|
1590
|
+
id="g92"
|
1591
|
+
transform="translate(-312.41633,-99.12725)"
|
1592
|
+
style="stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none">
|
1593
|
+
<text
|
1594
|
+
x="259.67413"
|
1595
|
+
y="245.17319"
|
1596
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.76389px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:end;text-anchor:end;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none"
|
1597
|
+
id="text90"><tspan
|
1598
|
+
sodipodi:role="line"
|
1599
|
+
id="tspan1241"
|
1600
|
+
x="259.67413"
|
1601
|
+
y="245.17319">1億行の処理にかかった時間</tspan></text>
|
1602
|
+
</g>
|
1603
|
+
<text
|
1604
|
+
x="-51.662983"
|
1605
|
+
y="151.43767"
|
1606
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.76389px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:end;text-anchor:end"
|
1607
|
+
id="text102"><tspan
|
1608
|
+
sodipodi:role="line"
|
1609
|
+
id="tspan1164"
|
1610
|
+
x="-51.662979"
|
1611
|
+
y="151.43767">Data at https://github.com/awslabs/aws-athena-query-federation/tree/master/athena-federation-sdk#performance</tspan></text>
|
1612
|
+
<g
|
1613
|
+
clip-path="url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=)"
|
1614
|
+
id="g1961"
|
1615
|
+
transform="translate(-315.19165,-96.906462)">
|
1616
|
+
<text
|
1617
|
+
x="244.72957"
|
1618
|
+
y="252.48"
|
1619
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.76389px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:center;text-anchor:middle"
|
1620
|
+
id="text1959"
|
1621
|
+
transform="translate(6.4961606,-7.3068153)"><tspan
|
1622
|
+
sodipodi:role="line"
|
1623
|
+
id="tspan1243"
|
1624
|
+
x="244.72957"
|
1625
|
+
y="252.48">(短いほど高速)</tspan></text>
|
1626
|
+
</g>
|
1627
|
+
<path
|
1628
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.997134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1278)"
|
1629
|
+
d="m -186.69207,130.86978 h 24.17587"
|
1630
|
+
id="path1258"
|
1631
|
+
inkscape:connector-curvature="0"
|
1632
|
+
sodipodi:nodetypes="cc" />
|
1633
|
+
<path
|
1634
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.997134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1668)"
|
1635
|
+
d="m -135.73449,130.86978 h 24.17993"
|
1636
|
+
id="path1504"
|
1637
|
+
inkscape:connector-curvature="0"
|
1638
|
+
sodipodi:nodetypes="cc" />
|
1639
|
+
<g
|
1640
|
+
inkscape:label="Layer 1"
|
1641
|
+
id="layer1-6"
|
1642
|
+
transform="matrix(0.12692143,0,0,0.12692143,-175.03494,126.05877)">
|
1643
|
+
<path
|
1644
|
+
style="fill:#070707;stroke-width:0.264583"
|
1645
|
+
d="m -133.80105,144.91836 v -7.45941 l 10.84792,-10.83169 c 5.96635,-5.95744 10.84791,-10.95742 10.84791,-11.11108 0,-0.15366 -4.88156,-5.16507 -10.84791,-11.13646 l -10.84792,-10.857076 v -7.35883 c 0,-4.04736 0.0893,-7.35867 0.19844,-7.35847 0.37929,7.2e-4 36.578637,36.399116 36.578637,36.779786 0,0.3862 -35.452897,36.05425 -36.314057,36.53444 -0.43613,0.24319 -0.46302,-0.17505 -0.46302,-7.20121 z m 45.772917,0.0884 v -7.3524 l 10.84791,-10.8923 c 5.96636,-5.99076 10.84792,-11.04687 10.84792,-11.23579 0,-0.18892 -4.88156,-5.22396 -10.84792,-11.18899 l -10.84791,-10.845486 v -7.3434 c 0,-4.03887 0.0896,-7.3434 0.19915,-7.3434 0.38832,0 36.57793,36.388066 36.57793,36.778516 0,0.38949 -36.19195,36.77565 -36.57936,36.77565 -0.10875,0 -0.19772,-3.30858 -0.19772,-7.3524 z m -23.018747,-0.11466 v -7.20248 l 10.84791,-10.85956 c 5.966357,-5.97276 10.847917,-11.03435 10.847917,-11.24798 0,-0.21363 -4.88156,-5.27522 -10.847917,-11.24798 l -10.84791,-10.859566 v -7.18686 c 0,-3.95278 0.0965,-7.24652 0.21449,-7.31943 0.11797,-0.0729 8.48179,8.13538 18.586257,18.24064 l 18.37177,18.373186 -18.25481,18.25625 c -10.040147,10.04094 -18.403967,18.25626 -18.586257,18.25626 -0.25743,0 -0.33145,-1.60856 -0.33145,-7.20248 z"
|
1646
|
+
id="path2043"
|
1647
|
+
inkscape:connector-curvature="0" />
|
1648
|
+
<g
|
1649
|
+
aria-label="ARROW"
|
1650
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:39.5003px;line-height:125%;font-family:Montserrat;-inkscape-font-specification:Montserrat;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.43637px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
1651
|
+
id="text2047">
|
1652
|
+
<path
|
1653
|
+
d="m -15.524782,127.32554 -2.56752,-5.96455 h -11.573589 l -2.56752,5.96455 h -6.557051 L -26.86137,99.714825 h 5.964546 l 11.9290925,27.610715 z m -8.334565,-19.39465 -3.476026,8.01856 h 6.912553 z"
|
1654
|
+
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Montserrat;-inkscape-font-specification:'Montserrat Bold';stroke-width:1.43637px"
|
1655
|
+
id="path2049"
|
1656
|
+
inkscape:connector-curvature="0" />
|
1657
|
+
<path
|
1658
|
+
d="m 16.594521,108.8789 q 0,6.63605 -5.253541,8.57156 l 6.991554,9.87508 H 10.748475 L 4.6259281,118.51697 H 0.35989516 v 8.80857 H -5.8021525 V 99.714825 H 4.6654284 q 6.4385496,0 9.1640706,2.172515 2.765022,2.17252 2.765022,6.99156 z m -11.7315911,4.30553 q 3.1600245,0 4.3055333,-1.02701 1.1455088,-1.02701 1.1455088,-3.23902 0,-2.25152 -1.1850091,-3.08103 -1.1850091,-0.8295 -4.147532,-0.8295 H 0.35989516 v 8.17656 z"
|
1659
|
+
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Montserrat;-inkscape-font-specification:'Montserrat Bold';stroke-width:1.43637px"
|
1660
|
+
id="path2051"
|
1661
|
+
inkscape:connector-curvature="0" />
|
1662
|
+
<path
|
1663
|
+
d="m 45.293962,108.8789 q 0,6.63605 -5.25354,8.57156 l 6.991554,9.87508 h -7.584059 l -6.122547,-8.80857 h -4.266033 v 8.80857 H 22.897289 V 99.714825 H 33.36487 q 6.43855,0 9.164071,2.172515 2.765021,2.17252 2.765021,6.99156 z m -11.73159,4.30553 q 3.160024,0 4.305533,-1.02701 1.145509,-1.02701 1.145509,-3.23902 0,-2.25152 -1.185009,-3.08103 -1.185009,-0.8295 -4.147532,-0.8295 h -4.621536 v 8.17656 z"
|
1664
|
+
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Montserrat;-inkscape-font-specification:'Montserrat Bold';stroke-width:1.43637px"
|
1665
|
+
id="path2053"
|
1666
|
+
inkscape:connector-curvature="0" />
|
1667
|
+
<path
|
1668
|
+
d="m 72.420799,113.38193 q 0,-3.71303 -2.370018,-6.32005 -2.370019,-2.60702 -5.846045,-2.60702 -3.436527,0 -5.806545,2.60702 -2.370019,2.60702 -2.370019,6.32005 0,3.67353 2.370019,6.28055 2.370018,2.56752 5.806545,2.56752 3.476026,0 5.846045,-2.56752 2.370018,-2.60702 2.370018,-6.28055 z m 2.093516,10.15158 q -4.187032,4.06853 -10.309579,4.06853 -6.122548,0 -10.30958,-4.06853 -4.187032,-4.10803 -4.187032,-10.19108 0,-6.08305 4.187032,-10.15158 4.187032,-4.10803 10.30958,-4.10803 6.122547,0 10.309579,4.10803 4.187033,4.06853 4.187033,10.15158 0,6.08305 -4.187033,10.19108 z"
|
1669
|
+
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Montserrat;-inkscape-font-specification:'Montserrat Bold';stroke-width:1.43637px"
|
1670
|
+
id="path2055"
|
1671
|
+
inkscape:connector-curvature="0" />
|
1672
|
+
<path
|
1673
|
+
d="m 92.070345,115.59395 4.898038,-15.879125 h 6.438547 l 4.85854,15.879125 5.49054,-15.879125 h 6.67555 l -9.63807,27.610715 h -4.58204 l -6.04354,-19.19715 -6.004049,19.19715 H 89.581826 L 79.943751,99.714825 h 6.675552 z"
|
1674
|
+
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Montserrat;-inkscape-font-specification:'Montserrat Bold';stroke-width:1.43637px"
|
1675
|
+
id="path2057"
|
1676
|
+
inkscape:connector-curvature="0" />
|
1677
|
+
</g>
|
1678
|
+
</g>
|
1679
|
+
<g
|
1680
|
+
inkscape:label="Layer 1"
|
1681
|
+
id="g1296"
|
1682
|
+
transform="matrix(0.12692143,0,0,0.12692143,-123.37075,126.05877)">
|
1683
|
+
<path
|
1684
|
+
style="fill:#070707;stroke-width:0.264583"
|
1685
|
+
d="m -133.80105,144.91836 v -7.45941 l 10.84792,-10.83169 c 5.96635,-5.95744 10.84791,-10.95742 10.84791,-11.11108 0,-0.15366 -4.88156,-5.16507 -10.84791,-11.13646 l -10.84792,-10.857076 v -7.35883 c 0,-4.04736 0.0893,-7.35867 0.19844,-7.35847 0.37929,7.2e-4 36.578637,36.399116 36.578637,36.779786 0,0.3862 -35.452897,36.05425 -36.314057,36.53444 -0.43613,0.24319 -0.46302,-0.17505 -0.46302,-7.20121 z m 45.772917,0.0884 v -7.3524 l 10.84791,-10.8923 c 5.96636,-5.99076 10.84792,-11.04687 10.84792,-11.23579 0,-0.18892 -4.88156,-5.22396 -10.84792,-11.18899 l -10.84791,-10.845486 v -7.3434 c 0,-4.03887 0.0896,-7.3434 0.19915,-7.3434 0.38832,0 36.57793,36.388066 36.57793,36.778516 0,0.38949 -36.19195,36.77565 -36.57936,36.77565 -0.10875,0 -0.19772,-3.30858 -0.19772,-7.3524 z m -23.018747,-0.11466 v -7.20248 l 10.84791,-10.85956 c 5.966357,-5.97276 10.847917,-11.03435 10.847917,-11.24798 0,-0.21363 -4.88156,-5.27522 -10.847917,-11.24798 l -10.84791,-10.859566 v -7.18686 c 0,-3.95278 0.0965,-7.24652 0.21449,-7.31943 0.11797,-0.0729 8.48179,8.13538 18.586257,18.24064 l 18.37177,18.373186 -18.25481,18.25625 c -10.040147,10.04094 -18.403967,18.25626 -18.586257,18.25626 -0.25743,0 -0.33145,-1.60856 -0.33145,-7.20248 z"
|
1686
|
+
id="path1282"
|
1687
|
+
inkscape:connector-curvature="0" />
|
1688
|
+
<g
|
1689
|
+
aria-label="ARROW"
|
1690
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:39.5003px;line-height:125%;font-family:Montserrat;-inkscape-font-specification:Montserrat;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.43637px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
1691
|
+
id="g1294">
|
1692
|
+
<path
|
1693
|
+
d="m -15.524782,127.32554 -2.56752,-5.96455 h -11.573589 l -2.56752,5.96455 h -6.557051 L -26.86137,99.714825 h 5.964546 l 11.9290925,27.610715 z m -8.334565,-19.39465 -3.476026,8.01856 h 6.912553 z"
|
1694
|
+
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Montserrat;-inkscape-font-specification:'Montserrat Bold';stroke-width:1.43637px"
|
1695
|
+
id="path1284"
|
1696
|
+
inkscape:connector-curvature="0" />
|
1697
|
+
<path
|
1698
|
+
d="m 16.594521,108.8789 q 0,6.63605 -5.253541,8.57156 l 6.991554,9.87508 H 10.748475 L 4.6259281,118.51697 H 0.35989516 v 8.80857 H -5.8021525 V 99.714825 H 4.6654284 q 6.4385496,0 9.1640706,2.172515 2.765022,2.17252 2.765022,6.99156 z m -11.7315911,4.30553 q 3.1600245,0 4.3055333,-1.02701 1.1455088,-1.02701 1.1455088,-3.23902 0,-2.25152 -1.1850091,-3.08103 -1.1850091,-0.8295 -4.147532,-0.8295 H 0.35989516 v 8.17656 z"
|
1699
|
+
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Montserrat;-inkscape-font-specification:'Montserrat Bold';stroke-width:1.43637px"
|
1700
|
+
id="path1286"
|
1701
|
+
inkscape:connector-curvature="0" />
|
1702
|
+
<path
|
1703
|
+
d="m 45.293962,108.8789 q 0,6.63605 -5.25354,8.57156 l 6.991554,9.87508 h -7.584059 l -6.122547,-8.80857 h -4.266033 v 8.80857 H 22.897289 V 99.714825 H 33.36487 q 6.43855,0 9.164071,2.172515 2.765021,2.17252 2.765021,6.99156 z m -11.73159,4.30553 q 3.160024,0 4.305533,-1.02701 1.145509,-1.02701 1.145509,-3.23902 0,-2.25152 -1.185009,-3.08103 -1.185009,-0.8295 -4.147532,-0.8295 h -4.621536 v 8.17656 z"
|
1704
|
+
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Montserrat;-inkscape-font-specification:'Montserrat Bold';stroke-width:1.43637px"
|
1705
|
+
id="path1288"
|
1706
|
+
inkscape:connector-curvature="0" />
|
1707
|
+
<path
|
1708
|
+
d="m 72.420799,113.38193 q 0,-3.71303 -2.370018,-6.32005 -2.370019,-2.60702 -5.846045,-2.60702 -3.436527,0 -5.806545,2.60702 -2.370019,2.60702 -2.370019,6.32005 0,3.67353 2.370019,6.28055 2.370018,2.56752 5.806545,2.56752 3.476026,0 5.846045,-2.56752 2.370018,-2.60702 2.370018,-6.28055 z m 2.093516,10.15158 q -4.187032,4.06853 -10.309579,4.06853 -6.122548,0 -10.30958,-4.06853 -4.187032,-4.10803 -4.187032,-10.19108 0,-6.08305 4.187032,-10.15158 4.187032,-4.10803 10.30958,-4.10803 6.122547,0 10.309579,4.10803 4.187033,4.06853 4.187033,10.15158 0,6.08305 -4.187033,10.19108 z"
|
1709
|
+
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Montserrat;-inkscape-font-specification:'Montserrat Bold';stroke-width:1.43637px"
|
1710
|
+
id="path1290"
|
1711
|
+
inkscape:connector-curvature="0" />
|
1712
|
+
<path
|
1713
|
+
d="m 92.070345,115.59395 4.898038,-15.879125 h 6.438547 l 4.85854,15.879125 5.49054,-15.879125 h 6.67555 l -9.63807,27.610715 h -4.58204 l -6.04354,-19.19715 -6.004049,19.19715 H 89.581826 L 79.943751,99.714825 h 6.675552 z"
|
1714
|
+
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Montserrat;-inkscape-font-specification:'Montserrat Bold';stroke-width:1.43637px"
|
1715
|
+
id="path1292"
|
1716
|
+
inkscape:connector-curvature="0" />
|
1717
|
+
</g>
|
1718
|
+
</g>
|
1719
|
+
<rect
|
1720
|
+
x="169.25"
|
1721
|
+
y="22.780001"
|
1722
|
+
width="329.26999"
|
1723
|
+
height="206.58"
|
1724
|
+
style="fill:#ebebeb;stroke:none;stroke-width:1.07;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
1725
|
+
id="rect15"
|
1726
|
+
transform="matrix(0.05253123,0,0,0.2909857,-81.050465,74.299792)"
|
1727
|
+
clip-path="url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=-9)" />
|
1728
|
+
<polyline
|
1729
|
+
points="220.14,229.36 220.14,22.78 "
|
1730
|
+
style="fill:none;stroke:#ffffff;stroke-width:1.13236;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
|
1731
|
+
clip-path="url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=-9)"
|
1732
|
+
id="polyline17"
|
1733
|
+
transform="matrix(0.05253123,0,0,0.2909857,-81.050465,74.299792)" />
|
1734
|
+
<polyline
|
1735
|
+
points="291.98,229.36 291.98,22.78 "
|
1736
|
+
style="fill:none;stroke:#ffffff;stroke-width:1.13236;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
|
1737
|
+
clip-path="url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=-9)"
|
1738
|
+
id="polyline19"
|
1739
|
+
transform="matrix(0.05253123,0,0,0.2909857,-81.050465,74.299792)" />
|
1740
|
+
<polyline
|
1741
|
+
points="363.82,229.36 363.82,22.78 "
|
1742
|
+
style="fill:none;stroke:#ffffff;stroke-width:1.13236;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
|
1743
|
+
clip-path="url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=-9)"
|
1744
|
+
id="polyline21"
|
1745
|
+
transform="matrix(0.05253123,0,0,0.2909857,-81.050465,74.299792)" />
|
1746
|
+
<polyline
|
1747
|
+
points="435.66,229.36 435.66,22.78 "
|
1748
|
+
style="fill:none;stroke:#ffffff;stroke-width:1.13236;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
|
1749
|
+
clip-path="url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=-9)"
|
1750
|
+
id="polyline23"
|
1751
|
+
transform="matrix(0.05253123,0,0,0.2909857,-81.050465,74.299792)" />
|
1752
|
+
<polyline
|
1753
|
+
points="184.22,229.36 184.22,22.78 "
|
1754
|
+
style="fill:none;stroke:#ffffff;stroke-width:2.28898;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
|
1755
|
+
id="polyline29"
|
1756
|
+
transform="matrix(0.05253123,0,0,0.2909857,-81.050465,74.299792)"
|
1757
|
+
clip-path="url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=-9)" />
|
1758
|
+
<polyline
|
1759
|
+
points="256.06,229.36 256.06,22.78 "
|
1760
|
+
style="fill:none;stroke:#ffffff;stroke-width:2.28898;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
|
1761
|
+
clip-path="url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=-9)"
|
1762
|
+
id="polyline31"
|
1763
|
+
transform="matrix(0.05253123,0,0,0.2909857,-81.050465,74.299792)" />
|
1764
|
+
<polyline
|
1765
|
+
points="327.90,229.36 327.90,22.78 "
|
1766
|
+
style="fill:none;stroke:#ffffff;stroke-width:2.28898;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
|
1767
|
+
clip-path="url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=-9)"
|
1768
|
+
id="polyline33"
|
1769
|
+
transform="matrix(0.05253123,0,0,0.2909857,-81.050465,74.299792)" />
|
1770
|
+
<polyline
|
1771
|
+
points="399.74,229.36 399.74,22.78 "
|
1772
|
+
style="fill:none;stroke:#ffffff;stroke-width:2.28898;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
|
1773
|
+
clip-path="url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=-9)"
|
1774
|
+
id="polyline35"
|
1775
|
+
transform="matrix(0.05253123,0,0,0.2909857,-81.050465,74.299792)" />
|
1776
|
+
<polyline
|
1777
|
+
points="471.58,229.36 471.58,22.78 "
|
1778
|
+
style="fill:none;stroke:#ffffff;stroke-width:2.28898;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
|
1779
|
+
clip-path="url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=-9)"
|
1780
|
+
id="polyline37"
|
1781
|
+
transform="matrix(0.05253123,0,0,0.2909857,-81.050465,74.299792)" />
|
1782
|
+
<rect
|
1783
|
+
x="184.22"
|
1784
|
+
y="174.57677"
|
1785
|
+
width="299.34"
|
1786
|
+
height="22.460596"
|
1787
|
+
style="fill:#595959;stroke:none;stroke-width:1.07;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10"
|
1788
|
+
clip-path="url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=-9)"
|
1789
|
+
id="rect39"
|
1790
|
+
transform="matrix(0.05253123,0,0,0.2909857,-81.050465,39.388597)" />
|
1791
|
+
<rect
|
1792
|
+
x="184.22"
|
1793
|
+
y="53.802113"
|
1794
|
+
width="23.949997"
|
1795
|
+
height="22.631847"
|
1796
|
+
style="fill:#595959;stroke:none;stroke-width:1.07;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10"
|
1797
|
+
clip-path="url(#cpMTY5LjI1fDQ5OC41MnwyMjkuMzZ8MjIuNzg=-9)"
|
1798
|
+
id="rect41"
|
1799
|
+
transform="matrix(0.05253123,0,0,0.2909857,-81.050465,110.60635)" />
|
1800
|
+
<polyline
|
1801
|
+
points="184.22,232.10 184.22,229.36 "
|
1802
|
+
style="fill:none;stroke:#333333;stroke-width:2.28898;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
|
1803
|
+
clip-path="url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=-21)"
|
1804
|
+
id="polyline60"
|
1805
|
+
transform="matrix(0.05253123,0,0,0.2909857,-81.050465,74.299792)" />
|
1806
|
+
<polyline
|
1807
|
+
points="327.90,232.10 327.90,229.36 "
|
1808
|
+
style="fill:none;stroke:#333333;stroke-width:2.28898;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
|
1809
|
+
clip-path="url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=-21)"
|
1810
|
+
id="polyline64"
|
1811
|
+
transform="matrix(0.05253123,0,0,0.2909857,-81.050465,74.299792)" />
|
1812
|
+
<polyline
|
1813
|
+
points="471.58,232.10 471.58,229.36 "
|
1814
|
+
style="fill:none;stroke:#333333;stroke-width:2.28898;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none"
|
1815
|
+
clip-path="url(#cpMC4wMHw1MDQuMDB8MjczLjYwfDAuMDA=-21)"
|
1816
|
+
id="polyline68"
|
1817
|
+
transform="matrix(0.05253123,0,0,0.2909857,-81.050465,74.299792)" />
|
1818
|
+
<text
|
1819
|
+
x="-72.278519"
|
1820
|
+
y="143.60109"
|
1821
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.76389px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#4d4d4d;stroke-width:1"
|
1822
|
+
id="text86-0-2"><tspan
|
1823
|
+
sodipodi:role="line"
|
1824
|
+
id="tspan1293"
|
1825
|
+
x="-72.278519"
|
1826
|
+
y="143.60109">0s</tspan></text>
|
1827
|
+
<text
|
1828
|
+
x="-64.673508"
|
1829
|
+
y="143.60109"
|
1830
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.76389px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#4d4d4d;stroke-width:1"
|
1831
|
+
id="text1482"><tspan
|
1832
|
+
sodipodi:role="line"
|
1833
|
+
id="tspan1337"
|
1834
|
+
x="-64.673508"
|
1835
|
+
y="143.60109">4s</tspan></text>
|
1836
|
+
<text
|
1837
|
+
x="-57.227879"
|
1838
|
+
y="143.60109"
|
1839
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.76389px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#4d4d4d;stroke-width:1"
|
1840
|
+
id="text1494"><tspan
|
1841
|
+
sodipodi:role="line"
|
1842
|
+
id="tspan1339"
|
1843
|
+
x="-57.227879"
|
1844
|
+
y="143.60109">8s</tspan></text>
|
1845
|
+
</g>
|
1846
|
+
</svg>
|