This repository has been archived by the owner on Aug 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlab_start_20171013.json
1683 lines (1683 loc) · 267 KB
/
lab_start_20171013.json
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
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": "9629ac4a.13e5f",
"type": "tab",
"label": "Lab-Use IoT Information",
"disabled": false,
"info": ""
},
{
"id": "8094923f.1a5d8",
"type": "tab",
"label": "Configure-TaxiSimulation",
"disabled": false,
"info": ""
},
{
"id": "8726150f.fd5118",
"type": "tab",
"label": "Configure-Blob for ObjectStorage",
"disabled": false,
"info": ""
},
{
"id": "2ced49a6.86cd66",
"type": "ui_tab",
"z": "",
"name": "Taxi-Sim IoT Config",
"icon": "dashboard",
"order": 1
},
{
"id": "143fb31f.56cffd",
"type": "ui_group",
"z": "",
"name": "Configuration to access Watson IoT ",
"tab": "2ced49a6.86cd66",
"order": 2,
"disp": true,
"width": "6"
},
{
"id": "8d4328f3.4b2a48",
"type": "ui_base",
"theme": {
"name": "theme-light",
"lightTheme": {
"default": "#0094CE",
"baseColor": "#1e63ce",
"baseFont": "-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif",
"edited": true,
"reset": false
},
"darkTheme": {
"default": "#097479",
"baseColor": "#097479",
"baseFont": "-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif",
"edited": false
},
"customTheme": {
"name": "Untitled Theme 1",
"default": "#4B7930",
"baseColor": "#4B7930",
"baseFont": "-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif",
"reset": false
},
"themeState": {
"base-color": {
"default": "#0094CE",
"value": "#1e66ce",
"edited": true
},
"page-titlebar-backgroundColor": {
"value": "#1e63ce",
"edited": false
},
"page-backgroundColor": {
"value": "#fafafa",
"edited": false
},
"page-sidebar-backgroundColor": {
"value": "#000000",
"edited": false
},
"group-textColor": {
"value": "#538ce6",
"edited": false
},
"group-borderColor": {
"value": "#ffffff",
"edited": false
},
"group-backgroundColor": {
"value": "#ffffff",
"edited": false
},
"widget-textColor": {
"value": "#111111",
"edited": false
},
"widget-backgroundColor": {
"value": "#1e63ce",
"edited": false
},
"widget-borderColor": {
"value": "#ffffff",
"edited": false
},
"base-font": {
"value": "-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif"
}
}
},
"site": {
"name": "Taxi-Simulation Configration",
"hideToolbar": "false",
"allowSwipe": "false",
"dateFormat": "DD/MM/YYYY",
"sizes": {
"sx": 48,
"sy": 48,
"gx": 6,
"gy": 6,
"cx": 6,
"cy": 6,
"px": 0,
"py": 0
}
}
},
{
"id": "e5a5cb6f.ac6038",
"type": "os-config",
"z": "",
"cfgtype": "api",
"region": "dallas",
"projectId": "",
"userId": "",
"userName": "",
"password": "",
"name": "taxi bluemix"
},
{
"id": "f3d5adb8.68469",
"type": "Device Schema",
"z": "",
"deviceType": "Taxi",
"props": [
{
"guid": "05fb4a4f08f2",
"name": "latitude",
"random": {
"func": "latitude",
"args": {}
}
},
{
"guid": "eb0929b78cc3",
"name": "longitude",
"random": {
"func": "longitude",
"args": {}
}
},
{
"guid": "a3671e2f10d3",
"name": "velocity",
"defaultValue": {
"type": "num",
"value": "0"
}
}
],
"evts": [
{
"guid": "d5427bc13c80",
"name": "LocationChange",
"payload": {
"properties": {
"0": "05fb4a4f08f2",
"length": 1,
"prevObject": {
"0": "05fb4a4f08f2",
"length": 1,
"prevObject": {
"0": {},
"length": 1,
"prevObject": {
"0": {
"sizzle1504262139011": {
"parentNode": [
17265,
45,
true
]
}
},
"selector": ".red-ui-editableList-item-content",
"context": {
"sizzle1504262139011": {
"parentNode": [
16750.408706135233,
39,
true
]
}
},
"length": 1
},
"context": {
"sizzle1504262139011": {
"parentNode": [
16750.408706135233,
39,
true
]
}
},
"selector": ".red-ui-editableList-item-content .node-input-evts-payload option:selected"
},
"context": {
"sizzle1504262139011": {
"parentNode": [
16750.408706135233,
39,
true
]
}
}
},
"context": {
"sizzle1504262139011": {
"parentNode": [
16750.408706135233,
39,
true
]
}
}
}
}
},
{
"guid": "554e5783d373",
"name": "VelocityChange",
"payload": {
"properties": {
"0": "a3671e2f10d3",
"length": 1,
"prevObject": {
"0": "a3671e2f10d3",
"length": 1,
"prevObject": {
"0": {},
"length": 1,
"prevObject": {
"0": {
"sizzle1504262139011": {
"parentNode": [
17266,
45,
true
]
}
},
"selector": ".red-ui-editableList-item-content",
"context": {
"sizzle1504262139011": {
"parentNode": [
16750.408706135233,
39,
true
]
}
},
"length": 1
},
"context": {
"sizzle1504262139011": {
"parentNode": [
16750.408706135233,
39,
true
]
}
},
"selector": ".red-ui-editableList-item-content .node-input-evts-payload option:selected"
},
"context": {
"sizzle1504262139011": {
"parentNode": [
16750.408706135233,
39,
true
]
}
}
},
"context": {
"sizzle1504262139011": {
"parentNode": [
16750.408706135233,
39,
true
]
}
}
}
}
},
{
"guid": "c29d4649b60a",
"name": "update",
"payload": {
"properties": {
"0": "05fb4a4f08f2",
"1": "eb0929b78cc3",
"2": "a3671e2f10d3",
"length": 3,
"prevObject": {
"0": "05fb4a4f08f2",
"1": "eb0929b78cc3",
"2": "a3671e2f10d3",
"length": 3,
"prevObject": {
"0": {},
"1": {},
"2": {},
"length": 3,
"prevObject": {
"0": {
"sizzle1504262139011": {
"parentNode": [
17267,
45,
true
]
}
},
"selector": ".red-ui-editableList-item-content",
"context": {
"sizzle1504262139011": {
"parentNode": [
16750.408706135233,
39,
true
]
}
},
"length": 1
},
"context": {
"sizzle1504262139011": {
"parentNode": [
16750.408706135233,
39,
true
]
}
},
"selector": ".red-ui-editableList-item-content .node-input-evts-payload option:selected"
},
"context": {
"sizzle1504262139011": {
"parentNode": [
16750.408706135233,
39,
true
]
}
}
},
"context": {
"sizzle1504262139011": {
"parentNode": [
16750.408706135233,
39,
true
]
}
}
}
}
}
]
},
{
"id": "724eac70.effaf4",
"type": "ui_group",
"z": "",
"name": "Status Taxi 01",
"tab": "dd5d5a8a.1cb0f8",
"order": 2,
"disp": true,
"width": "6"
},
{
"id": "933cd72b.3a76e8",
"type": "ui_tab",
"z": "",
"name": "Taxi-Sim IoT Output",
"icon": "dashboard",
"order": 3
},
{
"id": "32b80437.0b608c",
"type": "ui_group",
"z": "",
"name": "IoT Output",
"tab": "933cd72b.3a76e8",
"order": 1,
"disp": true,
"width": "6"
},
{
"id": "dd5d5a8a.1cb0f8",
"type": "ui_tab",
"z": "",
"name": "Taxi-Sim Status",
"icon": "dashboard",
"order": 2
},
{
"id": "4ec38338.082bbc",
"type": "ui_group",
"z": "",
"name": "Status all",
"tab": "dd5d5a8a.1cb0f8",
"order": 1,
"disp": true,
"width": "6"
},
{
"id": "78d50df3.c1ce34",
"type": "ui_group",
"z": "",
"name": "Status Taxi 02",
"tab": "dd5d5a8a.1cb0f8",
"order": 3,
"disp": true,
"width": "6"
},
{
"id": "f3e53097.27c8c",
"type": "ui_form",
"z": "8094923f.1a5d8",
"name": "",
"label": "IoT Auth Configuration",
"group": "143fb31f.56cffd",
"order": 1,
"width": 0,
"height": 0,
"options": [
{
"label": "IoT Username",
"value": "username",
"type": "text",
"required": true
},
{
"label": "IoT Password",
"value": "password",
"type": "text",
"required": true
},
{
"label": "IoT Organization",
"value": "orgid",
"type": "text",
"required": true
},
{
"label": "Number of Taxis",
"value": "taxi_num",
"type": "number",
"required": true
}
],
"formValue": {
"username": "",
"password": "",
"orgid": "",
"taxi_num": ""
},
"payload": "",
"topic": "",
"x": 129,
"y": 289,
"wires": [
[
"ea8b58e1.527b98",
"8d8b0502.61d2b8"
]
],
"outputLabels": [
"config"
]
},
{
"id": "ea8b58e1.527b98",
"type": "function",
"z": "8094923f.1a5d8",
"name": "set config for Watson IoT",
"func": "flow.set(\"orgid\", msg.payload.orgid);\nflow.set(\"instances\", msg.payload.taxi_num);\nflow.set(\"username\", msg.payload.username);\nflow.set(\"password\", msg.payload.password);\nreturn msg;",
"outputs": 1,
"noerr": 0,
"x": 378,
"y": 288,
"wires": [
[
"30915d74.15d1c2"
]
]
},
{
"id": "30915d74.15d1c2",
"type": "function",
"z": "8094923f.1a5d8",
"name": "Register Taxi Type",
"func": "var orgid = flow.get(\"orgid\");\n\nmsg = {\n url:\"https://\" + orgid + \".internetofthings.ibmcloud.com/api/v0002/device/types\",\n payload: {\"id\":\"Taxi\"},\n headers:{\n \"Accept\":\"application/json\",\n \"Content-type\":\"application/json\"\n }\n};\n\nreturn msg;",
"outputs": 1,
"noerr": 0,
"x": 623,
"y": 290,
"wires": [
[
"66f239b6.2cb678"
]
]
},
{
"id": "4b75fe3b.122bd",
"type": "http request",
"z": "8094923f.1a5d8",
"name": "Send to Watson IoT Platform",
"method": "POST",
"ret": "txt",
"url": "",
"tls": "",
"x": 1048,
"y": 295,
"wires": [
[
"8c3c0b61.8ee438"
]
]
},
{
"id": "8c3c0b61.8ee438",
"type": "debug",
"z": "8094923f.1a5d8",
"name": "HTTP POST to Watson IoT",
"active": false,
"console": "false",
"complete": "true",
"x": 1053,
"y": 242,
"wires": []
},
{
"id": "66f239b6.2cb678",
"type": "function",
"z": "8094923f.1a5d8",
"name": "set auth",
"func": "var username = flow.get(\"username\");\nvar password = flow.get(\"password\");\nvar auth = 'Basic ' + new Buffer(username + ':' + password).toString('base64');\nmsg.headers.Authorization = auth;\n\nreturn msg;",
"outputs": 1,
"noerr": 0,
"x": 812,
"y": 291,
"wires": [
[
"4b75fe3b.122bd",
"4764c0d6.ac201"
]
]
},
{
"id": "63bf20ee.e44f6",
"type": "inject",
"z": "8726150f.fd5118",
"name": "Sample blob with device data information",
"topic": "",
"payload": "[123,34,116,97,120,105,34,58,34,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,32,32,10,10,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,32,32,10,10,78,97,109,32,108,105,98,101,114,32,116,101,109,112,111,114,32,99,117,109,32,115,111,108,117,116,97,32,110,111,98,105,115,32,101,108,101,105,102,101,110,100,32,111,112,116,105,111,110,32,99,111,110,103,117,101,32,110,105,104,105,108,32,105,109,112,101,114,100,105,101,116,32,100,111,109,105,110,103,32,105,100,32,113,117,111,100,32,109,97,122,105,109,32,112,108,97,99,101,114,97,116,32,102,97,99,101,114,32,112,111,115,115,105,109,32,97,115,115,117,109,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,46,32,32,32,10,10,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,65,116,32,97,99,99,117,115,97,109,32,97,108,105,113,117,121,97,109,32,100,105,97,109,32,100,105,97,109,32,100,111,108,111,114,101,32,100,111,108,111,114,101,115,32,100,117,111,32,101,105,114,109,111,100,32,101,111,115,32,101,114,97,116,44,32,101,116,32,110,111,110,117,109,121,32,115,101,100,32,116,101,109,112,111,114,32,101,116,32,101,116,32,105,110,118,105,100,117,110,116,32,106,117,115,116,111,32,108,97,98,111,114,101,32,83,116,101,116,32,99,108,105,116,97,32,101,97,32,101,116,32,103,117,98,101,114,103,114,101,110,44,32,107,97,115,100,32,109,97,103,110,97,32,110,111,32,114,101,98,117,109,46,32,115,97,110,99,116,117,115,32,115,101,97,32,115,101,100,32,116,97,107,105,109,97,116,97,32,117,116,32,118,101,114,111,32,118,111,108,117,112,116,117,97,46,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,46,32,32,32,10,10,67,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,46,32,32,32,10,10,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,32,32,10,10,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,32,32,10,10,78,97,109,32,108,105,98,101,114,32,116,101,109,112,111,114,32,99,117,109,32,115,111,108,117,116,97,32,110,111,98,105,115,32,101,108,101,105,102,101,110,100,32,111,112,116,105,111,110,32,99,111,110,103,117,101,32,110,105,104,105,108,32,105,109,112,101,114,100,105,101,116,32,100,111,109,105,110,103,32,105,100,32,113,117,111,100,32,109,97,122,105,109,32,112,108,97,99,101,114,97,116,32,102,97,99,101,114,32,112,111,115,115,105,109,32,97,115,115,117,109,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,46,32,32,32,10,10,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,65,116,32,97,99,99,117,115,97,109,32,97,108,105,113,117,121,97,109,32,100,105,97,109,32,100,105,97,109,32,100,111,108,111,114,101,32,100,111,108,111,114,101,115,32,100,117,111,32,101,105,114,109,111,100,32,101,111,115,32,101,114,97,116,44,32,101,116,32,110,111,110,117,109,121,32,115,101,100,32,116,101,109,112,111,114,32,101,116,32,101,116,32,105,110,118,105,100,117,110,116,32,106,117,115,116,111,32,108,97,98,111,114,101,32,83,116,101,116,32,99,108,105,116,97,32,101,97,32,101,116,32,103,117,98,101,114,103,114,101,110,44,32,107,97,115,100,32,109,97,103,110,97,32,110,111,32,114,101,98,117,109,46,32,115,97,110,99,116,117,115,32,115,101,97,32,115,101,100,32,116,97,107,105,109,97,116,97,32,117,116,32,118,101,114,111,32,118,111,108,117,112,116,117,97,46,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,46,32,32,32,10,10,67,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,46,32,32,32,10,10,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,32,32,10,10,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,32,32,10,10,78,97,109,32,108,105,98,101,114,32,116,101,109,112,111,114,32,99,117,109,32,115,111,108,117,116,97,32,110,111,98,105,115,32,101,108,101,105,102,101,110,100,32,111,112,116,105,111,110,32,99,111,110,103,117,101,32,110,105,104,105,108,32,105,109,112,101,114,100,105,101,116,32,100,111,109,105,110,103,32,105,100,32,113,117,111,100,32,109,97,122,105,109,32,112,108,97,99,101,114,97,116,32,102,97,99,101,114,32,112,111,115,115,105,109,32,97,115,115,117,109,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,46,32,32,32,10,10,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,65,116,32,97,99,99,117,115,97,109,32,97,108,105,113,117,121,97,109,32,100,105,97,109,32,100,105,97,109,32,100,111,108,111,114,101,32,100,111,108,111,114,101,115,32,100,117,111,32,101,105,114,109,111,100,32,101,111,115,32,101,114,97,116,44,32,101,116,32,110,111,110,117,109,121,32,115,101,100,32,116,101,109,112,111,114,32,101,116,32,101,116,32,105,110,118,105,100,117,110,116,32,106,117,115,116,111,32,108,97,98,111,114,101,32,83,116,101,116,32,99,108,105,116,97,32,101,97,32,101,116,32,103,117,98,101,114,103,114,101,110,44,32,107,97,115,100,32,109,97,103,110,97,32,110,111,32,114,101,98,117,109,46,32,115,97,110,99,116,117,115,32,115,101,97,32,115,101,100,32,116,97,107,105,109,97,116,97,32,117,116,32,118,101,114,111,32,118,111,108,117,112,116,117,97,46,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,46,32,32,32,10,10,67,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,46,32,32,32,10,10,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,32,32,10,10,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,32,32,10,10,78,97,109,32,108,105,98,101,114,32,116,101,109,112,111,114,32,99,117,109,32,115,111,108,117,116,97,32,110,111,98,105,115,32,101,108,101,105,102,101,110,100,32,111,112,116,105,111,110,32,99,111,110,103,117,101,32,110,105,104,105,108,32,105,109,112,101,114,100,105,101,116,32,100,111,109,105,110,103,32,105,100,32,113,117,111,100,32,109,97,122,105,109,32,112,108,97,99,101,114,97,116,32,102,97,99,101,114,32,112,111,115,115,105,109,32,97,115,115,117,109,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,46,32,32,32,10,10,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,65,116,32,97,99,99,117,115,97,109,32,97,108,105,113,117,121,97,109,32,100,105,97,109,32,100,105,97,109,32,100,111,108,111,114,101,32,100,111,108,111,114,101,115,32,100,117,111,32,101,105,114,109,111,100,32,101,111,115,32,101,114,97,116,44,32,101,116,32,110,111,110,117,109,121,32,115,101,100,32,116,101,109,112,111,114,32,101,116,32,101,116,32,105,110,118,105,100,117,110,116,32,106,117,115,116,111,32,108,97,98,111,114,101,32,83,116,101,116,32,99,108,105,116,97,32,101,97,32,101,116,32,103,117,98,101,114,103,114,101,110,44,32,107,97,115,100,32,109,97,103,110,97,32,110,111,32,114,101,98,117,109,46,32,115,97,110,99,116,117,115,32,115,101,97,32,115,101,100,32,116,97,107,105,109,97,116,97,32,117,116,32,118,101,114,111,32,118,111,108,117,112,116,117,97,46,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,46,32,32,32,10,10,67,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,46,32,32,32,10,10,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,32,32,10,10,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,32,32,10,10,78,97,109,32,108,105,98,101,114,32,116,101,109,112,111,114,32,99,117,109,32,115,111,108,117,116,97,32,110,111,98,105,115,32,101,108,101,105,102,101,110,100,32,111,112,116,105,111,110,32,99,111,110,103,117,101,32,110,105,104,105,108,32,105,109,112,101,114,100,105,101,116,32,100,111,109,105,110,103,32,105,100,32,113,117,111,100,32,109,97,122,105,109,32,112,108,97,99,101,114,97,116,32,102,97,99,101,114,32,112,111,115,115,105,109,32,97,115,115,117,109,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,46,32,32,32,10,10,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,65,116,32,97,99,99,117,115,97,109,32,97,108,105,113,117,121,97,109,32,100,105,97,109,32,100,105,97,109,32,100,111,108,111,114,101,32,100,111,108,111,114,101,115,32,100,117,111,32,101,105,114,109,111,100,32,101,111,115,32,101,114,97,116,44,32,101,116,32,110,111,110,117,109,121,32,115,101,100,32,116,101,109,112,111,114,32,101,116,32,101,116,32,105,110,118,105,100,117,110,116,32,106,117,115,116,111,32,108,97,98,111,114,101,32,83,116,101,116,32,99,108,105,116,97,32,101,97,32,101,116,32,103,117,98,101,114,103,114,101,110,44,32,107,97,115,100,32,109,97,103,110,97,32,110,111,32,114,101,98,117,109,46,32,115,97,110,99,116,117,115,32,115,101,97,32,115,101,100,32,116,97,107,105,109,97,116,97,32,117,116,32,118,101,114,111,32,118,111,108,117,112,116,117,97,46,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,46,32,32,32,10,10,67,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,46,32,32,32,10,10,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,32,32,10,10,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,32,32,10,10,78,97,109,32,108,105,98,101,114,32,116,101,109,112,111,114,32,99,117,109,32,115,111,108,117,116,97,32,110,111,98,105,115,32,101,108,101,105,102,101,110,100,32,111,112,116,105,111,110,32,99,111,110,103,117,101,32,110,105,104,105,108,32,105,109,112,101,114,100,105,101,116,32,100,111,109,105,110,103,32,105,100,32,113,117,111,100,32,109,97,122,105,109,32,112,108,97,99,101,114,97,116,32,102,97,99,101,114,32,112,111,115,115,105,109,32,97,115,115,117,109,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,46,32,32,32,10,10,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,65,116,32,97,99,99,117,115,97,109,32,97,108,105,113,117,121,97,109,32,100,105,97,109,32,100,105,97,109,32,100,111,108,111,114,101,32,100,111,108,111,114,101,115,32,100,117,111,32,101,105,114,109,111,100,32,101,111,115,32,101,114,97,116,44,32,101,116,32,110,111,110,117,109,121,32,115,101,100,32,116,101,109,112,111,114,32,101,116,32,101,116,32,105,110,118,105,100,117,110,116,32,106,117,115,116,111,32,108,97,98,111,114,101,32,83,116,101,116,32,99,108,105,116,97,32,101,97,32,101,116,32,103,117,98,101,114,103,114,101,110,44,32,107,97,115,100,32,109,97,103,110,97,32,110,111,32,114,101,98,117,109,46,32,115,97,110,99,116,117,115,32,115,101,97,32,115,101,100,32,116,97,107,105,109,97,116,97,32,117,116,32,118,101,114,111,32,118,111,108,117,112,116,117,97,46,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,46,32,32,32,10,10,67,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,46,32,32,32,10,10,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,32,32,10,10,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,32,32,10,10,78,97,109,32,108,105,98,101,114,32,116,101,109,112,111,114,32,99,117,109,32,115,111,108,117,116,97,32,110,111,98,105,115,32,101,108,101,105,102,101,110,100,32,111,112,116,105,111,110,32,99,111,110,103,117,101,32,110,105,104,105,108,32,105,109,112,101,114,100,105,101,116,32,100,111,109,105,110,103,32,105,100,32,113,117,111,100,32,109,97,122,105,109,32,112,108,97,99,101,114,97,116,32,102,97,99,101,114,32,112,111,115,115,105,109,32,97,115,115,117,109,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,46,32,32,32,10,10,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,65,116,32,97,99,99,117,115,97,109,32,97,108,105,113,117,121,97,109,32,100,105,97,109,32,100,105,97,109,32,100,111,108,111,114,101,32,100,111,108,111,114,101,115,32,100,117,111,32,101,105,114,109,111,100,32,101,111,115,32,101,114,97,116,44,32,101,116,32,110,111,110,117,109,121,32,115,101,100,32,116,101,109,112,111,114,32,101,116,32,101,116,32,105,110,118,105,100,117,110,116,32,106,117,115,116,111,32,108,97,98,111,114,101,32,83,116,101,116,32,99,108,105,116,97,32,101,97,32,101,116,32,103,117,98,101,114,103,114,101,110,44,32,107,97,115,100,32,109,97,103,110,97,32,110,111,32,114,101,98,117,109,46,32,115,97,110,99,116,117,115,32,115,101,97,32,115,101,100,32,116,97,107,105,109,97,116,97,32,117,116,32,118,101,114,111,32,118,111,108,117,112,116,117,97,46,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,46,32,32,32,10,10,67,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,46,32,32,32,10,10,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,32,32,10,10,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,32,32,10,10,78,97,109,32,108,105,98,101,114,32,116,101,109,112,111,114,32,99,117,109,32,115,111,108,117,116,97,32,110,111,98,105,115,32,101,108,101,105,102,101,110,100,32,111,112,116,105,111,110,32,99,111,110,103,117,101,32,110,105,104,105,108,32,105,109,112,101,114,100,105,101,116,32,100,111,109,105,110,103,32,105,100,32,113,117,111,100,32,109,97,122,105,109,32,112,108,97,99,101,114,97,116,32,102,97,99,101,114,32,112,111,115,115,105,109,32,97,115,115,117,109,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,46,32,32,32,10,10,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,65,116,32,97,99,99,117,115,97,109,32,97,108,105,113,117,121,97,109,32,100,105,97,109,32,100,105,97,109,32,100,111,108,111,114,101,32,100,111,108,111,114,101,115,32,100,117,111,32,101,105,114,109,111,100,32,101,111,115,32,101,114,97,116,44,32,101,116,32,110,111,110,117,109,121,32,115,101,100,32,116,101,109,112,111,114,32,101,116,32,101,116,32,105,110,118,105,100,117,110,116,32,106,117,115,116,111,32,108,97,98,111,114,101,32,83,116,101,116,32,99,108,105,116,97,32,101,97,32,101,116,32,103,117,98,101,114,103,114,101,110,44,32,107,97,115,100,32,109,97,103,110,97,32,110,111,32,114,101,98,117,109,46,32,115,97,110,99,116,117,115,32,115,101,97,32,115,101,100,32,116,97,107,105,109,97,116,97,32,117,116,32,118,101,114,111,32,118,111,108,117,112,116,117,97,46,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,46,32,32,32,10,10,67,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,46,32,32,32,10,10,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,32,32,10,10,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,32,32,10,10,78,97,109,32,108,105,98,101,114,32,116,101,109,112,111,114,32,99,117,109,32,115,111,108,117,116,97,32,110,111,98,105,115,32,101,108,101,105,102,101,110,100,32,111,112,116,105,111,110,32,99,111,110,103,117,101,32,110,105,104,105,108,32,105,109,112,101,114,100,105,101,116,32,100,111,109,105,110,103,32,105,100,32,113,117,111,100,32,109,97,122,105,109,32,112,108,97,99,101,114,97,116,32,102,97,99,101,114,32,112,111,115,115,105,109,32,97,115,115,117,109,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,46,32,32,32,10,10,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,65,116,32,97,99,99,117,115,97,109,32,97,108,105,113,117,121,97,109,32,100,105,97,109,32,100,105,97,109,32,100,111,108,111,114,101,32,100,111,108,111,114,101,115,32,100,117,111,32,101,105,114,109,111,100,32,101,111,115,32,101,114,97,116,44,32,101,116,32,110,111,110,117,109,121,32,115,101,100,32,116,101,109,112,111,114,32,101,116,32,101,116,32,105,110,118,105,100,117,110,116,32,106,117,115,116,111,32,108,97,98,111,114,101,32,83,116,101,116,32,99,108,105,116,97,32,101,97,32,101,116,32,103,117,98,101,114,103,114,101,110,44,32,107,97,115,100,32,109,97,103,110,97,32,110,111,32,114,101,98,117,109,46,32,115,97,110,99,116,117,115,32,115,101,97,32,115,101,100,32,116,97,107,105,109,97,116,97,32,117,116,32,118,101,114,111,32,118,111,108,117,112,116,117,97,46,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,46,32,32,32,10,10,67,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,46,32,32,32,10,10,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,32,32,10,10,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,32,32,10,10,78,97,109,32,108,105,98,101,114,32,116,101,109,112,111,114,32,99,117,109,32,115,111,108,117,116,97,32,110,111,98,105,115,32,101,108,101,105,102,101,110,100,32,111,112,116,105,111,110,32,99,111,110,103,117,101,32,110,105,104,105,108,32,105,109,112,101,114,100,105,101,116,32,100,111,109,105,110,103,32,105,100,32,113,117,111,100,32,109,97,122,105,109,32,112,108,97,99,101,114,97,116,32,102,97,99,101,114,32,112,111,115,115,105,109,32,97,115,115,117,109,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,46,32,32,32,10,10,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,65,116,32,97,99,99,117,115,97,109,32,97,108,105,113,117,121,97,109,32,100,105,97,109,32,100,105,97,109,32,100,111,108,111,114,101,32,100,111,108,111,114,101,115,32,100,117,111,32,101,105,114,109,111,100,32,101,111,115,32,101,114,97,116,44,32,101,116,32,110,111,110,117,109,121,32,115,101,100,32,116,101,109,112,111,114,32,101,116,32,101,116,32,105,110,118,105,100,117,110,116,32,106,117,115,116,111,32,108,97,98,111,114,101,32,83,116,101,116,32,99,108,105,116,97,32,101,97,32,101,116,32,103,117,98,101,114,103,114,101,110,44,32,107,97,115,100,32,109,97,103,110,97,32,110,111,32,114,101,98,117,109,46,32,115,97,110,99,116,117,115,32,115,101,97,32,115,101,100,32,116,97,107,105,109,97,116,97,32,117,116,32,118,101,114,111,32,118,111,108,117,112,116,117,97,46,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,46,32,32,32,10,10,67,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,46,32,32,32,10,10,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,32,32,10,10,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,32,32,10,10,78,97,109,32,108,105,98,101,114,32,116,101,109,112,111,114,32,99,117,109,32,115,111,108,117,116,97,32,110,111,98,105,115,32,101,108,101,105,102,101,110,100,32,111,112,116,105,111,110,32,99,111,110,103,117,101,32,110,105,104,105,108,32,105,109,112,101,114,100,105,101,116,32,100,111,109,105,110,103,32,105,100,32,113,117,111,100,32,109,97,122,105,109,32,112,108,97,99,101,114,97,116,32,102,97,99,101,114,32,112,111,115,115,105,109,32,97,115,115,117,109,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,46,32,32,32,10,10,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,65,116,32,97,99,99,117,115,97,109,32,97,108,105,113,117,121,97,109,32,100,105,97,109,32,100,105,97,109,32,100,111,108,111,114,101,32,100,111,108,111,114,101,115,32,100,117,111,32,101,105,114,109,111,100,32,101,111,115,32,101,114,97,116,44,32,101,116,32,110,111,110,117,109,121,32,115,101,100,32,116,101,109,112,111,114,32,101,116,32,101,116,32,105,110,118,105,100,117,110,116,32,106,117,115,116,111,32,108,97,98,111,114,101,32,83,116,101,116,32,99,108,105,116,97,32,101,97,32,101,116,32,103,117,98,101,114,103,114,101,110,44,32,107,97,115,100,32,109,97,103,110,97,32,110,111,32,114,101,98,117,109,46,32,115,97,110,99,116,117,115,32,115,101,97,32,115,101,100,32,116,97,107,105,109,97,116,97,32,117,116,32,118,101,114,111,32,118,111,108,117,112,116,117,97,46,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,46,32,32,32,10,10,67,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,46,32,32,32,10,10,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,32,32,10,10,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,32,32,10,10,78,97,109,32,108,105,98,101,114,32,116,101,109,112,111,114,32,99,117,109,32,115,111,108,117,116,97,32,110,111,98,105,115,32,101,108,101,105,102,101,110,100,32,111,112,116,105,111,110,32,99,111,110,103,117,101,32,110,105,104,105,108,32,105,109,112,101,114,100,105,101,116,32,100,111,109,105,110,103,32,105,100,32,113,117,111,100,32,109,97,122,105,109,32,112,108,97,99,101,114,97,116,32,102,97,99,101,114,32,112,111,115,115,105,109,32,97,115,115,117,109,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,46,32,32,32,10,10,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,65,116,32,97,99,99,117,115,97,109,32,97,108,105,113,117,121,97,109,32,100,105,97,109,32,100,105,97,109,32,100,111,108,111,114,101,32,100,111,108,111,114,101,115,32,100,117,111,32,101,105,114,109,111,100,32,101,111,115,32,101,114,97,116,44,32,101,116,32,110,111,110,117,109,121,32,115,101,100,32,116,101,109,112,111,114,32,101,116,32,101,116,32,105,110,118,105,100,117,110,116,32,106,117,115,116,111,32,108,97,98,111,114,101,32,83,116,101,116,32,99,108,105,116,97,32,101,97,32,101,116,32,103,117,98,101,114,103,114,101,110,44,32,107,97,115,100,32,109,97,103,110,97,32,110,111,32,114,101,98,117,109,46,32,115,97,110,99,116,117,115,32,115,101,97,32,115,101,100,32,116,97,107,105,109,97,116,97,32,117,116,32,118,101,114,111,32,118,111,108,117,112,116,117,97,46,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,46,32,32,32,10,10,67,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,46,32,32,32,10,10,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,32,32,10,10,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,32,32,10,10,78,97,109,32,108,105,98,101,114,32,116,101,109,112,111,114,32,99,117,109,32,115,111,108,117,116,97,32,110,111,98,105,115,32,101,108,101,105,102,101,110,100,32,111,112,116,105,111,110,32,99,111,110,103,117,101,32,110,105,104,105,108,32,105,109,112,101,114,100,105,101,116,32,100,111,109,105,110,103,32,105,100,32,113,117,111,100,32,109,97,122,105,109,32,112,108,97,99,101,114,97,116,32,102,97,99,101,114,32,112,111,115,115,105,109,32,97,115,115,117,109,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,46,32,32,32,10,10,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,65,116,32,97,99,99,117,115,97,109,32,97,108,105,113,117,121,97,109,32,100,105,97,109,32,100,105,97,109,32,100,111,108,111,114,101,32,100,111,108,111,114,101,115,32,100,117,111,32,101,105,114,109,111,100,32,101,111,115,32,101,114,97,116,44,32,101,116,32,110,111,110,117,109,121,32,115,101,100,32,116,101,109,112,111,114,32,101,116,32,101,116,32,105,110,118,105,100,117,110,116,32,106,117,115,116,111,32,108,97,98,111,114,101,32,83,116,101,116,32,99,108,105,116,97,32,101,97,32,101,116,32,103,117,98,101,114,103,114,101,110,44,32,107,97,115,100,32,109,97,103,110,97,32,110,111,32,114,101,98,117,109,46,32,115,97,110,99,116,117,115,32,115,101,97,32,115,101,100,32,116,97,107,105,109,97,116,97,32,117,116,32,118,101,114,111,32,118,111,108,117,112,116,117,97,46,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,46,32,32,32,10,10,67,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,46,32,32,32,10,10,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,32,32,10,10,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,32,32,10,10,78,97,109,32,108,105,98,101,114,32,116,101,109,112,111,114,32,99,117,109,32,115,111,108,117,116,97,32,110,111,98,105,115,32,101,108,101,105,102,101,110,100,32,111,112,116,105,111,110,32,99,111,110,103,117,101,32,110,105,104,105,108,32,105,109,112,101,114,100,105,101,116,32,100,111,109,105,110,103,32,105,100,32,113,117,111,100,32,109,97,122,105,109,32,112,108,97,99,101,114,97,116,32,102,97,99,101,114,32,112,111,115,115,105,109,32,97,115,115,117,109,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,46,32,32,32,10,10,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,65,116,32,97,99,99,117,115,97,109,32,97,108,105,113,117,121,97,109,32,100,105,97,109,32,100,105,97,109,32,100,111,108,111,114,101,32,100,111,108,111,114,101,115,32,100,117,111,32,101,105,114,109,111,100,32,101,111,115,32,101,114,97,116,44,32,101,116,32,110,111,110,117,109,121,32,115,101,100,32,116,101,109,112,111,114,32,101,116,32,101,116,32,105,110,118,105,100,117,110,116,32,106,117,115,116,111,32,108,97,98,111,114,101,32,83,116,101,116,32,99,108,105,116,97,32,101,97,32,101,116,32,103,117,98,101,114,103,114,101,110,44,32,107,97,115,100,32,109,97,103,110,97,32,110,111,32,114,101,98,117,109,46,32,115,97,110,99,116,117,115,32,115,101,97,32,115,101,100,32,116,97,107,105,109,97,116,97,32,117,116,32,118,101,114,111,32,118,111,108,117,112,116,117,97,46,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,46,32,32,32,10,10,67,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,46,32,32,32,10,10,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,32,32,10,10,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,32,97,116,32,118,101,114,111,32,101,114,111,115,32,101,116,32,97,99,99,117,109,115,97,110,32,101,116,32,105,117,115,116,111,32,111,100,105,111,32,100,105,103,110,105,115,115,105,109,32,113,117,105,32,98,108,97,110,100,105,116,32,112,114,97,101,115,101,110,116,32,108,117,112,116,97,116,117,109,32,122,122,114,105,108,32,100,101,108,101,110,105,116,32,97,117,103,117,101,32,100,117,105,115,32,100,111,108,111,114,101,32,116,101,32,102,101,117,103,97,105,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,46,32,32,32,10,10,78,97,109,32,108,105,98,101,114,32,116,101,109,112,111,114,32,99,117,109,32,115,111,108,117,116,97,32,110,111,98,105,115,32,101,108,101,105,102,101,110,100,32,111,112,116,105,111,110,32,99,111,110,103,117,101,32,110,105,104,105,108,32,105,109,112,101,114,100,105,101,116,32,100,111,109,105,110,103,32,105,100,32,113,117,111,100,32,109,97,122,105,109,32,112,108,97,99,101,114,97,116,32,102,97,99,101,114,32,112,111,115,115,105,109,32,97,115,115,117,109,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,99,116,101,116,117,101,114,32,97,100,105,112,105,115,99,105,110,103,32,101,108,105,116,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,109,121,32,110,105,98,104,32,101,117,105,115,109,111,100,32,116,105,110,99,105,100,117,110,116,32,117,116,32,108,97,111,114,101,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,97,109,32,101,114,97,116,32,118,111,108,117,116,112,97,116,46,32,85,116,32,119,105,115,105,32,101,110,105,109,32,97,100,32,109,105,110,105,109,32,118,101,110,105,97,109,44,32,113,117,105,115,32,110,111,115,116,114,117,100,32,101,120,101,114,99,105,32,116,97,116,105,111,110,32,117,108,108,97,109,99,111,114,112,101,114,32,115,117,115,99,105,112,105,116,32,108,111,98,111,114,116,105,115,32,110,105,115,108,32,117,116,32,97,108,105,113,117,105,112,32,101,120,32,101,97,32,99,111,109,109,111,100,111,32,99,111,110,115,101,113,117,97,116,46,32,32,32,10,10,68,117,105,115,32,97,117,116,101,109,32,118,101,108,32,101,117,109,32,105,114,105,117,114,101,32,100,111,108,111,114,32,105,110,32,104,101,110,100,114,101,114,105,116,32,105,110,32,118,117,108,112,117,116,97,116,101,32,118,101,108,105,116,32,101,115,115,101,32,109,111,108,101,115,116,105,101,32,99,111,110,115,101,113,117,97,116,44,32,118,101,108,32,105,108,108,117,109,32,100,111,108,111,114,101,32,101,117,32,102,101,117,103,105,97,116,32,110,117,108,108,97,32,102,97,99,105,108,105,115,105,115,46,32,32,32,10,10,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,65,116,32,97,99,99,117,115,97,109,32,97,108,105,113,117,121,97,109,32,100,105,97,109,32,100,105,97,109,32,100,111,108,111,114,101,32,100,111,108,111,114,101,115,32,100,117,111,32,101,105,114,109,111,100,32,101,111,115,32,101,114,97,116,44,32,101,116,32,110,111,110,117,109,121,32,115,101,100,32,116,101,109,112,111,114,32,101,116,32,101,116,32,105,110,118,105,100,117,110,116,32,106,117,115,116,111,32,108,97,98,111,114,101,32,83,116,101,116,32,99,108,105,116,97,32,101,97,32,101,116,32,103,117,98,101,114,103,114,101,110,44,32,107,97,115,100,32,109,97,103,110,97,32,110,111,32,114,101,98,117,109,46,32,115,97,110,99,116,117,115,32,115,101,97,32,115,101,100,32,116,97,107,105,109,97,116,97,32,117,116,32,118,101,114,111,32,118,111,108,117,112,116,117,97,46,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,46,32,32,32,10,10,67,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,46,32,32,32,10,10,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,32,106,117,115,116,111,32,100,117,111,32,100,111,108,111,114,101,115,32,101,116,32,101,97,32,114,101,98,117,109,46,32,83,116,101,116,32,99,108,105,116,97,32,107,97,115,100,32,103,117,98,101,114,103,114,101,110,44,32,110,111,32,115,101,97,32,116,97,107,105,109,97,116,97,32,115,97,110,99,116,117,115,32,101,115,116,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,46,32,76,111,114,101,109,32,105,112,115,117,109,32,100,111,108,111,114,32,115,105,116,32,97,109,101,116,44,32,99,111,110,115,101,116,101,116,117,114,32,115,97,100,105,112,115,99,105,110,103,32,101,108,105,116,114,44,32,115,101,100,32,100,105,97,109,32,110,111,110,117,109,121,32,101,105,114,109,111,100,32,116,101,109,112,111,114,32,105,110,118,105,100,117,110,116,32,117,116,32,108,97,98,111,114,101,32,101,116,32,100,111,108,111,114,101,32,109,97,103,110,97,32,97,108,105,113,117,121,97,109,32,101,114,97,116,44,32,115,101,100,32,100,105,97,109,32,118,111,108,117,112,116,117,97,46,32,65,116,32,118,101,114,111,32,101,111,115,32,101,116,32,97,99,99,117,115,97,109,32,101,116,34,125]",
"payloadType": "bin",
"repeat": "",
"crontab": "",
"once": false,
"x": 214,
"y": 123,
"wires": [
[
"3d88a79d.2829d8",
"b5d4933e.8453d",
"8bf0bed.99e6b4"
]
]
},
{
"id": "8bf0bed.99e6b4",
"type": "os-put",
"z": "8726150f.fd5118",
"name": "os-taxi blob containing the JSON information",
"container": "taxi",
"objectname": "taxi",
"objectmode": "1",
"imageformat": "jpeg",
"audioformat": "wav",
"filepath": "",
"filename": "",
"formattype": "1",
"mode": "1",
"osconfig": "e5a5cb6f.ac6038",
"x": 598,
"y": 122,
"wires": [
[
"5bf02456.d3bafc"
]
]
},
{
"id": "5bf02456.d3bafc",
"type": "debug",
"z": "8726150f.fd5118",
"name": "Object Storage blob debug",
"active": true,
"console": "false",
"complete": "true",
"x": 984,
"y": 119,
"wires": []
},
{
"id": "3d88a79d.2829d8",
"type": "debug",
"z": "8726150f.fd5118",
"name": "Output Blob Data",
"active": true,
"console": "false",
"complete": "true",
"x": 536.7777557373047,
"y": 268.33333683013916,
"wires": []
},
{
"id": "67c72ae9.59e624",
"type": "link in",
"z": "8094923f.1a5d8",
"name": "virtual device loop",
"links": [
"a29654ee.6aa538"
],
"x": 57,
"y": 801,
"wires": [
[
"4a7845e8.74ce5c",
"6c4b3576.1623fc"
]
]
},
{
"id": "a29654ee.6aa538",
"type": "link out",
"z": "8094923f.1a5d8",
"name": "virtual device loop",
"links": [
"67c72ae9.59e624"
],
"x": 828,
"y": 801,
"wires": []
},
{
"id": "4a7845e8.74ce5c",
"type": "device function",
"z": "8094923f.1a5d8",
"deviceId": "",
"schema": "f3d5adb8.68469",
"name": "set new location",
"func": "var lat = [29.42,30.26,32.77,36.37,38.62,39.09,41.87,43.03,44.97,41.25];\nvar lon = [-98.49,-97.74,-96.79,-94.20,-90.19,-94.57,-87.62,-87.90,-93.26,-95.99];\n\nvar rand = Math.floor(Math.random() * 10);\n\nlatitude = lat[rand]\nlongitude = lon[rand]\n\nreturn msg;",
"outputs": 1,
"noerr": 0,
"x": 186,
"y": 801,
"wires": [
[
"3da5a4e0.d1898c"
]
]
},
{
"id": "3da5a4e0.d1898c",
"type": "device function",
"z": "8094923f.1a5d8",
"deviceId": "",
"schema": "f3d5adb8.68469",
"name": "set new velocity",
"func": "var max = 30; // max velocity\nvar delta = Math.floor(Math.random() * 5);\nvar dir = Math.floor(Math.random() * 3);\nvar mult = 0;\nswitch(dir) {\n case 0:\n mult = 1;\n break;\n case 1:\n mult = -1;\n break;\n default:\n // mult is 0\n break;\n}\nvelocity = velocity+mult*delta;\nif(velocity > max) velocity=max;\nif(velocity < 0) velocity=0;\n\nreturn msg;",
"outputs": "1",
"noerr": 0,
"x": 466,
"y": 802,
"wires": [
[
"67c2d1b.d3b583"
]
]
},
{
"id": "67c2d1b.d3b583",
"type": "delay",
"z": "8094923f.1a5d8",
"name": "",
"pauseType": "delay",
"timeout": "1",
"timeoutUnits": "seconds",
"rate": "1",
"nbRateUnits": "1",
"rateUnits": "second",
"randomFirst": "1",
"randomLast": "5",
"randomUnits": "seconds",
"drop": false,
"x": 668,
"y": 802,
"wires": [
[
"a29654ee.6aa538"
]
]
},
{
"id": "e00415d6.15b228",
"type": "inject",
"z": "8094923f.1a5d8",
"name": "Turn OFF simulation",
"topic": "",
"payload": "true",
"payloadType": "bool",
"repeat": "",
"crontab": "",
"once": false,
"x": 135,
"y": 1395,
"wires": [
[
"92e42803.de75c8"
]
]
},
{
"id": "6cbceee7.0894d",
"type": "stop virtual device",
"z": "8094923f.1a5d8",
"name": "Turn OFF",
"deviceId": "",
"schema": "f3d5adb8.68469",
"x": 543,
"y": 1398,
"wires": [
[]
]
},
{
"id": "92e42803.de75c8",
"type": "function",
"z": "8094923f.1a5d8",
"name": "setDeviceId",
"func": "var instances = flow.get(\"instances\");\n\nvar deviceMsgs = []\nfor(var i = 0; i < instances; i++){\n var deviceId;\n if(i < 9) {\n \n deviceId = \"Taxi0\" + (i+1); \n } else {\n deviceId = \"Taxi\" + (i+1); \n }\n deviceMsgs.push({payload: {deviceId: deviceId}});\n}\nreturn [deviceMsgs];\n",
"outputs": 1,
"noerr": 0,
"x": 366,
"y": 1397,
"wires": [
[
"6cbceee7.0894d"
]
]
},
{
"id": "6c4b3576.1623fc",
"type": "generate event",
"z": "8094923f.1a5d8",
"deviceId": "",
"schema": "f3d5adb8.68469",
"evt": "c29d4649b60a",
"name": "",
"x": 203,
"y": 858,
"wires": [
[
"68ecc5f0.63058c",
"2b4c7be9.f069e4",
"586b4d8a.8956a4",
"9ec64a4.25716b8",
"bfed4bc4.e45a78",
"d2885145.123f4"
]
]
},
{
"id": "d6552002.6bd42",
"type": "debug",
"z": "8094923f.1a5d8",
"name": "",
"active": true,
"console": "false",
"complete": "true",
"x": 918,
"y": 1196,
"wires": []
},
{
"id": "68ecc5f0.63058c",
"type": "debug",
"z": "8094923f.1a5d8",
"name": "",
"active": true,
"console": "false",
"complete": "true",
"x": 444,
"y": 861,
"wires": []
},
{
"id": "586b4d8a.8956a4",
"type": "ibmiot out",
"z": "8094923f.1a5d8",
"authentication": "boundService",
"apiKey": "",
"outputType": "evt",
"deviceId": "*",
"deviceType": "*",
"eventCommandType": "*",
"format": "json",
"data": "*",
"qos": 0,
"name": "IBM IoT",
"service": "registered",
"x": 102,
"y": 1023,
"wires": []
},
{
"id": "f8b15a01.57ea78",
"type": "function",
"z": "8094923f.1a5d8",
"name": "gather sensor_data",
"func": "var max_gather = 60;\nvar tsamp = new Date();\nvar deviceTemplate = '{'+\n '\"orgId\":\"'+ flow.get(\"orgid\")+'\",'+\n '\"deviceType\":\"'+ msg.deviceType+'\",'+\n '\"deviceId\":\"'+ msg.deviceId+'\",'\n '\"eventType\":\"'+ msg.eventOrCommandType+'\",'+\n '\"timestamp\":\"'+ tsamp + '\",'+\n '\"sensorData\":{'+\n '\"location\":{'+\n '\"longitude\":\"'+ msg.payload.d.longitude+'\",'+\n '\"latitude\":\"'+ msg.payload.d.latitude+'\"'+\n '},'+\n '\"velocity\":\"'+ msg.payload.d.velocity+'\"'+\n '}}';\nvar d = [];\nvar device = global.get(msg.deviceId)||d;\nif(!device.hasOwnProperty('length')){\n device = [];\n}\ndevice.push(deviceTemplate);\n\nif(device.length > max_gather){\n device = device.join(\"\\n\"); // format gathered file of json data\n msg.payload = device; \n global.set(msg.deviceId,[]); // reset\n return msg;\n} else {\n global.set(msg.deviceId,device);\n}\n\n\n",
"outputs": 1,
"noerr": 0,
"x": 364,
"y": 1443,
"wires": [
[]
]
},
{
"id": "4d823b4f.64a9e4",
"type": "os-put",
"z": "8094923f.1a5d8",
"name": "os-taxi",
"container": "taxi",
"objectname": "taxi",
"objectmode": "1",
"imageformat": "jpeg",
"audioformat": "wav",
"filepath": "",
"filename": "",
"formattype": "1",
"mode": "1",
"osconfig": "e5a5cb6f.ac6038",
"x": 1076,
"y": 1244,
"wires": [
[
"9946ec94.15d85"
]
]
},
{
"id": "9946ec94.15d85",
"type": "debug",
"z": "8094923f.1a5d8",
"name": "",
"active": false,
"console": "false",
"complete": "true",
"x": 1207,
"y": 1244,
"wires": []
},
{
"id": "bcf456d8.f26a68",
"type": "join",
"z": "8094923f.1a5d8",
"name": "Wait for 100 messages from Taxis",
"mode": "custom",
"build": "string",
"property": "payload",
"propertyType": "msg",
"key": "topic",
"joiner": "\\n",
"joinerType": "str",
"accumulate": false,
"timeout": "",
"count": "100",
"x": 673,
"y": 1243,
"wires": [
[
"d6552002.6bd42",
"35722172.fdc9be"
]
]
},
{
"id": "2b4c7be9.f069e4",
"type": "function",
"z": "8094923f.1a5d8",
"name": "toString",
"func": "var tsamp = new Date();\nvar deviceTemplate = '{'+\n '\"orgId\":\"'+ flow.get(\"orgid\")+'\",'+\n '\"deviceType\":\"'+ msg.deviceType+'\",'+\n '\"deviceId\":\"'+ msg.deviceId+'\",' +\n '\"eventType\":\"'+ msg.eventOrCommandType+'\",'+\n '\"timestamp\":\"'+ tsamp + '\",'+\n '\"sensorData\":{'+\n '\"location\":{'+\n// '\"longitude\":\"'+ msg.payload.d.longitude+'\",'+\n// '\"latitude\":\"'+ msg.payload.d.latitude+'\"'+\n '\"longitude\":'+ msg.payload.d.longitude+','+\n '\"latitude\":'+ msg.payload.d.latitude+''+\n '},'+\n// '\"velocity\":\"'+ msg.payload.d.velocity+'\"'+\n '\"velocity\":'+ msg.payload.d.velocity+''+\n '}}';\nmsg.payload = deviceTemplate;\nreturn msg;",
"outputs": 1,
"noerr": 0,
"x": 428,
"y": 1243,
"wires": [
[
"d1cd1675.e37228",
"bcf456d8.f26a68"
]
]
},
{
"id": "35722172.fdc9be",
"type": "function",
"z": "8094923f.1a5d8",
"name": "toBuffer",
"func": "//msg.payload = Buffer.from(msg.payload,'base64');\n\nreturn msg;",
"outputs": 1,
"noerr": 0,
"x": 921,
"y": 1243,
"wires": [
[
"bf95d977.af02e8",
"4d823b4f.64a9e4"
]
]
},
{
"id": "bf95d977.af02e8",
"type": "debug",
"z": "8094923f.1a5d8",
"name": "",
"active": false,
"console": "false",
"complete": "true",
"x": 1072,
"y": 1196,
"wires": []
},
{
"id": "d1cd1675.e37228",
"type": "debug",
"z": "8094923f.1a5d8",
"name": "",
"active": false,
"console": "false",
"complete": "true",
"x": 582,
"y": 1192,
"wires": []
},
{
"id": "b5d4933e.8453d",
"type": "messagehub",
"z": "8726150f.fd5118",
"topic": "taxi",
"x": 521,
"y": 202,
"wires": []
},
{
"id": "94fa6f5e.3be85",
"type": "comment",
"z": "8094923f.1a5d8",
"name": "Create Virtual Taxi's",
"info": "",
"x": 108.5,
"y": 80,
"wires": []
},
{
"id": "55b9e0d3.6c695",
"type": "comment",
"z": "8094923f.1a5d8",
"name": "Run Virtual Taxi's and save data to object storage",
"info": "",
"x": 215,