gviz 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +113 -0
- data/Rakefile +1 -0
- data/examples/arrow.dot +88 -0
- data/examples/arrows.rb +59 -0
- data/examples/color.dot +1302 -0
- data/examples/colors.rb +673 -0
- data/examples/examples.rb +71 -0
- data/examples/sample1.png +0 -0
- data/examples/sample2.png +0 -0
- data/examples/sample3.png +0 -0
- data/examples/scraper.rb +59 -0
- data/examples/shape.dot +108 -0
- data/examples/shapes.rb +79 -0
- data/gviz.gemspec +19 -0
- data/lib/gviz.rb +211 -0
- data/lib/gviz/version.rb +3 -0
- data/spec/gviz_spec.rb +395 -0
- data/spec/spec_helper.rb +9 -0
- metadata +69 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 kyoendo
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,113 @@
|
|
1
|
+
# Gviz
|
2
|
+
|
3
|
+
Ruby's interface of graphviz. It generate a dot file with simple ruby's syntax. Some implementations of `Gviz` are inspired by Ryan Davis's [Graph](https://github.com/seattlerb/graph 'seattlerb/graph').
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'gviz'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install gviz
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
A simple example.
|
22
|
+
|
23
|
+
# add nodes and edges(route method)
|
24
|
+
# save to files with dot and png formats(save method)
|
25
|
+
require "gviz"
|
26
|
+
|
27
|
+
gv = Gviz.new
|
28
|
+
gv.graph do
|
29
|
+
route :main => [:init, :parse, :cleanup, :printf]
|
30
|
+
route :init => :make, :parse => :execute
|
31
|
+
route :execute => [:make, :compare, :printf]
|
32
|
+
end
|
33
|
+
|
34
|
+
gv.save(:sample1, :png)
|
35
|
+
|
36
|
+
This outputs `sample1.dot` and `sample1.png` files shown as below.
|
37
|
+
|
38
|
+
![sample1](http://github.com/melborne/Gviz/raw/master/examples/sample1.png)
|
39
|
+
|
40
|
+
Add some attributes to the graph, nodes, edges.
|
41
|
+
|
42
|
+
## add color to all nodes with color set(nodes, nodeset and node methods)
|
43
|
+
## add color & styles to all edges(edges method)
|
44
|
+
## add color & styles to a edge(edge method)
|
45
|
+
## add bgcolor to a graph(global method)
|
46
|
+
require "gviz"
|
47
|
+
|
48
|
+
gv = Gviz.new
|
49
|
+
gv.graph do
|
50
|
+
route :main => [:init, :parse, :cleanup, :printf]
|
51
|
+
route :init => :make, :parse => :execute
|
52
|
+
route :execute => [:make, :compare, :printf]
|
53
|
+
|
54
|
+
nodes(colorscheme:'piyg8', style:'filled')
|
55
|
+
nodeset.each.with_index(1) { |nd, i| node(nd.id, fillcolor:i) }
|
56
|
+
edges(arrowhead:'onormal', style:'bold', color:'magenta4')
|
57
|
+
edge(:main_printf, arrowtail:'diamond', dir:'both', color:'#3355FF')
|
58
|
+
global(bgcolor:'powderblue')
|
59
|
+
end
|
60
|
+
|
61
|
+
gv.save(:sample2, :png)
|
62
|
+
|
63
|
+
This outputs below.
|
64
|
+
|
65
|
+
![sample2](http://github.com/melborne/Gviz/raw/master/examples/sample2.png)
|
66
|
+
|
67
|
+
|
68
|
+
Modify some.
|
69
|
+
|
70
|
+
## define specific edge port(node label & edge method)
|
71
|
+
## adjust node positions(rank method)
|
72
|
+
## define subgraph(subgraph method)
|
73
|
+
require "gviz"
|
74
|
+
|
75
|
+
gv = Gviz.new
|
76
|
+
gv.graph do
|
77
|
+
route :main => [:init, :parse, :cleanup, :printf]
|
78
|
+
route :init => :make, :parse => :execute
|
79
|
+
route :execute => [:make, :compare, :printf]
|
80
|
+
|
81
|
+
nodes colorscheme:'piyg8', style:'filled'
|
82
|
+
nodeset.each.with_index(1) { |nd, i| node nd.id, fillcolor:i }
|
83
|
+
edges arrowhead:'onormal', style:'bold', color:'magenta4'
|
84
|
+
edge :main_printf, arrowtail:'diamond', dir:'both', color:'#3355FF'
|
85
|
+
global bgcolor:'powderblue'
|
86
|
+
|
87
|
+
node :execute, shape:'Mrecord', label:'{<x>execute | {a | b | c}}'
|
88
|
+
node :printf, shape:'Mrecord', label:'{printf |<y> format}'
|
89
|
+
edge 'execute:x_printf:y'
|
90
|
+
rank :same, :cleanup, :execute
|
91
|
+
subgraph do
|
92
|
+
global label:'SUB'
|
93
|
+
node :init
|
94
|
+
node :make
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
gv.save(:sample3, :png)
|
99
|
+
|
100
|
+
This outputs below.
|
101
|
+
|
102
|
+
![sample3](http://github.com/melborne/Gviz/raw/master/examples/sample3.png)
|
103
|
+
|
104
|
+
|
105
|
+
Another examples are at `examples` directory
|
106
|
+
|
107
|
+
## Contributing
|
108
|
+
|
109
|
+
1. Fork it
|
110
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
111
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
112
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
113
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/examples/arrow.dot
ADDED
@@ -0,0 +1,88 @@
|
|
1
|
+
digraph G {
|
2
|
+
node[color="orchid",shape="circle",label="Arrow"];
|
3
|
+
box;
|
4
|
+
lbox;
|
5
|
+
rbox;
|
6
|
+
obox;
|
7
|
+
olbox;
|
8
|
+
orbox;
|
9
|
+
0;
|
10
|
+
crow;
|
11
|
+
lcrow;
|
12
|
+
rcrow;
|
13
|
+
diamond;
|
14
|
+
ldiamond;
|
15
|
+
rdiamond;
|
16
|
+
1;
|
17
|
+
odiamond;
|
18
|
+
oldiamond;
|
19
|
+
ordiamond;
|
20
|
+
dot;
|
21
|
+
odot;
|
22
|
+
inv;
|
23
|
+
2;
|
24
|
+
linv;
|
25
|
+
rinv;
|
26
|
+
oinv;
|
27
|
+
olinv;
|
28
|
+
orinv;
|
29
|
+
none;
|
30
|
+
3;
|
31
|
+
normal;
|
32
|
+
lnormal;
|
33
|
+
rnormal;
|
34
|
+
onormal;
|
35
|
+
olnormal;
|
36
|
+
ornormal;
|
37
|
+
4;
|
38
|
+
tee;
|
39
|
+
ltee;
|
40
|
+
rtee;
|
41
|
+
vee;
|
42
|
+
lvee;
|
43
|
+
rvee;
|
44
|
+
5;
|
45
|
+
curve;
|
46
|
+
lcurve;
|
47
|
+
rcurve;
|
48
|
+
6;
|
49
|
+
box -> lbox[arrowhead="box",label="box"];
|
50
|
+
lbox -> rbox[arrowhead="lbox",label="lbox"];
|
51
|
+
rbox -> obox[arrowhead="rbox",label="rbox"];
|
52
|
+
obox -> olbox[arrowhead="obox",label="obox"];
|
53
|
+
olbox -> orbox[arrowhead="olbox",label="olbox"];
|
54
|
+
orbox -> 0[arrowhead="orbox",label="orbox"];
|
55
|
+
crow -> lcrow[arrowhead="crow",label="crow"];
|
56
|
+
lcrow -> rcrow[arrowhead="lcrow",label="lcrow"];
|
57
|
+
rcrow -> diamond[arrowhead="rcrow",label="rcrow"];
|
58
|
+
diamond -> ldiamond[arrowhead="diamond",label="diamond"];
|
59
|
+
ldiamond -> rdiamond[arrowhead="ldiamond",label="ldiamond"];
|
60
|
+
rdiamond -> 1[arrowhead="rdiamond",label="rdiamond"];
|
61
|
+
odiamond -> oldiamond[arrowhead="odiamond",label="odiamond"];
|
62
|
+
oldiamond -> ordiamond[arrowhead="oldiamond",label="oldiamond"];
|
63
|
+
ordiamond -> dot[arrowhead="ordiamond",label="ordiamond"];
|
64
|
+
dot -> odot[arrowhead="dot",label="dot"];
|
65
|
+
odot -> inv[arrowhead="odot",label="odot"];
|
66
|
+
inv -> 2[arrowhead="inv",label="inv"];
|
67
|
+
linv -> rinv[arrowhead="linv",label="linv"];
|
68
|
+
rinv -> oinv[arrowhead="rinv",label="rinv"];
|
69
|
+
oinv -> olinv[arrowhead="oinv",label="oinv"];
|
70
|
+
olinv -> orinv[arrowhead="olinv",label="olinv"];
|
71
|
+
orinv -> none[arrowhead="orinv",label="orinv"];
|
72
|
+
none -> 3[arrowhead="none",label="none"];
|
73
|
+
normal -> lnormal[arrowhead="normal",label="normal"];
|
74
|
+
lnormal -> rnormal[arrowhead="lnormal",label="lnormal"];
|
75
|
+
rnormal -> onormal[arrowhead="rnormal",label="rnormal"];
|
76
|
+
onormal -> olnormal[arrowhead="onormal",label="onormal"];
|
77
|
+
olnormal -> ornormal[arrowhead="olnormal",label="olnormal"];
|
78
|
+
ornormal -> 4[arrowhead="ornormal",label="ornormal"];
|
79
|
+
tee -> ltee[arrowhead="tee",label="tee"];
|
80
|
+
ltee -> rtee[arrowhead="ltee",label="ltee"];
|
81
|
+
rtee -> vee[arrowhead="rtee",label="rtee"];
|
82
|
+
vee -> lvee[arrowhead="vee",label="vee"];
|
83
|
+
lvee -> rvee[arrowhead="lvee",label="lvee"];
|
84
|
+
rvee -> 5[arrowhead="rvee",label="rvee"];
|
85
|
+
curve -> lcurve[arrowhead="curve",label="curve"];
|
86
|
+
lcurve -> rcurve[arrowhead="lcurve",label="lcurve"];
|
87
|
+
rcurve -> 6[arrowhead="rcurve",label="rcurve"];
|
88
|
+
}
|
data/examples/arrows.rb
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
# Arrow Varieties
|
2
|
+
require_relative "../lib/gviz"
|
3
|
+
|
4
|
+
arrows = DATA.lines.map(&:chomp).reject { |l| l.empty? }
|
5
|
+
|
6
|
+
g = Gviz.new
|
7
|
+
|
8
|
+
g.graph do
|
9
|
+
arrows.each_slice(6).with_index do |gr, i|
|
10
|
+
gr.push i
|
11
|
+
gr.each_cons(2) do |a, b|
|
12
|
+
edge "#{a}_#{b}", arrowhead: a, label: a
|
13
|
+
end
|
14
|
+
end
|
15
|
+
nodes(color:'orchid', shape:'circle', label:"Arrow")
|
16
|
+
end
|
17
|
+
|
18
|
+
puts g
|
19
|
+
|
20
|
+
__END__
|
21
|
+
box
|
22
|
+
lbox
|
23
|
+
rbox
|
24
|
+
obox
|
25
|
+
olbox
|
26
|
+
orbox
|
27
|
+
crow
|
28
|
+
lcrow
|
29
|
+
rcrow
|
30
|
+
diamond
|
31
|
+
ldiamond
|
32
|
+
rdiamond
|
33
|
+
odiamond
|
34
|
+
oldiamond
|
35
|
+
ordiamond
|
36
|
+
dot
|
37
|
+
odot
|
38
|
+
inv
|
39
|
+
linv
|
40
|
+
rinv
|
41
|
+
oinv
|
42
|
+
olinv
|
43
|
+
orinv
|
44
|
+
none
|
45
|
+
normal
|
46
|
+
lnormal
|
47
|
+
rnormal
|
48
|
+
onormal
|
49
|
+
olnormal
|
50
|
+
ornormal
|
51
|
+
tee
|
52
|
+
ltee
|
53
|
+
rtee
|
54
|
+
vee
|
55
|
+
lvee
|
56
|
+
rvee
|
57
|
+
curve
|
58
|
+
lcurve
|
59
|
+
rcurve
|
data/examples/color.dot
ADDED
@@ -0,0 +1,1302 @@
|
|
1
|
+
digraph graph1 {
|
2
|
+
aliceblue[style="filled",fillcolor="aliceblue"];
|
3
|
+
antiquewhite[style="filled",fillcolor="antiquewhite"];
|
4
|
+
antiquewhite1[style="filled",fillcolor="antiquewhite1"];
|
5
|
+
antiquewhite2[style="filled",fillcolor="antiquewhite2"];
|
6
|
+
antiquewhite3[style="filled",fillcolor="antiquewhite3"];
|
7
|
+
antiquewhite4[style="filled",fillcolor="antiquewhite4"];
|
8
|
+
aquamarine[style="filled",fillcolor="aquamarine"];
|
9
|
+
aquamarine1[style="filled",fillcolor="aquamarine1"];
|
10
|
+
aquamarine2[style="filled",fillcolor="aquamarine2"];
|
11
|
+
aquamarine3[style="filled",fillcolor="aquamarine3"];
|
12
|
+
aquamarine4[style="filled",fillcolor="aquamarine4"];
|
13
|
+
azure[style="filled",fillcolor="azure"];
|
14
|
+
azure1[style="filled",fillcolor="azure1"];
|
15
|
+
azure2[style="filled",fillcolor="azure2"];
|
16
|
+
azure3[style="filled",fillcolor="azure3"];
|
17
|
+
azure4[style="filled",fillcolor="azure4"];
|
18
|
+
beige[style="filled",fillcolor="beige"];
|
19
|
+
bisque[style="filled",fillcolor="bisque"];
|
20
|
+
bisque1[style="filled",fillcolor="bisque1"];
|
21
|
+
bisque2[style="filled",fillcolor="bisque2"];
|
22
|
+
bisque3[style="filled",fillcolor="bisque3"];
|
23
|
+
bisque4[style="filled",fillcolor="bisque4"];
|
24
|
+
black[style="filled",fillcolor="black"];
|
25
|
+
blanchedalmond[style="filled",fillcolor="blanchedalmond"];
|
26
|
+
blue[style="filled",fillcolor="blue"];
|
27
|
+
blue1[style="filled",fillcolor="blue1"];
|
28
|
+
blue2[style="filled",fillcolor="blue2"];
|
29
|
+
blue3[style="filled",fillcolor="blue3"];
|
30
|
+
blue4[style="filled",fillcolor="blue4"];
|
31
|
+
blueviolet[style="filled",fillcolor="blueviolet"];
|
32
|
+
brown[style="filled",fillcolor="brown"];
|
33
|
+
brown1[style="filled",fillcolor="brown1"];
|
34
|
+
brown2[style="filled",fillcolor="brown2"];
|
35
|
+
brown3[style="filled",fillcolor="brown3"];
|
36
|
+
brown4[style="filled",fillcolor="brown4"];
|
37
|
+
burlywood[style="filled",fillcolor="burlywood"];
|
38
|
+
burlywood1[style="filled",fillcolor="burlywood1"];
|
39
|
+
burlywood2[style="filled",fillcolor="burlywood2"];
|
40
|
+
burlywood3[style="filled",fillcolor="burlywood3"];
|
41
|
+
burlywood4[style="filled",fillcolor="burlywood4"];
|
42
|
+
cadetblue[style="filled",fillcolor="cadetblue"];
|
43
|
+
cadetblue1[style="filled",fillcolor="cadetblue1"];
|
44
|
+
cadetblue2[style="filled",fillcolor="cadetblue2"];
|
45
|
+
cadetblue3[style="filled",fillcolor="cadetblue3"];
|
46
|
+
cadetblue4[style="filled",fillcolor="cadetblue4"];
|
47
|
+
chartreuse[style="filled",fillcolor="chartreuse"];
|
48
|
+
chartreuse1[style="filled",fillcolor="chartreuse1"];
|
49
|
+
chartreuse2[style="filled",fillcolor="chartreuse2"];
|
50
|
+
chartreuse3[style="filled",fillcolor="chartreuse3"];
|
51
|
+
chartreuse4[style="filled",fillcolor="chartreuse4"];
|
52
|
+
chocolate[style="filled",fillcolor="chocolate"];
|
53
|
+
chocolate1[style="filled",fillcolor="chocolate1"];
|
54
|
+
chocolate2[style="filled",fillcolor="chocolate2"];
|
55
|
+
chocolate3[style="filled",fillcolor="chocolate3"];
|
56
|
+
chocolate4[style="filled",fillcolor="chocolate4"];
|
57
|
+
coral[style="filled",fillcolor="coral"];
|
58
|
+
coral1[style="filled",fillcolor="coral1"];
|
59
|
+
coral2[style="filled",fillcolor="coral2"];
|
60
|
+
coral3[style="filled",fillcolor="coral3"];
|
61
|
+
coral4[style="filled",fillcolor="coral4"];
|
62
|
+
cornflowerblue[style="filled",fillcolor="cornflowerblue"];
|
63
|
+
cornsilk[style="filled",fillcolor="cornsilk"];
|
64
|
+
cornsilk1[style="filled",fillcolor="cornsilk1"];
|
65
|
+
cornsilk2[style="filled",fillcolor="cornsilk2"];
|
66
|
+
cornsilk3[style="filled",fillcolor="cornsilk3"];
|
67
|
+
cornsilk4[style="filled",fillcolor="cornsilk4"];
|
68
|
+
crimson[style="filled",fillcolor="crimson"];
|
69
|
+
cyan[style="filled",fillcolor="cyan"];
|
70
|
+
cyan1[style="filled",fillcolor="cyan1"];
|
71
|
+
cyan2[style="filled",fillcolor="cyan2"];
|
72
|
+
cyan3[style="filled",fillcolor="cyan3"];
|
73
|
+
cyan4[style="filled",fillcolor="cyan4"];
|
74
|
+
darkgoldenrod[style="filled",fillcolor="darkgoldenrod"];
|
75
|
+
darkgoldenrod1[style="filled",fillcolor="darkgoldenrod1"];
|
76
|
+
darkgoldenrod2[style="filled",fillcolor="darkgoldenrod2"];
|
77
|
+
darkgoldenrod3[style="filled",fillcolor="darkgoldenrod3"];
|
78
|
+
darkgoldenrod4[style="filled",fillcolor="darkgoldenrod4"];
|
79
|
+
darkgreen[style="filled",fillcolor="darkgreen"];
|
80
|
+
darkkhaki[style="filled",fillcolor="darkkhaki"];
|
81
|
+
darkolivegreen[style="filled",fillcolor="darkolivegreen"];
|
82
|
+
darkolivegreen1[style="filled",fillcolor="darkolivegreen1"];
|
83
|
+
darkolivegreen2[style="filled",fillcolor="darkolivegreen2"];
|
84
|
+
darkolivegreen3[style="filled",fillcolor="darkolivegreen3"];
|
85
|
+
darkolivegreen4[style="filled",fillcolor="darkolivegreen4"];
|
86
|
+
darkorange[style="filled",fillcolor="darkorange"];
|
87
|
+
darkorange1[style="filled",fillcolor="darkorange1"];
|
88
|
+
darkorange2[style="filled",fillcolor="darkorange2"];
|
89
|
+
darkorange3[style="filled",fillcolor="darkorange3"];
|
90
|
+
darkorange4[style="filled",fillcolor="darkorange4"];
|
91
|
+
darkorchid[style="filled",fillcolor="darkorchid"];
|
92
|
+
darkorchid1[style="filled",fillcolor="darkorchid1"];
|
93
|
+
darkorchid2[style="filled",fillcolor="darkorchid2"];
|
94
|
+
darkorchid3[style="filled",fillcolor="darkorchid3"];
|
95
|
+
darkorchid4[style="filled",fillcolor="darkorchid4"];
|
96
|
+
darksalmon[style="filled",fillcolor="darksalmon"];
|
97
|
+
darkseagreen[style="filled",fillcolor="darkseagreen"];
|
98
|
+
darkseagreen1[style="filled",fillcolor="darkseagreen1"];
|
99
|
+
darkseagreen2[style="filled",fillcolor="darkseagreen2"];
|
100
|
+
darkseagreen3[style="filled",fillcolor="darkseagreen3"];
|
101
|
+
darkseagreen4[style="filled",fillcolor="darkseagreen4"];
|
102
|
+
darkslateblue[style="filled",fillcolor="darkslateblue"];
|
103
|
+
darkslategray[style="filled",fillcolor="darkslategray"];
|
104
|
+
darkslategray1[style="filled",fillcolor="darkslategray1"];
|
105
|
+
darkslategray2[style="filled",fillcolor="darkslategray2"];
|
106
|
+
darkslategray3[style="filled",fillcolor="darkslategray3"];
|
107
|
+
darkslategray4[style="filled",fillcolor="darkslategray4"];
|
108
|
+
darkslategrey[style="filled",fillcolor="darkslategrey"];
|
109
|
+
darkturquoise[style="filled",fillcolor="darkturquoise"];
|
110
|
+
darkviolet[style="filled",fillcolor="darkviolet"];
|
111
|
+
deeppink[style="filled",fillcolor="deeppink"];
|
112
|
+
deeppink1[style="filled",fillcolor="deeppink1"];
|
113
|
+
deeppink2[style="filled",fillcolor="deeppink2"];
|
114
|
+
deeppink3[style="filled",fillcolor="deeppink3"];
|
115
|
+
deeppink4[style="filled",fillcolor="deeppink4"];
|
116
|
+
deepskyblue[style="filled",fillcolor="deepskyblue"];
|
117
|
+
deepskyblue1[style="filled",fillcolor="deepskyblue1"];
|
118
|
+
deepskyblue2[style="filled",fillcolor="deepskyblue2"];
|
119
|
+
deepskyblue3[style="filled",fillcolor="deepskyblue3"];
|
120
|
+
deepskyblue4[style="filled",fillcolor="deepskyblue4"];
|
121
|
+
dimgray[style="filled",fillcolor="dimgray"];
|
122
|
+
dimgrey[style="filled",fillcolor="dimgrey"];
|
123
|
+
dodgerblue[style="filled",fillcolor="dodgerblue"];
|
124
|
+
dodgerblue1[style="filled",fillcolor="dodgerblue1"];
|
125
|
+
dodgerblue2[style="filled",fillcolor="dodgerblue2"];
|
126
|
+
dodgerblue3[style="filled",fillcolor="dodgerblue3"];
|
127
|
+
dodgerblue4[style="filled",fillcolor="dodgerblue4"];
|
128
|
+
firebrick[style="filled",fillcolor="firebrick"];
|
129
|
+
firebrick1[style="filled",fillcolor="firebrick1"];
|
130
|
+
firebrick2[style="filled",fillcolor="firebrick2"];
|
131
|
+
firebrick3[style="filled",fillcolor="firebrick3"];
|
132
|
+
firebrick4[style="filled",fillcolor="firebrick4"];
|
133
|
+
floralwhite[style="filled",fillcolor="floralwhite"];
|
134
|
+
forestgreen[style="filled",fillcolor="forestgreen"];
|
135
|
+
gainsboro[style="filled",fillcolor="gainsboro"];
|
136
|
+
ghostwhite[style="filled",fillcolor="ghostwhite"];
|
137
|
+
gold[style="filled",fillcolor="gold"];
|
138
|
+
gold1[style="filled",fillcolor="gold1"];
|
139
|
+
gold2[style="filled",fillcolor="gold2"];
|
140
|
+
gold3[style="filled",fillcolor="gold3"];
|
141
|
+
gold4[style="filled",fillcolor="gold4"];
|
142
|
+
goldenrod[style="filled",fillcolor="goldenrod"];
|
143
|
+
goldenrod1[style="filled",fillcolor="goldenrod1"];
|
144
|
+
goldenrod2[style="filled",fillcolor="goldenrod2"];
|
145
|
+
goldenrod3[style="filled",fillcolor="goldenrod3"];
|
146
|
+
goldenrod4[style="filled",fillcolor="goldenrod4"];
|
147
|
+
gray[style="filled",fillcolor="gray"];
|
148
|
+
gray0[style="filled",fillcolor="gray0"];
|
149
|
+
gray1[style="filled",fillcolor="gray1"];
|
150
|
+
gray2[style="filled",fillcolor="gray2"];
|
151
|
+
gray3[style="filled",fillcolor="gray3"];
|
152
|
+
gray4[style="filled",fillcolor="gray4"];
|
153
|
+
gray5[style="filled",fillcolor="gray5"];
|
154
|
+
gray6[style="filled",fillcolor="gray6"];
|
155
|
+
gray7[style="filled",fillcolor="gray7"];
|
156
|
+
gray8[style="filled",fillcolor="gray8"];
|
157
|
+
gray9[style="filled",fillcolor="gray9"];
|
158
|
+
gray10[style="filled",fillcolor="gray10"];
|
159
|
+
gray11[style="filled",fillcolor="gray11"];
|
160
|
+
gray12[style="filled",fillcolor="gray12"];
|
161
|
+
gray13[style="filled",fillcolor="gray13"];
|
162
|
+
gray14[style="filled",fillcolor="gray14"];
|
163
|
+
gray15[style="filled",fillcolor="gray15"];
|
164
|
+
gray16[style="filled",fillcolor="gray16"];
|
165
|
+
gray17[style="filled",fillcolor="gray17"];
|
166
|
+
gray18[style="filled",fillcolor="gray18"];
|
167
|
+
gray19[style="filled",fillcolor="gray19"];
|
168
|
+
gray20[style="filled",fillcolor="gray20"];
|
169
|
+
gray21[style="filled",fillcolor="gray21"];
|
170
|
+
gray22[style="filled",fillcolor="gray22"];
|
171
|
+
gray23[style="filled",fillcolor="gray23"];
|
172
|
+
gray24[style="filled",fillcolor="gray24"];
|
173
|
+
gray25[style="filled",fillcolor="gray25"];
|
174
|
+
gray26[style="filled",fillcolor="gray26"];
|
175
|
+
gray27[style="filled",fillcolor="gray27"];
|
176
|
+
gray28[style="filled",fillcolor="gray28"];
|
177
|
+
gray29[style="filled",fillcolor="gray29"];
|
178
|
+
gray30[style="filled",fillcolor="gray30"];
|
179
|
+
gray31[style="filled",fillcolor="gray31"];
|
180
|
+
gray32[style="filled",fillcolor="gray32"];
|
181
|
+
gray33[style="filled",fillcolor="gray33"];
|
182
|
+
gray34[style="filled",fillcolor="gray34"];
|
183
|
+
gray35[style="filled",fillcolor="gray35"];
|
184
|
+
gray36[style="filled",fillcolor="gray36"];
|
185
|
+
gray37[style="filled",fillcolor="gray37"];
|
186
|
+
gray38[style="filled",fillcolor="gray38"];
|
187
|
+
gray39[style="filled",fillcolor="gray39"];
|
188
|
+
gray40[style="filled",fillcolor="gray40"];
|
189
|
+
gray41[style="filled",fillcolor="gray41"];
|
190
|
+
gray42[style="filled",fillcolor="gray42"];
|
191
|
+
gray43[style="filled",fillcolor="gray43"];
|
192
|
+
gray44[style="filled",fillcolor="gray44"];
|
193
|
+
gray45[style="filled",fillcolor="gray45"];
|
194
|
+
gray46[style="filled",fillcolor="gray46"];
|
195
|
+
gray47[style="filled",fillcolor="gray47"];
|
196
|
+
gray48[style="filled",fillcolor="gray48"];
|
197
|
+
gray49[style="filled",fillcolor="gray49"];
|
198
|
+
gray50[style="filled",fillcolor="gray50"];
|
199
|
+
gray51[style="filled",fillcolor="gray51"];
|
200
|
+
gray52[style="filled",fillcolor="gray52"];
|
201
|
+
gray53[style="filled",fillcolor="gray53"];
|
202
|
+
gray54[style="filled",fillcolor="gray54"];
|
203
|
+
gray55[style="filled",fillcolor="gray55"];
|
204
|
+
gray56[style="filled",fillcolor="gray56"];
|
205
|
+
gray57[style="filled",fillcolor="gray57"];
|
206
|
+
gray58[style="filled",fillcolor="gray58"];
|
207
|
+
gray59[style="filled",fillcolor="gray59"];
|
208
|
+
gray60[style="filled",fillcolor="gray60"];
|
209
|
+
gray61[style="filled",fillcolor="gray61"];
|
210
|
+
gray62[style="filled",fillcolor="gray62"];
|
211
|
+
gray63[style="filled",fillcolor="gray63"];
|
212
|
+
gray64[style="filled",fillcolor="gray64"];
|
213
|
+
gray65[style="filled",fillcolor="gray65"];
|
214
|
+
gray66[style="filled",fillcolor="gray66"];
|
215
|
+
gray67[style="filled",fillcolor="gray67"];
|
216
|
+
gray68[style="filled",fillcolor="gray68"];
|
217
|
+
gray69[style="filled",fillcolor="gray69"];
|
218
|
+
gray70[style="filled",fillcolor="gray70"];
|
219
|
+
gray71[style="filled",fillcolor="gray71"];
|
220
|
+
gray72[style="filled",fillcolor="gray72"];
|
221
|
+
gray73[style="filled",fillcolor="gray73"];
|
222
|
+
gray74[style="filled",fillcolor="gray74"];
|
223
|
+
gray75[style="filled",fillcolor="gray75"];
|
224
|
+
gray76[style="filled",fillcolor="gray76"];
|
225
|
+
gray77[style="filled",fillcolor="gray77"];
|
226
|
+
gray78[style="filled",fillcolor="gray78"];
|
227
|
+
gray79[style="filled",fillcolor="gray79"];
|
228
|
+
gray80[style="filled",fillcolor="gray80"];
|
229
|
+
gray81[style="filled",fillcolor="gray81"];
|
230
|
+
gray82[style="filled",fillcolor="gray82"];
|
231
|
+
gray83[style="filled",fillcolor="gray83"];
|
232
|
+
gray84[style="filled",fillcolor="gray84"];
|
233
|
+
gray85[style="filled",fillcolor="gray85"];
|
234
|
+
gray86[style="filled",fillcolor="gray86"];
|
235
|
+
gray87[style="filled",fillcolor="gray87"];
|
236
|
+
gray88[style="filled",fillcolor="gray88"];
|
237
|
+
gray89[style="filled",fillcolor="gray89"];
|
238
|
+
gray90[style="filled",fillcolor="gray90"];
|
239
|
+
gray91[style="filled",fillcolor="gray91"];
|
240
|
+
gray92[style="filled",fillcolor="gray92"];
|
241
|
+
gray93[style="filled",fillcolor="gray93"];
|
242
|
+
gray94[style="filled",fillcolor="gray94"];
|
243
|
+
gray95[style="filled",fillcolor="gray95"];
|
244
|
+
gray96[style="filled",fillcolor="gray96"];
|
245
|
+
gray97[style="filled",fillcolor="gray97"];
|
246
|
+
gray98[style="filled",fillcolor="gray98"];
|
247
|
+
gray99[style="filled",fillcolor="gray99"];
|
248
|
+
gray100[style="filled",fillcolor="gray100"];
|
249
|
+
green[style="filled",fillcolor="green"];
|
250
|
+
green1[style="filled",fillcolor="green1"];
|
251
|
+
green2[style="filled",fillcolor="green2"];
|
252
|
+
green3[style="filled",fillcolor="green3"];
|
253
|
+
green4[style="filled",fillcolor="green4"];
|
254
|
+
greenyellow[style="filled",fillcolor="greenyellow"];
|
255
|
+
grey[style="filled",fillcolor="grey"];
|
256
|
+
grey0[style="filled",fillcolor="grey0"];
|
257
|
+
grey1[style="filled",fillcolor="grey1"];
|
258
|
+
grey2[style="filled",fillcolor="grey2"];
|
259
|
+
grey3[style="filled",fillcolor="grey3"];
|
260
|
+
grey4[style="filled",fillcolor="grey4"];
|
261
|
+
grey5[style="filled",fillcolor="grey5"];
|
262
|
+
grey6[style="filled",fillcolor="grey6"];
|
263
|
+
grey7[style="filled",fillcolor="grey7"];
|
264
|
+
grey8[style="filled",fillcolor="grey8"];
|
265
|
+
grey9[style="filled",fillcolor="grey9"];
|
266
|
+
grey10[style="filled",fillcolor="grey10"];
|
267
|
+
grey11[style="filled",fillcolor="grey11"];
|
268
|
+
grey12[style="filled",fillcolor="grey12"];
|
269
|
+
grey13[style="filled",fillcolor="grey13"];
|
270
|
+
grey14[style="filled",fillcolor="grey14"];
|
271
|
+
grey15[style="filled",fillcolor="grey15"];
|
272
|
+
grey16[style="filled",fillcolor="grey16"];
|
273
|
+
grey17[style="filled",fillcolor="grey17"];
|
274
|
+
grey18[style="filled",fillcolor="grey18"];
|
275
|
+
grey19[style="filled",fillcolor="grey19"];
|
276
|
+
grey20[style="filled",fillcolor="grey20"];
|
277
|
+
grey21[style="filled",fillcolor="grey21"];
|
278
|
+
grey22[style="filled",fillcolor="grey22"];
|
279
|
+
grey23[style="filled",fillcolor="grey23"];
|
280
|
+
grey24[style="filled",fillcolor="grey24"];
|
281
|
+
grey25[style="filled",fillcolor="grey25"];
|
282
|
+
grey26[style="filled",fillcolor="grey26"];
|
283
|
+
grey27[style="filled",fillcolor="grey27"];
|
284
|
+
grey28[style="filled",fillcolor="grey28"];
|
285
|
+
grey29[style="filled",fillcolor="grey29"];
|
286
|
+
grey30[style="filled",fillcolor="grey30"];
|
287
|
+
grey31[style="filled",fillcolor="grey31"];
|
288
|
+
grey32[style="filled",fillcolor="grey32"];
|
289
|
+
grey33[style="filled",fillcolor="grey33"];
|
290
|
+
grey34[style="filled",fillcolor="grey34"];
|
291
|
+
grey35[style="filled",fillcolor="grey35"];
|
292
|
+
grey36[style="filled",fillcolor="grey36"];
|
293
|
+
grey37[style="filled",fillcolor="grey37"];
|
294
|
+
grey38[style="filled",fillcolor="grey38"];
|
295
|
+
grey39[style="filled",fillcolor="grey39"];
|
296
|
+
grey40[style="filled",fillcolor="grey40"];
|
297
|
+
grey41[style="filled",fillcolor="grey41"];
|
298
|
+
grey42[style="filled",fillcolor="grey42"];
|
299
|
+
grey43[style="filled",fillcolor="grey43"];
|
300
|
+
grey44[style="filled",fillcolor="grey44"];
|
301
|
+
grey45[style="filled",fillcolor="grey45"];
|
302
|
+
grey46[style="filled",fillcolor="grey46"];
|
303
|
+
grey47[style="filled",fillcolor="grey47"];
|
304
|
+
grey48[style="filled",fillcolor="grey48"];
|
305
|
+
grey49[style="filled",fillcolor="grey49"];
|
306
|
+
grey50[style="filled",fillcolor="grey50"];
|
307
|
+
grey51[style="filled",fillcolor="grey51"];
|
308
|
+
grey52[style="filled",fillcolor="grey52"];
|
309
|
+
grey53[style="filled",fillcolor="grey53"];
|
310
|
+
grey54[style="filled",fillcolor="grey54"];
|
311
|
+
grey55[style="filled",fillcolor="grey55"];
|
312
|
+
grey56[style="filled",fillcolor="grey56"];
|
313
|
+
grey57[style="filled",fillcolor="grey57"];
|
314
|
+
grey58[style="filled",fillcolor="grey58"];
|
315
|
+
grey59[style="filled",fillcolor="grey59"];
|
316
|
+
grey60[style="filled",fillcolor="grey60"];
|
317
|
+
grey61[style="filled",fillcolor="grey61"];
|
318
|
+
grey62[style="filled",fillcolor="grey62"];
|
319
|
+
grey63[style="filled",fillcolor="grey63"];
|
320
|
+
grey64[style="filled",fillcolor="grey64"];
|
321
|
+
grey65[style="filled",fillcolor="grey65"];
|
322
|
+
grey66[style="filled",fillcolor="grey66"];
|
323
|
+
grey67[style="filled",fillcolor="grey67"];
|
324
|
+
grey68[style="filled",fillcolor="grey68"];
|
325
|
+
grey69[style="filled",fillcolor="grey69"];
|
326
|
+
grey70[style="filled",fillcolor="grey70"];
|
327
|
+
grey71[style="filled",fillcolor="grey71"];
|
328
|
+
grey72[style="filled",fillcolor="grey72"];
|
329
|
+
grey73[style="filled",fillcolor="grey73"];
|
330
|
+
grey74[style="filled",fillcolor="grey74"];
|
331
|
+
grey75[style="filled",fillcolor="grey75"];
|
332
|
+
grey76[style="filled",fillcolor="grey76"];
|
333
|
+
grey77[style="filled",fillcolor="grey77"];
|
334
|
+
grey78[style="filled",fillcolor="grey78"];
|
335
|
+
grey79[style="filled",fillcolor="grey79"];
|
336
|
+
grey80[style="filled",fillcolor="grey80"];
|
337
|
+
grey81[style="filled",fillcolor="grey81"];
|
338
|
+
grey82[style="filled",fillcolor="grey82"];
|
339
|
+
grey83[style="filled",fillcolor="grey83"];
|
340
|
+
grey84[style="filled",fillcolor="grey84"];
|
341
|
+
grey85[style="filled",fillcolor="grey85"];
|
342
|
+
grey86[style="filled",fillcolor="grey86"];
|
343
|
+
grey87[style="filled",fillcolor="grey87"];
|
344
|
+
grey88[style="filled",fillcolor="grey88"];
|
345
|
+
grey89[style="filled",fillcolor="grey89"];
|
346
|
+
grey90[style="filled",fillcolor="grey90"];
|
347
|
+
grey91[style="filled",fillcolor="grey91"];
|
348
|
+
grey92[style="filled",fillcolor="grey92"];
|
349
|
+
grey93[style="filled",fillcolor="grey93"];
|
350
|
+
grey94[style="filled",fillcolor="grey94"];
|
351
|
+
grey95[style="filled",fillcolor="grey95"];
|
352
|
+
grey96[style="filled",fillcolor="grey96"];
|
353
|
+
grey97[style="filled",fillcolor="grey97"];
|
354
|
+
grey98[style="filled",fillcolor="grey98"];
|
355
|
+
grey99[style="filled",fillcolor="grey99"];
|
356
|
+
grey100[style="filled",fillcolor="grey100"];
|
357
|
+
honeydew[style="filled",fillcolor="honeydew"];
|
358
|
+
honeydew1[style="filled",fillcolor="honeydew1"];
|
359
|
+
honeydew2[style="filled",fillcolor="honeydew2"];
|
360
|
+
honeydew3[style="filled",fillcolor="honeydew3"];
|
361
|
+
honeydew4[style="filled",fillcolor="honeydew4"];
|
362
|
+
hotpink[style="filled",fillcolor="hotpink"];
|
363
|
+
hotpink1[style="filled",fillcolor="hotpink1"];
|
364
|
+
hotpink2[style="filled",fillcolor="hotpink2"];
|
365
|
+
hotpink3[style="filled",fillcolor="hotpink3"];
|
366
|
+
hotpink4[style="filled",fillcolor="hotpink4"];
|
367
|
+
indianred[style="filled",fillcolor="indianred"];
|
368
|
+
indianred1[style="filled",fillcolor="indianred1"];
|
369
|
+
indianred2[style="filled",fillcolor="indianred2"];
|
370
|
+
indianred3[style="filled",fillcolor="indianred3"];
|
371
|
+
indianred4[style="filled",fillcolor="indianred4"];
|
372
|
+
indigo[style="filled",fillcolor="indigo"];
|
373
|
+
invis[style="filled",fillcolor="invis"];
|
374
|
+
ivory[style="filled",fillcolor="ivory"];
|
375
|
+
ivory1[style="filled",fillcolor="ivory1"];
|
376
|
+
ivory2[style="filled",fillcolor="ivory2"];
|
377
|
+
ivory3[style="filled",fillcolor="ivory3"];
|
378
|
+
ivory4[style="filled",fillcolor="ivory4"];
|
379
|
+
khaki[style="filled",fillcolor="khaki"];
|
380
|
+
khaki1[style="filled",fillcolor="khaki1"];
|
381
|
+
khaki2[style="filled",fillcolor="khaki2"];
|
382
|
+
khaki3[style="filled",fillcolor="khaki3"];
|
383
|
+
khaki4[style="filled",fillcolor="khaki4"];
|
384
|
+
lavender[style="filled",fillcolor="lavender"];
|
385
|
+
lavenderblush[style="filled",fillcolor="lavenderblush"];
|
386
|
+
lavenderblush1[style="filled",fillcolor="lavenderblush1"];
|
387
|
+
lavenderblush2[style="filled",fillcolor="lavenderblush2"];
|
388
|
+
lavenderblush3[style="filled",fillcolor="lavenderblush3"];
|
389
|
+
lavenderblush4[style="filled",fillcolor="lavenderblush4"];
|
390
|
+
lawngreen[style="filled",fillcolor="lawngreen"];
|
391
|
+
lemonchiffon[style="filled",fillcolor="lemonchiffon"];
|
392
|
+
lemonchiffon1[style="filled",fillcolor="lemonchiffon1"];
|
393
|
+
lemonchiffon2[style="filled",fillcolor="lemonchiffon2"];
|
394
|
+
lemonchiffon3[style="filled",fillcolor="lemonchiffon3"];
|
395
|
+
lemonchiffon4[style="filled",fillcolor="lemonchiffon4"];
|
396
|
+
lightblue[style="filled",fillcolor="lightblue"];
|
397
|
+
lightblue1[style="filled",fillcolor="lightblue1"];
|
398
|
+
lightblue2[style="filled",fillcolor="lightblue2"];
|
399
|
+
lightblue3[style="filled",fillcolor="lightblue3"];
|
400
|
+
lightblue4[style="filled",fillcolor="lightblue4"];
|
401
|
+
lightcoral[style="filled",fillcolor="lightcoral"];
|
402
|
+
lightcyan[style="filled",fillcolor="lightcyan"];
|
403
|
+
lightcyan1[style="filled",fillcolor="lightcyan1"];
|
404
|
+
lightcyan2[style="filled",fillcolor="lightcyan2"];
|
405
|
+
lightcyan3[style="filled",fillcolor="lightcyan3"];
|
406
|
+
lightcyan4[style="filled",fillcolor="lightcyan4"];
|
407
|
+
lightgoldenrod[style="filled",fillcolor="lightgoldenrod"];
|
408
|
+
lightgoldenrod1[style="filled",fillcolor="lightgoldenrod1"];
|
409
|
+
lightgoldenrod2[style="filled",fillcolor="lightgoldenrod2"];
|
410
|
+
lightgoldenrod3[style="filled",fillcolor="lightgoldenrod3"];
|
411
|
+
lightgoldenrod4[style="filled",fillcolor="lightgoldenrod4"];
|
412
|
+
lightgoldenrodyellow[style="filled",fillcolor="lightgoldenrodyellow"];
|
413
|
+
lightgray[style="filled",fillcolor="lightgray"];
|
414
|
+
lightgrey[style="filled",fillcolor="lightgrey"];
|
415
|
+
lightpink[style="filled",fillcolor="lightpink"];
|
416
|
+
lightpink1[style="filled",fillcolor="lightpink1"];
|
417
|
+
lightpink2[style="filled",fillcolor="lightpink2"];
|
418
|
+
lightpink3[style="filled",fillcolor="lightpink3"];
|
419
|
+
lightpink4[style="filled",fillcolor="lightpink4"];
|
420
|
+
lightsalmon[style="filled",fillcolor="lightsalmon"];
|
421
|
+
lightsalmon1[style="filled",fillcolor="lightsalmon1"];
|
422
|
+
lightsalmon2[style="filled",fillcolor="lightsalmon2"];
|
423
|
+
lightsalmon3[style="filled",fillcolor="lightsalmon3"];
|
424
|
+
lightsalmon4[style="filled",fillcolor="lightsalmon4"];
|
425
|
+
lightseagreen[style="filled",fillcolor="lightseagreen"];
|
426
|
+
lightskyblue[style="filled",fillcolor="lightskyblue"];
|
427
|
+
lightskyblue1[style="filled",fillcolor="lightskyblue1"];
|
428
|
+
lightskyblue2[style="filled",fillcolor="lightskyblue2"];
|
429
|
+
lightskyblue3[style="filled",fillcolor="lightskyblue3"];
|
430
|
+
lightskyblue4[style="filled",fillcolor="lightskyblue4"];
|
431
|
+
lightslateblue[style="filled",fillcolor="lightslateblue"];
|
432
|
+
lightslategray[style="filled",fillcolor="lightslategray"];
|
433
|
+
lightslategrey[style="filled",fillcolor="lightslategrey"];
|
434
|
+
lightsteelblue[style="filled",fillcolor="lightsteelblue"];
|
435
|
+
lightsteelblue1[style="filled",fillcolor="lightsteelblue1"];
|
436
|
+
lightsteelblue2[style="filled",fillcolor="lightsteelblue2"];
|
437
|
+
lightsteelblue3[style="filled",fillcolor="lightsteelblue3"];
|
438
|
+
lightsteelblue4[style="filled",fillcolor="lightsteelblue4"];
|
439
|
+
lightyellow[style="filled",fillcolor="lightyellow"];
|
440
|
+
lightyellow1[style="filled",fillcolor="lightyellow1"];
|
441
|
+
lightyellow2[style="filled",fillcolor="lightyellow2"];
|
442
|
+
lightyellow3[style="filled",fillcolor="lightyellow3"];
|
443
|
+
lightyellow4[style="filled",fillcolor="lightyellow4"];
|
444
|
+
limegreen[style="filled",fillcolor="limegreen"];
|
445
|
+
linen[style="filled",fillcolor="linen"];
|
446
|
+
magenta[style="filled",fillcolor="magenta"];
|
447
|
+
magenta1[style="filled",fillcolor="magenta1"];
|
448
|
+
magenta2[style="filled",fillcolor="magenta2"];
|
449
|
+
magenta3[style="filled",fillcolor="magenta3"];
|
450
|
+
magenta4[style="filled",fillcolor="magenta4"];
|
451
|
+
maroon[style="filled",fillcolor="maroon"];
|
452
|
+
maroon1[style="filled",fillcolor="maroon1"];
|
453
|
+
maroon2[style="filled",fillcolor="maroon2"];
|
454
|
+
maroon3[style="filled",fillcolor="maroon3"];
|
455
|
+
maroon4[style="filled",fillcolor="maroon4"];
|
456
|
+
mediumaquamarine[style="filled",fillcolor="mediumaquamarine"];
|
457
|
+
mediumblue[style="filled",fillcolor="mediumblue"];
|
458
|
+
mediumorchid[style="filled",fillcolor="mediumorchid"];
|
459
|
+
mediumorchid1[style="filled",fillcolor="mediumorchid1"];
|
460
|
+
mediumorchid2[style="filled",fillcolor="mediumorchid2"];
|
461
|
+
mediumorchid3[style="filled",fillcolor="mediumorchid3"];
|
462
|
+
mediumorchid4[style="filled",fillcolor="mediumorchid4"];
|
463
|
+
mediumpurple[style="filled",fillcolor="mediumpurple"];
|
464
|
+
mediumpurple1[style="filled",fillcolor="mediumpurple1"];
|
465
|
+
mediumpurple2[style="filled",fillcolor="mediumpurple2"];
|
466
|
+
mediumpurple3[style="filled",fillcolor="mediumpurple3"];
|
467
|
+
mediumpurple4[style="filled",fillcolor="mediumpurple4"];
|
468
|
+
mediumseagreen[style="filled",fillcolor="mediumseagreen"];
|
469
|
+
mediumslateblue[style="filled",fillcolor="mediumslateblue"];
|
470
|
+
mediumspringgreen[style="filled",fillcolor="mediumspringgreen"];
|
471
|
+
mediumturquoise[style="filled",fillcolor="mediumturquoise"];
|
472
|
+
mediumvioletred[style="filled",fillcolor="mediumvioletred"];
|
473
|
+
midnightblue[style="filled",fillcolor="midnightblue"];
|
474
|
+
mintcream[style="filled",fillcolor="mintcream"];
|
475
|
+
mistyrose[style="filled",fillcolor="mistyrose"];
|
476
|
+
mistyrose1[style="filled",fillcolor="mistyrose1"];
|
477
|
+
mistyrose2[style="filled",fillcolor="mistyrose2"];
|
478
|
+
mistyrose3[style="filled",fillcolor="mistyrose3"];
|
479
|
+
mistyrose4[style="filled",fillcolor="mistyrose4"];
|
480
|
+
moccasin[style="filled",fillcolor="moccasin"];
|
481
|
+
navajowhite[style="filled",fillcolor="navajowhite"];
|
482
|
+
navajowhite1[style="filled",fillcolor="navajowhite1"];
|
483
|
+
navajowhite2[style="filled",fillcolor="navajowhite2"];
|
484
|
+
navajowhite3[style="filled",fillcolor="navajowhite3"];
|
485
|
+
navajowhite4[style="filled",fillcolor="navajowhite4"];
|
486
|
+
navy[style="filled",fillcolor="navy"];
|
487
|
+
navyblue[style="filled",fillcolor="navyblue"];
|
488
|
+
none[style="filled",fillcolor="none"];
|
489
|
+
oldlace[style="filled",fillcolor="oldlace"];
|
490
|
+
olivedrab[style="filled",fillcolor="olivedrab"];
|
491
|
+
olivedrab1[style="filled",fillcolor="olivedrab1"];
|
492
|
+
olivedrab2[style="filled",fillcolor="olivedrab2"];
|
493
|
+
olivedrab3[style="filled",fillcolor="olivedrab3"];
|
494
|
+
olivedrab4[style="filled",fillcolor="olivedrab4"];
|
495
|
+
orange[style="filled",fillcolor="orange"];
|
496
|
+
orange1[style="filled",fillcolor="orange1"];
|
497
|
+
orange2[style="filled",fillcolor="orange2"];
|
498
|
+
orange3[style="filled",fillcolor="orange3"];
|
499
|
+
orange4[style="filled",fillcolor="orange4"];
|
500
|
+
orangered[style="filled",fillcolor="orangered"];
|
501
|
+
orangered1[style="filled",fillcolor="orangered1"];
|
502
|
+
orangered2[style="filled",fillcolor="orangered2"];
|
503
|
+
orangered3[style="filled",fillcolor="orangered3"];
|
504
|
+
orangered4[style="filled",fillcolor="orangered4"];
|
505
|
+
orchid[style="filled",fillcolor="orchid"];
|
506
|
+
orchid1[style="filled",fillcolor="orchid1"];
|
507
|
+
orchid2[style="filled",fillcolor="orchid2"];
|
508
|
+
orchid3[style="filled",fillcolor="orchid3"];
|
509
|
+
orchid4[style="filled",fillcolor="orchid4"];
|
510
|
+
palegoldenrod[style="filled",fillcolor="palegoldenrod"];
|
511
|
+
palegreen[style="filled",fillcolor="palegreen"];
|
512
|
+
palegreen1[style="filled",fillcolor="palegreen1"];
|
513
|
+
palegreen2[style="filled",fillcolor="palegreen2"];
|
514
|
+
palegreen3[style="filled",fillcolor="palegreen3"];
|
515
|
+
palegreen4[style="filled",fillcolor="palegreen4"];
|
516
|
+
paleturquoise[style="filled",fillcolor="paleturquoise"];
|
517
|
+
paleturquoise1[style="filled",fillcolor="paleturquoise1"];
|
518
|
+
paleturquoise2[style="filled",fillcolor="paleturquoise2"];
|
519
|
+
paleturquoise3[style="filled",fillcolor="paleturquoise3"];
|
520
|
+
paleturquoise4[style="filled",fillcolor="paleturquoise4"];
|
521
|
+
palevioletred[style="filled",fillcolor="palevioletred"];
|
522
|
+
palevioletred1[style="filled",fillcolor="palevioletred1"];
|
523
|
+
palevioletred2[style="filled",fillcolor="palevioletred2"];
|
524
|
+
palevioletred3[style="filled",fillcolor="palevioletred3"];
|
525
|
+
palevioletred4[style="filled",fillcolor="palevioletred4"];
|
526
|
+
papayawhip[style="filled",fillcolor="papayawhip"];
|
527
|
+
peachpuff[style="filled",fillcolor="peachpuff"];
|
528
|
+
peachpuff1[style="filled",fillcolor="peachpuff1"];
|
529
|
+
peachpuff2[style="filled",fillcolor="peachpuff2"];
|
530
|
+
peachpuff3[style="filled",fillcolor="peachpuff3"];
|
531
|
+
peachpuff4[style="filled",fillcolor="peachpuff4"];
|
532
|
+
peru[style="filled",fillcolor="peru"];
|
533
|
+
pink[style="filled",fillcolor="pink"];
|
534
|
+
pink1[style="filled",fillcolor="pink1"];
|
535
|
+
pink2[style="filled",fillcolor="pink2"];
|
536
|
+
pink3[style="filled",fillcolor="pink3"];
|
537
|
+
pink4[style="filled",fillcolor="pink4"];
|
538
|
+
plum[style="filled",fillcolor="plum"];
|
539
|
+
plum1[style="filled",fillcolor="plum1"];
|
540
|
+
plum2[style="filled",fillcolor="plum2"];
|
541
|
+
plum3[style="filled",fillcolor="plum3"];
|
542
|
+
plum4[style="filled",fillcolor="plum4"];
|
543
|
+
powderblue[style="filled",fillcolor="powderblue"];
|
544
|
+
purple[style="filled",fillcolor="purple"];
|
545
|
+
purple1[style="filled",fillcolor="purple1"];
|
546
|
+
purple2[style="filled",fillcolor="purple2"];
|
547
|
+
purple3[style="filled",fillcolor="purple3"];
|
548
|
+
purple4[style="filled",fillcolor="purple4"];
|
549
|
+
red[style="filled",fillcolor="red"];
|
550
|
+
red1[style="filled",fillcolor="red1"];
|
551
|
+
red2[style="filled",fillcolor="red2"];
|
552
|
+
red3[style="filled",fillcolor="red3"];
|
553
|
+
red4[style="filled",fillcolor="red4"];
|
554
|
+
rosybrown[style="filled",fillcolor="rosybrown"];
|
555
|
+
rosybrown1[style="filled",fillcolor="rosybrown1"];
|
556
|
+
rosybrown2[style="filled",fillcolor="rosybrown2"];
|
557
|
+
rosybrown3[style="filled",fillcolor="rosybrown3"];
|
558
|
+
rosybrown4[style="filled",fillcolor="rosybrown4"];
|
559
|
+
royalblue[style="filled",fillcolor="royalblue"];
|
560
|
+
royalblue1[style="filled",fillcolor="royalblue1"];
|
561
|
+
royalblue2[style="filled",fillcolor="royalblue2"];
|
562
|
+
royalblue3[style="filled",fillcolor="royalblue3"];
|
563
|
+
royalblue4[style="filled",fillcolor="royalblue4"];
|
564
|
+
saddlebrown[style="filled",fillcolor="saddlebrown"];
|
565
|
+
salmon[style="filled",fillcolor="salmon"];
|
566
|
+
salmon1[style="filled",fillcolor="salmon1"];
|
567
|
+
salmon2[style="filled",fillcolor="salmon2"];
|
568
|
+
salmon3[style="filled",fillcolor="salmon3"];
|
569
|
+
salmon4[style="filled",fillcolor="salmon4"];
|
570
|
+
sandybrown[style="filled",fillcolor="sandybrown"];
|
571
|
+
seagreen[style="filled",fillcolor="seagreen"];
|
572
|
+
seagreen1[style="filled",fillcolor="seagreen1"];
|
573
|
+
seagreen2[style="filled",fillcolor="seagreen2"];
|
574
|
+
seagreen3[style="filled",fillcolor="seagreen3"];
|
575
|
+
seagreen4[style="filled",fillcolor="seagreen4"];
|
576
|
+
seashell[style="filled",fillcolor="seashell"];
|
577
|
+
seashell1[style="filled",fillcolor="seashell1"];
|
578
|
+
seashell2[style="filled",fillcolor="seashell2"];
|
579
|
+
seashell3[style="filled",fillcolor="seashell3"];
|
580
|
+
seashell4[style="filled",fillcolor="seashell4"];
|
581
|
+
sienna[style="filled",fillcolor="sienna"];
|
582
|
+
sienna1[style="filled",fillcolor="sienna1"];
|
583
|
+
sienna2[style="filled",fillcolor="sienna2"];
|
584
|
+
sienna3[style="filled",fillcolor="sienna3"];
|
585
|
+
sienna4[style="filled",fillcolor="sienna4"];
|
586
|
+
skyblue[style="filled",fillcolor="skyblue"];
|
587
|
+
skyblue1[style="filled",fillcolor="skyblue1"];
|
588
|
+
skyblue2[style="filled",fillcolor="skyblue2"];
|
589
|
+
skyblue3[style="filled",fillcolor="skyblue3"];
|
590
|
+
skyblue4[style="filled",fillcolor="skyblue4"];
|
591
|
+
slateblue[style="filled",fillcolor="slateblue"];
|
592
|
+
slateblue1[style="filled",fillcolor="slateblue1"];
|
593
|
+
slateblue2[style="filled",fillcolor="slateblue2"];
|
594
|
+
slateblue3[style="filled",fillcolor="slateblue3"];
|
595
|
+
slateblue4[style="filled",fillcolor="slateblue4"];
|
596
|
+
slategray[style="filled",fillcolor="slategray"];
|
597
|
+
slategray1[style="filled",fillcolor="slategray1"];
|
598
|
+
slategray2[style="filled",fillcolor="slategray2"];
|
599
|
+
slategray3[style="filled",fillcolor="slategray3"];
|
600
|
+
slategray4[style="filled",fillcolor="slategray4"];
|
601
|
+
slategrey[style="filled",fillcolor="slategrey"];
|
602
|
+
snow[style="filled",fillcolor="snow"];
|
603
|
+
snow1[style="filled",fillcolor="snow1"];
|
604
|
+
snow2[style="filled",fillcolor="snow2"];
|
605
|
+
snow3[style="filled",fillcolor="snow3"];
|
606
|
+
snow4[style="filled",fillcolor="snow4"];
|
607
|
+
springgreen[style="filled",fillcolor="springgreen"];
|
608
|
+
springgreen1[style="filled",fillcolor="springgreen1"];
|
609
|
+
springgreen2[style="filled",fillcolor="springgreen2"];
|
610
|
+
springgreen3[style="filled",fillcolor="springgreen3"];
|
611
|
+
springgreen4[style="filled",fillcolor="springgreen4"];
|
612
|
+
steelblue[style="filled",fillcolor="steelblue"];
|
613
|
+
steelblue1[style="filled",fillcolor="steelblue1"];
|
614
|
+
steelblue2[style="filled",fillcolor="steelblue2"];
|
615
|
+
steelblue3[style="filled",fillcolor="steelblue3"];
|
616
|
+
steelblue4[style="filled",fillcolor="steelblue4"];
|
617
|
+
tan[style="filled",fillcolor="tan"];
|
618
|
+
tan1[style="filled",fillcolor="tan1"];
|
619
|
+
tan2[style="filled",fillcolor="tan2"];
|
620
|
+
tan3[style="filled",fillcolor="tan3"];
|
621
|
+
tan4[style="filled",fillcolor="tan4"];
|
622
|
+
thistle[style="filled",fillcolor="thistle"];
|
623
|
+
thistle1[style="filled",fillcolor="thistle1"];
|
624
|
+
thistle2[style="filled",fillcolor="thistle2"];
|
625
|
+
thistle3[style="filled",fillcolor="thistle3"];
|
626
|
+
thistle4[style="filled",fillcolor="thistle4"];
|
627
|
+
tomato[style="filled",fillcolor="tomato"];
|
628
|
+
tomato1[style="filled",fillcolor="tomato1"];
|
629
|
+
tomato2[style="filled",fillcolor="tomato2"];
|
630
|
+
tomato3[style="filled",fillcolor="tomato3"];
|
631
|
+
tomato4[style="filled",fillcolor="tomato4"];
|
632
|
+
transparent[style="filled",fillcolor="transparent"];
|
633
|
+
turquoise[style="filled",fillcolor="turquoise"];
|
634
|
+
turquoise1[style="filled",fillcolor="turquoise1"];
|
635
|
+
turquoise2[style="filled",fillcolor="turquoise2"];
|
636
|
+
turquoise3[style="filled",fillcolor="turquoise3"];
|
637
|
+
turquoise4[style="filled",fillcolor="turquoise4"];
|
638
|
+
violet[style="filled",fillcolor="violet"];
|
639
|
+
violetred[style="filled",fillcolor="violetred"];
|
640
|
+
violetred1[style="filled",fillcolor="violetred1"];
|
641
|
+
violetred2[style="filled",fillcolor="violetred2"];
|
642
|
+
violetred3[style="filled",fillcolor="violetred3"];
|
643
|
+
violetred4[style="filled",fillcolor="violetred4"];
|
644
|
+
wheat[style="filled",fillcolor="wheat"];
|
645
|
+
wheat1[style="filled",fillcolor="wheat1"];
|
646
|
+
wheat2[style="filled",fillcolor="wheat2"];
|
647
|
+
wheat3[style="filled",fillcolor="wheat3"];
|
648
|
+
wheat4[style="filled",fillcolor="wheat4"];
|
649
|
+
white[style="filled",fillcolor="white"];
|
650
|
+
whitesmoke[style="filled",fillcolor="whitesmoke"];
|
651
|
+
yellow[style="filled",fillcolor="yellow"];
|
652
|
+
yellow1[style="filled",fillcolor="yellow1"];
|
653
|
+
yellow2[style="filled",fillcolor="yellow2"];
|
654
|
+
yellow3[style="filled",fillcolor="yellow3"];
|
655
|
+
yellow4[style="filled",fillcolor="yellow4"];
|
656
|
+
yellowgreen[style="filled",fillcolor="yellowgreen"];
|
657
|
+
aliceblue -> antiquewhite;
|
658
|
+
antiquewhite -> antiquewhite1;
|
659
|
+
antiquewhite1 -> antiquewhite2;
|
660
|
+
antiquewhite2 -> antiquewhite3;
|
661
|
+
antiquewhite3 -> antiquewhite4;
|
662
|
+
antiquewhite4 -> aquamarine;
|
663
|
+
aquamarine -> aquamarine1;
|
664
|
+
aquamarine1 -> aquamarine2;
|
665
|
+
aquamarine2 -> aquamarine3;
|
666
|
+
aquamarine3 -> aquamarine4;
|
667
|
+
aquamarine4 -> azure;
|
668
|
+
azure -> azure1;
|
669
|
+
azure1 -> azure2;
|
670
|
+
azure2 -> azure3;
|
671
|
+
azure3 -> azure4;
|
672
|
+
azure4 -> beige;
|
673
|
+
beige -> bisque;
|
674
|
+
bisque -> bisque1;
|
675
|
+
bisque1 -> bisque2;
|
676
|
+
bisque2 -> bisque3;
|
677
|
+
bisque3 -> bisque4;
|
678
|
+
bisque4 -> black;
|
679
|
+
black -> blanchedalmond;
|
680
|
+
blanchedalmond -> blue;
|
681
|
+
blue -> blue1;
|
682
|
+
blue1 -> blue2;
|
683
|
+
blue2 -> blue3;
|
684
|
+
blue3 -> blue4;
|
685
|
+
blue4 -> blueviolet;
|
686
|
+
blueviolet -> brown;
|
687
|
+
brown -> brown1;
|
688
|
+
brown1 -> brown2;
|
689
|
+
brown2 -> brown3;
|
690
|
+
brown3 -> brown4;
|
691
|
+
brown4 -> burlywood;
|
692
|
+
burlywood -> burlywood1;
|
693
|
+
burlywood1 -> burlywood2;
|
694
|
+
burlywood2 -> burlywood3;
|
695
|
+
burlywood3 -> burlywood4;
|
696
|
+
burlywood4 -> cadetblue;
|
697
|
+
cadetblue -> cadetblue1;
|
698
|
+
cadetblue1 -> cadetblue2;
|
699
|
+
cadetblue2 -> cadetblue3;
|
700
|
+
cadetblue3 -> cadetblue4;
|
701
|
+
cadetblue4 -> chartreuse;
|
702
|
+
chartreuse -> chartreuse1;
|
703
|
+
chartreuse1 -> chartreuse2;
|
704
|
+
chartreuse2 -> chartreuse3;
|
705
|
+
chartreuse3 -> chartreuse4;
|
706
|
+
chartreuse4 -> chocolate;
|
707
|
+
chocolate -> chocolate1;
|
708
|
+
chocolate1 -> chocolate2;
|
709
|
+
chocolate2 -> chocolate3;
|
710
|
+
chocolate3 -> chocolate4;
|
711
|
+
chocolate4 -> coral;
|
712
|
+
coral -> coral1;
|
713
|
+
coral1 -> coral2;
|
714
|
+
coral2 -> coral3;
|
715
|
+
coral3 -> coral4;
|
716
|
+
coral4 -> cornflowerblue;
|
717
|
+
cornflowerblue -> cornsilk;
|
718
|
+
cornsilk -> cornsilk1;
|
719
|
+
cornsilk1 -> cornsilk2;
|
720
|
+
cornsilk2 -> cornsilk3;
|
721
|
+
cornsilk3 -> cornsilk4;
|
722
|
+
cornsilk4 -> crimson;
|
723
|
+
crimson -> cyan;
|
724
|
+
cyan -> cyan1;
|
725
|
+
cyan1 -> cyan2;
|
726
|
+
cyan3 -> cyan4;
|
727
|
+
cyan4 -> darkgoldenrod;
|
728
|
+
darkgoldenrod -> darkgoldenrod1;
|
729
|
+
darkgoldenrod1 -> darkgoldenrod2;
|
730
|
+
darkgoldenrod2 -> darkgoldenrod3;
|
731
|
+
darkgoldenrod3 -> darkgoldenrod4;
|
732
|
+
darkgoldenrod4 -> darkgreen;
|
733
|
+
darkgreen -> darkkhaki;
|
734
|
+
darkkhaki -> darkolivegreen;
|
735
|
+
darkolivegreen -> darkolivegreen1;
|
736
|
+
darkolivegreen1 -> darkolivegreen2;
|
737
|
+
darkolivegreen2 -> darkolivegreen3;
|
738
|
+
darkolivegreen3 -> darkolivegreen4;
|
739
|
+
darkolivegreen4 -> darkorange;
|
740
|
+
darkorange -> darkorange1;
|
741
|
+
darkorange1 -> darkorange2;
|
742
|
+
darkorange2 -> darkorange3;
|
743
|
+
darkorange3 -> darkorange4;
|
744
|
+
darkorange4 -> darkorchid;
|
745
|
+
darkorchid -> darkorchid1;
|
746
|
+
darkorchid1 -> darkorchid2;
|
747
|
+
darkorchid2 -> darkorchid3;
|
748
|
+
darkorchid3 -> darkorchid4;
|
749
|
+
darkorchid4 -> darksalmon;
|
750
|
+
darksalmon -> darkseagreen;
|
751
|
+
darkseagreen -> darkseagreen1;
|
752
|
+
darkseagreen1 -> darkseagreen2;
|
753
|
+
darkseagreen2 -> darkseagreen3;
|
754
|
+
darkseagreen3 -> darkseagreen4;
|
755
|
+
darkseagreen4 -> darkslateblue;
|
756
|
+
darkslateblue -> darkslategray;
|
757
|
+
darkslategray -> darkslategray1;
|
758
|
+
darkslategray1 -> darkslategray2;
|
759
|
+
darkslategray2 -> darkslategray3;
|
760
|
+
darkslategray3 -> darkslategray4;
|
761
|
+
darkslategray4 -> darkslategrey;
|
762
|
+
darkslategrey -> darkturquoise;
|
763
|
+
darkturquoise -> darkviolet;
|
764
|
+
darkviolet -> deeppink;
|
765
|
+
deeppink -> deeppink1;
|
766
|
+
deeppink1 -> deeppink2;
|
767
|
+
deeppink2 -> deeppink3;
|
768
|
+
deeppink3 -> deeppink4;
|
769
|
+
deeppink4 -> deepskyblue;
|
770
|
+
deepskyblue -> deepskyblue1;
|
771
|
+
deepskyblue1 -> deepskyblue2;
|
772
|
+
deepskyblue2 -> deepskyblue3;
|
773
|
+
deepskyblue3 -> deepskyblue4;
|
774
|
+
deepskyblue4 -> dimgray;
|
775
|
+
dimgray -> dimgrey;
|
776
|
+
dimgrey -> dodgerblue;
|
777
|
+
dodgerblue -> dodgerblue1;
|
778
|
+
dodgerblue1 -> dodgerblue2;
|
779
|
+
dodgerblue2 -> dodgerblue3;
|
780
|
+
dodgerblue3 -> dodgerblue4;
|
781
|
+
dodgerblue4 -> firebrick;
|
782
|
+
firebrick -> firebrick1;
|
783
|
+
firebrick1 -> firebrick2;
|
784
|
+
firebrick2 -> firebrick3;
|
785
|
+
firebrick3 -> firebrick4;
|
786
|
+
firebrick4 -> floralwhite;
|
787
|
+
floralwhite -> forestgreen;
|
788
|
+
forestgreen -> gainsboro;
|
789
|
+
gainsboro -> ghostwhite;
|
790
|
+
ghostwhite -> gold;
|
791
|
+
gold -> gold1;
|
792
|
+
gold1 -> gold2;
|
793
|
+
gold2 -> gold3;
|
794
|
+
gold3 -> gold4;
|
795
|
+
goldenrod -> goldenrod1;
|
796
|
+
goldenrod1 -> goldenrod2;
|
797
|
+
goldenrod2 -> goldenrod3;
|
798
|
+
goldenrod3 -> goldenrod4;
|
799
|
+
goldenrod4 -> gray;
|
800
|
+
gray -> gray0;
|
801
|
+
gray0 -> gray1;
|
802
|
+
gray1 -> gray2;
|
803
|
+
gray2 -> gray3;
|
804
|
+
gray3 -> gray4;
|
805
|
+
gray4 -> gray5;
|
806
|
+
gray5 -> gray6;
|
807
|
+
gray6 -> gray7;
|
808
|
+
gray7 -> gray8;
|
809
|
+
gray8 -> gray9;
|
810
|
+
gray9 -> gray10;
|
811
|
+
gray10 -> gray11;
|
812
|
+
gray11 -> gray12;
|
813
|
+
gray12 -> gray13;
|
814
|
+
gray13 -> gray14;
|
815
|
+
gray14 -> gray15;
|
816
|
+
gray15 -> gray16;
|
817
|
+
gray16 -> gray17;
|
818
|
+
gray17 -> gray18;
|
819
|
+
gray18 -> gray19;
|
820
|
+
gray19 -> gray20;
|
821
|
+
gray20 -> gray21;
|
822
|
+
gray21 -> gray22;
|
823
|
+
gray22 -> gray23;
|
824
|
+
gray23 -> gray24;
|
825
|
+
gray24 -> gray25;
|
826
|
+
gray25 -> gray26;
|
827
|
+
gray26 -> gray27;
|
828
|
+
gray27 -> gray28;
|
829
|
+
gray28 -> gray29;
|
830
|
+
gray29 -> gray30;
|
831
|
+
gray30 -> gray31;
|
832
|
+
gray31 -> gray32;
|
833
|
+
gray32 -> gray33;
|
834
|
+
gray33 -> gray34;
|
835
|
+
gray34 -> gray35;
|
836
|
+
gray35 -> gray36;
|
837
|
+
gray36 -> gray37;
|
838
|
+
gray37 -> gray38;
|
839
|
+
gray38 -> gray39;
|
840
|
+
gray39 -> gray40;
|
841
|
+
gray40 -> gray41;
|
842
|
+
gray41 -> gray42;
|
843
|
+
gray42 -> gray43;
|
844
|
+
gray43 -> gray44;
|
845
|
+
gray44 -> gray45;
|
846
|
+
gray45 -> gray46;
|
847
|
+
gray46 -> gray47;
|
848
|
+
gray47 -> gray48;
|
849
|
+
gray48 -> gray49;
|
850
|
+
gray49 -> gray50;
|
851
|
+
gray50 -> gray51;
|
852
|
+
gray51 -> gray52;
|
853
|
+
gray52 -> gray53;
|
854
|
+
gray53 -> gray54;
|
855
|
+
gray54 -> gray55;
|
856
|
+
gray55 -> gray56;
|
857
|
+
gray56 -> gray57;
|
858
|
+
gray57 -> gray58;
|
859
|
+
gray58 -> gray59;
|
860
|
+
gray59 -> gray60;
|
861
|
+
gray60 -> gray61;
|
862
|
+
gray61 -> gray62;
|
863
|
+
gray62 -> gray63;
|
864
|
+
gray64 -> gray65;
|
865
|
+
gray65 -> gray66;
|
866
|
+
gray66 -> gray67;
|
867
|
+
gray67 -> gray68;
|
868
|
+
gray68 -> gray69;
|
869
|
+
gray69 -> gray70;
|
870
|
+
gray70 -> gray71;
|
871
|
+
gray71 -> gray72;
|
872
|
+
gray72 -> gray73;
|
873
|
+
gray73 -> gray74;
|
874
|
+
gray74 -> gray75;
|
875
|
+
gray75 -> gray76;
|
876
|
+
gray76 -> gray77;
|
877
|
+
gray77 -> gray78;
|
878
|
+
gray78 -> gray79;
|
879
|
+
gray79 -> gray80;
|
880
|
+
gray80 -> gray81;
|
881
|
+
gray81 -> gray82;
|
882
|
+
gray82 -> gray83;
|
883
|
+
gray83 -> gray84;
|
884
|
+
gray84 -> gray85;
|
885
|
+
gray85 -> gray86;
|
886
|
+
gray86 -> gray87;
|
887
|
+
gray87 -> gray88;
|
888
|
+
gray88 -> gray89;
|
889
|
+
gray89 -> gray90;
|
890
|
+
gray90 -> gray91;
|
891
|
+
gray91 -> gray92;
|
892
|
+
gray92 -> gray93;
|
893
|
+
gray93 -> gray94;
|
894
|
+
gray94 -> gray95;
|
895
|
+
gray95 -> gray96;
|
896
|
+
gray96 -> gray97;
|
897
|
+
gray97 -> gray98;
|
898
|
+
gray98 -> gray99;
|
899
|
+
gray99 -> gray100;
|
900
|
+
gray100 -> green;
|
901
|
+
green -> green1;
|
902
|
+
green1 -> green2;
|
903
|
+
green2 -> green3;
|
904
|
+
green3 -> green4;
|
905
|
+
green4 -> greenyellow;
|
906
|
+
greenyellow -> grey;
|
907
|
+
grey -> grey0;
|
908
|
+
grey0 -> grey1;
|
909
|
+
grey1 -> grey2;
|
910
|
+
grey2 -> grey3;
|
911
|
+
grey3 -> grey4;
|
912
|
+
grey4 -> grey5;
|
913
|
+
grey5 -> grey6;
|
914
|
+
grey6 -> grey7;
|
915
|
+
grey7 -> grey8;
|
916
|
+
grey8 -> grey9;
|
917
|
+
grey9 -> grey10;
|
918
|
+
grey10 -> grey11;
|
919
|
+
grey11 -> grey12;
|
920
|
+
grey12 -> grey13;
|
921
|
+
grey13 -> grey14;
|
922
|
+
grey14 -> grey15;
|
923
|
+
grey15 -> grey16;
|
924
|
+
grey16 -> grey17;
|
925
|
+
grey17 -> grey18;
|
926
|
+
grey18 -> grey19;
|
927
|
+
grey19 -> grey20;
|
928
|
+
grey20 -> grey21;
|
929
|
+
grey21 -> grey22;
|
930
|
+
grey22 -> grey23;
|
931
|
+
grey23 -> grey24;
|
932
|
+
grey24 -> grey25;
|
933
|
+
grey26 -> grey27;
|
934
|
+
grey27 -> grey28;
|
935
|
+
grey28 -> grey29;
|
936
|
+
grey29 -> grey30;
|
937
|
+
grey30 -> grey31;
|
938
|
+
grey31 -> grey32;
|
939
|
+
grey32 -> grey33;
|
940
|
+
grey33 -> grey34;
|
941
|
+
grey34 -> grey35;
|
942
|
+
grey35 -> grey36;
|
943
|
+
grey36 -> grey37;
|
944
|
+
grey37 -> grey38;
|
945
|
+
grey38 -> grey39;
|
946
|
+
grey39 -> grey40;
|
947
|
+
grey40 -> grey41;
|
948
|
+
grey41 -> grey42;
|
949
|
+
grey42 -> grey43;
|
950
|
+
grey43 -> grey44;
|
951
|
+
grey44 -> grey45;
|
952
|
+
grey45 -> grey46;
|
953
|
+
grey46 -> grey47;
|
954
|
+
grey47 -> grey48;
|
955
|
+
grey48 -> grey49;
|
956
|
+
grey49 -> grey50;
|
957
|
+
grey50 -> grey51;
|
958
|
+
grey51 -> grey52;
|
959
|
+
grey52 -> grey53;
|
960
|
+
grey53 -> grey54;
|
961
|
+
grey54 -> grey55;
|
962
|
+
grey55 -> grey56;
|
963
|
+
grey56 -> grey57;
|
964
|
+
grey57 -> grey58;
|
965
|
+
grey58 -> grey59;
|
966
|
+
grey59 -> grey60;
|
967
|
+
grey60 -> grey61;
|
968
|
+
grey61 -> grey62;
|
969
|
+
grey62 -> grey63;
|
970
|
+
grey63 -> grey64;
|
971
|
+
grey64 -> grey65;
|
972
|
+
grey65 -> grey66;
|
973
|
+
grey66 -> grey67;
|
974
|
+
grey67 -> grey68;
|
975
|
+
grey68 -> grey69;
|
976
|
+
grey69 -> grey70;
|
977
|
+
grey70 -> grey71;
|
978
|
+
grey71 -> grey72;
|
979
|
+
grey72 -> grey73;
|
980
|
+
grey73 -> grey74;
|
981
|
+
grey74 -> grey75;
|
982
|
+
grey75 -> grey76;
|
983
|
+
grey76 -> grey77;
|
984
|
+
grey77 -> grey78;
|
985
|
+
grey78 -> grey79;
|
986
|
+
grey79 -> grey80;
|
987
|
+
grey80 -> grey81;
|
988
|
+
grey81 -> grey82;
|
989
|
+
grey82 -> grey83;
|
990
|
+
grey83 -> grey84;
|
991
|
+
grey84 -> grey85;
|
992
|
+
grey85 -> grey86;
|
993
|
+
grey86 -> grey87;
|
994
|
+
grey87 -> grey88;
|
995
|
+
grey88 -> grey89;
|
996
|
+
grey89 -> grey90;
|
997
|
+
grey90 -> grey91;
|
998
|
+
grey91 -> grey92;
|
999
|
+
grey92 -> grey93;
|
1000
|
+
grey93 -> grey94;
|
1001
|
+
grey94 -> grey95;
|
1002
|
+
grey96 -> grey97;
|
1003
|
+
grey97 -> grey98;
|
1004
|
+
grey98 -> grey99;
|
1005
|
+
grey99 -> grey100;
|
1006
|
+
grey100 -> honeydew;
|
1007
|
+
honeydew -> honeydew1;
|
1008
|
+
honeydew1 -> honeydew2;
|
1009
|
+
honeydew2 -> honeydew3;
|
1010
|
+
honeydew3 -> honeydew4;
|
1011
|
+
honeydew4 -> hotpink;
|
1012
|
+
hotpink -> hotpink1;
|
1013
|
+
hotpink1 -> hotpink2;
|
1014
|
+
hotpink2 -> hotpink3;
|
1015
|
+
hotpink3 -> hotpink4;
|
1016
|
+
hotpink4 -> indianred;
|
1017
|
+
indianred -> indianred1;
|
1018
|
+
indianred1 -> indianred2;
|
1019
|
+
indianred2 -> indianred3;
|
1020
|
+
indianred3 -> indianred4;
|
1021
|
+
indianred4 -> indigo;
|
1022
|
+
indigo -> invis;
|
1023
|
+
invis -> ivory;
|
1024
|
+
ivory -> ivory1;
|
1025
|
+
ivory1 -> ivory2;
|
1026
|
+
ivory2 -> ivory3;
|
1027
|
+
ivory3 -> ivory4;
|
1028
|
+
ivory4 -> khaki;
|
1029
|
+
khaki -> khaki1;
|
1030
|
+
khaki1 -> khaki2;
|
1031
|
+
khaki2 -> khaki3;
|
1032
|
+
khaki3 -> khaki4;
|
1033
|
+
khaki4 -> lavender;
|
1034
|
+
lavender -> lavenderblush;
|
1035
|
+
lavenderblush -> lavenderblush1;
|
1036
|
+
lavenderblush1 -> lavenderblush2;
|
1037
|
+
lavenderblush2 -> lavenderblush3;
|
1038
|
+
lavenderblush3 -> lavenderblush4;
|
1039
|
+
lavenderblush4 -> lawngreen;
|
1040
|
+
lawngreen -> lemonchiffon;
|
1041
|
+
lemonchiffon -> lemonchiffon1;
|
1042
|
+
lemonchiffon1 -> lemonchiffon2;
|
1043
|
+
lemonchiffon2 -> lemonchiffon3;
|
1044
|
+
lemonchiffon3 -> lemonchiffon4;
|
1045
|
+
lemonchiffon4 -> lightblue;
|
1046
|
+
lightblue -> lightblue1;
|
1047
|
+
lightblue1 -> lightblue2;
|
1048
|
+
lightblue2 -> lightblue3;
|
1049
|
+
lightblue3 -> lightblue4;
|
1050
|
+
lightblue4 -> lightcoral;
|
1051
|
+
lightcoral -> lightcyan;
|
1052
|
+
lightcyan -> lightcyan1;
|
1053
|
+
lightcyan1 -> lightcyan2;
|
1054
|
+
lightcyan2 -> lightcyan3;
|
1055
|
+
lightcyan3 -> lightcyan4;
|
1056
|
+
lightcyan4 -> lightgoldenrod;
|
1057
|
+
lightgoldenrod -> lightgoldenrod1;
|
1058
|
+
lightgoldenrod1 -> lightgoldenrod2;
|
1059
|
+
lightgoldenrod2 -> lightgoldenrod3;
|
1060
|
+
lightgoldenrod3 -> lightgoldenrod4;
|
1061
|
+
lightgoldenrod4 -> lightgoldenrodyellow;
|
1062
|
+
lightgoldenrodyellow -> lightgray;
|
1063
|
+
lightgray -> lightgrey;
|
1064
|
+
lightgrey -> lightpink;
|
1065
|
+
lightpink -> lightpink1;
|
1066
|
+
lightpink1 -> lightpink2;
|
1067
|
+
lightpink2 -> lightpink3;
|
1068
|
+
lightpink3 -> lightpink4;
|
1069
|
+
lightpink4 -> lightsalmon;
|
1070
|
+
lightsalmon -> lightsalmon1;
|
1071
|
+
lightsalmon2 -> lightsalmon3;
|
1072
|
+
lightsalmon3 -> lightsalmon4;
|
1073
|
+
lightsalmon4 -> lightseagreen;
|
1074
|
+
lightseagreen -> lightskyblue;
|
1075
|
+
lightskyblue -> lightskyblue1;
|
1076
|
+
lightskyblue1 -> lightskyblue2;
|
1077
|
+
lightskyblue2 -> lightskyblue3;
|
1078
|
+
lightskyblue3 -> lightskyblue4;
|
1079
|
+
lightskyblue4 -> lightslateblue;
|
1080
|
+
lightslateblue -> lightslategray;
|
1081
|
+
lightslategray -> lightslategrey;
|
1082
|
+
lightslategrey -> lightsteelblue;
|
1083
|
+
lightsteelblue -> lightsteelblue1;
|
1084
|
+
lightsteelblue1 -> lightsteelblue2;
|
1085
|
+
lightsteelblue2 -> lightsteelblue3;
|
1086
|
+
lightsteelblue3 -> lightsteelblue4;
|
1087
|
+
lightsteelblue4 -> lightyellow;
|
1088
|
+
lightyellow -> lightyellow1;
|
1089
|
+
lightyellow1 -> lightyellow2;
|
1090
|
+
lightyellow2 -> lightyellow3;
|
1091
|
+
lightyellow3 -> lightyellow4;
|
1092
|
+
lightyellow4 -> limegreen;
|
1093
|
+
limegreen -> linen;
|
1094
|
+
linen -> magenta;
|
1095
|
+
magenta -> magenta1;
|
1096
|
+
magenta1 -> magenta2;
|
1097
|
+
magenta2 -> magenta3;
|
1098
|
+
magenta3 -> magenta4;
|
1099
|
+
magenta4 -> maroon;
|
1100
|
+
maroon -> maroon1;
|
1101
|
+
maroon1 -> maroon2;
|
1102
|
+
maroon2 -> maroon3;
|
1103
|
+
maroon3 -> maroon4;
|
1104
|
+
maroon4 -> mediumaquamarine;
|
1105
|
+
mediumaquamarine -> mediumblue;
|
1106
|
+
mediumblue -> mediumorchid;
|
1107
|
+
mediumorchid -> mediumorchid1;
|
1108
|
+
mediumorchid1 -> mediumorchid2;
|
1109
|
+
mediumorchid2 -> mediumorchid3;
|
1110
|
+
mediumorchid3 -> mediumorchid4;
|
1111
|
+
mediumorchid4 -> mediumpurple;
|
1112
|
+
mediumpurple -> mediumpurple1;
|
1113
|
+
mediumpurple1 -> mediumpurple2;
|
1114
|
+
mediumpurple2 -> mediumpurple3;
|
1115
|
+
mediumpurple3 -> mediumpurple4;
|
1116
|
+
mediumpurple4 -> mediumseagreen;
|
1117
|
+
mediumseagreen -> mediumslateblue;
|
1118
|
+
mediumslateblue -> mediumspringgreen;
|
1119
|
+
mediumspringgreen -> mediumturquoise;
|
1120
|
+
mediumturquoise -> mediumvioletred;
|
1121
|
+
mediumvioletred -> midnightblue;
|
1122
|
+
midnightblue -> mintcream;
|
1123
|
+
mintcream -> mistyrose;
|
1124
|
+
mistyrose -> mistyrose1;
|
1125
|
+
mistyrose1 -> mistyrose2;
|
1126
|
+
mistyrose2 -> mistyrose3;
|
1127
|
+
mistyrose3 -> mistyrose4;
|
1128
|
+
mistyrose4 -> moccasin;
|
1129
|
+
moccasin -> navajowhite;
|
1130
|
+
navajowhite -> navajowhite1;
|
1131
|
+
navajowhite1 -> navajowhite2;
|
1132
|
+
navajowhite2 -> navajowhite3;
|
1133
|
+
navajowhite3 -> navajowhite4;
|
1134
|
+
navajowhite4 -> navy;
|
1135
|
+
navy -> navyblue;
|
1136
|
+
navyblue -> none;
|
1137
|
+
none -> oldlace;
|
1138
|
+
oldlace -> olivedrab;
|
1139
|
+
olivedrab -> olivedrab1;
|
1140
|
+
olivedrab2 -> olivedrab3;
|
1141
|
+
olivedrab3 -> olivedrab4;
|
1142
|
+
olivedrab4 -> orange;
|
1143
|
+
orange -> orange1;
|
1144
|
+
orange1 -> orange2;
|
1145
|
+
orange2 -> orange3;
|
1146
|
+
orange3 -> orange4;
|
1147
|
+
orange4 -> orangered;
|
1148
|
+
orangered -> orangered1;
|
1149
|
+
orangered1 -> orangered2;
|
1150
|
+
orangered2 -> orangered3;
|
1151
|
+
orangered3 -> orangered4;
|
1152
|
+
orangered4 -> orchid;
|
1153
|
+
orchid -> orchid1;
|
1154
|
+
orchid1 -> orchid2;
|
1155
|
+
orchid2 -> orchid3;
|
1156
|
+
orchid3 -> orchid4;
|
1157
|
+
orchid4 -> palegoldenrod;
|
1158
|
+
palegoldenrod -> palegreen;
|
1159
|
+
palegreen -> palegreen1;
|
1160
|
+
palegreen1 -> palegreen2;
|
1161
|
+
palegreen2 -> palegreen3;
|
1162
|
+
palegreen3 -> palegreen4;
|
1163
|
+
palegreen4 -> paleturquoise;
|
1164
|
+
paleturquoise -> paleturquoise1;
|
1165
|
+
paleturquoise1 -> paleturquoise2;
|
1166
|
+
paleturquoise2 -> paleturquoise3;
|
1167
|
+
paleturquoise3 -> paleturquoise4;
|
1168
|
+
paleturquoise4 -> palevioletred;
|
1169
|
+
palevioletred -> palevioletred1;
|
1170
|
+
palevioletred1 -> palevioletred2;
|
1171
|
+
palevioletred2 -> palevioletred3;
|
1172
|
+
palevioletred3 -> palevioletred4;
|
1173
|
+
palevioletred4 -> papayawhip;
|
1174
|
+
papayawhip -> peachpuff;
|
1175
|
+
peachpuff -> peachpuff1;
|
1176
|
+
peachpuff1 -> peachpuff2;
|
1177
|
+
peachpuff2 -> peachpuff3;
|
1178
|
+
peachpuff3 -> peachpuff4;
|
1179
|
+
peachpuff4 -> peru;
|
1180
|
+
peru -> pink;
|
1181
|
+
pink -> pink1;
|
1182
|
+
pink1 -> pink2;
|
1183
|
+
pink2 -> pink3;
|
1184
|
+
pink3 -> pink4;
|
1185
|
+
pink4 -> plum;
|
1186
|
+
plum -> plum1;
|
1187
|
+
plum1 -> plum2;
|
1188
|
+
plum2 -> plum3;
|
1189
|
+
plum3 -> plum4;
|
1190
|
+
plum4 -> powderblue;
|
1191
|
+
powderblue -> purple;
|
1192
|
+
purple -> purple1;
|
1193
|
+
purple1 -> purple2;
|
1194
|
+
purple2 -> purple3;
|
1195
|
+
purple3 -> purple4;
|
1196
|
+
purple4 -> red;
|
1197
|
+
red -> red1;
|
1198
|
+
red1 -> red2;
|
1199
|
+
red2 -> red3;
|
1200
|
+
red3 -> red4;
|
1201
|
+
red4 -> rosybrown;
|
1202
|
+
rosybrown -> rosybrown1;
|
1203
|
+
rosybrown1 -> rosybrown2;
|
1204
|
+
rosybrown2 -> rosybrown3;
|
1205
|
+
rosybrown3 -> rosybrown4;
|
1206
|
+
rosybrown4 -> royalblue;
|
1207
|
+
royalblue -> royalblue1;
|
1208
|
+
royalblue1 -> royalblue2;
|
1209
|
+
royalblue3 -> royalblue4;
|
1210
|
+
royalblue4 -> saddlebrown;
|
1211
|
+
saddlebrown -> salmon;
|
1212
|
+
salmon -> salmon1;
|
1213
|
+
salmon1 -> salmon2;
|
1214
|
+
salmon2 -> salmon3;
|
1215
|
+
salmon3 -> salmon4;
|
1216
|
+
salmon4 -> sandybrown;
|
1217
|
+
sandybrown -> seagreen;
|
1218
|
+
seagreen -> seagreen1;
|
1219
|
+
seagreen1 -> seagreen2;
|
1220
|
+
seagreen2 -> seagreen3;
|
1221
|
+
seagreen3 -> seagreen4;
|
1222
|
+
seagreen4 -> seashell;
|
1223
|
+
seashell -> seashell1;
|
1224
|
+
seashell1 -> seashell2;
|
1225
|
+
seashell2 -> seashell3;
|
1226
|
+
seashell3 -> seashell4;
|
1227
|
+
seashell4 -> sienna;
|
1228
|
+
sienna -> sienna1;
|
1229
|
+
sienna1 -> sienna2;
|
1230
|
+
sienna2 -> sienna3;
|
1231
|
+
sienna3 -> sienna4;
|
1232
|
+
sienna4 -> skyblue;
|
1233
|
+
skyblue -> skyblue1;
|
1234
|
+
skyblue1 -> skyblue2;
|
1235
|
+
skyblue2 -> skyblue3;
|
1236
|
+
skyblue3 -> skyblue4;
|
1237
|
+
skyblue4 -> slateblue;
|
1238
|
+
slateblue -> slateblue1;
|
1239
|
+
slateblue1 -> slateblue2;
|
1240
|
+
slateblue2 -> slateblue3;
|
1241
|
+
slateblue3 -> slateblue4;
|
1242
|
+
slateblue4 -> slategray;
|
1243
|
+
slategray -> slategray1;
|
1244
|
+
slategray1 -> slategray2;
|
1245
|
+
slategray2 -> slategray3;
|
1246
|
+
slategray3 -> slategray4;
|
1247
|
+
slategray4 -> slategrey;
|
1248
|
+
slategrey -> snow;
|
1249
|
+
snow -> snow1;
|
1250
|
+
snow1 -> snow2;
|
1251
|
+
snow2 -> snow3;
|
1252
|
+
snow3 -> snow4;
|
1253
|
+
snow4 -> springgreen;
|
1254
|
+
springgreen -> springgreen1;
|
1255
|
+
springgreen1 -> springgreen2;
|
1256
|
+
springgreen2 -> springgreen3;
|
1257
|
+
springgreen3 -> springgreen4;
|
1258
|
+
springgreen4 -> steelblue;
|
1259
|
+
steelblue -> steelblue1;
|
1260
|
+
steelblue1 -> steelblue2;
|
1261
|
+
steelblue2 -> steelblue3;
|
1262
|
+
steelblue3 -> steelblue4;
|
1263
|
+
steelblue4 -> tan;
|
1264
|
+
tan -> tan1;
|
1265
|
+
tan1 -> tan2;
|
1266
|
+
tan2 -> tan3;
|
1267
|
+
tan3 -> tan4;
|
1268
|
+
tan4 -> thistle;
|
1269
|
+
thistle -> thistle1;
|
1270
|
+
thistle1 -> thistle2;
|
1271
|
+
thistle2 -> thistle3;
|
1272
|
+
thistle3 -> thistle4;
|
1273
|
+
thistle4 -> tomato;
|
1274
|
+
tomato -> tomato1;
|
1275
|
+
tomato1 -> tomato2;
|
1276
|
+
tomato2 -> tomato3;
|
1277
|
+
tomato3 -> tomato4;
|
1278
|
+
transparent -> turquoise;
|
1279
|
+
turquoise -> turquoise1;
|
1280
|
+
turquoise1 -> turquoise2;
|
1281
|
+
turquoise2 -> turquoise3;
|
1282
|
+
turquoise3 -> turquoise4;
|
1283
|
+
turquoise4 -> violet;
|
1284
|
+
violet -> violetred;
|
1285
|
+
violetred -> violetred1;
|
1286
|
+
violetred1 -> violetred2;
|
1287
|
+
violetred2 -> violetred3;
|
1288
|
+
violetred3 -> violetred4;
|
1289
|
+
violetred4 -> wheat;
|
1290
|
+
wheat -> wheat1;
|
1291
|
+
wheat1 -> wheat2;
|
1292
|
+
wheat2 -> wheat3;
|
1293
|
+
wheat3 -> wheat4;
|
1294
|
+
wheat4 -> white;
|
1295
|
+
white -> whitesmoke;
|
1296
|
+
whitesmoke -> yellow;
|
1297
|
+
yellow -> yellow1;
|
1298
|
+
yellow1 -> yellow2;
|
1299
|
+
yellow2 -> yellow3;
|
1300
|
+
yellow3 -> yellow4;
|
1301
|
+
yellow4 -> yellowgreen;
|
1302
|
+
}
|