MiFID II Chapter 1-2 Quiz
1 month ago in HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MiFID II Chapter 1-2 Quiz</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background: linear-gradient(135deg, #1a2a6c, #b21f1f, #1a2a6c);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}
.quiz-container {
width: 100%;
max-width: 800px;
background: rgba(255, 255, 255, 0.95);
border-radius: 20px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
overflow: hidden;
position: relative;
}
.header {
background: linear-gradient(90deg, #1a2a6c, #2c3e50);
color: white;
padding: 25px;
text-align: center;
position: relative;
}
.header h1 {
font-size: 1.8rem;
margin-bottom: 10px;
}
.language-toggle {
display: flex;
justify-content: center;
gap: 15px;
margin-top: 15px;
}
.lang-btn {
background: rgba(255, 255, 255, 0.2);
border: none;
color: white;
padding: 8px 20px;
border-radius: 50px;
cursor: pointer;
font-weight: 600;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 8px;
}
.lang-btn.active {
background: white;
color: #1a2a6c;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.progress-container {
background: rgba(255, 255, 255, 0.3);
height: 8px;
border-radius: 4px;
margin-top: 20px;
overflow: hidden;
}
.progress-bar {
height: 100%;
background: #4CAF50;
width: 0%;
transition: width 0.5s ease;
}
.question-container {
padding: 30px;
min-height: 400px;
}
.question-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 25px;
}
.question-number {
background: #1a2a6c;
color: white;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 1.2rem;
}
.question-text {
font-size: 1.3rem;
line-height: 1.5;
margin-bottom: 30px;
color: #2c3e50;
font-weight: 600;
}
.options-container {
display: flex;
flex-direction: column;
gap: 15px;
}
.option {
padding: 16px 20px;
background: #f8f9fa;
border-radius: 12px;
cursor: pointer;
transition: all 0.3s ease;
border: 2px solid #e9ecef;
display: flex;
align-items: center;
gap: 12px;
}
.option:hover {
background: #e9ecef;
transform: translateY(-2px);
}
.option.selected {
border-color: #1a2a6c;
background: #e3f2fd;
}
.option.correct {
border-color: #4CAF50;
background: #e8f5e9;
}
.option.incorrect {
border-color: #f44336;
background: #ffebee;
}
.option-letter {
background: #1a2a6c;
color: white;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
}
.option-text {
flex: 1;
}
.navigation {
display: flex;
justify-content: space-between;
padding: 20px 30px;
border-top: 1px solid #e9ecef;
}
.nav-btn {
padding: 12px 30px;
border: none;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
display: flex;
align-items: center;
gap: 10px;
transition: all 0.3s ease;
}
.prev-btn {
background: #e9ecef;
color: #495057;
}
.prev-btn:hover {
background: #dee2e6;
}
.next-btn, .submit-btn {
background: #1a2a6c;
color: white;
}
.next-btn:hover, .submit-btn:hover {
background: #152256;
transform: translateY(-2px);
}
.submit-btn {
background: #4CAF50;
}
.submit-btn:hover {
background: #388E3C;
}
.results-container {
padding: 30px;
text-align: center;
}
.score-circle {
width: 180px;
height: 180px;
border-radius: 50%;
background: #4CAF50;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 0 auto 30px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.score-text {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 5px;
}
.score-value {
font-size: 3.5rem;
font-weight: 700;
}
.score-message {
font-size: 1.5rem;
color: #2c3e50;
margin-bottom: 30px;
font-weight: 600;
}
.restart-btn {
padding: 14px 40px;
background: #1a2a6c;
color: white;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 10px;
margin: 0 auto;
}
.restart-btn:hover {
background: #152256;
transform: translateY(-3px);
}
.hidden {
display: none;
}
@media (max-width: 768px) {
.quiz-container {
border-radius: 15px;
}
.header h1 {
font-size: 1.5rem;
}
.question-container {
padding: 20px;
}
.question-text {
font-size: 1.1rem;
}
.option {
padding: 12px 15px;
}
.nav-btn {
padding: 10px 20px;
}
}
</style>
</head>
<body>
<div class="quiz-container">
<div class="header">
<h1><i class="fas fa-graduation-cap"></i> MiFID II Chapter 1-2 Quiz</h1>
<div class="language-toggle">
<button id="lang-en" class="lang-btn active">
<i class="fas fa-language"></i> English
</button>
<button id="lang-el" class="lang-btn">
<i class="fas fa-language"></i> Ελληνικά
</button>
</div>
<div class="progress-container">
<div class="progress-bar" id="progress-bar"></div>
</div>
</div>
<div id="quiz-content">
<div class="question-container">
<div class="question-header">
<div class="question-number" id="question-number">1</div>
</div>
<div class="question-text" id="question-text"></div>
<div class="options-container" id="options-container"></div>
</div>
<div class="navigation">
<button id="prev-btn" class="nav-btn prev-btn">
<i class="fas fa-arrow-left"></i> Previous
</button>
<button id="next-btn" class="nav-btn next-btn">
Next <i class="fas fa-arrow-right"></i>
</button>
<button id="submit-btn" class="nav-btn submit-btn hidden">
Submit <i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
<div id="results-container" class="results-container hidden">
<div class="score-circle">
<div class="score-text">Your Score</div>
<div class="score-value" id="score-value">0%</div>
</div>
<div class="score-message" id="score-message"></div>
<button id="restart-btn" class="restart-btn">
<i class="fas fa-redo"></i> Restart Quiz
</button>
</div>
</div>
<script>
// Quiz data structure
const quizData = {
en: [
{
question: "Which two Cypriot authorities are explicitly designated as competent under MiFID II for supervising investment services?",
options: [
"Ministry of Finance and Cyprus Stock Exchange",
"Cyprus Securities and Exchange Commission (CySEC) and Central Bank of Cyprus",
"Financial Intelligence Unit and Auditor General",
"European Banking Authority and CySEC"
],
answer: 1
},
{
question: "Under the Cypriot regime, within how many months must CySEC decide on an application for an initial operating licence for a CIF?",
options: [
"3 months",
"6 months",
"9 months",
"12 months"
],
answer: 1
},
{
question: "A CIF that fails to use its licence for 12 consecutive months may face which regulatory consequence?",
options: [
"Licence suspension for 6 months",
"Automatic downgrade to tied-agent status",
"Licence revocation",
"Administrative fine only"
],
answer: 2
},
{
question: "Which of the following is NOT listed as an exemption from the scope of Law 87(I)/2017?",
options: [
"EU central banks",
"Collective investment undertakings",
"Insurance intermediaries performing MiFID services exclusively for their parent",
"High-frequency proprietary traders"
],
answer: 3
},
{
question: "When appointing tied agents, the CIF remains:",
options: [
"Jointly and severally liable only for advice",
"Fully and unconditionally liable for all acts and omissions",
"Liable only if the agent is not registered in a public register",
"Exempt from liability where the agent operates outside Cyprus"
],
answer: 1
},
{
question: "What is the minimum percentage of SME issuers required for a market to qualify as an SME Growth Market under CySEC rules?",
options: [
"30 %",
"40 %",
"50 %",
"60 %"
],
answer: 2
},
{
question: "Which criterion must an issuer without listed shares satisfy to be classified as an SME?",
options: [
"< 250 employees AND balance sheet ≤ €35 m AND turnover ≤ €40 m",
"< 250 employees OR balance sheet ≤ €43 m OR turnover ≤ €50 m",
"< 200 employees AND balance sheet ≤ €50 m AND turnover ≤ €50 m",
"< 300 employees OR balance sheet ≤ €40 m OR turnover ≤ €45 m"
],
answer: 1
},
{
question: "A regulated market must establish rules ensuring that issuers publish annual financial reports within how many months after year-end?",
options: [
"3 months",
"4 months",
"5 months",
"6 months"
],
answer: 3
},
{
question: "Which of the following signals is explicitly listed as a potential indicator of market manipulation under MiFID II?",
options: [
"Consistently high trading volume",
"Marking the close to influence reference prices",
"Use of algorithmic strategies",
"Cross-listing on multiple venues"
],
answer: 1
},
{
question: "Direct electronic access to a regulated market may only be provided to:",
options: [
"Any registered broker",
"Approved investment firms (CIFs or EU equivalents)",
"Retail clients with adequate experience",
"Market-makers exclusively"
],
answer: 1
}
],
el: [
{
question: "Ποιες δύο αρχές της Κύπρου έχουν οριστεί ως αρμόδιες υπό το MiFID II για την εποπτεία των επενδυτικών υπηρεσιών;",
options: [
"Υπουργείο Οικονομικών και Χρηματιστήριο Κύπρου",
"Επιτροπή Κεφαλαιαγοράς Κύπρου (CySEC) και Κεντρική Τράπεζα της Κύπρου",
"Μονάδα Χρηματοοικονομικής Αστυνόμευσης και Γενικός Ελεγκτής",
"Ευρωπαϊκή Αρχή Τραπεζών και CySEC"
],
answer: 1
},
{
question: "Σύμφωνα με το κυπριακό πλαίσιο, εντός πόσων μηνών η CySEC οφείλει να αποφασίσει για αίτηση αρχικής άδειας λειτουργίας ΚΕΠΕΥ;",
options: [
"3 μήνες",
"6 μήνες",
"9 μήνες",
"12 μήνες"
],
answer: 1
},
{
question: "ΚΕΠΕΥ που δεν χρησιμοποιεί την άδειά της για 12 συνεχείς μήνες ενδέχεται να αντιμετωπίσει ποιο ρυθμιστικό μέτρο;",
options: [
"Αναστολή για 6 μήνες",
"Αυτόματη υποβάθμιση σε συνδεδεμένο αντιπρόσωπο",
"Ανάκληση άδειας",
"Διοικητικό πρόστιμο μόνο"
],
answer: 2
},
{
question: "Ποιο από τα παρακάτω ΔΕΝ αναφέρεται ως εξαίρεση από το πεδίο εφαρμογής του Νόμου 87(I)/2017;",
options: [
"Κεντρικές τράπεζες της ΕΕ",
"Οργανισμοί συλλογικών επενδύσεων",
"Ασφαλιστικοί διαμεσολαβητές που παρέχουν υπηρεσίες αποκλειστικά για τη μητρική τους",
"Ιδιώτες διαπραγματευτές υψηλής συχνότητας"
],
answer: 3
},
{
question: "Κατά τον διορισμό συνδεδεμένων αντιπροσώπων, η ΚΕΠΕΥ παραμένει:",
options: [
"Από κοινού υπεύθυνη μόνο για συμβουλές",
"Πλήρως και απόλυτα υπεύθυνη για όλες τις πράξεις και παραλείψεις",
"Υπεύθυνη μόνο εάν ο αντιπρόσωπος δεν είναι εγγεγραμμένος σε δημόσιο μητρώο",
"Απαλλαγμένη ευθύνης όταν δρα εκτός Κύπρου"
],
answer: 1
},
{
question: "Ποιο είναι το ελάχιστο ποσοστό εκδοτών-ΜΜΕ που απαιτείται για να χαρακτηριστεί μια αγορά ως «Αγορά Ανάπτυξης ΜΜΕ»;",
options: [
"30 %",
"40 %",
"50 %",
"60 %"
],
answer: 2
},
{
question: "Ποιο κριτήριο πρέπει να πληροί εκδότης χωρίς εισηγμένες μετοχές για να θεωρηθεί ΜΜΕ;",
options: [
"< 250 εργαζόμενοι ΚΑΙ ισολογισμός ≤ €35 εκ. ΚΑΙ τζίρος ≤ €40 εκ.",
"< 250 εργαζόμενοι Ή ισολογισμός ≤ €43 εκ. Ή τζίρος ≤ €50 εκ.",
"< 200 εργαζόμενοι ΚΑΙ ισολογισμός ≤ €50 εκ. ΚΑΙ τζίρος ≤ €50 εκ.",
"< 300 εργαζόμενοι Ή ισολογισμός ≤ €40 εκ. Ή τζίρος ≤ €45 εκ."
],
answer: 1
},
{
question: "Μια ρυθμιζόμενη αγορά οφείλει να θεσπίσει κανόνες που να υποχρεώνουν τους εκδότες να δημοσιεύουν ετήσιες οικονομικές εκθέσεις το αργότερο εντός πόσων μηνών από το τέλος του οικονομικού έτους;",
options: [
"3 μηνών",
"4 μηνών",
"5 μηνών",
"6 μηνών"
],
answer: 3
},
{
question: "Ποιο από τα παρακάτω σήματα αναφέρεται ρητά ως ενδεχόμενο δείκτη χειραγώγησης αγοράς;",
options: [
"Σταθερά υψηλός όγκος συναλλαγών",
"«Marking the close» για επηρεασμό τιμών αναφοράς",
"Χρήση αλγοριθμικών στρατηγικών γενικά",
"Διπλή εισαγωγή σε πολλαπλές αγορές"
],
answer: 1
},
{
question: "Η απευθείας ηλεκτρονική πρόσβαση σε ρυθμιζόμενη αγορά επιτρέπεται μόνο σε:",
options: [
"Οποιονδήποτε εγγεγραμμένο χρηματιστή",
"Εγκεκριμένες ΕΠΕΥ ή ισοδύναμες εταιρείες της ΕΕ",
"Λιανικούς πελάτες με επαρκή εμπειρία",
"Αποκλειστικά σε market-makers"
],
answer: 1
}
]
};
// App state
let currentLanguage = 'en';
let currentQuestion = 0;
let userAnswers = Array(quizData.en.length).fill(null);
let quizSubmitted = false;
// DOM Elements
const langEnBtn = document.getElementById('lang-en');
const langElBtn = document.getElementById('lang-el');
const progressBar = document.getElementById('progress-bar');
const questionNumber = document.getElementById('question-number');
const questionText = document.getElementById('question-text');
const optionsContainer = document.getElementById('options-container');
const prevBtn = document.getElementById('prev-btn');
const nextBtn = document.getElementById('next-btn');
const submitBtn = document.getElementById('submit-btn');
const quizContent = document.getElementById('quiz-content');
const resultsContainer = document.getElementById('results-container');
const scoreValue = document.getElementById('score-value');
const scoreMessage = document.getElementById('score-message');
const restartBtn = document.getElementById('restart-btn');
// Initialize the quiz
function initQuiz() {
setLanguage(currentLanguage);
updateProgressBar();
renderQuestion();
updateNavigation();
}
// Set language
function setLanguage(lang) {
currentLanguage = lang;
// Update UI based on language
if (lang === 'en') {
langEnBtn.classList.add('active');
langElBtn.classList.remove('active');
// Update navigation buttons
prevBtn.innerHTML = '<i class="fas fa-arrow-left"></i> Previous';
nextBtn.innerHTML = 'Next <i class="fas fa-arrow-right"></i>';
submitBtn.innerHTML = 'Submit <i class="fas fa-paper-plane"></i>';
restartBtn.innerHTML = '<i class="fas fa-redo"></i> Restart Quiz';
} else {
langElBtn.classList.add('active');
langEnBtn.classList.remove('active');
// Update navigation buttons
prevBtn.innerHTML = '<i class="fas fa-arrow-left"></i> Προηγούμενη';
nextBtn.innerHTML = 'Επόμενη <i class="fas fa-arrow-right"></i>';
submitBtn.innerHTML = 'Υποβολή <i class="fas fa-paper-plane"></i>';
restartBtn.innerHTML = '<i class="fas fa-redo"></i> Επανεκκίνηση';
}
// Re-render the current question
renderQuestion();
}
// Update progress bar
function updateProgressBar() {
const answeredQuestions = userAnswers.filter(answer => answer !== null).length;
const totalQuestions = quizData[currentLanguage].length;
const progress = (answeredQuestions / totalQuestions) * 100;
progressBar.style.width = `${progress}%`;
}
// Render current question
function renderQuestion() {
const questions = quizData[currentLanguage];
const question = questions[currentQuestion];
// Update question number
questionNumber.textContent = currentQuestion + 1;
// Update question text
questionText.textContent = question.question;
// Clear options container
optionsContainer.innerHTML = '';
// Create options
const letters = ['A', 'B', 'C', 'D'];
question.options.forEach((option, index) => {
const optionElement = document.createElement('div');
optionElement.classList.add('option');
// If quiz is submitted, show correct/incorrect styling
if (quizSubmitted) {
if (index === question.answer) {
optionElement.classList.add('correct');
} else if (userAnswers[currentQuestion] === index) {
optionElement.classList.add('incorrect');
}
}
// If this option is selected by user
if (userAnswers[currentQuestion] === index) {
optionElement.classList.add('selected');
}
optionElement.innerHTML = `
<div class="option-letter">${letters[index]}</div>
<div class="option-text">${option}</div>
`;
// Only allow option selection if quiz hasn't been submitted
if (!quizSubmitted) {
optionElement.addEventListener('click', () => {
selectOption(index);
});
}
optionsContainer.appendChild(optionElement);
});
}
// Select an option
function selectOption(index) {
userAnswers[currentQuestion] = index;
renderQuestion();
updateProgressBar();
updateNavigation();
}
// Update navigation buttons
function updateNavigation() {
const questions = quizData[currentLanguage];
// Hide previous button on first question
if (currentQuestion === 0) {
prevBtn.classList.add('hidden');
} else {
prevBtn.classList.remove('hidden');
}
// Show submit button on last question if an answer is selected
if (currentQuestion === questions.length - 1 && userAnswers[currentQuestion] !== null) {
nextBtn.classList.add('hidden');
submitBtn.classList.remove('hidden');
} else {
nextBtn.classList.remove('hidden');
submitBtn.classList.add('hidden');
}
}
// Go to next question
function nextQuestion() {
if (currentQuestion < quizData[currentLanguage].length - 1) {
currentQuestion++;
renderQuestion();
updateNavigation();
}
}
// Go to previous question
function prevQuestion() {
if (currentQuestion > 0) {
currentQuestion--;
renderQuestion();
updateNavigation();
}
}
// Submit quiz
function submitQuiz() {
quizSubmitted = true;
// Calculate score
const questions = quizData[currentLanguage];
let correctCount = 0;
userAnswers.forEach((answer, index) => {
if (answer === questions[index].answer) {
correctCount++;
}
});
const score = Math.round((correctCount / questions.length) * 100);
// Display results
quizContent.classList.add('hidden');
resultsContainer.classList.remove('hidden');
scoreValue.textContent = `${score}%`;
// Set score message based on performance
if (score >= 90) {
scoreMessage.textContent = currentLanguage === 'en'
? 'Excellent! You have a thorough understanding of MiFID II Chapter 1-2.'
: 'Εξαιρετικά! Έχετε βαθιά κατανόηση του MiFID II Κεφαλαίων 1-2.';
} else if (score >= 70) {
scoreMessage.textContent = currentLanguage === 'en'
? 'Good job! You have a solid understanding of MiFID II Chapter 1-2.'
: 'Καλή δουλειά! Έχετε σταθερή κατανόηση του MiFID II Κεφαλαίων 1-2.';
} else if (score >= 50) {
scoreMessage.textContent = currentLanguage === 'en'
? 'Fair. Consider reviewing MiFID II Chapter 1-2 materials again.'
: 'Μέτρια. Εξετάστε το ενδεχόμενο επανάληψης της ύλης των Κεφαλαίων 1-2 του MiFID II.';
} else {
scoreMessage.textContent = currentLanguage === 'en'
? 'Needs improvement. Please review MiFID II Chapter 1-2 materials.'
: 'Χρειάζεται βελτίωση. Παρακαλούμε επαναλάβετε την ύλη των Κεφαλαίων 1-2 του MiFID II.';
}
}
// Restart quiz
function restartQuiz() {
currentQuestion = 0;
userAnswers = Array(quizData.en.length).fill(null);
quizSubmitted = false;
resultsContainer.classList.add('hidden');
quizContent.classList.remove('hidden');
updateProgressBar();
renderQuestion();
updateNavigation();
}
// Event Listeners
langEnBtn.addEventListener('click', () => {
if (currentLanguage !== 'en') {
setLanguage('en');
}
});
langElBtn.addEventListener('click', () => {
if (currentLanguage !== 'el') {
setLanguage('el');
}
});
nextBtn.addEventListener('click', nextQuestion);
prevBtn.addEventListener('click', prevQuestion);
submitBtn.addEventListener('click', submitQuiz);
restartBtn.addEventListener('click', restartQuiz);
// Initialize the quiz
initQuiz();
</script>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814