goodcheck 1.4.1 → 1.5.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.
- checksums.yaml +5 -5
- data/.gitignore +2 -0
- data/.rubocop.yml +5 -0
- data/.travis.yml +3 -6
- data/CHANGELOG.md +4 -0
- data/README.md +22 -8
- data/goodcheck.gemspec +2 -2
- data/lib/goodcheck/buffer.rb +13 -13
- data/lib/goodcheck/commands/check.rb +10 -2
- data/lib/goodcheck/commands/init.rb +7 -4
- data/lib/goodcheck/config.rb +3 -1
- data/lib/goodcheck/config_loader.rb +9 -2
- data/lib/goodcheck/reporters/text.rb +3 -3
- data/lib/goodcheck/version.rb +1 -1
- data/logo/GoodCheck Horizontal.pdf +899 -0
- data/logo/GoodCheck Horizontal.png +0 -0
- data/logo/GoodCheck Horizontal.svg +55 -0
- data/logo/GoodCheck logo.png +0 -0
- data/logo/GoodCheck vertical.png +0 -0
- metadata +21 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 93e66b881fded69a52ecf1d3c718ab3c8ae6856c45790d44fb1673b4c067a5ff
|
4
|
+
data.tar.gz: b7201e56bcf8256d911d3f8e58ba533b00e3d5f1ef34c7e13b45b12d90593dfb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86112f72e2fe74a4c26f14fd919b515538e2d3f671586cb8f21139b489df5beeafa4363f1424e603d4c8946c09e6f6848157aeb4676feb15d79228e26be947b4
|
7
|
+
data.tar.gz: c7f7023ccfda443654230c9762fa5f307b842e4c5596ad6833551159766272823310ef7b623677dae558c336773b3824df41b562a5720450613dae37cf0cbf6e
|
data/.gitignore
CHANGED
data/.rubocop.yml
ADDED
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+

