nutella_framework 0.4.23 → 0.4.24
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.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/framework_components/monitoring-bot/monitoring-bot.rb +11 -2
- data/framework_components/monitoring-interface/.gitignore +2 -0
- data/framework_components/monitoring-interface/README.md +1 -0
- data/framework_components/monitoring-interface/bower.json +29 -0
- data/framework_components/monitoring-interface/bower_components/bower-mqttws/.bower.json +23 -0
- data/framework_components/monitoring-interface/bower_components/bower-mqttws/bower.json +14 -0
- data/framework_components/monitoring-interface/bower_components/bower-mqttws/mqttws31.js +2081 -0
- data/framework_components/monitoring-interface/bower_components/bower-mqttws/readme.md +4 -0
- data/framework_components/monitoring-interface/bower_components/nutella_lib/.bower.json +37 -0
- data/framework_components/monitoring-interface/bower_components/nutella_lib/LICENSE +21 -0
- data/framework_components/monitoring-interface/bower_components/nutella_lib/README.md +15 -0
- data/framework_components/monitoring-interface/bower_components/nutella_lib/bower.json +28 -0
- data/framework_components/monitoring-interface/bower_components/nutella_lib/examples/browser/mqtt_client_hello_world.html +23 -0
- data/framework_components/monitoring-interface/bower_components/nutella_lib/examples/browser/nutella_hello_world.html +52 -0
- data/framework_components/monitoring-interface/bower_components/nutella_lib/examples/node/mqtt_client_hello_world.js +14 -0
- data/framework_components/monitoring-interface/bower_components/nutella_lib/examples/node/nutella_hello_world.js +38 -0
- data/framework_components/monitoring-interface/bower_components/nutella_lib/nutella_lib.js +789 -0
- data/framework_components/monitoring-interface/bower_components/nutella_lib/package.json +30 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface.html +215 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/animations.js +27 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/application-view-controller.js +232 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/applications-model.js +61 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/bootstrap.min.js +7 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/cursor.css +7 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/d3.v3.min.js +5 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/graphics.js +156 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/grid-layout.js +103 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/highlight.min.js +2 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/instance-view-controller.js +104 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/jquery-1.10.0.min.js +6 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/notification-center.js +63 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/notifications.js +14 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/page.css +33 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/radial-layout.js +175 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/tab-table.js +8 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/ui-application.css +0 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/ui-application.js +320 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/ui-connection-view.css +10 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/ui-connection-view.js +426 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/ui-element.js +205 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/ui-notification.js +94 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/ui-tab.js +229 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/underscore-min.js +5 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/view-controller.js +68 -0
- data/framework_components/monitoring-interface/css/Monitoring Interface_files/window-view-controller.js +169 -0
- data/framework_components/monitoring-interface/css/alerts.css +3 -0
- data/framework_components/monitoring-interface/css/bootstrap.min.css +5 -0
- data/framework_components/monitoring-interface/css/cursor.css +7 -0
- data/framework_components/monitoring-interface/css/highlight.default.min.css +1 -0
- data/framework_components/monitoring-interface/css/page.css +41 -0
- data/framework_components/monitoring-interface/css/ui-application.css +0 -0
- data/framework_components/monitoring-interface/css/ui-connection-view.css +10 -0
- data/framework_components/monitoring-interface/css/ui-legend-view.css +7 -0
- data/framework_components/monitoring-interface/data/alert.json +8 -0
- data/framework_components/monitoring-interface/data/data.json +2118 -0
- data/framework_components/monitoring-interface/data/data2.json +814 -0
- data/framework_components/monitoring-interface/data/data3.json +823 -0
- data/framework_components/monitoring-interface/data/data4.json +848 -0
- data/framework_components/monitoring-interface/data/message.json +999 -0
- data/framework_components/monitoring-interface/gulpfile.js +29 -0
- data/framework_components/monitoring-interface/img/arrow_white.svg +120 -0
- data/framework_components/monitoring-interface/img/arrow_white_right.svg +104 -0
- data/framework_components/monitoring-interface/img/back.svg +164 -0
- data/framework_components/monitoring-interface/img/cross_red_border_white.svg +143 -0
- data/framework_components/monitoring-interface/img/cross_red_border_white_mouseover.svg +143 -0
- data/framework_components/monitoring-interface/img/email.svg +89 -0
- data/framework_components/monitoring-interface/img/email_highlighted.svg +89 -0
- data/framework_components/monitoring-interface/index.html +144 -0
- data/framework_components/monitoring-interface/js/d3/layout/grid-layout.js +103 -0
- data/framework_components/monitoring-interface/js/d3/layout/radial-layout.js +184 -0
- data/framework_components/monitoring-interface/js/d3/plugin/graphics.js +156 -0
- data/framework_components/monitoring-interface/js/d3/plugin/tab-table.js +8 -0
- data/framework_components/monitoring-interface/js/d3/ui/animations.js +27 -0
- data/framework_components/monitoring-interface/js/d3/ui/ui-application.js +471 -0
- data/framework_components/monitoring-interface/js/d3/ui/ui-connection-view.js +847 -0
- data/framework_components/monitoring-interface/js/d3/ui/ui-element.js +245 -0
- data/framework_components/monitoring-interface/js/d3/ui/ui-legend.js +174 -0
- data/framework_components/monitoring-interface/js/d3/ui/ui-notification.js +90 -0
- data/framework_components/monitoring-interface/js/d3/ui/ui-tab.js +309 -0
- data/framework_components/monitoring-interface/js/lib/JSXTransformer-0.12.2.js +15199 -0
- data/framework_components/monitoring-interface/js/lib/bootstrap.min.js +7 -0
- data/framework_components/monitoring-interface/js/lib/d3.v3.min.js +5 -0
- data/framework_components/monitoring-interface/js/lib/highlight.min.js +2 -0
- data/framework_components/monitoring-interface/js/lib/jquery-1.10.0.min.js +6 -0
- data/framework_components/monitoring-interface/js/lib/nutella_lib.js +5121 -0
- data/framework_components/monitoring-interface/js/lib/react-with-addons-0.12.2.js +19822 -0
- data/framework_components/monitoring-interface/js/lib/underscore-min.js +5 -0
- data/framework_components/monitoring-interface/js/model/alerts-model.js +74 -0
- data/framework_components/monitoring-interface/js/model/applications-model.js +78 -0
- data/framework_components/monitoring-interface/js/model/messages-model.js +112 -0
- data/framework_components/monitoring-interface/js/notification/notification-center.js +63 -0
- data/framework_components/monitoring-interface/js/notification/notifications.js +21 -0
- data/framework_components/monitoring-interface/js/react/dist/ui-alerts.js +178 -0
- data/framework_components/monitoring-interface/js/react/dist/ui-message-send.js +389 -0
- data/framework_components/monitoring-interface/js/react/dist/ui-messages.js +103 -0
- data/framework_components/monitoring-interface/js/react/src/ui-alerts.js +178 -0
- data/framework_components/monitoring-interface/js/react/src/ui-message-send.js +389 -0
- data/framework_components/monitoring-interface/js/react/src/ui-messages.js +103 -0
- data/framework_components/monitoring-interface/js/view-controller/application-view-controller.js +256 -0
- data/framework_components/monitoring-interface/js/view-controller/instance-view-controller.js +112 -0
- data/framework_components/monitoring-interface/js/view-controller/view-controller.js +74 -0
- data/framework_components/monitoring-interface/js/view-controller/window-view-controller.js +169 -0
- data/framework_components/monitoring-interface/nutella.json +6 -0
- data/framework_components/order.json +1 -0
- data/framework_components/roomcast-bot/roomcast_bot.rb +139 -117
- data/framework_components/roomcast-channel-creator/dist/app.js +9 -7
- data/framework_components/roomcast-channel-creator/index.html +1 -1
- data/framework_components/roomcast-channel-creator/src/app/components/main.js +8 -6
- data/framework_components/roomcast-package-creator/dist/app.js +4 -4
- data/framework_components/roomcast-package-creator/index.html +1 -1
- data/framework_components/roomcast-package-creator/package.json +3 -3
- data/framework_components/roomcast-package-creator/src/app/components/ConfigurationsPanel.js +2 -2
- data/framework_components/roomcast-package-creator/src/app/components/PoolRow.js +1 -1
- data/framework_components/roomcast-teacher-controls/.gitignore +2 -0
- data/framework_components/roomcast-teacher-controls/README.md +9 -0
- data/framework_components/roomcast-teacher-controls/dist/app.js +38327 -0
- data/framework_components/roomcast-teacher-controls/dist/main.css +3052 -0
- data/framework_components/roomcast-teacher-controls/dist/nutella_lib.js +5121 -0
- data/framework_components/roomcast-teacher-controls/gulp/config.js +51 -0
- data/framework_components/roomcast-teacher-controls/gulp/tasks/browserify.js +77 -0
- data/framework_components/roomcast-teacher-controls/gulp/tasks/build.js +3 -0
- data/framework_components/roomcast-teacher-controls/gulp/tasks/css.js +7 -0
- data/framework_components/roomcast-teacher-controls/gulp/tasks/default.js +3 -0
- data/framework_components/roomcast-teacher-controls/gulp/tasks/fonts.js +7 -0
- data/framework_components/roomcast-teacher-controls/gulp/tasks/less.js +16 -0
- data/framework_components/roomcast-teacher-controls/gulp/tasks/mui-fonts.js +7 -0
- data/framework_components/roomcast-teacher-controls/gulp/tasks/nutella.js +7 -0
- data/framework_components/roomcast-teacher-controls/gulp/tasks/setWatch.js +5 -0
- data/framework_components/roomcast-teacher-controls/gulp/tasks/svgs.js +7 -0
- data/framework_components/roomcast-teacher-controls/gulp/tasks/watch.js +12 -0
- data/framework_components/roomcast-teacher-controls/gulp/util/bundleLogger.js +21 -0
- data/framework_components/roomcast-teacher-controls/gulp/util/handleErrors.js +15 -0
- data/framework_components/roomcast-teacher-controls/gulpfile.js +16 -0
- data/framework_components/roomcast-teacher-controls/index.html +51 -0
- data/framework_components/roomcast-teacher-controls/nutella.json +6 -0
- data/framework_components/roomcast-teacher-controls/package.json +38 -0
- data/framework_components/roomcast-teacher-controls/src/app/app.js +22 -0
- data/framework_components/roomcast-teacher-controls/src/app/components/ActivitiesGrid.js +87 -0
- data/framework_components/roomcast-teacher-controls/src/app/components/ActivityCard.js +141 -0
- data/framework_components/roomcast-teacher-controls/src/app/components/Channel.js +70 -0
- data/framework_components/roomcast-teacher-controls/src/app/components/Footer.js +34 -0
- data/framework_components/roomcast-teacher-controls/src/app/components/main.js +74 -0
- data/framework_components/roomcast-teacher-controls/src/less/main.less +186 -0
- data/framework_components/roomcast-teacher-controls/src/less/my_overrides.less +14 -0
- data/lib/commands/meta/run_command.rb +11 -9
- metadata +135 -2
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
var gulp = require('gulp');
|
|
2
|
+
var concat = require('gulp-concat');
|
|
3
|
+
var uglify = require('gulp-uglify');
|
|
4
|
+
var react = require('gulp-react');
|
|
5
|
+
var htmlreplace = require('gulp-html-replace');
|
|
6
|
+
var plumber = require('gulp-plumber');
|
|
7
|
+
|
|
8
|
+
var path = {
|
|
9
|
+
HTML: 'index.html',
|
|
10
|
+
ALL: ['js/react/src/*.js', 'index.html'],
|
|
11
|
+
JS: ['js/react/src/*.js'],
|
|
12
|
+
MINIFIED_OUT: 'build.min.js',
|
|
13
|
+
DEST_SRC: 'js/react/dist',
|
|
14
|
+
DEST_BUILD: 'js/react/dist',
|
|
15
|
+
DEST: 'dist'
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
gulp.task('transform', function(){
|
|
19
|
+
gulp.src(path.JS)
|
|
20
|
+
.pipe(plumber())
|
|
21
|
+
.pipe(react())
|
|
22
|
+
.pipe(gulp.dest(path.DEST_SRC));
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
gulp.task('watch', function(){
|
|
26
|
+
gulp.watch(path.ALL, ['transform']);
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
gulp.task('default', ['transform','watch']);
|
|
@@ -0,0 +1,120 @@
|
|
|
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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
version="1.1"
|
|
11
|
+
viewBox="92 206 440 150"
|
|
12
|
+
width="440pt"
|
|
13
|
+
height="150pt"
|
|
14
|
+
id="svg2"
|
|
15
|
+
inkscape:version="0.91 r13725"
|
|
16
|
+
sodipodi:docname="arrow_white.svg">
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#666666"
|
|
20
|
+
borderopacity="1"
|
|
21
|
+
objecttolerance="10"
|
|
22
|
+
gridtolerance="10"
|
|
23
|
+
guidetolerance="10"
|
|
24
|
+
inkscape:pageopacity="0"
|
|
25
|
+
inkscape:pageshadow="2"
|
|
26
|
+
inkscape:window-width="1280"
|
|
27
|
+
inkscape:window-height="751"
|
|
28
|
+
id="namedview32"
|
|
29
|
+
showgrid="false"
|
|
30
|
+
inkscape:zoom="0.57272727"
|
|
31
|
+
inkscape:cx="275"
|
|
32
|
+
inkscape:cy="93.75"
|
|
33
|
+
inkscape:window-x="0"
|
|
34
|
+
inkscape:window-y="0"
|
|
35
|
+
inkscape:window-maximized="1"
|
|
36
|
+
inkscape:current-layer="svg2" />
|
|
37
|
+
<metadata
|
|
38
|
+
id="metadata4"> Produced by OmniGraffle 6.0.3 <dc:date>2015-01-17 19:51Z</dc:date>
|
|
39
|
+
<rdf:RDF>
|
|
40
|
+
<cc:Work
|
|
41
|
+
rdf:about="">
|
|
42
|
+
<dc:format>image/svg+xml</dc:format>
|
|
43
|
+
<dc:type
|
|
44
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
45
|
+
<dc:title></dc:title>
|
|
46
|
+
</cc:Work>
|
|
47
|
+
</rdf:RDF>
|
|
48
|
+
</metadata>
|
|
49
|
+
<defs
|
|
50
|
+
id="defs6" />
|
|
51
|
+
<g
|
|
52
|
+
id="g8"
|
|
53
|
+
stroke-dasharray="none"
|
|
54
|
+
stroke-opacity="1"
|
|
55
|
+
stroke="none"
|
|
56
|
+
fill-opacity="1"
|
|
57
|
+
fill="none"
|
|
58
|
+
style="fill:#ffffff">
|
|
59
|
+
<title
|
|
60
|
+
id="title10">Canvas 1</title>
|
|
61
|
+
<g
|
|
62
|
+
id="g12"
|
|
63
|
+
style="fill:#ffffff">
|
|
64
|
+
<title
|
|
65
|
+
id="title14">Layer 1</title>
|
|
66
|
+
<path
|
|
67
|
+
d="M 116.3063 213.08799 L 313.4553 326.91201 C 319.27898 330.27432 321.27432 337.72102 317.91201 343.5447 L 317.91201 343.5447 C 314.54971 349.36838 307.103 351.36372 301.27933 348.00142 L 104.13033 234.17739 C 98.30665 230.81508 96.31131 223.36838 99.67361 217.5447 L 99.67361 217.5447 C 103.035914 211.72102 110.48262 209.72568 116.3063 213.08799 C 116.3063 213.08799 116.3063 213.08799 116.3063 213.08799 Z"
|
|
68
|
+
id="path16"
|
|
69
|
+
fill="#151925"
|
|
70
|
+
style="fill:#ffffff" />
|
|
71
|
+
<path
|
|
72
|
+
d="M 116.3063 213.08799 L 313.4553 326.91201 C 319.27898 330.27432 321.27432 337.72102 317.91201 343.5447 L 317.91201 343.5447 C 314.54971 349.36838 307.103 351.36372 301.27933 348.00142 L 104.13033 234.17739 C 98.30665 230.81508 96.31131 223.36838 99.67361 217.5447 L 99.67361 217.5447 C 103.035914 211.72102 110.48262 209.72568 116.3063 213.08799 C 116.3063 213.08799 116.3063 213.08799 116.3063 213.08799 Z"
|
|
73
|
+
id="path18"
|
|
74
|
+
stroke-linejoin="round"
|
|
75
|
+
stroke-linecap="round"
|
|
76
|
+
stroke-width="0"
|
|
77
|
+
stroke="black"
|
|
78
|
+
style="fill:#ffffff" />
|
|
79
|
+
<path
|
|
80
|
+
d="M 311.13033 326.91201 L 508.27933 213.08799 C 514.103 209.72568 521.5497 211.72102 524.912 217.5447 C 524.912 217.5447 524.912 217.5447 524.912 217.5447 L 524.912 217.5447 C 528.27432 223.36838 526.27898 230.81508 520.4553 234.17739 L 323.3063 348.00142 C 317.48262 351.36372 310.03591 349.36838 306.67361 343.5447 C 306.67361 343.5447 306.67361 343.5447 306.67361 343.5447 L 306.67361 343.5447 C 303.31131 337.72102 305.30665 330.27432 311.13033 326.91201 Z"
|
|
81
|
+
id="path20"
|
|
82
|
+
fill="#151925"
|
|
83
|
+
style="fill:#ffffff" />
|
|
84
|
+
<path
|
|
85
|
+
d="M 311.13033 326.91201 L 508.27933 213.08799 C 514.103 209.72568 521.5497 211.72102 524.912 217.5447 C 524.912 217.5447 524.912 217.5447 524.912 217.5447 L 524.912 217.5447 C 528.27432 223.36838 526.27898 230.81508 520.4553 234.17739 L 323.3063 348.00142 C 317.48262 351.36372 310.03591 349.36838 306.67361 343.5447 C 306.67361 343.5447 306.67361 343.5447 306.67361 343.5447 L 306.67361 343.5447 C 303.31131 337.72102 305.30665 330.27432 311.13033 326.91201 Z"
|
|
86
|
+
id="path22"
|
|
87
|
+
stroke-linejoin="round"
|
|
88
|
+
stroke-linecap="round"
|
|
89
|
+
stroke-width="0"
|
|
90
|
+
stroke="black"
|
|
91
|
+
style="fill:#ffffff" />
|
|
92
|
+
<path
|
|
93
|
+
d="M 300.58563 333 L 465.11755 238.00745 L 477.29352 259.09685 L 312.7616 354.0894 Z"
|
|
94
|
+
id="path24"
|
|
95
|
+
fill="#151925"
|
|
96
|
+
style="fill:#ffffff" />
|
|
97
|
+
<path
|
|
98
|
+
d="M 300.58563 333 L 465.11755 238.00745 L 477.29352 259.09685 L 312.7616 354.0894 Z"
|
|
99
|
+
id="path26"
|
|
100
|
+
stroke-linejoin="round"
|
|
101
|
+
stroke-linecap="round"
|
|
102
|
+
stroke-width="0"
|
|
103
|
+
stroke="black"
|
|
104
|
+
style="fill:#ffffff" />
|
|
105
|
+
<path
|
|
106
|
+
d="M 191.57309 256.54329 L 324 333 L 311.82403 354.0894 L 179.39711 277.63269 Z"
|
|
107
|
+
id="path28"
|
|
108
|
+
fill="#151925"
|
|
109
|
+
style="fill:#ffffff" />
|
|
110
|
+
<path
|
|
111
|
+
d="M 191.57309 256.54329 L 324 333 L 311.82403 354.0894 L 179.39711 277.63269 Z"
|
|
112
|
+
id="path30"
|
|
113
|
+
stroke-linejoin="round"
|
|
114
|
+
stroke-linecap="round"
|
|
115
|
+
stroke-width="0"
|
|
116
|
+
stroke="black"
|
|
117
|
+
style="fill:#ffffff" />
|
|
118
|
+
</g>
|
|
119
|
+
</g>
|
|
120
|
+
</svg>
|
|
@@ -0,0 +1,104 @@
|
|
|
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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
version="1.1"
|
|
11
|
+
viewBox="92 206 440 150"
|
|
12
|
+
width="440pt"
|
|
13
|
+
height="150pt"
|
|
14
|
+
id="svg2"
|
|
15
|
+
inkscape:version="0.91 r13725"
|
|
16
|
+
sodipodi:docname="arrow_white_right.svg">
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#666666"
|
|
20
|
+
borderopacity="1"
|
|
21
|
+
objecttolerance="10"
|
|
22
|
+
gridtolerance="10"
|
|
23
|
+
guidetolerance="10"
|
|
24
|
+
inkscape:pageopacity="0"
|
|
25
|
+
inkscape:pageshadow="2"
|
|
26
|
+
inkscape:window-width="1280"
|
|
27
|
+
inkscape:window-height="751"
|
|
28
|
+
id="namedview32"
|
|
29
|
+
showgrid="false"
|
|
30
|
+
inkscape:zoom="0.57272727"
|
|
31
|
+
inkscape:cx="275"
|
|
32
|
+
inkscape:cy="93.75"
|
|
33
|
+
inkscape:window-x="0"
|
|
34
|
+
inkscape:window-y="0"
|
|
35
|
+
inkscape:window-maximized="1"
|
|
36
|
+
inkscape:current-layer="svg2" />
|
|
37
|
+
<metadata
|
|
38
|
+
id="metadata4"> Produced by OmniGraffle 6.0.3 <dc:date>2015-01-17 19:51Z</dc:date>
|
|
39
|
+
<rdf:RDF>
|
|
40
|
+
<cc:Work
|
|
41
|
+
rdf:about="">
|
|
42
|
+
<dc:format>image/svg+xml</dc:format>
|
|
43
|
+
<dc:type
|
|
44
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
45
|
+
<dc:title />
|
|
46
|
+
</cc:Work>
|
|
47
|
+
</rdf:RDF>
|
|
48
|
+
</metadata>
|
|
49
|
+
<defs
|
|
50
|
+
id="defs6" />
|
|
51
|
+
<g
|
|
52
|
+
id="g8"
|
|
53
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-dasharray:none;stroke-opacity:1"
|
|
54
|
+
transform="matrix(0,-1,1,0,29.520767,595.06485)">
|
|
55
|
+
<title
|
|
56
|
+
id="title10">Canvas 1</title>
|
|
57
|
+
<g
|
|
58
|
+
id="g12"
|
|
59
|
+
style="fill:#ffffff">
|
|
60
|
+
<title
|
|
61
|
+
id="title14">Layer 1</title>
|
|
62
|
+
<path
|
|
63
|
+
d="m 116.3063,213.08799 197.149,113.82402 c 5.82368,3.36231 7.81902,10.80901 4.45671,16.63269 l 0,0 c -3.3623,5.82368 -10.80901,7.81902 -16.63268,4.45672 l -197.149,-113.82403 c -5.82368,-3.36231 -7.81902,-10.80901 -4.45672,-16.63269 l 0,0 c 3.3623,-5.82368 10.80901,-7.81902 16.63269,-4.45671 0,0 0,0 0,0 z"
|
|
64
|
+
id="path16"
|
|
65
|
+
style="fill:#ffffff"
|
|
66
|
+
inkscape:connector-curvature="0" />
|
|
67
|
+
<path
|
|
68
|
+
d="m 116.3063,213.08799 197.149,113.82402 c 5.82368,3.36231 7.81902,10.80901 4.45671,16.63269 l 0,0 c -3.3623,5.82368 -10.80901,7.81902 -16.63268,4.45672 l -197.149,-113.82403 c -5.82368,-3.36231 -7.81902,-10.80901 -4.45672,-16.63269 l 0,0 c 3.3623,-5.82368 10.80901,-7.81902 16.63269,-4.45671 0,0 0,0 0,0 z"
|
|
69
|
+
id="path18"
|
|
70
|
+
style="fill:#ffffff;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round"
|
|
71
|
+
inkscape:connector-curvature="0" />
|
|
72
|
+
<path
|
|
73
|
+
d="m 311.13033,326.91201 197.149,-113.82402 c 5.82367,-3.36231 13.27037,-1.36697 16.63267,4.45671 0,0 0,0 0,0 l 0,0 c 3.36232,5.82368 1.36698,13.27038 -4.4567,16.63269 l -197.149,113.82403 c -5.82368,3.3623 -13.27039,1.36696 -16.63269,-4.45672 0,0 0,0 0,0 l 0,0 c -3.3623,-5.82368 -1.36696,-13.27038 4.45672,-16.63269 z"
|
|
74
|
+
id="path20"
|
|
75
|
+
style="fill:#ffffff"
|
|
76
|
+
inkscape:connector-curvature="0" />
|
|
77
|
+
<path
|
|
78
|
+
d="m 311.13033,326.91201 197.149,-113.82402 c 5.82367,-3.36231 13.27037,-1.36697 16.63267,4.45671 0,0 0,0 0,0 l 0,0 c 3.36232,5.82368 1.36698,13.27038 -4.4567,16.63269 l -197.149,113.82403 c -5.82368,3.3623 -13.27039,1.36696 -16.63269,-4.45672 0,0 0,0 0,0 l 0,0 c -3.3623,-5.82368 -1.36696,-13.27038 4.45672,-16.63269 z"
|
|
79
|
+
id="path22"
|
|
80
|
+
style="fill:#ffffff;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round"
|
|
81
|
+
inkscape:connector-curvature="0" />
|
|
82
|
+
<path
|
|
83
|
+
d="m 300.58563,333 164.53192,-94.99255 12.17597,21.0894 -164.53192,94.99255 z"
|
|
84
|
+
id="path24"
|
|
85
|
+
style="fill:#ffffff"
|
|
86
|
+
inkscape:connector-curvature="0" />
|
|
87
|
+
<path
|
|
88
|
+
d="m 300.58563,333 164.53192,-94.99255 12.17597,21.0894 -164.53192,94.99255 z"
|
|
89
|
+
id="path26"
|
|
90
|
+
style="fill:#ffffff;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round"
|
|
91
|
+
inkscape:connector-curvature="0" />
|
|
92
|
+
<path
|
|
93
|
+
d="M 191.57309,256.54329 324,333 311.82403,354.0894 179.39711,277.63269 Z"
|
|
94
|
+
id="path28"
|
|
95
|
+
style="fill:#ffffff"
|
|
96
|
+
inkscape:connector-curvature="0" />
|
|
97
|
+
<path
|
|
98
|
+
d="M 191.57309,256.54329 324,333 311.82403,354.0894 179.39711,277.63269 Z"
|
|
99
|
+
id="path30"
|
|
100
|
+
style="fill:#ffffff;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round"
|
|
101
|
+
inkscape:connector-curvature="0" />
|
|
102
|
+
</g>
|
|
103
|
+
</g>
|
|
104
|
+
</svg>
|
|
@@ -0,0 +1,164 @@
|
|
|
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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
version="1.1"
|
|
11
|
+
viewBox="276 143 247 252"
|
|
12
|
+
width="247pt"
|
|
13
|
+
height="21pc"
|
|
14
|
+
id="svg2"
|
|
15
|
+
inkscape:version="0.91 r13725"
|
|
16
|
+
sodipodi:docname="back.svg">
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#666666"
|
|
20
|
+
borderopacity="1"
|
|
21
|
+
objecttolerance="10"
|
|
22
|
+
gridtolerance="10"
|
|
23
|
+
guidetolerance="10"
|
|
24
|
+
inkscape:pageopacity="0"
|
|
25
|
+
inkscape:pageshadow="2"
|
|
26
|
+
inkscape:window-width="640"
|
|
27
|
+
inkscape:window-height="480"
|
|
28
|
+
id="namedview44"
|
|
29
|
+
showgrid="false"
|
|
30
|
+
inkscape:zoom="0.74920635"
|
|
31
|
+
inkscape:cx="154.375"
|
|
32
|
+
inkscape:cy="157.5"
|
|
33
|
+
inkscape:window-x="0"
|
|
34
|
+
inkscape:window-y="0"
|
|
35
|
+
inkscape:window-maximized="0"
|
|
36
|
+
inkscape:current-layer="svg2" />
|
|
37
|
+
<metadata
|
|
38
|
+
id="metadata4"> Produced by OmniGraffle 6.0.3 <dc:date>2015-04-21 22:53Z</dc:date>
|
|
39
|
+
<rdf:RDF>
|
|
40
|
+
<cc:Work
|
|
41
|
+
rdf:about="">
|
|
42
|
+
<dc:format>image/svg+xml</dc:format>
|
|
43
|
+
<dc:type
|
|
44
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
45
|
+
</cc:Work>
|
|
46
|
+
</rdf:RDF>
|
|
47
|
+
</metadata>
|
|
48
|
+
<defs
|
|
49
|
+
id="defs6" />
|
|
50
|
+
<g
|
|
51
|
+
stroke="none"
|
|
52
|
+
stroke-opacity="1"
|
|
53
|
+
stroke-dasharray="none"
|
|
54
|
+
fill="none"
|
|
55
|
+
fill-opacity="1"
|
|
56
|
+
id="g8"
|
|
57
|
+
style="fill:#ffffff">
|
|
58
|
+
<title
|
|
59
|
+
id="title10">Canvas 1</title>
|
|
60
|
+
<g
|
|
61
|
+
id="g12"
|
|
62
|
+
style="fill:#ffffff">
|
|
63
|
+
<title
|
|
64
|
+
id="title14">Layer 1</title>
|
|
65
|
+
<rect
|
|
66
|
+
x="294.80316"
|
|
67
|
+
y="255.11812"
|
|
68
|
+
width="141.73229"
|
|
69
|
+
height="28.346457"
|
|
70
|
+
fill="#151925"
|
|
71
|
+
id="rect16"
|
|
72
|
+
style="fill:#ffffff" />
|
|
73
|
+
<rect
|
|
74
|
+
x="294.80316"
|
|
75
|
+
y="255.11812"
|
|
76
|
+
width="141.73229"
|
|
77
|
+
height="28.346457"
|
|
78
|
+
stroke="black"
|
|
79
|
+
stroke-linecap="round"
|
|
80
|
+
stroke-linejoin="round"
|
|
81
|
+
stroke-width="0"
|
|
82
|
+
id="rect18"
|
|
83
|
+
style="fill:#ffffff" />
|
|
84
|
+
<path
|
|
85
|
+
d="M 297.6378 249.24737 L 317.68178 269.29135 L 297.6378 289.33532 L 277.59383 269.29135 Z"
|
|
86
|
+
fill="#151925"
|
|
87
|
+
id="path20"
|
|
88
|
+
style="fill:#ffffff" />
|
|
89
|
+
<path
|
|
90
|
+
d="M 297.6378 249.24737 L 317.68178 269.29135 L 297.6378 289.33532 L 277.59383 269.29135 Z"
|
|
91
|
+
stroke="black"
|
|
92
|
+
stroke-linecap="round"
|
|
93
|
+
stroke-linejoin="round"
|
|
94
|
+
stroke-width="0"
|
|
95
|
+
id="path22"
|
|
96
|
+
style="fill:#ffffff" />
|
|
97
|
+
<path
|
|
98
|
+
d="M 298.39683 250.0064 L 384.95425 336.56382 L 364.91028 356.6078 L 278.35286 270.05037 Z"
|
|
99
|
+
fill="#151925"
|
|
100
|
+
id="path24"
|
|
101
|
+
style="fill:#ffffff" />
|
|
102
|
+
<path
|
|
103
|
+
d="M 298.39683 250.0064 L 384.95425 336.56382 L 364.91028 356.6078 L 278.35286 270.05037 Z"
|
|
104
|
+
stroke="black"
|
|
105
|
+
stroke-linecap="round"
|
|
106
|
+
stroke-linejoin="round"
|
|
107
|
+
stroke-width="0"
|
|
108
|
+
id="path26"
|
|
109
|
+
style="fill:#ffffff" />
|
|
110
|
+
<path
|
|
111
|
+
d="M 361.51806 185.36712 L 381.56203 205.41109 L 297.83926 289.13387 L 277.79528 269.0899 Z"
|
|
112
|
+
fill="#151925"
|
|
113
|
+
id="path28"
|
|
114
|
+
style="fill:#ffffff" />
|
|
115
|
+
<path
|
|
116
|
+
d="M 361.51806 185.36712 L 381.56203 205.41109 L 297.83926 289.13387 L 277.79528 269.0899 Z"
|
|
117
|
+
stroke="black"
|
|
118
|
+
stroke-linecap="round"
|
|
119
|
+
stroke-linejoin="round"
|
|
120
|
+
stroke-width="0"
|
|
121
|
+
id="path30"
|
|
122
|
+
style="fill:#ffffff" />
|
|
123
|
+
<path
|
|
124
|
+
d="M 345.82678 255.11812 L 507.4016 255.11812 C 515.22925 255.11812 521.57482 261.46369 521.57482 269.29135 L 521.57482 269.29135 C 521.57482 277.119 515.22925 283.46457 507.4016 283.46457 L 345.82678 283.46457 C 337.99912 283.46457 331.65355 277.119 331.65355 269.29135 L 331.65355 269.29135 C 331.65355 261.46369 337.99912 255.11812 345.82678 255.11812 Z"
|
|
125
|
+
fill="#151925"
|
|
126
|
+
id="path32"
|
|
127
|
+
style="fill:#ffffff" />
|
|
128
|
+
<path
|
|
129
|
+
d="M 345.82678 255.11812 L 507.4016 255.11812 C 515.22925 255.11812 521.57482 261.46369 521.57482 269.29135 L 521.57482 269.29135 C 521.57482 277.119 515.22925 283.46457 507.4016 283.46457 L 345.82678 283.46457 C 337.99912 283.46457 331.65355 277.119 331.65355 269.29135 L 331.65355 269.29135 C 331.65355 261.46369 337.99912 255.11812 345.82678 255.11812 Z"
|
|
130
|
+
stroke="black"
|
|
131
|
+
stroke-linecap="round"
|
|
132
|
+
stroke-linejoin="round"
|
|
133
|
+
stroke-width="0"
|
|
134
|
+
id="path34"
|
|
135
|
+
style="fill:#ffffff" />
|
|
136
|
+
<path
|
|
137
|
+
d="M 412.34023 154.58892 L 412.34023 154.58892 C 417.87522 160.12391 417.87522 169.0979 412.34023 174.63289 L 348.66143 238.3117 C 343.12644 243.84669 334.15244 243.84669 328.61745 238.3117 C 328.61745 238.3117 328.61745 238.3117 328.61745 238.3117 L 328.61745 238.3117 C 323.08246 232.7767 323.08246 223.80271 328.61745 218.26772 L 392.29626 154.58892 C 397.83125 149.05393 406.80524 149.05393 412.34023 154.58892 C 412.34023 154.58892 412.34023 154.58892 412.34023 154.58892 Z"
|
|
138
|
+
fill="#151925"
|
|
139
|
+
id="path36"
|
|
140
|
+
style="fill:#ffffff" />
|
|
141
|
+
<path
|
|
142
|
+
d="M 412.34023 154.58892 L 412.34023 154.58892 C 417.87522 160.12391 417.87522 169.0979 412.34023 174.63289 L 348.66143 238.3117 C 343.12644 243.84669 334.15244 243.84669 328.61745 238.3117 C 328.61745 238.3117 328.61745 238.3117 328.61745 238.3117 L 328.61745 238.3117 C 323.08246 232.7767 323.08246 223.80271 328.61745 218.26772 L 392.29626 154.58892 C 397.83125 149.05393 406.80524 149.05393 412.34023 154.58892 C 412.34023 154.58892 412.34023 154.58892 412.34023 154.58892 Z"
|
|
143
|
+
stroke="black"
|
|
144
|
+
stroke-linecap="round"
|
|
145
|
+
stroke-linejoin="round"
|
|
146
|
+
stroke-width="0"
|
|
147
|
+
id="path38"
|
|
148
|
+
style="fill:#ffffff" />
|
|
149
|
+
<path
|
|
150
|
+
d="M 333.60148 285.21105 L 412.1118 363.72138 C 417.6468 369.25637 417.6468 378.23036 412.1118 383.76535 L 412.1118 383.76535 C 406.57682 389.30034 397.60283 389.30034 392.06784 383.76535 C 392.06784 383.76535 392.06784 383.76535 392.06784 383.76535 L 313.5575 305.25502 C 308.02251 299.72003 308.02251 290.74604 313.5575 285.21105 L 313.5575 285.21105 C 319.0925 279.67606 328.06649 279.67606 333.60148 285.21105 C 333.60148 285.21105 333.60148 285.21105 333.60148 285.21105 Z"
|
|
151
|
+
fill="#151925"
|
|
152
|
+
id="path40"
|
|
153
|
+
style="fill:#ffffff" />
|
|
154
|
+
<path
|
|
155
|
+
d="M 333.60148 285.21105 L 412.1118 363.72138 C 417.6468 369.25637 417.6468 378.23036 412.1118 383.76535 L 412.1118 383.76535 C 406.57682 389.30034 397.60283 389.30034 392.06784 383.76535 C 392.06784 383.76535 392.06784 383.76535 392.06784 383.76535 L 313.5575 305.25502 C 308.02251 299.72003 308.02251 290.74604 313.5575 285.21105 L 313.5575 285.21105 C 319.0925 279.67606 328.06649 279.67606 333.60148 285.21105 C 333.60148 285.21105 333.60148 285.21105 333.60148 285.21105 Z"
|
|
156
|
+
stroke="black"
|
|
157
|
+
stroke-linecap="round"
|
|
158
|
+
stroke-linejoin="round"
|
|
159
|
+
stroke-width="0"
|
|
160
|
+
id="path42"
|
|
161
|
+
style="fill:#ffffff" />
|
|
162
|
+
</g>
|
|
163
|
+
</g>
|
|
164
|
+
</svg>
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
width="30"
|
|
13
|
+
height="30"
|
|
14
|
+
viewBox="0 0 30 30"
|
|
15
|
+
id="svg3779"
|
|
16
|
+
version="1.1"
|
|
17
|
+
inkscape:version="0.91 r13725"
|
|
18
|
+
sodipodi:docname="cross_red_border_white.svg">
|
|
19
|
+
<defs
|
|
20
|
+
id="defs3781" />
|
|
21
|
+
<sodipodi:namedview
|
|
22
|
+
id="base"
|
|
23
|
+
pagecolor="#ffffff"
|
|
24
|
+
bordercolor="#666666"
|
|
25
|
+
borderopacity="1.0"
|
|
26
|
+
inkscape:pageopacity="0.0"
|
|
27
|
+
inkscape:pageshadow="2"
|
|
28
|
+
inkscape:zoom="7.1166667"
|
|
29
|
+
inkscape:cx="7.7517564"
|
|
30
|
+
inkscape:cy="4.2857143"
|
|
31
|
+
inkscape:document-units="px"
|
|
32
|
+
inkscape:current-layer="layer2"
|
|
33
|
+
showgrid="false"
|
|
34
|
+
units="px"
|
|
35
|
+
inkscape:window-width="1280"
|
|
36
|
+
inkscape:window-height="751"
|
|
37
|
+
inkscape:window-x="4"
|
|
38
|
+
inkscape:window-y="0"
|
|
39
|
+
inkscape:window-maximized="0" />
|
|
40
|
+
<metadata
|
|
41
|
+
id="metadata3784">
|
|
42
|
+
<rdf:RDF>
|
|
43
|
+
<cc:Work
|
|
44
|
+
rdf:about="">
|
|
45
|
+
<dc:format>image/svg+xml</dc:format>
|
|
46
|
+
<dc:type
|
|
47
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
48
|
+
<dc:title></dc:title>
|
|
49
|
+
</cc:Work>
|
|
50
|
+
</rdf:RDF>
|
|
51
|
+
</metadata>
|
|
52
|
+
<g
|
|
53
|
+
inkscape:label="Layer 1"
|
|
54
|
+
inkscape:groupmode="layer"
|
|
55
|
+
id="layer1"
|
|
56
|
+
transform="translate(0,-1022.3622)">
|
|
57
|
+
<rect
|
|
58
|
+
style="fill:#ffffff"
|
|
59
|
+
id="rect3878"
|
|
60
|
+
width="19.672131"
|
|
61
|
+
height="20.936768"
|
|
62
|
+
x="44.824356"
|
|
63
|
+
y="1027.0695" />
|
|
64
|
+
<circle
|
|
65
|
+
style="fill:#ffffff"
|
|
66
|
+
id="path4019"
|
|
67
|
+
cx="15"
|
|
68
|
+
cy="15"
|
|
69
|
+
r="15"
|
|
70
|
+
transform="translate(0,1022.3622)" />
|
|
71
|
+
</g>
|
|
72
|
+
<g
|
|
73
|
+
inkscape:groupmode="layer"
|
|
74
|
+
id="layer2"
|
|
75
|
+
inkscape:label="Layer 2">
|
|
76
|
+
<g
|
|
77
|
+
id="g3648-9"
|
|
78
|
+
transform="matrix(1.0012516,0,0,1.0012516,1,0.99999901)"
|
|
79
|
+
style="fill:#ff0000">
|
|
80
|
+
<g
|
|
81
|
+
id="g3606-0"
|
|
82
|
+
style="fill:#ff0000">
|
|
83
|
+
<g
|
|
84
|
+
id="c142_x-7"
|
|
85
|
+
style="fill:#ff0000">
|
|
86
|
+
<path
|
|
87
|
+
id="path3609-4"
|
|
88
|
+
d="M 13.98,0 C 6.259,0 0,6.261 0,13.983 c 0,7.721 6.259,13.982 13.98,13.982 7.725,0 13.985,-6.262 13.985,-13.982 C 27.965,6.261 21.705,0 13.98,0 Z m 6.012,17.769 -2.227,2.224 c 0,0 -3.523,-3.78 -3.786,-3.78 -0.259,0 -3.783,3.78 -3.783,3.78 L 7.968,17.769 c 0,0 3.784,-3.472 3.784,-3.781 0,-0.314 -3.784,-3.787 -3.784,-3.787 l 2.228,-2.229 c 0,0 3.553,3.782 3.783,3.782 0.232,0 3.786,-3.782 3.786,-3.782 l 2.227,2.229 c 0,0 -3.785,3.523 -3.785,3.787 0,0.251 3.785,3.781 3.785,3.781 z"
|
|
89
|
+
inkscape:connector-curvature="0"
|
|
90
|
+
style="fill:#ff0000" />
|
|
91
|
+
</g>
|
|
92
|
+
<g
|
|
93
|
+
id="Capa_1_104_-6"
|
|
94
|
+
style="fill:#ff0000" />
|
|
95
|
+
</g>
|
|
96
|
+
<g
|
|
97
|
+
id="g3612-9"
|
|
98
|
+
style="fill:#ff0000" />
|
|
99
|
+
<g
|
|
100
|
+
id="g3614-7"
|
|
101
|
+
style="fill:#ff0000" />
|
|
102
|
+
<g
|
|
103
|
+
id="g3616-3"
|
|
104
|
+
style="fill:#ff0000" />
|
|
105
|
+
<g
|
|
106
|
+
id="g3618-0"
|
|
107
|
+
style="fill:#ff0000" />
|
|
108
|
+
<g
|
|
109
|
+
id="g3620-0"
|
|
110
|
+
style="fill:#ff0000" />
|
|
111
|
+
<g
|
|
112
|
+
id="g3622-5"
|
|
113
|
+
style="fill:#ff0000" />
|
|
114
|
+
<g
|
|
115
|
+
id="g3624-1"
|
|
116
|
+
style="fill:#ff0000" />
|
|
117
|
+
<g
|
|
118
|
+
id="g3626-2"
|
|
119
|
+
style="fill:#ff0000" />
|
|
120
|
+
<g
|
|
121
|
+
id="g3628-3"
|
|
122
|
+
style="fill:#ff0000" />
|
|
123
|
+
<g
|
|
124
|
+
id="g3630-1"
|
|
125
|
+
style="fill:#ff0000" />
|
|
126
|
+
<g
|
|
127
|
+
id="g3632-7"
|
|
128
|
+
style="fill:#ff0000" />
|
|
129
|
+
<g
|
|
130
|
+
id="g3634-2"
|
|
131
|
+
style="fill:#ff0000" />
|
|
132
|
+
<g
|
|
133
|
+
id="g3636-9"
|
|
134
|
+
style="fill:#ff0000" />
|
|
135
|
+
<g
|
|
136
|
+
id="g3638-9"
|
|
137
|
+
style="fill:#ff0000" />
|
|
138
|
+
<g
|
|
139
|
+
id="g3640-6"
|
|
140
|
+
style="fill:#ff0000" />
|
|
141
|
+
</g>
|
|
142
|
+
</g>
|
|
143
|
+
</svg>
|