write_xlsx 0.54.0 → 0.55.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +3 -0
- data/examples/sparklines1.rb +62 -0
- data/examples/sparklines2.rb +391 -0
- data/lib/write_xlsx/version.rb +1 -1
- data/lib/write_xlsx/worksheet.rb +760 -48
- data/test/perl_output/sparklines1.xlsx +0 -0
- data/test/perl_output/sparklines2.xlsx +0 -0
- data/test/test_example_match.rb +425 -0
- data/test/worksheet/test_cond_format_20.rb +119 -0
- data/test/worksheet/test_sparkline_01.rb +65 -0
- data/test/worksheet/test_sparkline_02.rb +92 -0
- data/test/worksheet/test_sparkline_03.rb +133 -0
- data/test/worksheet/test_sparkline_04.rb +93 -0
- data/test/worksheet/test_sparkline_05.rb +93 -0
- data/test/worksheet/test_sparkline_06.rb +114 -0
- data/test/worksheet/test_sparkline_07.rb +357 -0
- data/test/worksheet/test_sparkline_08.rb +177 -0
- data/test/worksheet/test_sparkline_09.rb +1250 -0
- data/test/worksheet/test_sparkline_10.rb +107 -0
- data/test/worksheet/test_sparkline_11.rb +218 -0
- metadata +32 -8
- data/test/worksheet/test_write_ext.rb +0 -18
- data/test/worksheet/test_write_ext_lst.rb +0 -18
- data/test/worksheet/test_write_mx_plv.rb +0 -19
@@ -0,0 +1,177 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'helper'
|
3
|
+
require 'write_xlsx'
|
4
|
+
require 'stringio'
|
5
|
+
|
6
|
+
class TestSparkline08 < Test::Unit::TestCase
|
7
|
+
def setup
|
8
|
+
@workbook = WriteXLSX.new(StringIO.new)
|
9
|
+
@worksheet = @workbook.add_worksheet
|
10
|
+
end
|
11
|
+
|
12
|
+
def test_sparkline08
|
13
|
+
@worksheet.instance_variable_set(:@excel_version, 2010)
|
14
|
+
@worksheet.select
|
15
|
+
|
16
|
+
data = [-2, 2, 3, -1, 0]
|
17
|
+
|
18
|
+
@worksheet.write('A1', data)
|
19
|
+
@worksheet.write('A2', data)
|
20
|
+
@worksheet.write('A3', data)
|
21
|
+
|
22
|
+
# Set up sparklines
|
23
|
+
|
24
|
+
@worksheet.add_sparkline(
|
25
|
+
{
|
26
|
+
:location => 'F1',
|
27
|
+
:range => 'A1:E1',
|
28
|
+
:style => 1
|
29
|
+
}
|
30
|
+
)
|
31
|
+
|
32
|
+
@worksheet.add_sparkline(
|
33
|
+
{
|
34
|
+
:location => 'F2',
|
35
|
+
:range => 'A2:E2',
|
36
|
+
:style => 2
|
37
|
+
}
|
38
|
+
)
|
39
|
+
|
40
|
+
@worksheet.add_sparkline(
|
41
|
+
{
|
42
|
+
:location => 'F3',
|
43
|
+
:range => 'A3:E3',
|
44
|
+
:series_color => '#FF0000'
|
45
|
+
}
|
46
|
+
)
|
47
|
+
|
48
|
+
# End sparklines
|
49
|
+
|
50
|
+
@worksheet.assemble_xml_file
|
51
|
+
result = got_to_array(@worksheet.instance_variable_get(:@writer).string)
|
52
|
+
|
53
|
+
expected = expected_to_array(expected_xml)
|
54
|
+
assert_equal(expected, result)
|
55
|
+
end
|
56
|
+
|
57
|
+
def expected_xml
|
58
|
+
<<EOS
|
59
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
60
|
+
<worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:x14ac="http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac" mc:Ignorable="x14ac">
|
61
|
+
<dimension ref="A1:E3"/>
|
62
|
+
<sheetViews>
|
63
|
+
<sheetView tabSelected="1" workbookViewId="0"/>
|
64
|
+
</sheetViews>
|
65
|
+
<sheetFormatPr defaultRowHeight="15" x14ac:dyDescent="0.25"/>
|
66
|
+
<sheetData>
|
67
|
+
<row r="1" spans="1:5" x14ac:dyDescent="0.25">
|
68
|
+
<c r="A1">
|
69
|
+
<v>-2</v>
|
70
|
+
</c>
|
71
|
+
<c r="B1">
|
72
|
+
<v>2</v>
|
73
|
+
</c>
|
74
|
+
<c r="C1">
|
75
|
+
<v>3</v>
|
76
|
+
</c>
|
77
|
+
<c r="D1">
|
78
|
+
<v>-1</v>
|
79
|
+
</c>
|
80
|
+
<c r="E1">
|
81
|
+
<v>0</v>
|
82
|
+
</c>
|
83
|
+
</row>
|
84
|
+
<row r="2" spans="1:5" x14ac:dyDescent="0.25">
|
85
|
+
<c r="A2">
|
86
|
+
<v>-2</v>
|
87
|
+
</c>
|
88
|
+
<c r="B2">
|
89
|
+
<v>2</v>
|
90
|
+
</c>
|
91
|
+
<c r="C2">
|
92
|
+
<v>3</v>
|
93
|
+
</c>
|
94
|
+
<c r="D2">
|
95
|
+
<v>-1</v>
|
96
|
+
</c>
|
97
|
+
<c r="E2">
|
98
|
+
<v>0</v>
|
99
|
+
</c>
|
100
|
+
</row>
|
101
|
+
<row r="3" spans="1:5" x14ac:dyDescent="0.25">
|
102
|
+
<c r="A3">
|
103
|
+
<v>-2</v>
|
104
|
+
</c>
|
105
|
+
<c r="B3">
|
106
|
+
<v>2</v>
|
107
|
+
</c>
|
108
|
+
<c r="C3">
|
109
|
+
<v>3</v>
|
110
|
+
</c>
|
111
|
+
<c r="D3">
|
112
|
+
<v>-1</v>
|
113
|
+
</c>
|
114
|
+
<c r="E3">
|
115
|
+
<v>0</v>
|
116
|
+
</c>
|
117
|
+
</row>
|
118
|
+
</sheetData>
|
119
|
+
<pageMargins left="0.7" right="0.7" top="0.75" bottom="0.75" header="0.3" footer="0.3"/>
|
120
|
+
<extLst>
|
121
|
+
<ext xmlns:x14="http://schemas.microsoft.com/office/spreadsheetml/2009/9/main" uri="{05C60535-1F16-4fd2-B633-F4F36F0B64E0}">
|
122
|
+
<x14:sparklineGroups xmlns:xm="http://schemas.microsoft.com/office/excel/2006/main">
|
123
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
124
|
+
<x14:colorSeries rgb="FFFF0000"/>
|
125
|
+
<x14:colorNegative theme="5"/>
|
126
|
+
<x14:colorAxis rgb="FF000000"/>
|
127
|
+
<x14:colorMarkers theme="4" tint="-0.499984740745262"/>
|
128
|
+
<x14:colorFirst theme="4" tint="0.39997558519241921"/>
|
129
|
+
<x14:colorLast theme="4" tint="0.39997558519241921"/>
|
130
|
+
<x14:colorHigh theme="4"/>
|
131
|
+
<x14:colorLow theme="4"/>
|
132
|
+
<x14:sparklines>
|
133
|
+
<x14:sparkline>
|
134
|
+
<xm:f>Sheet1!A3:E3</xm:f>
|
135
|
+
<xm:sqref>F3</xm:sqref>
|
136
|
+
</x14:sparkline>
|
137
|
+
</x14:sparklines>
|
138
|
+
</x14:sparklineGroup>
|
139
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
140
|
+
<x14:colorSeries theme="5" tint="-0.499984740745262"/>
|
141
|
+
<x14:colorNegative theme="6"/>
|
142
|
+
<x14:colorAxis rgb="FF000000"/>
|
143
|
+
<x14:colorMarkers theme="5" tint="-0.499984740745262"/>
|
144
|
+
<x14:colorFirst theme="5" tint="0.39997558519241921"/>
|
145
|
+
<x14:colorLast theme="5" tint="0.39997558519241921"/>
|
146
|
+
<x14:colorHigh theme="5"/>
|
147
|
+
<x14:colorLow theme="5"/>
|
148
|
+
<x14:sparklines>
|
149
|
+
<x14:sparkline>
|
150
|
+
<xm:f>Sheet1!A2:E2</xm:f>
|
151
|
+
<xm:sqref>F2</xm:sqref>
|
152
|
+
</x14:sparkline>
|
153
|
+
</x14:sparklines>
|
154
|
+
</x14:sparklineGroup>
|
155
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
156
|
+
<x14:colorSeries theme="4" tint="-0.499984740745262"/>
|
157
|
+
<x14:colorNegative theme="5"/>
|
158
|
+
<x14:colorAxis rgb="FF000000"/>
|
159
|
+
<x14:colorMarkers theme="4" tint="-0.499984740745262"/>
|
160
|
+
<x14:colorFirst theme="4" tint="0.39997558519241921"/>
|
161
|
+
<x14:colorLast theme="4" tint="0.39997558519241921"/>
|
162
|
+
<x14:colorHigh theme="4"/>
|
163
|
+
<x14:colorLow theme="4"/>
|
164
|
+
<x14:sparklines>
|
165
|
+
<x14:sparkline>
|
166
|
+
<xm:f>Sheet1!A1:E1</xm:f>
|
167
|
+
<xm:sqref>F1</xm:sqref>
|
168
|
+
</x14:sparkline>
|
169
|
+
</x14:sparklines>
|
170
|
+
</x14:sparklineGroup>
|
171
|
+
</x14:sparklineGroups>
|
172
|
+
</ext>
|
173
|
+
</extLst>
|
174
|
+
</worksheet>
|
175
|
+
EOS
|
176
|
+
end
|
177
|
+
end
|
@@ -0,0 +1,1250 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'helper'
|
3
|
+
require 'write_xlsx'
|
4
|
+
require 'stringio'
|
5
|
+
|
6
|
+
class TestSparkline09 < Test::Unit::TestCase
|
7
|
+
def setup
|
8
|
+
@workbook = WriteXLSX.new(StringIO.new)
|
9
|
+
@worksheet = @workbook.add_worksheet
|
10
|
+
end
|
11
|
+
|
12
|
+
def test_sparkline09
|
13
|
+
@worksheet.instance_variable_set(:@excel_version, 2010)
|
14
|
+
@worksheet.select
|
15
|
+
|
16
|
+
data = [-2, 2, 3, -1, 0]
|
17
|
+
|
18
|
+
# Set up sparklines
|
19
|
+
|
20
|
+
# Test all the styles.
|
21
|
+
(1..36).each do |i|
|
22
|
+
@worksheet.write(i-1, 0, data)
|
23
|
+
@worksheet.add_sparkline(
|
24
|
+
{
|
25
|
+
:location => "F#{i}",
|
26
|
+
:range => "A#{i}:E#{i}",
|
27
|
+
:style => i
|
28
|
+
}
|
29
|
+
)
|
30
|
+
end
|
31
|
+
|
32
|
+
# End sparklines
|
33
|
+
|
34
|
+
@worksheet.assemble_xml_file
|
35
|
+
result = got_to_array(@worksheet.instance_variable_get(:@writer).string)
|
36
|
+
|
37
|
+
expected = expected_to_array(expected_xml)
|
38
|
+
assert_equal(expected, result)
|
39
|
+
end
|
40
|
+
|
41
|
+
def expected_xml
|
42
|
+
<<EOS
|
43
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
44
|
+
<worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:x14ac="http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac" mc:Ignorable="x14ac">
|
45
|
+
<dimension ref="A1:E36"/>
|
46
|
+
<sheetViews>
|
47
|
+
<sheetView tabSelected="1" workbookViewId="0"/>
|
48
|
+
</sheetViews>
|
49
|
+
<sheetFormatPr defaultRowHeight="15" x14ac:dyDescent="0.25"/>
|
50
|
+
<sheetData>
|
51
|
+
<row r="1" spans="1:5" x14ac:dyDescent="0.25">
|
52
|
+
<c r="A1">
|
53
|
+
<v>-2</v>
|
54
|
+
</c>
|
55
|
+
<c r="B1">
|
56
|
+
<v>2</v>
|
57
|
+
</c>
|
58
|
+
<c r="C1">
|
59
|
+
<v>3</v>
|
60
|
+
</c>
|
61
|
+
<c r="D1">
|
62
|
+
<v>-1</v>
|
63
|
+
</c>
|
64
|
+
<c r="E1">
|
65
|
+
<v>0</v>
|
66
|
+
</c>
|
67
|
+
</row>
|
68
|
+
<row r="2" spans="1:5" x14ac:dyDescent="0.25">
|
69
|
+
<c r="A2">
|
70
|
+
<v>-2</v>
|
71
|
+
</c>
|
72
|
+
<c r="B2">
|
73
|
+
<v>2</v>
|
74
|
+
</c>
|
75
|
+
<c r="C2">
|
76
|
+
<v>3</v>
|
77
|
+
</c>
|
78
|
+
<c r="D2">
|
79
|
+
<v>-1</v>
|
80
|
+
</c>
|
81
|
+
<c r="E2">
|
82
|
+
<v>0</v>
|
83
|
+
</c>
|
84
|
+
</row>
|
85
|
+
<row r="3" spans="1:5" x14ac:dyDescent="0.25">
|
86
|
+
<c r="A3">
|
87
|
+
<v>-2</v>
|
88
|
+
</c>
|
89
|
+
<c r="B3">
|
90
|
+
<v>2</v>
|
91
|
+
</c>
|
92
|
+
<c r="C3">
|
93
|
+
<v>3</v>
|
94
|
+
</c>
|
95
|
+
<c r="D3">
|
96
|
+
<v>-1</v>
|
97
|
+
</c>
|
98
|
+
<c r="E3">
|
99
|
+
<v>0</v>
|
100
|
+
</c>
|
101
|
+
</row>
|
102
|
+
<row r="4" spans="1:5" x14ac:dyDescent="0.25">
|
103
|
+
<c r="A4">
|
104
|
+
<v>-2</v>
|
105
|
+
</c>
|
106
|
+
<c r="B4">
|
107
|
+
<v>2</v>
|
108
|
+
</c>
|
109
|
+
<c r="C4">
|
110
|
+
<v>3</v>
|
111
|
+
</c>
|
112
|
+
<c r="D4">
|
113
|
+
<v>-1</v>
|
114
|
+
</c>
|
115
|
+
<c r="E4">
|
116
|
+
<v>0</v>
|
117
|
+
</c>
|
118
|
+
</row>
|
119
|
+
<row r="5" spans="1:5" x14ac:dyDescent="0.25">
|
120
|
+
<c r="A5">
|
121
|
+
<v>-2</v>
|
122
|
+
</c>
|
123
|
+
<c r="B5">
|
124
|
+
<v>2</v>
|
125
|
+
</c>
|
126
|
+
<c r="C5">
|
127
|
+
<v>3</v>
|
128
|
+
</c>
|
129
|
+
<c r="D5">
|
130
|
+
<v>-1</v>
|
131
|
+
</c>
|
132
|
+
<c r="E5">
|
133
|
+
<v>0</v>
|
134
|
+
</c>
|
135
|
+
</row>
|
136
|
+
<row r="6" spans="1:5" x14ac:dyDescent="0.25">
|
137
|
+
<c r="A6">
|
138
|
+
<v>-2</v>
|
139
|
+
</c>
|
140
|
+
<c r="B6">
|
141
|
+
<v>2</v>
|
142
|
+
</c>
|
143
|
+
<c r="C6">
|
144
|
+
<v>3</v>
|
145
|
+
</c>
|
146
|
+
<c r="D6">
|
147
|
+
<v>-1</v>
|
148
|
+
</c>
|
149
|
+
<c r="E6">
|
150
|
+
<v>0</v>
|
151
|
+
</c>
|
152
|
+
</row>
|
153
|
+
<row r="7" spans="1:5" x14ac:dyDescent="0.25">
|
154
|
+
<c r="A7">
|
155
|
+
<v>-2</v>
|
156
|
+
</c>
|
157
|
+
<c r="B7">
|
158
|
+
<v>2</v>
|
159
|
+
</c>
|
160
|
+
<c r="C7">
|
161
|
+
<v>3</v>
|
162
|
+
</c>
|
163
|
+
<c r="D7">
|
164
|
+
<v>-1</v>
|
165
|
+
</c>
|
166
|
+
<c r="E7">
|
167
|
+
<v>0</v>
|
168
|
+
</c>
|
169
|
+
</row>
|
170
|
+
<row r="8" spans="1:5" x14ac:dyDescent="0.25">
|
171
|
+
<c r="A8">
|
172
|
+
<v>-2</v>
|
173
|
+
</c>
|
174
|
+
<c r="B8">
|
175
|
+
<v>2</v>
|
176
|
+
</c>
|
177
|
+
<c r="C8">
|
178
|
+
<v>3</v>
|
179
|
+
</c>
|
180
|
+
<c r="D8">
|
181
|
+
<v>-1</v>
|
182
|
+
</c>
|
183
|
+
<c r="E8">
|
184
|
+
<v>0</v>
|
185
|
+
</c>
|
186
|
+
</row>
|
187
|
+
<row r="9" spans="1:5" x14ac:dyDescent="0.25">
|
188
|
+
<c r="A9">
|
189
|
+
<v>-2</v>
|
190
|
+
</c>
|
191
|
+
<c r="B9">
|
192
|
+
<v>2</v>
|
193
|
+
</c>
|
194
|
+
<c r="C9">
|
195
|
+
<v>3</v>
|
196
|
+
</c>
|
197
|
+
<c r="D9">
|
198
|
+
<v>-1</v>
|
199
|
+
</c>
|
200
|
+
<c r="E9">
|
201
|
+
<v>0</v>
|
202
|
+
</c>
|
203
|
+
</row>
|
204
|
+
<row r="10" spans="1:5" x14ac:dyDescent="0.25">
|
205
|
+
<c r="A10">
|
206
|
+
<v>-2</v>
|
207
|
+
</c>
|
208
|
+
<c r="B10">
|
209
|
+
<v>2</v>
|
210
|
+
</c>
|
211
|
+
<c r="C10">
|
212
|
+
<v>3</v>
|
213
|
+
</c>
|
214
|
+
<c r="D10">
|
215
|
+
<v>-1</v>
|
216
|
+
</c>
|
217
|
+
<c r="E10">
|
218
|
+
<v>0</v>
|
219
|
+
</c>
|
220
|
+
</row>
|
221
|
+
<row r="11" spans="1:5" x14ac:dyDescent="0.25">
|
222
|
+
<c r="A11">
|
223
|
+
<v>-2</v>
|
224
|
+
</c>
|
225
|
+
<c r="B11">
|
226
|
+
<v>2</v>
|
227
|
+
</c>
|
228
|
+
<c r="C11">
|
229
|
+
<v>3</v>
|
230
|
+
</c>
|
231
|
+
<c r="D11">
|
232
|
+
<v>-1</v>
|
233
|
+
</c>
|
234
|
+
<c r="E11">
|
235
|
+
<v>0</v>
|
236
|
+
</c>
|
237
|
+
</row>
|
238
|
+
<row r="12" spans="1:5" x14ac:dyDescent="0.25">
|
239
|
+
<c r="A12">
|
240
|
+
<v>-2</v>
|
241
|
+
</c>
|
242
|
+
<c r="B12">
|
243
|
+
<v>2</v>
|
244
|
+
</c>
|
245
|
+
<c r="C12">
|
246
|
+
<v>3</v>
|
247
|
+
</c>
|
248
|
+
<c r="D12">
|
249
|
+
<v>-1</v>
|
250
|
+
</c>
|
251
|
+
<c r="E12">
|
252
|
+
<v>0</v>
|
253
|
+
</c>
|
254
|
+
</row>
|
255
|
+
<row r="13" spans="1:5" x14ac:dyDescent="0.25">
|
256
|
+
<c r="A13">
|
257
|
+
<v>-2</v>
|
258
|
+
</c>
|
259
|
+
<c r="B13">
|
260
|
+
<v>2</v>
|
261
|
+
</c>
|
262
|
+
<c r="C13">
|
263
|
+
<v>3</v>
|
264
|
+
</c>
|
265
|
+
<c r="D13">
|
266
|
+
<v>-1</v>
|
267
|
+
</c>
|
268
|
+
<c r="E13">
|
269
|
+
<v>0</v>
|
270
|
+
</c>
|
271
|
+
</row>
|
272
|
+
<row r="14" spans="1:5" x14ac:dyDescent="0.25">
|
273
|
+
<c r="A14">
|
274
|
+
<v>-2</v>
|
275
|
+
</c>
|
276
|
+
<c r="B14">
|
277
|
+
<v>2</v>
|
278
|
+
</c>
|
279
|
+
<c r="C14">
|
280
|
+
<v>3</v>
|
281
|
+
</c>
|
282
|
+
<c r="D14">
|
283
|
+
<v>-1</v>
|
284
|
+
</c>
|
285
|
+
<c r="E14">
|
286
|
+
<v>0</v>
|
287
|
+
</c>
|
288
|
+
</row>
|
289
|
+
<row r="15" spans="1:5" x14ac:dyDescent="0.25">
|
290
|
+
<c r="A15">
|
291
|
+
<v>-2</v>
|
292
|
+
</c>
|
293
|
+
<c r="B15">
|
294
|
+
<v>2</v>
|
295
|
+
</c>
|
296
|
+
<c r="C15">
|
297
|
+
<v>3</v>
|
298
|
+
</c>
|
299
|
+
<c r="D15">
|
300
|
+
<v>-1</v>
|
301
|
+
</c>
|
302
|
+
<c r="E15">
|
303
|
+
<v>0</v>
|
304
|
+
</c>
|
305
|
+
</row>
|
306
|
+
<row r="16" spans="1:5" x14ac:dyDescent="0.25">
|
307
|
+
<c r="A16">
|
308
|
+
<v>-2</v>
|
309
|
+
</c>
|
310
|
+
<c r="B16">
|
311
|
+
<v>2</v>
|
312
|
+
</c>
|
313
|
+
<c r="C16">
|
314
|
+
<v>3</v>
|
315
|
+
</c>
|
316
|
+
<c r="D16">
|
317
|
+
<v>-1</v>
|
318
|
+
</c>
|
319
|
+
<c r="E16">
|
320
|
+
<v>0</v>
|
321
|
+
</c>
|
322
|
+
</row>
|
323
|
+
<row r="17" spans="1:5" x14ac:dyDescent="0.25">
|
324
|
+
<c r="A17">
|
325
|
+
<v>-2</v>
|
326
|
+
</c>
|
327
|
+
<c r="B17">
|
328
|
+
<v>2</v>
|
329
|
+
</c>
|
330
|
+
<c r="C17">
|
331
|
+
<v>3</v>
|
332
|
+
</c>
|
333
|
+
<c r="D17">
|
334
|
+
<v>-1</v>
|
335
|
+
</c>
|
336
|
+
<c r="E17">
|
337
|
+
<v>0</v>
|
338
|
+
</c>
|
339
|
+
</row>
|
340
|
+
<row r="18" spans="1:5" x14ac:dyDescent="0.25">
|
341
|
+
<c r="A18">
|
342
|
+
<v>-2</v>
|
343
|
+
</c>
|
344
|
+
<c r="B18">
|
345
|
+
<v>2</v>
|
346
|
+
</c>
|
347
|
+
<c r="C18">
|
348
|
+
<v>3</v>
|
349
|
+
</c>
|
350
|
+
<c r="D18">
|
351
|
+
<v>-1</v>
|
352
|
+
</c>
|
353
|
+
<c r="E18">
|
354
|
+
<v>0</v>
|
355
|
+
</c>
|
356
|
+
</row>
|
357
|
+
<row r="19" spans="1:5" x14ac:dyDescent="0.25">
|
358
|
+
<c r="A19">
|
359
|
+
<v>-2</v>
|
360
|
+
</c>
|
361
|
+
<c r="B19">
|
362
|
+
<v>2</v>
|
363
|
+
</c>
|
364
|
+
<c r="C19">
|
365
|
+
<v>3</v>
|
366
|
+
</c>
|
367
|
+
<c r="D19">
|
368
|
+
<v>-1</v>
|
369
|
+
</c>
|
370
|
+
<c r="E19">
|
371
|
+
<v>0</v>
|
372
|
+
</c>
|
373
|
+
</row>
|
374
|
+
<row r="20" spans="1:5" x14ac:dyDescent="0.25">
|
375
|
+
<c r="A20">
|
376
|
+
<v>-2</v>
|
377
|
+
</c>
|
378
|
+
<c r="B20">
|
379
|
+
<v>2</v>
|
380
|
+
</c>
|
381
|
+
<c r="C20">
|
382
|
+
<v>3</v>
|
383
|
+
</c>
|
384
|
+
<c r="D20">
|
385
|
+
<v>-1</v>
|
386
|
+
</c>
|
387
|
+
<c r="E20">
|
388
|
+
<v>0</v>
|
389
|
+
</c>
|
390
|
+
</row>
|
391
|
+
<row r="21" spans="1:5" x14ac:dyDescent="0.25">
|
392
|
+
<c r="A21">
|
393
|
+
<v>-2</v>
|
394
|
+
</c>
|
395
|
+
<c r="B21">
|
396
|
+
<v>2</v>
|
397
|
+
</c>
|
398
|
+
<c r="C21">
|
399
|
+
<v>3</v>
|
400
|
+
</c>
|
401
|
+
<c r="D21">
|
402
|
+
<v>-1</v>
|
403
|
+
</c>
|
404
|
+
<c r="E21">
|
405
|
+
<v>0</v>
|
406
|
+
</c>
|
407
|
+
</row>
|
408
|
+
<row r="22" spans="1:5" x14ac:dyDescent="0.25">
|
409
|
+
<c r="A22">
|
410
|
+
<v>-2</v>
|
411
|
+
</c>
|
412
|
+
<c r="B22">
|
413
|
+
<v>2</v>
|
414
|
+
</c>
|
415
|
+
<c r="C22">
|
416
|
+
<v>3</v>
|
417
|
+
</c>
|
418
|
+
<c r="D22">
|
419
|
+
<v>-1</v>
|
420
|
+
</c>
|
421
|
+
<c r="E22">
|
422
|
+
<v>0</v>
|
423
|
+
</c>
|
424
|
+
</row>
|
425
|
+
<row r="23" spans="1:5" x14ac:dyDescent="0.25">
|
426
|
+
<c r="A23">
|
427
|
+
<v>-2</v>
|
428
|
+
</c>
|
429
|
+
<c r="B23">
|
430
|
+
<v>2</v>
|
431
|
+
</c>
|
432
|
+
<c r="C23">
|
433
|
+
<v>3</v>
|
434
|
+
</c>
|
435
|
+
<c r="D23">
|
436
|
+
<v>-1</v>
|
437
|
+
</c>
|
438
|
+
<c r="E23">
|
439
|
+
<v>0</v>
|
440
|
+
</c>
|
441
|
+
</row>
|
442
|
+
<row r="24" spans="1:5" x14ac:dyDescent="0.25">
|
443
|
+
<c r="A24">
|
444
|
+
<v>-2</v>
|
445
|
+
</c>
|
446
|
+
<c r="B24">
|
447
|
+
<v>2</v>
|
448
|
+
</c>
|
449
|
+
<c r="C24">
|
450
|
+
<v>3</v>
|
451
|
+
</c>
|
452
|
+
<c r="D24">
|
453
|
+
<v>-1</v>
|
454
|
+
</c>
|
455
|
+
<c r="E24">
|
456
|
+
<v>0</v>
|
457
|
+
</c>
|
458
|
+
</row>
|
459
|
+
<row r="25" spans="1:5" x14ac:dyDescent="0.25">
|
460
|
+
<c r="A25">
|
461
|
+
<v>-2</v>
|
462
|
+
</c>
|
463
|
+
<c r="B25">
|
464
|
+
<v>2</v>
|
465
|
+
</c>
|
466
|
+
<c r="C25">
|
467
|
+
<v>3</v>
|
468
|
+
</c>
|
469
|
+
<c r="D25">
|
470
|
+
<v>-1</v>
|
471
|
+
</c>
|
472
|
+
<c r="E25">
|
473
|
+
<v>0</v>
|
474
|
+
</c>
|
475
|
+
</row>
|
476
|
+
<row r="26" spans="1:5" x14ac:dyDescent="0.25">
|
477
|
+
<c r="A26">
|
478
|
+
<v>-2</v>
|
479
|
+
</c>
|
480
|
+
<c r="B26">
|
481
|
+
<v>2</v>
|
482
|
+
</c>
|
483
|
+
<c r="C26">
|
484
|
+
<v>3</v>
|
485
|
+
</c>
|
486
|
+
<c r="D26">
|
487
|
+
<v>-1</v>
|
488
|
+
</c>
|
489
|
+
<c r="E26">
|
490
|
+
<v>0</v>
|
491
|
+
</c>
|
492
|
+
</row>
|
493
|
+
<row r="27" spans="1:5" x14ac:dyDescent="0.25">
|
494
|
+
<c r="A27">
|
495
|
+
<v>-2</v>
|
496
|
+
</c>
|
497
|
+
<c r="B27">
|
498
|
+
<v>2</v>
|
499
|
+
</c>
|
500
|
+
<c r="C27">
|
501
|
+
<v>3</v>
|
502
|
+
</c>
|
503
|
+
<c r="D27">
|
504
|
+
<v>-1</v>
|
505
|
+
</c>
|
506
|
+
<c r="E27">
|
507
|
+
<v>0</v>
|
508
|
+
</c>
|
509
|
+
</row>
|
510
|
+
<row r="28" spans="1:5" x14ac:dyDescent="0.25">
|
511
|
+
<c r="A28">
|
512
|
+
<v>-2</v>
|
513
|
+
</c>
|
514
|
+
<c r="B28">
|
515
|
+
<v>2</v>
|
516
|
+
</c>
|
517
|
+
<c r="C28">
|
518
|
+
<v>3</v>
|
519
|
+
</c>
|
520
|
+
<c r="D28">
|
521
|
+
<v>-1</v>
|
522
|
+
</c>
|
523
|
+
<c r="E28">
|
524
|
+
<v>0</v>
|
525
|
+
</c>
|
526
|
+
</row>
|
527
|
+
<row r="29" spans="1:5" x14ac:dyDescent="0.25">
|
528
|
+
<c r="A29">
|
529
|
+
<v>-2</v>
|
530
|
+
</c>
|
531
|
+
<c r="B29">
|
532
|
+
<v>2</v>
|
533
|
+
</c>
|
534
|
+
<c r="C29">
|
535
|
+
<v>3</v>
|
536
|
+
</c>
|
537
|
+
<c r="D29">
|
538
|
+
<v>-1</v>
|
539
|
+
</c>
|
540
|
+
<c r="E29">
|
541
|
+
<v>0</v>
|
542
|
+
</c>
|
543
|
+
</row>
|
544
|
+
<row r="30" spans="1:5" x14ac:dyDescent="0.25">
|
545
|
+
<c r="A30">
|
546
|
+
<v>-2</v>
|
547
|
+
</c>
|
548
|
+
<c r="B30">
|
549
|
+
<v>2</v>
|
550
|
+
</c>
|
551
|
+
<c r="C30">
|
552
|
+
<v>3</v>
|
553
|
+
</c>
|
554
|
+
<c r="D30">
|
555
|
+
<v>-1</v>
|
556
|
+
</c>
|
557
|
+
<c r="E30">
|
558
|
+
<v>0</v>
|
559
|
+
</c>
|
560
|
+
</row>
|
561
|
+
<row r="31" spans="1:5" x14ac:dyDescent="0.25">
|
562
|
+
<c r="A31">
|
563
|
+
<v>-2</v>
|
564
|
+
</c>
|
565
|
+
<c r="B31">
|
566
|
+
<v>2</v>
|
567
|
+
</c>
|
568
|
+
<c r="C31">
|
569
|
+
<v>3</v>
|
570
|
+
</c>
|
571
|
+
<c r="D31">
|
572
|
+
<v>-1</v>
|
573
|
+
</c>
|
574
|
+
<c r="E31">
|
575
|
+
<v>0</v>
|
576
|
+
</c>
|
577
|
+
</row>
|
578
|
+
<row r="32" spans="1:5" x14ac:dyDescent="0.25">
|
579
|
+
<c r="A32">
|
580
|
+
<v>-2</v>
|
581
|
+
</c>
|
582
|
+
<c r="B32">
|
583
|
+
<v>2</v>
|
584
|
+
</c>
|
585
|
+
<c r="C32">
|
586
|
+
<v>3</v>
|
587
|
+
</c>
|
588
|
+
<c r="D32">
|
589
|
+
<v>-1</v>
|
590
|
+
</c>
|
591
|
+
<c r="E32">
|
592
|
+
<v>0</v>
|
593
|
+
</c>
|
594
|
+
</row>
|
595
|
+
<row r="33" spans="1:5" x14ac:dyDescent="0.25">
|
596
|
+
<c r="A33">
|
597
|
+
<v>-2</v>
|
598
|
+
</c>
|
599
|
+
<c r="B33">
|
600
|
+
<v>2</v>
|
601
|
+
</c>
|
602
|
+
<c r="C33">
|
603
|
+
<v>3</v>
|
604
|
+
</c>
|
605
|
+
<c r="D33">
|
606
|
+
<v>-1</v>
|
607
|
+
</c>
|
608
|
+
<c r="E33">
|
609
|
+
<v>0</v>
|
610
|
+
</c>
|
611
|
+
</row>
|
612
|
+
<row r="34" spans="1:5" x14ac:dyDescent="0.25">
|
613
|
+
<c r="A34">
|
614
|
+
<v>-2</v>
|
615
|
+
</c>
|
616
|
+
<c r="B34">
|
617
|
+
<v>2</v>
|
618
|
+
</c>
|
619
|
+
<c r="C34">
|
620
|
+
<v>3</v>
|
621
|
+
</c>
|
622
|
+
<c r="D34">
|
623
|
+
<v>-1</v>
|
624
|
+
</c>
|
625
|
+
<c r="E34">
|
626
|
+
<v>0</v>
|
627
|
+
</c>
|
628
|
+
</row>
|
629
|
+
<row r="35" spans="1:5" x14ac:dyDescent="0.25">
|
630
|
+
<c r="A35">
|
631
|
+
<v>-2</v>
|
632
|
+
</c>
|
633
|
+
<c r="B35">
|
634
|
+
<v>2</v>
|
635
|
+
</c>
|
636
|
+
<c r="C35">
|
637
|
+
<v>3</v>
|
638
|
+
</c>
|
639
|
+
<c r="D35">
|
640
|
+
<v>-1</v>
|
641
|
+
</c>
|
642
|
+
<c r="E35">
|
643
|
+
<v>0</v>
|
644
|
+
</c>
|
645
|
+
</row>
|
646
|
+
<row r="36" spans="1:5" x14ac:dyDescent="0.25">
|
647
|
+
<c r="A36">
|
648
|
+
<v>-2</v>
|
649
|
+
</c>
|
650
|
+
<c r="B36">
|
651
|
+
<v>2</v>
|
652
|
+
</c>
|
653
|
+
<c r="C36">
|
654
|
+
<v>3</v>
|
655
|
+
</c>
|
656
|
+
<c r="D36">
|
657
|
+
<v>-1</v>
|
658
|
+
</c>
|
659
|
+
<c r="E36">
|
660
|
+
<v>0</v>
|
661
|
+
</c>
|
662
|
+
</row>
|
663
|
+
</sheetData>
|
664
|
+
<pageMargins left="0.7" right="0.7" top="0.75" bottom="0.75" header="0.3" footer="0.3"/>
|
665
|
+
<extLst>
|
666
|
+
<ext xmlns:x14="http://schemas.microsoft.com/office/spreadsheetml/2009/9/main" uri="{05C60535-1F16-4fd2-B633-F4F36F0B64E0}">
|
667
|
+
<x14:sparklineGroups xmlns:xm="http://schemas.microsoft.com/office/excel/2006/main">
|
668
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
669
|
+
<x14:colorSeries theme="1"/>
|
670
|
+
<x14:colorNegative theme="9"/>
|
671
|
+
<x14:colorAxis rgb="FF000000"/>
|
672
|
+
<x14:colorMarkers theme="8"/>
|
673
|
+
<x14:colorFirst theme="4"/>
|
674
|
+
<x14:colorLast theme="5"/>
|
675
|
+
<x14:colorHigh theme="6"/>
|
676
|
+
<x14:colorLow theme="7"/>
|
677
|
+
<x14:sparklines>
|
678
|
+
<x14:sparkline>
|
679
|
+
<xm:f>Sheet1!A36:E36</xm:f>
|
680
|
+
<xm:sqref>F36</xm:sqref>
|
681
|
+
</x14:sparkline>
|
682
|
+
</x14:sparklines>
|
683
|
+
</x14:sparklineGroup>
|
684
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
685
|
+
<x14:colorSeries theme="3"/>
|
686
|
+
<x14:colorNegative theme="9"/>
|
687
|
+
<x14:colorAxis rgb="FF000000"/>
|
688
|
+
<x14:colorMarkers theme="8"/>
|
689
|
+
<x14:colorFirst theme="4"/>
|
690
|
+
<x14:colorLast theme="5"/>
|
691
|
+
<x14:colorHigh theme="6"/>
|
692
|
+
<x14:colorLow theme="7"/>
|
693
|
+
<x14:sparklines>
|
694
|
+
<x14:sparkline>
|
695
|
+
<xm:f>Sheet1!A35:E35</xm:f>
|
696
|
+
<xm:sqref>F35</xm:sqref>
|
697
|
+
</x14:sparkline>
|
698
|
+
</x14:sparklines>
|
699
|
+
</x14:sparklineGroup>
|
700
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
701
|
+
<x14:colorSeries rgb="FF00B050"/>
|
702
|
+
<x14:colorNegative rgb="FFFF0000"/>
|
703
|
+
<x14:colorAxis rgb="FF000000"/>
|
704
|
+
<x14:colorMarkers rgb="FF0070C0"/>
|
705
|
+
<x14:colorFirst rgb="FFFFC000"/>
|
706
|
+
<x14:colorLast rgb="FFFFC000"/>
|
707
|
+
<x14:colorHigh rgb="FF00B050"/>
|
708
|
+
<x14:colorLow rgb="FFFF0000"/>
|
709
|
+
<x14:sparklines>
|
710
|
+
<x14:sparkline>
|
711
|
+
<xm:f>Sheet1!A34:E34</xm:f>
|
712
|
+
<xm:sqref>F34</xm:sqref>
|
713
|
+
</x14:sparkline>
|
714
|
+
</x14:sparklines>
|
715
|
+
</x14:sparklineGroup>
|
716
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
717
|
+
<x14:colorSeries rgb="FFC6EFCE"/>
|
718
|
+
<x14:colorNegative rgb="FFFFC7CE"/>
|
719
|
+
<x14:colorAxis rgb="FF000000"/>
|
720
|
+
<x14:colorMarkers rgb="FF8CADD6"/>
|
721
|
+
<x14:colorFirst rgb="FFFFDC47"/>
|
722
|
+
<x14:colorLast rgb="FFFFEB9C"/>
|
723
|
+
<x14:colorHigh rgb="FF60D276"/>
|
724
|
+
<x14:colorLow rgb="FFFF5367"/>
|
725
|
+
<x14:sparklines>
|
726
|
+
<x14:sparkline>
|
727
|
+
<xm:f>Sheet1!A33:E33</xm:f>
|
728
|
+
<xm:sqref>F33</xm:sqref>
|
729
|
+
</x14:sparkline>
|
730
|
+
</x14:sparklines>
|
731
|
+
</x14:sparklineGroup>
|
732
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
733
|
+
<x14:colorSeries rgb="FF5687C2"/>
|
734
|
+
<x14:colorNegative rgb="FFFFB620"/>
|
735
|
+
<x14:colorAxis rgb="FF000000"/>
|
736
|
+
<x14:colorMarkers rgb="FFD70077"/>
|
737
|
+
<x14:colorFirst rgb="FF777777"/>
|
738
|
+
<x14:colorLast rgb="FF359CEB"/>
|
739
|
+
<x14:colorHigh rgb="FF56BE79"/>
|
740
|
+
<x14:colorLow rgb="FFFF5055"/>
|
741
|
+
<x14:sparklines>
|
742
|
+
<x14:sparkline>
|
743
|
+
<xm:f>Sheet1!A32:E32</xm:f>
|
744
|
+
<xm:sqref>F32</xm:sqref>
|
745
|
+
</x14:sparkline>
|
746
|
+
</x14:sparklines>
|
747
|
+
</x14:sparklineGroup>
|
748
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
749
|
+
<x14:colorSeries rgb="FF5F5F5F"/>
|
750
|
+
<x14:colorNegative rgb="FFFFB620"/>
|
751
|
+
<x14:colorAxis rgb="FF000000"/>
|
752
|
+
<x14:colorMarkers rgb="FFD70077"/>
|
753
|
+
<x14:colorFirst rgb="FF5687C2"/>
|
754
|
+
<x14:colorLast rgb="FF359CEB"/>
|
755
|
+
<x14:colorHigh rgb="FF56BE79"/>
|
756
|
+
<x14:colorLow rgb="FFFF5055"/>
|
757
|
+
<x14:sparklines>
|
758
|
+
<x14:sparkline>
|
759
|
+
<xm:f>Sheet1!A31:E31</xm:f>
|
760
|
+
<xm:sqref>F31</xm:sqref>
|
761
|
+
</x14:sparkline>
|
762
|
+
</x14:sparklines>
|
763
|
+
</x14:sparklineGroup>
|
764
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
765
|
+
<x14:colorSeries rgb="FF0070C0"/>
|
766
|
+
<x14:colorNegative rgb="FF000000"/>
|
767
|
+
<x14:colorAxis rgb="FF000000"/>
|
768
|
+
<x14:colorMarkers rgb="FF000000"/>
|
769
|
+
<x14:colorFirst rgb="FF000000"/>
|
770
|
+
<x14:colorLast rgb="FF000000"/>
|
771
|
+
<x14:colorHigh rgb="FF000000"/>
|
772
|
+
<x14:colorLow rgb="FF000000"/>
|
773
|
+
<x14:sparklines>
|
774
|
+
<x14:sparkline>
|
775
|
+
<xm:f>Sheet1!A30:E30</xm:f>
|
776
|
+
<xm:sqref>F30</xm:sqref>
|
777
|
+
</x14:sparkline>
|
778
|
+
</x14:sparklines>
|
779
|
+
</x14:sparklineGroup>
|
780
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
781
|
+
<x14:colorSeries rgb="FF376092"/>
|
782
|
+
<x14:colorNegative rgb="FFD00000"/>
|
783
|
+
<x14:colorAxis rgb="FF000000"/>
|
784
|
+
<x14:colorMarkers rgb="FFD00000"/>
|
785
|
+
<x14:colorFirst rgb="FFD00000"/>
|
786
|
+
<x14:colorLast rgb="FFD00000"/>
|
787
|
+
<x14:colorHigh rgb="FFD00000"/>
|
788
|
+
<x14:colorLow rgb="FFD00000"/>
|
789
|
+
<x14:sparklines>
|
790
|
+
<x14:sparkline>
|
791
|
+
<xm:f>Sheet1!A29:E29</xm:f>
|
792
|
+
<xm:sqref>F29</xm:sqref>
|
793
|
+
</x14:sparkline>
|
794
|
+
</x14:sparklines>
|
795
|
+
</x14:sparklineGroup>
|
796
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
797
|
+
<x14:colorSeries rgb="FF000000"/>
|
798
|
+
<x14:colorNegative rgb="FF0070C0"/>
|
799
|
+
<x14:colorAxis rgb="FF000000"/>
|
800
|
+
<x14:colorMarkers rgb="FF0070C0"/>
|
801
|
+
<x14:colorFirst rgb="FF0070C0"/>
|
802
|
+
<x14:colorLast rgb="FF0070C0"/>
|
803
|
+
<x14:colorHigh rgb="FF0070C0"/>
|
804
|
+
<x14:colorLow rgb="FF0070C0"/>
|
805
|
+
<x14:sparklines>
|
806
|
+
<x14:sparkline>
|
807
|
+
<xm:f>Sheet1!A28:E28</xm:f>
|
808
|
+
<xm:sqref>F28</xm:sqref>
|
809
|
+
</x14:sparkline>
|
810
|
+
</x14:sparklines>
|
811
|
+
</x14:sparklineGroup>
|
812
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
813
|
+
<x14:colorSeries rgb="FF323232"/>
|
814
|
+
<x14:colorNegative rgb="FFD00000"/>
|
815
|
+
<x14:colorAxis rgb="FF000000"/>
|
816
|
+
<x14:colorMarkers rgb="FFD00000"/>
|
817
|
+
<x14:colorFirst rgb="FFD00000"/>
|
818
|
+
<x14:colorLast rgb="FFD00000"/>
|
819
|
+
<x14:colorHigh rgb="FFD00000"/>
|
820
|
+
<x14:colorLow rgb="FFD00000"/>
|
821
|
+
<x14:sparklines>
|
822
|
+
<x14:sparkline>
|
823
|
+
<xm:f>Sheet1!A27:E27</xm:f>
|
824
|
+
<xm:sqref>F27</xm:sqref>
|
825
|
+
</x14:sparkline>
|
826
|
+
</x14:sparklines>
|
827
|
+
</x14:sparklineGroup>
|
828
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
829
|
+
<x14:colorSeries theme="1" tint="0.34998626667073579"/>
|
830
|
+
<x14:colorNegative theme="0" tint="-0.249977111117893"/>
|
831
|
+
<x14:colorAxis rgb="FF000000"/>
|
832
|
+
<x14:colorMarkers theme="0" tint="-0.249977111117893"/>
|
833
|
+
<x14:colorFirst theme="0" tint="-0.249977111117893"/>
|
834
|
+
<x14:colorLast theme="0" tint="-0.249977111117893"/>
|
835
|
+
<x14:colorHigh theme="0" tint="-0.249977111117893"/>
|
836
|
+
<x14:colorLow theme="0" tint="-0.249977111117893"/>
|
837
|
+
<x14:sparklines>
|
838
|
+
<x14:sparkline>
|
839
|
+
<xm:f>Sheet1!A26:E26</xm:f>
|
840
|
+
<xm:sqref>F26</xm:sqref>
|
841
|
+
</x14:sparkline>
|
842
|
+
</x14:sparklines>
|
843
|
+
</x14:sparklineGroup>
|
844
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
845
|
+
<x14:colorSeries theme="1" tint="0.499984740745262"/>
|
846
|
+
<x14:colorNegative theme="1" tint="0.249977111117893"/>
|
847
|
+
<x14:colorAxis rgb="FF000000"/>
|
848
|
+
<x14:colorMarkers theme="1" tint="0.249977111117893"/>
|
849
|
+
<x14:colorFirst theme="1" tint="0.249977111117893"/>
|
850
|
+
<x14:colorLast theme="1" tint="0.249977111117893"/>
|
851
|
+
<x14:colorHigh theme="1" tint="0.249977111117893"/>
|
852
|
+
<x14:colorLow theme="1" tint="0.249977111117893"/>
|
853
|
+
<x14:sparklines>
|
854
|
+
<x14:sparkline>
|
855
|
+
<xm:f>Sheet1!A25:E25</xm:f>
|
856
|
+
<xm:sqref>F25</xm:sqref>
|
857
|
+
</x14:sparkline>
|
858
|
+
</x14:sparklines>
|
859
|
+
</x14:sparklineGroup>
|
860
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
861
|
+
<x14:colorSeries theme="9" tint="0.39997558519241921"/>
|
862
|
+
<x14:colorNegative theme="0" tint="-0.499984740745262"/>
|
863
|
+
<x14:colorAxis rgb="FF000000"/>
|
864
|
+
<x14:colorMarkers theme="9" tint="0.79998168889431442"/>
|
865
|
+
<x14:colorFirst theme="9" tint="-0.249977111117893"/>
|
866
|
+
<x14:colorLast theme="9" tint="-0.249977111117893"/>
|
867
|
+
<x14:colorHigh theme="9" tint="-0.499984740745262"/>
|
868
|
+
<x14:colorLow theme="9" tint="-0.499984740745262"/>
|
869
|
+
<x14:sparklines>
|
870
|
+
<x14:sparkline>
|
871
|
+
<xm:f>Sheet1!A24:E24</xm:f>
|
872
|
+
<xm:sqref>F24</xm:sqref>
|
873
|
+
</x14:sparkline>
|
874
|
+
</x14:sparklines>
|
875
|
+
</x14:sparklineGroup>
|
876
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
877
|
+
<x14:colorSeries theme="8" tint="0.39997558519241921"/>
|
878
|
+
<x14:colorNegative theme="0" tint="-0.499984740745262"/>
|
879
|
+
<x14:colorAxis rgb="FF000000"/>
|
880
|
+
<x14:colorMarkers theme="8" tint="0.79998168889431442"/>
|
881
|
+
<x14:colorFirst theme="8" tint="-0.249977111117893"/>
|
882
|
+
<x14:colorLast theme="8" tint="-0.249977111117893"/>
|
883
|
+
<x14:colorHigh theme="8" tint="-0.499984740745262"/>
|
884
|
+
<x14:colorLow theme="8" tint="-0.499984740745262"/>
|
885
|
+
<x14:sparklines>
|
886
|
+
<x14:sparkline>
|
887
|
+
<xm:f>Sheet1!A23:E23</xm:f>
|
888
|
+
<xm:sqref>F23</xm:sqref>
|
889
|
+
</x14:sparkline>
|
890
|
+
</x14:sparklines>
|
891
|
+
</x14:sparklineGroup>
|
892
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
893
|
+
<x14:colorSeries theme="7" tint="0.39997558519241921"/>
|
894
|
+
<x14:colorNegative theme="0" tint="-0.499984740745262"/>
|
895
|
+
<x14:colorAxis rgb="FF000000"/>
|
896
|
+
<x14:colorMarkers theme="7" tint="0.79998168889431442"/>
|
897
|
+
<x14:colorFirst theme="7" tint="-0.249977111117893"/>
|
898
|
+
<x14:colorLast theme="7" tint="-0.249977111117893"/>
|
899
|
+
<x14:colorHigh theme="7" tint="-0.499984740745262"/>
|
900
|
+
<x14:colorLow theme="7" tint="-0.499984740745262"/>
|
901
|
+
<x14:sparklines>
|
902
|
+
<x14:sparkline>
|
903
|
+
<xm:f>Sheet1!A22:E22</xm:f>
|
904
|
+
<xm:sqref>F22</xm:sqref>
|
905
|
+
</x14:sparkline>
|
906
|
+
</x14:sparklines>
|
907
|
+
</x14:sparklineGroup>
|
908
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
909
|
+
<x14:colorSeries theme="6" tint="0.39997558519241921"/>
|
910
|
+
<x14:colorNegative theme="0" tint="-0.499984740745262"/>
|
911
|
+
<x14:colorAxis rgb="FF000000"/>
|
912
|
+
<x14:colorMarkers theme="6" tint="0.79998168889431442"/>
|
913
|
+
<x14:colorFirst theme="6" tint="-0.249977111117893"/>
|
914
|
+
<x14:colorLast theme="6" tint="-0.249977111117893"/>
|
915
|
+
<x14:colorHigh theme="6" tint="-0.499984740745262"/>
|
916
|
+
<x14:colorLow theme="6" tint="-0.499984740745262"/>
|
917
|
+
<x14:sparklines>
|
918
|
+
<x14:sparkline>
|
919
|
+
<xm:f>Sheet1!A21:E21</xm:f>
|
920
|
+
<xm:sqref>F21</xm:sqref>
|
921
|
+
</x14:sparkline>
|
922
|
+
</x14:sparklines>
|
923
|
+
</x14:sparklineGroup>
|
924
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
925
|
+
<x14:colorSeries theme="5" tint="0.39997558519241921"/>
|
926
|
+
<x14:colorNegative theme="0" tint="-0.499984740745262"/>
|
927
|
+
<x14:colorAxis rgb="FF000000"/>
|
928
|
+
<x14:colorMarkers theme="5" tint="0.79998168889431442"/>
|
929
|
+
<x14:colorFirst theme="5" tint="-0.249977111117893"/>
|
930
|
+
<x14:colorLast theme="5" tint="-0.249977111117893"/>
|
931
|
+
<x14:colorHigh theme="5" tint="-0.499984740745262"/>
|
932
|
+
<x14:colorLow theme="5" tint="-0.499984740745262"/>
|
933
|
+
<x14:sparklines>
|
934
|
+
<x14:sparkline>
|
935
|
+
<xm:f>Sheet1!A20:E20</xm:f>
|
936
|
+
<xm:sqref>F20</xm:sqref>
|
937
|
+
</x14:sparkline>
|
938
|
+
</x14:sparklines>
|
939
|
+
</x14:sparklineGroup>
|
940
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
941
|
+
<x14:colorSeries theme="4" tint="0.39997558519241921"/>
|
942
|
+
<x14:colorNegative theme="0" tint="-0.499984740745262"/>
|
943
|
+
<x14:colorAxis rgb="FF000000"/>
|
944
|
+
<x14:colorMarkers theme="4" tint="0.79998168889431442"/>
|
945
|
+
<x14:colorFirst theme="4" tint="-0.249977111117893"/>
|
946
|
+
<x14:colorLast theme="4" tint="-0.249977111117893"/>
|
947
|
+
<x14:colorHigh theme="4" tint="-0.499984740745262"/>
|
948
|
+
<x14:colorLow theme="4" tint="-0.499984740745262"/>
|
949
|
+
<x14:sparklines>
|
950
|
+
<x14:sparkline>
|
951
|
+
<xm:f>Sheet1!A19:E19</xm:f>
|
952
|
+
<xm:sqref>F19</xm:sqref>
|
953
|
+
</x14:sparkline>
|
954
|
+
</x14:sparklines>
|
955
|
+
</x14:sparklineGroup>
|
956
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
957
|
+
<x14:colorSeries theme="9"/>
|
958
|
+
<x14:colorNegative theme="4"/>
|
959
|
+
<x14:colorAxis rgb="FF000000"/>
|
960
|
+
<x14:colorMarkers theme="9" tint="-0.249977111117893"/>
|
961
|
+
<x14:colorFirst theme="9" tint="-0.249977111117893"/>
|
962
|
+
<x14:colorLast theme="9" tint="-0.249977111117893"/>
|
963
|
+
<x14:colorHigh theme="9" tint="-0.249977111117893"/>
|
964
|
+
<x14:colorLow theme="9" tint="-0.249977111117893"/>
|
965
|
+
<x14:sparklines>
|
966
|
+
<x14:sparkline>
|
967
|
+
<xm:f>Sheet1!A18:E18</xm:f>
|
968
|
+
<xm:sqref>F18</xm:sqref>
|
969
|
+
</x14:sparkline>
|
970
|
+
</x14:sparklines>
|
971
|
+
</x14:sparklineGroup>
|
972
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
973
|
+
<x14:colorSeries theme="8"/>
|
974
|
+
<x14:colorNegative theme="9"/>
|
975
|
+
<x14:colorAxis rgb="FF000000"/>
|
976
|
+
<x14:colorMarkers theme="8" tint="-0.249977111117893"/>
|
977
|
+
<x14:colorFirst theme="8" tint="-0.249977111117893"/>
|
978
|
+
<x14:colorLast theme="8" tint="-0.249977111117893"/>
|
979
|
+
<x14:colorHigh theme="8" tint="-0.249977111117893"/>
|
980
|
+
<x14:colorLow theme="8" tint="-0.249977111117893"/>
|
981
|
+
<x14:sparklines>
|
982
|
+
<x14:sparkline>
|
983
|
+
<xm:f>Sheet1!A17:E17</xm:f>
|
984
|
+
<xm:sqref>F17</xm:sqref>
|
985
|
+
</x14:sparkline>
|
986
|
+
</x14:sparklines>
|
987
|
+
</x14:sparklineGroup>
|
988
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
989
|
+
<x14:colorSeries theme="7"/>
|
990
|
+
<x14:colorNegative theme="8"/>
|
991
|
+
<x14:colorAxis rgb="FF000000"/>
|
992
|
+
<x14:colorMarkers theme="7" tint="-0.249977111117893"/>
|
993
|
+
<x14:colorFirst theme="7" tint="-0.249977111117893"/>
|
994
|
+
<x14:colorLast theme="7" tint="-0.249977111117893"/>
|
995
|
+
<x14:colorHigh theme="7" tint="-0.249977111117893"/>
|
996
|
+
<x14:colorLow theme="7" tint="-0.249977111117893"/>
|
997
|
+
<x14:sparklines>
|
998
|
+
<x14:sparkline>
|
999
|
+
<xm:f>Sheet1!A16:E16</xm:f>
|
1000
|
+
<xm:sqref>F16</xm:sqref>
|
1001
|
+
</x14:sparkline>
|
1002
|
+
</x14:sparklines>
|
1003
|
+
</x14:sparklineGroup>
|
1004
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
1005
|
+
<x14:colorSeries theme="6"/>
|
1006
|
+
<x14:colorNegative theme="7"/>
|
1007
|
+
<x14:colorAxis rgb="FF000000"/>
|
1008
|
+
<x14:colorMarkers theme="6" tint="-0.249977111117893"/>
|
1009
|
+
<x14:colorFirst theme="6" tint="-0.249977111117893"/>
|
1010
|
+
<x14:colorLast theme="6" tint="-0.249977111117893"/>
|
1011
|
+
<x14:colorHigh theme="6" tint="-0.249977111117893"/>
|
1012
|
+
<x14:colorLow theme="6" tint="-0.249977111117893"/>
|
1013
|
+
<x14:sparklines>
|
1014
|
+
<x14:sparkline>
|
1015
|
+
<xm:f>Sheet1!A15:E15</xm:f>
|
1016
|
+
<xm:sqref>F15</xm:sqref>
|
1017
|
+
</x14:sparkline>
|
1018
|
+
</x14:sparklines>
|
1019
|
+
</x14:sparklineGroup>
|
1020
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
1021
|
+
<x14:colorSeries theme="5"/>
|
1022
|
+
<x14:colorNegative theme="6"/>
|
1023
|
+
<x14:colorAxis rgb="FF000000"/>
|
1024
|
+
<x14:colorMarkers theme="5" tint="-0.249977111117893"/>
|
1025
|
+
<x14:colorFirst theme="5" tint="-0.249977111117893"/>
|
1026
|
+
<x14:colorLast theme="5" tint="-0.249977111117893"/>
|
1027
|
+
<x14:colorHigh theme="5" tint="-0.249977111117893"/>
|
1028
|
+
<x14:colorLow theme="5" tint="-0.249977111117893"/>
|
1029
|
+
<x14:sparklines>
|
1030
|
+
<x14:sparkline>
|
1031
|
+
<xm:f>Sheet1!A14:E14</xm:f>
|
1032
|
+
<xm:sqref>F14</xm:sqref>
|
1033
|
+
</x14:sparkline>
|
1034
|
+
</x14:sparklines>
|
1035
|
+
</x14:sparklineGroup>
|
1036
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
1037
|
+
<x14:colorSeries theme="4"/>
|
1038
|
+
<x14:colorNegative theme="5"/>
|
1039
|
+
<x14:colorAxis rgb="FF000000"/>
|
1040
|
+
<x14:colorMarkers theme="4" tint="-0.249977111117893"/>
|
1041
|
+
<x14:colorFirst theme="4" tint="-0.249977111117893"/>
|
1042
|
+
<x14:colorLast theme="4" tint="-0.249977111117893"/>
|
1043
|
+
<x14:colorHigh theme="4" tint="-0.249977111117893"/>
|
1044
|
+
<x14:colorLow theme="4" tint="-0.249977111117893"/>
|
1045
|
+
<x14:sparklines>
|
1046
|
+
<x14:sparkline>
|
1047
|
+
<xm:f>Sheet1!A13:E13</xm:f>
|
1048
|
+
<xm:sqref>F13</xm:sqref>
|
1049
|
+
</x14:sparkline>
|
1050
|
+
</x14:sparklines>
|
1051
|
+
</x14:sparklineGroup>
|
1052
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
1053
|
+
<x14:colorSeries theme="9" tint="-0.249977111117893"/>
|
1054
|
+
<x14:colorNegative theme="4"/>
|
1055
|
+
<x14:colorAxis rgb="FF000000"/>
|
1056
|
+
<x14:colorMarkers theme="4" tint="-0.249977111117893"/>
|
1057
|
+
<x14:colorFirst theme="4" tint="-0.249977111117893"/>
|
1058
|
+
<x14:colorLast theme="4" tint="-0.249977111117893"/>
|
1059
|
+
<x14:colorHigh theme="4" tint="-0.249977111117893"/>
|
1060
|
+
<x14:colorLow theme="4" tint="-0.249977111117893"/>
|
1061
|
+
<x14:sparklines>
|
1062
|
+
<x14:sparkline>
|
1063
|
+
<xm:f>Sheet1!A12:E12</xm:f>
|
1064
|
+
<xm:sqref>F12</xm:sqref>
|
1065
|
+
</x14:sparkline>
|
1066
|
+
</x14:sparklines>
|
1067
|
+
</x14:sparklineGroup>
|
1068
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
1069
|
+
<x14:colorSeries theme="8" tint="-0.249977111117893"/>
|
1070
|
+
<x14:colorNegative theme="9"/>
|
1071
|
+
<x14:colorAxis rgb="FF000000"/>
|
1072
|
+
<x14:colorMarkers theme="9" tint="-0.249977111117893"/>
|
1073
|
+
<x14:colorFirst theme="9" tint="-0.249977111117893"/>
|
1074
|
+
<x14:colorLast theme="9" tint="-0.249977111117893"/>
|
1075
|
+
<x14:colorHigh theme="9" tint="-0.249977111117893"/>
|
1076
|
+
<x14:colorLow theme="9" tint="-0.249977111117893"/>
|
1077
|
+
<x14:sparklines>
|
1078
|
+
<x14:sparkline>
|
1079
|
+
<xm:f>Sheet1!A11:E11</xm:f>
|
1080
|
+
<xm:sqref>F11</xm:sqref>
|
1081
|
+
</x14:sparkline>
|
1082
|
+
</x14:sparklines>
|
1083
|
+
</x14:sparklineGroup>
|
1084
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
1085
|
+
<x14:colorSeries theme="7" tint="-0.249977111117893"/>
|
1086
|
+
<x14:colorNegative theme="8"/>
|
1087
|
+
<x14:colorAxis rgb="FF000000"/>
|
1088
|
+
<x14:colorMarkers theme="8" tint="-0.249977111117893"/>
|
1089
|
+
<x14:colorFirst theme="8" tint="-0.249977111117893"/>
|
1090
|
+
<x14:colorLast theme="8" tint="-0.249977111117893"/>
|
1091
|
+
<x14:colorHigh theme="8" tint="-0.249977111117893"/>
|
1092
|
+
<x14:colorLow theme="8" tint="-0.249977111117893"/>
|
1093
|
+
<x14:sparklines>
|
1094
|
+
<x14:sparkline>
|
1095
|
+
<xm:f>Sheet1!A10:E10</xm:f>
|
1096
|
+
<xm:sqref>F10</xm:sqref>
|
1097
|
+
</x14:sparkline>
|
1098
|
+
</x14:sparklines>
|
1099
|
+
</x14:sparklineGroup>
|
1100
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
1101
|
+
<x14:colorSeries theme="6" tint="-0.249977111117893"/>
|
1102
|
+
<x14:colorNegative theme="7"/>
|
1103
|
+
<x14:colorAxis rgb="FF000000"/>
|
1104
|
+
<x14:colorMarkers theme="7" tint="-0.249977111117893"/>
|
1105
|
+
<x14:colorFirst theme="7" tint="-0.249977111117893"/>
|
1106
|
+
<x14:colorLast theme="7" tint="-0.249977111117893"/>
|
1107
|
+
<x14:colorHigh theme="7" tint="-0.249977111117893"/>
|
1108
|
+
<x14:colorLow theme="7" tint="-0.249977111117893"/>
|
1109
|
+
<x14:sparklines>
|
1110
|
+
<x14:sparkline>
|
1111
|
+
<xm:f>Sheet1!A9:E9</xm:f>
|
1112
|
+
<xm:sqref>F9</xm:sqref>
|
1113
|
+
</x14:sparkline>
|
1114
|
+
</x14:sparklines>
|
1115
|
+
</x14:sparklineGroup>
|
1116
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
1117
|
+
<x14:colorSeries theme="5" tint="-0.249977111117893"/>
|
1118
|
+
<x14:colorNegative theme="6"/>
|
1119
|
+
<x14:colorAxis rgb="FF000000"/>
|
1120
|
+
<x14:colorMarkers theme="6" tint="-0.249977111117893"/>
|
1121
|
+
<x14:colorFirst theme="6" tint="-0.249977111117893"/>
|
1122
|
+
<x14:colorLast theme="6" tint="-0.249977111117893"/>
|
1123
|
+
<x14:colorHigh theme="6" tint="-0.249977111117893"/>
|
1124
|
+
<x14:colorLow theme="6" tint="-0.249977111117893"/>
|
1125
|
+
<x14:sparklines>
|
1126
|
+
<x14:sparkline>
|
1127
|
+
<xm:f>Sheet1!A8:E8</xm:f>
|
1128
|
+
<xm:sqref>F8</xm:sqref>
|
1129
|
+
</x14:sparkline>
|
1130
|
+
</x14:sparklines>
|
1131
|
+
</x14:sparklineGroup>
|
1132
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
1133
|
+
<x14:colorSeries theme="4" tint="-0.249977111117893"/>
|
1134
|
+
<x14:colorNegative theme="5"/>
|
1135
|
+
<x14:colorAxis rgb="FF000000"/>
|
1136
|
+
<x14:colorMarkers theme="5" tint="-0.249977111117893"/>
|
1137
|
+
<x14:colorFirst theme="5" tint="-0.249977111117893"/>
|
1138
|
+
<x14:colorLast theme="5" tint="-0.249977111117893"/>
|
1139
|
+
<x14:colorHigh theme="5" tint="-0.249977111117893"/>
|
1140
|
+
<x14:colorLow theme="5" tint="-0.249977111117893"/>
|
1141
|
+
<x14:sparklines>
|
1142
|
+
<x14:sparkline>
|
1143
|
+
<xm:f>Sheet1!A7:E7</xm:f>
|
1144
|
+
<xm:sqref>F7</xm:sqref>
|
1145
|
+
</x14:sparkline>
|
1146
|
+
</x14:sparklines>
|
1147
|
+
</x14:sparklineGroup>
|
1148
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
1149
|
+
<x14:colorSeries theme="9" tint="-0.499984740745262"/>
|
1150
|
+
<x14:colorNegative theme="4"/>
|
1151
|
+
<x14:colorAxis rgb="FF000000"/>
|
1152
|
+
<x14:colorMarkers theme="9" tint="-0.499984740745262"/>
|
1153
|
+
<x14:colorFirst theme="9" tint="0.39997558519241921"/>
|
1154
|
+
<x14:colorLast theme="9" tint="0.39997558519241921"/>
|
1155
|
+
<x14:colorHigh theme="9"/>
|
1156
|
+
<x14:colorLow theme="9"/>
|
1157
|
+
<x14:sparklines>
|
1158
|
+
<x14:sparkline>
|
1159
|
+
<xm:f>Sheet1!A6:E6</xm:f>
|
1160
|
+
<xm:sqref>F6</xm:sqref>
|
1161
|
+
</x14:sparkline>
|
1162
|
+
</x14:sparklines>
|
1163
|
+
</x14:sparklineGroup>
|
1164
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
1165
|
+
<x14:colorSeries theme="8" tint="-0.499984740745262"/>
|
1166
|
+
<x14:colorNegative theme="9"/>
|
1167
|
+
<x14:colorAxis rgb="FF000000"/>
|
1168
|
+
<x14:colorMarkers theme="8" tint="-0.499984740745262"/>
|
1169
|
+
<x14:colorFirst theme="8" tint="0.39997558519241921"/>
|
1170
|
+
<x14:colorLast theme="8" tint="0.39997558519241921"/>
|
1171
|
+
<x14:colorHigh theme="8"/>
|
1172
|
+
<x14:colorLow theme="8"/>
|
1173
|
+
<x14:sparklines>
|
1174
|
+
<x14:sparkline>
|
1175
|
+
<xm:f>Sheet1!A5:E5</xm:f>
|
1176
|
+
<xm:sqref>F5</xm:sqref>
|
1177
|
+
</x14:sparkline>
|
1178
|
+
</x14:sparklines>
|
1179
|
+
</x14:sparklineGroup>
|
1180
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
1181
|
+
<x14:colorSeries theme="7" tint="-0.499984740745262"/>
|
1182
|
+
<x14:colorNegative theme="8"/>
|
1183
|
+
<x14:colorAxis rgb="FF000000"/>
|
1184
|
+
<x14:colorMarkers theme="7" tint="-0.499984740745262"/>
|
1185
|
+
<x14:colorFirst theme="7" tint="0.39997558519241921"/>
|
1186
|
+
<x14:colorLast theme="7" tint="0.39997558519241921"/>
|
1187
|
+
<x14:colorHigh theme="7"/>
|
1188
|
+
<x14:colorLow theme="7"/>
|
1189
|
+
<x14:sparklines>
|
1190
|
+
<x14:sparkline>
|
1191
|
+
<xm:f>Sheet1!A4:E4</xm:f>
|
1192
|
+
<xm:sqref>F4</xm:sqref>
|
1193
|
+
</x14:sparkline>
|
1194
|
+
</x14:sparklines>
|
1195
|
+
</x14:sparklineGroup>
|
1196
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
1197
|
+
<x14:colorSeries theme="6" tint="-0.499984740745262"/>
|
1198
|
+
<x14:colorNegative theme="7"/>
|
1199
|
+
<x14:colorAxis rgb="FF000000"/>
|
1200
|
+
<x14:colorMarkers theme="6" tint="-0.499984740745262"/>
|
1201
|
+
<x14:colorFirst theme="6" tint="0.39997558519241921"/>
|
1202
|
+
<x14:colorLast theme="6" tint="0.39997558519241921"/>
|
1203
|
+
<x14:colorHigh theme="6"/>
|
1204
|
+
<x14:colorLow theme="6"/>
|
1205
|
+
<x14:sparklines>
|
1206
|
+
<x14:sparkline>
|
1207
|
+
<xm:f>Sheet1!A3:E3</xm:f>
|
1208
|
+
<xm:sqref>F3</xm:sqref>
|
1209
|
+
</x14:sparkline>
|
1210
|
+
</x14:sparklines>
|
1211
|
+
</x14:sparklineGroup>
|
1212
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
1213
|
+
<x14:colorSeries theme="5" tint="-0.499984740745262"/>
|
1214
|
+
<x14:colorNegative theme="6"/>
|
1215
|
+
<x14:colorAxis rgb="FF000000"/>
|
1216
|
+
<x14:colorMarkers theme="5" tint="-0.499984740745262"/>
|
1217
|
+
<x14:colorFirst theme="5" tint="0.39997558519241921"/>
|
1218
|
+
<x14:colorLast theme="5" tint="0.39997558519241921"/>
|
1219
|
+
<x14:colorHigh theme="5"/>
|
1220
|
+
<x14:colorLow theme="5"/>
|
1221
|
+
<x14:sparklines>
|
1222
|
+
<x14:sparkline>
|
1223
|
+
<xm:f>Sheet1!A2:E2</xm:f>
|
1224
|
+
<xm:sqref>F2</xm:sqref>
|
1225
|
+
</x14:sparkline>
|
1226
|
+
</x14:sparklines>
|
1227
|
+
</x14:sparklineGroup>
|
1228
|
+
<x14:sparklineGroup displayEmptyCellsAs="gap">
|
1229
|
+
<x14:colorSeries theme="4" tint="-0.499984740745262"/>
|
1230
|
+
<x14:colorNegative theme="5"/>
|
1231
|
+
<x14:colorAxis rgb="FF000000"/>
|
1232
|
+
<x14:colorMarkers theme="4" tint="-0.499984740745262"/>
|
1233
|
+
<x14:colorFirst theme="4" tint="0.39997558519241921"/>
|
1234
|
+
<x14:colorLast theme="4" tint="0.39997558519241921"/>
|
1235
|
+
<x14:colorHigh theme="4"/>
|
1236
|
+
<x14:colorLow theme="4"/>
|
1237
|
+
<x14:sparklines>
|
1238
|
+
<x14:sparkline>
|
1239
|
+
<xm:f>Sheet1!A1:E1</xm:f>
|
1240
|
+
<xm:sqref>F1</xm:sqref>
|
1241
|
+
</x14:sparkline>
|
1242
|
+
</x14:sparklines>
|
1243
|
+
</x14:sparklineGroup>
|
1244
|
+
</x14:sparklineGroups>
|
1245
|
+
</ext>
|
1246
|
+
</extLst>
|
1247
|
+
</worksheet>
|
1248
|
+
EOS
|
1249
|
+
end
|
1250
|
+
end
|