|
2
|
+
|
1
3
|
# Goodcheck - Regexp based customizable linter
|
2
4
|
|
3
5
|
Are you reviewing a pull request if the change contains deprecated API calls?
|
@@ -174,6 +176,19 @@ Value of `import` can be an array of:
|
|
174
176
|
|
175
177
|
The rules file is a YAML file with array of rules.
|
176
178
|
|
179
|
+
## Excluding files
|
180
|
+
|
181
|
+
`goodcheck.yml` can have optional `exclude` attribute.
|
182
|
+
|
183
|
+
```yaml
|
184
|
+
rules: []
|
185
|
+
exclude:
|
186
|
+
- node_modules
|
187
|
+
- vendor
|
188
|
+
```
|
189
|
+
|
190
|
+
Value of `exclude` can be a string or an array of strings representing the glob pattern for excluded files.
|
191
|
+
|
177
192
|
## Commands
|
178
193
|
|
179
194
|
### `goodcheck init [options]`
|
@@ -205,7 +220,7 @@ Available options are:
|
|
205
220
|
* `--force` to ignore downloaded caches
|
206
221
|
|
207
222
|
`goodcheck check` exits with:
|
208
|
-
|
223
|
+
|
209
224
|
* `0` when it does not find any matching text fragment
|
210
225
|
* `2` when it finds some matching text
|
211
226
|
* `1` when it finds some error
|
@@ -237,17 +252,16 @@ The *goodcheck home directory* is `~/.goodcheck`, but you can customize the loca
|
|
237
252
|
|
238
253
|
The cache expires in 3 minutes.
|
239
254
|
|
240
|
-
## Docker
|
255
|
+
## Docker Images
|
241
256
|
|
242
|
-
You can use
|
257
|
+
You can use [Docker images](https://hub.docker.com/r/sider/goodcheck/) to use Goodcheck.
|
258
|
+
For example:
|
243
259
|
|
244
260
|
```bash
|
245
|
-
$
|
246
|
-
$ cd goodcheck
|
247
|
-
$ docker build -t goodcheck:latest .
|
261
|
+
$ docker pull sider/goodcheck
|
248
262
|
|
249
263
|
$ cd /path/to/your/project
|
250
|
-
$ docker run -it --rm -v "$(pwd):/work" goodcheck
|
264
|
+
$ docker run -it --rm -v "$(pwd):/work" sider/goodcheck goodcheck check
|
251
265
|
```
|
252
266
|
|
253
267
|
## Development
|
@@ -258,4 +272,4 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
258
272
|
|
259
273
|
## Contributing
|
260
274
|
|
261
|
-
Bug reports and pull requests are welcome on GitHub
|
275
|
+
Bug reports and pull requests are welcome on [GitHub](https://github.com/sider/goodcheck).
|
data/goodcheck.gemspec
CHANGED
@@ -22,11 +22,11 @@ Gem::Specification.new do |spec|
|
|
22
22
|
|
23
23
|
spec.required_ruby_version = '>= 2.4.0'
|
24
24
|
|
25
|
-
spec.add_development_dependency "bundler", "
|
25
|
+
spec.add_development_dependency "bundler", ">= 1.16"
|
26
26
|
spec.add_development_dependency "rake", "~> 10.0"
|
27
27
|
spec.add_development_dependency "minitest", "~> 5.0"
|
28
28
|
|
29
|
-
spec.add_runtime_dependency "activesupport", "
|
29
|
+
spec.add_runtime_dependency "activesupport", ">= 4.0", "< 6.0"
|
30
30
|
spec.add_runtime_dependency "strong_json", "~> 0.7.1"
|
31
31
|
spec.add_runtime_dependency "rainbow", "~> 3.0.0"
|
32
32
|
spec.add_runtime_dependency "httpclient", "~> 2.8.3"
|
data/lib/goodcheck/buffer.rb
CHANGED
@@ -8,29 +8,29 @@ module Goodcheck
|
|
8
8
|
@content = content
|
9
9
|
end
|
10
10
|
|
11
|
-
def
|
12
|
-
unless @
|
13
|
-
@
|
11
|
+
def line_ranges
|
12
|
+
unless @line_ranges
|
13
|
+
@line_ranges = []
|
14
14
|
|
15
15
|
start_position = 0
|
16
16
|
|
17
|
-
content.
|
18
|
-
range = start_position
|
19
|
-
@
|
20
|
-
start_position = range.end
|
17
|
+
content.split(/\n/, -1).each do |line|
|
18
|
+
range = start_position...(start_position + line.bytesize)
|
19
|
+
@line_ranges << range
|
20
|
+
start_position = range.end + 1
|
21
21
|
end
|
22
22
|
end
|
23
23
|
|
24
|
-
@
|
24
|
+
@line_ranges
|
25
25
|
end
|
26
26
|
|
27
27
|
def location_for_position(position)
|
28
|
-
line_index =
|
29
|
-
position
|
28
|
+
line_index = line_ranges.bsearch_index do |range|
|
29
|
+
position <= range.end
|
30
30
|
end
|
31
31
|
|
32
32
|
if line_index
|
33
|
-
[line_index + 1, position -
|
33
|
+
[line_index + 1, position - line_ranges[line_index].begin]
|
34
34
|
end
|
35
35
|
end
|
36
36
|
|
@@ -39,9 +39,9 @@ module Goodcheck
|
|
39
39
|
end
|
40
40
|
|
41
41
|
def position_for_location(line, column)
|
42
|
-
if (range =
|
42
|
+
if (range = line_ranges[line-1])
|
43
43
|
pos = range.begin + column
|
44
|
-
if pos
|
44
|
+
if pos <= range.end
|
45
45
|
pos
|
46
46
|
end
|
47
47
|
end
|
@@ -97,20 +97,28 @@ module Goodcheck
|
|
97
97
|
when path.symlink?
|
98
98
|
# noop
|
99
99
|
when path.directory?
|
100
|
-
if !is_dotfile?(path)
|
100
|
+
if immediate || (!is_dotfile?(path) && !excluded?(path))
|
101
101
|
path.children.each do |child|
|
102
102
|
each_file(child, &block)
|
103
103
|
end
|
104
104
|
end
|
105
105
|
when path.file?
|
106
|
-
|
106
|
+
case
|
107
|
+
when path == config_path || is_dotfile?(path)
|
107
108
|
# Skip dotfiles/config file unless explicitly given by command line
|
108
109
|
yield path if immediate
|
110
|
+
when excluded?(path)
|
111
|
+
# Skip excluded files unless explicitly given by command line
|
112
|
+
yield path if immediate
|
109
113
|
else
|
110
114
|
yield path
|
111
115
|
end
|
112
116
|
end
|
113
117
|
end
|
118
|
+
|
119
|
+
def excluded?(path)
|
120
|
+
config.exclude_paths.any? {|pattern| path.fnmatch?(pattern, File::FNM_PATHNAME | File::FNM_EXTGLOB) }
|
121
|
+
end
|
114
122
|
end
|
115
123
|
end
|
116
124
|
end
|
@@ -6,15 +6,18 @@ rules:
|
|
6
6
|
- id: com.example.1
|
7
7
|
pattern: Github
|
8
8
|
message: Do you want to write GitHub?
|
9
|
-
glob:
|
9
|
+
glob:
|
10
10
|
- "**/*.rb"
|
11
|
-
- "**/*.yaml"
|
12
|
-
- "
|
13
|
-
- "**/*.html"
|
11
|
+
- "**/*.{yaml,yml}"
|
12
|
+
- "public/**/*.html"
|
14
13
|
fail:
|
15
14
|
- Signup via Github
|
16
15
|
pass:
|
17
16
|
- Signup via GitHub
|
17
|
+
|
18
|
+
exclude:
|
19
|
+
- node_modules
|
20
|
+
- vendor
|
18
21
|
EOC
|
19
22
|
|
20
23
|
attr_reader :stdout
|
data/lib/goodcheck/config.rb
CHANGED
@@ -1,9 +1,11 @@
|
|
1
1
|
module Goodcheck
|
2
2
|
class Config
|
3
3
|
attr_reader :rules
|
4
|
+
attr_reader :exclude_paths
|
4
5
|
|
5
|
-
def initialize(rules:)
|
6
|
+
def initialize(rules:, exclude_paths:)
|
6
7
|
@rules = rules
|
8
|
+
@exclude_paths = exclude_paths
|
7
9
|
end
|
8
10
|
|
9
11
|
def rules_for_path(path, rules_filter:, &block)
|
@@ -34,8 +34,13 @@ module Goodcheck
|
|
34
34
|
|
35
35
|
let :import_target, string
|
36
36
|
let :imports, array(import_target)
|
37
|
+
let :exclude, enum(array(string), string)
|
37
38
|
|
38
|
-
let :config, object(
|
39
|
+
let :config, object(
|
40
|
+
rules: rules,
|
41
|
+
import: optional(imports),
|
42
|
+
exclude: optional(exclude)
|
43
|
+
)
|
39
44
|
end
|
40
45
|
|
41
46
|
attr_reader :path
|
@@ -65,7 +70,9 @@ module Goodcheck
|
|
65
70
|
load_import rules, import
|
66
71
|
end
|
67
72
|
|
68
|
-
|
73
|
+
exclude_paths = Array(content[:exclude])
|
74
|
+
|
75
|
+
Config.new(rules: rules, exclude_paths: exclude_paths)
|
69
76
|
end
|
70
77
|
end
|
71
78
|
|
@@ -20,14 +20,14 @@ module Goodcheck
|
|
20
20
|
end
|
21
21
|
|
22
22
|
def issue(issue)
|
23
|
-
line = issue.buffer.line(issue.location.start_line)
|
23
|
+
line = issue.buffer.line(issue.location.start_line)
|
24
24
|
end_column = if issue.location.start_line == issue.location.end_line
|
25
25
|
issue.location.end_column
|
26
26
|
else
|
27
27
|
line.bytesize
|
28
28
|
end
|
29
|
-
colored_line = line.byteslice(0, issue.location.start_column) + Rainbow(line.byteslice(issue.location.start_column, end_column - issue.location.start_column)).red + line.byteslice(end_column, line.bytesize
|
30
|
-
stdout.puts "#{issue.path}:#{issue.location.start_line}:#{colored_line}:\t#{issue.rule.message.lines.first.chomp}"
|
29
|
+
colored_line = line.byteslice(0, issue.location.start_column) + Rainbow(line.byteslice(issue.location.start_column, end_column - issue.location.start_column)).red + line.byteslice(end_column, line.bytesize)
|
30
|
+
stdout.puts "#{issue.path}:#{issue.location.start_line}:#{colored_line.chomp}:\t#{issue.rule.message.lines.first.chomp}"
|
31
31
|
end
|
32
32
|
end
|
33
33
|
end
|
data/lib/goodcheck/version.rb
CHANGED
@@ -0,0 +1,899 @@
|
|
1
|
+
%PDF-1.7
|
2
|
+
|
3
|
+
1 0 obj
|
4
|
+
<< /Length 2 0 R >>
|
5
|
+
stream
|
6
|
+
0.623047 0 d0
|
7
|
+
0.049805 -0.009766 0.491211 0.769531 re
|
8
|
+
/DeviceRGB cs
|
9
|
+
0.000000 0.000000 0.000000 scn
|
10
|
+
/E1 gs
|
11
|
+
f
|
12
|
+
|
13
|
+
endstream
|
14
|
+
endobj
|
15
|
+
|
16
|
+
2 0 obj
|
17
|
+
108
|
18
|
+
endobj
|
19
|
+
|
20
|
+
3 0 obj
|
21
|
+
<< /Length 4 0 R >>
|
22
|
+
stream
|
23
|
+
0.576172 0 d0
|
24
|
+
0.049805 -0.009766 0.478027 0.559570 re
|
25
|
+
/DeviceRGB cs
|
26
|
+
0.000000 0.000000 0.000000 scn
|
27
|
+
/E1 gs
|
28
|
+
f
|
29
|
+
|
30
|
+
endstream
|
31
|
+
endobj
|
32
|
+
|
33
|
+
4 0 obj
|
34
|
+
108
|
35
|
+
endobj
|
36
|
+
|
37
|
+
5 0 obj
|
38
|
+
<< /Length 6 0 R >>
|
39
|
+
stream
|
40
|
+
0.634766 0 d0
|
41
|
+
0.082031 0.000000 0.475098 0.759766 re
|
42
|
+
/DeviceRGB cs
|
43
|
+
0.000000 0.000000 0.000000 scn
|
44
|
+
/E1 gs
|
45
|
+
f
|
46
|
+
|
47
|
+
endstream
|
48
|
+
endobj
|
49
|
+
|
50
|
+
6 0 obj
|
51
|
+
107
|
52
|
+
endobj
|
53
|
+
|
54
|
+
7 0 obj
|
55
|
+
<< /Length 8 0 R >>
|
56
|
+
stream
|
57
|
+
0.610840 0 d0
|
58
|
+
0.049805 -0.009766 0.511230 0.559570 re
|
59
|
+
/DeviceRGB cs
|
60
|
+
0.000000 0.000000 0.000000 scn
|
61
|
+
/E1 gs
|
62
|
+
f
|
63
|
+
|
64
|
+
endstream
|
65
|
+
endobj
|
66
|
+
|
67
|
+
8 0 obj
|
68
|
+
108
|
69
|
+
endobj
|
70
|
+
|
71
|
+
9 0 obj
|
72
|
+
<< /Length 10 0 R >>
|
73
|
+
stream
|
74
|
+
0.571777 0 d0
|
75
|
+
0.082031 0.000000 0.484863 0.759766 re
|
76
|
+
/DeviceRGB cs
|
77
|
+
0.000000 0.000000 0.000000 scn
|
78
|
+
/E1 gs
|
79
|
+
f
|
80
|
+
|
81
|
+
endstream
|
82
|
+
endobj
|
83
|
+
|
84
|
+
10 0 obj
|
85
|
+
107
|
86
|
+
endobj
|
87
|
+
|
88
|
+
11 0 obj
|
89
|
+
<< /Length 12 0 R >>
|
90
|
+
stream
|
91
|
+
0.495117 0 d0
|
92
|
+
0.049805 -0.009766 0.413086 0.559570 re
|
93
|
+
/DeviceRGB cs
|
94
|
+
0.000000 0.000000 0.000000 scn
|
95
|
+
/E1 gs
|
96
|
+
f
|
97
|
+
|
98
|
+
endstream
|
99
|
+
endobj
|
100
|
+
|
101
|
+
12 0 obj
|
102
|
+
108
|
103
|
+
endobj
|
104
|
+
|
105
|
+
13 0 obj
|
106
|
+
<< /Length 14 0 R >>
|
107
|
+
stream
|
108
|
+
0.726074 0 d0
|
109
|
+
0.059082 -0.009766 0.589844 0.733887 re
|
110
|
+
/DeviceRGB cs
|
111
|
+
0.000000 0.000000 0.000000 scn
|
112
|
+
/E1 gs
|
113
|
+
f
|
114
|
+
|
115
|
+
endstream
|
116
|
+
endobj
|
117
|
+
|
118
|
+
14 0 obj
|
119
|
+
108
|
120
|
+
endobj
|
121
|
+
|
122
|
+
15 0 obj
|
123
|
+
[ 0.571777 0.576172 0.634766 0.623047 0.610840 0.495117 0.726074 ]
|
124
|
+
endobj
|
125
|
+
|
126
|
+
16 0 obj
|
127
|
+
<< /Length 17 0 R >>
|
128
|
+
stream
|
129
|
+
/CIDInit /ProcSet findresource begin
|
130
|
+
12 dict begin
|
131
|
+
begincmap
|
132
|
+
/CIDSystemInfo
|
133
|
+
<< /Registry (FigmaPDF)
|
134
|
+
/Ordering (FigmaPDF)
|
135
|
+
/Supplement 0
|
136
|
+
>> def
|
137
|
+
/CMapName /A-B-C def
|
138
|
+
/CMapType 2 def
|
139
|
+
1 begincodespacerange
|
140
|
+
<00> <FF>
|
141
|
+
endcodespacerange
|
142
|
+
1 beginbfchar
|
143
|
+
<00> <006B>
|
144
|
+
endbfchar
|
145
|
+
1 beginbfchar
|
146
|
+
<01> <0065>
|
147
|
+
endbfchar
|
148
|
+
1 beginbfchar
|
149
|
+
<02> <0068>
|
150
|
+
endbfchar
|
151
|
+
1 beginbfchar
|
152
|
+
<03> <0064>
|
153
|
+
endbfchar
|
154
|
+
1 beginbfchar
|
155
|
+
<04> <006F>
|
156
|
+
endbfchar
|
157
|
+
1 beginbfchar
|
158
|
+
<05> <0063>
|
159
|
+
endbfchar
|
160
|
+
1 beginbfchar
|
161
|
+
<06> <0047>
|
162
|
+
endbfchar
|
163
|
+
endcmap
|
164
|
+
CMapName currentdict /CMap defineresource pop
|
165
|
+
end
|
166
|
+
end
|
167
|
+
endstream
|
168
|
+
endobj
|
169
|
+
|
170
|
+
17 0 obj
|
171
|
+
548
|
172
|
+
endobj
|
173
|
+
|
174
|
+
18 0 obj
|
175
|
+
<< /Subtype /Type3
|
176
|
+
/CharProcs << /C3 1 0 R
|
177
|
+
/C1 3 0 R
|
178
|
+
/C4 7 0 R
|
179
|
+
/C0 9 0 R
|
180
|
+
/C2 5 0 R
|
181
|
+
/C5 11 0 R
|
182
|
+
/C6 13 0 R
|
183
|
+
>>
|
184
|
+
/Encoding << /Type /Encoding
|
185
|
+
/Differences [ 0 /C0 /C1 /C2 /C3 /C4 /C5 /C6 ]
|
186
|
+
>>
|
187
|
+
/Widths 15 0 R
|
188
|
+
/FontBBox [ 0.000000 0.000000 0.000000 0.000000 ]
|
189
|
+
/FontMatrix [ 1.000000 0.000000 0.000000 1.000000 0.000000 0.000000 ]
|
190
|
+
/Type /Font
|
191
|
+
/ToUnicode 16 0 R
|
192
|
+
/FirstChar 0
|
193
|
+
/LastChar 6
|
194
|
+
/Resources << /ExtGState << /E1 << /ca 0.000000 >> >> >>
|
195
|
+
>>
|
196
|
+
endobj
|
197
|
+
|
198
|
+
19 0 obj
|
199
|
+
<< /Length 20 0 R
|
200
|
+
/FunctionType 4
|
201
|
+
/Domain [ 0.000000 1.000000 ]
|
202
|
+
/Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ]
|
203
|
+
>>
|
204
|
+
stream
|
205
|
+
{ 0.431373 exch 0.862745 exch 0.125490 exch dup 0.000000 gt { exch pop exch pop exch pop dup 0.000000 sub -0.431373 mul 0.431373 add exch dup 0.000000 sub -0.188235 mul 0.862745 add exch dup 0.000000 sub 0.623529 mul 0.125490 add exch } if dup 1.000000 gt { exch pop exch pop exch pop 0.000000 exch 0.674510 exch 0.749020 exch } if pop }
|
206
|
+
endstream
|
207
|
+
endobj
|
208
|
+
|
209
|
+
20 0 obj
|
210
|
+
338
|
211
|
+
endobj
|
212
|
+
|
213
|
+
21 0 obj
|
214
|
+
<< /Length 22 0 R
|
215
|
+
/FunctionType 4
|
216
|
+
/Domain [ 0.000000 1.000000 ]
|
217
|
+
/Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ]
|
218
|
+
>>
|
219
|
+
stream
|
220
|
+
{ 0.431373 exch 0.862745 exch 0.125490 exch dup 0.000000 gt { exch pop exch pop exch pop dup 0.000000 sub -0.431373 mul 0.431373 add exch dup 0.000000 sub -0.188235 mul 0.862745 add exch dup 0.000000 sub 0.623529 mul 0.125490 add exch } if dup 1.000000 gt { exch pop exch pop exch pop 0.000000 exch 0.674510 exch 0.749020 exch } if pop }
|
221
|
+
endstream
|
222
|
+
endobj
|
223
|
+
|
224
|
+
22 0 obj
|
225
|
+
338
|
226
|
+
endobj
|
227
|
+
|
228
|
+
23 0 obj
|
229
|
+
<< /Length 24 0 R
|
230
|
+
/FunctionType 4
|
231
|
+
/Domain [ 0.000000 1.000000 ]
|
232
|
+
/Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ]
|
233
|
+
>>
|
234
|
+
stream
|
235
|
+
{ 0.431373 exch 0.862745 exch 0.125490 exch dup 0.000000 gt { exch pop exch pop exch pop dup 0.000000 sub -0.431373 mul 0.431373 add exch dup 0.000000 sub -0.188235 mul 0.862745 add exch dup 0.000000 sub 0.623529 mul 0.125490 add exch } if dup 1.000000 gt { exch pop exch pop exch pop 0.000000 exch 0.674510 exch 0.749020 exch } if pop }
|
236
|
+
endstream
|
237
|
+
endobj
|
238
|
+
|
239
|
+
24 0 obj
|
240
|
+
338
|
241
|
+
endobj
|
242
|
+
|
243
|
+
25 0 obj
|
244
|
+
<< /Length 26 0 R
|
245
|
+
/FunctionType 4
|
246
|
+
/Domain [ 0.000000 1.000000 ]
|
247
|
+
/Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ]
|
248
|
+
>>
|
249
|
+
stream
|
250
|
+
{ 0.431373 exch 0.862745 exch 0.125490 exch dup 0.000000 gt { exch pop exch pop exch pop dup 0.000000 sub -0.431373 mul 0.431373 add exch dup 0.000000 sub -0.188235 mul 0.862745 add exch dup 0.000000 sub 0.623529 mul 0.125490 add exch } if dup 1.000000 gt { exch pop exch pop exch pop 0.000000 exch 0.674510 exch 0.749020 exch } if pop }
|
251
|
+
endstream
|
252
|
+
endobj
|
253
|
+
|
254
|
+
26 0 obj
|
255
|
+
338
|
256
|
+
endobj
|
257
|
+
|
258
|
+
27 0 obj
|
259
|
+
<< /Length 28 0 R
|
260
|
+
/FunctionType 4
|
261
|
+
/Domain [ 0.000000 1.000000 ]
|
262
|
+
/Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ]
|
263
|
+
>>
|
264
|
+
stream
|
265
|
+
{ 0.431373 exch 0.862745 exch 0.125490 exch dup 0.000000 gt { exch pop exch pop exch pop dup 0.000000 sub -0.431373 mul 0.431373 add exch dup 0.000000 sub -0.188235 mul 0.862745 add exch dup 0.000000 sub 0.623529 mul 0.125490 add exch } if dup 1.000000 gt { exch pop exch pop exch pop 0.000000 exch 0.674510 exch 0.749020 exch } if pop }
|
266
|
+
endstream
|
267
|
+
endobj
|
268
|
+
|
269
|
+
28 0 obj
|
270
|
+
338
|
271
|
+
endobj
|
272
|
+
|
273
|
+
29 0 obj
|
274
|
+
<< /Length 30 0 R
|
275
|
+
/FunctionType 4
|
276
|
+
/Domain [ 0.000000 1.000000 ]
|
277
|
+
/Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ]
|
278
|
+
>>
|
279
|
+
stream
|
280
|
+
{ 0.000000 exch 0.674510 exch 0.749020 exch dup 0.000000 gt { exch pop exch pop exch pop dup 0.000000 sub 0.431373 mul 0.000000 add exch dup 0.000000 sub 0.188235 mul 0.674510 add exch dup 0.000000 sub -0.623529 mul 0.749020 add exch } if dup 1.000000 gt { exch pop exch pop exch pop 0.431373 exch 0.862745 exch 0.125490 exch } if pop }
|
281
|
+
endstream
|
282
|
+
endobj
|
283
|
+
|
284
|
+
30 0 obj
|
285
|
+
337
|
286
|
+
endobj
|
287
|
+
|
288
|
+
31 0 obj
|
289
|
+
<< /Length 32 0 R
|
290
|
+
/FunctionType 4
|
291
|
+
/Domain [ 0.000000 1.000000 ]
|
292
|
+
/Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ]
|
293
|
+
>>
|
294
|
+
stream
|
295
|
+
{ 0.000000 exch 0.674510 exch 0.749020 exch dup 0.000000 gt { exch pop exch pop exch pop dup 0.000000 sub 0.431373 mul 0.000000 add exch dup 0.000000 sub 0.188235 mul 0.674510 add exch dup 0.000000 sub -0.623529 mul 0.749020 add exch } if dup 1.000000 gt { exch pop exch pop exch pop 0.431373 exch 0.862745 exch 0.125490 exch } if pop }
|
296
|
+
endstream
|
297
|
+
endobj
|
298
|
+
|
299
|
+
32 0 obj
|
300
|
+
337
|
301
|
+
endobj
|
302
|
+
|
303
|
+
33 0 obj
|
304
|
+
<< /Length 34 0 R
|
305
|
+
/FunctionType 4
|
306
|
+
/Domain [ 0.000000 1.000000 ]
|
307
|
+
/Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ]
|
308
|
+
>>
|
309
|
+
stream
|
310
|
+
{ 0.431373 exch 0.862745 exch 0.125490 exch dup 0.000000 gt { exch pop exch pop exch pop dup 0.000000 sub -0.431373 mul 0.431373 add exch dup 0.000000 sub -0.188235 mul 0.862745 add exch dup 0.000000 sub 0.623529 mul 0.125490 add exch } if dup 1.000000 gt { exch pop exch pop exch pop 0.000000 exch 0.674510 exch 0.749020 exch } if pop }
|
311
|
+
endstream
|
312
|
+
endobj
|
313
|
+
|
314
|
+
34 0 obj
|
315
|
+
338
|
316
|
+
endobj
|
317
|
+
|
318
|
+
35 0 obj
|
319
|
+
<< /Length 36 0 R
|
320
|
+
/FunctionType 4
|
321
|
+
/Domain [ 0.000000 1.000000 ]
|
322
|
+
/Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ]
|
323
|
+
>>
|
324
|
+
stream
|
325
|
+
{ 0.431373 exch 0.862745 exch 0.125490 exch dup 0.000000 gt { exch pop exch pop exch pop dup 0.000000 sub -0.431373 mul 0.431373 add exch dup 0.000000 sub -0.188235 mul 0.862745 add exch dup 0.000000 sub 0.623529 mul 0.125490 add exch } if dup 1.000000 gt { exch pop exch pop exch pop 0.000000 exch 0.674510 exch 0.749020 exch } if pop }
|
326
|
+
endstream
|
327
|
+
endobj
|
328
|
+
|
329
|
+
36 0 obj
|
330
|
+
338
|
331
|
+
endobj
|
332
|
+
|
333
|
+
37 0 obj
|
334
|
+
<< /Length 38 0 R
|
335
|
+
/FunctionType 4
|
336
|
+
/Domain [ 0.000000 1.000000 ]
|
337
|
+
/Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ]
|
338
|
+
>>
|
339
|
+
stream
|
340
|
+
{ 0.431373 exch 0.862745 exch 0.125490 exch dup 0.000000 gt { exch pop exch pop exch pop dup 0.000000 sub -0.431373 mul 0.431373 add exch dup 0.000000 sub -0.188235 mul 0.862745 add exch dup 0.000000 sub 0.623529 mul 0.125490 add exch } if dup 1.000000 gt { exch pop exch pop exch pop 0.000000 exch 0.674510 exch 0.749020 exch } if pop }
|
341
|
+
endstream
|
342
|
+
endobj
|
343
|
+
|
344
|
+
38 0 obj
|
345
|
+
338
|
346
|
+
endobj
|
347
|
+
|
348
|
+
39 0 obj
|
349
|
+
<< /Font << /F1 18 0 R >>
|
350
|
+
/Pattern << /P9 << /Matrix [ 167.430176 -154.549103 192.212341 207.941086 502.893616 565.029419 ]
|
351
|
+
/Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ]
|
352
|
+
/Extend [ true true ]
|
353
|
+
/Domain [ 0.000000 1.000000 ]
|
354
|
+
/ShadingType 2
|
355
|
+
/ColorSpace /DeviceRGB
|
356
|
+
/Function 19 0 R
|
357
|
+
>>
|
358
|
+
/PatternType 2
|
359
|
+
/Type /Pattern
|
360
|
+
>>
|
361
|
+
/P4 << /Matrix [ 415.173004 0.000005 -54.289631 257.320770 198.354568 421.370148 ]
|
362
|
+
/Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ]
|
363
|
+
/Extend [ true true ]
|
364
|
+
/Domain [ 0.000000 1.000000 ]
|
365
|
+
/ShadingType 2
|
366
|
+
/ColorSpace /DeviceRGB
|
367
|
+
/Function 23 0 R
|
368
|
+
>>
|
369
|
+
/PatternType 2
|
370
|
+
/Type /Pattern
|
371
|
+
>>
|
372
|
+
/P3 << /Matrix [ -234.687332 148.989746 -240.386795 -374.805817 708.925354 444.072052 ]
|
373
|
+
/Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ]
|
374
|
+
/Extend [ true true ]
|
375
|
+
/Domain [ 0.000000 1.000000 ]
|
376
|
+
/ShadingType 2
|
377
|
+
/ColorSpace /DeviceRGB
|
378
|
+
/Function 25 0 R
|
379
|
+
>>
|
380
|
+
/PatternType 2
|
381
|
+
/Type /Pattern
|
382
|
+
>>
|
383
|
+
/P8 << /Matrix [ 457.849335 -0.000000 0.000010 865.679077 179.275864 -30.147095 ]
|
384
|
+
/Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ]
|
385
|
+
/Extend [ true true ]
|
386
|
+
/Domain [ 0.000000 1.000000 ]
|
387
|
+
/ShadingType 2
|
388
|
+
/ColorSpace /DeviceRGB
|
389
|
+
/Function 21 0 R
|
390
|
+
>>
|
391
|
+
/PatternType 2
|
392
|
+
/Type /Pattern
|
393
|
+
>>
|
394
|
+
/P6 << /Matrix [ 326.004517 -0.000000 0.000000 404.281738 97.031250 173.859131 ]
|
395
|
+
/Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ]
|
396
|
+
/Extend [ true true ]
|
397
|
+
/Domain [ 0.000000 1.000000 ]
|
398
|
+
/ShadingType 2
|
399
|
+
/ColorSpace /DeviceRGB
|
400
|
+
/Function 27 0 R
|
401
|
+
>>
|
402
|
+
/PatternType 2
|
403
|
+
/Type /Pattern
|
404
|
+
>>
|
405
|
+
/P5 << /Matrix [ -379.969971 -0.000000 0.000009 -606.828796 486.675781 853.445007 ]
|
406
|
+
/Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ]
|
407
|
+
/Extend [ true true ]
|
408
|
+
/Domain [ 0.000000 1.000000 ]
|
409
|
+
/ShadingType 2
|
410
|
+
/ColorSpace /DeviceRGB
|
411
|
+
/Function 29 0 R
|
412
|
+
>>
|
413
|
+
/PatternType 2
|
414
|
+
/Type /Pattern
|
415
|
+
>>
|
416
|
+
/P2 << /Matrix [ -366.873535 -0.000000 0.000000 -593.930054 304.220215 700.329590 ]
|
417
|
+
/Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ]
|
418
|
+
/Extend [ true true ]
|
419
|
+
/Domain [ 0.000000 1.000000 ]
|
420
|
+
/ShadingType 2
|
421
|
+
/ColorSpace /DeviceRGB
|
422
|
+
/Function 31 0 R
|
423
|
+
>>
|
424
|
+
/PatternType 2
|
425
|
+
/Type /Pattern
|
426
|
+
>>
|
427
|
+
/P10 << /Matrix [ 443.863312 -0.000000 0.000000 589.768494 199.343262 -184.528381 ]
|
428
|
+
/Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ]
|
429
|
+
/Extend [ true true ]
|
430
|
+
/Domain [ 0.000000 1.000000 ]
|
431
|
+
/ShadingType 2
|
432
|
+
/ColorSpace /DeviceRGB
|
433
|
+
/Function 33 0 R
|
434
|
+
>>
|
435
|
+
/PatternType 2
|
436
|
+
/Type /Pattern
|
437
|
+
>>
|
438
|
+
/P7 << /Matrix [ 472.168518 0.000000 -0.000000 754.073853 -36.297852 -1.036926 ]
|
439
|
+
/Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ]
|
440
|
+
/Extend [ true true ]
|
441
|
+
/Domain [ 0.000000 1.000000 ]
|
442
|
+
/ShadingType 2
|
443
|
+
/ColorSpace /DeviceRGB
|
444
|
+
/Function 35 0 R
|
445
|
+
>>
|
446
|
+
/PatternType 2
|
447
|
+
/Type /Pattern
|
448
|
+
>>
|
449
|
+
/P1 << /Matrix [ 435.815155 329.041626 -329.966736 434.593262 259.674744 -286.283203 ]
|
450
|
+
/Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ]
|
451
|
+
/Extend [ true true ]
|
452
|
+
/Domain [ 0.000000 1.000000 ]
|
453
|
+
/ShadingType 2
|
454
|
+
/ColorSpace /DeviceRGB
|
455
|
+
/Function 37 0 R
|
456
|
+
>>
|
457
|
+
/PatternType 2
|
458
|
+
/Type /Pattern
|
459
|
+
>>
|
460
|
+
>>
|
461
|
+
>>
|
462
|
+
endobj
|
463
|
+
|
464
|
+
40 0 obj
|
465
|
+
<< /Length 41 0 R >>
|
466
|
+
stream
|
467
|
+
/DeviceRGB CS
|
468
|
+
/DeviceRGB cs
|
469
|
+
q
|
470
|
+
1.000000 0.000000 -0.000000 1.000000 348.000000 110.000000 cm
|
471
|
+
3.815160 0.000008 m
|
472
|
+
0.000000 0.000008 l
|
473
|
+
48.000000 119.000000 l
|
474
|
+
192.000000 119.000000 l
|
475
|
+
161.922363 45.476585 90.853981 0.000008 3.815160 0.000008 c
|
476
|
+
h
|
477
|
+
/Pattern cs
|
478
|
+
/P1 scn
|
479
|
+
f
|
480
|
+
n
|
481
|
+
Q
|
482
|
+
q
|
483
|
+
1.000000 0.000000 -0.000000 1.000000 113.000000 403.000000 cm
|
484
|
+
143.161575 0.000008 m
|
485
|
+
0.000000 0.000008 l
|
486
|
+
47.838421 120.000000 l
|
487
|
+
191.000000 120.000000 l
|
488
|
+
143.161575 0.000008 l
|
489
|
+
h
|
490
|
+
/Pattern cs
|
491
|
+
/P2 scn
|
492
|
+
f
|
493
|
+
n
|
494
|
+
Q
|
495
|
+
q
|
496
|
+
1.000000 0.000000 -0.000000 1.000000 407.000000 257.000000 cm
|
497
|
+
143.911102 0.000008 m
|
498
|
+
0.000000 0.000008 l
|
499
|
+
48.088890 119.000000 l
|
500
|
+
192.000000 119.000000 l
|
501
|
+
143.911102 0.000008 l
|
502
|
+
h
|
503
|
+
/Pattern cs
|
504
|
+
/P3 scn
|
505
|
+
f
|
506
|
+
n
|
507
|
+
Q
|
508
|
+
q
|
509
|
+
1.000000 0.000000 -0.000000 1.000000 171.000000 550.000000 cm
|
510
|
+
143.911118 -0.000008 m
|
511
|
+
0.000000 -0.000008 l
|
512
|
+
7.911114 19.641632 l
|
513
|
+
32.711113 81.397774 92.177780 119.000000 165.333328 119.000000 c
|
514
|
+
192.000000 119.000000 l
|
515
|
+
143.911118 -0.000008 l
|
516
|
+
h
|
517
|
+
/Pattern cs
|
518
|
+
/P4 scn
|
519
|
+
f
|
520
|
+
n
|
521
|
+
Q
|
522
|
+
q
|
523
|
+
1.000000 0.000000 -0.000000 1.000000 348.000000 550.000000 cm
|
524
|
+
143.911118 -0.000008 m
|
525
|
+
0.000000 -0.000008 l
|
526
|
+
48.088890 119.000000 l
|
527
|
+
192.000000 119.000000 l
|
528
|
+
143.911118 -0.000008 l
|
529
|
+
h
|
530
|
+
/Pattern cs
|
531
|
+
/P5 scn
|
532
|
+
f
|
533
|
+
n
|
534
|
+
Q
|
535
|
+
q
|
536
|
+
1.000000 0.000000 -0.000000 1.000000 97.000000 257.000000 cm
|
537
|
+
100.299606 0.000000 m
|
538
|
+
96.671196 0.000000 l
|
539
|
+
35.430614 0.000000 -16.163683 66.926445 4.721830 119.000000 c
|
540
|
+
148.000000 119.000000 l
|
541
|
+
100.299606 0.000000 l
|
542
|
+
h
|
543
|
+
/Pattern cs
|
544
|
+
/P6 scn
|
545
|
+
f
|
546
|
+
n
|
547
|
+
Q
|
548
|
+
q
|
549
|
+
1.000000 0.000000 -0.000000 1.000000 230.000000 257.000000 cm
|
550
|
+
143.911102 0.000008 m
|
551
|
+
0.000000 0.000008 l
|
552
|
+
48.088882 119.000000 l
|
553
|
+
192.000000 119.000000 l
|
554
|
+
143.911102 0.000008 l
|
555
|
+
h
|
556
|
+
/Pattern cs
|
557
|
+
/P7 scn
|
558
|
+
f
|
559
|
+
n
|
560
|
+
Q
|
561
|
+
q
|
562
|
+
1.000000 0.000000 -0.000000 1.000000 466.000000 402.982178 cm
|
563
|
+
143.277130 0.017815 m
|
564
|
+
0.000000 0.017815 l
|
565
|
+
1.946951 4.875488 l
|
566
|
+
29.735100 74.119499 82.833481 90.017365 157.171204 90.017365 c
|
567
|
+
159.425766 90.035698 161.650070 89.499115 163.647324 88.455086 c
|
568
|
+
165.644592 87.411064 167.353226 85.891785 168.621994 84.031723 c
|
569
|
+
169.890762 82.171654 170.680527 80.028152 170.921463 77.790878 c
|
570
|
+
171.162384 75.553604 170.847031 73.291550 170.003281 71.204895 c
|
571
|
+
143.277130 0.017815 l
|
572
|
+
h
|
573
|
+
/Pattern cs
|
574
|
+
/P8 scn
|
575
|
+
f
|
576
|
+
n
|
577
|
+
Q
|
578
|
+
q
|
579
|
+
1.000000 0.000000 -0.000000 1.000000 525.000000 550.000000 cm
|
580
|
+
143.278168 -0.000008 m
|
581
|
+
0.000000 -0.000008 l
|
582
|
+
47.877377 119.000000 l
|
583
|
+
51.328827 119.000000 l
|
584
|
+
112.569397 119.000000 164.163681 52.023788 143.278168 -0.000008 c
|
585
|
+
h
|
586
|
+
/Pattern cs
|
587
|
+
/P9 scn
|
588
|
+
f
|
589
|
+
n
|
590
|
+
Q
|
591
|
+
q
|
592
|
+
1.000000 0.000000 -0.000000 1.000000 205.000000 109.646851 cm
|
593
|
+
48.282669 120.314034 m
|
594
|
+
158.000015 120.314034 l
|
595
|
+
110.396843 0.353149 l
|
596
|
+
73.588432 0.353149 l
|
597
|
+
27.047041 0.353149 -12.327312 51.574409 3.599398 91.413155 c
|
598
|
+
7.180574 100.267799 13.394190 107.795517 21.391592 112.968185 c
|
599
|
+
29.388992 118.140854 38.780243 120.706276 48.282669 120.314034 c
|
600
|
+
48.282669 120.314034 l
|
601
|
+
h
|
602
|
+
/Pattern cs
|
603
|
+
/P10 scn
|
604
|
+
f
|
605
|
+
n
|
606
|
+
Q
|
607
|
+
q
|
608
|
+
1.000000 0.000000 -0.000000 1.000000 838.000000 363.140625 cm
|
609
|
+
0.000000 -90.140625 m
|
610
|
+
h
|
611
|
+
115.869141 26.021484 m
|
612
|
+
194.677734 26.021484 l
|
613
|
+
194.677734 -81.498047 l
|
614
|
+
181.787109 -85.697266 169.384766 -88.675781 157.470703 -90.433594 c
|
615
|
+
145.654297 -92.191406 132.861328 -93.070312 119.091797 -93.070312 c
|
616
|
+
86.669922 -93.070312 61.669922 -83.500000 44.091797 -64.359375 c
|
617
|
+
26.513672 -45.121094 17.724609 -18.021484 17.724609 16.939453 c
|
618
|
+
17.724609 51.412109 27.636719 78.365234 47.460938 97.798828 c
|
619
|
+
67.285156 117.330078 94.580078 127.095703 129.345703 127.095703 c
|
620
|
+
151.708984 127.095703 172.900391 122.798828 192.919922 114.205078 c
|
621
|
+
180.615234 85.054688 l
|
622
|
+
163.232422 93.062500 145.849609 97.066406 128.466797 97.066406 c
|
623
|
+
105.615234 97.066406 87.548828 89.888672 74.267578 75.533203 c
|
624
|
+
60.986328 61.177734 54.345703 41.548828 54.345703 16.646484 c
|
625
|
+
54.345703 -9.525391 60.302734 -29.447266 72.216797 -43.119141 c
|
626
|
+
84.228516 -56.693359 101.464844 -63.480469 123.925781 -63.480469 c
|
627
|
+
135.253906 -63.480469 147.363281 -62.064453 160.253906 -59.232422 c
|
628
|
+
160.253906 -4.007812 l
|
629
|
+
115.869141 -4.007812 l
|
630
|
+
115.869141 26.021484 l
|
631
|
+
h
|
632
|
+
232.968750 -90.140625 m
|
633
|
+
h
|
634
|
+
401.279297 -8.841797 m
|
635
|
+
401.279297 -35.306641 394.492188 -55.960938 380.917969 -70.804688 c
|
636
|
+
367.343750 -85.648438 348.447266 -93.070312 324.228516 -93.070312 c
|
637
|
+
309.091797 -93.070312 295.712891 -89.652344 284.091797 -82.816406 c
|
638
|
+
272.470703 -75.980469 263.535156 -66.166016 257.285156 -53.373047 c
|
639
|
+
251.035156 -40.580078 247.910156 -25.736328 247.910156 -8.841797 c
|
640
|
+
247.910156 17.427734 254.648438 37.935547 268.125000 52.681641 c
|
641
|
+
281.601562 67.427734 300.595703 74.800781 325.107422 74.800781 c
|
642
|
+
348.544922 74.800781 367.099609 67.232422 380.771484 52.095703 c
|
643
|
+
394.443359 37.056641 401.279297 16.744141 401.279297 -8.841797 c
|
644
|
+
h
|
645
|
+
283.359375 -8.841797 m
|
646
|
+
283.359375 -46.244141 297.177734 -64.945312 324.814453 -64.945312 c
|
647
|
+
352.158203 -64.945312 365.830078 -46.244141 365.830078 -8.841797 c
|
648
|
+
365.830078 28.169922 352.060547 46.675781 324.521484 46.675781 c
|
649
|
+
310.068359 46.675781 299.570312 41.890625 293.027344 32.320312 c
|
650
|
+
286.582031 22.750000 283.359375 9.029297 283.359375 -8.841797 c
|
651
|
+
h
|
652
|
+
431.367188 -90.140625 m
|
653
|
+
h
|
654
|
+
599.677734 -8.841797 m
|
655
|
+
599.677734 -35.306641 592.890625 -55.960938 579.316406 -70.804688 c
|
656
|
+
565.742188 -85.648438 546.845703 -93.070312 522.626953 -93.070312 c
|
657
|
+
507.490234 -93.070312 494.111328 -89.652344 482.490234 -82.816406 c
|
658
|
+
470.869141 -75.980469 461.933594 -66.166016 455.683594 -53.373047 c
|
659
|
+
449.433594 -40.580078 446.308594 -25.736328 446.308594 -8.841797 c
|
660
|
+
446.308594 17.427734 453.046875 37.935547 466.523438 52.681641 c
|
661
|
+
480.000000 67.427734 498.994141 74.800781 523.505859 74.800781 c
|
662
|
+
546.943359 74.800781 565.498047 67.232422 579.169922 52.095703 c
|
663
|
+
592.841797 37.056641 599.677734 16.744141 599.677734 -8.841797 c
|
664
|
+
h
|
665
|
+
481.757812 -8.841797 m
|
666
|
+
481.757812 -46.244141 495.576172 -64.945312 523.212891 -64.945312 c
|
667
|
+
550.556641 -64.945312 564.228516 -46.244141 564.228516 -8.841797 c
|
668
|
+
564.228516 28.169922 550.458984 46.675781 522.919922 46.675781 c
|
669
|
+
508.466797 46.675781 497.968750 41.890625 491.425781 32.320312 c
|
670
|
+
484.980469 22.750000 481.757812 9.029297 481.757812 -8.841797 c
|
671
|
+
h
|
672
|
+
629.765625 -90.140625 m
|
673
|
+
h
|
674
|
+
709.013672 -93.070312 m
|
675
|
+
688.798828 -93.070312 673.027344 -85.746094 661.699219 -71.097656 c
|
676
|
+
650.371094 -56.449219 644.707031 -35.892578 644.707031 -9.427734 c
|
677
|
+
644.707031 17.134766 650.419922 37.789062 661.845703 52.535156 c
|
678
|
+
673.369141 67.378906 689.287109 74.800781 709.599609 74.800781 c
|
679
|
+
730.888672 74.800781 747.099609 66.939453 758.232422 51.216797 c
|
680
|
+
759.990234 51.216797 l
|
681
|
+
758.330078 62.837891 757.500000 72.017578 757.500000 78.755859 c
|
682
|
+
757.500000 137.789062 l
|
683
|
+
792.070312 137.789062 l
|
684
|
+
792.070312 -90.140625 l
|
685
|
+
765.117188 -90.140625 l
|
686
|
+
759.111328 -68.900391 l
|
687
|
+
757.500000 -68.900391 l
|
688
|
+
746.464844 -85.013672 730.302734 -93.070312 709.013672 -93.070312 c
|
689
|
+
h
|
690
|
+
718.242188 -65.238281 m
|
691
|
+
732.402344 -65.238281 742.705078 -61.283203 749.150391 -53.373047 c
|
692
|
+
755.595703 -45.365234 758.916016 -32.425781 759.111328 -14.554688 c
|
693
|
+
759.111328 -9.720703 l
|
694
|
+
759.111328 10.689453 755.791016 25.191406 749.150391 33.785156 c
|
695
|
+
742.509766 42.378906 732.109375 46.675781 717.949219 46.675781 c
|
696
|
+
705.839844 46.675781 696.513672 41.744141 689.970703 31.880859 c
|
697
|
+
683.427734 22.115234 680.156250 8.150391 680.156250 -10.013672 c
|
698
|
+
680.156250 -27.982422 683.330078 -41.703125 689.677734 -51.175781 c
|
699
|
+
696.025391 -60.550781 705.546875 -65.238281 718.242188 -65.238281 c
|
700
|
+
h
|
701
|
+
831.679688 -90.140625 m
|
702
|
+
h
|
703
|
+
921.621094 -93.070312 m
|
704
|
+
897.109375 -93.070312 878.457031 -85.941406 865.664062 -71.683594 c
|
705
|
+
852.968750 -57.328125 846.621094 -36.771484 846.621094 -10.013672 c
|
706
|
+
846.621094 17.232422 853.261719 38.179688 866.542969 52.828125 c
|
707
|
+
879.921875 67.476562 899.208984 74.800781 924.404297 74.800781 c
|
708
|
+
941.494141 74.800781 956.875000 71.626953 970.546875 65.279297 c
|
709
|
+
960.146484 37.593750 l
|
710
|
+
945.595703 43.257812 933.583984 46.089844 924.111328 46.089844 c
|
711
|
+
896.083984 46.089844 882.070312 27.486328 882.070312 -9.720703 c
|
712
|
+
882.070312 -27.884766 885.537109 -41.556641 892.470703 -50.736328 c
|
713
|
+
899.501953 -59.818359 909.755859 -64.359375 923.232422 -64.359375 c
|
714
|
+
938.564453 -64.359375 953.066406 -60.550781 966.738281 -52.933594 c
|
715
|
+
966.738281 -82.962891 l
|
716
|
+
960.585938 -86.576172 953.994141 -89.164062 946.962891 -90.726562 c
|
717
|
+
940.029297 -92.289062 931.582031 -93.070312 921.621094 -93.070312 c
|
718
|
+
h
|
719
|
+
995.214844 -90.140625 m
|
720
|
+
h
|
721
|
+
1162.353516 -90.140625 m
|
722
|
+
1127.783203 -90.140625 l
|
723
|
+
1127.783203 9.468750 l
|
724
|
+
1127.783203 21.968750 1125.244141 31.294922 1120.166016 37.447266 c
|
725
|
+
1115.185547 43.599609 1107.226562 46.675781 1096.289062 46.675781 c
|
726
|
+
1081.835938 46.675781 1071.191406 42.330078 1064.355469 33.638672 c
|
727
|
+
1057.617188 25.044922 1054.248047 10.591797 1054.248047 -9.720703 c
|
728
|
+
1054.248047 -90.140625 l
|
729
|
+
1019.824219 -90.140625 l
|
730
|
+
1019.824219 137.789062 l
|
731
|
+
1054.248047 137.789062 l
|
732
|
+
1054.248047 79.927734 l
|
733
|
+
1054.248047 70.650391 1053.662109 60.738281 1052.490234 50.191406 c
|
734
|
+
1054.687500 50.191406 l
|
735
|
+
1059.375000 58.003906 1065.869141 64.058594 1074.169922 68.355469 c
|
736
|
+
1082.568359 72.652344 1092.333984 74.800781 1103.466797 74.800781 c
|
737
|
+
1142.724609 74.800781 1162.353516 55.025391 1162.353516 15.474609 c
|
738
|
+
1162.353516 -90.140625 l
|
739
|
+
h
|
740
|
+
1200.644531 -90.140625 m
|
741
|
+
h
|
742
|
+
1296.005859 -93.070312 m
|
743
|
+
1270.810547 -93.070312 1251.083984 -85.746094 1236.826172 -71.097656 c
|
744
|
+
1222.666016 -56.351562 1215.585938 -36.087891 1215.585938 -10.306641 c
|
745
|
+
1215.585938 16.158203 1222.177734 36.958984 1235.361328 52.095703 c
|
746
|
+
1248.544922 67.232422 1266.660156 74.800781 1289.707031 74.800781 c
|
747
|
+
1311.093750 74.800781 1327.988281 68.306641 1340.390625 55.318359 c
|
748
|
+
1352.792969 42.330078 1358.994141 24.458984 1358.994141 1.705078 c
|
749
|
+
1358.994141 -16.898438 l
|
750
|
+
1251.035156 -16.898438 l
|
751
|
+
1251.523438 -32.621094 1255.771484 -44.730469 1263.779297 -53.226562 c
|
752
|
+
1271.787109 -61.625000 1283.066406 -65.824219 1297.617188 -65.824219 c
|
753
|
+
1307.187500 -65.824219 1316.074219 -64.945312 1324.277344 -63.187500 c
|
754
|
+
1332.578125 -61.332031 1341.464844 -58.304688 1350.937500 -54.105469 c
|
755
|
+
1350.937500 -82.083984 l
|
756
|
+
1342.539062 -86.087891 1334.042969 -88.919922 1325.449219 -90.580078 c
|
757
|
+
1316.855469 -92.240234 1307.041016 -93.070312 1296.005859 -93.070312 c
|
758
|
+
h
|
759
|
+
1289.707031 48.726562 m
|
760
|
+
1278.769531 48.726562 1269.980469 45.259766 1263.339844 38.326172 c
|
761
|
+
1256.796875 31.392578 1252.890625 21.285156 1251.621094 8.003906 c
|
762
|
+
1325.156250 8.003906 l
|
763
|
+
1324.960938 21.382812 1321.738281 31.490234 1315.488281 38.326172 c
|
764
|
+
1309.238281 45.259766 1300.644531 48.726562 1289.707031 48.726562 c
|
765
|
+
h
|
766
|
+
1388.496094 -90.140625 m
|
767
|
+
h
|
768
|
+
1478.437500 -93.070312 m
|
769
|
+
1453.925781 -93.070312 1435.273438 -85.941406 1422.480469 -71.683594 c
|
770
|
+
1409.785156 -57.328125 1403.437500 -36.771484 1403.437500 -10.013672 c
|
771
|
+
1403.437500 17.232422 1410.078125 38.179688 1423.359375 52.828125 c
|
772
|
+
1436.738281 67.476562 1456.025391 74.800781 1481.220703 74.800781 c
|
773
|
+
1498.310547 74.800781 1513.691406 71.626953 1527.363281 65.279297 c
|
774
|
+
1516.962891 37.593750 l
|
775
|
+
1502.412109 43.257812 1490.400391 46.089844 1480.927734 46.089844 c
|
776
|
+
1452.900391 46.089844 1438.886719 27.486328 1438.886719 -9.720703 c
|
777
|
+
1438.886719 -27.884766 1442.353516 -41.556641 1449.287109 -50.736328 c
|
778
|
+
1456.318359 -59.818359 1466.572266 -64.359375 1480.048828 -64.359375 c
|
779
|
+
1495.380859 -64.359375 1509.882812 -60.550781 1523.554688 -52.933594 c
|
780
|
+
1523.554688 -82.962891 l
|
781
|
+
1517.402344 -86.576172 1510.810547 -89.164062 1503.779297 -90.726562 c
|
782
|
+
1496.845703 -92.289062 1488.398438 -93.070312 1478.437500 -93.070312 c
|
783
|
+
h
|
784
|
+
1552.031250 -90.140625 m
|
785
|
+
h
|
786
|
+
1609.892578 -4.593750 m
|
787
|
+
1629.375000 19.722656 l
|
788
|
+
1678.300781 71.871094 l
|
789
|
+
1717.998047 71.871094 l
|
790
|
+
1652.812500 2.291016 l
|
791
|
+
1722.099609 -90.140625 l
|
792
|
+
1681.669922 -90.140625 l
|
793
|
+
1629.667969 -19.095703 l
|
794
|
+
1610.771484 -34.623047 l
|
795
|
+
1610.771484 -90.140625 l
|
796
|
+
1576.640625 -90.140625 l
|
797
|
+
1576.640625 137.789062 l
|
798
|
+
1610.771484 137.789062 l
|
799
|
+
1610.771484 26.607422 l
|
800
|
+
1609.013672 -4.593750 l
|
801
|
+
1609.892578 -4.593750 l
|
802
|
+
h
|
803
|
+
0.160784 0.200000 0.262745 scn
|
804
|
+
f
|
805
|
+
n
|
806
|
+
Q
|
807
|
+
q
|
808
|
+
1.000000 0.000000 -0.000000 1.000000 838.000000 363.140625 cm
|
809
|
+
BT
|
810
|
+
300.000000 0.000000 0.000000 300.000000 0.000000 -90.140625 Tm
|
811
|
+
/F1 1.000000 Tf
|
812
|
+
[ (\006) -50.488281 (\004) -50.488281 (\004) -50.488281 (\003) -50.000000 (\005) -50.000000 (\002) -50.000000 (\001) -50.000000 (\005) -50.000000 (\000) ] TJ
|
813
|
+
ET
|
814
|
+
Q
|
815
|
+
|
816
|
+
endstream
|
817
|
+
endobj
|
818
|
+
|
819
|
+
41 0 obj
|
820
|
+
11821
|
821
|
+
endobj
|
822
|
+
|
823
|
+
42 0 obj
|
824
|
+
<< /MediaBox [ 0.000000 0.000000 2694.000000 778.000000 ]
|
825
|
+
/Resources 39 0 R
|
826
|
+
/Contents 40 0 R
|
827
|
+
/Parent 43 0 R
|
828
|
+
/Type /Page
|
829
|
+
>>
|
830
|
+
endobj
|
831
|
+
|
832
|
+
43 0 obj
|
833
|
+
<< /Kids [ 42 0 R ]
|
834
|
+
/Count 1
|
835
|
+
/Type /Pages
|
836
|
+
>>
|
837
|
+
endobj
|
838
|
+
|
839
|
+
44 0 obj
|
840
|
+
<< /Type /Catalog
|
841
|
+
/Pages 43 0 R
|
842
|
+
>>
|
843
|
+
endobj
|
844
|
+
|
845
|
+
xref
|
846
|
+
0 45
|
847
|
+
0000000000 65535 f
|
848
|
+
0000000010 00000 n
|
849
|
+
0000000174 00000 n
|
850
|
+
0000000196 00000 n
|
851
|
+
0000000360 00000 n
|
852
|
+
0000000382 00000 n
|
853
|
+
0000000545 00000 n
|
854
|
+
0000000567 00000 n
|
855
|
+
0000000731 00000 n
|
856
|
+
0000000753 00000 n
|
857
|
+
0000000917 00000 n
|
858
|
+
0000000940 00000 n
|
859
|
+
0000001106 00000 n
|
860
|
+
0000001129 00000 n
|
861
|
+
0000001295 00000 n
|
862
|
+
0000001318 00000 n
|
863
|
+
0000001404 00000 n
|
864
|
+
0000002010 00000 n
|
865
|
+
0000002033 00000 n
|
866
|
+
0000002704 00000 n
|
867
|
+
0000003228 00000 n
|
868
|
+
0000003251 00000 n
|
869
|
+
0000003775 00000 n
|
870
|
+
0000003798 00000 n
|
871
|
+
0000004322 00000 n
|
872
|
+
0000004345 00000 n
|
873
|
+
0000004869 00000 n
|
874
|
+
0000004892 00000 n
|
875
|
+
0000005416 00000 n
|
876
|
+
0000005439 00000 n
|
877
|
+
0000005962 00000 n
|
878
|
+
0000005985 00000 n
|
879
|
+
0000006508 00000 n
|
880
|
+
0000006531 00000 n
|
881
|
+
0000007055 00000 n
|
882
|
+
0000007078 00000 n
|
883
|
+
0000007602 00000 n
|
884
|
+
0000007625 00000 n
|
885
|
+
0000008149 00000 n
|
886
|
+
0000008172 00000 n
|
887
|
+
0000014349 00000 n
|
888
|
+
0000026228 00000 n
|
889
|
+
0000026253 00000 n
|
890
|
+
0000026417 00000 n
|
891
|
+
0000026493 00000 n
|
892
|
+
trailer
|
893
|
+
<< /ID [ (some) (id) ]
|
894
|
+
/Root 44 0 R
|
895
|
+
/Size 45
|
896
|
+
>>
|
897
|
+
startxref
|
898
|
+
26554
|
899
|
+
%%EOF
|