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
@@ -0,0 +1,2 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
2
|
+
<a:clrMap xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" bg1="lt1" tx1="dk1" bg2="lt2" tx2="dk2" accent1="accent1" accent2="accent2" accent3="accent3" accent4="accent4" accent5="accent5" accent6="accent6" hlink="hlink" folHlink="folHlink"/>
|
Binary file
|
@@ -0,0 +1,959 @@
|
|
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="user_stories_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>8</o:Revision>
|
19
|
+
<o:TotalTime>1794</o:TotalTime>
|
20
|
+
<o:Created>2009-09-18T05:35:00Z</o:Created>
|
21
|
+
<o:LastSaved>2009-09-24T10:11:00Z</o:LastSaved>
|
22
|
+
<o:Pages>1</o:Pages>
|
23
|
+
<o:Words>184</o:Words>
|
24
|
+
<o:Characters>1049</o:Characters>
|
25
|
+
<o:Company>Kaspersky LAB</o:Company>
|
26
|
+
<o:Lines>8</o:Lines>
|
27
|
+
<o:Paragraphs>2</o:Paragraphs>
|
28
|
+
<o:CharactersWithSpaces>1231</o:CharactersWithSpaces>
|
29
|
+
<o:Version>12.00</o:Version>
|
30
|
+
</o:DocumentProperties>
|
31
|
+
</xml><![endif]-->
|
32
|
+
<link rel=themeData href="user_stories_files/themedata.thmx">
|
33
|
+
<link rel=colorSchemeMapping href="user_stories_files/colorschememapping.xml">
|
34
|
+
<!--[if gte mso 9]><xml>
|
35
|
+
<w:WordDocument>
|
36
|
+
<w:Zoom>125</w:Zoom>
|
37
|
+
<w:SpellingState>Clean</w:SpellingState>
|
38
|
+
<w:GrammarState>Clean</w:GrammarState>
|
39
|
+
<w:TrackMoves>false</w:TrackMoves>
|
40
|
+
<w:TrackFormatting/>
|
41
|
+
<w:PunctuationKerning/>
|
42
|
+
<w:ValidateAgainstSchemas/>
|
43
|
+
<w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
|
44
|
+
<w:IgnoreMixedContent>false</w:IgnoreMixedContent>
|
45
|
+
<w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
|
46
|
+
<w:DoNotPromoteQF/>
|
47
|
+
<w:LidThemeOther>EN-US</w:LidThemeOther>
|
48
|
+
<w:LidThemeAsian>X-NONE</w:LidThemeAsian>
|
49
|
+
<w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
|
50
|
+
<w:Compatibility>
|
51
|
+
<w:BreakWrappedTables/>
|
52
|
+
<w:SnapToGridInCell/>
|
53
|
+
<w:WrapTextWithPunct/>
|
54
|
+
<w:UseAsianBreakRules/>
|
55
|
+
<w:DontGrowAutofit/>
|
56
|
+
<w:SplitPgBreakAndParaMark/>
|
57
|
+
<w:DontVertAlignCellWithSp/>
|
58
|
+
<w:DontBreakConstrainedForcedTables/>
|
59
|
+
<w:DontVertAlignInTxbx/>
|
60
|
+
<w:Word11KerningPairs/>
|
61
|
+
<w:CachedColBalance/>
|
62
|
+
<w:UseFELayout/>
|
63
|
+
</w:Compatibility>
|
64
|
+
<w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
|
65
|
+
<m:mathPr>
|
66
|
+
<m:mathFont m:val="Cambria Math"/>
|
67
|
+
<m:brkBin m:val="before"/>
|
68
|
+
<m:brkBinSub m:val="--"/>
|
69
|
+
<m:smallFrac m:val="off"/>
|
70
|
+
<m:dispDef/>
|
71
|
+
<m:lMargin m:val="0"/>
|
72
|
+
<m:rMargin m:val="0"/>
|
73
|
+
<m:defJc m:val="centerGroup"/>
|
74
|
+
<m:wrapIndent m:val="1440"/>
|
75
|
+
<m:intLim m:val="subSup"/>
|
76
|
+
<m:naryLim m:val="undOvr"/>
|
77
|
+
</m:mathPr></w:WordDocument>
|
78
|
+
</xml><![endif]--><!--[if gte mso 9]><xml>
|
79
|
+
<w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
|
80
|
+
DefSemiHidden="true" DefQFormat="false" DefPriority="99"
|
81
|
+
LatentStyleCount="267">
|
82
|
+
<w:LsdException Locked="false" Priority="0" SemiHidden="false"
|
83
|
+
UnhideWhenUsed="false" QFormat="true" Name="Normal"/>
|
84
|
+
<w:LsdException Locked="false" Priority="9" SemiHidden="false"
|
85
|
+
UnhideWhenUsed="false" QFormat="true" Name="heading 1"/>
|
86
|
+
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/>
|
87
|
+
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/>
|
88
|
+
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/>
|
89
|
+
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/>
|
90
|
+
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/>
|
91
|
+
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/>
|
92
|
+
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/>
|
93
|
+
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/>
|
94
|
+
<w:LsdException Locked="false" Priority="39" Name="toc 1"/>
|
95
|
+
<w:LsdException Locked="false" Priority="39" Name="toc 2"/>
|
96
|
+
<w:LsdException Locked="false" Priority="39" Name="toc 3"/>
|
97
|
+
<w:LsdException Locked="false" Priority="39" Name="toc 4"/>
|
98
|
+
<w:LsdException Locked="false" Priority="39" Name="toc 5"/>
|
99
|
+
<w:LsdException Locked="false" Priority="39" Name="toc 6"/>
|
100
|
+
<w:LsdException Locked="false" Priority="39" Name="toc 7"/>
|
101
|
+
<w:LsdException Locked="false" Priority="39" Name="toc 8"/>
|
102
|
+
<w:LsdException Locked="false" Priority="39" Name="toc 9"/>
|
103
|
+
<w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/>
|
104
|
+
<w:LsdException Locked="false" Priority="10" SemiHidden="false"
|
105
|
+
UnhideWhenUsed="false" QFormat="true" Name="Title"/>
|
106
|
+
<w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>
|
107
|
+
<w:LsdException Locked="false" Priority="11" SemiHidden="false"
|
108
|
+
UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/>
|
109
|
+
<w:LsdException Locked="false" Priority="22" SemiHidden="false"
|
110
|
+
UnhideWhenUsed="false" QFormat="true" Name="Strong"/>
|
111
|
+
<w:LsdException Locked="false" Priority="20" SemiHidden="false"
|
112
|
+
UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/>
|
113
|
+
<w:LsdException Locked="false" Priority="59" SemiHidden="false"
|
114
|
+
UnhideWhenUsed="false" Name="Table Grid"/>
|
115
|
+
<w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/>
|
116
|
+
<w:LsdException Locked="false" Priority="1" SemiHidden="false"
|
117
|
+
UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/>
|
118
|
+
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
|
119
|
+
UnhideWhenUsed="false" Name="Light Shading"/>
|
120
|
+
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
|
121
|
+
UnhideWhenUsed="false" Name="Light List"/>
|
122
|
+
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
|
123
|
+
UnhideWhenUsed="false" Name="Light Grid"/>
|
124
|
+
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
|
125
|
+
UnhideWhenUsed="false" Name="Medium Shading 1"/>
|
126
|
+
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
|
127
|
+
UnhideWhenUsed="false" Name="Medium Shading 2"/>
|
128
|
+
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
|
129
|
+
UnhideWhenUsed="false" Name="Medium List 1"/>
|
130
|
+
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
|
131
|
+
UnhideWhenUsed="false" Name="Medium List 2"/>
|
132
|
+
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
|
133
|
+
UnhideWhenUsed="false" Name="Medium Grid 1"/>
|
134
|
+
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
|
135
|
+
UnhideWhenUsed="false" Name="Medium Grid 2"/>
|
136
|
+
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
|
137
|
+
UnhideWhenUsed="false" Name="Medium Grid 3"/>
|
138
|
+
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
|
139
|
+
UnhideWhenUsed="false" Name="Dark List"/>
|
140
|
+
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
|
141
|
+
UnhideWhenUsed="false" Name="Colorful Shading"/>
|
142
|
+
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
|
143
|
+
UnhideWhenUsed="false" Name="Colorful List"/>
|
144
|
+
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
|
145
|
+
UnhideWhenUsed="false" Name="Colorful Grid"/>
|
146
|
+
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
|
147
|
+
UnhideWhenUsed="false" Name="Light Shading Accent 1"/>
|
148
|
+
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
|
149
|
+
UnhideWhenUsed="false" Name="Light List Accent 1"/>
|
150
|
+
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
|
151
|
+
UnhideWhenUsed="false" Name="Light Grid Accent 1"/>
|
152
|
+
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
|
153
|
+
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/>
|
154
|
+
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
|
155
|
+
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/>
|
156
|
+
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
|
157
|
+
UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/>
|
158
|
+
<w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/>
|
159
|
+
<w:LsdException Locked="false" Priority="34" SemiHidden="false"
|
160
|
+
UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/>
|
161
|
+
<w:LsdException Locked="false" Priority="29" SemiHidden="false"
|
162
|
+
UnhideWhenUsed="false" QFormat="true" Name="Quote"/>
|
163
|
+
<w:LsdException Locked="false" Priority="30" SemiHidden="false"
|
164
|
+
UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/>
|
165
|
+
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
|
166
|
+
UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/>
|
167
|
+
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
|
168
|
+
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/>
|
169
|
+
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
|
170
|
+
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/>
|
171
|
+
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
|
172
|
+
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/>
|
173
|
+
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
|
174
|
+
UnhideWhenUsed="false" Name="Dark List Accent 1"/>
|
175
|
+
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
|
176
|
+
UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/>
|
177
|
+
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
|
178
|
+
UnhideWhenUsed="false" Name="Colorful List Accent 1"/>
|
179
|
+
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
|
180
|
+
UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/>
|
181
|
+
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
|
182
|
+
UnhideWhenUsed="false" Name="Light Shading Accent 2"/>
|
183
|
+
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
|
184
|
+
UnhideWhenUsed="false" Name="Light List Accent 2"/>
|
185
|
+
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
|
186
|
+
UnhideWhenUsed="false" Name="Light Grid Accent 2"/>
|
187
|
+
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
|
188
|
+
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/>
|
189
|
+
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
|
190
|
+
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/>
|
191
|
+
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
|
192
|
+
UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/>
|
193
|
+
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
|
194
|
+
UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/>
|
195
|
+
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
|
196
|
+
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/>
|
197
|
+
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
|
198
|
+
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/>
|
199
|
+
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
|
200
|
+
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/>
|
201
|
+
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
|
202
|
+
UnhideWhenUsed="false" Name="Dark List Accent 2"/>
|
203
|
+
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
|
204
|
+
UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/>
|
205
|
+
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
|
206
|
+
UnhideWhenUsed="false" Name="Colorful List Accent 2"/>
|
207
|
+
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
|
208
|
+
UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/>
|
209
|
+
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
|
210
|
+
UnhideWhenUsed="false" Name="Light Shading Accent 3"/>
|
211
|
+
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
|
212
|
+
UnhideWhenUsed="false" Name="Light List Accent 3"/>
|
213
|
+
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
|
214
|
+
UnhideWhenUsed="false" Name="Light Grid Accent 3"/>
|
215
|
+
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
|
216
|
+
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/>
|
217
|
+
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
|
218
|
+
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/>
|
219
|
+
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
|
220
|
+
UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/>
|
221
|
+
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
|
222
|
+
UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/>
|
223
|
+
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
|
224
|
+
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/>
|
225
|
+
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
|
226
|
+
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/>
|
227
|
+
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
|
228
|
+
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/>
|
229
|
+
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
|
230
|
+
UnhideWhenUsed="false" Name="Dark List Accent 3"/>
|
231
|
+
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
|
232
|
+
UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/>
|
233
|
+
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
|
234
|
+
UnhideWhenUsed="false" Name="Colorful List Accent 3"/>
|
235
|
+
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
|
236
|
+
UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/>
|
237
|
+
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
|
238
|
+
UnhideWhenUsed="false" Name="Light Shading Accent 4"/>
|
239
|
+
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
|
240
|
+
UnhideWhenUsed="false" Name="Light List Accent 4"/>
|
241
|
+
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
|
242
|
+
UnhideWhenUsed="false" Name="Light Grid Accent 4"/>
|
243
|
+
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
|
244
|
+
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/>
|
245
|
+
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
|
246
|
+
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/>
|
247
|
+
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
|
248
|
+
UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/>
|
249
|
+
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
|
250
|
+
UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/>
|
251
|
+
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
|
252
|
+
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/>
|
253
|
+
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
|
254
|
+
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/>
|
255
|
+
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
|
256
|
+
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/>
|
257
|
+
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
|
258
|
+
UnhideWhenUsed="false" Name="Dark List Accent 4"/>
|
259
|
+
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
|
260
|
+
UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/>
|
261
|
+
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
|
262
|
+
UnhideWhenUsed="false" Name="Colorful List Accent 4"/>
|
263
|
+
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
|
264
|
+
UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/>
|
265
|
+
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
|
266
|
+
UnhideWhenUsed="false" Name="Light Shading Accent 5"/>
|
267
|
+
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
|
268
|
+
UnhideWhenUsed="false" Name="Light List Accent 5"/>
|
269
|
+
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
|
270
|
+
UnhideWhenUsed="false" Name="Light Grid Accent 5"/>
|
271
|
+
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
|
272
|
+
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/>
|
273
|
+
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
|
274
|
+
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/>
|
275
|
+
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
|
276
|
+
UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/>
|
277
|
+
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
|
278
|
+
UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/>
|
279
|
+
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
|
280
|
+
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/>
|
281
|
+
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
|
282
|
+
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/>
|
283
|
+
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
|
284
|
+
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/>
|
285
|
+
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
|
286
|
+
UnhideWhenUsed="false" Name="Dark List Accent 5"/>
|
287
|
+
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
|
288
|
+
UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/>
|
289
|
+
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
|
290
|
+
UnhideWhenUsed="false" Name="Colorful List Accent 5"/>
|
291
|
+
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
|
292
|
+
UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/>
|
293
|
+
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
|
294
|
+
UnhideWhenUsed="false" Name="Light Shading Accent 6"/>
|
295
|
+
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
|
296
|
+
UnhideWhenUsed="false" Name="Light List Accent 6"/>
|
297
|
+
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
|
298
|
+
UnhideWhenUsed="false" Name="Light Grid Accent 6"/>
|
299
|
+
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
|
300
|
+
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/>
|
301
|
+
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
|
302
|
+
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/>
|
303
|
+
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
|
304
|
+
UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/>
|
305
|
+
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
|
306
|
+
UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/>
|
307
|
+
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
|
308
|
+
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/>
|
309
|
+
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
|
310
|
+
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/>
|
311
|
+
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
|
312
|
+
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/>
|
313
|
+
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
|
314
|
+
UnhideWhenUsed="false" Name="Dark List Accent 6"/>
|
315
|
+
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
|
316
|
+
UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/>
|
317
|
+
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
|
318
|
+
UnhideWhenUsed="false" Name="Colorful List Accent 6"/>
|
319
|
+
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
|
320
|
+
UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/>
|
321
|
+
<w:LsdException Locked="false" Priority="19" SemiHidden="false"
|
322
|
+
UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/>
|
323
|
+
<w:LsdException Locked="false" Priority="21" SemiHidden="false"
|
324
|
+
UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/>
|
325
|
+
<w:LsdException Locked="false" Priority="31" SemiHidden="false"
|
326
|
+
UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/>
|
327
|
+
<w:LsdException Locked="false" Priority="32" SemiHidden="false"
|
328
|
+
UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/>
|
329
|
+
<w:LsdException Locked="false" Priority="33" SemiHidden="false"
|
330
|
+
UnhideWhenUsed="false" QFormat="true" Name="Book Title"/>
|
331
|
+
<w:LsdException Locked="false" Priority="37" Name="Bibliography"/>
|
332
|
+
<w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/>
|
333
|
+
</w:LatentStyles>
|
334
|
+
</xml><![endif]-->
|
335
|
+
<style>
|
336
|
+
<!--
|
337
|
+
/* Font Definitions */
|
338
|
+
@font-face
|
339
|
+
{font-family:"Cambria Math";
|
340
|
+
panose-1:2 4 5 3 5 4 6 3 2 4;
|
341
|
+
mso-font-charset:1;
|
342
|
+
mso-generic-font-family:roman;
|
343
|
+
mso-font-format:other;
|
344
|
+
mso-font-pitch:variable;
|
345
|
+
mso-font-signature:0 0 0 0 0 0;}
|
346
|
+
@font-face
|
347
|
+
{font-family:Cambria;
|
348
|
+
panose-1:2 4 5 3 5 4 6 3 2 4;
|
349
|
+
mso-font-charset:204;
|
350
|
+
mso-generic-font-family:roman;
|
351
|
+
mso-font-pitch:variable;
|
352
|
+
mso-font-signature:-1610611985 1073741899 0 0 159 0;}
|
353
|
+
@font-face
|
354
|
+
{font-family:Calibri;
|
355
|
+
panose-1:2 15 5 2 2 2 4 3 2 4;
|
356
|
+
mso-font-charset:204;
|
357
|
+
mso-generic-font-family:swiss;
|
358
|
+
mso-font-pitch:variable;
|
359
|
+
mso-font-signature:-1610611985 1073750139 0 0 159 0;}
|
360
|
+
/* Style Definitions */
|
361
|
+
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
362
|
+
{mso-style-unhide:no;
|
363
|
+
mso-style-qformat:yes;
|
364
|
+
mso-style-parent:"";
|
365
|
+
margin-top:0cm;
|
366
|
+
margin-right:0cm;
|
367
|
+
margin-bottom:10.0pt;
|
368
|
+
margin-left:0cm;
|
369
|
+
line-height:115%;
|
370
|
+
mso-pagination:widow-orphan;
|
371
|
+
font-size:11.0pt;
|
372
|
+
font-family:"Calibri","sans-serif";
|
373
|
+
mso-ascii-font-family:Calibri;
|
374
|
+
mso-ascii-theme-font:minor-latin;
|
375
|
+
mso-fareast-font-family:"Times New Roman";
|
376
|
+
mso-fareast-theme-font:minor-fareast;
|
377
|
+
mso-hansi-font-family:Calibri;
|
378
|
+
mso-hansi-theme-font:minor-latin;
|
379
|
+
mso-bidi-font-family:"Times New Roman";
|
380
|
+
mso-bidi-theme-font:minor-bidi;}
|
381
|
+
h1
|
382
|
+
{mso-style-priority:9;
|
383
|
+
mso-style-unhide:no;
|
384
|
+
mso-style-qformat:yes;
|
385
|
+
mso-style-link:"Heading 1 Char";
|
386
|
+
mso-style-next:Normal;
|
387
|
+
margin-top:24.0pt;
|
388
|
+
margin-right:0cm;
|
389
|
+
margin-bottom:0cm;
|
390
|
+
margin-left:0cm;
|
391
|
+
margin-bottom:.0001pt;
|
392
|
+
line-height:115%;
|
393
|
+
mso-pagination:widow-orphan lines-together;
|
394
|
+
page-break-after:avoid;
|
395
|
+
mso-outline-level:1;
|
396
|
+
font-size:14.0pt;
|
397
|
+
font-family:"Cambria","serif";
|
398
|
+
mso-ascii-font-family:Cambria;
|
399
|
+
mso-ascii-theme-font:major-latin;
|
400
|
+
mso-fareast-font-family:"Times New Roman";
|
401
|
+
mso-fareast-theme-font:major-fareast;
|
402
|
+
mso-hansi-font-family:Cambria;
|
403
|
+
mso-hansi-theme-font:major-latin;
|
404
|
+
mso-bidi-font-family:"Times New Roman";
|
405
|
+
mso-bidi-theme-font:major-bidi;
|
406
|
+
color:#365F91;
|
407
|
+
mso-themecolor:accent1;
|
408
|
+
mso-themeshade:191;
|
409
|
+
mso-font-kerning:0pt;}
|
410
|
+
h2
|
411
|
+
{mso-style-noshow:yes;
|
412
|
+
mso-style-priority:9;
|
413
|
+
mso-style-qformat:yes;
|
414
|
+
mso-style-link:"Heading 2 Char";
|
415
|
+
mso-style-next:Normal;
|
416
|
+
margin-top:10.0pt;
|
417
|
+
margin-right:0cm;
|
418
|
+
margin-bottom:0cm;
|
419
|
+
margin-left:0cm;
|
420
|
+
margin-bottom:.0001pt;
|
421
|
+
line-height:115%;
|
422
|
+
mso-pagination:widow-orphan lines-together;
|
423
|
+
page-break-after:avoid;
|
424
|
+
mso-outline-level:2;
|
425
|
+
font-size:13.0pt;
|
426
|
+
font-family:"Cambria","serif";
|
427
|
+
mso-ascii-font-family:Cambria;
|
428
|
+
mso-ascii-theme-font:major-latin;
|
429
|
+
mso-fareast-font-family:"Times New Roman";
|
430
|
+
mso-fareast-theme-font:major-fareast;
|
431
|
+
mso-hansi-font-family:Cambria;
|
432
|
+
mso-hansi-theme-font:major-latin;
|
433
|
+
mso-bidi-font-family:"Times New Roman";
|
434
|
+
mso-bidi-theme-font:major-bidi;
|
435
|
+
color:#4F81BD;
|
436
|
+
mso-themecolor:accent1;}
|
437
|
+
h3
|
438
|
+
{mso-style-noshow:yes;
|
439
|
+
mso-style-priority:9;
|
440
|
+
mso-style-qformat:yes;
|
441
|
+
mso-style-link:"Heading 3 Char";
|
442
|
+
mso-style-next:Normal;
|
443
|
+
margin-top:10.0pt;
|
444
|
+
margin-right:0cm;
|
445
|
+
margin-bottom:0cm;
|
446
|
+
margin-left:0cm;
|
447
|
+
margin-bottom:.0001pt;
|
448
|
+
line-height:115%;
|
449
|
+
mso-pagination:widow-orphan lines-together;
|
450
|
+
page-break-after:avoid;
|
451
|
+
mso-outline-level:3;
|
452
|
+
font-size:11.0pt;
|
453
|
+
font-family:"Cambria","serif";
|
454
|
+
mso-ascii-font-family:Cambria;
|
455
|
+
mso-ascii-theme-font:major-latin;
|
456
|
+
mso-fareast-font-family:"Times New Roman";
|
457
|
+
mso-fareast-theme-font:major-fareast;
|
458
|
+
mso-hansi-font-family:Cambria;
|
459
|
+
mso-hansi-theme-font:major-latin;
|
460
|
+
mso-bidi-font-family:"Times New Roman";
|
461
|
+
mso-bidi-theme-font:major-bidi;
|
462
|
+
color:#4F81BD;
|
463
|
+
mso-themecolor:accent1;}
|
464
|
+
p.MsoTitle, li.MsoTitle, div.MsoTitle
|
465
|
+
{mso-style-priority:10;
|
466
|
+
mso-style-unhide:no;
|
467
|
+
mso-style-qformat:yes;
|
468
|
+
mso-style-link:"Title Char";
|
469
|
+
mso-style-next:Normal;
|
470
|
+
margin-top:0cm;
|
471
|
+
margin-right:0cm;
|
472
|
+
margin-bottom:15.0pt;
|
473
|
+
margin-left:0cm;
|
474
|
+
mso-add-space:auto;
|
475
|
+
mso-pagination:widow-orphan;
|
476
|
+
border:none;
|
477
|
+
mso-border-bottom-alt:solid #4F81BD 1.0pt;
|
478
|
+
mso-border-bottom-themecolor:accent1;
|
479
|
+
padding:0cm;
|
480
|
+
mso-padding-alt:0cm 0cm 4.0pt 0cm;
|
481
|
+
font-size:26.0pt;
|
482
|
+
font-family:"Cambria","serif";
|
483
|
+
mso-ascii-font-family:Cambria;
|
484
|
+
mso-ascii-theme-font:major-latin;
|
485
|
+
mso-fareast-font-family:"Times New Roman";
|
486
|
+
mso-fareast-theme-font:major-fareast;
|
487
|
+
mso-hansi-font-family:Cambria;
|
488
|
+
mso-hansi-theme-font:major-latin;
|
489
|
+
mso-bidi-font-family:"Times New Roman";
|
490
|
+
mso-bidi-theme-font:major-bidi;
|
491
|
+
color:#17365D;
|
492
|
+
mso-themecolor:text2;
|
493
|
+
mso-themeshade:191;
|
494
|
+
letter-spacing:.25pt;
|
495
|
+
mso-font-kerning:14.0pt;}
|
496
|
+
p.MsoTitleCxSpFirst, li.MsoTitleCxSpFirst, div.MsoTitleCxSpFirst
|
497
|
+
{mso-style-priority:10;
|
498
|
+
mso-style-unhide:no;
|
499
|
+
mso-style-qformat:yes;
|
500
|
+
mso-style-link:"Title Char";
|
501
|
+
mso-style-next:Normal;
|
502
|
+
mso-style-type:export-only;
|
503
|
+
margin:0cm;
|
504
|
+
margin-bottom:.0001pt;
|
505
|
+
mso-add-space:auto;
|
506
|
+
mso-pagination:widow-orphan;
|
507
|
+
border:none;
|
508
|
+
mso-border-bottom-alt:solid #4F81BD 1.0pt;
|
509
|
+
mso-border-bottom-themecolor:accent1;
|
510
|
+
padding:0cm;
|
511
|
+
mso-padding-alt:0cm 0cm 4.0pt 0cm;
|
512
|
+
font-size:26.0pt;
|
513
|
+
font-family:"Cambria","serif";
|
514
|
+
mso-ascii-font-family:Cambria;
|
515
|
+
mso-ascii-theme-font:major-latin;
|
516
|
+
mso-fareast-font-family:"Times New Roman";
|
517
|
+
mso-fareast-theme-font:major-fareast;
|
518
|
+
mso-hansi-font-family:Cambria;
|
519
|
+
mso-hansi-theme-font:major-latin;
|
520
|
+
mso-bidi-font-family:"Times New Roman";
|
521
|
+
mso-bidi-theme-font:major-bidi;
|
522
|
+
color:#17365D;
|
523
|
+
mso-themecolor:text2;
|
524
|
+
mso-themeshade:191;
|
525
|
+
letter-spacing:.25pt;
|
526
|
+
mso-font-kerning:14.0pt;}
|
527
|
+
p.MsoTitleCxSpMiddle, li.MsoTitleCxSpMiddle, div.MsoTitleCxSpMiddle
|
528
|
+
{mso-style-priority:10;
|
529
|
+
mso-style-unhide:no;
|
530
|
+
mso-style-qformat:yes;
|
531
|
+
mso-style-link:"Title Char";
|
532
|
+
mso-style-next:Normal;
|
533
|
+
mso-style-type:export-only;
|
534
|
+
margin:0cm;
|
535
|
+
margin-bottom:.0001pt;
|
536
|
+
mso-add-space:auto;
|
537
|
+
mso-pagination:widow-orphan;
|
538
|
+
border:none;
|
539
|
+
mso-border-bottom-alt:solid #4F81BD 1.0pt;
|
540
|
+
mso-border-bottom-themecolor:accent1;
|
541
|
+
padding:0cm;
|
542
|
+
mso-padding-alt:0cm 0cm 4.0pt 0cm;
|
543
|
+
font-size:26.0pt;
|
544
|
+
font-family:"Cambria","serif";
|
545
|
+
mso-ascii-font-family:Cambria;
|
546
|
+
mso-ascii-theme-font:major-latin;
|
547
|
+
mso-fareast-font-family:"Times New Roman";
|
548
|
+
mso-fareast-theme-font:major-fareast;
|
549
|
+
mso-hansi-font-family:Cambria;
|
550
|
+
mso-hansi-theme-font:major-latin;
|
551
|
+
mso-bidi-font-family:"Times New Roman";
|
552
|
+
mso-bidi-theme-font:major-bidi;
|
553
|
+
color:#17365D;
|
554
|
+
mso-themecolor:text2;
|
555
|
+
mso-themeshade:191;
|
556
|
+
letter-spacing:.25pt;
|
557
|
+
mso-font-kerning:14.0pt;}
|
558
|
+
p.MsoTitleCxSpLast, li.MsoTitleCxSpLast, div.MsoTitleCxSpLast
|
559
|
+
{mso-style-priority:10;
|
560
|
+
mso-style-unhide:no;
|
561
|
+
mso-style-qformat:yes;
|
562
|
+
mso-style-link:"Title Char";
|
563
|
+
mso-style-next:Normal;
|
564
|
+
mso-style-type:export-only;
|
565
|
+
margin-top:0cm;
|
566
|
+
margin-right:0cm;
|
567
|
+
margin-bottom:15.0pt;
|
568
|
+
margin-left:0cm;
|
569
|
+
mso-add-space:auto;
|
570
|
+
mso-pagination:widow-orphan;
|
571
|
+
border:none;
|
572
|
+
mso-border-bottom-alt:solid #4F81BD 1.0pt;
|
573
|
+
mso-border-bottom-themecolor:accent1;
|
574
|
+
padding:0cm;
|
575
|
+
mso-padding-alt:0cm 0cm 4.0pt 0cm;
|
576
|
+
font-size:26.0pt;
|
577
|
+
font-family:"Cambria","serif";
|
578
|
+
mso-ascii-font-family:Cambria;
|
579
|
+
mso-ascii-theme-font:major-latin;
|
580
|
+
mso-fareast-font-family:"Times New Roman";
|
581
|
+
mso-fareast-theme-font:major-fareast;
|
582
|
+
mso-hansi-font-family:Cambria;
|
583
|
+
mso-hansi-theme-font:major-latin;
|
584
|
+
mso-bidi-font-family:"Times New Roman";
|
585
|
+
mso-bidi-theme-font:major-bidi;
|
586
|
+
color:#17365D;
|
587
|
+
mso-themecolor:text2;
|
588
|
+
mso-themeshade:191;
|
589
|
+
letter-spacing:.25pt;
|
590
|
+
mso-font-kerning:14.0pt;}
|
591
|
+
p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph
|
592
|
+
{mso-style-priority:34;
|
593
|
+
mso-style-unhide:no;
|
594
|
+
mso-style-qformat:yes;
|
595
|
+
margin-top:0cm;
|
596
|
+
margin-right:0cm;
|
597
|
+
margin-bottom:10.0pt;
|
598
|
+
margin-left:36.0pt;
|
599
|
+
mso-add-space:auto;
|
600
|
+
line-height:115%;
|
601
|
+
mso-pagination:widow-orphan;
|
602
|
+
font-size:11.0pt;
|
603
|
+
font-family:"Calibri","sans-serif";
|
604
|
+
mso-ascii-font-family:Calibri;
|
605
|
+
mso-ascii-theme-font:minor-latin;
|
606
|
+
mso-fareast-font-family:"Times New Roman";
|
607
|
+
mso-fareast-theme-font:minor-fareast;
|
608
|
+
mso-hansi-font-family:Calibri;
|
609
|
+
mso-hansi-theme-font:minor-latin;
|
610
|
+
mso-bidi-font-family:"Times New Roman";
|
611
|
+
mso-bidi-theme-font:minor-bidi;}
|
612
|
+
p.MsoListParagraphCxSpFirst, li.MsoListParagraphCxSpFirst, div.MsoListParagraphCxSpFirst
|
613
|
+
{mso-style-priority:34;
|
614
|
+
mso-style-unhide:no;
|
615
|
+
mso-style-qformat:yes;
|
616
|
+
mso-style-type:export-only;
|
617
|
+
margin-top:0cm;
|
618
|
+
margin-right:0cm;
|
619
|
+
margin-bottom:0cm;
|
620
|
+
margin-left:36.0pt;
|
621
|
+
margin-bottom:.0001pt;
|
622
|
+
mso-add-space:auto;
|
623
|
+
line-height:115%;
|
624
|
+
mso-pagination:widow-orphan;
|
625
|
+
font-size:11.0pt;
|
626
|
+
font-family:"Calibri","sans-serif";
|
627
|
+
mso-ascii-font-family:Calibri;
|
628
|
+
mso-ascii-theme-font:minor-latin;
|
629
|
+
mso-fareast-font-family:"Times New Roman";
|
630
|
+
mso-fareast-theme-font:minor-fareast;
|
631
|
+
mso-hansi-font-family:Calibri;
|
632
|
+
mso-hansi-theme-font:minor-latin;
|
633
|
+
mso-bidi-font-family:"Times New Roman";
|
634
|
+
mso-bidi-theme-font:minor-bidi;}
|
635
|
+
p.MsoListParagraphCxSpMiddle, li.MsoListParagraphCxSpMiddle, div.MsoListParagraphCxSpMiddle
|
636
|
+
{mso-style-priority:34;
|
637
|
+
mso-style-unhide:no;
|
638
|
+
mso-style-qformat:yes;
|
639
|
+
mso-style-type:export-only;
|
640
|
+
margin-top:0cm;
|
641
|
+
margin-right:0cm;
|
642
|
+
margin-bottom:0cm;
|
643
|
+
margin-left:36.0pt;
|
644
|
+
margin-bottom:.0001pt;
|
645
|
+
mso-add-space:auto;
|
646
|
+
line-height:115%;
|
647
|
+
mso-pagination:widow-orphan;
|
648
|
+
font-size:11.0pt;
|
649
|
+
font-family:"Calibri","sans-serif";
|
650
|
+
mso-ascii-font-family:Calibri;
|
651
|
+
mso-ascii-theme-font:minor-latin;
|
652
|
+
mso-fareast-font-family:"Times New Roman";
|
653
|
+
mso-fareast-theme-font:minor-fareast;
|
654
|
+
mso-hansi-font-family:Calibri;
|
655
|
+
mso-hansi-theme-font:minor-latin;
|
656
|
+
mso-bidi-font-family:"Times New Roman";
|
657
|
+
mso-bidi-theme-font:minor-bidi;}
|
658
|
+
p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxSpLast
|
659
|
+
{mso-style-priority:34;
|
660
|
+
mso-style-unhide:no;
|
661
|
+
mso-style-qformat:yes;
|
662
|
+
mso-style-type:export-only;
|
663
|
+
margin-top:0cm;
|
664
|
+
margin-right:0cm;
|
665
|
+
margin-bottom:10.0pt;
|
666
|
+
margin-left:36.0pt;
|
667
|
+
mso-add-space:auto;
|
668
|
+
line-height:115%;
|
669
|
+
mso-pagination:widow-orphan;
|
670
|
+
font-size:11.0pt;
|
671
|
+
font-family:"Calibri","sans-serif";
|
672
|
+
mso-ascii-font-family:Calibri;
|
673
|
+
mso-ascii-theme-font:minor-latin;
|
674
|
+
mso-fareast-font-family:"Times New Roman";
|
675
|
+
mso-fareast-theme-font:minor-fareast;
|
676
|
+
mso-hansi-font-family:Calibri;
|
677
|
+
mso-hansi-theme-font:minor-latin;
|
678
|
+
mso-bidi-font-family:"Times New Roman";
|
679
|
+
mso-bidi-theme-font:minor-bidi;}
|
680
|
+
span.Heading1Char
|
681
|
+
{mso-style-name:"Heading 1 Char";
|
682
|
+
mso-style-priority:9;
|
683
|
+
mso-style-unhide:no;
|
684
|
+
mso-style-locked:yes;
|
685
|
+
mso-style-link:"Heading 1";
|
686
|
+
mso-ansi-font-size:14.0pt;
|
687
|
+
mso-bidi-font-size:14.0pt;
|
688
|
+
font-family:"Cambria","serif";
|
689
|
+
mso-ascii-font-family:Cambria;
|
690
|
+
mso-ascii-theme-font:major-latin;
|
691
|
+
mso-fareast-font-family:"Times New Roman";
|
692
|
+
mso-fareast-theme-font:major-fareast;
|
693
|
+
mso-hansi-font-family:Cambria;
|
694
|
+
mso-hansi-theme-font:major-latin;
|
695
|
+
mso-bidi-font-family:"Times New Roman";
|
696
|
+
mso-bidi-theme-font:major-bidi;
|
697
|
+
color:#365F91;
|
698
|
+
mso-themecolor:accent1;
|
699
|
+
mso-themeshade:191;
|
700
|
+
font-weight:bold;}
|
701
|
+
span.Heading2Char
|
702
|
+
{mso-style-name:"Heading 2 Char";
|
703
|
+
mso-style-noshow:yes;
|
704
|
+
mso-style-priority:9;
|
705
|
+
mso-style-unhide:no;
|
706
|
+
mso-style-locked:yes;
|
707
|
+
mso-style-link:"Heading 2";
|
708
|
+
mso-ansi-font-size:13.0pt;
|
709
|
+
mso-bidi-font-size:13.0pt;
|
710
|
+
font-family:"Cambria","serif";
|
711
|
+
mso-ascii-font-family:Cambria;
|
712
|
+
mso-ascii-theme-font:major-latin;
|
713
|
+
mso-fareast-font-family:"Times New Roman";
|
714
|
+
mso-fareast-theme-font:major-fareast;
|
715
|
+
mso-hansi-font-family:Cambria;
|
716
|
+
mso-hansi-theme-font:major-latin;
|
717
|
+
mso-bidi-font-family:"Times New Roman";
|
718
|
+
mso-bidi-theme-font:major-bidi;
|
719
|
+
color:#4F81BD;
|
720
|
+
mso-themecolor:accent1;
|
721
|
+
font-weight:bold;}
|
722
|
+
span.Heading3Char
|
723
|
+
{mso-style-name:"Heading 3 Char";
|
724
|
+
mso-style-noshow:yes;
|
725
|
+
mso-style-priority:9;
|
726
|
+
mso-style-unhide:no;
|
727
|
+
mso-style-locked:yes;
|
728
|
+
mso-style-link:"Heading 3";
|
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.TitleChar
|
742
|
+
{mso-style-name:"Title Char";
|
743
|
+
mso-style-priority:10;
|
744
|
+
mso-style-unhide:no;
|
745
|
+
mso-style-locked:yes;
|
746
|
+
mso-style-link:Title;
|
747
|
+
mso-ansi-font-size:26.0pt;
|
748
|
+
mso-bidi-font-size:26.0pt;
|
749
|
+
font-family:"Cambria","serif";
|
750
|
+
mso-ascii-font-family:Cambria;
|
751
|
+
mso-ascii-theme-font:major-latin;
|
752
|
+
mso-fareast-font-family:"Times New Roman";
|
753
|
+
mso-fareast-theme-font:major-fareast;
|
754
|
+
mso-hansi-font-family:Cambria;
|
755
|
+
mso-hansi-theme-font:major-latin;
|
756
|
+
mso-bidi-font-family:"Times New Roman";
|
757
|
+
mso-bidi-theme-font:major-bidi;
|
758
|
+
color:#17365D;
|
759
|
+
mso-themecolor:text2;
|
760
|
+
mso-themeshade:191;
|
761
|
+
letter-spacing:.25pt;
|
762
|
+
mso-font-kerning:14.0pt;}
|
763
|
+
span.SpellE
|
764
|
+
{mso-style-name:"";
|
765
|
+
mso-spl-e:yes;}
|
766
|
+
.MsoChpDefault
|
767
|
+
{mso-style-type:export-only;
|
768
|
+
mso-default-props:yes;
|
769
|
+
font-size:10.0pt;
|
770
|
+
mso-ansi-font-size:10.0pt;
|
771
|
+
mso-bidi-font-size:10.0pt;
|
772
|
+
mso-ascii-font-family:Calibri;
|
773
|
+
mso-ascii-theme-font:minor-latin;
|
774
|
+
mso-fareast-font-family:"Times New Roman";
|
775
|
+
mso-fareast-theme-font:minor-fareast;
|
776
|
+
mso-hansi-font-family:Calibri;
|
777
|
+
mso-hansi-theme-font:minor-latin;
|
778
|
+
mso-bidi-font-family:"Times New Roman";
|
779
|
+
mso-bidi-theme-font:minor-bidi;}
|
780
|
+
@page Section1
|
781
|
+
{size:612.0pt 792.0pt;
|
782
|
+
margin:2.0cm 42.5pt 2.0cm 3.0cm;
|
783
|
+
mso-header-margin:35.4pt;
|
784
|
+
mso-footer-margin:35.4pt;
|
785
|
+
mso-paper-source:0;}
|
786
|
+
div.Section1
|
787
|
+
{page:Section1;}
|
788
|
+
/* List Definitions */
|
789
|
+
@list l0
|
790
|
+
{mso-list-id:1346517726;
|
791
|
+
mso-list-type:hybrid;
|
792
|
+
mso-list-template-ids:495863470 -1595775638 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
|
793
|
+
@list l0:level1
|
794
|
+
{mso-level-number-format:bullet;
|
795
|
+
mso-level-text:\F0B7;
|
796
|
+
mso-level-tab-stop:none;
|
797
|
+
mso-level-number-position:left;
|
798
|
+
text-indent:-18.0pt;
|
799
|
+
mso-ansi-font-size:12.0pt;
|
800
|
+
font-family:Symbol;}
|
801
|
+
@list l0:level2
|
802
|
+
{mso-level-tab-stop:72.0pt;
|
803
|
+
mso-level-number-position:left;
|
804
|
+
text-indent:-18.0pt;}
|
805
|
+
@list l0:level3
|
806
|
+
{mso-level-tab-stop:108.0pt;
|
807
|
+
mso-level-number-position:left;
|
808
|
+
text-indent:-18.0pt;}
|
809
|
+
@list l0:level4
|
810
|
+
{mso-level-tab-stop:144.0pt;
|
811
|
+
mso-level-number-position:left;
|
812
|
+
text-indent:-18.0pt;}
|
813
|
+
@list l0:level5
|
814
|
+
{mso-level-tab-stop:180.0pt;
|
815
|
+
mso-level-number-position:left;
|
816
|
+
text-indent:-18.0pt;}
|
817
|
+
@list l0:level6
|
818
|
+
{mso-level-tab-stop:216.0pt;
|
819
|
+
mso-level-number-position:left;
|
820
|
+
text-indent:-18.0pt;}
|
821
|
+
@list l0:level7
|
822
|
+
{mso-level-tab-stop:252.0pt;
|
823
|
+
mso-level-number-position:left;
|
824
|
+
text-indent:-18.0pt;}
|
825
|
+
@list l0:level8
|
826
|
+
{mso-level-tab-stop:288.0pt;
|
827
|
+
mso-level-number-position:left;
|
828
|
+
text-indent:-18.0pt;}
|
829
|
+
@list l0:level9
|
830
|
+
{mso-level-tab-stop:324.0pt;
|
831
|
+
mso-level-number-position:left;
|
832
|
+
text-indent:-18.0pt;}
|
833
|
+
ol
|
834
|
+
{margin-bottom:0cm;}
|
835
|
+
ul
|
836
|
+
{margin-bottom:0cm;}
|
837
|
+
-->
|
838
|
+
</style>
|
839
|
+
<!--[if gte mso 10]>
|
840
|
+
<style>
|
841
|
+
/* Style Definitions */
|
842
|
+
table.MsoNormalTable
|
843
|
+
{mso-style-name:"Table Normal";
|
844
|
+
mso-tstyle-rowband-size:0;
|
845
|
+
mso-tstyle-colband-size:0;
|
846
|
+
mso-style-noshow:yes;
|
847
|
+
mso-style-priority:99;
|
848
|
+
mso-style-qformat:yes;
|
849
|
+
mso-style-parent:"";
|
850
|
+
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
|
851
|
+
mso-para-margin:0cm;
|
852
|
+
mso-para-margin-bottom:.0001pt;
|
853
|
+
mso-pagination:widow-orphan;
|
854
|
+
font-size:10.0pt;
|
855
|
+
font-family:"Calibri","sans-serif";
|
856
|
+
mso-ascii-font-family:Calibri;
|
857
|
+
mso-ascii-theme-font:minor-latin;
|
858
|
+
mso-hansi-font-family:Calibri;
|
859
|
+
mso-hansi-theme-font:minor-latin;}
|
860
|
+
</style>
|
861
|
+
<![endif]--><!--[if gte mso 9]><xml>
|
862
|
+
<o:shapedefaults v:ext="edit" spidmax="5122"/>
|
863
|
+
</xml><![endif]--><!--[if gte mso 9]><xml>
|
864
|
+
<o:shapelayout v:ext="edit">
|
865
|
+
<o:idmap v:ext="edit" data="1"/>
|
866
|
+
</o:shapelayout></xml><![endif]-->
|
867
|
+
</head>
|
868
|
+
|
869
|
+
<body lang=EN-US style='tab-interval:36.0pt'>
|
870
|
+
|
871
|
+
<div class=Section1>
|
872
|
+
|
873
|
+
<div style='mso-element:para-border-div;border:none;border-bottom:solid #4F81BD 1.0pt;
|
874
|
+
mso-border-bottom-themecolor:accent1;padding:0cm 0cm 4.0pt 0cm'>
|
875
|
+
|
876
|
+
<p class=MsoTitle><span class=SpellE>Elus</span> Solver: User Stories</p>
|
877
|
+
|
878
|
+
</div>
|
879
|
+
|
880
|
+
<h1>Role: Gamer</h1>
|
881
|
+
|
882
|
+
<p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt;mso-list:l0 level1 lfo2'><![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 Game. </span></b><span
|
888
|
+
style='font-size:12.0pt;line-height:115%'>Gamer opens up a shell, types a
|
889
|
+
command, and sees a welcome message and a prompt to input Game state.<o:p></o:p></span></p>
|
890
|
+
|
891
|
+
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt;mso-list:l0 level1 lfo2'><![if !supportLists]><span
|
892
|
+
style='font-size:12.0pt;line-height:115%;font-family:Symbol;mso-fareast-font-family:
|
893
|
+
Symbol;mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>�<span
|
894
|
+
style='font:7.0pt "Times New Roman"'>
|
895
|
+
</span></span></span><![endif]><b style='mso-bidi-font-weight:normal'><span
|
896
|
+
style='font-size:12.0pt;line-height:115%'>Gamer inputs state</span></b><span
|
897
|
+
style='font-size:12.0pt;line-height:115%'>. Gamer enters 3-char sequences
|
898
|
+
representing 3 free Pieces. If the Game just began, he is then prompted for 3
|
899
|
+
3-char sequences representing Pieces already on the Board.<o:p></o:p></span></p>
|
900
|
+
|
901
|
+
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt;mso-list:l0 level1 lfo2'><![if !supportLists]><span
|
902
|
+
style='font-size:12.0pt;line-height:115%;font-family:Symbol;mso-fareast-font-family:
|
903
|
+
Symbol;mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>�<span
|
904
|
+
style='font:7.0pt "Times New Roman"'>
|
905
|
+
</span></span></span><![endif]><b style='mso-bidi-font-weight:normal'><span
|
906
|
+
style='font-size:12.0pt;line-height:115%'>Game produces hints.</span></b><span
|
907
|
+
style='font-size:12.0pt;line-height:115%'> If the Game just began it generates
|
908
|
+
a set of all possible Rule combinations. A set of possible Rules is then run against
|
909
|
+
Game state, dropping those that are not consistent with current Game state. Game
|
910
|
+
then outputs remaining set of Rules and success probabilities for all free
|
911
|
+
Pieces.<o:p></o:p></span></p>
|
912
|
+
|
913
|
+
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt;mso-list:l0 level1 lfo2'><![if !supportLists]><span
|
914
|
+
style='font-size:12.0pt;line-height:115%;font-family:Symbol;mso-fareast-font-family:
|
915
|
+
Symbol;mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>�<span
|
916
|
+
style='font:7.0pt "Times New Roman"'>
|
917
|
+
</span></span></span><![endif]><b style='mso-bidi-font-weight:normal'><span
|
918
|
+
style='font-size:12.0pt;line-height:115%'>Gamer makes step.</span></b><span
|
919
|
+
style='font-size:12.0pt;line-height:115%'> Gamer consumes hints, inputs the
|
920
|
+
free Piece he is going to move. He is then prompted for the result of this step
|
921
|
+
and enters it. If the step was not successful, Game generates new hints (unless
|
922
|
+
the Gamer already lost). If the step was successful, the Gamer is prompted for
|
923
|
+
new Game state (unless he already won).<o:p></o:p></span></p>
|
924
|
+
|
925
|
+
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt;mso-list:l0 level1 lfo2'><![if !supportLists]><span
|
926
|
+
style='font-size:12.0pt;line-height:115%;font-family:Symbol;mso-fareast-font-family:
|
927
|
+
Symbol;mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>�<span
|
928
|
+
style='font:7.0pt "Times New Roman"'>
|
929
|
+
</span></span></span><![endif]><b style='mso-bidi-font-weight:normal'><span
|
930
|
+
style='font-size:12.0pt;line-height:115%'>Gamer wins</span></b><span
|
931
|
+
style='font-size:12.0pt;line-height:115%'>. If enough steps were successful,
|
932
|
+
Gamer is congratulated and presented with Game statistics<o:p></o:p></span></p>
|
933
|
+
|
934
|
+
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt;mso-list:l0 level1 lfo2'><![if !supportLists]><span
|
935
|
+
style='font-size:12.0pt;line-height:115%;font-family:Symbol;mso-fareast-font-family:
|
936
|
+
Symbol;mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>�<span
|
937
|
+
style='font:7.0pt "Times New Roman"'>
|
938
|
+
</span></span></span><![endif]><b style='mso-bidi-font-weight:normal'><span
|
939
|
+
style='font-size:12.0pt;line-height:115%'>Gamer loses</span></b><span
|
940
|
+
style='font-size:12.0pt;line-height:115%'>. If the Gamer made 4 mistakes he
|
941
|
+
loses the Game.<o:p></o:p></span></p>
|
942
|
+
|
943
|
+
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt;mso-list:l0 level1 lfo2'><![if !supportLists]><span
|
944
|
+
style='font-size:12.0pt;line-height:115%;font-family:Symbol;mso-fareast-font-family:
|
945
|
+
Symbol;mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>�<span
|
946
|
+
style='font:7.0pt "Times New Roman"'>
|
947
|
+
</span></span></span><![endif]><b style='mso-bidi-font-weight:normal'><span
|
948
|
+
style='font-size:12.0pt;line-height:115%'>Gamer plays again</span></b><span
|
949
|
+
style='font-size:12.0pt;line-height:115%'>. If the Gamer lost the Game, he is
|
950
|
+
asked if he wants to play again.<o:p></o:p></span></p>
|
951
|
+
|
952
|
+
<p class=MsoListParagraphCxSpLast><span style='font-size:12.0pt;line-height:
|
953
|
+
115%'><o:p> </o:p></span></p>
|
954
|
+
|
955
|
+
</div>
|
956
|
+
|
957
|
+
</body>
|
958
|
+
|
959
|
+
</html>
|