quick_exam 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,21 @@
1
+ module QuickExam
2
+ module Format
3
+ CORRECT_MARK = '!!!T'
4
+ QUESTION_MARK = 'Q'
5
+ FOLDER_NAME_EXPORT = 'quick_exam_export'
6
+ ALLOWED_ELEMENTS = %w(a abbr b blockquote br cite code dd dfn dl dt em i kbd li mark ol pre
7
+ q s samp small strike strong sub sup time u ul var)
8
+
9
+ def correct_mark(mark='', safe: false)
10
+ return CORRECT_MARK if mark.__blank?
11
+ return Regexp.quote(mark) if safe
12
+ mark
13
+ end
14
+
15
+ def question_mark(mark='', safe: false)
16
+ return QUESTION_MARK if mark.__blank?
17
+ return Regexp.quote(mark) if safe
18
+ mark
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,2 @@
1
+ class ErrorAnalyze < StandardError; end
2
+ class ErrorExport < StandardError; end
@@ -0,0 +1,29 @@
1
+ module QuickExam
2
+ class Record
3
+ attr_accessor :question, :answers, :correct_indexes
4
+
5
+ def initialize(question: '', answers: [], correct_indexes: [])
6
+ @question = question
7
+ @answers = answers
8
+ @correct_indexes = correct_indexes
9
+ end
10
+
11
+ def answers_with_hash
12
+ answers.map.with_index.to_h.invert
13
+ end
14
+
15
+ def shuffle_answers
16
+ ans = answers_with_hash.sort{|a, b| rand(40) <=> rand(40) }.to_h
17
+ self.answers = ans.values
18
+ self.correct_indexes = specific_index_correct_answer(ans)
19
+ end
20
+
21
+ private
22
+
23
+ def specific_index_correct_answer(data_hash)
24
+ correct_indexes.each_with_object([]) do |i, indexes|
25
+ indexes << data_hash.find_index { |key, _| key == i }
26
+ end.sort
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,34 @@
1
+ module QuickExam
2
+ class RecordCollection < Array
3
+ attr_reader :records
4
+
5
+ def initialize(records = [])
6
+ @records = records
7
+ end
8
+
9
+ def mixes(count, shuffle_question: true, shuffle_answer: false, same_answer: false)
10
+ @records = self
11
+ @same_answer = same_answer
12
+ return records if count.zero?
13
+ count.times.each_with_object([]) do |_, memo|
14
+ new_records = records.dup
15
+ new_records.shuffle! if shuffle_question
16
+ shuffle_answers(new_records) if shuffle_answer
17
+ memo << new_records
18
+ end
19
+ end
20
+
21
+ private
22
+
23
+ def shuffle_answers(array_records)
24
+ array_records.each_with_index do |obj, i|
25
+ # Todo: The same answer for all questionnaires
26
+ # obj.dup => difference, otherwise
27
+ n_obj = @same_answer ? obj : obj.dup
28
+
29
+ n_obj.shuffle_answers
30
+ array_records[i] = n_obj
31
+ end
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,3 @@
1
+ module QuickExam
2
+ VERSION = "1.0.0"
3
+ end
@@ -0,0 +1,53 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'quick_exam/version'
5
+
6
+ year = Time.now.year.to_s == '2020' ? '2020' : "2020 - #{Time.now.year}"
7
+ Gem::Specification.new do |spec|
8
+ spec.name = "quick_exam"
9
+ spec.version = QuickExam::VERSION
10
+ spec.author = 'Tang Quoc Minh'
11
+ spec.email = 'vhquocminhit@gmail.com'
12
+
13
+ spec.summary = 'You can shuffle or randomize quiz questions and answers.'
14
+ spec.description = 'You can shuffle or randomize quiz questions and answers. Shuffling is also an effective way of preventing cheating because no two learners get questions in the same order while taking the same quiz.'
15
+ spec.homepage = 'https://github.com/rubykachu/quick_exam'
16
+ spec.license = 'MIT'
17
+ spec.post_install_message = <<EOF
18
+ .-------------------.
19
+ | Hi! quick_exam |
20
+ '-------------------'
21
+ ^ (\_/)
22
+ '----- (O.o)
23
+ (> <)
24
+
25
+ Thanks for installing
26
+ Gem quick_exam #{QuickExam::VERSION} (latest) (c) #{year} Tang Quoc Minh [vhquocminhit@gmail.com]
27
+
28
+ -------------------
29
+ EOF
30
+
31
+ spec.required_ruby_version = Gem::Requirement.new('>= 2.4.0')
32
+
33
+ spec.metadata["allowed_push_host"] = 'https://rubygems.org/'
34
+ spec.metadata['homepage_uri'] = spec.homepage
35
+ spec.metadata['source_code_uri'] = 'https://github.com/rubykachu/quick_exam/tree/master'
36
+ spec.metadata['changelog_uri'] = 'https://github.com/rubykachu/quick_exam/tree/master/CHANGELOG.md'
37
+ spec.metadata['documentation_uri'] = 'https://github.com/rubykachu/quick_exam/tree/master/README.md'
38
+ spec.metadata['bug_tracker_uri'] = 'https://github.com/rubykachu/quick_exam/issues'
39
+
40
+ # Specify which files should be added to the gem when it is released.
41
+ except_files = %w(Rakefile sample).join(' ')
42
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
43
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
44
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
45
+ end.reject!{ |f| except_files.include?(f) }
46
+
47
+ spec.bindir = 'bin'
48
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
49
+ spec.require_paths = ['lib']
50
+
51
+ spec.add_runtime_dependency 'thor', '~> 1.0', '>= 1.0.1'
52
+ spec.add_development_dependency 'bundler', '~> 2.1', '>= 2.1.4'
53
+ end
Binary file
@@ -0,0 +1,982 @@
1
+ <html xmlns:o="urn:schemas-microsoft-com:office:office"
2
+ xmlns:w="urn:schemas-microsoft-com:office:word"
3
+ xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
4
+ xmlns="http://www.w3.org/TR/REC-html40">
5
+
6
+ <head>
7
+ <meta http-equiv=Content-Type content="text/html; charset=utf-8">
8
+ <meta name=ProgId content=Word.Document>
9
+ <meta name=Generator content="Microsoft Word 15">
10
+ <meta name=Originator content="Microsoft Word 15">
11
+ <link rel=File-List href="quick_sample.fld/filelist.xml">
12
+ <!--[if gte mso 9]><xml>
13
+ <o:DocumentProperties>
14
+ <o:Author>ha.le@tomosia.com</o:Author>
15
+ <o:LastAuthor>ha.le@tomosia.com</o:LastAuthor>
16
+ <o:Revision>1</o:Revision>
17
+ <o:TotalTime>3</o:TotalTime>
18
+ <o:Created>2020-09-20T07:39:00Z</o:Created>
19
+ <o:LastSaved>2020-09-20T07:43:00Z</o:LastSaved>
20
+ <o:Pages>2</o:Pages>
21
+ <o:Words>147</o:Words>
22
+ <o:Characters>841</o:Characters>
23
+ <o:Lines>7</o:Lines>
24
+ <o:Paragraphs>1</o:Paragraphs>
25
+ <o:CharactersWithSpaces>987</o:CharactersWithSpaces>
26
+ <o:Version>16.00</o:Version>
27
+ </o:DocumentProperties>
28
+ <o:OfficeDocumentSettings>
29
+ <o:AllowPNG/>
30
+ </o:OfficeDocumentSettings>
31
+ </xml><![endif]-->
32
+ <link rel=themeData href="quick_sample.fld/themedata.thmx">
33
+ <link rel=colorSchemeMapping href="quick_sample.fld/colorschememapping.xml">
34
+ <!--[if gte mso 9]><xml>
35
+ <w:WordDocument>
36
+ <w:SpellingState>Clean</w:SpellingState>
37
+ <w:GrammarState>Clean</w:GrammarState>
38
+ <w:TrackMoves>false</w:TrackMoves>
39
+ <w:TrackFormatting/>
40
+ <w:PunctuationKerning/>
41
+ <w:ValidateAgainstSchemas/>
42
+ <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
43
+ <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
44
+ <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
45
+ <w:DoNotPromoteQF/>
46
+ <w:LidThemeOther>EN-US</w:LidThemeOther>
47
+ <w:LidThemeAsian>JA</w:LidThemeAsian>
48
+ <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
49
+ <w:Compatibility>
50
+ <w:BreakWrappedTables/>
51
+ <w:SnapToGridInCell/>
52
+ <w:WrapTextWithPunct/>
53
+ <w:UseAsianBreakRules/>
54
+ <w:DontGrowAutofit/>
55
+ <w:SplitPgBreakAndParaMark/>
56
+ <w:EnableOpenTypeKerning/>
57
+ <w:DontFlipMirrorIndents/>
58
+ <w:OverrideTableStyleHps/>
59
+ <w:UseFELayout/>
60
+ </w:Compatibility>
61
+ <m:mathPr>
62
+ <m:mathFont m:val="Cambria Math"/>
63
+ <m:brkBin m:val="before"/>
64
+ <m:brkBinSub m:val="&#45;-"/>
65
+ <m:smallFrac m:val="off"/>
66
+ <m:dispDef/>
67
+ <m:lMargin m:val="0"/>
68
+ <m:rMargin m:val="0"/>
69
+ <m:defJc m:val="centerGroup"/>
70
+ <m:wrapIndent m:val="1440"/>
71
+ <m:intLim m:val="subSup"/>
72
+ <m:naryLim m:val="undOvr"/>
73
+ </m:mathPr></w:WordDocument>
74
+ </xml><![endif]--><!--[if gte mso 9]><xml>
75
+ <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="false"
76
+ DefSemiHidden="false" DefQFormat="false" DefPriority="99"
77
+ LatentStyleCount="376">
78
+ <w:LsdException Locked="false" Priority="0" QFormat="true" Name="Normal"/>
79
+ <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 1"/>
80
+ <w:LsdException Locked="false" Priority="9" SemiHidden="true"
81
+ UnhideWhenUsed="true" QFormat="true" Name="heading 2"/>
82
+ <w:LsdException Locked="false" Priority="9" SemiHidden="true"
83
+ UnhideWhenUsed="true" QFormat="true" Name="heading 3"/>
84
+ <w:LsdException Locked="false" Priority="9" SemiHidden="true"
85
+ UnhideWhenUsed="true" QFormat="true" Name="heading 4"/>
86
+ <w:LsdException Locked="false" Priority="9" SemiHidden="true"
87
+ UnhideWhenUsed="true" QFormat="true" Name="heading 5"/>
88
+ <w:LsdException Locked="false" Priority="9" SemiHidden="true"
89
+ UnhideWhenUsed="true" QFormat="true" Name="heading 6"/>
90
+ <w:LsdException Locked="false" Priority="9" SemiHidden="true"
91
+ UnhideWhenUsed="true" QFormat="true" Name="heading 7"/>
92
+ <w:LsdException Locked="false" Priority="9" SemiHidden="true"
93
+ UnhideWhenUsed="true" QFormat="true" Name="heading 8"/>
94
+ <w:LsdException Locked="false" Priority="9" SemiHidden="true"
95
+ UnhideWhenUsed="true" QFormat="true" Name="heading 9"/>
96
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
97
+ Name="index 1"/>
98
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
99
+ Name="index 2"/>
100
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
101
+ Name="index 3"/>
102
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
103
+ Name="index 4"/>
104
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
105
+ Name="index 5"/>
106
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
107
+ Name="index 6"/>
108
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
109
+ Name="index 7"/>
110
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
111
+ Name="index 8"/>
112
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
113
+ Name="index 9"/>
114
+ <w:LsdException Locked="false" Priority="39" SemiHidden="true"
115
+ UnhideWhenUsed="true" Name="toc 1"/>
116
+ <w:LsdException Locked="false" Priority="39" SemiHidden="true"
117
+ UnhideWhenUsed="true" Name="toc 2"/>
118
+ <w:LsdException Locked="false" Priority="39" SemiHidden="true"
119
+ UnhideWhenUsed="true" Name="toc 3"/>
120
+ <w:LsdException Locked="false" Priority="39" SemiHidden="true"
121
+ UnhideWhenUsed="true" Name="toc 4"/>
122
+ <w:LsdException Locked="false" Priority="39" SemiHidden="true"
123
+ UnhideWhenUsed="true" Name="toc 5"/>
124
+ <w:LsdException Locked="false" Priority="39" SemiHidden="true"
125
+ UnhideWhenUsed="true" Name="toc 6"/>
126
+ <w:LsdException Locked="false" Priority="39" SemiHidden="true"
127
+ UnhideWhenUsed="true" Name="toc 7"/>
128
+ <w:LsdException Locked="false" Priority="39" SemiHidden="true"
129
+ UnhideWhenUsed="true" Name="toc 8"/>
130
+ <w:LsdException Locked="false" Priority="39" SemiHidden="true"
131
+ UnhideWhenUsed="true" Name="toc 9"/>
132
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
133
+ Name="Normal Indent"/>
134
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
135
+ Name="footnote text"/>
136
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
137
+ Name="annotation text"/>
138
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
139
+ Name="header"/>
140
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
141
+ Name="footer"/>
142
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
143
+ Name="index heading"/>
144
+ <w:LsdException Locked="false" Priority="35" SemiHidden="true"
145
+ UnhideWhenUsed="true" QFormat="true" Name="caption"/>
146
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
147
+ Name="table of figures"/>
148
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
149
+ Name="envelope address"/>
150
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
151
+ Name="envelope return"/>
152
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
153
+ Name="footnote reference"/>
154
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
155
+ Name="annotation reference"/>
156
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
157
+ Name="line number"/>
158
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
159
+ Name="page number"/>
160
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
161
+ Name="endnote reference"/>
162
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
163
+ Name="endnote text"/>
164
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
165
+ Name="table of authorities"/>
166
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
167
+ Name="macro"/>
168
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
169
+ Name="toa heading"/>
170
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
171
+ Name="List"/>
172
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
173
+ Name="List Bullet"/>
174
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
175
+ Name="List Number"/>
176
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
177
+ Name="List 2"/>
178
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
179
+ Name="List 3"/>
180
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
181
+ Name="List 4"/>
182
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
183
+ Name="List 5"/>
184
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
185
+ Name="List Bullet 2"/>
186
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
187
+ Name="List Bullet 3"/>
188
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
189
+ Name="List Bullet 4"/>
190
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
191
+ Name="List Bullet 5"/>
192
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
193
+ Name="List Number 2"/>
194
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
195
+ Name="List Number 3"/>
196
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
197
+ Name="List Number 4"/>
198
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
199
+ Name="List Number 5"/>
200
+ <w:LsdException Locked="false" Priority="10" QFormat="true" Name="Title"/>
201
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
202
+ Name="Closing"/>
203
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
204
+ Name="Signature"/>
205
+ <w:LsdException Locked="false" Priority="1" SemiHidden="true"
206
+ UnhideWhenUsed="true" Name="Default Paragraph Font"/>
207
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
208
+ Name="Body Text"/>
209
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
210
+ Name="Body Text Indent"/>
211
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
212
+ Name="List Continue"/>
213
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
214
+ Name="List Continue 2"/>
215
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
216
+ Name="List Continue 3"/>
217
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
218
+ Name="List Continue 4"/>
219
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
220
+ Name="List Continue 5"/>
221
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
222
+ Name="Message Header"/>
223
+ <w:LsdException Locked="false" Priority="11" QFormat="true" Name="Subtitle"/>
224
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
225
+ Name="Salutation"/>
226
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
227
+ Name="Date"/>
228
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
229
+ Name="Body Text First Indent"/>
230
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
231
+ Name="Body Text First Indent 2"/>
232
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
233
+ Name="Note Heading"/>
234
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
235
+ Name="Body Text 2"/>
236
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
237
+ Name="Body Text 3"/>
238
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
239
+ Name="Body Text Indent 2"/>
240
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
241
+ Name="Body Text Indent 3"/>
242
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
243
+ Name="Block Text"/>
244
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
245
+ Name="Hyperlink"/>
246
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
247
+ Name="FollowedHyperlink"/>
248
+ <w:LsdException Locked="false" Priority="22" QFormat="true" Name="Strong"/>
249
+ <w:LsdException Locked="false" Priority="20" QFormat="true" Name="Emphasis"/>
250
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
251
+ Name="Document Map"/>
252
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
253
+ Name="Plain Text"/>
254
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
255
+ Name="E-mail Signature"/>
256
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
257
+ Name="HTML Top of Form"/>
258
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
259
+ Name="HTML Bottom of Form"/>
260
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
261
+ Name="Normal (Web)"/>
262
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
263
+ Name="HTML Acronym"/>
264
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
265
+ Name="HTML Address"/>
266
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
267
+ Name="HTML Cite"/>
268
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
269
+ Name="HTML Code"/>
270
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
271
+ Name="HTML Definition"/>
272
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
273
+ Name="HTML Keyboard"/>
274
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
275
+ Name="HTML Preformatted"/>
276
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
277
+ Name="HTML Sample"/>
278
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
279
+ Name="HTML Typewriter"/>
280
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
281
+ Name="HTML Variable"/>
282
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
283
+ Name="Normal Table"/>
284
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
285
+ Name="annotation subject"/>
286
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
287
+ Name="No List"/>
288
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
289
+ Name="Outline List 1"/>
290
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
291
+ Name="Outline List 2"/>
292
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
293
+ Name="Outline List 3"/>
294
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
295
+ Name="Table Simple 1"/>
296
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
297
+ Name="Table Simple 2"/>
298
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
299
+ Name="Table Simple 3"/>
300
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
301
+ Name="Table Classic 1"/>
302
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
303
+ Name="Table Classic 2"/>
304
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
305
+ Name="Table Classic 3"/>
306
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
307
+ Name="Table Classic 4"/>
308
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
309
+ Name="Table Colorful 1"/>
310
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
311
+ Name="Table Colorful 2"/>
312
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
313
+ Name="Table Colorful 3"/>
314
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
315
+ Name="Table Columns 1"/>
316
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
317
+ Name="Table Columns 2"/>
318
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
319
+ Name="Table Columns 3"/>
320
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
321
+ Name="Table Columns 4"/>
322
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
323
+ Name="Table Columns 5"/>
324
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
325
+ Name="Table Grid 1"/>
326
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
327
+ Name="Table Grid 2"/>
328
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
329
+ Name="Table Grid 3"/>
330
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
331
+ Name="Table Grid 4"/>
332
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
333
+ Name="Table Grid 5"/>
334
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
335
+ Name="Table Grid 6"/>
336
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
337
+ Name="Table Grid 7"/>
338
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
339
+ Name="Table Grid 8"/>
340
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
341
+ Name="Table List 1"/>
342
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
343
+ Name="Table List 2"/>
344
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
345
+ Name="Table List 3"/>
346
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
347
+ Name="Table List 4"/>
348
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
349
+ Name="Table List 5"/>
350
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
351
+ Name="Table List 6"/>
352
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
353
+ Name="Table List 7"/>
354
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
355
+ Name="Table List 8"/>
356
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
357
+ Name="Table 3D effects 1"/>
358
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
359
+ Name="Table 3D effects 2"/>
360
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
361
+ Name="Table 3D effects 3"/>
362
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
363
+ Name="Table Contemporary"/>
364
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
365
+ Name="Table Elegant"/>
366
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
367
+ Name="Table Professional"/>
368
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
369
+ Name="Table Subtle 1"/>
370
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
371
+ Name="Table Subtle 2"/>
372
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
373
+ Name="Table Web 1"/>
374
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
375
+ Name="Table Web 2"/>
376
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
377
+ Name="Table Web 3"/>
378
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
379
+ Name="Balloon Text"/>
380
+ <w:LsdException Locked="false" Priority="39" Name="Table Grid"/>
381
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
382
+ Name="Table Theme"/>
383
+ <w:LsdException Locked="false" SemiHidden="true" Name="Placeholder Text"/>
384
+ <w:LsdException Locked="false" Priority="1" QFormat="true" Name="No Spacing"/>
385
+ <w:LsdException Locked="false" Priority="60" Name="Light Shading"/>
386
+ <w:LsdException Locked="false" Priority="61" Name="Light List"/>
387
+ <w:LsdException Locked="false" Priority="62" Name="Light Grid"/>
388
+ <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1"/>
389
+ <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2"/>
390
+ <w:LsdException Locked="false" Priority="65" Name="Medium List 1"/>
391
+ <w:LsdException Locked="false" Priority="66" Name="Medium List 2"/>
392
+ <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1"/>
393
+ <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2"/>
394
+ <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3"/>
395
+ <w:LsdException Locked="false" Priority="70" Name="Dark List"/>
396
+ <w:LsdException Locked="false" Priority="71" Name="Colorful Shading"/>
397
+ <w:LsdException Locked="false" Priority="72" Name="Colorful List"/>
398
+ <w:LsdException Locked="false" Priority="73" Name="Colorful Grid"/>
399
+ <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 1"/>
400
+ <w:LsdException Locked="false" Priority="61" Name="Light List Accent 1"/>
401
+ <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 1"/>
402
+ <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 1"/>
403
+ <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 1"/>
404
+ <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 1"/>
405
+ <w:LsdException Locked="false" SemiHidden="true" Name="Revision"/>
406
+ <w:LsdException Locked="false" Priority="34" QFormat="true"
407
+ Name="List Paragraph"/>
408
+ <w:LsdException Locked="false" Priority="29" QFormat="true" Name="Quote"/>
409
+ <w:LsdException Locked="false" Priority="30" QFormat="true"
410
+ Name="Intense Quote"/>
411
+ <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 1"/>
412
+ <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 1"/>
413
+ <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 1"/>
414
+ <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 1"/>
415
+ <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 1"/>
416
+ <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 1"/>
417
+ <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 1"/>
418
+ <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 1"/>
419
+ <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 2"/>
420
+ <w:LsdException Locked="false" Priority="61" Name="Light List Accent 2"/>
421
+ <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 2"/>
422
+ <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 2"/>
423
+ <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 2"/>
424
+ <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 2"/>
425
+ <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 2"/>
426
+ <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 2"/>
427
+ <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 2"/>
428
+ <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 2"/>
429
+ <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 2"/>
430
+ <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 2"/>
431
+ <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 2"/>
432
+ <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 2"/>
433
+ <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 3"/>
434
+ <w:LsdException Locked="false" Priority="61" Name="Light List Accent 3"/>
435
+ <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 3"/>
436
+ <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 3"/>
437
+ <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 3"/>
438
+ <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 3"/>
439
+ <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 3"/>
440
+ <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 3"/>
441
+ <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 3"/>
442
+ <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 3"/>
443
+ <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 3"/>
444
+ <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 3"/>
445
+ <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 3"/>
446
+ <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 3"/>
447
+ <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 4"/>
448
+ <w:LsdException Locked="false" Priority="61" Name="Light List Accent 4"/>
449
+ <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 4"/>
450
+ <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 4"/>
451
+ <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 4"/>
452
+ <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 4"/>
453
+ <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 4"/>
454
+ <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 4"/>
455
+ <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 4"/>
456
+ <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 4"/>
457
+ <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 4"/>
458
+ <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 4"/>
459
+ <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 4"/>
460
+ <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 4"/>
461
+ <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 5"/>
462
+ <w:LsdException Locked="false" Priority="61" Name="Light List Accent 5"/>
463
+ <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 5"/>
464
+ <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 5"/>
465
+ <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 5"/>
466
+ <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 5"/>
467
+ <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 5"/>
468
+ <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 5"/>
469
+ <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 5"/>
470
+ <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 5"/>
471
+ <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 5"/>
472
+ <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 5"/>
473
+ <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 5"/>
474
+ <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 5"/>
475
+ <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 6"/>
476
+ <w:LsdException Locked="false" Priority="61" Name="Light List Accent 6"/>
477
+ <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 6"/>
478
+ <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 6"/>
479
+ <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 6"/>
480
+ <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 6"/>
481
+ <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 6"/>
482
+ <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 6"/>
483
+ <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 6"/>
484
+ <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 6"/>
485
+ <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 6"/>
486
+ <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 6"/>
487
+ <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 6"/>
488
+ <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 6"/>
489
+ <w:LsdException Locked="false" Priority="19" QFormat="true"
490
+ Name="Subtle Emphasis"/>
491
+ <w:LsdException Locked="false" Priority="21" QFormat="true"
492
+ Name="Intense Emphasis"/>
493
+ <w:LsdException Locked="false" Priority="31" QFormat="true"
494
+ Name="Subtle Reference"/>
495
+ <w:LsdException Locked="false" Priority="32" QFormat="true"
496
+ Name="Intense Reference"/>
497
+ <w:LsdException Locked="false" Priority="33" QFormat="true" Name="Book Title"/>
498
+ <w:LsdException Locked="false" Priority="37" SemiHidden="true"
499
+ UnhideWhenUsed="true" Name="Bibliography"/>
500
+ <w:LsdException Locked="false" Priority="39" SemiHidden="true"
501
+ UnhideWhenUsed="true" QFormat="true" Name="TOC Heading"/>
502
+ <w:LsdException Locked="false" Priority="41" Name="Plain Table 1"/>
503
+ <w:LsdException Locked="false" Priority="42" Name="Plain Table 2"/>
504
+ <w:LsdException Locked="false" Priority="43" Name="Plain Table 3"/>
505
+ <w:LsdException Locked="false" Priority="44" Name="Plain Table 4"/>
506
+ <w:LsdException Locked="false" Priority="45" Name="Plain Table 5"/>
507
+ <w:LsdException Locked="false" Priority="40" Name="Grid Table Light"/>
508
+ <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light"/>
509
+ <w:LsdException Locked="false" Priority="47" Name="Grid Table 2"/>
510
+ <w:LsdException Locked="false" Priority="48" Name="Grid Table 3"/>
511
+ <w:LsdException Locked="false" Priority="49" Name="Grid Table 4"/>
512
+ <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark"/>
513
+ <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful"/>
514
+ <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful"/>
515
+ <w:LsdException Locked="false" Priority="46"
516
+ Name="Grid Table 1 Light Accent 1"/>
517
+ <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 1"/>
518
+ <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 1"/>
519
+ <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 1"/>
520
+ <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 1"/>
521
+ <w:LsdException Locked="false" Priority="51"
522
+ Name="Grid Table 6 Colorful Accent 1"/>
523
+ <w:LsdException Locked="false" Priority="52"
524
+ Name="Grid Table 7 Colorful Accent 1"/>
525
+ <w:LsdException Locked="false" Priority="46"
526
+ Name="Grid Table 1 Light Accent 2"/>
527
+ <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 2"/>
528
+ <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 2"/>
529
+ <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 2"/>
530
+ <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 2"/>
531
+ <w:LsdException Locked="false" Priority="51"
532
+ Name="Grid Table 6 Colorful Accent 2"/>
533
+ <w:LsdException Locked="false" Priority="52"
534
+ Name="Grid Table 7 Colorful Accent 2"/>
535
+ <w:LsdException Locked="false" Priority="46"
536
+ Name="Grid Table 1 Light Accent 3"/>
537
+ <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 3"/>
538
+ <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 3"/>
539
+ <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 3"/>
540
+ <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 3"/>
541
+ <w:LsdException Locked="false" Priority="51"
542
+ Name="Grid Table 6 Colorful Accent 3"/>
543
+ <w:LsdException Locked="false" Priority="52"
544
+ Name="Grid Table 7 Colorful Accent 3"/>
545
+ <w:LsdException Locked="false" Priority="46"
546
+ Name="Grid Table 1 Light Accent 4"/>
547
+ <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 4"/>
548
+ <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 4"/>
549
+ <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 4"/>
550
+ <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 4"/>
551
+ <w:LsdException Locked="false" Priority="51"
552
+ Name="Grid Table 6 Colorful Accent 4"/>
553
+ <w:LsdException Locked="false" Priority="52"
554
+ Name="Grid Table 7 Colorful Accent 4"/>
555
+ <w:LsdException Locked="false" Priority="46"
556
+ Name="Grid Table 1 Light Accent 5"/>
557
+ <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 5"/>
558
+ <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 5"/>
559
+ <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 5"/>
560
+ <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 5"/>
561
+ <w:LsdException Locked="false" Priority="51"
562
+ Name="Grid Table 6 Colorful Accent 5"/>
563
+ <w:LsdException Locked="false" Priority="52"
564
+ Name="Grid Table 7 Colorful Accent 5"/>
565
+ <w:LsdException Locked="false" Priority="46"
566
+ Name="Grid Table 1 Light Accent 6"/>
567
+ <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 6"/>
568
+ <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 6"/>
569
+ <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 6"/>
570
+ <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 6"/>
571
+ <w:LsdException Locked="false" Priority="51"
572
+ Name="Grid Table 6 Colorful Accent 6"/>
573
+ <w:LsdException Locked="false" Priority="52"
574
+ Name="Grid Table 7 Colorful Accent 6"/>
575
+ <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light"/>
576
+ <w:LsdException Locked="false" Priority="47" Name="List Table 2"/>
577
+ <w:LsdException Locked="false" Priority="48" Name="List Table 3"/>
578
+ <w:LsdException Locked="false" Priority="49" Name="List Table 4"/>
579
+ <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark"/>
580
+ <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful"/>
581
+ <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful"/>
582
+ <w:LsdException Locked="false" Priority="46"
583
+ Name="List Table 1 Light Accent 1"/>
584
+ <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 1"/>
585
+ <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 1"/>
586
+ <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 1"/>
587
+ <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 1"/>
588
+ <w:LsdException Locked="false" Priority="51"
589
+ Name="List Table 6 Colorful Accent 1"/>
590
+ <w:LsdException Locked="false" Priority="52"
591
+ Name="List Table 7 Colorful Accent 1"/>
592
+ <w:LsdException Locked="false" Priority="46"
593
+ Name="List Table 1 Light Accent 2"/>
594
+ <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 2"/>
595
+ <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 2"/>
596
+ <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 2"/>
597
+ <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 2"/>
598
+ <w:LsdException Locked="false" Priority="51"
599
+ Name="List Table 6 Colorful Accent 2"/>
600
+ <w:LsdException Locked="false" Priority="52"
601
+ Name="List Table 7 Colorful Accent 2"/>
602
+ <w:LsdException Locked="false" Priority="46"
603
+ Name="List Table 1 Light Accent 3"/>
604
+ <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 3"/>
605
+ <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 3"/>
606
+ <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 3"/>
607
+ <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 3"/>
608
+ <w:LsdException Locked="false" Priority="51"
609
+ Name="List Table 6 Colorful Accent 3"/>
610
+ <w:LsdException Locked="false" Priority="52"
611
+ Name="List Table 7 Colorful Accent 3"/>
612
+ <w:LsdException Locked="false" Priority="46"
613
+ Name="List Table 1 Light Accent 4"/>
614
+ <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 4"/>
615
+ <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 4"/>
616
+ <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 4"/>
617
+ <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 4"/>
618
+ <w:LsdException Locked="false" Priority="51"
619
+ Name="List Table 6 Colorful Accent 4"/>
620
+ <w:LsdException Locked="false" Priority="52"
621
+ Name="List Table 7 Colorful Accent 4"/>
622
+ <w:LsdException Locked="false" Priority="46"
623
+ Name="List Table 1 Light Accent 5"/>
624
+ <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 5"/>
625
+ <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 5"/>
626
+ <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 5"/>
627
+ <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 5"/>
628
+ <w:LsdException Locked="false" Priority="51"
629
+ Name="List Table 6 Colorful Accent 5"/>
630
+ <w:LsdException Locked="false" Priority="52"
631
+ Name="List Table 7 Colorful Accent 5"/>
632
+ <w:LsdException Locked="false" Priority="46"
633
+ Name="List Table 1 Light Accent 6"/>
634
+ <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 6"/>
635
+ <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 6"/>
636
+ <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 6"/>
637
+ <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 6"/>
638
+ <w:LsdException Locked="false" Priority="51"
639
+ Name="List Table 6 Colorful Accent 6"/>
640
+ <w:LsdException Locked="false" Priority="52"
641
+ Name="List Table 7 Colorful Accent 6"/>
642
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
643
+ Name="Mention"/>
644
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
645
+ Name="Smart Hyperlink"/>
646
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
647
+ Name="Hashtag"/>
648
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
649
+ Name="Unresolved Mention"/>
650
+ <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
651
+ Name="Smart Link"/>
652
+ </w:LatentStyles>
653
+ </xml><![endif]-->
654
+ <style>
655
+ <!--
656
+ /* Font Definitions */
657
+ @font-face
658
+ {font-family:"Cambria Math";
659
+ panose-1:2 4 5 3 5 4 6 3 2 4;
660
+ mso-font-charset:0;
661
+ mso-generic-font-family:roman;
662
+ mso-font-pitch:variable;
663
+ mso-font-signature:3 0 0 0 1 0;}
664
+ @font-face
665
+ {font-family:Calibri;
666
+ panose-1:2 15 5 2 2 2 4 3 2 4;
667
+ mso-font-charset:0;
668
+ mso-generic-font-family:swiss;
669
+ mso-font-pitch:variable;
670
+ mso-font-signature:-520082689 -1073697537 9 0 511 0;}
671
+ @font-face
672
+ {font-family:"Yu Mincho";
673
+ panose-1:2 2 4 0 0 0 0 0 0 0;
674
+ mso-font-alt:游明朝;
675
+ mso-font-charset:128;
676
+ mso-generic-font-family:roman;
677
+ mso-font-pitch:variable;
678
+ mso-font-signature:-2147482905 717749503 18 0 131231 0;}
679
+ @font-face
680
+ {font-family:"\@Yu Mincho";
681
+ mso-font-charset:128;
682
+ mso-generic-font-family:roman;
683
+ mso-font-pitch:variable;
684
+ mso-font-signature:-2147482905 717749503 18 0 131231 0;}
685
+ /* Style Definitions */
686
+ p.MsoNormal, li.MsoNormal, div.MsoNormal
687
+ {mso-style-unhide:no;
688
+ mso-style-qformat:yes;
689
+ mso-style-parent:"";
690
+ margin:0cm;
691
+ margin-bottom:.0001pt;
692
+ mso-pagination:widow-orphan;
693
+ font-size:12.0pt;
694
+ font-family:"Calibri",sans-serif;
695
+ mso-ascii-font-family:Calibri;
696
+ mso-ascii-theme-font:minor-latin;
697
+ mso-fareast-font-family:"Yu Mincho";
698
+ mso-fareast-theme-font:minor-fareast;
699
+ mso-hansi-font-family:Calibri;
700
+ mso-hansi-theme-font:minor-latin;
701
+ mso-bidi-font-family:"Times New Roman";
702
+ mso-bidi-theme-font:minor-bidi;}
703
+ p
704
+ {mso-style-noshow:yes;
705
+ mso-style-priority:99;
706
+ mso-margin-top-alt:auto;
707
+ margin-right:0cm;
708
+ mso-margin-bottom-alt:auto;
709
+ margin-left:0cm;
710
+ mso-pagination:widow-orphan;
711
+ font-size:12.0pt;
712
+ font-family:"Times New Roman",serif;
713
+ mso-fareast-font-family:"Times New Roman";}
714
+ span.SpellE
715
+ {mso-style-name:"";
716
+ mso-spl-e:yes;}
717
+ span.GramE
718
+ {mso-style-name:"";
719
+ mso-gram-e:yes;}
720
+ .MsoChpDefault
721
+ {mso-style-type:export-only;
722
+ mso-default-props:yes;
723
+ font-family:"Calibri",sans-serif;
724
+ mso-ascii-font-family:Calibri;
725
+ mso-ascii-theme-font:minor-latin;
726
+ mso-fareast-font-family:"Yu Mincho";
727
+ mso-fareast-theme-font:minor-fareast;
728
+ mso-hansi-font-family:Calibri;
729
+ mso-hansi-theme-font:minor-latin;
730
+ mso-bidi-font-family:"Times New Roman";
731
+ mso-bidi-theme-font:minor-bidi;}
732
+ @page WordSection1
733
+ {size:595.0pt 842.0pt;
734
+ margin:72.0pt 72.0pt 72.0pt 72.0pt;
735
+ mso-header-margin:35.4pt;
736
+ mso-footer-margin:35.4pt;
737
+ mso-paper-source:0;}
738
+ div.WordSection1
739
+ {page:WordSection1;}
740
+ -->
741
+ </style>
742
+ <!--[if gte mso 10]>
743
+ <style>
744
+ /* Style Definitions */
745
+ table.MsoNormalTable
746
+ {mso-style-name:"Table Normal";
747
+ mso-tstyle-rowband-size:0;
748
+ mso-tstyle-colband-size:0;
749
+ mso-style-noshow:yes;
750
+ mso-style-priority:99;
751
+ mso-style-parent:"";
752
+ mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
753
+ mso-para-margin:0cm;
754
+ mso-para-margin-bottom:.0001pt;
755
+ mso-pagination:widow-orphan;
756
+ font-size:12.0pt;
757
+ font-family:"Calibri",sans-serif;
758
+ mso-ascii-font-family:Calibri;
759
+ mso-ascii-theme-font:minor-latin;
760
+ mso-hansi-font-family:Calibri;
761
+ mso-hansi-theme-font:minor-latin;
762
+ mso-bidi-font-family:"Times New Roman";
763
+ mso-bidi-theme-font:minor-bidi;}
764
+ </style>
765
+ <![endif]-->
766
+ </head>
767
+
768
+ <body lang=EN-US style='tab-interval:36.0pt'>
769
+
770
+ <div class=WordSection1>
771
+
772
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
773
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt'><span
774
+ class=SpellE><b><span style='font-family:"Arial",sans-serif'>Câu</span></b></span><b><span
775
+ style='font-family:"Arial",sans-serif'> 1:</span></b><span style='font-family:
776
+ "Arial",sans-serif'>&nbsp;<span class=SpellE>Đốt</span> <span class=SpellE>cháy</span>
777
+ <span class=SpellE>hoàn</span> <span class=SpellE>toàn</span> 0,9 gam <span
778
+ class=SpellE>một</span> <span class=SpellE>loại</span> <span class=SpellE>gluxit</span>
779
+ X <span class=SpellE>thu</span> <span class=SpellE>được</span> 1,32 gam CO</span><sub
780
+ style='box-sizing: border-box;bottom: -0.25em'><span style='font-size:9.0pt;
781
+ font-family:"Arial",sans-serif'>2</span></sub><span style='font-family:"Arial",sans-serif'>&nbsp;<span
782
+ class=SpellE>và</span> 0,54 gam H</span><sub style='box-sizing: border-box;
783
+ bottom: -0.25em'><span style='font-size:9.0pt;font-family:"Arial",sans-serif'>2</span></sub><span
784
+ style='font-family:"Arial",sans-serif'>O. X <span class=SpellE>là</span> <span
785
+ class=SpellE>chất</span> <span class=SpellE>nào</span> <span class=SpellE>trong</span>
786
+ <span class=SpellE>số</span> <span class=SpellE>các</span> <span class=SpellE>chất</span>
787
+ <span class=SpellE><span class=GramE>sau</span></span><span class=GramE> ?</span><o:p></o:p></span></p>
788
+
789
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
790
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt;
791
+ box-sizing: border-box;overflow-wrap: break-word;font-variant-ligatures: normal;
792
+ font-variant-caps: normal;orphans: 2;widows: 2;-webkit-text-stroke-width: 0px;
793
+ text-decoration-style: initial;text-decoration-color: initial;word-spacing:
794
+ 0px'><span style='font-family:"Arial",sans-serif'>A. <span class=SpellE>saccarozơ</span><o:p></o:p></span></p>
795
+
796
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
797
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt'><span
798
+ style='font-family:"Arial",sans-serif'>B. <span class=SpellE>glucozơ</span>
799
+ !!!T<o:p></o:p></span></p>
800
+
801
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
802
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt'><span
803
+ style='font-family:"Arial",sans-serif'>C. <span class=SpellE>tinh</span> <span
804
+ class=SpellE>bột</span><o:p></o:p></span></p>
805
+
806
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
807
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt'><span
808
+ style='font-family:"Arial",sans-serif'>D. <span class=SpellE>xenlulozơ</span><o:p></o:p></span></p>
809
+
810
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
811
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt'><span
812
+ class=SpellE><b><span style='font-family:"Arial",sans-serif'>Câu</span></b></span><b><span
813
+ style='font-family:"Arial",sans-serif'> 2:</span></b><span style='font-family:
814
+ "Arial",sans-serif'>&nbsp;Cho 50 ml dung <span class=SpellE>dịch</span> <span
815
+ class=SpellE>glucozơ</span> <span class=SpellE>chưa</span> <span class=SpellE>rõ</span>
816
+ <span class=SpellE>nồng</span> <span class=SpellE>độ</span> <span class=SpellE>tác</span>
817
+ <span class=SpellE>dụng</span> <span class=SpellE>với</span> <span
818
+ class=SpellE>một</span> <span class=SpellE>lượng</span> <span class=SpellE>dư</span>
819
+ dung <span class=SpellE>dịch</span> AgNO</span><sub style='box-sizing: border-box;
820
+ bottom: -0.25em'><span style='font-size:9.0pt;font-family:"Arial",sans-serif'>3</span></sub><span
821
+ style='font-family:"Arial",sans-serif'>/NH</span><sub style='box-sizing: border-box;
822
+ bottom: -0.25em'><span style='font-size:9.0pt;font-family:"Arial",sans-serif'>3</span></sub><span
823
+ style='font-family:"Arial",sans-serif'>&nbsp;<span class=SpellE>thu</span> <span
824
+ class=SpellE>được</span> 2,16 gam <span class=SpellE>bạc</span> <span
825
+ class=SpellE>kết</span> <span class=SpellE>tủa</span>. <span class=SpellE>Nồng</span>
826
+ <span class=SpellE>độ</span> mol <span class=SpellE>của</span> dung <span
827
+ class=SpellE>dịch</span> <span class=SpellE>glucozơ</span> <span class=SpellE>đã</span>
828
+ <span class=SpellE>dùng</span> <span class=SpellE>là</span> <o:p></o:p></span></p>
829
+
830
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
831
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt'><span
832
+ style='font-family:"Arial",sans-serif'>A. 0,01M<o:p></o:p></span></p>
833
+
834
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
835
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt'><span
836
+ style='font-family:"Arial",sans-serif'>B. 0,02M<o:p></o:p></span></p>
837
+
838
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
839
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt'><span
840
+ style='font-family:"Arial",sans-serif'>C. 0,1M<o:p></o:p></span></p>
841
+
842
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
843
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt'><span
844
+ style='font-family:"Arial",sans-serif'>D. 0,20M !!!T<o:p></o:p></span></p>
845
+
846
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
847
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt'><span
848
+ class=SpellE><b><span style='font-family:"Arial",sans-serif'>Câu</span></b></span><b><span
849
+ style='font-family:"Arial",sans-serif'> 3:</span></b><span style='font-family:
850
+ "Arial",sans-serif'>&nbsp;<span class=SpellE>Đun</span> <span class=SpellE>nóng</span>
851
+ 27 gam <span class=SpellE>glucozơ</span> <span class=SpellE>với</span> AgNO</span><sub
852
+ style='box-sizing: border-box;bottom: -0.25em'><span style='font-size:9.0pt;
853
+ font-family:"Arial",sans-serif'>3</span></sub><span style='font-family:"Arial",sans-serif'>/NH</span><sub
854
+ style='box-sizing: border-box;bottom: -0.25em'><span style='font-size:9.0pt;
855
+ font-family:"Arial",sans-serif'>3</span></sub><span style='font-family:"Arial",sans-serif'>&nbsp;<span
856
+ class=SpellE>dư</span>. <span class=SpellE>Lọc</span> <span class=SpellE>lấy</span>
857
+ Ag <span class=SpellE>rồi</span> <span class=SpellE>cho</span> <span
858
+ class=SpellE>vào</span> dung <span class=SpellE>dịch</span> HNO</span><sub
859
+ style='box-sizing: border-box;bottom: -0.25em'><span style='font-size:9.0pt;
860
+ font-family:"Arial",sans-serif'>3</span></sub><span style='font-family:"Arial",sans-serif'>&nbsp;<span
861
+ class=SpellE>đặc</span> <span class=SpellE>nóng</span>, <span class=SpellE>dư</span>
862
+ <span class=SpellE>thì</span> <span class=SpellE>sau</span> <span class=SpellE>phản</span>
863
+ <span class=SpellE>ứng</span> <span class=SpellE>thu</span> <span class=SpellE>được</span>
864
+ <span class=SpellE>khí</span> NO</span><sub style='box-sizing: border-box;
865
+ bottom: -0.25em'><span style='font-size:9.0pt;font-family:"Arial",sans-serif'>2</span></sub><span
866
+ style='font-family:"Arial",sans-serif'>&nbsp;(<span class=SpellE>sản</span> <span
867
+ class=SpellE>phẩm</span> <span class=SpellE>khử</span> <span class=SpellE>duy</span>
868
+ <span class=SpellE>nhất</span>) <span class=SpellE>và</span> <span
869
+ class=SpellE>khối</span> <span class=SpellE>lượng</span> dung <span
870
+ class=SpellE>dịch</span> <span class=SpellE>axit</span> <span class=SpellE>tăng</span>
871
+ a <span class=SpellE>gam</span>. <span class=SpellE>Giả</span> <span
872
+ class=SpellE>sử</span> <span class=SpellE>các</span> <span class=SpellE>phản</span>
873
+ <span class=SpellE>ứng</span> <span class=SpellE>xảy</span> ra <span
874
+ class=SpellE>hoàn</span> <span class=SpellE>toàn</span>. <span class=SpellE>Giá</span>
875
+ <span class=SpellE>trị</span> <span class=SpellE>của</span> a <span
876
+ class=SpellE>là</span><o:p></o:p></span></p>
877
+
878
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
879
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt;
880
+ box-sizing: border-box;overflow-wrap: break-word;font-variant-ligatures: normal;
881
+ font-variant-caps: normal;orphans: 2;widows: 2;-webkit-text-stroke-width: 0px;
882
+ text-decoration-style: initial;text-decoration-color: initial;word-spacing:
883
+ 0px'><span style='font-family:"Arial",sans-serif'>A. 32,4<o:p></o:p></span></p>
884
+
885
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
886
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt'><span
887
+ style='font-family:"Arial",sans-serif'>B. 16,2<o:p></o:p></span></p>
888
+
889
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
890
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt'><span
891
+ style='font-family:"Arial",sans-serif'>C. 18,6 !!!T<o:p></o:p></span></p>
892
+
893
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
894
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt'><span
895
+ style='font-family:"Arial",sans-serif'>D. 9,3.<o:p></o:p></span></p>
896
+
897
+ <p class=MsoNormal style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;
898
+ margin-left:2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:
899
+ 18.0pt'><span class=SpellE><b><span style='font-family:"Arial",sans-serif;
900
+ mso-fareast-font-family:"Times New Roman"'>Câu</span></b></span><b><span
901
+ style='font-family:"Arial",sans-serif;mso-fareast-font-family:"Times New Roman"'>
902
+ 4:</span></b><span style='font-family:"Arial",sans-serif;mso-fareast-font-family:
903
+ "Times New Roman"'>&nbsp;<span class=SpellE>Lượng</span> <span class=SpellE>glucozơ</span>
904
+ <span class=SpellE>cần</span> <span class=SpellE>dùng</span> <span
905
+ class=SpellE>để</span> <span class=SpellE>tạo</span> ra 1,82 gam <span
906
+ class=SpellE>sobitol</span> <span class=SpellE>vói</span> <span class=SpellE>hiệu</span>
907
+ <span class=SpellE>suất</span> 80% <span class=SpellE>là</span><o:p></o:p></span></p>
908
+
909
+ <p class=MsoNormal style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;
910
+ margin-left:2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:
911
+ 18.0pt'><span style='font-family:"Arial",sans-serif;mso-fareast-font-family:
912
+ "Times New Roman"'>A. 2,25 gam </span><span style='font-family:"Arial",sans-serif'>!!!T</span><span
913
+ style='font-family:"Arial",sans-serif;mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></p>
914
+
915
+ <p class=MsoNormal style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;
916
+ margin-left:2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:
917
+ 18.0pt'><span style='font-family:"Arial",sans-serif;mso-fareast-font-family:
918
+ "Times New Roman"'>B. 1,80 gam<o:p></o:p></span></p>
919
+
920
+ <p class=MsoNormal style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;
921
+ margin-left:2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:
922
+ 18.0pt'><span style='font-family:"Arial",sans-serif;mso-fareast-font-family:
923
+ "Times New Roman"'>C. 1,82 gam<o:p></o:p></span></p>
924
+
925
+ <p class=MsoNormal style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;
926
+ margin-left:2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:
927
+ 18.0pt'><span style='font-family:"Arial",sans-serif;mso-fareast-font-family:
928
+ "Times New Roman"'>D. 1,44 gam<o:p></o:p></span></p>
929
+
930
+ <p class=MsoNormal><span style='font-family:"Times New Roman",serif;mso-fareast-font-family:
931
+ "Times New Roman"'><o:p>&nbsp;</o:p></span></p>
932
+
933
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
934
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt'><span
935
+ class=SpellE><b><span style='font-family:"Arial",sans-serif'>Câu</span></b></span><b><span
936
+ style='font-family:"Arial",sans-serif'> 5:</span></b><span style='font-family:
937
+ "Arial",sans-serif'>&nbsp;Cho a gam <span class=SpellE>glucozơ</span> <span
938
+ class=SpellE>phản</span> <span class=SpellE>ứng</span> <span class=SpellE>với</span>
939
+ dung <span class=SpellE>dịch</span> AgNO</span><sub style='box-sizing: border-box;
940
+ bottom: -0.25em'><span style='font-size:9.0pt;font-family:"Arial",sans-serif'>3</span></sub><span
941
+ style='font-family:"Arial",sans-serif'>/NH</span><sub style='box-sizing: border-box;
942
+ bottom: -0.25em'><span style='font-size:9.0pt;font-family:"Arial",sans-serif'>3</span></sub><span
943
+ style='font-family:"Arial",sans-serif'>&nbsp;<span class=SpellE>tạo</span> <span
944
+ class=SpellE>thành</span> a gam Ag. <span class=SpellE>Phần</span> <span
945
+ class=SpellE>trăm</span> <span class=SpellE>của</span> <span class=SpellE>glucozơ</span>
946
+ <span class=SpellE>tham</span> <span class=SpellE>gia</span> <span
947
+ class=SpellE>phản</span> <span class=SpellE>ứng</span> <span class=SpellE>là</span><o:p></o:p></span></p>
948
+
949
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
950
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt;
951
+ box-sizing: border-box;overflow-wrap: break-word;font-variant-ligatures: normal;
952
+ font-variant-caps: normal;orphans: 2;widows: 2;-webkit-text-stroke-width: 0px;
953
+ text-decoration-style: initial;text-decoration-color: initial;word-spacing:
954
+ 0px'><span style='font-family:"Arial",sans-serif'>A. 41,66%<o:p></o:p></span></p>
955
+
956
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
957
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt'><span
958
+ style='font-family:"Arial",sans-serif'>B. 75,00%<o:p></o:p></span></p>
959
+
960
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
961
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt'><span
962
+ style='font-family:"Arial",sans-serif'>C. 83,33% !!!T<o:p></o:p></span></p>
963
+
964
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
965
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt'><span
966
+ style='font-family:"Arial",sans-serif'>D.37,50%<o:p></o:p></span></p>
967
+
968
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
969
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt'><span
970
+ style='font-family:"Arial",sans-serif'><o:p>&nbsp;</o:p></span></p>
971
+
972
+ <p style='margin-top:0cm;margin-right:2.4pt;margin-bottom:12.0pt;margin-left:
973
+ 2.4pt;text-align:justify;text-justify:inter-ideograph;line-height:18.0pt'><span
974
+ style='font-family:"Arial",sans-serif'><o:p>&nbsp;</o:p></span></p>
975
+
976
+ <p class=MsoNormal><o:p>&nbsp;</o:p></p>
977
+
978
+ </div>
979
+
980
+ </body>
981
+
982
+ </html>