elus 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +30 -0
- data/Rakefile +57 -0
- data/VERSION +1 -0
- data/bin/elus +8 -0
- data/doc/dev_plan.htm +923 -0
- data/doc/dev_plan_files/colorschememapping.xml +2 -0
- data/doc/dev_plan_files/filelist.xml +6 -0
- data/doc/dev_plan_files/themedata.thmx +0 -0
- data/doc/user_stories.htm +959 -0
- data/doc/user_stories_files/colorschememapping.xml +2 -0
- data/doc/user_stories_files/filelist.xml +6 -0
- data/doc/user_stories_files/themedata.thmx +0 -0
- data/elus.gemspec +91 -0
- data/features/gamer_inputs_state.feature +135 -0
- data/features/gamer_starts_solver.feature +13 -0
- data/features/gamer_updates_state.feature +27 -0
- data/features/solver_shows_hints.feature +36 -0
- data/features/step_definitions/elus_steps.rb +116 -0
- data/features/support/env.rb +5 -0
- data/features/support/stats.rb +32 -0
- data/lib/elus.rb +5 -0
- data/lib/elus/game.rb +74 -0
- data/lib/elus/generator.rb +48 -0
- data/lib/elus/piece.rb +93 -0
- data/lib/elus/rule.rb +36 -0
- data/lib/elus/solver.rb +84 -0
- data/spec/cucumber/stats_spec.rb +13 -0
- data/spec/elus/game_spec.rb +116 -0
- data/spec/elus/generator_spec.rb +124 -0
- data/spec/elus/piece_spec.rb +190 -0
- data/spec/elus/rule_spec.rb +39 -0
- data/spec/elus/solver_spec.rb +203 -0
- data/spec/spec.opts +2 -0
- data/spec/spec_helper.rb +198 -0
- metadata +117 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 arvicco
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
= elus
|
2
|
+
|
3
|
+
by: Arvicco
|
4
|
+
url: http://github.com/arvicco/win
|
5
|
+
|
6
|
+
== DESCRIPTION
|
7
|
+
This is a support tool for winning SpaceRangers:Elus.
|
8
|
+
|
9
|
+
== SUMMARY
|
10
|
+
|
11
|
+
Elus is a little game-inside-game quest that pops up in SpaceRangers game.
|
12
|
+
It is notoriosly difficult to crack manually, but easy with Ruby script.
|
13
|
+
Instead of writing quik-and-dirty permutations script that would be sufficient,
|
14
|
+
I tried to develop this tool in a "proper" BDD way while reading 'The RSpec Book'.
|
15
|
+
So, in effect Elus is a replacement for Codebreaker example which I found boring. ;)
|
16
|
+
|
17
|
+
By all means, use it if you're stuck with Elus quest and add new functionality
|
18
|
+
to it (like GUI and stuff) if you need it. I'm done with the quest and Rspec book,
|
19
|
+
so no progress on this tool is to be expected.
|
20
|
+
|
21
|
+
== SYNOPSIS
|
22
|
+
|
23
|
+
$ gem install elus
|
24
|
+
$ elus
|
25
|
+
|
26
|
+
... Follow the prompts
|
27
|
+
|
28
|
+
== Copyright
|
29
|
+
|
30
|
+
Copyright (c) 2010 arvicco. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "elus"
|
8
|
+
gem.summary = %Q{This is a support tool for winning SpaceRangers:Elus}
|
9
|
+
gem.description = %Q{This is a support tool for winning SpaceRangers:Elus}
|
10
|
+
gem.email = "arvitallian@gmail.com"
|
11
|
+
gem.homepage = "http://github.com/arvicco/elus"
|
12
|
+
gem.authors = ["arvicco"]
|
13
|
+
gem.add_development_dependency "rspec", ">= 1.2.9"
|
14
|
+
gem.add_development_dependency "cucumber", ">= 0"
|
15
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
16
|
+
end
|
17
|
+
Jeweler::GemcutterTasks.new
|
18
|
+
rescue LoadError
|
19
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
20
|
+
end
|
21
|
+
|
22
|
+
require 'spec/rake/spectask'
|
23
|
+
Spec::Rake::SpecTask.new(:spec) do |spec|
|
24
|
+
spec.libs << 'lib' << 'spec'
|
25
|
+
spec.spec_files = FileList['spec/**/*_spec.rb']
|
26
|
+
end
|
27
|
+
|
28
|
+
Spec::Rake::SpecTask.new(:rcov) do |spec|
|
29
|
+
spec.libs << 'lib' << 'spec'
|
30
|
+
spec.pattern = 'spec/**/*_spec.rb'
|
31
|
+
spec.rcov = true
|
32
|
+
end
|
33
|
+
|
34
|
+
task :spec => :check_dependencies
|
35
|
+
|
36
|
+
begin
|
37
|
+
require 'cucumber/rake/task'
|
38
|
+
Cucumber::Rake::Task.new(:features)
|
39
|
+
|
40
|
+
task :features => :check_dependencies
|
41
|
+
rescue LoadError
|
42
|
+
task :features do
|
43
|
+
abort "Cucumber is not available. In order to run features, you must: sudo gem install cucumber"
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
task :default => :spec
|
48
|
+
|
49
|
+
require 'rake/rdoctask'
|
50
|
+
Rake::RDocTask.new do |rdoc|
|
51
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
52
|
+
|
53
|
+
rdoc.rdoc_dir = 'rdoc'
|
54
|
+
rdoc.title = "elus #{version}"
|
55
|
+
rdoc.rdoc_files.include('README*')
|
56
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
57
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.1.0
|
data/bin/elus
ADDED
data/doc/dev_plan.htm
ADDED
@@ -0,0 +1,923 @@
|
|
1
|
+
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
2
|
+
xmlns:o="urn:schemas-microsoft-com:office:office"
|
3
|
+
xmlns:w="urn:schemas-microsoft-com:office:word"
|
4
|
+
xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
|
5
|
+
xmlns="http://www.w3.org/TR/REC-html40">
|
6
|
+
|
7
|
+
<head>
|
8
|
+
<meta http-equiv=Content-Type content="text/html; charset=windows-1251">
|
9
|
+
<meta name=ProgId content=Word.Document>
|
10
|
+
<meta name=Generator content="Microsoft Word 12">
|
11
|
+
<meta name=Originator content="Microsoft Word 12">
|
12
|
+
<link rel=File-List href="dev_plan_files/filelist.xml">
|
13
|
+
<!--[if gte mso 9]><xml>
|
14
|
+
<o:DocumentProperties>
|
15
|
+
<o:Author>Vitaly Bezrodnykh</o:Author>
|
16
|
+
<o:Template>Normal</o:Template>
|
17
|
+
<o:LastAuthor>Vitaly Bezrodnykh</o:LastAuthor>
|
18
|
+
<o:Revision>4</o:Revision>
|
19
|
+
<o:TotalTime>167</o:TotalTime>
|
20
|
+
<o:Created>2009-09-23T06:47:00Z</o:Created>
|
21
|
+
<o:LastSaved>2009-09-23T09:34:00Z</o:LastSaved>
|
22
|
+
<o:Pages>1</o:Pages>
|
23
|
+
<o:Words>24</o:Words>
|
24
|
+
<o:Characters>143</o:Characters>
|
25
|
+
<o:Company>Kaspersky LAB</o:Company>
|
26
|
+
<o:Lines>1</o:Lines>
|
27
|
+
<o:Paragraphs>1</o:Paragraphs>
|
28
|
+
<o:CharactersWithSpaces>166</o:CharactersWithSpaces>
|
29
|
+
<o:Version>12.00</o:Version>
|
30
|
+
</o:DocumentProperties>
|
31
|
+
</xml><![endif]-->
|
32
|
+
<link rel=themeData href="dev_plan_files/themedata.thmx">
|
33
|
+
<link rel=colorSchemeMapping href="dev_plan_files/colorschememapping.xml">
|
34
|
+
<!--[if gte mso 9]><xml>
|
35
|
+
<w:WordDocument>
|
36
|
+
<w:Zoom>125</w:Zoom>
|
37
|
+
<w:TrackMoves>false</w:TrackMoves>
|
38
|
+
<w:TrackFormatting/>
|
39
|
+
<w:PunctuationKerning/>
|
40
|
+
<w:ValidateAgainstSchemas/>
|
41
|
+
<w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
|
42
|
+
<w:IgnoreMixedContent>false</w:IgnoreMixedContent>
|
43
|
+
<w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
|
44
|
+
<w:DoNotPromoteQF/>
|
45
|
+
<w:LidThemeOther>EN-US</w:LidThemeOther>
|
46
|
+
<w:LidThemeAsian>X-NONE</w:LidThemeAsian>
|
47
|
+
<w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
|
48
|
+
<w:Compatibility>
|
49
|
+
<w:BreakWrappedTables/>
|
50
|
+
<w:SnapToGridInCell/>
|
51
|
+
<w:WrapTextWithPunct/>
|
52
|
+
<w:UseAsianBreakRules/>
|
53
|
+
<w:DontGrowAutofit/>
|
54
|
+
<w:SplitPgBreakAndParaMark/>
|
55
|
+
<w:DontVertAlignCellWithSp/>
|
56
|
+
<w:DontBreakConstrainedForcedTables/>
|
57
|
+
<w:DontVertAlignInTxbx/>
|
58
|
+
<w:Word11KerningPairs/>
|
59
|
+
<w:CachedColBalance/>
|
60
|
+
</w:Compatibility>
|
61
|
+
<w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
|
62
|
+
<m:mathPr>
|
63
|
+
<m:mathFont m:val="Cambria Math"/>
|
64
|
+
<m:brkBin m:val="before"/>
|
65
|
+
<m:brkBinSub m:val="--"/>
|
66
|
+
<m:smallFrac m:val="off"/>
|
67
|
+
<m:dispDef/>
|
68
|
+
<m:lMargin m:val="0"/>
|
69
|
+
<m:rMargin m:val="0"/>
|
70
|
+
<m:defJc m:val="centerGroup"/>
|
71
|
+
<m:wrapIndent m:val="1440"/>
|
72
|
+
<m:intLim m:val="subSup"/>
|
73
|
+
<m:naryLim m:val="undOvr"/>
|
74
|
+
</m:mathPr></w:WordDocument>
|
75
|
+
</xml><![endif]--><!--[if gte mso 9]><xml>
|
76
|
+
<w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
|
77
|
+
DefSemiHidden="true" DefQFormat="false" DefPriority="99"
|
78
|
+
LatentStyleCount="267">
|
79
|
+
<w:LsdException Locked="false" Priority="0" SemiHidden="false"
|
80
|
+
UnhideWhenUsed="false" QFormat="true" Name="Normal"/>
|
81
|
+
<w:LsdException Locked="false" Priority="9" SemiHidden="false"
|
82
|
+
UnhideWhenUsed="false" QFormat="true" Name="heading 1"/>
|
83
|
+
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/>
|
84
|
+
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/>
|
85
|
+
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/>
|
86
|
+
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/>
|
87
|
+
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/>
|
88
|
+
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/>
|
89
|
+
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/>
|
90
|
+
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/>
|
91
|
+
<w:LsdException Locked="false" Priority="39" Name="toc 1"/>
|
92
|
+
<w:LsdException Locked="false" Priority="39" Name="toc 2"/>
|
93
|
+
<w:LsdException Locked="false" Priority="39" Name="toc 3"/>
|
94
|
+
<w:LsdException Locked="false" Priority="39" Name="toc 4"/>
|
95
|
+
<w:LsdException Locked="false" Priority="39" Name="toc 5"/>
|
96
|
+
<w:LsdException Locked="false" Priority="39" Name="toc 6"/>
|
97
|
+
<w:LsdException Locked="false" Priority="39" Name="toc 7"/>
|
98
|
+
<w:LsdException Locked="false" Priority="39" Name="toc 8"/>
|
99
|
+
<w:LsdException Locked="false" Priority="39" Name="toc 9"/>
|
100
|
+
<w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/>
|
101
|
+
<w:LsdException Locked="false" Priority="10" SemiHidden="false"
|
102
|
+
UnhideWhenUsed="false" QFormat="true" Name="Title"/>
|
103
|
+
<w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>
|
104
|
+
<w:LsdException Locked="false" Priority="11" SemiHidden="false"
|
105
|
+
UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/>
|
106
|
+
<w:LsdException Locked="false" Priority="22" SemiHidden="false"
|
107
|
+
UnhideWhenUsed="false" QFormat="true" Name="Strong"/>
|
108
|
+
<w:LsdException Locked="false" Priority="20" SemiHidden="false"
|
109
|
+
UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/>
|
110
|
+
<w:LsdException Locked="false" Priority="59" SemiHidden="false"
|
111
|
+
UnhideWhenUsed="false" Name="Table Grid"/>
|
112
|
+
<w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/>
|
113
|
+
<w:LsdException Locked="false" Priority="1" SemiHidden="false"
|
114
|
+
UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/>
|
115
|
+
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
|
116
|
+
UnhideWhenUsed="false" Name="Light Shading"/>
|
117
|
+
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
|
118
|
+
UnhideWhenUsed="false" Name="Light List"/>
|
119
|
+
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
|
120
|
+
UnhideWhenUsed="false" Name="Light Grid"/>
|
121
|
+
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
|
122
|
+
UnhideWhenUsed="false" Name="Medium Shading 1"/>
|
123
|
+
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
|
124
|
+
UnhideWhenUsed="false" Name="Medium Shading 2"/>
|
125
|
+
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
|
126
|
+
UnhideWhenUsed="false" Name="Medium List 1"/>
|
127
|
+
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
|
128
|
+
UnhideWhenUsed="false" Name="Medium List 2"/>
|
129
|
+
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
|
130
|
+
UnhideWhenUsed="false" Name="Medium Grid 1"/>
|
131
|
+
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
|
132
|
+
UnhideWhenUsed="false" Name="Medium Grid 2"/>
|
133
|
+
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
|
134
|
+
UnhideWhenUsed="false" Name="Medium Grid 3"/>
|
135
|
+
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
|
136
|
+
UnhideWhenUsed="false" Name="Dark List"/>
|
137
|
+
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
|
138
|
+
UnhideWhenUsed="false" Name="Colorful Shading"/>
|
139
|
+
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
|
140
|
+
UnhideWhenUsed="false" Name="Colorful List"/>
|
141
|
+
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
|
142
|
+
UnhideWhenUsed="false" Name="Colorful Grid"/>
|
143
|
+
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
|
144
|
+
UnhideWhenUsed="false" Name="Light Shading Accent 1"/>
|
145
|
+
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
|
146
|
+
UnhideWhenUsed="false" Name="Light List Accent 1"/>
|
147
|
+
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
|
148
|
+
UnhideWhenUsed="false" Name="Light Grid Accent 1"/>
|
149
|
+
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
|
150
|
+
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/>
|
151
|
+
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
|
152
|
+
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/>
|
153
|
+
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
|
154
|
+
UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/>
|
155
|
+
<w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/>
|
156
|
+
<w:LsdException Locked="false" Priority="34" SemiHidden="false"
|
157
|
+
UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/>
|
158
|
+
<w:LsdException Locked="false" Priority="29" SemiHidden="false"
|
159
|
+
UnhideWhenUsed="false" QFormat="true" Name="Quote"/>
|
160
|
+
<w:LsdException Locked="false" Priority="30" SemiHidden="false"
|
161
|
+
UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/>
|
162
|
+
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
|
163
|
+
UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/>
|
164
|
+
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
|
165
|
+
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/>
|
166
|
+
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
|
167
|
+
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/>
|
168
|
+
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
|
169
|
+
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/>
|
170
|
+
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
|
171
|
+
UnhideWhenUsed="false" Name="Dark List Accent 1"/>
|
172
|
+
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
|
173
|
+
UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/>
|
174
|
+
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
|
175
|
+
UnhideWhenUsed="false" Name="Colorful List Accent 1"/>
|
176
|
+
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
|
177
|
+
UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/>
|
178
|
+
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
|
179
|
+
UnhideWhenUsed="false" Name="Light Shading Accent 2"/>
|
180
|
+
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
|
181
|
+
UnhideWhenUsed="false" Name="Light List Accent 2"/>
|
182
|
+
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
|
183
|
+
UnhideWhenUsed="false" Name="Light Grid Accent 2"/>
|
184
|
+
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
|
185
|
+
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/>
|
186
|
+
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
|
187
|
+
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/>
|
188
|
+
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
|
189
|
+
UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/>
|
190
|
+
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
|
191
|
+
UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/>
|
192
|
+
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
|
193
|
+
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/>
|
194
|
+
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
|
195
|
+
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/>
|
196
|
+
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
|
197
|
+
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/>
|
198
|
+
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
|
199
|
+
UnhideWhenUsed="false" Name="Dark List Accent 2"/>
|
200
|
+
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
|
201
|
+
UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/>
|
202
|
+
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
|
203
|
+
UnhideWhenUsed="false" Name="Colorful List Accent 2"/>
|
204
|
+
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
|
205
|
+
UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/>
|
206
|
+
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
|
207
|
+
UnhideWhenUsed="false" Name="Light Shading Accent 3"/>
|
208
|
+
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
|
209
|
+
UnhideWhenUsed="false" Name="Light List Accent 3"/>
|
210
|
+
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
|
211
|
+
UnhideWhenUsed="false" Name="Light Grid Accent 3"/>
|
212
|
+
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
|
213
|
+
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/>
|
214
|
+
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
|
215
|
+
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/>
|
216
|
+
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
|
217
|
+
UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/>
|
218
|
+
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
|
219
|
+
UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/>
|
220
|
+
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
|
221
|
+
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/>
|
222
|
+
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
|
223
|
+
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/>
|
224
|
+
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
|
225
|
+
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/>
|
226
|
+
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
|
227
|
+
UnhideWhenUsed="false" Name="Dark List Accent 3"/>
|
228
|
+
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
|
229
|
+
UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/>
|
230
|
+
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
|
231
|
+
UnhideWhenUsed="false" Name="Colorful List Accent 3"/>
|
232
|
+
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
|
233
|
+
UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/>
|
234
|
+
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
|
235
|
+
UnhideWhenUsed="false" Name="Light Shading Accent 4"/>
|
236
|
+
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
|
237
|
+
UnhideWhenUsed="false" Name="Light List Accent 4"/>
|
238
|
+
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
|
239
|
+
UnhideWhenUsed="false" Name="Light Grid Accent 4"/>
|
240
|
+
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
|
241
|
+
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/>
|
242
|
+
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
|
243
|
+
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/>
|
244
|
+
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
|
245
|
+
UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/>
|
246
|
+
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
|
247
|
+
UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/>
|
248
|
+
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
|
249
|
+
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/>
|
250
|
+
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
|
251
|
+
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/>
|
252
|
+
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
|
253
|
+
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/>
|
254
|
+
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
|
255
|
+
UnhideWhenUsed="false" Name="Dark List Accent 4"/>
|
256
|
+
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
|
257
|
+
UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/>
|
258
|
+
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
|
259
|
+
UnhideWhenUsed="false" Name="Colorful List Accent 4"/>
|
260
|
+
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
|
261
|
+
UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/>
|
262
|
+
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
|
263
|
+
UnhideWhenUsed="false" Name="Light Shading Accent 5"/>
|
264
|
+
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
|
265
|
+
UnhideWhenUsed="false" Name="Light List Accent 5"/>
|
266
|
+
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
|
267
|
+
UnhideWhenUsed="false" Name="Light Grid Accent 5"/>
|
268
|
+
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
|
269
|
+
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/>
|
270
|
+
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
|
271
|
+
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/>
|
272
|
+
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
|
273
|
+
UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/>
|
274
|
+
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
|
275
|
+
UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/>
|
276
|
+
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
|
277
|
+
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/>
|
278
|
+
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
|
279
|
+
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/>
|
280
|
+
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
|
281
|
+
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/>
|
282
|
+
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
|
283
|
+
UnhideWhenUsed="false" Name="Dark List Accent 5"/>
|
284
|
+
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
|
285
|
+
UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/>
|
286
|
+
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
|
287
|
+
UnhideWhenUsed="false" Name="Colorful List Accent 5"/>
|
288
|
+
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
|
289
|
+
UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/>
|
290
|
+
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
|
291
|
+
UnhideWhenUsed="false" Name="Light Shading Accent 6"/>
|
292
|
+
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
|
293
|
+
UnhideWhenUsed="false" Name="Light List Accent 6"/>
|
294
|
+
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
|
295
|
+
UnhideWhenUsed="false" Name="Light Grid Accent 6"/>
|
296
|
+
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
|
297
|
+
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/>
|
298
|
+
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
|
299
|
+
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/>
|
300
|
+
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
|
301
|
+
UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/>
|
302
|
+
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
|
303
|
+
UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/>
|
304
|
+
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
|
305
|
+
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/>
|
306
|
+
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
|
307
|
+
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/>
|
308
|
+
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
|
309
|
+
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/>
|
310
|
+
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
|
311
|
+
UnhideWhenUsed="false" Name="Dark List Accent 6"/>
|
312
|
+
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
|
313
|
+
UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/>
|
314
|
+
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
|
315
|
+
UnhideWhenUsed="false" Name="Colorful List Accent 6"/>
|
316
|
+
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
|
317
|
+
UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/>
|
318
|
+
<w:LsdException Locked="false" Priority="19" SemiHidden="false"
|
319
|
+
UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/>
|
320
|
+
<w:LsdException Locked="false" Priority="21" SemiHidden="false"
|
321
|
+
UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/>
|
322
|
+
<w:LsdException Locked="false" Priority="31" SemiHidden="false"
|
323
|
+
UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/>
|
324
|
+
<w:LsdException Locked="false" Priority="32" SemiHidden="false"
|
325
|
+
UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/>
|
326
|
+
<w:LsdException Locked="false" Priority="33" SemiHidden="false"
|
327
|
+
UnhideWhenUsed="false" QFormat="true" Name="Book Title"/>
|
328
|
+
<w:LsdException Locked="false" Priority="37" Name="Bibliography"/>
|
329
|
+
<w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/>
|
330
|
+
</w:LatentStyles>
|
331
|
+
</xml><![endif]-->
|
332
|
+
<style>
|
333
|
+
<!--
|
334
|
+
/* Font Definitions */
|
335
|
+
@font-face
|
336
|
+
{font-family:"Cambria Math";
|
337
|
+
panose-1:2 4 5 3 5 4 6 3 2 4;
|
338
|
+
mso-font-charset:1;
|
339
|
+
mso-generic-font-family:roman;
|
340
|
+
mso-font-format:other;
|
341
|
+
mso-font-pitch:variable;
|
342
|
+
mso-font-signature:0 0 0 0 0 0;}
|
343
|
+
@font-face
|
344
|
+
{font-family:Cambria;
|
345
|
+
panose-1:2 4 5 3 5 4 6 3 2 4;
|
346
|
+
mso-font-charset:204;
|
347
|
+
mso-generic-font-family:roman;
|
348
|
+
mso-font-pitch:variable;
|
349
|
+
mso-font-signature:-1610611985 1073741899 0 0 159 0;}
|
350
|
+
@font-face
|
351
|
+
{font-family:Calibri;
|
352
|
+
panose-1:2 15 5 2 2 2 4 3 2 4;
|
353
|
+
mso-font-charset:204;
|
354
|
+
mso-generic-font-family:swiss;
|
355
|
+
mso-font-pitch:variable;
|
356
|
+
mso-font-signature:-1610611985 1073750139 0 0 159 0;}
|
357
|
+
/* Style Definitions */
|
358
|
+
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
359
|
+
{mso-style-unhide:no;
|
360
|
+
mso-style-qformat:yes;
|
361
|
+
mso-style-parent:"";
|
362
|
+
margin-top:0cm;
|
363
|
+
margin-right:0cm;
|
364
|
+
margin-bottom:10.0pt;
|
365
|
+
margin-left:0cm;
|
366
|
+
line-height:115%;
|
367
|
+
mso-pagination:widow-orphan;
|
368
|
+
font-size:11.0pt;
|
369
|
+
font-family:"Calibri","sans-serif";
|
370
|
+
mso-ascii-font-family:Calibri;
|
371
|
+
mso-ascii-theme-font:minor-latin;
|
372
|
+
mso-fareast-font-family:"Times New Roman";
|
373
|
+
mso-fareast-theme-font:minor-fareast;
|
374
|
+
mso-hansi-font-family:Calibri;
|
375
|
+
mso-hansi-theme-font:minor-latin;
|
376
|
+
mso-bidi-font-family:"Times New Roman";
|
377
|
+
mso-bidi-theme-font:minor-bidi;}
|
378
|
+
h1
|
379
|
+
{mso-style-priority:9;
|
380
|
+
mso-style-unhide:no;
|
381
|
+
mso-style-qformat:yes;
|
382
|
+
mso-style-link:"Heading 1 Char";
|
383
|
+
mso-style-next:Normal;
|
384
|
+
margin-top:24.0pt;
|
385
|
+
margin-right:0cm;
|
386
|
+
margin-bottom:0cm;
|
387
|
+
margin-left:0cm;
|
388
|
+
margin-bottom:.0001pt;
|
389
|
+
line-height:115%;
|
390
|
+
mso-pagination:widow-orphan lines-together;
|
391
|
+
page-break-after:avoid;
|
392
|
+
mso-outline-level:1;
|
393
|
+
font-size:14.0pt;
|
394
|
+
font-family:"Cambria","serif";
|
395
|
+
mso-ascii-font-family:Cambria;
|
396
|
+
mso-ascii-theme-font:major-latin;
|
397
|
+
mso-fareast-font-family:"Times New Roman";
|
398
|
+
mso-fareast-theme-font:major-fareast;
|
399
|
+
mso-hansi-font-family:Cambria;
|
400
|
+
mso-hansi-theme-font:major-latin;
|
401
|
+
mso-bidi-font-family:"Times New Roman";
|
402
|
+
mso-bidi-theme-font:major-bidi;
|
403
|
+
color:#365F91;
|
404
|
+
mso-themecolor:accent1;
|
405
|
+
mso-themeshade:191;
|
406
|
+
mso-font-kerning:0pt;}
|
407
|
+
h2
|
408
|
+
{mso-style-noshow:yes;
|
409
|
+
mso-style-priority:9;
|
410
|
+
mso-style-qformat:yes;
|
411
|
+
mso-style-link:"Heading 2 Char";
|
412
|
+
mso-style-next:Normal;
|
413
|
+
margin-top:10.0pt;
|
414
|
+
margin-right:0cm;
|
415
|
+
margin-bottom:0cm;
|
416
|
+
margin-left:0cm;
|
417
|
+
margin-bottom:.0001pt;
|
418
|
+
line-height:115%;
|
419
|
+
mso-pagination:widow-orphan lines-together;
|
420
|
+
page-break-after:avoid;
|
421
|
+
mso-outline-level:2;
|
422
|
+
font-size:13.0pt;
|
423
|
+
font-family:"Cambria","serif";
|
424
|
+
mso-ascii-font-family:Cambria;
|
425
|
+
mso-ascii-theme-font:major-latin;
|
426
|
+
mso-fareast-font-family:"Times New Roman";
|
427
|
+
mso-fareast-theme-font:major-fareast;
|
428
|
+
mso-hansi-font-family:Cambria;
|
429
|
+
mso-hansi-theme-font:major-latin;
|
430
|
+
mso-bidi-font-family:"Times New Roman";
|
431
|
+
mso-bidi-theme-font:major-bidi;
|
432
|
+
color:#4F81BD;
|
433
|
+
mso-themecolor:accent1;}
|
434
|
+
h3
|
435
|
+
{mso-style-noshow:yes;
|
436
|
+
mso-style-priority:9;
|
437
|
+
mso-style-qformat:yes;
|
438
|
+
mso-style-link:"Heading 3 Char";
|
439
|
+
mso-style-next:Normal;
|
440
|
+
margin-top:10.0pt;
|
441
|
+
margin-right:0cm;
|
442
|
+
margin-bottom:0cm;
|
443
|
+
margin-left:0cm;
|
444
|
+
margin-bottom:.0001pt;
|
445
|
+
line-height:115%;
|
446
|
+
mso-pagination:widow-orphan lines-together;
|
447
|
+
page-break-after:avoid;
|
448
|
+
mso-outline-level:3;
|
449
|
+
font-size:11.0pt;
|
450
|
+
font-family:"Cambria","serif";
|
451
|
+
mso-ascii-font-family:Cambria;
|
452
|
+
mso-ascii-theme-font:major-latin;
|
453
|
+
mso-fareast-font-family:"Times New Roman";
|
454
|
+
mso-fareast-theme-font:major-fareast;
|
455
|
+
mso-hansi-font-family:Cambria;
|
456
|
+
mso-hansi-theme-font:major-latin;
|
457
|
+
mso-bidi-font-family:"Times New Roman";
|
458
|
+
mso-bidi-theme-font:major-bidi;
|
459
|
+
color:#4F81BD;
|
460
|
+
mso-themecolor:accent1;}
|
461
|
+
p.MsoTitle, li.MsoTitle, div.MsoTitle
|
462
|
+
{mso-style-priority:10;
|
463
|
+
mso-style-unhide:no;
|
464
|
+
mso-style-qformat:yes;
|
465
|
+
mso-style-link:"Title Char";
|
466
|
+
mso-style-next:Normal;
|
467
|
+
margin-top:0cm;
|
468
|
+
margin-right:0cm;
|
469
|
+
margin-bottom:15.0pt;
|
470
|
+
margin-left:0cm;
|
471
|
+
mso-add-space:auto;
|
472
|
+
mso-pagination:widow-orphan;
|
473
|
+
border:none;
|
474
|
+
mso-border-bottom-alt:solid #4F81BD 1.0pt;
|
475
|
+
mso-border-bottom-themecolor:accent1;
|
476
|
+
padding:0cm;
|
477
|
+
mso-padding-alt:0cm 0cm 4.0pt 0cm;
|
478
|
+
font-size:26.0pt;
|
479
|
+
font-family:"Cambria","serif";
|
480
|
+
mso-ascii-font-family:Cambria;
|
481
|
+
mso-ascii-theme-font:major-latin;
|
482
|
+
mso-fareast-font-family:"Times New Roman";
|
483
|
+
mso-fareast-theme-font:major-fareast;
|
484
|
+
mso-hansi-font-family:Cambria;
|
485
|
+
mso-hansi-theme-font:major-latin;
|
486
|
+
mso-bidi-font-family:"Times New Roman";
|
487
|
+
mso-bidi-theme-font:major-bidi;
|
488
|
+
color:#17365D;
|
489
|
+
mso-themecolor:text2;
|
490
|
+
mso-themeshade:191;
|
491
|
+
letter-spacing:.25pt;
|
492
|
+
mso-font-kerning:14.0pt;}
|
493
|
+
p.MsoTitleCxSpFirst, li.MsoTitleCxSpFirst, div.MsoTitleCxSpFirst
|
494
|
+
{mso-style-priority:10;
|
495
|
+
mso-style-unhide:no;
|
496
|
+
mso-style-qformat:yes;
|
497
|
+
mso-style-link:"Title Char";
|
498
|
+
mso-style-next:Normal;
|
499
|
+
mso-style-type:export-only;
|
500
|
+
margin:0cm;
|
501
|
+
margin-bottom:.0001pt;
|
502
|
+
mso-add-space:auto;
|
503
|
+
mso-pagination:widow-orphan;
|
504
|
+
border:none;
|
505
|
+
mso-border-bottom-alt:solid #4F81BD 1.0pt;
|
506
|
+
mso-border-bottom-themecolor:accent1;
|
507
|
+
padding:0cm;
|
508
|
+
mso-padding-alt:0cm 0cm 4.0pt 0cm;
|
509
|
+
font-size:26.0pt;
|
510
|
+
font-family:"Cambria","serif";
|
511
|
+
mso-ascii-font-family:Cambria;
|
512
|
+
mso-ascii-theme-font:major-latin;
|
513
|
+
mso-fareast-font-family:"Times New Roman";
|
514
|
+
mso-fareast-theme-font:major-fareast;
|
515
|
+
mso-hansi-font-family:Cambria;
|
516
|
+
mso-hansi-theme-font:major-latin;
|
517
|
+
mso-bidi-font-family:"Times New Roman";
|
518
|
+
mso-bidi-theme-font:major-bidi;
|
519
|
+
color:#17365D;
|
520
|
+
mso-themecolor:text2;
|
521
|
+
mso-themeshade:191;
|
522
|
+
letter-spacing:.25pt;
|
523
|
+
mso-font-kerning:14.0pt;}
|
524
|
+
p.MsoTitleCxSpMiddle, li.MsoTitleCxSpMiddle, div.MsoTitleCxSpMiddle
|
525
|
+
{mso-style-priority:10;
|
526
|
+
mso-style-unhide:no;
|
527
|
+
mso-style-qformat:yes;
|
528
|
+
mso-style-link:"Title Char";
|
529
|
+
mso-style-next:Normal;
|
530
|
+
mso-style-type:export-only;
|
531
|
+
margin:0cm;
|
532
|
+
margin-bottom:.0001pt;
|
533
|
+
mso-add-space:auto;
|
534
|
+
mso-pagination:widow-orphan;
|
535
|
+
border:none;
|
536
|
+
mso-border-bottom-alt:solid #4F81BD 1.0pt;
|
537
|
+
mso-border-bottom-themecolor:accent1;
|
538
|
+
padding:0cm;
|
539
|
+
mso-padding-alt:0cm 0cm 4.0pt 0cm;
|
540
|
+
font-size:26.0pt;
|
541
|
+
font-family:"Cambria","serif";
|
542
|
+
mso-ascii-font-family:Cambria;
|
543
|
+
mso-ascii-theme-font:major-latin;
|
544
|
+
mso-fareast-font-family:"Times New Roman";
|
545
|
+
mso-fareast-theme-font:major-fareast;
|
546
|
+
mso-hansi-font-family:Cambria;
|
547
|
+
mso-hansi-theme-font:major-latin;
|
548
|
+
mso-bidi-font-family:"Times New Roman";
|
549
|
+
mso-bidi-theme-font:major-bidi;
|
550
|
+
color:#17365D;
|
551
|
+
mso-themecolor:text2;
|
552
|
+
mso-themeshade:191;
|
553
|
+
letter-spacing:.25pt;
|
554
|
+
mso-font-kerning:14.0pt;}
|
555
|
+
p.MsoTitleCxSpLast, li.MsoTitleCxSpLast, div.MsoTitleCxSpLast
|
556
|
+
{mso-style-priority:10;
|
557
|
+
mso-style-unhide:no;
|
558
|
+
mso-style-qformat:yes;
|
559
|
+
mso-style-link:"Title Char";
|
560
|
+
mso-style-next:Normal;
|
561
|
+
mso-style-type:export-only;
|
562
|
+
margin-top:0cm;
|
563
|
+
margin-right:0cm;
|
564
|
+
margin-bottom:15.0pt;
|
565
|
+
margin-left:0cm;
|
566
|
+
mso-add-space:auto;
|
567
|
+
mso-pagination:widow-orphan;
|
568
|
+
border:none;
|
569
|
+
mso-border-bottom-alt:solid #4F81BD 1.0pt;
|
570
|
+
mso-border-bottom-themecolor:accent1;
|
571
|
+
padding:0cm;
|
572
|
+
mso-padding-alt:0cm 0cm 4.0pt 0cm;
|
573
|
+
font-size:26.0pt;
|
574
|
+
font-family:"Cambria","serif";
|
575
|
+
mso-ascii-font-family:Cambria;
|
576
|
+
mso-ascii-theme-font:major-latin;
|
577
|
+
mso-fareast-font-family:"Times New Roman";
|
578
|
+
mso-fareast-theme-font:major-fareast;
|
579
|
+
mso-hansi-font-family:Cambria;
|
580
|
+
mso-hansi-theme-font:major-latin;
|
581
|
+
mso-bidi-font-family:"Times New Roman";
|
582
|
+
mso-bidi-theme-font:major-bidi;
|
583
|
+
color:#17365D;
|
584
|
+
mso-themecolor:text2;
|
585
|
+
mso-themeshade:191;
|
586
|
+
letter-spacing:.25pt;
|
587
|
+
mso-font-kerning:14.0pt;}
|
588
|
+
p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph
|
589
|
+
{mso-style-priority:34;
|
590
|
+
mso-style-unhide:no;
|
591
|
+
mso-style-qformat:yes;
|
592
|
+
margin-top:0cm;
|
593
|
+
margin-right:0cm;
|
594
|
+
margin-bottom:10.0pt;
|
595
|
+
margin-left:36.0pt;
|
596
|
+
mso-add-space:auto;
|
597
|
+
line-height:115%;
|
598
|
+
mso-pagination:widow-orphan;
|
599
|
+
font-size:11.0pt;
|
600
|
+
font-family:"Calibri","sans-serif";
|
601
|
+
mso-ascii-font-family:Calibri;
|
602
|
+
mso-ascii-theme-font:minor-latin;
|
603
|
+
mso-fareast-font-family:"Times New Roman";
|
604
|
+
mso-fareast-theme-font:minor-fareast;
|
605
|
+
mso-hansi-font-family:Calibri;
|
606
|
+
mso-hansi-theme-font:minor-latin;
|
607
|
+
mso-bidi-font-family:"Times New Roman";
|
608
|
+
mso-bidi-theme-font:minor-bidi;}
|
609
|
+
p.MsoListParagraphCxSpFirst, li.MsoListParagraphCxSpFirst, div.MsoListParagraphCxSpFirst
|
610
|
+
{mso-style-priority:34;
|
611
|
+
mso-style-unhide:no;
|
612
|
+
mso-style-qformat:yes;
|
613
|
+
mso-style-type:export-only;
|
614
|
+
margin-top:0cm;
|
615
|
+
margin-right:0cm;
|
616
|
+
margin-bottom:0cm;
|
617
|
+
margin-left:36.0pt;
|
618
|
+
margin-bottom:.0001pt;
|
619
|
+
mso-add-space:auto;
|
620
|
+
line-height:115%;
|
621
|
+
mso-pagination:widow-orphan;
|
622
|
+
font-size:11.0pt;
|
623
|
+
font-family:"Calibri","sans-serif";
|
624
|
+
mso-ascii-font-family:Calibri;
|
625
|
+
mso-ascii-theme-font:minor-latin;
|
626
|
+
mso-fareast-font-family:"Times New Roman";
|
627
|
+
mso-fareast-theme-font:minor-fareast;
|
628
|
+
mso-hansi-font-family:Calibri;
|
629
|
+
mso-hansi-theme-font:minor-latin;
|
630
|
+
mso-bidi-font-family:"Times New Roman";
|
631
|
+
mso-bidi-theme-font:minor-bidi;}
|
632
|
+
p.MsoListParagraphCxSpMiddle, li.MsoListParagraphCxSpMiddle, div.MsoListParagraphCxSpMiddle
|
633
|
+
{mso-style-priority:34;
|
634
|
+
mso-style-unhide:no;
|
635
|
+
mso-style-qformat:yes;
|
636
|
+
mso-style-type:export-only;
|
637
|
+
margin-top:0cm;
|
638
|
+
margin-right:0cm;
|
639
|
+
margin-bottom:0cm;
|
640
|
+
margin-left:36.0pt;
|
641
|
+
margin-bottom:.0001pt;
|
642
|
+
mso-add-space:auto;
|
643
|
+
line-height:115%;
|
644
|
+
mso-pagination:widow-orphan;
|
645
|
+
font-size:11.0pt;
|
646
|
+
font-family:"Calibri","sans-serif";
|
647
|
+
mso-ascii-font-family:Calibri;
|
648
|
+
mso-ascii-theme-font:minor-latin;
|
649
|
+
mso-fareast-font-family:"Times New Roman";
|
650
|
+
mso-fareast-theme-font:minor-fareast;
|
651
|
+
mso-hansi-font-family:Calibri;
|
652
|
+
mso-hansi-theme-font:minor-latin;
|
653
|
+
mso-bidi-font-family:"Times New Roman";
|
654
|
+
mso-bidi-theme-font:minor-bidi;}
|
655
|
+
p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxSpLast
|
656
|
+
{mso-style-priority:34;
|
657
|
+
mso-style-unhide:no;
|
658
|
+
mso-style-qformat:yes;
|
659
|
+
mso-style-type:export-only;
|
660
|
+
margin-top:0cm;
|
661
|
+
margin-right:0cm;
|
662
|
+
margin-bottom:10.0pt;
|
663
|
+
margin-left:36.0pt;
|
664
|
+
mso-add-space:auto;
|
665
|
+
line-height:115%;
|
666
|
+
mso-pagination:widow-orphan;
|
667
|
+
font-size:11.0pt;
|
668
|
+
font-family:"Calibri","sans-serif";
|
669
|
+
mso-ascii-font-family:Calibri;
|
670
|
+
mso-ascii-theme-font:minor-latin;
|
671
|
+
mso-fareast-font-family:"Times New Roman";
|
672
|
+
mso-fareast-theme-font:minor-fareast;
|
673
|
+
mso-hansi-font-family:Calibri;
|
674
|
+
mso-hansi-theme-font:minor-latin;
|
675
|
+
mso-bidi-font-family:"Times New Roman";
|
676
|
+
mso-bidi-theme-font:minor-bidi;}
|
677
|
+
span.Heading1Char
|
678
|
+
{mso-style-name:"Heading 1 Char";
|
679
|
+
mso-style-priority:9;
|
680
|
+
mso-style-unhide:no;
|
681
|
+
mso-style-locked:yes;
|
682
|
+
mso-style-link:"Heading 1";
|
683
|
+
mso-ansi-font-size:14.0pt;
|
684
|
+
mso-bidi-font-size:14.0pt;
|
685
|
+
font-family:"Cambria","serif";
|
686
|
+
mso-ascii-font-family:Cambria;
|
687
|
+
mso-ascii-theme-font:major-latin;
|
688
|
+
mso-fareast-font-family:"Times New Roman";
|
689
|
+
mso-fareast-theme-font:major-fareast;
|
690
|
+
mso-hansi-font-family:Cambria;
|
691
|
+
mso-hansi-theme-font:major-latin;
|
692
|
+
mso-bidi-font-family:"Times New Roman";
|
693
|
+
mso-bidi-theme-font:major-bidi;
|
694
|
+
color:#365F91;
|
695
|
+
mso-themecolor:accent1;
|
696
|
+
mso-themeshade:191;
|
697
|
+
font-weight:bold;}
|
698
|
+
span.TitleChar
|
699
|
+
{mso-style-name:"Title Char";
|
700
|
+
mso-style-priority:10;
|
701
|
+
mso-style-unhide:no;
|
702
|
+
mso-style-locked:yes;
|
703
|
+
mso-style-link:Title;
|
704
|
+
mso-ansi-font-size:26.0pt;
|
705
|
+
mso-bidi-font-size:26.0pt;
|
706
|
+
font-family:"Cambria","serif";
|
707
|
+
mso-ascii-font-family:Cambria;
|
708
|
+
mso-ascii-theme-font:major-latin;
|
709
|
+
mso-fareast-font-family:"Times New Roman";
|
710
|
+
mso-fareast-theme-font:major-fareast;
|
711
|
+
mso-hansi-font-family:Cambria;
|
712
|
+
mso-hansi-theme-font:major-latin;
|
713
|
+
mso-bidi-font-family:"Times New Roman";
|
714
|
+
mso-bidi-theme-font:major-bidi;
|
715
|
+
color:#17365D;
|
716
|
+
mso-themecolor:text2;
|
717
|
+
mso-themeshade:191;
|
718
|
+
letter-spacing:.25pt;
|
719
|
+
mso-font-kerning:14.0pt;}
|
720
|
+
span.Heading2Char
|
721
|
+
{mso-style-name:"Heading 2 Char";
|
722
|
+
mso-style-noshow:yes;
|
723
|
+
mso-style-priority:9;
|
724
|
+
mso-style-unhide:no;
|
725
|
+
mso-style-locked:yes;
|
726
|
+
mso-style-link:"Heading 2";
|
727
|
+
mso-ansi-font-size:13.0pt;
|
728
|
+
mso-bidi-font-size:13.0pt;
|
729
|
+
font-family:"Cambria","serif";
|
730
|
+
mso-ascii-font-family:Cambria;
|
731
|
+
mso-ascii-theme-font:major-latin;
|
732
|
+
mso-fareast-font-family:"Times New Roman";
|
733
|
+
mso-fareast-theme-font:major-fareast;
|
734
|
+
mso-hansi-font-family:Cambria;
|
735
|
+
mso-hansi-theme-font:major-latin;
|
736
|
+
mso-bidi-font-family:"Times New Roman";
|
737
|
+
mso-bidi-theme-font:major-bidi;
|
738
|
+
color:#4F81BD;
|
739
|
+
mso-themecolor:accent1;
|
740
|
+
font-weight:bold;}
|
741
|
+
span.Heading3Char
|
742
|
+
{mso-style-name:"Heading 3 Char";
|
743
|
+
mso-style-noshow:yes;
|
744
|
+
mso-style-priority:9;
|
745
|
+
mso-style-unhide:no;
|
746
|
+
mso-style-locked:yes;
|
747
|
+
mso-style-link:"Heading 3";
|
748
|
+
font-family:"Cambria","serif";
|
749
|
+
mso-ascii-font-family:Cambria;
|
750
|
+
mso-ascii-theme-font:major-latin;
|
751
|
+
mso-fareast-font-family:"Times New Roman";
|
752
|
+
mso-fareast-theme-font:major-fareast;
|
753
|
+
mso-hansi-font-family:Cambria;
|
754
|
+
mso-hansi-theme-font:major-latin;
|
755
|
+
mso-bidi-font-family:"Times New Roman";
|
756
|
+
mso-bidi-theme-font:major-bidi;
|
757
|
+
color:#4F81BD;
|
758
|
+
mso-themecolor:accent1;
|
759
|
+
font-weight:bold;}
|
760
|
+
.MsoChpDefault
|
761
|
+
{mso-style-type:export-only;
|
762
|
+
mso-default-props:yes;
|
763
|
+
mso-ascii-font-family:Calibri;
|
764
|
+
mso-ascii-theme-font:minor-latin;
|
765
|
+
mso-fareast-font-family:Calibri;
|
766
|
+
mso-fareast-theme-font:minor-latin;
|
767
|
+
mso-hansi-font-family:Calibri;
|
768
|
+
mso-hansi-theme-font:minor-latin;
|
769
|
+
mso-bidi-font-family:"Times New Roman";
|
770
|
+
mso-bidi-theme-font:minor-bidi;}
|
771
|
+
.MsoPapDefault
|
772
|
+
{mso-style-type:export-only;
|
773
|
+
margin-bottom:10.0pt;
|
774
|
+
line-height:115%;}
|
775
|
+
@page Section1
|
776
|
+
{size:612.0pt 792.0pt;
|
777
|
+
margin:72.0pt 72.0pt 72.0pt 72.0pt;
|
778
|
+
mso-header-margin:35.4pt;
|
779
|
+
mso-footer-margin:35.4pt;
|
780
|
+
mso-paper-source:0;}
|
781
|
+
div.Section1
|
782
|
+
{page:Section1;}
|
783
|
+
/* List Definitions */
|
784
|
+
@list l0
|
785
|
+
{mso-list-id:1346517726;
|
786
|
+
mso-list-type:hybrid;
|
787
|
+
mso-list-template-ids:495863470 -1595775638 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
|
788
|
+
@list l0:level1
|
789
|
+
{mso-level-number-format:bullet;
|
790
|
+
mso-level-text:\F0B7;
|
791
|
+
mso-level-tab-stop:none;
|
792
|
+
mso-level-number-position:left;
|
793
|
+
text-indent:-18.0pt;
|
794
|
+
mso-ansi-font-size:12.0pt;
|
795
|
+
font-family:Symbol;}
|
796
|
+
@list l0:level2
|
797
|
+
{mso-level-tab-stop:72.0pt;
|
798
|
+
mso-level-number-position:left;
|
799
|
+
text-indent:-18.0pt;}
|
800
|
+
@list l0:level3
|
801
|
+
{mso-level-tab-stop:108.0pt;
|
802
|
+
mso-level-number-position:left;
|
803
|
+
text-indent:-18.0pt;}
|
804
|
+
@list l0:level4
|
805
|
+
{mso-level-tab-stop:144.0pt;
|
806
|
+
mso-level-number-position:left;
|
807
|
+
text-indent:-18.0pt;}
|
808
|
+
@list l0:level5
|
809
|
+
{mso-level-tab-stop:180.0pt;
|
810
|
+
mso-level-number-position:left;
|
811
|
+
text-indent:-18.0pt;}
|
812
|
+
@list l0:level6
|
813
|
+
{mso-level-tab-stop:216.0pt;
|
814
|
+
mso-level-number-position:left;
|
815
|
+
text-indent:-18.0pt;}
|
816
|
+
@list l0:level7
|
817
|
+
{mso-level-tab-stop:252.0pt;
|
818
|
+
mso-level-number-position:left;
|
819
|
+
text-indent:-18.0pt;}
|
820
|
+
@list l0:level8
|
821
|
+
{mso-level-tab-stop:288.0pt;
|
822
|
+
mso-level-number-position:left;
|
823
|
+
text-indent:-18.0pt;}
|
824
|
+
@list l0:level9
|
825
|
+
{mso-level-tab-stop:324.0pt;
|
826
|
+
mso-level-number-position:left;
|
827
|
+
text-indent:-18.0pt;}
|
828
|
+
ol
|
829
|
+
{margin-bottom:0cm;}
|
830
|
+
ul
|
831
|
+
{margin-bottom:0cm;}
|
832
|
+
-->
|
833
|
+
</style>
|
834
|
+
<!--[if gte mso 10]>
|
835
|
+
<style>
|
836
|
+
/* Style Definitions */
|
837
|
+
table.MsoNormalTable
|
838
|
+
{mso-style-name:"Table Normal";
|
839
|
+
mso-tstyle-rowband-size:0;
|
840
|
+
mso-tstyle-colband-size:0;
|
841
|
+
mso-style-noshow:yes;
|
842
|
+
mso-style-priority:99;
|
843
|
+
mso-style-qformat:yes;
|
844
|
+
mso-style-parent:"";
|
845
|
+
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
|
846
|
+
mso-para-margin-top:0cm;
|
847
|
+
mso-para-margin-right:0cm;
|
848
|
+
mso-para-margin-bottom:10.0pt;
|
849
|
+
mso-para-margin-left:0cm;
|
850
|
+
line-height:115%;
|
851
|
+
mso-pagination:widow-orphan;
|
852
|
+
font-size:11.0pt;
|
853
|
+
font-family:"Calibri","sans-serif";
|
854
|
+
mso-ascii-font-family:Calibri;
|
855
|
+
mso-ascii-theme-font:minor-latin;
|
856
|
+
mso-hansi-font-family:Calibri;
|
857
|
+
mso-hansi-theme-font:minor-latin;}
|
858
|
+
</style>
|
859
|
+
<![endif]--><!--[if gte mso 9]><xml>
|
860
|
+
<o:shapedefaults v:ext="edit" spidmax="2050"/>
|
861
|
+
</xml><![endif]--><!--[if gte mso 9]><xml>
|
862
|
+
<o:shapelayout v:ext="edit">
|
863
|
+
<o:idmap v:ext="edit" data="1"/>
|
864
|
+
</o:shapelayout></xml><![endif]-->
|
865
|
+
</head>
|
866
|
+
|
867
|
+
<body lang=EN-US style='tab-interval:36.0pt'>
|
868
|
+
|
869
|
+
<div class=Section1>
|
870
|
+
|
871
|
+
<div style='mso-element:para-border-div;border:none;border-bottom:solid #4F81BD 1.0pt;
|
872
|
+
mso-border-bottom-themecolor:accent1;padding:0cm 0cm 4.0pt 0cm'>
|
873
|
+
|
874
|
+
<p class=MsoTitle>Elus Solver: Development Plan</p>
|
875
|
+
|
876
|
+
</div>
|
877
|
+
|
878
|
+
<h1>Release 1</h1>
|
879
|
+
|
880
|
+
<h3 style='text-indent:18.0pt'>Iteration 1</h3>
|
881
|
+
|
882
|
+
<p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt;mso-list:l0 level1 lfo1'><![if !supportLists]><span
|
883
|
+
style='font-size:12.0pt;line-height:115%;font-family:Symbol;mso-fareast-font-family:
|
884
|
+
Symbol;mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>�<span
|
885
|
+
style='font:7.0pt "Times New Roman"'>
|
886
|
+
</span></span></span><![endif]><b style='mso-bidi-font-weight:normal'><span
|
887
|
+
style='font-size:12.0pt;line-height:115%'>Gamer starts Solver. </span></b><span
|
888
|
+
style='font-size:12.0pt;line-height:115%'><o:p></o:p></span></p>
|
889
|
+
|
890
|
+
<p class=MsoListParagraphCxSpLast style='text-indent:-18.0pt;mso-list:l0 level1 lfo1'><![if !supportLists]><span
|
891
|
+
style='font-size:12.0pt;line-height:115%;font-family:Symbol;mso-fareast-font-family:
|
892
|
+
Symbol;mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>�<span
|
893
|
+
style='font:7.0pt "Times New Roman"'>
|
894
|
+
</span></span></span><![endif]><b style='mso-bidi-font-weight:normal'><span
|
895
|
+
style='font-size:12.0pt;line-height:115%'>Gamer inputs state</span></b><span
|
896
|
+
style='font-size:12.0pt;line-height:115%'>.<o:p></o:p></span></p>
|
897
|
+
|
898
|
+
<h3 style='text-indent:18.0pt'>Iteration 2</h3>
|
899
|
+
|
900
|
+
<p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt;mso-list:l0 level1 lfo1'><![if !supportLists]><span
|
901
|
+
style='font-size:12.0pt;mso-bidi-font-size:11.0pt;line-height:115%;font-family:
|
902
|
+
Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
|
903
|
+
style='mso-list:Ignore'>�<span style='font:7.0pt "Times New Roman"'>
|
904
|
+
</span></span></span><![endif]><b style='mso-bidi-font-weight:normal'><span
|
905
|
+
style='font-size:12.0pt;line-height:115%'>Solver produces hints.</span></b><span
|
906
|
+
style='font-size:12.0pt;line-height:115%'> </span></p>
|
907
|
+
|
908
|
+
<p class=MsoListParagraphCxSpLast style='text-indent:-18.0pt;mso-list:l0 level1 lfo1'><![if !supportLists]><span
|
909
|
+
style='font-size:12.0pt;mso-bidi-font-size:11.0pt;line-height:115%;font-family:
|
910
|
+
Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
|
911
|
+
style='mso-list:Ignore'>�<span style='font:7.0pt "Times New Roman"'>
|
912
|
+
</span></span></span><![endif]><b style='mso-bidi-font-weight:normal'><span
|
913
|
+
style='font-size:12.0pt;line-height:115%'>Gamer makes step.</span></b></p>
|
914
|
+
|
915
|
+
<p class=MsoNormal>Acceptance Tests:</p>
|
916
|
+
|
917
|
+
<p class=MsoNormal><o:p> </o:p></p>
|
918
|
+
|
919
|
+
</div>
|
920
|
+
|
921
|
+
</body>
|
922
|
+
|
923
|
+
</html>
|