-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPythonforBeginners.html
2729 lines (2670 loc) · 541 KB
/
PythonforBeginners.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
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
<!DOCTYPE html>
<!-- saved from url=(0039)https://drive.google.com/drive/my-drive -->
<html lang="en" dir="ltr" class="a-Lk"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><script src="./PythonforBeginners_files/cb=gapi.loaded_3" nonce="" async=""></script><style> .gsoi_w{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px 0;background-size:16px;height:16px}.gsoi_x,.gsoi_xu{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -16px;background-size:16px;height:16px}.gsoi_xs,.gsoi_xsu{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -32px;background-size:16px;height:16px}.gsoi_c{padding-left:4px;height:16px}.gsoi_0{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -48px;background-size:16px;height:16px;opacity:.55}.gsoi_0s{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -64px;background-size:16px;height:16px;opacity:.55}.gsoi_0u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -80px;background-size:16px;height:16px;opacity:.55}.gsoi_0su{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -96px;background-size:16px;height:16px;opacity:.55}.gsoi_1,.gsoi_1u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -112px;background-size:16px;height:16px}.gsoi_1s,.gsoi_1su{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -128px;background-size:16px;height:16px}.gsoi_2,.gsoi_2u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -144px;background-size:16px;height:16px}.gsoi_2s,.gsoi_2su{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -160px;background-size:16px;height:16px}.gsoi_3,.gsoi_3u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -176px;background-size:16px;height:16px}.gsoi_3s,.gsoi_3su{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -192px;background-size:16px;height:16px}.gsoi_4,.gsoi_4u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -208px;background-size:16px;height:16px}.gsoi_4s,.gsoi_4su{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -224px;background-size:16px;height:16px}.gsoi_5,.gsoi_5u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -240px;background-size:16px;height:16px}.gsoi_5s,.gsoi_5su{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -256px;background-size:16px;height:16px}.gsoi_6,.gsoi_6u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -272px;background-size:16px;height:16px}.gsoi_6s,.gsoi_6su{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -288px;background-size:16px;height:16px}.gsoi_7,.gsoi_7u{background:transparent url("https://fonts.gstatic.com/s/i/productlogos/calendar_2020q4/v11/192px.svg") no-repeat 2px;background-size:contain;height:20px}.gsoi_8,.gsoi_8u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -336px;background-size:16px;height:16px}.gsoi_8s,.gsoi_8su{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -352px;background-size:16px;height:16px}.gsoi_9,.gsoi_9u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -368px;background-size:16px;height:16px}.gsoi_9s,.gsoi_9su{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -384px;background-size:16px;height:16px}.gsoi_10,.gsoi_10u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -400px;background-size:16px;height:16px}.gsoi_10s,.gsoi_10su{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -416px;background-size:16px;height:16px}.gsoi_11,.gsoi_11u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -432px;background-size:16px;height:16px}.gsoi_11s,.gsoi_11su{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -448px;background-size:16px;height:16px}.gsoi_12,.gsoi_12u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -464px;background-size:16px;height:16px}.gsoi_12s,.gsoi_12su{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -480px;background-size:16px;height:16px}.gsoi_13,.gsoi_13u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -496px;background-size:16px;height:16px}.gsoi_13s,.gsoi_13su{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -512px;background-size:16px;height:16px}.gsoi_14,.gsoi_14u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -528px;background-size:16px;height:16px}.gsoi_14s,.gsoi_14su{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -544px;background-size:16px;height:16px}.gsoi_15,.gsoi_15u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -560px;background-size:16px;height:16px}.gsoi_15s,.gsoi_15su{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -576px;background-size:16px;height:16px}.gsoi_16,.gsoi_16u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -592px;background-size:16px;height:16px}.gsoi_16s,.gsoi_16su{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -608px;background-size:16px;height:16px}.gsoi_17,.gsoi_17u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -624px;background-size:16px;height:16px}.gsoi_17s,.gsoi_17su{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -640px;background-size:16px;height:16px}.gsoi_18,.gsoi_18u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -656px;background-size:16px;height:16px}.gsoi_18s,.gsoi_18su{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -672px;background-size:16px;height:16px}.gsoi_19,.gsoi_19u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -688px;background-size:16px;height:16px}.gsoi_19s,.gsoi_19su{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -704px;background-size:16px;height:16px}.gsoi_20,.gsoi_20u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -720px;background-size:16px;height:16px}.gsoi_20s,.gsoi_20su{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -736px;background-size:16px;height:16px}.gsoi_21,.gsoi_21u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -752px;background-size:16px;height:16px}.gsoi_21s,.gsoi_21su{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -768px;background-size:16px;height:16px}.gsoi_22,.gsoi_22u{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -784px;background-size:16px;height:16px}.gsoi_gcs{background:transparent url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons.png") no-repeat 4px -800px;background-size:16px;height:16px}.gsoi_msra{background:transparent url("https://www.gstatic.com/images/icons/material/system_gm/svg/search_24px.svg") no-repeat 2px 0;background-size:21px;height:21px;opacity:.55}@media (min-resolution:144dpi),(-webkit-min-device-pixel-ratio:1.5){.gsoi_w,.gsoi_x,.gsoi_xu,.gsoi_xs,.gsoi_xsu,.gsoi_0,.gsoi_0s,.gsoi_0u,.gsoi_0su,.gsoi_1,.gsoi_1u,.gsoi_1s,.gsoi_1su,.gsoi_2,.gsoi_2u,.gsoi_2s,.gsoi_2su,.gsoi_3,.gsoi_3u,.gsoi_3s,.gsoi_3su,.gsoi_4,.gsoi_4u,.gsoi_4s,.gsoi_4su,.gsoi_5,.gsoi_5u,.gsoi_5s,.gsoi_5su,.gsoi_6,.gsoi_6u,.gsoi_6s,.gsoi_6su,.gsoi_8,.gsoi_8u,.gsoi_8s,.gsoi_8su,.gsoi_9,.gsoi_9u,.gsoi_9s,.gsoi_9su,.gsoi_10,.gsoi_10u,.gsoi_10s,.gsoi_10su,.gsoi_11,.gsoi_11u,.gsoi_11s,.gsoi_11su,.gsoi_12,.gsoi_12u,.gsoi_12s,.gsoi_12su,.gsoi_13,.gsoi_13u,.gsoi_13s,.gsoi_13su,.gsoi_14,.gsoi_14u,.gsoi_14s,.gsoi_14su,.gsoi_15,.gsoi_15u,.gsoi_15s,.gsoi_15su,.gsoi_16,.gsoi_16u,.gsoi_16s,.gsoi_16su,.gsoi_17,.gsoi_17u,.gsoi_17s,.gsoi_17su,.gsoi_18,.gsoi_18u,.gsoi_18s,.gsoi_18su,.gsoi_19,.gsoi_19u,.gsoi_19s,.gsoi_19su,.gsoi_20,.gsoi_20u,.gsoi_20s,.gsoi_20su,.gsoi_21,.gsoi_21u,.gsoi_21s,.gsoi_21su,.gsoi_22,.gsoi_22u{background-image:url("https://ssl.gstatic.com/cloudsearch/static/o/d/0016-a3cdcdc31a16b3497ed6ffcdaee4f325/icons-hdpi.png")}}.gsop_f{font:12px arial,sans-serif;margin-left:5px;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis;width:150px}.gsop_g{font:12px arial,sans-serif;margin-left:6px;width:55px}.gsop_i{width:500px;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis}.gsop_j{font:11px arial,sans-serif;color:#777;margin-left:2px}</style><style>.shr-lb-shr-c-shr-mb{background-image:url(//ssl.gstatic.com/docs/documents/share/images/sprite-22.svg)}.shr-a-shr-nc-shr-oc{position:relative;display:-moz-inline-box;display:inline-block}* html .shr-a-shr-nc-shr-oc{display:inline}*:first-child+html .shr-a-shr-nc-shr-oc{display:inline}.shr-h-shr-he{-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.2);-moz-box-shadow:0 2px 4px rgba(0,0,0,0.2);box-shadow:0 2px 4px rgba(0,0,0,0.2);-webkit-transition:all 0s linear 1s,opacity 1s;-moz-transition:all 0s linear 1s,opacity 1s;-o-transition:all 0s linear 1s,opacity 1s;transition:all 0s linear 1s,opacity 1s;border-style:solid;border-width:0;font-size:11px;height:0;opacity:0;visibility:hidden;overflow:hidden;padding:0;text-align:center}.shr-h-shr-he-shr-jd{background-color:#f9edbe;border-color:#f0c36d;color:#333}.shr-h-shr-he-shr-x{background-color:#484848;border-color:#202020;color:#fff}.shr-h-shr-he-shr-dc{background-color:#d6e9f8;border-color:#4d90f0;color:#333}.shr-h-shr-he-shr-gd{background-color:#dd4b39;border-color:#602019;color:#fff}.shr-h-shr-he-shr-fd{-webkit-transition:opacity .218s;-moz-transition:opacity .218s;-o-transition:opacity .218s;transition:opacity .218s;border-width:1px;min-height:14px;height:auto;opacity:1;visibility:visible;padding:6px 16px}.shr-h-shr-he-shr-qc.shr-h-shr-he-shr-fd{padding:2px 16px}.shr-h-shr-cb{-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;cursor:default;font-size:11px;font-weight:bold;text-align:center;white-space:nowrap;margin-right:16px;height:27px;line-height:27px;min-width:54px;outline:0;padding:0 8px}.shr-h-shr-cb-shr-ud{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1);-moz-box-shadow:0 1px 1px rgba(0,0,0,.1);box-shadow:0 1px 1px rgba(0,0,0,.1)}.shr-h-shr-cb-shr-bd{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.shr-h-shr-cb .shr-h-shr-cb-shr-bc{margin-top:-3px;vertical-align:middle}.shr-h-shr-cb-shr-db{margin-left:5px}.shr-h-shr-cb-shr-z{min-width:34px;padding:0}.shr-h-shr-cb-shr-jb-shr-kb,.shr-h-shr-cb-shr-jb-shr-ie{z-index:1}.shr-h-shr-cb-shr-jb-shr-kb.shr-h-shr-cb-shr-jc{z-index:0}.shr-h-shr-cb-shr-yc.shr-h-shr-cb-shr-jb-shr-kb,.shr-h-shr-cb-shr-yc.shr-h-shr-cb-shr-jb-shr-ie{z-index:2}.shr-h-shr-cb-shr-jb-shr-kb:focus,.shr-h-shr-cb-shr-jb-shr-ie:focus,.shr-h-shr-cb-shr-ud.shr-h-shr-cb-shr-jb-shr-kb,.shr-h-shr-cb-shr-ud.shr-h-shr-cb-shr-jb-shr-ie{z-index:3}.shr-h-shr-cb-shr-jb-shr-kb{margin-left:-1px;-moz-border-radius-bottomleft:0;-moz-border-radius-topleft:0;-webkit-border-bottom-left-radius:0;-webkit-border-top-left-radius:0;border-bottom-left-radius:0;border-top-left-radius:0}.shr-h-shr-cb-shr-jb-shr-ie{margin-right:0;-moz-border-radius-topright:0;-moz-border-radius-bottomright:0;-webkit-border-top-right-radius:0;-webkit-border-bottom-right-radius:0;border-top-right-radius:0;border-bottom-right-radius:0}.shr-h-shr-cb.shr-h-shr-cb-shr-jc:active{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.shr-h-shr-cb-shr-y{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background-color:#4d90fe;background-image:-webkit-linear-gradient(top,#4d90fe,#4787ed);background-image:-moz-linear-gradient(top,#4d90fe,#4787ed);background-image:-ms-linear-gradient(top,#4d90fe,#4787ed);background-image:-o-linear-gradient(top,#4d90fe,#4787ed);background-image:linear-gradient(top,#4d90fe,#4787ed);border:1px solid #3079ed;color:#fff}.shr-h-shr-cb-shr-y.shr-h-shr-cb-shr-ud{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background-color:#357ae8;background-image:-webkit-linear-gradient(top,#4d90fe,#357ae8);background-image:-moz-linear-gradient(top,#4d90fe,#357ae8);background-image:-ms-linear-gradient(top,#4d90fe,#357ae8);background-image:-o-linear-gradient(top,#4d90fe,#357ae8);background-image:linear-gradient(top,#4d90fe,#357ae8);border:1px solid #2f5bb7;border-bottom-color:#2f5bb7}.shr-h-shr-cb-shr-y:focus{-webkit-box-shadow:inset 0 0 0 1px #fff;-moz-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;border:1px solid #fff;border:rgba(0,0,0,0) solid 1px;outline:1px solid #4d90fe;outline:rgba(0,0,0,0) 0}.shr-h-shr-cb-shr-y.shr-h-shr-cb-shr-k-shr-l{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;outline:none}.shr-h-shr-cb-shr-y:active{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);background:#357ae8;border:1px solid #2f5bb7;border-top:1px solid #2f5bb7}.shr-h-shr-cb-shr-y.shr-h-shr-cb-shr-jc{background:#4d90fe;filter:alpha(opacity=50);opacity:.5}.shr-h-shr-cb-shr-qb{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background-color:#f5f5f5;background-image:-webkit-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:-moz-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:-ms-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:-o-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:linear-gradient(top,#f5f5f5,#f1f1f1);color:#444;border:1px solid #dcdcdc;border:1px solid rgba(0,0,0,0.1)}.shr-h-shr-cb-shr-qb.shr-h-shr-cb-shr-ud,.shr-h-shr-cb-shr-qb.shr-h-shr-cb-shr-k-shr-l.shr-h-shr-cb-shr-ud{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background-color:#f8f8f8;background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-moz-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-ms-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-o-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #c6c6c6;color:#333}.shr-h-shr-cb-shr-qb:active,.shr-h-shr-cb-shr-qb.shr-h-shr-cb-shr-ud:active{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);background:#f8f8f8}.shr-h-shr-cb-shr-qb.shr-h-shr-cb-shr-bd,.shr-h-shr-cb-shr-qb.shr-h-shr-cb-shr-k-shr-l.shr-h-shr-cb-shr-bd{background-color:#eee;background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-moz-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-ms-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-o-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #ccc;color:#333}.shr-h-shr-cb-shr-qb.shr-h-shr-cb-shr-yc,.shr-h-shr-cb-shr-qb.shr-h-shr-cb-shr-k-shr-l.shr-h-shr-cb-shr-yc{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);background-color:#eee;background-image:-webkit-linear-gradient(top,#eee,#e0e0e0);background-image:-moz-linear-gradient(top,#eee,#e0e0e0);background-image:-ms-linear-gradient(top,#eee,#e0e0e0);background-image:-o-linear-gradient(top,#eee,#e0e0e0);background-image:linear-gradient(top,#eee,#e0e0e0);border:1px solid #ccc;color:#333}.shr-h-shr-cb-shr-qb:focus{border:1px solid #4d90fe;outline:none}.shr-h-shr-cb-shr-qb.shr-h-shr-cb-shr-k-shr-l{border:1px solid #dcdcdc;outline:none}.shr-h-shr-cb-shr-qb.shr-h-shr-cb-shr-jc{background:#fff;border:1px solid #f3f3f3;border:1px solid rgba(0,0,0,0.05);color:#b8b8b8}.shr-h-shr-cb-shr-qb .shr-h-shr-cb-shr-bc{opacity:.55}.shr-h-shr-cb-shr-qb.shr-h-shr-cb-shr-yc .shr-h-shr-cb-shr-bc,.shr-h-shr-cb-shr-qb.shr-h-shr-cb-shr-bd .shr-h-shr-cb-shr-bc,.shr-h-shr-cb-shr-qb.shr-h-shr-cb-shr-ud .shr-h-shr-cb-shr-bc{opacity:.9}.shr-h-shr-cb-shr-qb.shr-h-shr-cb-shr-jc .shr-h-shr-cb-shr-bc{filter:alpha(opacity=33);opacity:.333}.shr-h-shr-cb-shr-ec{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background-color:#3d9400;background-image:-webkit-linear-gradient(top,#3d9400,#398a00);background-image:-moz-linear-gradient(top,#3d9400,#398a00);background-image:-ms-linear-gradient(top,#3d9400,#398a00);background-image:-o-linear-gradient(top,#3d9400,#398a00);background-image:linear-gradient(top,#3d9400,#398a00);border:1px solid #29691d;color:#fff;text-shadow:0 1px rgba(0,0,0,0.1)}.shr-h-shr-cb-shr-ec.shr-h-shr-cb-shr-ud{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background-color:#368200;background-image:-webkit-linear-gradient(top,#3d9400,#368200);background-image:-moz-linear-gradient(top,#3d9400,#368200);background-image:-ms-linear-gradient(top,#3d9400,#368200);background-image:-o-linear-gradient(top,#3d9400,#368200);background-image:linear-gradient(top,#3d9400,#368200);border:1px solid #2d6200;border-bottom:1px solid #2d6200;text-shadow:0 1px rgba(0,0,0,0.3)}.shr-h-shr-cb-shr-ec:focus{-webkit-box-shadow:inset 0 0 0 1px #fff;-moz-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;border:1px solid #fff;border:rgba(0,0,0,0) solid 1px;outline:1px solid #3d9400;outline:rgba(0,0,0,0) 0}.shr-h-shr-cb-shr-ec.shr-h-shr-cb-shr-k-shr-l{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;outline:none}.shr-h-shr-cb-shr-ec:active{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);background:#368200;border:1px solid #2d6200;border-top:1px solid #2d6200}.shr-h-shr-cb-shr-ec.shr-h-shr-cb-shr-jc{background:#3d9400;filter:alpha(opacity=50);opacity:.5}.shr-h-shr-cb-shr-ub{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background-color:#d14836;background-image:-webkit-linear-gradient(top,#dd4b39,#d14836);background-image:-moz-linear-gradient(top,#dd4b39,#d14836);background-image:-ms-linear-gradient(top,#dd4b39,#d14836);background-image:-o-linear-gradient(top,#dd4b39,#d14836);background-image:linear-gradient(top,#dd4b39,#d14836);border:1px solid transparent;color:#fff;text-shadow:0 1px rgba(0,0,0,0.1);text-transform:uppercase}.shr-h-shr-cb-shr-ub.shr-h-shr-cb-shr-ud{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.2);-moz-box-shadow:0 1px 1px rgba(0,0,0,0.2);box-shadow:0 1px 1px rgba(0,0,0,0.2);background-color:#c53727;background-image:-webkit-linear-gradient(top,#dd4b39,#c53727);background-image:-moz-linear-gradient(top,#dd4b39,#c53727);background-image:-ms-linear-gradient(top,#dd4b39,#c53727);background-image:-o-linear-gradient(top,#dd4b39,#c53727);background-image:linear-gradient(top,#dd4b39,#c53727);border:1px solid #b0281a;border-bottom-color:#af301f}.shr-h-shr-cb-shr-ub:focus{-webkit-box-shadow:inset 0 0 0 1px #fff;-moz-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;border:1px solid #fff;border:rgba(0,0,0,0) solid 1px;outline:1px solid #d14836;outline:rgba(0,0,0,0) 0}.shr-h-shr-cb-shr-ub.shr-h-shr-cb-shr-k-shr-l{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;outline:none}.shr-h-shr-cb-shr-ub:active{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);background-color:#b0281a;background-image:-webkit-linear-gradient(top,#dd4b39,#b0281a);background-image:-moz-linear-gradient(top,#dd4b39,#b0281a);background-image:-ms-linear-gradient(top,#dd4b39,#b0281a);background-image:-o-linear-gradient(top,#dd4b39,#b0281a);background-image:linear-gradient(top,#dd4b39,#b0281a);border:1px solid #992a1b;border-top:1px solid #992a1b}.shr-h-shr-cb-shr-ub.shr-h-shr-cb-shr-jc{background:#d14836;filter:alpha(opacity=50);opacity:.5}.shr-h-shr-ke{-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;-webkit-box-shadow:inset 0 1px 2px 0 rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px 0 rgba(0,0,0,.1);box-shadow:inset 0 1px 2px 0 rgba(0,0,0,.1);background-color:#f5f5f5;background-image:-webkit-linear-gradient(top,#eee,#e0e0e0);background-image:-moz-linear-gradient(top,#eee,#e0e0e0);background-image:-ms-linear-gradient(top,#eee,#e0e0e0);background-image:-o-linear-gradient(top,#eee,#e0e0e0);background-image:linear-gradient(top,#eee,#e0e0e0);border:1px solid #ccc;color:#666;font-weight:bold;height:27px;line-height:27px;margin-right:16px;outline:none;overflow:hidden;padding:0;position:relative;width:94px}.shr-h-shr-ke-shr-le,.shr-h-shr-ke-shr-me,.shr-h-shr-ke-shr-ne{display:inline-block;text-align:center;text-transform:uppercase;width:47px}.shr-h-shr-ke-shr-le{-webkit-box-shadow:inset 0 1px 2px 0 rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px 0 rgba(0,0,0,.1);box-shadow:inset 0 1px 2px 0 rgba(0,0,0,.1);background-color:#398bf2;background-image:-webkit-linear-gradient(top,#3b93ff,#3689ee);background-image:-moz-linear-gradient(top,#3b93ff,#3689ee);background-image:-ms-linear-gradient(top,#3b93ff,#3689ee);background-image:-o-linear-gradient(top,#3b93ff,#3689ee);background-image:linear-gradient(top,#3b93ff,#3689ee);color:#fff;height:27px}.shr-h-shr-ke-shr-me{-webkit-border-radius:2px 2px 0 0;-moz-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0}.shr-h-shr-ke-shr-ne{-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.1);-moz-box-shadow:0 1px 2px 0 rgba(0,0,0,.1);box-shadow:0 1px 2px 0 rgba(0,0,0,.1);background-color:#f5f5f5;background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-moz-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-ms-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-o-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);-webkit-transition:all .13s ease-out;-moz-transition:all .13s ease-out;-o-transition:all .13s ease-out;transition:all .13s ease-out;border:1px solid #ccc;display:block;height:27px;left:-1px;position:absolute;top:-1px}.shr-h-shr-ke-shr-ne::after{content:'';background-image:-webkit-linear-gradient(left,#ccc 50%,transparent 50%),-webkit-linear-gradient(left,#ccc 50%,transparent 50%),-webkit-linear-gradient(left,#ccc 50%,transparent 50%),-webkit-linear-gradient(left,#ccc 50%,transparent 50%),-webkit-linear-gradient(left,#ccc 50%,transparent 50%);background-image:-moz-linear-gradient(left,#ccc 50%,transparent 50%),-moz-linear-gradient(left,#ccc 50%,transparent 50%),-moz-linear-gradient(left,#ccc 50%,transparent 50%),-moz-linear-gradient(left,#ccc 50%,transparent 50%),-moz-linear-gradient(left,#ccc 50%,transparent 50%);background-image:-ms-linear-gradient(left,#ccc 50%,transparent 50%),-ms-linear-gradient(left,#ccc 50%,transparent 50%),-ms-linear-gradient(left,#ccc 50%,transparent 50%),-ms-linear-gradient(left,#ccc 50%,transparent 50%),-ms-linear-gradient(left,#ccc 50%,transparent 50%);background-image:-o-linear-gradient(left,#ccc 50%,transparent 50%),-o-linear-gradient(left,#ccc 50%,transparent 50%),-o-linear-gradient(left,#ccc 50%,transparent 50%),-o-linear-gradient(left,#ccc 50%,transparent 50%),-o-linear-gradient(left,#ccc 50%,transparent 50%);background-image:linear-gradient(left,#ccc 50%,transparent 50%),linear-gradient(left,#ccc 50%,transparent 50%),linear-gradient(left,#ccc 50%,transparent 50%),linear-gradient(left,#ccc 50%,transparent 50%),linear-gradient(left,#ccc 50%,transparent 50%);background-position:0 0,0 2px,0 4px,0 6px,0 8px;background-repeat:repeat-x;background-size:2px 1px;display:block;height:9px;left:15px;position:absolute;top:9px;width:17px}.shr-h-shr-ke.shr-h-shr-ke-shr-yc .shr-h-shr-ke-shr-ne{left:47px}.shr-h-shr-ke:focus{border:1px solid #4d90fe}.shr-h-shr-ke.shr-h-shr-ke-shr-oe{border:1px solid #ccc}.shr-h-shr-cb-shr-lc{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background-color:#f5f5f5;background-image:-webkit-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:-moz-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:-ms-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:-o-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:linear-gradient(top,#f5f5f5,#f1f1f1);color:#444;border:1px solid #dcdcdc;border:1px solid rgba(0,0,0,0.1)}.shr-h-shr-cb-shr-lc.shr-h-shr-cb-shr-ud,.shr-h-shr-cb-shr-lc.shr-h-shr-cb-shr-k-shr-l.shr-h-shr-cb-shr-ud{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background-color:#f8f8f8;background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-moz-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-ms-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-o-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #c6c6c6;color:#333}.shr-h-shr-cb-shr-lc:active,.shr-h-shr-cb-shr-lc.shr-h-shr-cb-shr-ud:active{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);background:#f8f8f8;color:#333}.shr-h-shr-cb-shr-lc.shr-h-shr-cb-shr-bd,.shr-h-shr-cb-shr-lc.shr-h-shr-cb-shr-k-shr-l.shr-h-shr-cb-shr-bd{background-color:#eee;background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-moz-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-ms-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-o-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #ccc;color:#333}.shr-h-shr-cb-shr-lc.shr-h-shr-cb-shr-yc,.shr-h-shr-cb-shr-lc.shr-h-shr-cb-shr-k-shr-l.shr-h-shr-cb-shr-yc{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);background-color:#eee;background-image:-webkit-linear-gradient(top,#eee,#e0e0e0);background-image:-moz-linear-gradient(top,#eee,#e0e0e0);background-image:-ms-linear-gradient(top,#eee,#e0e0e0);background-image:-o-linear-gradient(top,#eee,#e0e0e0);background-image:linear-gradient(top,#eee,#e0e0e0);border:1px solid #ccc;color:#333}.shr-h-shr-cb-shr-lc:focus{border:1px solid #4d90fe;outline:none}.shr-h-shr-cb-shr-lc.shr-h-shr-cb-shr-k-shr-l{border:1px solid #dcdcdc;border:1px solid rgba(0,0,0,0.1);outline:none}.shr-h-shr-cb-shr-lc.shr-h-shr-cb-shr-jc{background:#fff;border:1px solid #f3f3f3;border:1px solid rgba(0,0,0,0.05);color:#b8b8b8}.shr-h-shr-cb-shr-lc .shr-h-shr-cb-shr-bc{opacity:.55}.shr-h-shr-cb-shr-lc.shr-h-shr-cb-shr-yc .shr-h-shr-cb-shr-bc,.shr-h-shr-cb-shr-lc.shr-h-shr-cb-shr-bd .shr-h-shr-cb-shr-bc,.shr-h-shr-cb-shr-lc.shr-h-shr-cb-shr-ud .shr-h-shr-cb-shr-bc{opacity:.9}.shr-h-shr-cb-shr-lc.shr-h-shr-cb-shr-jc .shr-h-shr-cb-shr-bc{filter:alpha(opacity=33);opacity:.333}.shr-h-shr-cb-shr-fc{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;border:1px solid transparent;font-size:13px;font-weight:normal;height:21px;line-height:21px;margin-right:1px;min-width:0;padding:0}.shr-h-shr-cb-shr-fc.shr-h-shr-cb-shr-ud,.shr-h-shr-cb-shr-fc.shr-h-shr-cb-shr-bd,.shr-h-shr-cb-shr-fc:focus,.shr-h-shr-cb-shr-fc:active{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.shr-h-shr-cb-shr-fc .shr-h-shr-cb-shr-bc{height:21px;opacity:.55;width:21px}.shr-h-shr-cb-shr-fc .shr-h-shr-cb-shr-db{display:inline-block;margin:0;padding:0 1px}.shr-h-shr-cb-shr-fc.shr-h-shr-cb-shr-bd .shr-h-shr-cb-shr-bc,.shr-h-shr-cb-shr-fc.shr-h-shr-cb-shr-ud .shr-h-shr-cb-shr-bc{opacity:.9}.shr-h-shr-cb-shr-fc.shr-h-shr-cb-shr-jc .shr-h-shr-cb-shr-bc{filter:alpha(opacity=33);opacity:.333}.shr-h-shr-cb-shr-fc:focus{border:1px solid #4d90fe}.shr-h-shr-cb-shr-fc.shr-h-shr-cb-shr-k-shr-l{border:1px solid transparent}.shr-h-shr-cb-shr-qc{background-color:#f5f5f5;background-image:-webkit-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:-moz-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:-ms-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:-o-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:linear-gradient(top,#f5f5f5,#f1f1f1);border:1px solid #dcdcdc;border:1px solid rgba(0,0,0,0.1);color:#444;height:17px;line-height:17px;min-width:22px;text-shadow:0 1px rgba(0,0,0,0.1)}.shr-h-shr-cb-shr-qc.shr-h-shr-cb-shr-ud,.shr-h-shr-cb-shr-qc.shr-h-shr-cb-shr-k-shr-l.shr-h-shr-cb-shr-ud{background-color:#f8f8f8;background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-moz-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-ms-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-o-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #c6c6c6;text-shadow:0 1px rgba(0,0,0,0.3)}.shr-h-shr-cb-shr-qc:active{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.shr-h-shr-cb-shr-qc.shr-h-shr-cb-shr-yc,.shr-h-shr-cb-shr-qc.shr-h-shr-cb-shr-k-shr-l.shr-h-shr-cb-shr-yc{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);background-color:#e0e0e0;background-image:-webkit-linear-gradient(top,#eee,#e0e0e0);background-image:-moz-linear-gradient(top,#eee,#e0e0e0);background-image:-ms-linear-gradient(top,#eee,#e0e0e0);background-image:-o-linear-gradient(top,#eee,#e0e0e0);background-image:linear-gradient(top,#eee,#e0e0e0);border:1px solid #ccc;color:#333}.shr-h-shr-cb-shr-qc:focus{border:1px solid #4d90fe}.shr-h-shr-cb-shr-qc.shr-h-shr-cb-shr-k-shr-l{border:1px solid #dcdcdc}.shr-h-shr-cb-shr-qc.shr-h-shr-cb-shr-jc{background:#fff;border:1px solid #f3f3f3;border:1px solid rgba(0,0,0,0.05);color:#b8b8b8}.shr-a-shr-fe,.shr-q-shr-r{-webkit-box-shadow:0 4px 16px rgba(0,0,0,.2);-moz-box-shadow:0 4px 16px rgba(0,0,0,.2);box-shadow:0 4px 16px rgba(0,0,0,.2);background:#fff;background-clip:padding-box;border:1px solid #acacac;border:1px solid rgba(0,0,0,.333);outline:0;position:absolute}.shr-a-shr-fe-shr-xb,.shr-q-shr-r-shr-xb{background:#fff;left:0;position:absolute;top:0}div.shr-a-shr-fe-shr-xb,div.shr-q-shr-r-shr-xb{filter:alpha(opacity=75);-moz-opacity:.75;opacity:.75}.shr-q-shr-r{color:#000;padding:30px 42px}.shr-q-shr-r-shr-m{background-color:#fff;color:#000;cursor:default;font-size:16px;font-weight:normal;line-height:24px;margin:0 0 16px}.shr-q-shr-r-shr-m-shr-yb{height:11px;opacity:.7;padding:17px;position:absolute;right:0;top:0;width:11px}.shr-q-shr-r-shr-m-shr-yb:after{content:'';background:url(//ssl.gstatic.com/ui/v1/dialog/close-x.png);position:absolute;height:11px;width:11px;right:17px}.shr-q-shr-r-shr-m-shr-yb:hover{opacity:1}.shr-q-shr-r-shr-td{background-color:#fff;line-height:1.4em;word-wrap:break-word}.shr-q-shr-r-shr-be{margin-top:16px}.shr-q-shr-r-shr-be button{-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;background-color:#f5f5f5;background-image:-webkit-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:-moz-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:-ms-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:-o-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:linear-gradient(top,#f5f5f5,#f1f1f1);border:1px solid #dcdcdc;border:1px solid rgba(0,0,0,0.1);color:#444;cursor:default;font-family:inherit;font-size:11px;font-weight:bold;height:29px;line-height:27px;margin:0 16px 0 0;min-width:72px;outline:0;padding:0 8px}.shr-q-shr-r-shr-be button:hover,.shr-q-shr-r-shr-be button:active{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1);background-color:#f8f8f8;background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-moz-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-ms-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-o-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #c6c6c6;color:#333}.shr-q-shr-r-shr-be button:active{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.shr-q-shr-r-shr-be button:focus{border:1px solid #4d90fe}.shr-q-shr-r-shr-be button[disabled]{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background:#fff;background-image:none;border:1px solid #f3f3f3;border:1px solid rgba(0,0,0,0.05);color:#b8b8b8}.shr-q-shr-r-shr-be .shr-a-shr-tb-shr-y{background-color:#4d90fe;background-image:-webkit-linear-gradient(top,#4d90fe,#4787ed);background-image:-moz-linear-gradient(top,#4d90fe,#4787ed);background-image:-ms-linear-gradient(top,#4d90fe,#4787ed);background-image:-o-linear-gradient(top,#4d90fe,#4787ed);background-image:linear-gradient(top,#4d90fe,#4787ed);border:1px solid #3079ed;color:#fff}.shr-q-shr-r-shr-be .shr-a-shr-tb-shr-y:hover,.shr-q-shr-r-shr-be .shr-a-shr-tb-shr-y:active{background-color:#357ae8;background-image:-webkit-linear-gradient(top,#4d90fe,#357ae8);background-image:-moz-linear-gradient(top,#4d90fe,#357ae8);background-image:-ms-linear-gradient(top,#4d90fe,#357ae8);background-image:-o-linear-gradient(top,#4d90fe,#357ae8);background-image:linear-gradient(top,#4d90fe,#357ae8);border:1px solid #2f5bb7;color:#fff}.shr-q-shr-r-shr-be .shr-a-shr-tb-shr-y:active{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);box-shadow:inset 0 1px 2px rgba(0,0,0,0.3)}.shr-q-shr-r-shr-be .shr-a-shr-tb-shr-y:focus{-webkit-box-shadow:inset 0 0 0 1px #fff;-moz-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;border:1px solid #fff;border:rgba(0,0,0,0) solid 1px;outline:1px solid #4d90fe;outline:rgba(0,0,0,0) 0}.shr-q-shr-r-shr-be .shr-a-shr-tb-shr-y[disabled]{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background:#4d90fe;color:#fff;filter:alpha(opacity=50);opacity:.5}.shr-h-shr-eb,.shr-h-shr-zc,.shr-h-shr-id{width:512px}.shr-a-shr-fb{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.2);-moz-box-shadow:0 2px 4px rgba(0,0,0,0.2);box-shadow:0 2px 4px rgba(0,0,0,0.2);-webkit-transition:opacity .218s;-moz-transition:opacity .218s;-o-transition:opacity .218s;transition:opacity .218s;background:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);cursor:default;font-size:13px;margin:0;outline:none;padding:6px 0;position:absolute}.shr-a-shr-fc-shr-fb-shr-cb{-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;background-color:#f5f5f5;background-image:-webkit-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:-moz-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:-ms-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:-o-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:linear-gradient(top,#f5f5f5,#f1f1f1);border:1px solid #dcdcdc;color:#444;cursor:default;font-size:11px;font-weight:bold;line-height:27px;list-style:none;margin:0 2px;min-width:46px;outline:none;padding:0 18px 0 6px;text-align:center;text-decoration:none}.shr-a-shr-fc-shr-fb-shr-cb-shr-jc{background-color:#fff;border-color:#f3f3f3;color:#b8b8b8}.shr-a-shr-fc-shr-fb-shr-cb.shr-a-shr-fc-shr-fb-shr-cb-shr-ud{background-color:#f8f8f8;background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-moz-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-ms-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-o-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1);-moz-box-shadow:0 1px 1px rgba(0,0,0,.1);box-shadow:0 1px 1px rgba(0,0,0,.1);border-color:#c6c6c6;color:#333}.shr-a-shr-fc-shr-fb-shr-cb.shr-a-shr-fc-shr-fb-shr-cb-shr-kd{border-color:#4d90fe}.shr-a-shr-fc-shr-fb-shr-cb.shr-a-shr-fc-shr-fb-shr-cb-shr-ad,.shr-a-shr-fc-shr-fb-shr-cb.shr-a-shr-fc-shr-fb-shr-cb-shr-ib{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);background-color:#eee;background-image:-webkit-linear-gradient(top,#eee,#e0e0e0);background-image:-moz-linear-gradient(top,#eee,#e0e0e0);background-image:-ms-linear-gradient(top,#eee,#e0e0e0);background-image:-o-linear-gradient(top,#eee,#e0e0e0);background-image:linear-gradient(top,#eee,#e0e0e0);border:1px solid #ccc;color:#333;z-index:2}.shr-a-shr-fc-shr-fb-shr-cb-shr-pe{vertical-align:top;white-space:nowrap}.shr-a-shr-fc-shr-fb-shr-cb-shr-qe{border-color:#777 transparent;border-style:solid;border-width:4px 4px 0;height:0;width:0;position:absolute;right:5px;top:12px}.shr-a-shr-fc-shr-fb-shr-cb .shr-a-shr-fc-shr-fb-shr-cb-shr-bc{margin-top:-3px;opacity:.55;vertical-align:middle}.shr-a-shr-fc-shr-fb-shr-cb-shr-ib .shr-a-shr-fc-shr-fb-shr-cb-shr-bc,.shr-a-shr-fc-shr-fb-shr-cb-shr-ad .shr-a-shr-fc-shr-fb-shr-cb-shr-bc,.shr-a-shr-fc-shr-fb-shr-cb-shr-bd .shr-a-shr-fc-shr-fb-shr-cb-shr-bc,.shr-a-shr-fc-shr-fb-shr-cb-shr-ud .shr-a-shr-fc-shr-fb-shr-cb-shr-bc{opacity:.9}.shr-a-shr-fc-shr-fb-shr-cb-shr-ib .shr-a-shr-fc-shr-fb-shr-cb-shr-qe,.shr-a-shr-fc-shr-fb-shr-cb-shr-ad .shr-a-shr-fc-shr-fb-shr-cb-shr-qe,.shr-a-shr-fc-shr-fb-shr-cb-shr-bd .shr-a-shr-fc-shr-fb-shr-cb-shr-qe,.shr-a-shr-fc-shr-fb-shr-cb-shr-ud .shr-a-shr-fc-shr-fb-shr-cb-shr-qe{border-color:#595959 transparent}.shr-a-shr-fc-shr-fb-shr-cb-shr-kb,.shr-a-shr-fc-shr-fb-shr-cb-shr-ie{z-index:1}.shr-a-shr-fc-shr-fb-shr-cb-shr-kb.shr-a-shr-fc-shr-fb-shr-cb-shr-jc{z-index:0}.shr-a-shr-fc-shr-fb-shr-cb-shr-ie:focus,.shr-a-shr-fc-shr-fb-shr-cb-shr-ud.shr-a-shr-fc-shr-fb-shr-cb-shr-jb-shr-ie{z-index:2}.shr-a-shr-fc-shr-fb-shr-cb-shr-kb:focus,.shr-a-shr-fc-shr-fb-shr-cb-shr-ud.shr-a-shr-fc-shr-fb-shr-cb-shr-jb-shr-kb{z-index:2}.shr-a-shr-fc-shr-fb-shr-cb-shr-jb-shr-kb{margin-left:-1px;-moz-border-radius-bottomleft:0;-moz-border-radius-topleft:0;-webkit-border-bottom-left-radius:0;-webkit-border-top-left-radius:0;border-bottom-left-radius:0;border-top-left-radius:0;min-width:0;padding-left:0;vertical-align:top}.shr-a-shr-fc-shr-fb-shr-cb-shr-jb-shr-ie{margin-right:0;-moz-border-radius-topright:0;-moz-border-radius-bottomright:0;-webkit-border-top-right-radius:0;-webkit-border-bottom-right-radius:0;border-top-right-radius:0;border-bottom-right-radius:0}.shr-a-shr-o,.shr-a-shr-re,.shr-a-shr-se{position:relative;color:#333;cursor:pointer;list-style:none;margin:0;padding:6px 8em 6px 30px;white-space:nowrap}.shr-a-shr-fb-shr-te .shr-a-shr-o,.shr-a-shr-fb-shr-cc .shr-a-shr-o{padding-left:16px;vertical-align:middle}.shr-a-shr-fb-shr-rc .shr-a-shr-o{padding-right:44px}.shr-a-shr-o-shr-jc{cursor:default}.shr-a-shr-o-shr-jc .shr-a-shr-o-shr-je,.shr-a-shr-o-shr-jc .shr-a-shr-o-shr-td{color:#ccc!important}.shr-a-shr-o-shr-jc .shr-a-shr-o-shr-p{filter:alpha(opacity=30);opacity:.3}.shr-a-shr-o-shr-vd,.shr-a-shr-o-shr-ud{background-color:#eee;border-color:#eee;border-style:dotted;border-width:1px 0;padding-top:5px;padding-bottom:5px}.shr-a-shr-o-shr-vd .shr-a-shr-o-shr-td,.shr-a-shr-o-shr-ud .shr-a-shr-o-shr-td{color:#333}.shr-a-shr-o-shr-ic,.shr-a-shr-o-shr-p{background-repeat:no-repeat;height:21px;left:3px;position:absolute;right:auto;top:3px;vertical-align:middle;width:21px}.shr-a-shr-zb-shr-bd{background-image:url(//ssl.gstatic.com/ui/v1/menu/checkmark.png);background-repeat:no-repeat;background-position:left center}.shr-a-shr-zb-shr-bd .shr-a-shr-o-shr-td{color:#333}.shr-a-shr-o-shr-je{color:#777;direction:ltr;left:auto;padding:0 6px;position:absolute;right:0;text-align:right}.shr-a-shr-o-shr-rd-shr-ue{text-decoration:underline}.shr-a-shr-o-shr-rd-shr-pb{color:#777;font-size:12px;padding-left:4px}.shr-a-shr-od{border-top:1px solid #ebebeb;margin-top:6px;margin-bottom:6px}.shr-h-shr-ve{-webkit-box-shadow:0 1px 3px rgba(0,0,0,.2);-moz-box-shadow:0 1px 3px rgba(0,0,0,.2);box-shadow:0 1px 3px rgba(0,0,0,.2);background-color:#fff;border:1px solid;border-color:#bbb #bbb #a8a8a8;padding:16px;position:absolute;z-index:1201!important}.shr-h-shr-ve-shr-we{background:url("//ssl.gstatic.com/ui/v1/icons/common/x_8px.png") no-repeat;border:1px solid transparent;height:21px;opacity:.4;outline:0;position:absolute;right:2px;top:2px;width:21px}.shr-h-shr-ve-shr-we:focus{border:1px solid #4d90fe;opacity:.8}.shr-h-shr-ve-shr-dd{position:absolute}.shr-h-shr-ve-shr-dd .shr-h-shr-ve-shr-bb,.shr-h-shr-ve-shr-dd .shr-h-shr-ve-shr-hd{display:block;height:0;position:absolute;width:0}.shr-h-shr-ve-shr-dd .shr-h-shr-ve-shr-bb{border:9px solid}.shr-h-shr-ve-shr-dd .shr-h-shr-ve-shr-hd{border:8px solid}.shr-h-shr-ve-shr-sd{bottom:0}.shr-h-shr-ve-shr-kc{top:-9px}.shr-h-shr-ve-shr-xc{left:-9px}.shr-h-shr-ve-shr-mc{right:0}.shr-h-shr-ve-shr-sd .shr-h-shr-ve-shr-bb,.shr-h-shr-ve-shr-kc .shr-h-shr-ve-shr-bb{border-color:#bbb transparent;left:-9px}.shr-h-shr-ve-shr-sd .shr-h-shr-ve-shr-bb{border-color:#a8a8a8 transparent}.shr-h-shr-ve-shr-sd .shr-h-shr-ve-shr-hd,.shr-h-shr-ve-shr-kc .shr-h-shr-ve-shr-hd{border-color:#fff transparent;left:-8px}.shr-h-shr-ve-shr-sd .shr-h-shr-ve-shr-bb{border-bottom-width:0}.shr-h-shr-ve-shr-sd .shr-h-shr-ve-shr-hd{border-bottom-width:0}.shr-h-shr-ve-shr-kc .shr-h-shr-ve-shr-bb{border-top-width:0}.shr-h-shr-ve-shr-kc .shr-h-shr-ve-shr-hd{border-top-width:0;top:1px}.shr-h-shr-ve-shr-xc .shr-h-shr-ve-shr-bb,.shr-h-shr-ve-shr-mc .shr-h-shr-ve-shr-bb{border-color:transparent #bbb;top:-9px}.shr-h-shr-ve-shr-xc .shr-h-shr-ve-shr-hd,.shr-h-shr-ve-shr-mc .shr-h-shr-ve-shr-hd{border-color:transparent #fff;top:-8px}.shr-h-shr-ve-shr-xc .shr-h-shr-ve-shr-bb{border-left-width:0}.shr-h-shr-ve-shr-xc .shr-h-shr-ve-shr-hd{border-left-width:0;left:1px}.shr-h-shr-ve-shr-mc .shr-h-shr-ve-shr-bb{border-right-width:0}.shr-h-shr-ve-shr-mc .shr-h-shr-ve-shr-hd{border-right-width:0}.shr-h-shr-i{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;-webkit-transition:visibility 0,opacity .13s ease-in;-moz-transition:visibility 0,opacity .13s ease-in;-o-transition:visibility 0,opacity .13s ease-in;transition:visibility 0,opacity .13s ease-in;background-color:#2a2a2a;border:1px solid #fff;color:#fff;cursor:default;display:block;font-size:11px;font-weight:bold;margin-left:-1px;opacity:1;padding:7px 9px;position:absolute;visibility:visible;white-space:pre-wrap;word-break:break-all;word-break:break-word}.shr-h-shr-i-shr-j{-webkit-transition:visibility .13s,opacity .13s ease-out,left 0 linear .13s,top 0 linear .13s;-moz-transition:visibility .13s,opacity .13s ease-out,left 0 linear .13s,top 0 linear .13s;-o-transition:visibility .13s,opacity .13s ease-out,left 0 linear .13s,top 0 linear .13s;transition:visibility .13s,opacity .13s ease-out,left 0 linear .13s,top 0 linear .13s;opacity:0;left:20px!important;top:20px!important;visibility:hidden}.shr-h-shr-i-shr-ld{display:none}.shr-h-shr-i-shr-dd{pointer-events:none;position:absolute}.shr-h-shr-i-shr-dd .shr-h-shr-i-shr-bb,.shr-h-shr-i-shr-dd .shr-h-shr-i-shr-hd{content:'';display:block;height:0;position:absolute;width:0}.shr-h-shr-i-shr-dd .shr-h-shr-i-shr-bb{border:6px solid}.shr-h-shr-i-shr-dd .shr-h-shr-i-shr-hd{border:5px solid}.shr-h-shr-i-shr-sd{bottom:0}.shr-h-shr-i-shr-kc{top:-6px}.shr-h-shr-i-shr-xc{left:-6px}.shr-h-shr-i-shr-mc{right:0}.shr-h-shr-i-shr-sd .shr-h-shr-i-shr-bb,.shr-h-shr-i-shr-kc .shr-h-shr-i-shr-bb{border-color:#fff transparent;left:-6px}.shr-h-shr-i-shr-sd .shr-h-shr-i-shr-hd,.shr-h-shr-i-shr-kc .shr-h-shr-i-shr-hd{border-color:#2a2a2a transparent;left:-5px}.shr-h-shr-i-shr-sd .shr-h-shr-i-shr-bb{border-bottom-width:0}.shr-h-shr-i-shr-sd .shr-h-shr-i-shr-hd{border-bottom-width:0}.shr-h-shr-i-shr-kc .shr-h-shr-i-shr-bb{border-top-width:0}.shr-h-shr-i-shr-kc .shr-h-shr-i-shr-hd{border-top-width:0;top:1px}.shr-h-shr-i-shr-xc .shr-h-shr-i-shr-bb,.shr-h-shr-i-shr-mc .shr-h-shr-i-shr-bb{border-color:transparent #fff;top:-6px}.shr-h-shr-i-shr-xc .shr-h-shr-i-shr-hd,.shr-h-shr-i-shr-mc .shr-h-shr-i-shr-hd{border-color:transparent #2a2a2a;top:-5px}.shr-h-shr-i-shr-xc .shr-h-shr-i-shr-bb{border-left-width:0}.shr-h-shr-i-shr-xc .shr-h-shr-i-shr-hd{border-left-width:0;left:1px}.shr-h-shr-i-shr-mc .shr-h-shr-i-shr-bb{border-right-width:0}.shr-h-shr-i-shr-mc .shr-h-shr-i-shr-hd{border-right-width:0}.shr-xe-shr-ye-shr-ze{position:absolute;top:-1000px;height:1px;overflow:hidden}.shr-c-shr-s-shr-g{font-family:Roboto,arial,sans-serif;font-size:13px;font-weight:bold;position:fixed;display:inline-block;padding-bottom:5px}.shr-c-shr-d-shr-r .shr-c-shr-s-shr-g{font-family:arial,sans-serif}.shr-c-shr-s-shr-g .shr-h-shr-he-shr-fd{height:21px}.shr-c-shr-s-shr-t{top:23px}.shr-c-shr-s-shr-wc{z-index:3021}.shr-c-shr-nb-shr-p{opacity:.55;display:inline-block;width:21px;height:21px;margin-bottom:1px;margin-top:1px;margin-right:1px;vertical-align:middle}.shr-c-shr-nb-shr-rb,.shr-c-shr-nb-shr-ob{line-height:21px}.shr-c-shr-nb-shr-ob,.shr-c-shr-nb-shr-ob:visited{color:#15c;text-decoration:none;cursor:pointer}.shr-c-shr-nb-shr-ob:focus{outline:none}.shr-c-shr-nb-shr-ob:active{color:#d14836}.shr-c-shr-nb-shr-ob:disabled{color:#222;cursor:default}.shr-c-shr-nb-shr-de-shr-p{background-position:0 -120px}.shr-c-shr-nb-shr-gc-shr-hc-shr-p{background-position:0 -72px}.shr-c-shr-nb-shr-sb-shr-ob-shr-p{background-position:0 -294px}.shr-c-shr-d-shr-r{max-height:100%;overflow:auto;width:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}* html .shr-c-shr-d-shr-r{max-height:none!important;overflow:visible!important}*:first-child+html .shr-c-shr-d-shr-r{max-height:none!important;overflow:visible!important}.shr-c-shr-d-shr-r .shr-q-shr-r-shr-td{padding:0}.shr-c-shr-d-shr-r .shr-q-shr-r-shr-m{padding:0}.shr-c-shr-d-shr-r .shr-c-shr-d-shr-r-shr-cd-shr-m{height:0;margin:0;padding:0}.shr-c-shr-d-shr-r .shr-q-shr-r-shr-m{font-family:arial,sans-serif;font-weight:normal}.shr-c-shr-d-shr-td-shr-ge{display:flex;height:100%;width:100%;border:none}.shr-c-shr-d-shr-r .shr-q-shr-r-shr-be{display:none}.shr-c-shr-d-shr-x-shr-r{font-family:arial,sans-serif;font-size:12px;width:400px}.shr-c-shr-d-shr-ac-shr-pc{height:99px;text-align:center;width:454px}.shr-c-shr-d-shr-e{background-image:url(//ssl.gstatic.com/docs/documents/share/images/spinner-1.gif);display:inline-block;margin-top:41px;width:16px;height:16px}.shr-nc-shr-c-shr-af-shr-bf{font-size:12pt;font-weight:bold;height:19px;padding:5px 10px;background-color:#f1f4ff}.shr-nc-shr-c-shr-af-shr-cf{position:absolute;z-index:150;background-color:#fff;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"}.shr-c-shr-d-shr-df-shr-r-shr-c{height:100%;width:100%}.shr-c-shr-d-shr-df-shr-r-shr-cf{position:absolute;z-index:150}.shr-c-shr-d-shr-ab{position:absolute!important;left:-10000px!important;top:-10000px!important}.shr-c-shr-d-shr-ac-shr-r{font-family:arial,sans-serif}.shr-c-shr-d-shr-u{display:none;position:absolute;bottom:0;right:0;color:#777;font-size:10px}.shr-tc-shr-uc-shr-c-shr-d-shr-r{border:none;border-radius:2px;box-shadow:0 24px 38px 3px rgba(0,0,0,0.14),0 9px 46px 8px rgba(0,0,0,0.12),0 11px 15px -7px rgba(0,0,0,0.2);padding:0}.shr-yd-shr-zd-shr-c-shr-d-shr-r{background-color:transparent!important;border:none!important;height:100vh;overflow:hidden;padding:0!important;width:100vw!important}.shr-yd-shr-zd-shr-c-shr-d-shr-r .shr-q-shr-r-shr-td{background:transparent;height:100%;width:100%}.shr-q-shr-r.shr-c-shr-d-shr-r.shr-tc-shr-uc-shr-c-shr-d-shr-r{padding:0}.shr-yd-shr-zd-shr-c-shr-d-shr-r .shr-q-shr-r-shr-m,.shr-tc-shr-uc-shr-c-shr-d-shr-r .shr-q-shr-r-shr-m{display:none}.shr-h-shr-i{z-index:30000}.shr-f-shr-g,.shr-f-shr-p{display:inline-block}.shr-f-shr-cb-shr-p{margin:-3px 2px 0 -5px;vertical-align:middle!important}.shr-f-shr-i-shr-pc{color:#fff;font-size:13px;max-width:300px}.shr-f-shr-i-shr-m{font-size:14px;font-weight:bold}.shr-f-shr-i-shr-n{font-weight:normal}.shr-f-shr-i-shr-p-shr-g{width:25px;vertical-align:top}.shr-f-shr-i-shr-pb{border-top:1px solid #555;margin:2px 0}.shr-h-shr-cb-shr-lc .shr-f-shr-cb-shr-p{opacity:.55}.shr-h-shr-cb-shr-lc.shr-h-shr-cb-shr-yc .shr-f-shr-cb-shr-p,.shr-h-shr-cb-shr-lc.shr-h-shr-cb-shr-bd .shr-f-shr-cb-shr-p,.shr-h-shr-cb-shr-lc.shr-h-shr-cb-shr-ud .shr-f-shr-cb-shr-p{opacity:.9}.shr-h-shr-cb-shr-lc.shr-h-shr-cb-shr-jc .shr-f-shr-cb-shr-p{opacity:.333}.shr-f-shr-wb-shr-p-shr-w,.shr-f-shr-gb-shr-p-shr-w,.shr-f-shr-vb-shr-wb-shr-p-shr-w,.shr-f-shr-vb-shr-gb-shr-p-shr-w,.shr-f-shr-wd-shr-xd-shr-p-shr-w,.shr-f-shr-v-shr-p-shr-w,.shr-f-shr-ee-shr-p-shr-w,.shr-f-shr-ae-shr-p{width:21px;height:21px;background-repeat:no-repeat;vertical-align:bottom}.shr-f-shr-wb-shr-p-shr-w{background-position:0 -802px}.shr-f-shr-gb-shr-p-shr-w{background-position:0 -48px}.shr-f-shr-vb-shr-wb-shr-p-shr-w{background-position:0 -243px}.shr-f-shr-vb-shr-gb-shr-p-shr-w{background-position:0 -599px}.shr-f-shr-wd-shr-xd-shr-p-shr-w{background-position:0 -318px}.shr-f-shr-v-shr-p-shr-w{background-position:0 -219px}.shr-f-shr-ee-shr-p-shr-w{background-position:0 -623px}.shr-f-shr-ae-shr-p{background-position:0 -898px}.shr-ef-shr-ff-shr-gf .shr-f-shr-wb-shr-p-shr-w{background-position:0 -671px}.shr-ef-shr-ff-shr-gf .shr-f-shr-gb-shr-p-shr-w{background-position:0 -294px}.shr-ef-shr-ff-shr-gf .shr-f-shr-vb-shr-wb-shr-p-shr-w{background-position:0 -850px}.shr-ef-shr-ff-shr-gf .shr-f-shr-vb-shr-gb-shr-p-shr-w{background-position:0 -551px}.shr-ef-shr-ff-shr-gf .shr-f-shr-wd-shr-xd-shr-p-shr-w{background-position:0 -72px}.shr-ef-shr-ff-shr-gf .shr-f-shr-v-shr-p-shr-w{background-position:0 -575px}.shr-ef-shr-ff-shr-gf .shr-f-shr-ee-shr-p-shr-w{background-position:0 -826px}.shr-q-shr-r{font-family:arial,sans-serif;z-index:2147483647}.shr-q-shr-r-shr-xb{z-index:2147483646}
</style><script src="./PythonforBeginners_files/cb=gapi.loaded_2" nonce="" async=""></script><script src="./PythonforBeginners_files/cb=gapi.loaded_1" nonce="" async=""></script><meta name="format-detection" content="telephone=no"><meta name="google" value="notranslate"><meta name="viewport" content="width=1000, user-scalable=no"><title>My Drive - Google Drive</title><script src="./PythonforBeginners_files/cb=gapi.loaded_0" nonce="" async=""></script><script nonce="">(function(){/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
'use strict';var f;function aa(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}}function ca(a){var b="undefined"!=typeof Symbol&&Symbol.iterator&&a[Symbol.iterator];return b?b.call(a):{next:aa(a)}}var k=this||self;function m(){}function n(a){var b=typeof a;return"object"==b&&null!=a||"function"==b}function da(a,b,c){return a.call.apply(a.bind,arguments)}
function ea(a,b,c){if(!a)throw Error();if(2<arguments.length){var d=Array.prototype.slice.call(arguments,2);return function(){var e=Array.prototype.slice.call(arguments);Array.prototype.unshift.apply(e,d);return a.apply(b,e)}}return function(){return a.apply(b,arguments)}}function p(a,b,c){Function.prototype.bind&&-1!=Function.prototype.bind.toString().indexOf("native code")?p=da:p=ea;return p.apply(null,arguments)}
function q(a,b){a=a.split(".");var c=k;a[0]in c||"undefined"==typeof c.execScript||c.execScript("var "+a[0]);for(var d;a.length&&(d=a.shift());)a.length||void 0===b?c[d]&&c[d]!==Object.prototype[d]?c=c[d]:c=c[d]={}:c[d]=b}function r(a,b){function c(){}c.prototype=b.prototype;a.C=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.R=function(d,e,g){for(var h=Array(arguments.length-2),l=2;l<arguments.length;l++)h[l-2]=arguments[l];return b.prototype[e].apply(d,h)}};function fa(){};var ha=Array.prototype.indexOf?function(a,b){return Array.prototype.indexOf.call(a,b,void 0)}:function(a,b){if("string"===typeof a)return"string"!==typeof b||1!=b.length?-1:a.indexOf(b,0);for(var c=0;c<a.length;c++)if(c in a&&a[c]===b)return c;return-1};var t;a:{var u=k.navigator;if(u){var v=u.userAgent;if(v){t=v;break a}}t=""};function ia(a){var b=b||0;return function(){return a.apply(this,Array.prototype.slice.call(arguments,0,b))}};function w(a){w[" "](a);return a}w[" "]=m;var ja=-1!=t.indexOf("Gecko")&&!(-1!=t.toLowerCase().indexOf("webkit")&&-1==t.indexOf("Edge"))&&!(-1!=t.indexOf("Trident")||-1!=t.indexOf("MSIE"))&&-1==t.indexOf("Edge");var ka=function(){if(!k.addEventListener||!Object.defineProperty)return!1;var a=!1,b=Object.defineProperty({},"passive",{get:function(){a=!0}});try{k.addEventListener("test",m,b),k.removeEventListener("test",m,b)}catch(c){}return a}();function x(a,b){this.type=a;this.target=b}x.prototype.g=function(){};function y(a){x.call(this,a?a.type:"");this.relatedTarget=this.target=null;this.button=this.screenY=this.screenX=this.clientY=this.clientX=0;this.key="";this.metaKey=this.shiftKey=this.altKey=this.ctrlKey=!1;this.state=null;this.pointerId=0;this.pointerType="";this.h=null;if(a){var b=this.type=a.type,c=a.changedTouches&&a.changedTouches.length?a.changedTouches[0]:null;this.target=a.target||a.srcElement;var d=a.relatedTarget;if(d){if(ja){a:{try{w(d.nodeName);var e=!0;break a}catch(g){}e=!1}e||(d=null)}}else"mouseover"==
b?d=a.fromElement:"mouseout"==b&&(d=a.toElement);this.relatedTarget=d;c?(this.clientX=void 0!==c.clientX?c.clientX:c.pageX,this.clientY=void 0!==c.clientY?c.clientY:c.pageY,this.screenX=c.screenX||0,this.screenY=c.screenY||0):(this.clientX=void 0!==a.clientX?a.clientX:a.pageX,this.clientY=void 0!==a.clientY?a.clientY:a.pageY,this.screenX=a.screenX||0,this.screenY=a.screenY||0);this.button=a.button;this.key=a.key||"";this.ctrlKey=a.ctrlKey;this.altKey=a.altKey;this.shiftKey=a.shiftKey;this.metaKey=
a.metaKey;this.pointerId=a.pointerId||0;this.pointerType="string"===typeof a.pointerType?a.pointerType:la[a.pointerType]||"";this.state=a.state;this.h=a;a.defaultPrevented&&y.C.g.call(this)}}r(y,x);var la={2:"touch",3:"pen",4:"mouse"};y.prototype.g=function(){y.C.g.call(this);var a=this.h;a.preventDefault?a.preventDefault():a.returnValue=!1};var z="closure_listenable_"+(1E6*Math.random()|0);var ma=0;function na(a,b,c,d,e){this.listener=a;this.g=null;this.src=b;this.type=c;this.capture=!!d;this.i=e;this.key=++ma;this.h=this.v=!1}function A(a){a.h=!0;a.listener=null;a.g=null;a.src=null;a.i=null};function B(a){this.src=a;this.g={};this.h=0}B.prototype.add=function(a,b,c,d,e){var g=a.toString();a=this.g[g];a||(a=this.g[g]=[],this.h++);var h;a:{for(h=0;h<a.length;++h){var l=a[h];if(!l.h&&l.listener==b&&l.capture==!!d&&l.i==e)break a}h=-1}-1<h?(b=a[h],c||(b.v=!1)):(b=new na(b,this.src,g,!!d,e),b.v=c,a.push(b));return b};var C="closure_lm_"+(1E6*Math.random()|0),D={},E=0;function F(a,b,c,d,e){if(d&&d.once)return G(a,b,c,d,e);if(Array.isArray(b)){for(var g=0;g<b.length;g++)F(a,b[g],c,d,e);return null}c=H(c);return a&&a[z]?a.g(b,c,n(d)?!!d.capture:!!d,e):I(a,b,c,!1,d,e)}
function I(a,b,c,d,e,g){if(!b)throw Error("Invalid event type");var h=n(e)?!!e.capture:!!e,l=J(a);l||(a[C]=l=new B(a));c=l.add(b,c,d,h,g);if(c.g)return c;d=oa();c.g=d;d.src=a;d.listener=c;if(a.addEventListener)ka||(e=h),void 0===e&&(e=!1),a.addEventListener(b.toString(),d,e);else if(a.attachEvent)a.attachEvent(M(b.toString()),d);else if(a.addListener&&a.removeListener)a.addListener(d);else throw Error("addEventListener and attachEvent are unavailable.");E++;return c}
function oa(){function a(c){return b.call(a.src,a.listener,c)}var b=pa;return a}function G(a,b,c,d,e){if(Array.isArray(b)){for(var g=0;g<b.length;g++)G(a,b[g],c,d,e);return null}c=H(c);return a&&a[z]?a.h(b,c,n(d)?!!d.capture:!!d,e):I(a,b,c,!0,d,e)}
function N(a){if("number"!==typeof a&&a&&!a.h){var b=a.src;if(b&&b[z])b.i(a);else{var c=a.type,d=a.g;b.removeEventListener?b.removeEventListener(c,d,a.capture):b.detachEvent?b.detachEvent(M(c),d):b.addListener&&b.removeListener&&b.removeListener(d);E--;if(c=J(b)){d=a.type;if(d in c.g){var e=c.g[d],g=ha(e,a),h;(h=0<=g)&&Array.prototype.splice.call(e,g,1);h&&(A(a),0==c.g[d].length&&(delete c.g[d],c.h--))}0==c.h&&(c.src=null,b[C]=null)}else A(a)}}}function M(a){return a in D?D[a]:D[a]="on"+a}
function pa(a,b){if(a.h)a=!0;else{b=new y(b,this);var c=a.listener,d=a.i||a.src;a.v&&N(a);a=c.call(d,b)}return a}function J(a){a=a[C];return a instanceof B?a:null}var O="__closure_events_fn_"+(1E9*Math.random()>>>0);function H(a){if("function"===typeof a)return a;a[O]||(a[O]=function(b){return a.handleEvent(b)});return a[O]};function P(a,b,c){this.g=null;this.j=!1;this.u=a;this.o=c;this.h=b||window;this.i=p(this.l,this)}r(P,fa);P.prototype.start=function(){Q(this);this.j=!1;var a=R(this),b=qa(this);a&&!b&&this.h.mozRequestAnimationFrame?(this.g=F(this.h,"MozBeforePaint",this.i),this.h.mozRequestAnimationFrame(null),this.j=!0):this.g=a&&b?a.call(this.h,this.i):this.h.setTimeout(ia(this.i),20)};
function Q(a){if(null!=a.g){var b=R(a),c=qa(a);b&&!c&&a.h.mozRequestAnimationFrame?N(a.g):b&&c?c.call(a.h,a.g):a.h.clearTimeout(a.g)}a.g=null}P.prototype.l=function(){this.j&&this.g&&N(this.g);this.g=null;this.u.call(this.o,Date.now())};function R(a){a=a.h;return a.requestAnimationFrame||a.webkitRequestAnimationFrame||a.mozRequestAnimationFrame||a.oRequestAnimationFrame||a.msRequestAnimationFrame||null}
function qa(a){a=a.h;return a.cancelAnimationFrame||a.cancelRequestAnimationFrame||a.webkitCancelRequestAnimationFrame||a.mozCancelRequestAnimationFrame||a.oCancelRequestAnimationFrame||a.msCancelRequestAnimationFrame||null};function S(){this.j=this.h=this.g=0;this.l=new P(this.P,null,this);this.i=Number.MAX_VALUE}f=S.prototype;f.M=function(){this.h=this.g=-1;this.j=0;this.i=Number.MAX_VALUE;this.l.start()};f.N=function(){Q(this.l)};f.P=function(a){if(-1==this.g)this.g=a;else{this.j++;var b=a-this.h;0<b&&(b=1E3/b,b<this.i&&(this.i=b))}this.h=a;this.l.start()};f.A=function(){return this.h-this.g};f.G=function(){var a=this.A();return 0<a?this.j/(a/1E3):0};f.H=function(){return this.i};q("_DRIVE_FPS.FrameRateMonitor",S);
q("_DRIVE_FPS.FrameRateMonitor.prototype.startFrameRateMonitor",S.prototype.M);q("_DRIVE_FPS.FrameRateMonitor.prototype.stopFrameRateMonitor",S.prototype.N);q("_DRIVE_FPS.FrameRateMonitor.prototype.getElapsedTime",S.prototype.A);q("_DRIVE_FPS.FrameRateMonitor.prototype.getAverageFPS",S.prototype.G);q("_DRIVE_FPS.FrameRateMonitor.prototype.getLowestFPS",S.prototype.H);q("_DRIVE_FPS.fpsMonitor",new S);function ra(){var a=this;this.promise=new Promise(function(b,c){a.g=b;a.h=c})};var T=window.performance,U=T?T.timing:void 0,V=!!U,sa=V&&!(!T.mark||!T.measure),ta=!!window.PerformanceObserver,W="csil;afrc;App Frame Render Complete;ipls;iple;Initial Page Loop;csil;ill;Initial Load Latency (ILL);csil;pst;Page Stable Time (PST);upl_s;upr;User Prefs Loaded;ai;as;App Init;frd_s;frd_e;Find Root Document;dmls;dmlc;Doclist Module Load".split(";");function X(a,b,c){this.i=b||null;var d;void 0!==c?d=c:d=1E3*T.now();this.g=d}X.prototype.j=function(){return this.g};
X.prototype.h=function(){return null==this.i?this.g:this.g-this.i.g};function Y(a,b){this.B=a=void 0===a?"ns":a;this.j={};this.g={};this.l={};this.u={};this.h={};this.i="";this.o=new Set;this.s(this.B,void 0,void 0===b?0:b);if(V&&"ns"===a){this.s("fs",void 0,1E3*(U.fetchStart-U.navigationStart));a={};for(b=0;b<W.length;b+=3){var c=W[b+1],d={start:W[b],name:W[b+2]};a.hasOwnProperty(c)?a[c].push(d):a[c]=[d]}this.u=a}}f=Y.prototype;
f.O=function(a,b){var c=this;b=b.then(function(d){!1===d?c.g[a]&&c.g[a].g(!1):"number"===typeof d?c.s(a,void 0,d):c.s(a)},function(d){c.g[a]&&c.g[a].h(d);throw d;});this.h[a]=b};f.D=function(){return!!this.h};f.L=function(a,b){this.l.hasOwnProperty(a)?this.l[a].push(b):this.l[a]=[b]};f.F=function(a){return this.l[a]||[]};f.I=function(){var a=this.h;this.h=null;return a};
f.s=function(a,b,c){var d=this;if(!V)return null;var e=null!=b||null!=c;this.j[a]=new X(a,b?this.m(b):this.m(this.B),c);if(sa&&!e)try{performance.mark(a);this.o.add(a);this.i.length&&this.o.has(this.i)&&performance.measure(this.i+"-"+a,this.i,a);var g=this.u;if(g.hasOwnProperty(a))for(var h=ca(g[a]),l=h.next();!l.done;l=h.next()){var K=l.value;this.o.has(K.start)&&performance.measure(K.name,K.start,a)}}catch(L){var ba=L instanceof Error?L.message:String(L);setTimeout(function(){throw Error(ba+" <eye3 title='Ticker Error - "+
ba+"'/> prevLabel='"+(d.i+"', label='"+a+"'"));},0)}e||(this.i=a);this.g[a]&&this.g[a].g(this.j[a]);return this.j[a]};f.m=function(a){return this.j[a]};f.K=function(a){var b=this;if(this.j[a])return Promise.resolve(this.m(a));if(this.h&&this.h[a])return this.h[a].then(function(){return b.m(a)||!1});this.g[a]||(this.g[a]=new ra);return this.g[a].promise};f.J=function(){var a={},b;for(b in this.j)a[b]=this.m(b).h();return a};var Z=[];
if(ta){var ua=new PerformanceObserver(function(a){a=a.getEntries();for(var b=0;b<a.length;b++)Z.push(a[b])});ua.observe({entryTypes:"frame largest-contentful-paint longtask navigation paint resource".split(" ")});q("_DRIVE_IL.performanceObserver",ua);q("_DRIVE_IL.performanceObserver.getAllEntries",function(){var a=Z;Z=[];return a})}else q("_DRIVE_IL.performanceObserver",null);q("_DRIVE_IL.Ticker",Y);q("_DRIVE_IL.Ticker.prototype.tick",Y.prototype.s);q("_DRIVE_IL.Ticker.prototype.getTick",Y.prototype.m);
q("_DRIVE_IL.Ticker.prototype.onTick",Y.prototype.K);q("_DRIVE_IL.Ticker.prototype.tickLater",Y.prototype.O);q("_DRIVE_IL.Ticker.prototype.canTickLater",Y.prototype.D);q("_DRIVE_IL.Ticker.prototype.registerImpressionAugmentor",Y.prototype.L);q("_DRIVE_IL.Ticker.prototype.getAugmentorsForImpression",Y.prototype.F);q("_DRIVE_IL.Ticker.prototype.getPendingTicks",Y.prototype.I);q("_DRIVE_IL.Ticker.prototype.getReportData",Y.prototype.J);
q("_DRIVE_IL.Ticker.getTickerInstance",function(a,b){return new Y(a,b)});q("_DRIVE_IL.Tick",X);q("_DRIVE_IL.Tick.prototype.getTickTime",X.prototype.j);q("_DRIVE_IL.Tick.prototype.getElapsedTime",X.prototype.h);q("_DRIVE_IL.ticker",new Y);/*
Portions of this code are from MochiKit, received by
The Closure Authors under the MIT license. All other code is Copyright
2005-2009 The Closure Authors. All Rights Reserved.
*/
}).call(this);
if (_DRIVE_FPS) {
_DRIVE_FPS.fpsMonitor.startFrameRateMonitor();
}
</script><script nonce="">window._DRIVE_IL.ticker.tick('csil');</script><script nonce="">
(function(d, t, p) {
if (d.visibilityState != null) {
window[p] = d.hidden;
if (!window[p]) {
var l = function() {
if (d.hidden) {
window[p] = true;
d.removeEventListener(t, l);
}
};
d.addEventListener(t, l);
}
}
})(document, 'visibilitychange', '_DRIVE_WTEI');
</script><script nonce="">window['_DRIVE_dir'] = 'ltr'; window['WIZ_global_data'] = {'w2btAe': '%.@.\x2203616734079491415762\x22,\x2203616734079491415762\x22,\x220\x22,false,null,null,true,false\x5d','eptZe': '\/u\/0\/_\/AppsNotifyUi\/','yLTeS': 'AIzaSyAy9VVXHSpS2IJpptzYtGbLP3-3_l0aBk4','eQxUid': 'false','vLjptb': '03616734079491415762'};</script><script nonce="">(function(){/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
var e=this||self;/*
Copyright 2011 Google LLC.
SPDX-License-Identifier: Apache-2.0
*/
/*
Copyright 2013 Google LLC.
SPDX-License-Identifier: Apache-2.0
*/
var g={};function aa(b,c){if(null===c)return!1;if("contains"in b&&1==c.nodeType)return b.contains(c);if("compareDocumentPosition"in b)return b==c||!!(b.compareDocumentPosition(c)&16);for(;c&&b!=c;)c=c.parentNode;return c==b};var ba=function(b,c){return function(f){f||(f=window.event);return c.call(b,f)}},u=function(b){b=b.target||b.srcElement;!b.getAttribute&&b.parentNode&&(b=b.parentNode);return b},C="undefined"!=typeof navigator&&/Macintosh/.test(navigator.userAgent),ca="undefined"!=typeof navigator&&!/Opera/.test(navigator.userAgent)&&/WebKit/.test(navigator.userAgent),da={A:1,INPUT:1,TEXTAREA:1,SELECT:1,BUTTON:1},ea=function(){this._mouseEventsPrevented=!0},D={A:13,BUTTON:0,CHECKBOX:32,COMBOBOX:13,FILE:0,GRIDCELL:13,
LINK:13,LISTBOX:13,MENU:0,MENUBAR:0,MENUITEM:0,MENUITEMCHECKBOX:0,MENUITEMRADIO:0,OPTION:0,RADIO:32,RADIOGROUP:32,RESET:0,SUBMIT:0,SWITCH:32,TAB:0,TREE:13,TREEITEM:13},fa={CHECKBOX:!0,FILE:!0,OPTION:!0,RADIO:!0},ha={COLOR:!0,DATE:!0,DATETIME:!0,"DATETIME-LOCAL":!0,EMAIL:!0,MONTH:!0,NUMBER:!0,PASSWORD:!0,RANGE:!0,SEARCH:!0,TEL:!0,TEXT:!0,TEXTAREA:!0,TIME:!0,URL:!0,WEEK:!0},ia={A:!0,AREA:!0,BUTTON:!0,DIALOG:!0,IMG:!0,INPUT:!0,LINK:!0,MENU:!0,OPTGROUP:!0,OPTION:!0,PROGRESS:!0,SELECT:!0,TEXTAREA:!0};/*
Copyright 2020 Google LLC.
SPDX-License-Identifier: Apache-2.0
*/
/*
Copyright 2005 Google LLC.
SPDX-License-Identifier: Apache-2.0
*/
var ja=function(){this.s=[];this.g=[];this.j=[];this.o={};this.h=null;this.l=[]},ka="undefined"!=typeof navigator&&/iPhone|iPad|iPod/.test(navigator.userAgent),la=String.prototype.trim?function(b){return b.trim()}:function(b){return b.replace(/^\s+/,"").replace(/\s+$/,"")},ma=/\s*;\s*/,pa=function(b,c){return function y(a,m){m=void 0===m?!0:m;var n=c;if("click"==n&&(C&&a.metaKey||!C&&a.ctrlKey||2==a.which||null==a.which&&4==a.button||a.shiftKey))n="clickmod";else{var h=a.which||a.keyCode;ca&&3==h&&
(h=13);if(13!=h&&32!=h)h=!1;else{var d=u(a),k;(k="keydown"!=a.type||!!(!("getAttribute"in d)||(d.getAttribute("type")||d.tagName).toUpperCase()in ha||"BUTTON"==d.tagName.toUpperCase()||d.type&&"FILE"==d.type.toUpperCase()||d.isContentEditable)||a.ctrlKey||a.shiftKey||a.altKey||a.metaKey||(d.getAttribute("type")||d.tagName).toUpperCase()in fa&&32==h)||((k=d.tagName in da)||(k=d.getAttributeNode("tabindex"),k=null!=k&&k.specified),k=!(k&&!d.disabled));if(k)h=!1;else{k=(d.getAttribute("role")||d.type||
d.tagName).toUpperCase();var r=!(k in D)&&13==h;d="INPUT"!=d.tagName.toUpperCase()||!!d.type;h=(0==D[k]%h||r)&&d}}h&&(n="clickkey")}d=a.srcElement||a.target;h=G(n,a,d,"",null);var p;for(k=d;k&&k!=this;k=k.__owner||k.parentNode){var l=k;var z=p=void 0,E=l;r=n;var q=E.__jsaction;if(!q){var A=na(E,"jsaction");if(A){q=g[A];if(!q){q={};for(var F=A.split(ma),M=F?F.length:0,x=0;x<M;x++){var t=F[x];if(t){var v=t.indexOf(":"),B=-1!=v;q[B?la(t.substr(0,v)):"click"]=B?la(t.substr(v+1)):t}}g[A]=q}A=q;q={};for(z in A){F=
q;M=z;b:if(x=A[z],!(0<=x.indexOf(".")))for(t=E;t;t=t.parentNode){v=t;B=v.__jsnamespace;void 0===B&&(B=na(v,"jsnamespace"),v.__jsnamespace=B);if(v=B){x=v+"."+x;break b}if(t==this)break}F[M]=x}E.__jsaction=q}else q=oa,E.__jsaction=q}z=q;"maybe_click"==r&&z.click?(p=r,r="click"):"clickkey"==r?r="click":"click"!=r||z.click||(r="clickonly");p={m:p?p:r,action:z[r]||"",event:null,u:!1};if(p.u||p.action)break}p&&(h=G(p.m,p.event||a,d,p.action||"",l,h.timeStamp));h&&"touchend"==h.eventType&&(h.event._preventMouseEvents=
ea);if(p&&p.action){if(d="clickkey"==n)d=u(a),d=(d.type||d.tagName).toUpperCase(),(d=32==(a.which||a.keyCode)&&"CHECKBOX"!=d)||(d=u(a),k=d.tagName.toUpperCase(),p=(d.getAttribute("role")||"").toUpperCase(),d="BUTTON"===k||"BUTTON"===p?!0:!(d.tagName.toUpperCase()in ia)||"A"===k||"SELECT"===k||(d.getAttribute("type")||d.tagName).toUpperCase()in fa||(d.getAttribute("type")||d.tagName).toUpperCase()in ha?!1:!0);d&&(a.preventDefault?a.preventDefault():a.returnValue=!1);if("mouseenter"==n||"mouseleave"==
n)if(d=a.relatedTarget,!("mouseover"==a.type&&"mouseenter"==n||"mouseout"==a.type&&"mouseleave"==n)||d&&(d===l||aa(l,d)))h.action="",h.actionElement=null;else{n={};for(var w in a)"function"!==typeof a[w]&&"srcElement"!==w&&"target"!==w&&(n[w]=a[w]);n.type="mouseover"==a.type?"mouseenter":"mouseleave";n.target=n.srcElement=l;n.bubbles=!1;h.event=n;h.targetElement=l}}else h.action="",h.actionElement=null;l=h;b.h&&!l.event.a11ysgd&&(w=G(l.eventType,l.event,l.targetElement,l.action,l.actionElement,l.timeStamp),
"clickonly"==w.eventType&&(w.eventType="click"),b.h(w,!0));if(l.actionElement)if(b.h)!l.actionElement||"A"!=l.actionElement.tagName||"click"!=l.eventType&&"clickmod"!=l.eventType||(a.preventDefault?a.preventDefault():a.returnValue=!1),(a=b.h(l))&&m&&y.call(this,a,!1);else{if((m=e.document)&&!m.createEvent&&m.createEventObject)try{var N=m.createEventObject(a)}catch(xa){N=a}else N=a;l.event=N;b.l.push(l)}}},G=function(b,c,f,a,m,y){return{eventType:b,event:c,targetElement:f,action:a,actionElement:m,
timeStamp:y||Date.now()}},na=function(b,c){var f=null;"getAttribute"in b&&(f=b.getAttribute(c));return f},oa={},qa=function(b,c){return function(f){var a=b,m=c,y=!1;"mouseenter"==a?a="mouseover":"mouseleave"==a&&(a="mouseout");if(f.addEventListener){if("focus"==a||"blur"==a||"error"==a||"load"==a)y=!0;f.addEventListener(a,m,y)}else f.attachEvent&&("focus"==a?a="focusin":"blur"==a&&(a="focusout"),m=ba(f,m),f.attachEvent("on"+a,m));return{m:a,i:m,capture:y}}},H=function(b,c,f){if(!b.o.hasOwnProperty(c)){var a=
pa(b,c);f=qa(f||c,a);b.o[c]=a;b.s.push(f);for(a=0;a<b.g.length;++a){var m=b.g[a];m.h.push(f.call(null,m.g))}"click"==c&&H(b,"keydown")}};ja.prototype.i=function(b){return this.o[b]};var ra=function(b){var c=I,f=b.g;ka&&(f.style.cursor="pointer");for(f=0;f<c.s.length;++f)b.h.push(c.s[f].call(null,b.g))},ua=function(b){for(var c=sa,f=0;f<c.length;++f)if(c[f].g!=b.g&&ta(c[f].g,b.g))return!0;return!1},ta=function(b,c){for(;b!=c&&c.parentNode;)c=c.parentNode;return b==c};var I=new ja;var va=document.documentElement,J=new function(b){this.g=b;this.h=[]}(va),K;b:{for(var L=0;L<I.g.length;L++)if(ta(I.g[L].g,va)){K=!0;break b}K=!1}
if(K)I.j.push(J);else{ra(J);I.g.push(J);for(var sa=I.j.concat(I.g),O=[],P=[],Q=0;Q<I.g.length;++Q){var R=I.g[Q];if(ua(R)){O.push(R);for(var S=0;S<R.h.length;++S){var T=R.g,U=R.h[S];T.removeEventListener?T.removeEventListener(U.m,U.i,U.capture):T.detachEvent&&T.detachEvent("on"+U.m,U.i)}R.h=[]}else P.push(R)}for(var V=0;V<I.j.length;++V){var W=I.j[V];ua(W)?O.push(W):(P.push(W),ra(W))}I.g=P;I.j=O}H(I,"animationend","onwebkitanimationend"in window?"webkitAnimationEnd":void 0);H(I,"blur");H(I,"change");
H(I,"click");H(I,"contextmenu");H(I,"dblclick");H(I,"dragenter");H(I,"dragleave");H(I,"dragover");H(I,"drop");H(I,"error");H(I,"focus");H(I,"focusin");H(I,"focusout");H(I,"input");H(I,"keydown");H(I,"keypress");H(I,"keyup");H(I,"load");H(I,"mousedown");H(I,"mouseenter");H(I,"mouseleave");H(I,"mouseout");H(I,"mouseover");H(I,"mouseup");H(I,"submit");H(I,"touchend");H(I,"touchmove");H(I,"touchstart");H(I,"transitionend");
var wa=function(b){return{trigger:function(c){var f=b.i(c.type);f||(H(b,c.type),f=b.i(c.type));var a=c.target||c.srcElement;f&&f.call(a.ownerDocument.documentElement,c)},bind:function(c){b.h=c;b.l&&(0<b.l.length&&c(b.l),b.l=null)}}}(I),X=["_DRIVE_wiz_contract"],Y=e;X[0]in Y||"undefined"==typeof Y.execScript||Y.execScript("var "+X[0]);for(var Z;X.length&&(Z=X.shift());)X.length||void 0===wa?Y[Z]&&Y[Z]!==Object.prototype[Z]?Y=Y[Z]:Y=Y[Z]={}:Y[Z]=wa;}).call(this);
</script><script src="chrome-extension://ghbmnnjooekpmoecnnnilnnbdlolhkhi/page_embed_script.js" nonce=""></script><link rel="icon" href="https://ssl.gstatic.com/images/branding/product/1x/drive_2020q4_32dp.png"><link rel="search" type="application/opensearchdescription+xml" href="https://drive.google.com/opensearch.xml" title="Google Drive"><link rel="stylesheet" href="./PythonforBeginners_files/rs=AFB8gsw5OCPyGp23yc8Yceo3VeqNXb7dxQ" nonce=""><script nonce="">window._DRIVE_IL.ticker.tick('cl');</script><link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/ghbmnnjooekpmoecnnnilnnbdlolhkhi"><script nonce="">window._DRIVE_IL.ticker.tick('ogbp_s');</script><style nonce="">@import url('https://fonts.googleapis.com/css?lang=en&family=Product+Sans|Roboto:400,700');.gb_Va:not(.gb_Ed){font:13px/27px Roboto,RobotoDraft,Arial,sans-serif;z-index:986}@-webkit-keyframes gb__a{0%{opacity:0}50%{opacity:1}}@keyframes gb__a{0%{opacity:0}50%{opacity:1}}a.gb_Z{border:none;color:#4285f4;cursor:default;font-weight:bold;outline:none;position:relative;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap;-webkit-user-select:none}a.gb_Z:hover:after,a.gb_Z:focus:after{background-color:rgba(0,0,0,.12);content:'';height:100%;left:0;position:absolute;top:0;width:100%}a.gb_Z:hover,a.gb_Z:focus{text-decoration:none}a.gb_Z:active{background-color:rgba(153,153,153,.4);text-decoration:none}a.gb_0{background-color:#4285f4;color:#fff}a.gb_0:active{background-color:#0043b2}.gb_1{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.16);box-shadow:0 1px 1px rgba(0,0,0,.16)}.gb_Z,.gb_0,.gb_2,.gb_3{display:inline-block;line-height:28px;padding:0 12px;-webkit-border-radius:2px;border-radius:2px}.gb_2{background:#f8f8f8;border:1px solid #c6c6c6}.gb_3{background:#f8f8f8}.gb_2,#gb a.gb_2.gb_2,.gb_3{color:#666;cursor:default;text-decoration:none}#gb a.gb_3.gb_3{cursor:default;text-decoration:none}.gb_3{border:1px solid #4285f4;font-weight:bold;outline:none;background:#4285f4;background:-webkit-linear-gradient(top,#4387fd,#4683ea);background:linear-gradient(top,#4387fd,#4683ea);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4387fd,endColorstr=#4683ea,GradientType=0)}#gb a.gb_3.gb_3{color:#fff}.gb_3:hover{-webkit-box-shadow:0 1px 0 rgba(0,0,0,.15);box-shadow:0 1px 0 rgba(0,0,0,.15)}.gb_3:active{-webkit-box-shadow:inset 0 2px 0 rgba(0,0,0,.15);box-shadow:inset 0 2px 0 rgba(0,0,0,.15);background:#3c78dc;background:-webkit-linear-gradient(top,#3c7ae4,#3f76d3);background:linear-gradient(top,#3c7ae4,#3f76d3);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#3c7ae4,endColorstr=#3f76d3,GradientType=0)}.gb_Aa{display:none!important}.gb_Ba{visibility:hidden}.gb_bd{display:inline-block;vertical-align:middle}.gb_zf{position:relative}.gb_C{display:inline-block;outline:none;vertical-align:middle;-webkit-border-radius:2px;border-radius:2px;-webkit-box-sizing:border-box;box-sizing:border-box;height:40px;width:40px;color:#000;cursor:pointer;text-decoration:none}#gb#gb a.gb_C{color:#000;cursor:pointer;text-decoration:none}.gb_Xa{border-color:transparent;border-bottom-color:#fff;border-style:dashed dashed solid;border-width:0 8.5px 8.5px;display:none;position:absolute;left:11.5px;top:43px;z-index:1;height:0;width:0;-webkit-animation:gb__a .2s;animation:gb__a .2s}.gb_Za{border-color:transparent;border-style:dashed dashed solid;border-width:0 8.5px 8.5px;display:none;position:absolute;left:11.5px;z-index:1;height:0;width:0;-webkit-animation:gb__a .2s;animation:gb__a .2s;border-bottom-color:#ccc;border-bottom-color:rgba(0,0,0,.2);top:42px}x:-o-prefocus,div.gb_Za{border-bottom-color:#ccc}.gb_E{background:#fff;border:1px solid #ccc;border-color:rgba(0,0,0,.2);color:#000;-webkit-box-shadow:0 2px 10px rgba(0,0,0,.2);box-shadow:0 2px 10px rgba(0,0,0,.2);display:none;outline:none;overflow:hidden;position:absolute;right:8px;top:62px;-webkit-animation:gb__a .2s;animation:gb__a .2s;-webkit-border-radius:2px;border-radius:2px;-webkit-user-select:text}.gb_bd.gb_la .gb_Xa,.gb_bd.gb_la .gb_Za,.gb_bd.gb_la .gb_E,.gb_la.gb_E{display:block}.gb_bd.gb_la.gb_Af .gb_Xa,.gb_bd.gb_la.gb_Af .gb_Za{display:none}.gb_Bf{position:absolute;right:8px;top:62px;z-index:-1}.gb_Ja .gb_Xa,.gb_Ja .gb_Za,.gb_Ja .gb_E{margin-top:-10px}.gb_bd:first-child,#gbsfw:first-child+.gb_bd{padding-left:4px}.gb_pa.gb_Re .gb_bd:first-child{padding-left:0}.gb_Se{position:relative}.gb_Mc .gb_Se,.gb_Zd .gb_Se{float:right}.gb_C{padding:8px;cursor:pointer}.gb_pa .gb_3c:not(.gb_Z):focus img{background-color:rgba(0,0,0,0.20);outline:none;-webkit-border-radius:50%;border-radius:50%}.gb_Te button:focus svg,.gb_Te button:hover svg,.gb_Te button:active svg,.gb_C:focus,.gb_C:hover,.gb_C:active,.gb_C[aria-expanded=true]{outline:none;-webkit-border-radius:50%;border-radius:50%}.gb_vc .gb_Te.gb_Ue button:focus svg,.gb_vc .gb_Te.gb_Ue button:focus:hover svg,.gb_Te button:focus svg,.gb_Te button:focus:hover svg,.gb_C:focus,.gb_C:focus:hover{background-color:rgba(60,64,67,0.1)}.gb_vc .gb_Te.gb_Ue button:active svg,.gb_Te button:active svg,.gb_C:active{background-color:rgba(60,64,67,0.12)}.gb_vc .gb_Te.gb_Ue button:hover svg,.gb_Te button:hover svg,.gb_C:hover{background-color:rgba(60,64,67,0.08)}.gb_ia .gb_C.gb_Ma:hover{background-color:transparent}.gb_C[aria-expanded=true],.gb_C:hover[aria-expanded=true]{background-color:rgba(95,99,104,0.24)}.gb_C[aria-expanded=true] .gb_Ve,.gb_C[aria-expanded=true] .gb_We{fill:#5f6368;opacity:1}.gb_vc .gb_Te button:hover svg,.gb_vc .gb_C:hover{background-color:rgba(232,234,237,0.08)}.gb_vc .gb_Te button:focus svg,.gb_vc .gb_Te button:focus:hover svg,.gb_vc .gb_C:focus,.gb_vc .gb_C:focus:hover{background-color:rgba(232,234,237,0.10)}.gb_vc .gb_Te button:active svg,.gb_vc .gb_C:active{background-color:rgba(232,234,237,0.12)}.gb_vc .gb_C[aria-expanded=true],.gb_vc .gb_C:hover[aria-expanded=true]{background-color:rgba(255,255,255,0.12)}.gb_vc .gb_C[aria-expanded=true] .gb_Ve,.gb_vc .gb_C[aria-expanded=true] .gb_We{fill:#ffffff;opacity:1}.gb_bd{padding:4px}.gb_pa.gb_Re .gb_bd{padding:4px 2px}.gb_pa.gb_Re .gb_Na.gb_bd{padding-left:6px}.gb_E{z-index:991;line-height:normal}.gb_E.gb_Xe{left:8px;right:auto}@media (max-width:350px){.gb_E.gb_Xe{left:0}}.gb_Ze .gb_E{top:56px}.gb_B .gb_C,.gb_D .gb_B .gb_C{background-position:-64px -29px}.gb_i .gb_B .gb_C{background-position:-29px -29px;opacity:1}.gb_B .gb_C,.gb_B .gb_C:hover,.gb_B .gb_C:focus{opacity:1}.gb_Fd{display:none}.gb_Uc{font-family:Google Sans,Roboto,RobotoDraft,Helvetica,Arial,sans-serif;font-size:20px;font-weight:400;letter-spacing:0.25px;line-height:48px;margin-bottom:2px;opacity:1;overflow:hidden;padding-left:16px;position:relative;text-overflow:ellipsis;vertical-align:middle;top:2px;white-space:nowrap;-webkit-flex:1 1 auto;flex:1 1 auto}.gb_Uc.gb_Vc{color:#3c4043}.gb_pa.gb_qa .gb_Uc{margin-bottom:0}.gb_Wc.gb_Xc .gb_Uc{padding-left:4px}.gb_pa.gb_qa .gb_Zc{position:relative;top:-2px}.gb_pa{color:black;min-width:320px;position:relative;-webkit-transition:box-shadow 250ms;transition:box-shadow 250ms}.gb_pa.gb_Dc{min-width:240px}.gb_pa.gb_Hd .gb_Id{display:none}.gb_pa.gb_Hd .gb_Jd{height:56px}header.gb_pa{display:block}.gb_pa svg{fill:currentColor}.gb_Kd{position:fixed;top:0;width:100%}.gb_Ld{-webkit-box-shadow:0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12),0px 2px 4px -1px rgba(0,0,0,0.2);box-shadow:0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12),0px 2px 4px -1px rgba(0,0,0,0.2)}.gb_Md{height:64px}.gb_pa:not(.gb_Hc) .gb_1c.gb_2c:not(.gb_Nd):not(.gb_Od),.gb_pa:not(.gb_Hc) .gb_Bd:not(.gb_Nd):not(.gb_Od),.gb_pa.gb_Pd .gb_1c.gb_2c.gb_Nd,.gb_pa.gb_Pd .gb_Bd.gb_Nd,.gb_pa.gb_Pd .gb_1c.gb_2c.gb_Od,.gb_pa.gb_Pd .gb_Bd.gb_Od{display:none!important}.gb_Jd{-webkit-box-sizing:border-box;box-sizing:border-box;position:relative;width:100%;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:space-between;-webkit-justify-content:space-between;justify-content:space-between;min-width:-webkit-min-content;min-width:min-content}.gb_pa:not(.gb_qa) .gb_Jd{padding:8px}.gb_pa.gb_Qd .gb_Jd{-webkit-flex:1 0 auto;flex:1 0 auto}.gb_pa .gb_Jd.gb_Rd.gb_Sd{min-width:0}.gb_pa.gb_qa .gb_Jd{padding:4px;padding-left:8px;min-width:0}.gb_Id{height:48px;vertical-align:middle;white-space:nowrap;-webkit-box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-user-select:none}.gb_Ud>.gb_Id{display:table-cell;width:100%}.gb_Wc{padding-right:30px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-flex:1 0 auto;flex:1 0 auto}.gb_pa.gb_qa .gb_Wc{padding-right:14px}.gb_Vd{-webkit-flex:1 1 100%;flex:1 1 100%}.gb_Vd>:only-child{display:inline-block}.gb_Wd.gb_Nc{padding-left:4px}.gb_Wd.gb_Xd,.gb_pa.gb_Qd .gb_Wd,.gb_pa.gb_qa:not(.gb_Zd) .gb_Wd{padding-left:0}.gb_pa.gb_qa .gb_Wd.gb_Xd{padding-right:0}.gb_pa.gb_qa .gb_Wd.gb_Xd .gb_ia{margin-left:10px}.gb_Nc{display:inline}.gb_pa.gb_Hc .gb_Wd.gb_0d,.gb_pa.gb_Zd .gb_Wd.gb_0d{padding-left:2px}.gb_Uc{display:inline-block}.gb_Wd{-webkit-box-sizing:border-box;box-sizing:border-box;height:48px;line-height:normal;padding:0 4px;padding-left:30px;-webkit-flex:0 0 auto;flex:0 0 auto;-webkit-box-pack:flex-end;-webkit-justify-content:flex-end;justify-content:flex-end}.gb_Zd{height:48px}.gb_pa.gb_Zd{min-width:initial;min-width:auto}.gb_Zd .gb_Wd{float:right;padding-left:32px}.gb_Zd .gb_Wd.gb_1d{padding-left:0}.gb_2d{font-size:14px;max-width:200px;overflow:hidden;padding:0 12px;text-overflow:ellipsis;white-space:nowrap;-webkit-user-select:text}.gb_3d{-webkit-transition:background-color .4s;transition:background-color .4s}.gb_4d{color:black}.gb_vc{color:white}.gb_pa a,.gb_Ac a{color:inherit}.gb_s{color:rgba(0,0,0,0.87)}.gb_pa svg,.gb_Ac svg,.gb_Wc .gb_5d,.gb_Mc .gb_5d{color:#5f6368;opacity:1}.gb_vc svg,.gb_Ac.gb_Ec svg,.gb_vc .gb_Wc .gb_5d,.gb_vc .gb_Wc .gb_uc,.gb_vc .gb_Wc .gb_Zc,.gb_Ac.gb_Ec .gb_5d{color:rgba(255,255,255, 0.87 )}.gb_vc .gb_Wc .gb_tc:not(.gb_6d){opacity:0.87}.gb_Vc{color:inherit;opacity:1;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased}.gb_vc .gb_Vc,.gb_4d .gb_Vc{opacity:1}.gb_7d{position:relative}.gb_8d{font-family:arial,sans-serif;line-height:normal;padding-right:15px}a.gb_f,span.gb_f{color:rgba(0,0,0,0.87);text-decoration:none}.gb_vc a.gb_f,.gb_vc span.gb_f{color:white}a.gb_f:focus{outline-offset:2px}a.gb_f:hover{text-decoration:underline}.gb_g{display:inline-block;padding-left:15px}.gb_g .gb_f{display:inline-block;line-height:24px;vertical-align:middle}.gb_9d{font-family:Google Sans,Roboto,RobotoDraft,Helvetica,Arial,sans-serif;font-weight:500;font-size:14px;letter-spacing:0.25px;line-height:16px;margin-left:10px;margin-right:8px;min-width:96px;padding:9px 23px;text-align:center;vertical-align:middle;-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box}.gb_pa.gb_Zd .gb_9d{margin-left:8px}#gb a.gb_3.gb_3.gb_9d,#gb a.gb_2.gb_2.gb_9d{cursor:pointer}.gb_3.gb_9d:hover{background:#2b7de9;-webkit-box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15);box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15)}.gb_3.gb_9d:focus,.gb_3.gb_9d:hover:focus{background:#5094ed;-webkit-box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15);box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15)}.gb_3.gb_9d:active{background:#63a0ef;-webkit-box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15);box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15)}.gb_9d:not(.gb_2){background:#1a73e8;border:1px solid transparent}.gb_pa.gb_qa .gb_9d{padding:9px 15px;min-width:80px}.gb_ae{text-align:left}#gb a.gb_9d.gb_2,#gb .gb_vc a.gb_9d,#gb.gb_vc a.gb_9d{background:#ffffff;border-color:#dadce0;-webkit-box-shadow:none;box-shadow:none;color:#1a73e8}#gb a.gb_3.gb_ja.gb_9d{background:#8ab4f8;border:1px solid transparent;-webkit-box-shadow:none;box-shadow:none;color:#202124}#gb a.gb_9d.gb_2:hover,#gb .gb_vc a.gb_9d:hover,#gb.gb_vc a.gb_9d:hover{background:#f8fbff;border-color:#cce0fc}#gb a.gb_3.gb_ja.gb_9d:hover{background:#93baf9;border-color:transparent;-webkit-box-shadow:0 1px 3px 1px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.3);box-shadow:0 1px 3px 1px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.3)}#gb a.gb_9d.gb_2:focus,#gb a.gb_9d.gb_2:focus:hover,#gb .gb_vc a.gb_9d:focus,#gb .gb_vc a.gb_9d:focus:hover,#gb.gb_vc a.gb_9d:focus,#gb.gb_vc a.gb_9d:focus:hover{background:#f4f8ff;border-color:#c9ddfc}#gb a.gb_3.gb_ja.gb_9d:focus,#gb a.gb_3.gb_ja.gb_9d:focus:hover{background:#a6c6fa;border-color:transparent;-webkit-box-shadow:none;box-shadow:none}#gb a.gb_9d.gb_2:active,#gb .gb_vc a.gb_9d:active,#gb.gb_vc a.gb_9d:active{background:#ecf3fe}#gb a.gb_3.gb_ja.gb_9d:active{background:#a1c3f9;-webkit-box-shadow:0 1px 2px rgba(60,64,67,0.3),0 2px 6px 2px rgba(60,64,67,0.15);box-shadow:0 1px 2px rgba(60,64,67,0.3),0 2px 6px 2px rgba(60,64,67,0.15)}#gb a.gb_9d.gb_2:not(.gb_ja):active{-webkit-box-shadow:0 1px 2px 0 rgba(60,64,67,0.3),0 2px 6px 2px rgba(60,64,67,0.15);box-shadow:0 1px 2px 0 rgba(60,64,67,0.3),0 2px 6px 2px rgba(60,64,67,0.15)}.gb_ia{background-color:rgba(255,255,255,0.88);border:1px solid #dadce0;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:inline-block;max-height:48px;overflow:hidden;outline:none;padding:0;vertical-align:middle;width:134px;-webkit-border-radius:8px;border-radius:8px}.gb_ia.gb_ja{background-color:transparent;border:1px solid #5f6368}.gb_ka{display:inherit}.gb_ia.gb_ja .gb_ka{background:#ffffff;-webkit-border-radius:4px;border-radius:4px;display:inline-block;left:8px;margin-right:5px;position:relative;padding:3px;top:-1px}.gb_ia:hover{border:1px solid #d2e3fc;background-color:rgba(248,250,255,0.88)}.gb_ia.gb_ja:hover{border:1px solid #5f6368;background-color:rgba(232,234,237,0.08)}.gb_ia:focus{border:1px solid #fff;background-color:rgba(255,255,255);-webkit-box-shadow:0px 1px 2px 0px rgba(60,64,67,0.3),0px 1px 3px 1px rgba(60,64,67,0.15);box-shadow:0px 1px 2px 0px rgba(60,64,67,0.3),0px 1px 3px 1px rgba(60,64,67,0.15)}.gb_ia.gb_ja:focus{border:1px solid #e8eaed;background-color:#38383b}.gb_ia.gb_ja:active,.gb_ia.gb_la.gb_ja:focus{border:1px solid #5f6368;background-color:#333438}.gb_ma{display:inline-block;padding-left:7px;padding-bottom:2px;text-align:center;vertical-align:middle;line-height:32px;width:78px}.gb_ia.gb_ja .gb_ma{line-height:26px;width:72px;padding-left:0;padding-bottom:0}.gb_ma.gb_na{background-color:#f1f3f4;-webkit-border-radius:4px;border-radius:4px;margin-left:8px;padding-left:0}.gb_ma.gb_na .gb_oa{vertical-align:middle}.gb_pa:not(.gb_qa) .gb_ia{margin-left:10px;margin-right:4px}.gb_ra{max-height:32px;width:78px}.gb_ia.gb_ja .gb_ra{max-height:26px;width:72px}.gb_Ca{-webkit-background-size:32px 32px;background-size:32px 32px;border:0;-webkit-border-radius:50%;border-radius:50%;display:block;margin:0px;position:relative;height:32px;width:32px;z-index:0}.gb_Da{background-color:#e8f0fe;border:1px solid rgba(32,33,36,.08);position:relative}.gb_Da.gb_Ca{height:30px;width:30px}.gb_Da.gb_Ca:hover,.gb_Da.gb_Ca:active{-webkit-box-shadow:none;box-shadow:none}.gb_Ea{background:#fff;border:none;-webkit-border-radius:50%;border-radius:50%;bottom:2px;-webkit-box-shadow:0px 1px 2px 0px rgba(60,64,67,.30),0px 1px 3px 1px rgba(60,64,67,.15);box-shadow:0px 1px 2px 0px rgba(60,64,67,.30),0px 1px 3px 1px rgba(60,64,67,.15);height:14px;margin:2px;position:absolute;right:0;width:14px}.gb_Fa{color:#1f71e7;font:400 22px/32px Google Sans,Roboto,RobotoDraft,Helvetica,Arial,sans-serif;text-align:center;text-transform:uppercase}@media (min-resolution:1.25dppx),(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25){.gb_Ca::before{display:inline-block;-webkit-transform:scale(.5);transform:scale(.5);-webkit-transform-origin:left 0;transform-origin:left 0}.gb_Ha::before{display:inline-block;-webkit-transform:scale(.5);transform:scale(.5);-webkit-transform-origin:left 0;transform-origin:left 0}.gb_k .gb_Ha::before{-webkit-transform:scale(0.416666667);transform:scale(0.416666667)}}.gb_Ca:hover,.gb_Ca:focus{-webkit-box-shadow:0 1px 0 rgba(0,0,0,.15);box-shadow:0 1px 0 rgba(0,0,0,.15)}.gb_Ca:active{-webkit-box-shadow:inset 0 2px 0 rgba(0,0,0,.15);box-shadow:inset 0 2px 0 rgba(0,0,0,.15)}.gb_Ca:active::after{background:rgba(0,0,0,.1);-webkit-border-radius:50%;border-radius:50%;content:'';display:block;height:100%}.gb_Ia{cursor:pointer;line-height:40px;min-width:30px;opacity:.75;overflow:hidden;vertical-align:middle;text-overflow:ellipsis}.gb_C.gb_Ia{width:auto}.gb_Ia:hover,.gb_Ia:focus{opacity:.85}.gb_Ja .gb_Ia,.gb_Ja .gb_Ka{line-height:26px}#gb#gb.gb_Ja a.gb_Ia,.gb_Ja .gb_Ka{font-size:11px;height:auto}.gb_La{border-top:4px solid #000;border-left:4px dashed transparent;border-right:4px dashed transparent;display:inline-block;margin-left:6px;opacity:.75;vertical-align:middle}.gb_Ma:hover .gb_La{opacity:.85}.gb_ia>.gb_Na{padding:3px 3px 3px 4px}.gb_Oa.gb_Ba{color:#fff}.gb_i .gb_Ia,.gb_i .gb_La{opacity:1}#gb#gb.gb_i.gb_i a.gb_Ia,#gb#gb .gb_i.gb_i a.gb_Ia{color:#fff}.gb_i.gb_i .gb_La{border-top-color:#fff;opacity:1}.gb_D .gb_Ca:hover,.gb_i .gb_Ca:hover,.gb_D .gb_Ca:focus,.gb_i .gb_Ca:focus{-webkit-box-shadow: 0 1px 0 rgba(0,0,0,.15) , 0 1px 2px rgba(0,0,0,.2) ;box-shadow: 0 1px 0 rgba(0,0,0,.15) , 0 1px 2px rgba(0,0,0,.2) }.gb_Pa .gb_Na,.gb_Qa .gb_Na{position:absolute;right:1px}.gb_Na.gb_h,.gb_Ra.gb_h,.gb_Ma.gb_h{-webkit-flex:0 1 auto;flex:0 1 auto;-webkit-flex:0 1 main-size;flex:0 1 main-size}.gb_Sa.gb_Ta .gb_Ia{width:30px!important}.gb_Ua{height:40px;position:absolute;right:-5px;top:-5px;width:40px}.gb_Va .gb_Ua,.gb_Wa .gb_Ua{right:0;top:0}.gb_Na .gb_C{padding:4px}.gb_ce{display:none}.gb_nc{display:inline-block;position:relative;top:2px;-webkit-user-select:none}.gb_fe .gb_nc{display:none}.gb_Jd .gb_oc{line-height:normal;position:relative;padding-left:16px}.gb_Wc.gb_Xc .gb_oc{padding-left:0px}.gb_Wc .gb_oc{padding-left:12px}.gb_pc.gb_ge{direction:ltr}.gb_pc.gb_ge .gb_5d{padding-left:8px;padding-right:0}.gb_pc .gb_he:before{content:url('https://www.gstatic.com/images/branding/googlelogo/svg/googlelogo_clr_74x24px.svg');display:inline-block;height:24px;width:74px}.gb_pc .gb_he{height:24px;width:74px;display:inline-block;vertical-align:middle}.gb_pc{display:inline-block;vertical-align:middle}.gb_pc .gb_he,.gb_pc.gb_ie,.gb_pc:not(.gb_ie):not(:focus){outline:none}.gb_oa{display:inline-block;vertical-align:middle}.gb_sc{border:none;display:block;visibility:hidden}img.gb_tc{border:0;vertical-align:middle}.gb_Ec .gb_pc .gb_he:before,.gb_vc .gb_pc .gb_he:before{content:url('https://www.gstatic.com/images/branding/googlelogo/svg/googlelogo_light_clr_74x24px.svg')}.gb_4d .gb_pc .gb_he:before{content:url('https://www.gstatic.com/images/branding/googlelogo/svg/googlelogo_dark_clr_74x24px.svg')}@media screen and (-ms-high-contrast:black-on-white){.gb_vc .gb_pc .gb_he:before{content:url('https://www.gstatic.com/images/branding/googlelogo/svg/googlelogo_dark_clr_74x24px.svg')}}@media screen and (-ms-high-contrast:white-on-black){.gb_4d .gb_pc .gb_he:before{content:url('https://www.gstatic.com/images/branding/googlelogo/svg/googlelogo_light_clr_74x24px.svg')}}.gb_oa{background-repeat:no-repeat}.gb_5d{display:inline-block;font-family:'Product Sans',Arial,sans-serif;font-size:22px;line-height:24px;padding-left:8px;position:relative;top:-1.5px;vertical-align:middle}.gb_Wc .gb_5d{padding-left:4px}.gb_Wc .gb_5d.gb_je{padding-left:0}.gb_tc.gb_6d{padding-right:4px}.gb_Ec .gb_Vc.gb_5d{opacity:1}.gb_ke:focus .gb_5d{text-decoration:underline}.gb_le img.gb_tc{margin-bottom:4px}.gb_uc{-webkit-border-radius:50%;border-radius:50%;display:inline-block;margin:0 4px;padding:12px;overflow:hidden;vertical-align:middle;cursor:pointer;height:24px;width:24px;-webkit-user-select:none;-webkit-flex:0 0 auto;flex:0 0 auto}.gb_qa .gb_uc{margin:0 4px 0 0}.gb_uc:focus,.gb_uc:focus:hover{background-color:rgba(60,64,67,0.1);outline:none}.gb_uc:active{background-color:rgba(60,64,67,0.12);outline:none}.gb_uc:hover{background-color:rgba(60,64,67,0.08);outline:none}.gb_vc .gb_uc:hover{background-color:rgba(232,234,237,0.08)}.gb_vc .gb_uc:focus,.gb_vc .gb_uc:focus:hover{background-color:rgba(232,234,237,0.1)}.gb_vc .gb_uc:active{background-color:rgba(232,234,237,0.12)}.gb_wc{display:none}.gb_xc{-webkit-transform:none;transform:none}.gb_zc{display:none}.gb_Ac{background-color:#fff;bottom:0;color:#000;height:-webkit-calc(100vh - 100%);height:calc(100vh - 100%);overflow-y:auto;overflow-x:hidden;position:absolute;top:100%;z-index:990;will-change:visibility;visibility:hidden;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-transition:transform .25s cubic-bezier(0.4,0.0,0.2,1) ,visibility 0s linear .25s;transition:transform .25s cubic-bezier(0.4,0.0,0.2,1) ,visibility 0s linear .25s}.gb_Ac.gb_Bc.gb_Cc,.gb_Ac.gb_Bc.gb_Cc:hover{overflow:visible}.gb_Ac.gb_qa{width:264px;-webkit-transform:translateX( -264px );transform:translateX( -264px )}.gb_Ac:not(.gb_qa){width:280px;-webkit-transform:translateX( -280px );transform:translateX( -280px )}.gb_Dc .gb_Ac{width:195px}.gb_Ac.gb_la{-webkit-transform:translateX(0);transform:translateX(0);visibility:visible;-webkit-box-shadow:0 0 16px rgba(0,0,0,.28);box-shadow:0 0 16px rgba(0,0,0,.28);-webkit-transition:transform .25s cubic-bezier(0.4,0.0,0.2,1) ,visibility 0s linear 0s;transition:transform .25s cubic-bezier(0.4,0.0,0.2,1) ,visibility 0s linear 0s}.gb_Ac.gb_Ec{background-color:rgba(32,33,36,1);color:#e8eaed}.gb_Fc.gb_Hc{background-color:transparent;-webkit-box-shadow:0 0;box-shadow:0 0}.gb_Fc.gb_Hc>:not(.gb_Ic){display:none}.gb_Ic{display:-webkit-flex;display:flex;-webkit-flex:1 1 auto;flex:1 1 auto;-webkit-flex-direction:column;flex-direction:column}.gb_Ic>.gb_Jc{-webkit-flex:1 0 auto;flex:1 0 auto}.gb_Ic>.gb_Kc{-webkit-flex:0 0 auto;flex:0 0 auto}.gb_Lc{list-style:none;margin-top:0;margin-bottom:0;padding:8px 0}.gb_Ac:not(.gb_Fc) .gb_Lc:first-child{padding:0 0 8px 0}.gb_Lc:not(:last-child){border-bottom:1px solid #ddd}.gb_Ec .gb_Lc:not(:last-child){border-bottom:1px solid #5f6368}.gb_Ec .gb_Mc .gb_Nc{background-color:rgba(32,33,36,1);border-bottom:1px solid #5f6368}.gb_Oc{cursor:pointer}.gb_Pc:empty{display:none}.gb_Oc,.gb_Pc{display:block;min-height:40px;padding-bottom:4px;padding-top:4px;font-family:Roboto,RobotoDraft,Helvetica,Arial,sans-serif;color:rgba(0,0,0,0.87)}.gb_Ec .gb_Oc{color:#e8eaed}.gb_Ec .gb_Pc{color:#9aa0a6}.gb_Ac.gb_qa .gb_Oc{padding-left:16px}.gb_Ac:not(.gb_qa) .gb_Oc,.gb_Ac:not(.gb_qa) .gb_Pc{padding-left:24px}.gb_Oc:hover{background:rgba(0,0,0,0.12)}.gb_Ec .gb_Oc:hover{background:rgba(232,234,237,0.08)}.gb_Oc.gb_ya{background:rgba(0,0,0,0.12);font-weight:bold;color:rgba(0,0,0,0.87)}.gb_Ec .gb_Oc.gb_ya{background:rgba(232,234,237,0.12);color:rgba(255,255,255, 0.87 )}.gb_Oc .gb_Qc{text-decoration:none;display:inline-block;width:100%}.gb_Oc .gb_Qc:focus{outline:none}.gb_Oc .gb_Rc,.gb_Pc{padding-left:32px;display:inline-block;line-height:40px;vertical-align:top;width:176px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.gb_Dc .gb_Oc .gb_Rc,.gb_Dc .gb_Pc{padding-left:16px;width:138px}.gb_Ic.gb_t .gb_Qc:focus .gb_Rc{text-decoration:underline}.gb_Oc .gb_Sc{height:24px;width:24px;float:left;margin-top:8px;vertical-align:middle}.gb_Mc>*{display:block;min-height:48px}.gb_pa.gb_qa .gb_Mc>*{padding-top:4px;padding-bottom:4px;padding-left:16px}.gb_pa:not(.gb_qa) .gb_Mc>*{padding-top:8px;padding-bottom:8px;padding-left:24px}.gb_pa:not(.gb_qa) .gb_Wc .gb_nc{-webkit-box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex}.gb_Mc .gb_nc{display:table-cell;height:48px;vertical-align:middle}.gb_Mc .gb_Nc{background-color:#f5f5f5;display:block}.gb_Mc .gb_Nc .gb_bd{float:right}.gb_pa.gb_qa .gb_Mc .gb_Nc{padding:4px}.gb_pa:not(.gb_qa) .gb_Mc .gb_Nc{padding:8px}.gb_Mc .gb_Ia{width:40px}.gb_Mc .gb_La{position:absolute;right:0;top:50%}.gb_Ac.gb_me{-webkit-overflow-scrolling:touch}.gb_Ac .gb_ke{text-decoration:none}.gb_Ac .gb_5d{display:inline;white-space:normal;word-break:break-all;word-break:break-word}body.gb_ne [data-ogpc]{-webkit-transition:margin-left .25s cubic-bezier(0.4,0.0,0.2,1) ,visibility 0s linear .25s;transition:margin-left .25s cubic-bezier(0.4,0.0,0.2,1) ,visibility 0s linear .25s}body.gb_ne.gb_oe [data-ogpc]{-webkit-transition:margin-left .25s cubic-bezier(0.4,0.0,0.2,1) ,visibility 0s linear 0s;transition:margin-left .25s cubic-bezier(0.4,0.0,0.2,1) ,visibility 0s linear 0s}body [data-ogpc]{margin-left:0}body.gb_oe [data-ogpc]{margin-left:280px}.gb_wf{cursor:pointer;padding:13px}.gb_xf{background-color:rgba(0,0,0,0.1);-webkit-box-shadow:inset 1px 1px 3px rgba(0,0,0,.24);box-shadow:inset 1px 1px 3px rgba(0,0,0,.24);width:34px;height:17px;-webkit-border-radius:8px;border-radius:8px;position:relative;-webkit-transition:background-color ease 150ms;transition:background-color ease 150ms}.gb_wf[aria-pressed=true] .gb_xf{background-color:rgba(255,255,255,0.1)}.gb_yf{position:absolute;width:25px;height:25px;-webkit-border-radius:50%;border-radius:50%;-webkit-box-shadow:0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);box-shadow:0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);top:-4px;-webkit-transform:translateX(-12px);transform:translateX(-12px);background-color:white;-webkit-transition:transform ease 150ms;transition:transform ease 150ms}.gb_wf[aria-pressed=true] .gb_yf{-webkit-transform:translateX(20px);transform:translateX(20px)}.gb_yf img{position:absolute;margin:5px;width:15px;height:15px}.gb_pe{line-height:0;-webkit-user-select:none}.gb_Vd>.gb_pe:only-child{float:right}.gb_pe .gb_ue{display:inline-block}.gb_pe .gb_3c{cursor:pointer}.gb_pe .gb_3c img{opacity:0.54;width:24px;height:24px;padding:10px}.gb_vc .gb_pe .gb_3c img{opacity:1}.gb_qe{text-align:right}.gb_ue{text-align:initial}.gb_pe .gb_ve,.gb_pe .gb_we{display:table-cell;height:48px;vertical-align:middle}.gb_pe .gb_ve:not(.gb_xe){overflow:hidden}.gb_Ae{padding-left:16px}.gb_Ae:not(.gb_qa){padding-left:24px}.gb_Be{color:black;opacity:0.54}.gb_Ce{background:white;-webkit-box-shadow:0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12);box-shadow:0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12);overflow-y:hidden;position:absolute;right:24px;top:48px}.gb_0c{display:none}.gb_0c.gb_la{display:block}.gb_1c{background-color:#fff;-webkit-box-shadow:0px 1px 0px rgba(0,0,0,0.08);box-shadow:0px 1px 0px rgba(0,0,0,0.08);color:#000;position:relative;z-index:986}.gb_2c{height:40px;padding:16px 24px;white-space:nowrap}.gb_1c .gb_3c{border:0;font-weight:500;font-size:14px;line-height:36px;min-width:32px;padding:0 16px;vertical-align:middle}.gb_1c .gb_3c:before{content:'';height:6px;left:0;position:absolute;top:-6px;width:100%}.gb_1c .gb_3c:after{bottom:-6px;content:'';height:6px;left:0;position:absolute;width:100%}.gb_1c .gb_3c+.gb_3c{margin-left:8px}.gb_4c{height:48px;padding:4px;margin:-8px 0 0 -8px}.gb_5c{font-family:Roboto,RobotoDraft,Helvetica,Arial,sans-serif;overflow:hidden;vertical-align:top}.gb_2c .gb_5c{display:inline-block;padding-left:8px;width:640px}.gb_6c{background-color:inherit}.gb_2c .gb_6c{display:inline-block;position:absolute;top:18px;right:24px}.gb_6c .gb_7c{height:1.5em;margin:-.25em 10px -.25em 0;vertical-align:text-top;width:1.5em}.gb_8c{line-height:20px;font-size:16px;font-weight:700;color:rgba(0,0,0,.87)}.gb_2c .gb_8c,.gb_2c .gb_9c{width:640px}.gb_9c .gb_ad,.gb_9c{line-height:20px;font-size:13px;font-weight:400;color:rgba(0,0,0,.54)}.gb_bd.gb_cd{padding:0}.gb_cd .gb_E{background:#ffffff;border:solid 1px transparent;-webkit-border-radius:8px;border-radius:8px;-webkit-box-sizing:border-box;box-sizing:border-box;padding:16px;right:16px;top:72px;-webkit-box-shadow:0 1px 2px 0 rgba(65,69,73,0.3),0 3px 6px 2px rgba(65,69,73,0.15);box-shadow:0 1px 2px 0 rgba(65,69,73,0.3),0 3px 6px 2px rgba(65,69,73,0.15)}.gb_cd .gb_E.gb_dd{right:60px;top:48px}.gb_cd .gb_E.gb_ed{top:62px}a.gb_fd{color:#5f6368!important;font-size:22px;height:24px;opacity:1;padding:8px;position:absolute;right:8px;top:8px;text-decoration:none!important;width:24px}a.gb_fd:focus,a.gb_fd:active,a.gb_fd:focus:hover{background-color:#e8eaed;-webkit-border-radius:50%;border-radius:50%;outline:none}a.gb_fd:hover{background-color:#f1f3f4;-webkit-border-radius:50%;border-radius:50%;outline:none}svg.gb_gd{fill:#5f6368;opacity:1}.gb_hd{padding:0;white-space:normal;display:table}.gb_cd .gb_3:active{outline:none;-webkit-box-shadow:0 4px 5px rgba(0,0,0,.16);box-shadow:0 4px 5px rgba(0,0,0,.16)}.gb_Z.gb_id.gb_jd{-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer;height:36px;font-family:Google Sans,Roboto,RobotoDraft,Helvetica,Arial,sans-serif;font-size:14px;font-weight:500;letter-spacing:0.25px;line-height:16px;min-width:70px;outline:none;text-transform:none;-webkit-font-smoothing:antialiased}.gb_Z.gb_kd.gb_jd{-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer;height:36px;color:#5f6368;font-family:Google Sans,Roboto,RobotoDraft,Helvetica,Arial,sans-serif;font-size:14px;font-weight:500;letter-spacing:0.25px;line-height:16px;min-width:70px;outline:none;padding:8px 6px;text-transform:none;-webkit-font-smoothing:antialiased}.gb_Z.gb_id.gb_jd{background:white;border:1px solid #dadce0;color:#1a73e8;margin-top:21px;padding:9px 7px}.gb_Z.gb_id.gb_jd:hover{background-color:rgba(26,115,232,0.04)}.gb_Z.gb_id.gb_jd:focus,.gb_Z.gb_id.gb_jd:focus:hover{background-color:rgba(26,115,232,0.12);border:solid 1px #1a73e8}.gb_Z.gb_id.gb_jd:active{background-color:rgba(26,115,232,0.1);border-color:transparent}.gb_Z.gb_kd:hover{background-color:#f8f9fa}.gb_Z.gb_kd:focus,.gb_Z.gb_kd:hover:focus{background-color:#f1f3f4;border-color:transparent}.gb_Z.gb_kd:active{background-color:#f1f3f4;-webkit-box-shadow:0 1px 2px 0 rgba(60,64,67,0.3),0 1px 3px 1px rgba(60,64,67,0.15);box-shadow:0 1px 2px 0 rgba(60,64,67,0.3),0 1px 3px 1px rgba(60,64,67,0.15)}.gb_ad{color:#5f6368;font-family:Roboto,RobotoDraft,Helvetica,Arial,sans-serif;font-size:14px;letter-spacing:0.25px;line-height:20px;margin:0;margin-bottom:5px}.gb_ld{text-align:right;font-size:14px;padding-bottom:0;white-space:nowrap}.gb_ld .gb_md,.gb_ld .gb_nd{margin-left:12px;text-transform:none}a.gb_3.gb_md:hover{background-color:#2b7de9;border-color:transparent;-webkit-box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15);box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15)}a.gb_3.gb_md:focus,a.gb_3.gb_md:hover:focus{background-color:#5094ed;border-color:transparent;-webkit-box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15);box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15)}a.gb_3.gb_md:active{background-color:#63a0ef;-webkit-box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15);box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15)}.gb_ld .gb_jd.gb_md img{background-color:inherit;-webkit-border-radius:initial;border-radius:initial;height:18px;margin:0 8px 0 4px;vertical-align:text-top;width:18px}.gb_od .gb_hd .gb_pd .gb_jd{border:2px solid transparent}.gb_hd .gb_pd .gb_jd:focus:after,.gb_hd .gb_pd .gb_jd:hover:after{background-color:transparent}.gb_qd{color:#3c4043;font-family:Google Sans,Roboto,RobotoDraft,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;letter-spacing:0.1px;line-height:20px;margin:0;margin-bottom:12px}.gb_ad a.gb_sd{text-decoration:none;color:#5e97f6}.gb_ad a.gb_sd:visited{color:#5e97f6}.gb_ad a.gb_sd:hover,.gb_ad a.gb_sd:active{text-decoration:underline}.gb_td{position:absolute;background:transparent;top:-999px;z-index:-1;visibility:hidden;margin-top:1px;margin-left:1px}#gb .gb_cd{margin:0}.gb_cd .gb_3c{background:#4d90fe;border:2px solid transparent;-webkit-box-sizing:border-box;box-sizing:border-box;font-weight:500;margin-top:21px;min-width:70px;text-align:center;-webkit-font-smoothing:antialiased}.gb_cd a.gb_3{background:#1a73e8;-webkit-border-radius:4px;border-radius:4px;color:#ffffff;font-family:Google Sans,Roboto,RobotoDraft,Helvetica,Arial,sans-serif;font-size:14px;font-weight:500;letter-spacing:0.25px;line-height:16px;padding:8px 22px;-webkit-font-smoothing:antialiased}.gb_cd.gb_ud .gb_E{background-color:#fce8e6}.gb_cd.gb_vd a.gb_md,.gb_cd.gb_ud a.gb_md{background-color:#d93025}.gb_cd.gb_vd a.gb_md:hover,.gb_cd.gb_ud a.gb_md:hover{background-color:#cc3127;-webkit-box-shadow:0px -1px 5px rgba(128,134,139,0.09),0px 3px 5px rgba(128,134,139,0.06),0px 1px 2px rgba(60,64,67,0.3),0px 1px 3px rgba(60,64,67,0.15);box-shadow:0px -1px 5px rgba(128,134,139,0.09),0px 3px 5px rgba(128,134,139,0.06),0px 1px 2px rgba(60,64,67,0.3),0px 1px 3px rgba(60,64,67,0.15)}.gb_cd.gb_vd a.gb_md:focus,.gb_cd.gb_ud a.gb_md:focus{background-color:#b3332c;-webkit-box-shadow:none;box-shadow:none}.gb_cd.gb_vd a.gb_md:active,.gb_cd.gb_ud a.gb_md:active{background-color:#a6342e;-webkit-box-shadow:0px -2px 8px rgba(128,134,139,0.09),0px 4px 8px rgba(128,134,139,0.06),0px 1px 2px rgba(60,64,67,0.3),0px 2px 6px rgba(60,64,67,0.15);box-shadow:0px -2px 8px rgba(128,134,139,0.09),0px 4px 8px rgba(128,134,139,0.06),0px 1px 2px rgba(60,64,67,0.3),0px 2px 6px rgba(60,64,67,0.15)}.gb_cd.gb_wd a.gb_3{float:right}#gb .gb_cd a.gb_3c.gb_3c{color:#ffffff;cursor:pointer}.gb_cd .gb_3c:hover{background:#357ae8;border-color:#2f5bb7}.gb_xd,.gb_pd{display:table-cell}.gb_xd{vertical-align:middle}.gb_xd img{height:48px;padding-left:4px;padding-right:20px;width:48px}.gb_pd{padding-left:13px;width:100%}.gb_cd .gb_pd{padding-top:4px;min-width:326px;padding-left:0px;width:326px}.gb_cd.gb_yd .gb_pd{min-width:254px;width:254px}.gb_cd.gb_wd .gb_pd{padding-top:32px}.gb_Bd{color:#ffffff;font-size:13px;font-weight:bold;height:25px;line-height:19px;padding-top:5px;padding-left:12px;position:relative;background-color:#4d90fe}.gb_Bd .gb_Cd{color:#ffffff;cursor:default;font-size:22px;font-weight:normal;position:absolute;right:12px;top:5px}.gb_Bd .gb_md,.gb_Bd .gb_kd{color:#ffffff;display:inline-block;font-size:11px;margin-left:16px;padding:0 8px;white-space:nowrap}.gb_Dd{background:none;background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0.16)),to(rgba(0,0,0,0.2)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0.16),rgba(0,0,0,0.2));background-image:linear-gradient(top,rgba(0,0,0,0.16),rgba(0,0,0,0.2));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0.16),rgba(0,0,0,0.2));border-radius:2px;border:1px solid #dcdcdc;border:1px solid rgba(0,0,0,0.1);cursor:default!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#160000ff,endColorstr=#220000ff);text-decoration:none!important;-webkit-border-radius:2px}.gb_Dd:hover{background:none;background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0.14)),to(rgba(0,0,0,0.2)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0.14),rgba(0,0,0,0.2));background-image:linear-gradient(top,rgba(0,0,0,0.14),rgba(0,0,0,0.2));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0.14),rgba(0,0,0,0.2));border:1px solid rgba(0,0,0,0.2);box-shadow:0 1px 1px rgba(0,0,0,0.1);-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#14000000,endColorstr=#22000000)}.gb_Dd:active{box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3)}.gb_pa .gb_Z{color:#4285f4}.gb_pa .gb_0{color:#fff}.gb_pa .gb_3c:not(.gb_Pe):focus{outline:none}.gb_jf,.gb_kf,.gb_lf{display:none}.gb_Fe{height:48px;max-width:720px}.gb_Vd.gb_Oe:not(.gb_Ee) .gb_Fe{max-width:100%;-webkit-flex:1 1 auto;flex:1 1 auto}.gb_Ud>.gb_Id .gb_Fe{display:table-cell;vertical-align:middle;width:100%}.gb_Vd.gb_Oe .gb_Fe .gb_Te{margin-left:0;margin-right:0}.gb_Te{background:#f1f3f4;border:1px solid transparent;-webkit-border-radius:8px;border-radius:8px;margin-left:auto;margin-right:auto;max-width:720px;position:relative;-webkit-transition:background 100ms ease-in,width 100ms ease-out;transition:background 100ms ease-in,width 100ms ease-out}.gb_Te.gb_mf{-webkit-border-radius:8px 8px 0 0;border-radius:8px 8px 0 0}.gb_vc .gb_Te{background:rgba(241,243,244,0.24)}.gb_Te button{background:none;border:none;cursor:pointer;outline:none;padding:0 5px;line-height:0}.gb_Te:not(.gb_Ee) button{padding:0 5px}.gb_Te button svg,.gb_Te button img{padding:8px;margin:3px}.gb_Te.gb_Ee button svg{margin-left:1px;margin-right:1px}.gb_nf.gb_of,.gb_pf.gb_of{padding-left:2px;padding-right:2px}.gb_pf{display:none}.gb_nf,.gb_pf{float:left;position:absolute;top:0}.gb_qf{position:absolute;right:0;cursor:default;visibility:hidden;top:0;-webkit-transition:opacity 250ms ease-out;transition:opacity 250ms ease-out}.gb_rf .gb_qf{right:44px}.gb_qf.gb_sf{visibility:inherit}.gb_ef::-ms-clear{display:none;height:0;width:0}.gb_tf{position:absolute;right:0;top:0}.gb_uf{height:46px;padding:0;margin-left:56px;margin-right:49px;overflow:hidden}.gb_rf .gb_uf{margin-right:96px}.gb_ef{background:transparent;border:none;font:normal 16px Google Sans,Roboto,RobotoDraft,Helvetica,Arial,sans-serif;-webkit-font-variant-ligatures:none;font-variant-ligatures:none;height:46px;outline:none;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.gb_of.gb_uf .gb_ef.gb_vf{padding-left:2px}.gb_vc .gb_ef{color:rgba(255,255,255,0.87)}.gb_ef:not(.gb_vf){padding:11px 0}.gb_ef.gb_vf{padding:0}.gb_vf{height:46px;line-height:46px}.gb_Te:not(.gb_Ue) input::-webkit-input-placeholder{color:rgba(0,0,0,0.54)}.gb_vc .gb_Te:not(.gb_Ue) input::-webkit-input-placeholder{color:rgba(255,255,255,0.87)}.gb_Te.gb_Ee:not(.gb_M){background:transparent;float:right;-webkit-box-shadow:none;box-shadow:none}.gb_Te.gb_Ee:not(.gb_M) .gb_uf,.gb_Te.gb_Ee:not(.gb_M) .gb_qf,.gb_Te.gb_Ee:not(.gb_M) .gb_tf{display:none}.gb_Te.gb_Ee.gb_M{margin-left:0;position:absolute;width:auto}.gb_Te.gb_Ee.gb_M .gb_nf{display:none}.gb_Te.gb_Ee .gb_nf{padding:0;position:static}.gb_Te.gb_Ee.gb_M .gb_pf{display:block}.gb_pa.gb_Hc .gb_Id.gb_De:not(.gb_Ee) .gb_Fe,.gb_pa.gb_Hc .gb_Id.gb_He.gb_Ie:not(.gb_Ee) .gb_Fe,.gb_pa.gb_Qd .gb_Id:not(.gb_De):not(.gb_Ee) .gb_Fe{padding-right:30px}.gb_pa.gb_Hc .gb_Id.gb_Ie:not(.gb_Ee) .gb_Fe,.gb_pa.gb_Hc .gb_Id.gb_He.gb_De:not(.gb_Ee) .gb_Fe{padding-left:30px}.gb_Id:not(.gb_Ee) .gb_Fe{padding-left:10px;padding-right:10px;width:100%;-webkit-flex:1 1 auto;flex:1 1 auto}.gb_Fe.gb_Ba{display:none}.gb_Vd.gb_Je>.gb_pe{min-width:initial!important;min-width:auto!important}.gb_Ke,.gb_Le:not(.gb_Rd):not(.gb_Je).gb_Ee,.gb_Le:not(.gb_Rd):not(.gb_Je).gb_Me{-webkit-box-pack:flex-end;-webkit-justify-content:flex-end;justify-content:flex-end}.gb_Le:not(.gb_Rd):not(.gb_Je){-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.gb_Le:not(.gb_Rd):not(.gb_Je):not(.gb_Ee).gb_Ne,.gb_Le:not(.gb_Rd):not(.gb_Je):not(.gb_Ee).gb_Oe{-webkit-box-pack:flex-start;-webkit-justify-content:flex-start;justify-content:flex-start}.gb_Vd.gb_Rd,.gb_Vd.gb_Je{-webkit-box-pack:space-between;-webkit-justify-content:space-between;justify-content:space-between}.gb_pa.gb_qa .gb_Wc,.gb_Jd.gb_Rd.gb_Sd>.gb_Wc{-webkit-flex:1 1 auto;flex:1 1 auto;overflow:hidden}.gb_pa.gb_qa .gb_Vd,.gb_Jd.gb_Rd.gb_Sd>.gb_Vd{-webkit-flex:0 0 auto;flex:0 0 auto}sentinel{}</style><script nonce="">;this.gbar_={CONFIG:[[[0,"www.gstatic.com","og.qtm.en_US.yoD6WPnvqKw.O","co.in","en","49",0,[4,2,".40.40.40.76.40.40.40.","","1300102,3700242,3700817,3700831,3700920","380484006","0"],null,"Wl_bYPOGIcWIsQXhwLeACg",null,0,"og.qtm.urfuvlAlBkI.L.W.O","AA2YrTsUUSONS92GNS7z5POxtVRsKo8CAg","AA2YrTtUhKBCBEglVX3nQGfz7aejyjKuYQ","",2,1,200,"IND",null,null,"49","49",1],null,[1,0.1000000014901161,2,1],[1,0.001000000047497451,1],[1,0,0,null,"0","[email protected]","","AOEwXKqhmjVLm79kIqWzoNoT5mjr8noTXz4oiq6a45n2Ck9fuDRwBd9ZogbiCbbyyqRD6nTyjBY0LVrwVUqJOT0pnU6fs7PQbA"],[0,1,"",1,1,0,1,0,0,1,null,0,1,null,0,0,null,null,0,0,0,"//ssl.gstatic.com/images/branding/product/1x/drive_2020q4_48dp.png","","","//ssl.gstatic.com/images/branding/product/2x/drive_2020q4_48dp.png","","",null,0,238,0,0,0,null,null,null,"rgba(32,33,36,1)","rgba(255,255,255,1)",0,0,1,null,null,1,0,0,0],["%1$s (default)","Brand account",1,"%1$s (delegated)",1,null,83,"?authuser=$authuser\u0026ogss=1",null,null,null,1,"https://accounts.google.com/ListAccounts?listPages=0\u0026pid=49\u0026gpsia=1\u0026source=ogb\u0026atic=1\u0026mo=1\u0026mn=1\u0026hl=en\u0026ts=39",0,"dashboard",null,null,null,null,"Profile","",1,null,"Signed out","https://accounts.google.com/AccountChooser?source=ogb\u0026continue=$continue\u0026Email=$email\u0026ec=GAhAMQ","https://accounts.google.com/RemoveLocalAccount?source=ogb","Remove","Sign in",0,1,1,0,1,0,0,"",null,null,"Session expired",null,null,"https://docs.google.com/picker","Visitor",null,"Default","Delegated","Sign out of all accounts",0,0,null,0,0,0,"myaccount.google.com","https",0],null,["1","gci_91f30755d6a6b787dcc2a4062e6e9824.js","googleapis.client:gapi.iframes","0","en"],null,null,null,null,["m;/_/scs/abc-static/_/js/k=gapi.gapi.en.7yBiF1UUXzY.O/d=1/rs=AHpOoo-pEDm0pqtBuZIKGpxOGTcQloIhJw/m=__features__","https://apis.google.com","","","1","",null,1,"es_plusone_gc_20210601.0_p1","en",null,0],[0.009999999776482582,"co.in","49",[null,"","0",null,1,5184000,null,null,"",null,null,null,null,null,0,null,1,0,1,0,0,0,null,null,0,0,null,0,0,0,0],null,null,null,0,null,null,["5061451","google\\.(com|ru|ca|by|kz|com\\.mx|com\\.tr)$",1]],[1,1,null,40400,49,"IND","en","380484006.0",7,0.009999999776482582,1,0,null,null,1,0,"3700817,3700831,3700920",null,null,null,"Wl_bYPOGIcWIsQXhwLeACg",0,0],[[null,null,null,"https://www.gstatic.com/og/_/js/k=og.qtm.en_US.yoD6WPnvqKw.O/rt=j/m=qgl,q_d,q_sf,q_pc,qdid,qmd,qcwid,qbg,qbd,qapid/exm=qaaw,qabr,qadd,qaid,qalo,qebr,qein,qhaw,qhbr,qhch,qhga,qhid,qhin,qhlo,qhmn,qhpc,qhpr,qhsf,qhtt/d=1/ed=1/rs=AA2YrTsUUSONS92GNS7z5POxtVRsKo8CAg"],[null,null,null,"https://www.gstatic.com/og/_/ss/k=og.qtm.urfuvlAlBkI.L.W.O/m=q_sf,qdid,qmd,qcwid/excm=qaaw,qabr,qadd,qaid,qalo,qebr,qein,qhaw,qhbr,qhch,qhga,qhid,qhin,qhlo,qhmn,qhpc,qhpr,qhsf,qhtt/d=1/ed=1/ct=zgms/rs=AA2YrTtUhKBCBEglVX3nQGfz7aejyjKuYQ"]],null,null,null,[[[null,null,[null,null,null,"https://ogs.google.com/u/0/widget/app?bc=1"],0,448,328,57,4,1,0,0,63,64,8000,"https://www.google.co.in/intl/en/about/products?tab=oh",67,1,69,null,1,70,"Can't seem to load the app launcher right now. Try again or go to the %1$sGoogle Products%2$s page.",3,0,0,74,4000]],0,[null,null,null,"https://www.gstatic.com/og/_/js/k=og.qtm.en_US.yoD6WPnvqKw.O/rt=j/m=qdsh/d=1/ed=1/rs=AA2YrTsUUSONS92GNS7z5POxtVRsKo8CAg"],"49","49",1,0,null,"en",0],[300000,"/u/0","/u/0/_/gog/get","AOEwXKqhmjVLm79kIqWzoNoT5mjr8noTXz4oiq6a45n2Ck9fuDRwBd9ZogbiCbbyyqRD6nTyjBY0LVrwVUqJOT0pnU6fs7PQbA","https",0,"aa.google.com","rt=j\u0026sourceid=49","","2hZx7t1K9LZvAykifUhceg","",0,1,null,1],[["mousedown","touchstart","touchmove","wheel","keydown"],300000]]],};this.gbar_=this.gbar_||{};(function(_){var window=this;
try{
/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
var ia,ja,ka,la,ma,na,pa,qa,ua,va,Fa,Ga,Ha;_.aa=function(a){if(Error.captureStackTrace)Error.captureStackTrace(this,_.aa);else{var b=Error().stack;b&&(this.stack=b)}a&&(this.message=String(a))};_.ca=function(a,b){return 0<=(0,_.ba)(a,b)};_.da=function(a,b,c){for(var d in a)b.call(c,a[d],d,a)};_.fa=function(a,b){for(var c,d,e=1;e<arguments.length;e++){d=arguments[e];for(c in d)a[c]=d[c];for(var f=0;f<ea.length;f++)c=ea[f],Object.prototype.hasOwnProperty.call(d,c)&&(a[c]=d[c])}};
_.n=function(a,b){return null!=a?!!a:!!b};_.p=function(a,b){void 0==b&&(b="");return null!=a?a:b};_.ha=function(a,b){void 0==b&&(b=0);return null!=a?a:b};ia=function(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}};ja="function"==typeof Object.defineProperties?Object.defineProperty:function(a,b,c){if(a==Array.prototype||a==Object.prototype)return a;a[b]=c.value;return a};
ka=function(a){a=["object"==typeof globalThis&&globalThis,a,"object"==typeof window&&window,"object"==typeof self&&self,"object"==typeof global&&global];for(var b=0;b<a.length;++b){var c=a[b];if(c&&c.Math==Math)return c}throw Error("a");};la=ka(this);ma=function(a,b){if(b)a:{var c=la;a=a.split(".");for(var d=0;d<a.length-1;d++){var e=a[d];if(!(e in c))break a;c=c[e]}a=a[a.length-1];d=c[a];b=b(d);b!=d&&null!=b&&ja(c,a,{configurable:!0,writable:!0,value:b})}};
ma("Symbol",function(a){if(a)return a;var b=function(f,g){this.j=f;ja(this,"description",{configurable:!0,writable:!0,value:g})};b.prototype.toString=function(){return this.j};var c="jscomp_symbol_"+(1E9*Math.random()>>>0)+"_",d=0,e=function(f){if(this instanceof e)throw new TypeError("b");return new b(c+(f||"")+"_"+d++,f)};return e});
ma("Symbol.iterator",function(a){if(a)return a;a=Symbol("c");for(var b="Array Int8Array Uint8Array Uint8ClampedArray Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array".split(" "),c=0;c<b.length;c++){var d=la[b[c]];"function"===typeof d&&"function"!=typeof d.prototype[a]&&ja(d.prototype,a,{configurable:!0,writable:!0,value:function(){return na(ia(this))}})}return a});na=function(a){a={next:a};a[Symbol.iterator]=function(){return this};return a};
_.oa=function(a){var b="undefined"!=typeof Symbol&&Symbol.iterator&&a[Symbol.iterator];return b?b.call(a):{next:ia(a)}};pa="function"==typeof Object.create?Object.create:function(a){var b=function(){};b.prototype=a;return new b};if("function"==typeof Object.setPrototypeOf)qa=Object.setPrototypeOf;else{var ra;a:{var sa={a:!0},ta={};try{ta.__proto__=sa;ra=ta.a;break a}catch(a){}ra=!1}qa=ra?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError("d`"+a);return a}:null}ua=qa;
_.r=function(a,b){a.prototype=pa(b.prototype);a.prototype.constructor=a;if(ua)ua(a,b);else for(var c in b)if("prototype"!=c)if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c];a.T=b.prototype};va=function(a,b){return Object.prototype.hasOwnProperty.call(a,b)};
ma("WeakMap",function(a){function b(){}function c(l){var m=typeof l;return"object"===m&&null!==l||"function"===m}function d(l){if(!va(l,f)){var m=new b;ja(l,f,{value:m})}}function e(l){var m=Object[l];m&&(Object[l]=function(q){if(q instanceof b)return q;Object.isExtensible(q)&&d(q);return m(q)})}if(function(){if(!a||!Object.seal)return!1;try{var l=Object.seal({}),m=Object.seal({}),q=new a([[l,2],[m,3]]);if(2!=q.get(l)||3!=q.get(m))return!1;q.delete(l);q.set(m,4);return!q.has(l)&&4==q.get(m)}catch(u){return!1}}())return a;
var f="$jscomp_hidden_"+Math.random();e("freeze");e("preventExtensions");e("seal");var g=0,k=function(l){this.j=(g+=Math.random()+1).toString();if(l){l=_.oa(l);for(var m;!(m=l.next()).done;)m=m.value,this.set(m[0],m[1])}};k.prototype.set=function(l,m){if(!c(l))throw Error("e");d(l);if(!va(l,f))throw Error("f`"+l);l[f][this.j]=m;return this};k.prototype.get=function(l){return c(l)&&va(l,f)?l[f][this.j]:void 0};k.prototype.has=function(l){return c(l)&&va(l,f)&&va(l[f],this.j)};k.prototype.delete=function(l){return c(l)&&
va(l,f)&&va(l[f],this.j)?delete l[f][this.j]:!1};return k});
ma("Map",function(a){if(function(){if(!a||"function"!=typeof a||!a.prototype.entries||"function"!=typeof Object.seal)return!1;try{var k=Object.seal({x:4}),l=new a(_.oa([[k,"s"]]));if("s"!=l.get(k)||1!=l.size||l.get({x:4})||l.set({x:4},"t")!=l||2!=l.size)return!1;var m=l.entries(),q=m.next();if(q.done||q.value[0]!=k||"s"!=q.value[1])return!1;q=m.next();return q.done||4!=q.value[0].x||"t"!=q.value[1]||!m.next().done?!1:!0}catch(u){return!1}}())return a;var b=new WeakMap,c=function(k){this.o={};this.j=
f();this.size=0;if(k){k=_.oa(k);for(var l;!(l=k.next()).done;)l=l.value,this.set(l[0],l[1])}};c.prototype.set=function(k,l){k=0===k?0:k;var m=d(this,k);m.list||(m.list=this.o[m.id]=[]);m.Xa?m.Xa.value=l:(m.Xa={next:this.j,kc:this.j.kc,head:this.j,key:k,value:l},m.list.push(m.Xa),this.j.kc.next=m.Xa,this.j.kc=m.Xa,this.size++);return this};c.prototype.delete=function(k){k=d(this,k);return k.Xa&&k.list?(k.list.splice(k.index,1),k.list.length||delete this.o[k.id],k.Xa.kc.next=k.Xa.next,k.Xa.next.kc=
k.Xa.kc,k.Xa.head=null,this.size--,!0):!1};c.prototype.clear=function(){this.o={};this.j=this.j.kc=f();this.size=0};c.prototype.has=function(k){return!!d(this,k).Xa};c.prototype.get=function(k){return(k=d(this,k).Xa)&&k.value};c.prototype.entries=function(){return e(this,function(k){return[k.key,k.value]})};c.prototype.keys=function(){return e(this,function(k){return k.key})};c.prototype.values=function(){return e(this,function(k){return k.value})};c.prototype.forEach=function(k,l){for(var m=this.entries(),
q;!(q=m.next()).done;)q=q.value,k.call(l,q[1],q[0],this)};c.prototype[Symbol.iterator]=c.prototype.entries;var d=function(k,l){var m=l&&typeof l;"object"==m||"function"==m?b.has(l)?m=b.get(l):(m=""+ ++g,b.set(l,m)):m="p_"+l;var q=k.o[m];if(q&&va(k.o,m))for(k=0;k<q.length;k++){var u=q[k];if(l!==l&&u.key!==u.key||l===u.key)return{id:m,list:q,index:k,Xa:u}}return{id:m,list:q,index:-1,Xa:void 0}},e=function(k,l){var m=k.j;return na(function(){if(m){for(;m.head!=k.j;)m=m.kc;for(;m.next!=m.head;)return m=
m.next,{done:!1,value:l(m)};m=null}return{done:!0,value:void 0}})},f=function(){var k={};return k.kc=k.next=k.head=k},g=0;return c});var wa=function(a,b,c){if(null==a)throw new TypeError("g`"+c);if(b instanceof RegExp)throw new TypeError("h`"+c);return a+""};ma("Array.prototype.find",function(a){return a?a:function(b,c){a:{var d=this;d instanceof String&&(d=String(d));for(var e=d.length,f=0;f<e;f++){var g=d[f];if(b.call(c,g,f,d)){b=g;break a}}b=void 0}return b}});
ma("String.prototype.startsWith",function(a){return a?a:function(b,c){var d=wa(this,b,"startsWith"),e=d.length,f=b.length;c=Math.max(0,Math.min(c|0,d.length));for(var g=0;g<f&&c<e;)if(d[c++]!=b[g++])return!1;return g>=f}});var xa=function(a,b){a instanceof String&&(a+="");var c=0,d=!1,e={next:function(){if(!d&&c<a.length){var f=c++;return{value:b(f,a[f]),done:!1}}d=!0;return{done:!0,value:void 0}}};e[Symbol.iterator]=function(){return e};return e};
ma("Array.prototype.entries",function(a){return a?a:function(){return xa(this,function(b,c){return[b,c]})}});ma("Array.prototype.keys",function(a){return a?a:function(){return xa(this,function(b){return b})}});ma("Number.MAX_SAFE_INTEGER",function(){return 9007199254740991});var ya="function"==typeof Object.assign?Object.assign:function(a,b){for(var c=1;c<arguments.length;c++){var d=arguments[c];if(d)for(var e in d)va(d,e)&&(a[e]=d[e])}return a};ma("Object.assign",function(a){return a||ya});
ma("Array.prototype.values",function(a){return a?a:function(){return xa(this,function(b,c){return c})}});ma("Array.from",function(a){return a?a:function(b,c,d){c=null!=c?c:function(k){return k};var e=[],f="undefined"!=typeof Symbol&&Symbol.iterator&&b[Symbol.iterator];if("function"==typeof f){b=f.call(b);for(var g=0;!(f=b.next()).done;)e.push(c.call(d,f.value,g++))}else for(f=b.length,g=0;g<f;g++)e.push(c.call(d,b[g],g));return e}});
ma("Set",function(a){if(function(){if(!a||"function"!=typeof a||!a.prototype.entries||"function"!=typeof Object.seal)return!1;try{var c=Object.seal({x:4}),d=new a(_.oa([c]));if(!d.has(c)||1!=d.size||d.add(c)!=d||1!=d.size||d.add({x:4})!=d||2!=d.size)return!1;var e=d.entries(),f=e.next();if(f.done||f.value[0]!=c||f.value[1]!=c)return!1;f=e.next();return f.done||f.value[0]==c||4!=f.value[0].x||f.value[1]!=f.value[0]?!1:e.next().done}catch(g){return!1}}())return a;var b=function(c){this.j=new Map;if(c){c=
_.oa(c);for(var d;!(d=c.next()).done;)this.add(d.value)}this.size=this.j.size};b.prototype.add=function(c){c=0===c?0:c;this.j.set(c,c);this.size=this.j.size;return this};b.prototype.delete=function(c){c=this.j.delete(c);this.size=this.j.size;return c};b.prototype.clear=function(){this.j.clear();this.size=0};b.prototype.has=function(c){return this.j.has(c)};b.prototype.entries=function(){return this.j.entries()};b.prototype.values=function(){return this.j.values()};b.prototype.keys=b.prototype.values;
b.prototype[Symbol.iterator]=b.prototype.values;b.prototype.forEach=function(c,d){var e=this;this.j.forEach(function(f){return c.call(d,f,f,e)})};return b});ma("Object.entries",function(a){return a?a:function(b){var c=[],d;for(d in b)va(b,d)&&c.push([d,b[d]]);return c}});ma("Object.is",function(a){return a?a:function(b,c){return b===c?0!==b||1/b===1/c:b!==b&&c!==c}});
ma("Array.prototype.includes",function(a){return a?a:function(b,c){var d=this;d instanceof String&&(d=String(d));var e=d.length;c=c||0;for(0>c&&(c=Math.max(c+e,0));c<e;c++){var f=d[c];if(f===b||Object.is(f,b))return!0}return!1}});ma("String.prototype.includes",function(a){return a?a:function(b,c){return-1!==wa(this,b,"includes").indexOf(b,c||0)}});
ma("Array.prototype.fill",function(a){return a?a:function(b,c,d){var e=this.length||0;0>c&&(c=Math.max(0,e+c));if(null==d||d>e)d=e;d=Number(d);0>d&&(d=Math.max(0,e+d));for(c=Number(c||0);c<d;c++)this[c]=b;return this}});var za=function(a){return a?a:Array.prototype.fill};ma("Int8Array.prototype.fill",za);ma("Uint8Array.prototype.fill",za);ma("Uint8ClampedArray.prototype.fill",za);ma("Int16Array.prototype.fill",za);ma("Uint16Array.prototype.fill",za);ma("Int32Array.prototype.fill",za);
ma("Uint32Array.prototype.fill",za);ma("Float32Array.prototype.fill",za);ma("Float64Array.prototype.fill",za);_.Aa=_.Aa||{};_.t=this||self;_.Ba=function(){};_.Ca=function(a){a.kf=void 0;a.na=function(){return a.kf?a.kf:a.kf=new a}};_.Da=function(a){var b=typeof a;return"object"==b&&null!=a||"function"==b};_.Ea="closure_uid_"+(1E9*Math.random()>>>0);Fa=function(a,b,c){return a.call.apply(a.bind,arguments)};
Ga=function(a,b,c){if(!a)throw Error();if(2<arguments.length){var d=Array.prototype.slice.call(arguments,2);return function(){var e=Array.prototype.slice.call(arguments);Array.prototype.unshift.apply(e,d);return a.apply(b,e)}}return function(){return a.apply(b,arguments)}};_.v=function(a,b,c){Function.prototype.bind&&-1!=Function.prototype.bind.toString().indexOf("native code")?_.v=Fa:_.v=Ga;return _.v.apply(null,arguments)};
_.w=function(a,b){a=a.split(".");var c=_.t;a[0]in c||"undefined"==typeof c.execScript||c.execScript("var "+a[0]);for(var d;a.length&&(d=a.shift());)a.length||void 0===b?c[d]&&c[d]!==Object.prototype[d]?c=c[d]:c=c[d]={}:c[d]=b};_.x=function(a,b){function c(){}c.prototype=b.prototype;a.T=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.Cl=function(d,e,f){for(var g=Array(arguments.length-2),k=2;k<arguments.length;k++)g[k-2]=arguments[k];return b.prototype[e].apply(d,g)}};Ha=function(a){return a};
_.Ia=function(a){var b=null,c=_.t.trustedTypes;if(!c||!c.createPolicy)return b;try{b=c.createPolicy(a,{createHTML:Ha,createScript:Ha,createScriptURL:Ha})}catch(d){_.t.console&&_.t.console.error(d.message)}return b};
_.x(_.aa,Error);_.aa.prototype.name="CustomError";
_.ba=Array.prototype.indexOf?function(a,b){return Array.prototype.indexOf.call(a,b,void 0)}:function(a,b){if("string"===typeof a)return"string"!==typeof b||1!=b.length?-1:a.indexOf(b,0);for(var c=0;c<a.length;c++)if(c in a&&a[c]===b)return c;return-1};_.Ja=Array.prototype.forEach?function(a,b,c){Array.prototype.forEach.call(a,b,c)}:function(a,b,c){for(var d=a.length,e="string"===typeof a?a.split(""):a,f=0;f<d;f++)f in e&&b.call(c,e[f],f,a)};
_.Ka=Array.prototype.filter?function(a,b,c){return Array.prototype.filter.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=[],f=0,g="string"===typeof a?a.split(""):a,k=0;k<d;k++)if(k in g){var l=g[k];b.call(c,l,k,a)&&(e[f++]=l)}return e};_.La=Array.prototype.map?function(a,b,c){return Array.prototype.map.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=Array(d),f="string"===typeof a?a.split(""):a,g=0;g<d;g++)g in f&&(e[g]=b.call(c,f[g],g,a));return e};
_.Ma=Array.prototype.reduce?function(a,b,c){return Array.prototype.reduce.call(a,b,c)}:function(a,b,c){var d=c;(0,_.Ja)(a,function(e,f){d=b.call(void 0,d,e,f,a)});return d};_.Oa=Array.prototype.some?function(a,b){return Array.prototype.some.call(a,b,void 0)}:function(a,b){for(var c=a.length,d="string"===typeof a?a.split(""):a,e=0;e<c;e++)if(e in d&&b.call(void 0,d[e],e,a))return!0;return!1};
var ea="constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" ");
var Pa;_.Qa=function(){void 0===Pa&&(Pa=_.Ia("ogb-qtm#html"));return Pa};
var Ra;_.Sa=function(a,b){this.j=b===Ra?a:""};_.h=_.Sa.prototype;_.h.Ub=!0;_.h.Fb=function(){return this.j.toString()};_.h.hf=!0;_.h.Bc=function(){return 1};_.h.toString=function(){return this.j+""};_.Va=function(a){return _.Ua(a).toString()};_.Ua=function(a){return a instanceof _.Sa&&a.constructor===_.Sa?a.j:"type_error:TrustedResourceUrl"};Ra={};_.Wa=function(a){var b=_.Qa();a=b?b.createScriptURL(a):a;return new _.Sa(a,Ra)};
_.Xa=String.prototype.trim?function(a){return a.trim()}:function(a){return/^[\s\xa0]*([\s\S]*?)[\s\xa0]*$/.exec(a)[1]};
var ab,bb,cb,Ya;_.Za=function(a,b){this.j=b===Ya?a:""};_.h=_.Za.prototype;_.h.Ub=!0;_.h.Fb=function(){return this.j.toString()};_.h.hf=!0;_.h.Bc=function(){return 1};_.h.toString=function(){return this.j.toString()};_.$a=function(a){return a instanceof _.Za&&a.constructor===_.Za?a.j:"type_error:SafeUrl"};ab=/^(?:audio\/(?:3gpp2|3gpp|aac|L16|midi|mp3|mp4|mpeg|oga|ogg|opus|x-m4a|x-matroska|x-wav|wav|webm)|font\/\w+|image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp|x-icon)|video\/(?:mpeg|mp4|ogg|webm|quicktime|x-matroska))(?:;\w+=(?:\w+|"[\w;,= ]+"))*$/i;
bb=/^data:(.*);base64,[a-z0-9+\/]+=*$/i;cb=/^(?:(?:https?|mailto|ftp):|[^:/?#]*(?:[/?#]|$))/i;_.eb=function(a){if(a instanceof _.Za)return a;a="object"==typeof a&&a.Ub?a.Fb():String(a);if(cb.test(a))a=_.db(a);else{a=String(a);a=a.replace(/(%0A|%0D)/g,"");var b=a.match(bb);a=b&&ab.test(b[1])?_.db(a):null}return a};_.fb=function(a){if(a instanceof _.Za)return a;a="object"==typeof a&&a.Ub?a.Fb():String(a);cb.test(a)||(a="about:invalid#zClosurez");return _.db(a)};Ya={};
_.db=function(a){return new _.Za(a,Ya)};_.gb=_.db("about:invalid#zClosurez");
_.ib=function(a,b){this.j=b===_.hb?a:""};_.ib.prototype.Ub=!0;_.ib.prototype.Fb=function(){return this.j};_.ib.prototype.toString=function(){return this.j.toString()};_.hb={};_.jb=new _.ib("",_.hb);
a:{var lb=_.t.navigator;if(lb){var mb=lb.userAgent;if(mb){_.kb=mb;break a}}_.kb=""}_.z=function(a){return-1!=_.kb.indexOf(a)};
var pb;_.nb=function(){return _.z("Trident")||_.z("MSIE")};_.ob=function(){return _.z("Firefox")||_.z("FxiOS")};_.qb=function(){return _.z("Safari")&&!(pb()||_.z("Coast")||_.z("Opera")||_.z("Edge")||_.z("Edg/")||_.z("OPR")||_.ob()||_.z("Silk")||_.z("Android"))};pb=function(){return(_.z("Chrome")||_.z("CriOS"))&&!_.z("Edge")};_.rb=function(){return _.z("Android")&&!(pb()||_.ob()||_.z("Opera")||_.z("Silk"))};
var sb;_.tb=function(a,b,c){this.j=c===sb?a:"";this.o=b};_.h=_.tb.prototype;_.h.hf=!0;_.h.Bc=function(){return this.o};_.h.Ub=!0;_.h.Fb=function(){return this.j.toString()};_.h.toString=function(){return this.j.toString()};_.ub=function(a){return a instanceof _.tb&&a.constructor===_.tb?a.j:"type_error:SafeHtml"};sb={};_.vb=function(a,b){var c=_.Qa();a=c?c.createHTML(a):a;return new _.tb(a,b,sb)};_.wb=new _.tb(_.t.trustedTypes&&_.t.trustedTypes.emptyHTML||"",0,sb);_.xb=_.vb("<br>",0);
var Bb;_.yb=function(a){var b=!1,c;return function(){b||(c=a(),b=!0);return c}}(function(){var a=document.createElement("div"),b=document.createElement("div");b.appendChild(document.createElement("div"));a.appendChild(b);b=a.firstChild.firstChild;a.innerHTML=_.ub(_.wb);return!b.parentElement});_.Ab=function(a){return _.zb('style[nonce],link[rel="stylesheet"][nonce]',a)};Bb=/^[\w+/_-]+[=]{0,2}$/;
_.zb=function(a,b){b=(b||_.t).document;return b.querySelector?(a=b.querySelector(a))&&(a=a.nonce||a.getAttribute("nonce"))&&Bb.test(a)?a:"":""};
_.Cb="function"===typeof Uint8Array.prototype.slice;
var Db;Db=function(){return _.z("iPhone")&&!_.z("iPod")&&!_.z("iPad")};_.Eb=function(){return Db()||_.z("iPad")||_.z("iPod")};
_.Fb=function(){return-1!=_.kb.toLowerCase().indexOf("webkit")&&!_.z("Edge")};
_.Gb=function(a){_.Gb[" "](a);return a};_.Gb[" "]=_.Ba;
var Ub,Vb,$b;_.Hb=_.z("Opera");_.A=_.nb();_.Ib=_.z("Edge");_.Jb=_.Ib||_.A;_.Kb=_.z("Gecko")&&!_.Fb()&&!(_.z("Trident")||_.z("MSIE"))&&!_.z("Edge");_.Lb=_.Fb();_.Mb=_.z("Macintosh");_.Nb=_.z("Windows");_.Ob=_.z("Linux")||_.z("CrOS");_.Pb=_.z("Android");_.Qb=Db();_.Rb=_.z("iPad");_.Sb=_.z("iPod");_.Tb=_.Eb();Ub=function(){var a=_.t.document;return a?a.documentMode:void 0};
a:{var Wb="",Xb=function(){var a=_.kb;if(_.Kb)return/rv:([^\);]+)(\)|;)/.exec(a);if(_.Ib)return/Edge\/([\d\.]+)/.exec(a);if(_.A)return/\b(?:MSIE|rv)[: ]([^\);]+)(\)|;)/.exec(a);if(_.Lb)return/WebKit\/(\S+)/.exec(a);if(_.Hb)return/(?:Version)[ \/]?(\S+)/.exec(a)}();Xb&&(Wb=Xb?Xb[1]:"");if(_.A){var Yb=Ub();if(null!=Yb&&Yb>parseFloat(Wb)){Vb=String(Yb);break a}}Vb=Wb}_.Zb=Vb;if(_.t.document&&_.A){var ac=Ub();$b=ac?ac:parseInt(_.Zb,10)||void 0}else $b=void 0;_.bc=$b;
_.cc=_.ob();_.dc=Db()||_.z("iPod");_.ec=_.z("iPad");_.fc=_.rb();_.gc=pb();_.hc=_.qb()&&!_.Eb();
var kc;_.jc="function"===typeof Uint8Array;kc={Lj:{value:!0,configurable:!0}};_.lc=function(a){Array.isArray(a)&&!Object.isFrozen(a)&&Object.defineProperties(a,kc);return a};
_.nc=function(a){this.j=a;this.map={};this.o=!0;if(0<this.j.length){for(a=0;a<this.j.length;a++){var b=this.j[a],c=b[0];this.map[c.toString()]=new mc(c,b[1])}this.o=!0}};_.h=_.nc.prototype;_.h.isFrozen=function(){return!1};_.h.Cb=function(){var a;if(!this.o){this.j.length=0;var b=oc(this);b.sort();for(var c=0;c<b.length;c++){var d=this.map[b[c]];(a=d.j)&&a.Cb();this.j.push([d.key,d.value])}this.o=!0}return this.j};_.h.clear=function(){this.map={};this.o=!1};
_.h.entries=function(){var a=[],b=oc(this);b.sort();for(var c=0;c<b.length;c++){var d=this.map[b[c]];a.push([d.key,d.value])}return new pc(a)};_.h.keys=function(){var a=[],b=oc(this);b.sort();for(var c=0;c<b.length;c++)a.push(this.map[b[c]].key);return new pc(a)};_.h.values=function(){var a=[],b=oc(this);b.sort();for(var c=0;c<b.length;c++)a.push(this.map[b[c]].value);return new pc(a)};
_.h.forEach=function(a,b){var c=oc(this);c.sort();for(var d=0;d<c.length;d++){var e=this.map[c[d]];a.call(b,e.value,e.key,this)}};_.h.set=function(a,b){var c=new mc(a);c.value=b;this.map[a.toString()]=c;this.o=!1;return this};_.h.get=function(a){if(a=this.map[a.toString()])return a.value};_.h.has=function(a){return a.toString()in this.map};var oc=function(a){a=a.map;var b=[],c;for(c in a)Object.prototype.hasOwnProperty.call(a,c)&&b.push(c);return b};_.nc.prototype[Symbol.iterator]=function(){return this.entries()};
var mc=function(a,b){this.key=a;this.value=b;this.j=void 0},pc=function(a){this.o=0;this.j=a};pc.prototype.next=function(){return this.o<this.j.length?{done:!1,value:this.j[this.o++]}:{done:!0,value:void 0}};pc.prototype[Symbol.iterator]=function(){return this};
_.B=function(){};
_.D=function(a,b,c,d,e){a.j=null;_.qc&&(b||(b=_.qc),_.qc=null);var f=a.constructor.jc;b||(b=f?[f]:[]);a.B=f?0:-1;a.o=b;a:{f=a.o.length;b=-1;if(f&&(b=f-1,f=a.o[b],!(null===f||"object"!=typeof f||Array.isArray(f)||_.jc&&f instanceof Uint8Array))){a.C=b-a.B;a.A=f;break a}-1<c?(a.C=Math.max(c,b+1-a.B),a.A=null):a.C=Number.MAX_VALUE}a.G={};if(d)for(c=0;c<d.length;c++)b=d[c],b<a.C?(b+=a.B,(f=a.o[b])?_.lc(f):a.o[b]=_.rc):(_.sc(a),(f=a.A[b])?_.lc(f):a.A[b]=_.rc);if(e&&e.length)for(d=0;d<e.length;d++)_.tc(a,
e[d])};_.rc=Object.freeze(_.lc([]));_.sc=function(a){var b=a.C+a.B;a.o[b]||(a.A=a.o[b]={})};_.F=function(a,b){if(b<a.C){b+=a.B;var c=a.o[b];return c!==_.rc?c:a.o[b]=_.lc([])}if(a.A)return c=a.A[b],c!==_.rc?c:a.A[b]=_.lc([])};_.uc=function(a,b){return null!=_.F(a,b)};_.G=function(a,b){a=_.F(a,b);return null==a?a:!!a};_.vc=function(a,b,c){a=_.F(a,b);return null==a?c:a};_.wc=function(a,b,c){return _.vc(a,b,void 0===c?0:c)};_.xc=function(a,b,c){c=void 0===c?!1:c;a=_.G(a,b);return null==a?c:a};
_.yc=function(a,b,c){c=void 0===c?0:c;a=_.F(a,b);a=null==a?a:+a;return null==a?c:a};_.H=function(a,b,c){b<a.C?a.o[b+a.B]=c:(_.sc(a),a.A[b]=c);return a};_.tc=function(a,b){for(var c,d,e=0;e<b.length;e++){var f=b[e],g=_.F(a,f);null!=g&&(c=f,d=g,_.H(a,f,void 0))}return c?(_.H(a,c,d),c):0};_.I=function(a,b,c){a.j||(a.j={});if(!a.j[c]){var d=_.F(a,c);d&&(a.j[c]=new b(d))}return a.j[c]};_.J=function(a,b,c){a.j||(a.j={});var d=c?c.Cb():c;a.j[b]=c;return _.H(a,b,d)};
_.B.prototype.Cb=function(){if(this.j)for(var a in this.j){var b=this.j[a];if(Array.isArray(b))for(var c=0;c<b.length;c++)b[c]&&b[c].Cb();else b&&b.Cb()}return this.o};_.B.prototype.toString=function(){return this.Cb().toString()};
var zc=function(a){_.D(this,a,-1,null,null)};_.r(zc,_.B);
_.Ac=function(a){_.D(this,a,-1,null,null)};_.r(_.Ac,_.B);_.Ac.prototype.hd=function(a){return _.H(this,3,a)};
var Bc=function(a){_.D(this,a,-1,null,null)};_.r(Bc,_.B);
_.Cc=function(a){_.D(this,a,-1,null,null)};_.r(_.Cc,_.B);_.Cc.prototype.Gf=function(a){return _.H(this,24,a)};
_.Dc=function(a){_.D(this,a,-1,null,null)};_.r(_.Dc,_.B);
_.K=function(){this.Tb=this.Tb;this.Va=this.Va};_.K.prototype.Tb=!1;_.K.prototype.isDisposed=function(){return this.Tb};_.K.prototype.oa=function(){this.Tb||(this.Tb=!0,this.P())};_.K.prototype.P=function(){if(this.Va)for(;this.Va.length;)this.Va.shift()()};
var Ec=function(a){_.K.call(this);this.A=a;this.j=[];this.o={}};_.r(Ec,_.K);Ec.prototype.resolve=function(a){var b=this.A;a=a.split(".");for(var c=a.length,d=0;d<c;++d)if(b[a[d]])b=b[a[d]];else return null;return b instanceof Function?b:null};Ec.prototype.Bd=function(){for(var a=this.j.length,b=this.j,c=[],d=0;d<a;++d){var e=b[d].j(),f=this.resolve(e);if(f&&f!=this.o[e])try{b[d].Bd(f)}catch(g){}else c.push(b[d])}this.j=c.concat(b.slice(a))};
var Fc=function(a){_.K.call(this);this.A=a;this.C=this.j=null;this.B=0;this.D={};this.o=!1;a=window.navigator.userAgent;0<=a.indexOf("MSIE")&&0<=a.indexOf("Trident")&&(a=/\b(?:MSIE|rv)[: ]([^\);]+)(\)|;)/.exec(a))&&a[1]&&9>parseFloat(a[1])&&(this.o=!0)};_.r(Fc,_.K);Fc.prototype.F=function(a,b){this.j=b;this.C=a;b.preventDefault?b.preventDefault():b.returnValue=!1};
_.Gc=function(a){_.D(this,a,-1,null,null)};_.r(_.Gc,_.B);
_.Hc=function(a){_.D(this,a,-1,null,null)};_.r(_.Hc,_.B);
_.Ic=function(){this.data={}};_.Ic.prototype.o=function(){window.console&&window.console.log&&window.console.log("Log data: ",this.data)};_.Ic.prototype.j=function(a){var b=[],c;for(c in this.data)b.push(encodeURIComponent(c)+"="+encodeURIComponent(String(this.data[c])));return("atyp=i&zx="+(new Date).getTime()+"&"+b.join("&")).substr(0,a)};
var Jc=function(a,b){this.data={};var c=_.I(a,Bc,8)||new Bc;window.google&&window.google.kEI&&(this.data.ei=window.google.kEI);this.data.sei=_.p(_.F(a,10));this.data.ogf=_.p(_.F(c,3));var d=window.google&&window.google.sn?/.*hp$/.test(window.google.sn)?!1:!0:_.n(_.G(a,7));this.data.ogrp=d?"1":"";this.data.ogv=_.p(_.F(c,6))+"."+_.p(_.F(c,7));this.data.ogd=_.p(_.F(a,21));this.data.ogc=_.p(_.F(a,20));this.data.ogl=_.p(_.F(a,5));b&&(this.data.oggv=b)};_.r(Jc,_.Ic);
_.Kc=function(a,b,c,d,e){Jc.call(this,a,b);_.fa(this.data,{jexpid:_.p(_.F(a,9)),srcpg:"prop="+_.p(_.F(a,6)),jsr:Math.round(1/d),emsg:c.name+":"+c.message});if(e){e._sn&&(e._sn="og."+e._sn);for(var f in e)this.data[encodeURIComponent(f)]=e[f]}};_.r(_.Kc,Jc);
var Lc,Oc,Nc;_.Mc=function(a){var b=window.google&&window.google.logUrl?"":"https://www.google.com";b+="/gen_204?";b+=a.j(2040-b.length);Lc(_.eb(b)||_.gb)};Lc=function(a){var b=new Image,c=Nc;b.onerror=b.onload=b.onabort=function(){c in Oc&&delete Oc[c]};Oc[Nc++]=b;b.src=_.$a(a)};Oc=[];Nc=0;
_.Pc=function(a){_.D(this,a,-1,null,null)};_.r(_.Pc,_.B);
_.Qc=function(){this.j={};this.o={}};_.Sc=function(a,b){var c=_.Qc.na();if(a in c.j){if(c.j[a]!=b)throw new Rc(a);}else{c.j[a]=b;if(b=c.o[a])for(var d=0,e=b.length;d<e;d++)b[d].j(c.j,a);delete c.o[a]}};_.Uc=function(a,b){if(b in a.j)return a.j[b];throw new Tc(b);};_.Ca(_.Qc);var Vc=function(){_.aa.call(this)};_.r(Vc,_.aa);var Rc=function(){_.aa.call(this)};_.r(Rc,Vc);var Tc=function(){_.aa.call(this)};_.r(Tc,Vc);
var Yc=function(){var a=Wc;this.C=Xc;this.o=_.ha(_.yc(a,2,.001),.001);this.D=_.n(_.G(a,1))&&Math.random()<this.o;this.F=_.ha(_.wc(a,3,1),1);this.B=0;this.j=this.A=null;_.xc(a,4,!0)};Yc.prototype.log=function(a,b){if(this.j){var c=new zc;_.H(c,1,a.message);_.H(c,2,a.stack);_.H(c,3,a.lineNumber);_.H(c,5,1);var d=new _.Ac;_.J(d,40,c);this.j.log(98,d)}try{if(this.D&&this.B<this.F){try{var e=(this.A||_.Uc(_.Qc.na(),"lm")).B(a,b)}catch(f){e=new _.Kc(this.C,"quantum:gapiBuildLabel",a,this.o,b)}_.Mc(e);this.B++}}catch(f){}};
var Zc=[1,2,3,4,5,6,9,10,11,13,14,28,29,30,34,35,37,38,39,40,42,43,48,49,50,51,52,53,62,500],bd=function(a,b,c,d,e,f){Jc.call(this,a,b);_.fa(this.data,{oge:d,ogex:_.p(_.F(a,9)),ogp:_.p(_.F(a,6)),ogsr:Math.round(1/($c(d)?_.ha(_.yc(c,3,1)):_.ha(_.yc(c,2,1E-4)))),ogus:e});if(f){"ogw"in f&&(this.data.ogw=f.ogw,delete f.ogw);"ved"in f&&(this.data.ved=f.ved,delete f.ved);a=[];for(var g in f)0!=a.length&&a.push(","),a.push(ad(g)),a.push("."),a.push(ad(f[g]));f=a.join("");""!=f&&(this.data.ogad=f)}};
_.r(bd,Jc);var ad=function(a){a=String(a);return a.replace(".","%2E").replace(",","%2C")},$c=function(a){if(!cd){cd={};for(var b=0;b<Zc.length;b++)cd[Zc[b]]=!0}return!!cd[a]},cd=null;
var dd=function(a){_.D(this,a,-1,null,null)};_.r(dd,_.B);
var hd=function(){var a=ed,b=fd,c=gd;this.o=a;this.j=b;this.B=_.ha(_.yc(a,2,1E-4),1E-4);this.D=_.ha(_.yc(a,3,1),1);b=Math.random();this.A=_.n(_.G(a,1))&&b<this.B;this.C=_.n(_.G(a,1))&&b<this.D;a=0;_.n(_.G(c,1))&&(a|=1);_.n(_.G(c,2))&&(a|=2);_.n(_.G(c,3))&&(a|=4);this.F=a};hd.prototype.log=function(a,b){try{if($c(a)?this.C:this.A){var c=new bd(this.j,"quantum:gapiBuildLabel",this.o,a,this.F,b);_.Mc(c)}}catch(d){}};
_.id=function(a){this.j=a;this.o=void 0;this.A=[]};_.id.prototype.then=function(a,b,c){this.A.push(new jd(a,b,c));_.kd(this)};_.id.prototype.resolve=function(a){if(void 0!==this.j||void 0!==this.o)throw Error("p");this.j=a;_.kd(this)};_.kd=function(a){if(0<a.A.length){var b=void 0!==a.j,c=void 0!==a.o;if(b||c){b=b?a.B:a.C;c=a.A;a.A=[];try{_.Ja(c,b,a)}catch(d){console.error(d)}}}};_.id.prototype.B=function(a){a.o&&a.o.call(a.j,this.j)};_.id.prototype.C=function(a){a.A&&a.A.call(a.j,this.o)};
var jd=function(a,b,c){this.o=a;this.A=b;this.j=c};
_.L=function(){this.B=new _.id;this.j=new _.id;this.G=new _.id;this.D=new _.id;this.F=new _.id;this.J=new _.id;this.C=new _.id;this.A=new _.id;this.o=new _.id;this.K=new _.id};_.h=_.L.prototype;_.h.Ei=function(){return this.B};_.h.Mi=function(){return this.j};_.h.Ti=function(){return this.G};_.h.Li=function(){return this.D};_.h.Ri=function(){return this.F};_.h.Ii=function(){return this.J};_.h.Ji=function(){return this.C};_.h.yi=function(){return this.A};_.h.xi=function(){return this.o};_.Ca(_.L);
var ld=function(a){_.D(this,a,-1,null,null)};_.r(ld,_.B);_.nd=function(){return _.I(_.md,_.Cc,1)};_.od=function(){return _.I(_.md,_.Dc,5)};
var pd;window.gbar_&&window.gbar_.CONFIG?pd=window.gbar_.CONFIG[0]||{}:pd=[];_.md=new ld(pd);
var Wc,Xc,fd,gd,ed;Wc=_.I(_.md,_.Pc,3)||new _.Pc;Xc=_.nd()||new _.Cc;_.qd=new Yc;fd=_.nd()||new _.Cc;gd=_.od()||new _.Dc;ed=_.I(_.md,dd,4)||new dd;_.rd=new hd;
_.w("gbar_._DumpException",function(a){_.qd?_.qd.log(a):console.error(a)});
_.sd=new Fc(_.qd);
_.rd.log(8,{m:"BackCompat"==document.compatMode?"q":"s"});_.w("gbar.A",_.id);_.id.prototype.aa=_.id.prototype.then;_.w("gbar.B",_.L);_.L.prototype.ba=_.L.prototype.Mi;_.L.prototype.bb=_.L.prototype.Ti;_.L.prototype.bd=_.L.prototype.Ri;_.L.prototype.bf=_.L.prototype.Ei;_.L.prototype.bg=_.L.prototype.Li;_.L.prototype.bh=_.L.prototype.Ii;_.L.prototype.bi=_.L.prototype.Ji;_.L.prototype.bj=_.L.prototype.yi;_.L.prototype.bk=_.L.prototype.xi;_.w("gbar.a",_.L.na());var td=new Ec(window);_.Sc("api",td);
var ud=_.od()||new _.Dc,vd=_.p(_.F(ud,8));window.__PVT=vd;_.Sc("eq",_.sd);
}catch(e){_._DumpException(e)}
try{
var wd=function(a){_.D(this,a,-1,null,null)};_.r(wd,_.B);
var xd=function(){_.K.call(this);this.o=[];this.j=[]};_.r(xd,_.K);xd.prototype.A=function(a,b){this.o.push({features:a,options:b})};xd.prototype.init=function(a,b,c){window.gapi={};var d=window.___jsl={};d.h=_.p(_.F(a,1));_.uc(a,12)&&(d.dpo=_.n(_.G(a,12)));d.ms=_.p(_.F(a,2));d.m=_.p(_.F(a,3));d.l=[];_.F(b,1)&&(a=_.F(b,3))&&this.j.push(a);_.F(c,1)&&(c=_.F(c,2))&&this.j.push(c);_.w("gapi.load",(0,_.v)(this.A,this));return this};
var yd=_.I(_.md,_.Gc,14)||new _.Gc,zd=_.I(_.md,_.Hc,9)||new _.Hc,Ad=new wd,Bd=new xd;Bd.init(yd,zd,Ad);_.Sc("gs",Bd);
}catch(e){_._DumpException(e)}
})(this.gbar_);
// Google Inc.
</script><script nonce="">window._DRIVE_IL.ticker.tick('ogbp_e');</script><script nonce="">window._DRIVE_IL.ticker.tick('gapi_s');</script><script src="./PythonforBeginners_files/api.js.download" nonce="" gapi_processed="true"></script><script nonce="">window._DRIVE_IL.ticker.tick('gapi_e');</script><style nonce="">/* cyrillic-ext */
@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1Mu51xFIzIFKw.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1Mu51xMIzIFKw.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1Mu51xEIzIFKw.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1Mu51xLIzIFKw.woff2) format('woff2');
unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1Mu51xHIzIFKw.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1Mu51xGIzIFKw.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1Mu51xIIzI.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmSU5fABc4EsA.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmSU5fCBc4EsA.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmSU5fBxc4EsA.woff2) format('woff2');
unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmSU5fCxc4EsA.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmSU5fChc4EsA.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmSU5fBBc4.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu72xKOzY.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu5mxKOzY.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7mxKOzY.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4WxKOzY.woff2) format('woff2');
unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7WxKOzY.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7GxKOzY.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxK.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fCRc4EsA.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fABc4EsA.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fCBc4EsA.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBxc4EsA.woff2) format('woff2');
unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fCxc4EsA.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fChc4EsA.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc4.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2) format('woff2');
unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc4.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic */
@font-face {
font-family: 'Google Sans';
font-style: normal;
font-weight: 400;
src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Kwp5MKg.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
font-family: 'Google Sans';
font-style: normal;
font-weight: 400;
src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Nwp5MKg.woff2) format('woff2');
unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
font-family: 'Google Sans';
font-style: normal;
font-weight: 400;
src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Bwp5MKg.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Google Sans';
font-style: normal;
font-weight: 400;
src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Awp5MKg.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Google Sans';
font-style: normal;
font-weight: 400;
src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owp4.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic */
@font-face {
font-family: 'Google Sans';
font-style: normal;
font-weight: 500;
src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94Yt3CwZ-Pw.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
font-family: 'Google Sans';
font-style: normal;
font-weight: 500;
src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtwCwZ-Pw.woff2) format('woff2');
unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
font-family: 'Google Sans';
font-style: normal;
font-weight: 500;
src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94Yt8CwZ-Pw.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Google Sans';
font-style: normal;
font-weight: 500;
src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94Yt9CwZ-Pw.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Google Sans';
font-style: normal;
font-weight: 500;
src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwY.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
</style><link rel="manifest" crossorigin="use-credentials" href="https://drive.google.com/_/AppsNotifyUi/manifest.json"><script nonce="">
var _DRIVE_global = _DRIVE_global || {};
_DRIVE_global.earlyClicks = [];
_DRIVE_global.earlyClickListener = function(event) {
_DRIVE_global.earlyClicks.push(event);
};
window.addEventListener('click', _DRIVE_global.earlyClickListener);
</script><script async="" src="./PythonforBeginners_files/lazy.min.js.download" nonce=""></script><script async="" type="text/javascript" charset="UTF-8" src="./PythonforBeginners_files/rs=AA2YrTsUUSONS92GNS7z5POxtVRsKo8CAg" nonce=""></script><link type="text/css" rel="stylesheet" href="./PythonforBeginners_files/rs=AA2YrTtUhKBCBEglVX3nQGfz7aejyjKuYQ" nonce=""><script type="text/javascript" charset="UTF-8" src="./PythonforBeginners_files/oc2h_hOIvK_WKmqChi-lFEUrrSZi7Ypg3sefSTbCfFs.js.download" nonce=""></script><style type="text/css">.gssb_c{border:0;position:absolute;z-index:989}.gssb_e{border:1px solid #ccc;border-top-color:#d9d9d9;box-shadow:0 2px 4px rgba(0,0,0,0.2);-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.2);cursor:default}.gssb_f{visibility:hidden;white-space:nowrap}.gssb_k{border:0;display:block;position:absolute;top:0;z-index:988}.gsdd_a{border:none!important}.gsib_a{width:100%;vertical-align:top;padding:4px 5px 0}.gssb_a{padding:0 7px}.gssb_a,.gssb_a td{white-space:nowrap;overflow:hidden;line-height:22px}#gssb_b{font-size:11px;color:#36c;text-decoration:none}#gssb_b:hover{font-size:11px;color:#36c;text-decoration:underline}.gssb_g{text-align:center;padding:8px 0 7px;position:relative}.gssb_h{font-size:15px;height:28px;margin:0.2em;-webkit-appearance:button}.gssb_i{background:#d5e2ff}.gss_ifl{visibility:hidden;padding-left:5px}.gssb_i .gss_ifl{visibility:visible}a.gssb_j{font-size:13px;color:#36c;text-decoration:none;line-height:100%}a.gssb_j:hover{text-decoration:underline}.gssb_l{height:1px;background-color:#e5e5e5}.gssb_m{color:#000;background:#fff}#answer-thumbs-up-id.thumb_unchecked, #answer-thumbs-down-id.thumb_unchecked{fill:#222222;opacity:0.1}#answer-thumbs-up-id.thumb_unchecked:hover, #answer-thumbs-down-id.thumb_unchecked:hover{fill:#222222;opacity:0.4}#answer-thumbs-up-id.thumb_checked, #answer-thumbs-down-id.thumb_checked{fill:#222222;opacity:1.0}#answer-thumbs-up-id.thumb_checked:hover, #answer-thumbs-down-id.thumb_checked:hover{fill:#222222;opacity:0.7}.gsar_a{padding:0}.gsar_b{overflow:hidden;text-overflow:ellipsis;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;margin-left:6px;}.gsas_a{color:#80868B;font-size:12px;margin-left:6px;white-space:nowrap}.gsas_b{color:#36c;font-size:11px;margin-left:10px;white-space:nowrap}.gsas_c{padding:0}.gsas-d{float:left;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-left:2px;line-height:22px}.gsas_e{text-align:right;white-space:normal;height:22px;line-height:22px}.gsan_a{color:#777;overflow:hidden;text-overflow:ellipsis}.gstq_a{height: 18px;line-height: normal;overflow:hidden;text-overflow:ellipsis;max-width:700px;margin-left:6px}.gstq_b{margin-top: 10px}.gstq_c{color: #5f6368;font-size: 12px;margin-bottom: 5px}.gstq_d{margin-bottom: 7px;margin-top: 9px}.gstq_e{height: 0}.gsas_c{padding:0}.gsas-d{float:left;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.gsfe_a{border:1px solid #b9b9b9;border-top-color:#a0a0a0;box-shadow:inset 0px 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0px 1px 2px rgba(0,0,0,0.1);-webkit-box-shadow:inset 0px 1px 2px rgba(0,0,0,0.1);}.gsfe_b{border:1px solid #4d90fe;outline:none;box-shadow:inset 0px 1px 2px rgba(0,0,0,0.3);-moz-box-shadow:inset 0px 1px 2px rgba(0,0,0,0.3);-webkit-box-shadow:inset 0px 1px 2px rgba(0,0,0,0.3);}.gsaq_a{padding:0}.gsaq_b{display:none;cursor:pointer;width:38px;height:14px;opacity:.4;background-image:url(//ssl.gstatic.com/ui/v1/icons/common/x_8px.png);background-position:center;background-repeat:no-repeat}.gssb_i .gsaq_b{display:block}.gsfs{font-size:14px}#gbqfqwb{padding:0}.gsib_a{padding: 0;height: inherit;vertical-align: middle}#gbqfaa, #gbqfab{z-index:7}.gstt{width:100%}.gssb_c{z-index:995}.gssb_i>.gssb_a{border-left:2px solid #4d90fe;padding-left:5px}.gssb_e{background-color:#fff;border:solid #ccc;border-width:1px 0 0 0;border-top-color:#d9d9d9;border-radius:0 0 8px 8px;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none}.gssb_i{background:#eee}.gssb_l{margin:7px 0}.gssb_m{margin-bottom:7px}.gscs_a{border:0;left:0;position:absolute;top:0;width:100%}.gsbv_a{position:fixed;z-index:997}.gsbv_b{border-right:1px solid #ccc;overflow:hidden}.gsbv_c{height:26px;position:relative;width:13px}.gsbv_d{border:13px solid transparent;border-right-color:#ccc;width:0;position:absolute;margin-top:8px;height:0}.gsbv_e{border: 13px outset transparent;border-right: 13px solid #fff;height:0;width:0;position:absolute;margin-top:8px;left:1px}.gsbv_g{text-decoration:none!important;font-size:11px;font-weight:bold;text-align:center;white-space:nowrap;margin-right:16px;height:27px;line-height:27px;min-width:54px;outline:0px;padding:8px;-webkit-border-radius:2px;-moz-border-radius: 2px;border-radius: 2px}.gsbv_h{background-color:#fff;border:1px solid #ccc;box-shadow:0 2px 4px rgba(0,0,0,0.2);-moz-box-shadow:0 2px 4px rgba(0,0,0,0.2);-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.2);position: absolute;left:25px}.gsbv_i{margin:16px}.gsbv_j{color:#666;line-height:18px;margin:16px;white-space:normal;width:260px;font-size:13px;line-height:18px}a.gsbv_k,a.gsbv_k:visited{color:#fff;background-color:#4d90fe;border:1px solid #3079ed}.gsbv_k{background:linear-gradient(top,#4d90fe,#4787ed);background:-webkit-linear-gradient(top,#4d90fe,#4787ed);}.gsbv_k:hover{background-color:#357ae8;border:1px solid #2f5bb7}.gsbv_k:hover{background:linear-gradient(top,#4d90fe,#357ae8);background:-webkit-linear-gradient(top,#4d90fe,#357ae8);}a.gsbv_l,a.gsbv_l:visited{color:#444;background-color:#f5f5f5;border:1px solid #dcdcdc}.gsbv_l{background:linear-gradient(top,#f5f5f5,#f1f1f1);background:-webkit-linear-gradient(top,#f5f5f5,#f1f1f1);}.gsbv_l:hover{color:#333;background-color:#f8f8f8;border:1px solid #c6c6c6}.gsbv_l:hover{background:linear-gradient(top,#f8f8f8,#f1f1f1);background:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);}.gsom_a{background-color:#f9edbe;font-size:13px;line-height:32px;text-align:center;font-weight:bold;border-bottom:1px solid #e5e5e5;margin:0 -7px}</style><meta http-equiv="origin-trial" content="A70X6iKIlnS3U/OFBWYlZCJ6rRlXum75MZ6pvi68FKsnyeL+XPCA7KWBMeW75d2+xNHMEeFOWjfqMS+34jdvrw4AAAB/eyJvcmlnaW4iOiJodHRwczovL2dvb2dsZS5jb206NDQzIiwiZmVhdHVyZSI6IkZldGNoVXBsb2FkU3RyZWFtaW5nIiwiZXhwaXJ5IjoxNjI2MjIwNzk5LCJpc1N1YmRvbWFpbiI6dHJ1ZSwiaXNUaGlyZFBhcnR5Ijp0cnVlfQ=="></head><body class="a-s-Xc-ag-fa-Te" jsaction="UjQMac:.CLIENT"><input type="text" id="drive_hist_state" name="drive_hist_state" style="display:none;"><iframe id="drive_hist_frame" name="drive_hist_frame" style="display:none;" tabindex="-1" title="No user content" src="./PythonforBeginners_files/saved_resource.html"></iframe><div id="docs-aria-speakable" class="a-pk" aria-live="assertive" role="region" aria-atomic="true"></div><noscript><section jsaction="rcuQ6b: trigger.EGZ8Jb" jscontroller="ThIs3" jsshadow class="XzbSje m586Kb JGNgFd VLrnY eO2Zfd " aria-labelledby="_ypbgzc_i1 _Eq2Xzc_i2" data-hidden="false" aria-hidden="false"><div class="vbK9Ff" role="alert" aria-live="assertive"><div jsname="OL1HKc" class="Dsuz9e m586Kb JGNgFd VLrnY eO2Zfd"><div class="br9Wvc m586Kb JGNgFd VLrnY eO2Zfd"><div class="le1PVb m586Kb JGNgFd VLrnY eO2Zfd"><span id="_Eq2Xzc_i2">JavaScript must be enabled to use Google Drive</span><span jsaction="click:rLtRf;"><a class="R7nqif m586Kb JGNgFd VLrnY eO2Zfd" href="https://support.google.com/drive/answer/2375082" aria-label="Learn more" jsname="viORvd" target="_blank">Learn more</a></span></div></div></div></div></section></noscript><script nonce="">var AF_initDataKeys = ["ds:0","ds:1","ds:2","ds:3","ds:4","ds:5","ds:6"]
; var AF_dataServiceRequests = {'ds:0' : {id:'Rtk8Cd',request:["0ABXfFo4zmJHPUk9PVA"]
},'ds:1' : {id:'jhkq9e',request:[]
},'ds:2' : {id:'DXNbTd',request:[1,"0ABXfFo4zmJHPUk9PVA"]
},'ds:3' : {id:'Airzle',request:[]
},'ds:4' : {id:'XVZmSc',request:[["0ABXfFo4zmJHPUk9PVA"]
,[4,1,true]
,1]
},'ds:5' : {id:'TBMnvf',request:[]
},'ds:6' : {id:'PDArdc',request:[true,"0ABXfFo4zmJHPUk9PVA"]
}}; var AF_initDataChunkQueue = []; var AF_initDataCallback; var AF_initDataInitializeCallback; if (AF_initDataInitializeCallback) {AF_initDataInitializeCallback(AF_initDataKeys, AF_initDataChunkQueue, AF_dataServiceRequests);}if (!AF_initDataCallback) {AF_initDataCallback = function(chunk) {AF_initDataChunkQueue.push(chunk);};}</script><script nonce="">__initData = [[null,[null,0,null,0,null,null,null,0]
,null,null,[null,null,null,null,"https://clients5.google.com",1,null,null,[["application/vnd.google-apps.document",[["https://docs.google.com/document/d/{docid}/export?format\u003ddocx\u0026authuser\u003d0","application/vnd.openxmlformats-officedocument.wordprocessingml.document"]
]
]
,["application/vnd.google-apps.spreadsheet",[["https://docs.google.com/spreadsheets/d/{docid}/export?format\u003dxlsx\u0026authuser\u003d0","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"]
]
]
,["application/vnd.google-apps.presentation",[["https://docs.google.com/presentation/d/{docid}/export/pptx?authuser\u003d0","application/vnd.openxmlformats-officedocument.presentationml.presentation"]
]
]
,["application/vnd.google-apps.drawing",[["https://docs.google.com/drawings/d/{docid}/export/jpeg?authuser\u003d0","image/jpeg"]
]
]
,["application/vnd.google-apps.script",[["https://script.google.com/feeds/download/export?id\u003d{docid}\u0026format\u003djson\u0026authuser\u003d0","application/vnd.google-apps.script+json"]
]
]
,["application/vnd.google-apps.jam",[["https://jamboard.google.com/export?id\u003d{docid}\u0026authuser\u003d0","application/pdf"]
]
]
]
,null,null,[[[1,"976299918393","https://drive-customization.virtru.com/current.html",null,20000,200,10000]
,[1,"329241629064","https://drive-customization.staging.virtru.com/current.html",null,20000,200,10000]
,[1,"326078592805","https://drive-customization-develop01.develop.virtru.com/current.html",null,20000,200,10000]
,[1,"876539743980","https://local.virtru.com/current.html",null,20000,200,10000]
,[1,"1029441436596","https://endpoint.egresslab.com/install.html",null,20000]
,[1,"660542197445","https://drive-dev1.ironcorelabs.com/integration-frame/index.html"]
,[1,"600390644763","https://drive-staging.ironcorelabs.com/integration-frame/index.html"]
]
]
,1,[[1,"897606708560"]
,[2,"196802322321"]
,[9,"335078253515"]
,[3,"619683526622"]
,[4,"796396377186"]
,[5,"889782162350"]
,[6,"1083656409722"]
,[7,"952342923413"]
,[8,"132126269022"]
]
,1,"https://workspace.google.com"]
,[null,"https://www.google.com/chrome/","CHROME",[null,1,1]
,null,null,null,"https://support.google.com/drive/?p\u003dunsupported_browser"]
,[null,null,"https://drive.google.com/video/captions/edit"]
,[null,null,"https://drive.google.com/drive?authuser\u003d0","AC4w5VjFaYZaQO0i8PGsP2bs4iOgCbIF4g:1624989530512","03616734079491415762"]
,[null,"prod",["svw","csw_off","moondss_off","suppress_aso_off","celloPeopleApi","trash_off","ssr","wizBackups_off","wizComputers_off","wizQuota","wizRecent","wizSearch_off","wizSharedDrives_off","wizStarred","wizSwm_off","idomVList_off"]
,"drive_main","drive.web-frontend_20210616.01_p2"]
,[null,[null,1,2,"https://krahsc.google.com/callback",null,[1,[null,null,null,"https://krahsc.google.com/init"]
]
,1]
,1,[1,1,1,1,0,0,0,0,0,0,1,null,0,0,0,0]
,null,null,"/_/drive_fe/_/js/k\u003ddrive_fe.dataservice_worker.en.IPDcZNfCQxw.O/d\u003d1/rs\u003dAFB8gszZNAfdD3zbdNAq2myUdlOfBm08gQ/m\u003dcore",1,null,null,1,["0ABXfFo4zmJHPUk9PVA",[]
,"My Drive","application/vnd.google-apps.folder",0,null,0,0,0,1558774993659,1558774993659,null,null,null,[[1,"03616734079491415762",null,null,null,null,1,null,null,null,"103516597272945689199"]
]
,null,[1,"03616734079491415762",null,null,null,null,1,null,null,null,"103516597272945689199"]
,null,null,null,null,0,null,null,1,0,null,0,null,0,1,null,null,0,1,0,[]
,[]
,null,null,null,null,null,0,null,null,null,null,null,[]
,null,null,null,null,[]
,[]
,null,[]
,null,[[1]
]
,null,null,null,null,null,null,null,null,null,1558774993245,1,null,null,null,2,null,null,null,null,null,null,null,[]
,[1,null,0,1,1,1,1,1,1,null,null,1,null,null,null,null,null,null,null,1,1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,1,0,0,1,1,null,1,null,null,null,null,null,null,null,0]
,null,null,null,null,[]
,0,null,null,null,0,null,null,null,null,null,null,null,null,null,[]
,[]
,[]
,[]
,1,null,null,null,null,null,null,null,null,[]
,null,null,[]
,[]
,null,[]
,null,[[0]
]
,null,[]
,[]
,null,null,null,null,null,null,[]
]
,null,null,null,"https://drive.google.com",1,null,null,null,null,null,null,1,null,null,[]
,[]
,null,null,null,null,[1,10000,null,null,null,60000,600000,0,2,10,100,10,"",0,3600000,null,1,1,1,null,1000,"https://appsitemsuggest-pa.clients6.google.com",0,null,"AIzaSyAWGrfCCr7albM3lmCc937gx4uIphbpeKQ",null,null,null,null,[2,4,6,10]
,[1,3]
,201326592,1048576,null,10,"AIzaSyBc1bLOZpOtg3-qgMjSQ6pmn6HbE2zjzJg","AIzaSyAy9VVXHSpS2IJpptzYtGbLP3-3_l0aBk4",null,null,null,null,0,"https://drivemetadata.clients6.google.com",null,null,null,null,null,null,"spellResponse,suggestedNlpQueries",5,0,"https://takeout-pa.clients6.google.com",null,"https://people-pa.clients6.google.com/","https://appsbackup-pa.clients6.google.com/v1","https://clients6.google.com",null,null,null,null,"https://driveactivity.clients6.google.com"]
,[null,null,null,null,20000,20000000,259200000,null,1,17,[["87996d92eac58028","AAVFbsFkg2aYx2Zj0a2ldUr5OENWvI5S7HfQSYU2sHKcbpO/eZ4JsKwZrOViq+TyeiescSwm5JAe"]
,["6ff3edbd44af003f","AK2fzyDuu+zAmSQTGD3drA2t2Wjp8/FRD85UTS64RDjPFaFuT4ign8BHJ1ewQ9eqhhuglWofXs+U"]
]
,5000]
,null,[0,"103516597272945689199","[email protected]","en",0,"03616734079491415762"]
,null,null,1,0,null,null,null,[]
,1,1,5,1000,null,null,null,0,null,null,null,null,null,[0,null,0,0,0,[]
]
,1,null,null,"drive.web-frontend_20210616.01_p2",null,null,"https://lh3.google.com",null,1,null,1,null,null,null,null,null,null,null,0,null,null,null,null,null,1,1,null,1,null,null,1,1,[]
,null,0]
,[null,null,0,null,0,null,"mipmoemfdkcjnciiahakfhgleehhhmlf","OPTIMIZED",0,1]
,[null,null,null,null,null,0]
,["drive.web-frontend_20210616.01_p2",1]
,[null,null,null,null,""]
,[[]
]
,["ADFN-ct5bkRwmCDgn2b7GAqGJQ_xNqrEMipIlBdTFs1uO435ExB1IZAMJLzIhc2Pc8ce7FT29fIl",1,"COLH6921vfECFbgBnQodQfoGQg",1624989530514000,[5701393,13700109,13700167,13700185,13700270,13700538,13700563,13700593,13700951,13701014,13701127,13701207,13701418,13701430,13701458,13701569,13701573,13701653,13701747,13701829,13701873,13702028,13702072,13702164,13702196,13702204,13702292,13702312,13702316,13702372,13702380,13702388,13702408,13702416,13702463,13702482,13702490,13702498,13702623,13702630,13702642,13702686,13702746,13702754,13702762,13702774,13702782,13702808,13702818,13702826,13702834,13702842,13702846,13702850,13702870,13702882,13702926,13702954,13702990,13703002,13703010,13703046,13703062,13703077,13703082,13703102,13703111,13703134,13703150,13703210,13703222,13703234,13703247,44525342]
]
,["https://myaccount.google.com/language?authuser\u003d0"]
,null,[1,"uc2903f910d51a12b",null,"docs.google.com",null,null,0,"AC4w5VjFaYZaQO0i8PGsP2bs4iOgCbIF4g:1624989530512",null,1,null,null,null,2,"ghbmnnjooekpmoecnnnilnnbdlolhkhi",null,9]
,[null,null,null,null,null,null,null,0,0]
,["https://drive.google.com/drive/preload"]
,[null,null,null,null,null,[[15]
]
,null,null,null,null,null,null,null,[null,null,null,"https://dl.google.com/drive/InstallBackupAndSync.dmg"]
,[null,null,null,"https://dl.google.com/tag/s/appguid%3D%7B3C122445-AECE-4309-90B7-85A6AEF42AC0%7D%26iid%3D%7B9648D435-67BA-D2A7-54D2-1E0B5656BF03%7D%26ap%3Duploader%26appname%3DBackup%2520and%2520Sync%26needsadmin%3Dtrue/drive/installbackupandsync.exe"]
,[null,null,null,"https://dl.google.com/drive-file-stream/GoogleDriveFileStream.dmg"]
,[null,null,null,"https://dl.google.com/drive-file-stream/GoogleDriveFSSetup.exe"]
,1]
,["https://drive.google.com/settings/storage?authuser\u003d0"]
,[1]
,[null,1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0]
,null,[[]
,0]
,[null,"//g.co/BackupAndSyncDrive",null,null,"lmjegmlicamnimmfhcmpkclmigmmcbeh",null,null,3000,"[email protected]",null,null,null,null,2]
,[0,1,1,0,1,0,0,0,1,1,0,null,1,0,0,null,0,null,null,null,1,0,1,null,null,null,null,null,null,null,null,null,null,null,null,1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,0,0,0,null,null,0,1,null,null,null,null,null,null,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,0,0,null,null,null,null,null,null,1,null,null,null,null,0,null,null,0,null,0]
,["/upload/resumableuploadsc?authuser\u003d0",0]
,["/drive",null,null,["rfd","ogss","actionButton","invite","token","coldstart","pli","ltmpl","sh","ca","ogsrc","tab","ts","usp","usp_param","urp","utm_source","utm_campaign","utm_medium","utm_content","utm_term"]
,"https://accounts.google.com/ServiceLogin?service\u003dwise\u0026continue\u003dhttps://drive.google.com/drive/?usp%3Dchrome_app\u0026followup\u003dhttps://drive.google.com/drive/?usp%3Dchrome_app\u0026hl\u003den","/drive"]
,[null,"0","en","[email protected]","03616734079491415762",0,0,"https://accounts.google.com/SignUpWithoutGmail?service\u003dwise\u0026continue\u003dhttps://drive.google.com/drive/?usp%3Dfolder_signup%26utm_source%3Ddrive_folder\u0026hl\u003den",0,3,"",null,0,"ND",1,"103516597272945689199",0,1,0,0,0,0]
,["application/illustrator,text/x-c-code,text/x-csrc,text/x-c++-cod,text/x-c++src,text/x-c-header,text/x-chdr,text/x-c++hdr,application/vnd.coffeescript,text/x-coffeescript,text/coffeescript,text/x-csharp,text/x-csh,application/x-csh,text/css,text/csv,text/x-csv,text/comma-separated-values,text/x-comma-separated-values,application/csv,application/x-csv,application/vnd.dart,application/dart,application/msword,text/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document,application/vnd.openxmlformats-officedocument.wordprocessingml.template,application/vnd.openxmlformats-officedocument.application/vnd.ms-word.document.macroenabled,application/vnd.openxmlformats-officedocument.application/vnd.ms-word.template.macroenabled,application/vnd.ms-word.document.macroenabled.12,application/vnd.ms-word.document.macroEnabled.12,application/vnd.ms-word.template.macroenabled.12,application/vnd.ms-word.template.macroEnabled.12,text/vnd.openxmlformats-officedocument.wordprocessingml.document,application/dxf,application/x-eps,application/eps,image/eps,image/x-eps,application/octet-stream+fon,text/x-go,text/x-haskell,text/x-literate-haskell,text/html,application/x-hwp,application/haansofthwp,application/hwp,application/x-ini,application/ini,text/x-ini,text/ini,application/ms-java,text/java,text/x-java,text/x-java-source,text/javascript,application/x-javascript,text/ecmascript,application/javascript,application/ecmascript,application/json,text/json,application/vnd.google-apps.kix,application/vnd.google-apps.document,application/x-lisp,text/x-lisp,text/x-emacs-lisp,text/markdown,text/x-markdown,text/x-web-markdown,text/x-objcsrc,text/x-ocaml,application/vnd.oasis.opendocument.presentation,application/x-vnd.oasis.opendocument.presentation,application/vnd.oasis.opendocument.spreadsheet,application/x-vnd.oasis.opendocument.spreadsheet,application/vnd.oasis.opendocument.text,application/x-vnd.oasis.opendocument.text,font/opentype,application/x-font-otf,application/vnd.ms-opentype,application/x-iwork-pages-sffpages,application/x-patch,text/x-diff,text/x-patch,application/pdf,application/x-pdf,text/pdf,text/x-pdf,application/x-pdf-compressed,text/x-perl,application/x-perl,text/x-perl-script,application/x-php,application/x-httpd-php,application/vnd.openxmlformats-officedocument.presentationml.slideshow,application/vnd.ms-powerpoint,text/vnd.ms-powerpoint,application/vnd.ms-powerpoint.presentation.macroEnabled.12,application/vnd.ms-powerpoint.presentation.macroenabled.12,application/vnd.ms-powerpoint.slideshow.macroEnabled.12,application/vnd.ms-powerpoint.slideshow.macroenabled.12,application/vnd.openxmlformats-officedocument.presentationml.presentation,text/vnd.openxmlformats-officedocument.presentationml.presentation,application/postscript,application/ps,application/x-postscript,application/x-postscript-not-eps,application/x-ps,text/postscript,image/photoshop,image/vnd.adobe.photoshop,image/x-photoshop,image/psd,application/photoshop,application/psd,application/x-photoshop,text/x-python,text/x-python-script,application/x-python,application/rtf,text/rtf,text/richtext,text/x-ruby-script,application/x-ruby,text/x-ruby,text/x-rust,text/x-scala,application/vnd.stardivision.calc,application/vnd.stardivision.impress,application/vnd.stardivision.writer,application/x-sh,application/x-shellscript,text/x-sh,application/sql,text/x-sql,application/x-sql,text/sql,image/svg+xml,application/vnd.sun.xml.calc,application/vnd.sun.xml.impress,application/vnd.sun.xml.writer,text/plain,image/tiff,text/tsv,text/tab-separated-values,application/x-font-ttf,text/vnd.wap.wml,application/wordperfect,application/vnd.wordperfect,application/vnd.ms-excel,text/vnd.ms-excel,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,text/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.openxmlformats-officedocument.spreadsheetml.template,application/vnd.ms-excel.sheet.macroenabled.12,application/vnd.ms-excel.sheet.macroEnabled.12,application/vnd.ms-excel.template.macroenabled.12,application/vnd.ms-excel.template.macroEnabled.12,text/xml,application/xml,application/vnd.ms-xpsdocument,application/x-yaml,application/yaml,text/x-yaml,text/yaml,application/x-ace-compressed,application/x-ace,application/bzip2,application/x-bzip,application/x-bzip2,application/vnd.ms-cab-compressed,application/x-cab-compressed,application/x-cab,application/x-cfs-compressed,application/x-cpio,application/gzip,application/gzip-compressed,application/gzipped,application/x-gzip,application/x-gzip-compressed,application/x-gunzip,application/x-compressed,gzip/document,multipart/x-gzip,application/x-lzh-compressed,application/x-lha-compressed,application/x-lha,application/x-lzh,application/lzh,application/x-lzop,application/x-lzx,application/rar,application/x-rar,application/x-rar-compressed,multipart/x-rar,application/tar,application/x-gtar,application/x-gtar-compressed,application/x-tar,multipart/x-tar,application/x-bzip-compressed-tar,application/x-tgz,application/x-compressed-tar,application/x-compress,application/7z,application/x-7z,application/x-7z-compressed,application/x-7zip-compressed,application/zip,application/x-zip,application/x-zip-compressed",null,1,1,1,5,1,null,1,null,"https://docs.google.com",1,null,1,1,1,null,1,null,1,1,null,null,null,1,null,1,null,1,null,2,null,null,null,1,1,1,["application/rar","application/vnd.ms-excel","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet","application/vnd.openxmlformats-officedocument.spreadsheetml.template","application/zip","audio/mp3","audio/mp4","audio/mpeg","audio/x-ms-wma","audio/x-wav","image/gif","image/jpeg","image/png","image/x-photoshop","text/csv","text/html","text/plain","video/3gpp","video/flv","video/mp2t","video/mp4","video/mpeg","video/quicktime","video/x-m4v","video/x-matroska","video/x-ms-wmv","video/x-msvideo"]
,["application/msword","application/pdf","application/rtf","application/vnd.ms-powerpoint","application/vnd.openxmlformats-officedocument.presentationml.presentation","application/vnd.openxmlformats-officedocument.presentationml.slideshow","application/vnd.openxmlformats-officedocument.presentationml.template","application/vnd.openxmlformats-officedocument.wordprocessingml.document","application/vnd.openxmlformats-officedocument.wordprocessingml.template","image/tiff"]
,1,1,1,1,null,1,1,3,null,1,1,1,null,1,["AIzaSyCMp6sr4oTC18AWkE2Ii4UBZHTHEpGZWZM","https://blobcomments-pa.clients6.google.com",null,1,1,1,null,null,null,null,"05157915856720379610"]
,null,null,1,1,1,null,null,1,null,0,null,1,"https://support.google.com/drive?p\u003dwork_with_files",1,1,1,null,1,null,null,null,null,null,null,null,0,null,1,null,1,1,null,null,1,0,null,null,1,["AIzaSyCMp6sr4oTC18AWkE2Ii4UBZHTHEpGZWZM","https://drivemetadata.clients6.google.com"]
]
,null,[null,null,null,"https://people-pa.googleapis.com"]
,["https://policies.google.com/privacy","https://support.google.com/drive/answer/2450387?hl\u003den","https://notifications-pa.clients6.google.com"]
,null,null,null,[[[0,"my-drive"]
,[1,"blank"]
,[2,"folders"]
,[3,"photos"]
,[4,"incoming"]
,[5,"people"]
,[6,"quota"]
,[7,"recent"]
,[18,"routing"]
,[8,"search"]
,[9,"settings"]
,[11,"shared-with-me"]
,[12,"starred"]
,[13,"trash"]
,[14,"computers"]
,[10,"team-drives"]
,[20,"team-drives-hidden"]
,[16,"backups"]
,[21,"shared-drives"]
,[22,"shared-drives-hidden"]
]
,0]
,["drive","BF5xbAeqBE73BzCCipCf3YZVHiiQ4WObCM9-qRrvxgqprrs1KhfoMMmKBYsC0Yleq3D_7gnvQecK6XLSDqrSngc",null,null,1,0,0]
,[0]
,null,[0,1,1,1,0,0,1,0,0,0,0]
,null,[null,0,null,null,null,null,null,null,null,"",null,null,1]
,["prod",0,1]
,[0,1]
,[null,"19570130570"]
,[[10,null,null,0]
,[]
,null,0]
,["https://clients6.google.com","AIzaSyD_InbmSFufIEps5UAt2NmB_3LvBH3Sz_8",null,0,1,0]
,[null,0,0,1]
,[[null,null,[[[2,"https://keep.google.com/companion",null,"https://www.gstatic.com/companion/icon_assets/keep_2020q4v3_2x.png","https://keep.google.com",1,null,0,null,null,[]
,[]
,[]
,null,[]
,null,[]
,null,null,"https://www.gstatic.com/companion/icon_assets/logo_keep_2020q4_64dp.svg","#fde293"]
]
,[[4,"https://tasks.google.com/embed/",null,"https://www.gstatic.com/companion/icon_assets/tasks2_2x.png",null,1,null,0,null,null,[]
,[]
,[]
,null,[]
,null,[1]
,null,2,"https://www.gstatic.com/companion/icon_assets/logo_tasks_64dp.svg","#aecbfa","https://b.corp.google.com/issues/new?component\u003d325139\u0026template\u003d1070438"]
]
,[[6,"https://calendar.google.com/calendar/companion",null,"https://www.gstatic.com/companion/icon_assets/calendar_2020q4_2x.png","https://calendar.google.com/calendar/r",1,null,0,null,null,[]
,[]
,["^https?://calendar\\.google\\.com/calendar/r/day/(\\d{4})\\/(\\d{1,2})\\/(\\d{1,2})\\?cls\\\u003d[0-9]+(\\\u0026authuser\\\u003d[0-9]+)?$","^https?://calendar\\.google\\.com/calendar/r(/day)?\\?eid\\\u003d([^\u0026]+)\u0026cls\\\u003d[0-9]+(\\\u0026authuser\\\u003d[0-9]+)?$","^https?://www\\.google\\.com/calendar/event?\\?eid\\\u003d([^\u0026]+)\u0026cls\\\u003d[0-9]+(\\\u0026authuser\\\u003d[0-9]+)?$","^https?://calendar\\.google\\.com/calendar/r/eventedit.*[\\?\\\u0026]cls\\\u003d[0-9]+.*$","^https?://www\\.google\\.com/calendar/render\\?cls\\\u003d[0-9]+(.*[\\\u0026]action\\\u003dTEMPLATE.*|$)"]
,null,["[\\?\\\u0026]cls\u003d0"]
,null,[2]
,null,null,"https://www.gstatic.com/companion/icon_assets/logo_calendar_202q4_64dp.svg","#aecbfa"]
]
]
]
]
,["","https://drive.google.com/picker"]
,null,["https://addons-pa.clients6.google.com","https://addons.gsuite.google.com/client"]
,[null,null,null,1,0]
,[0,0,0,0]
,[[null,null,null,"https://workspace.google.com/team?authuser\u003d0\u0026back_target\u003dPARENT"]
]
]
]
;</script><script nonce="">
var _B_err = _DumpException = function(e) {
throw e;
};
// [1]
var moduleDumpException = function(e) {
window._DumpException(e);
};
window._ = window._ || {};
window._._DumpException = moduleDumpException;
// [2]
window._D = window._D || {};
window._D._DumpException = moduleDumpException;
var _DRIVE_windowName = 'Drive Main Page'; var _DRIVE_enableJsError = true; var _DRIVE_errorUrl = '\/drive\/jserror'; var _DRIVE_buildLabel = 'drive.web-frontend_20210616.01_p2'; var _DRIVE_isColdStart = false; var _DRIVE_isFolderPage = false;</script><script nonce="">
if (window.gapi && gapi.load) {
gapi.load('client');
if (window.performance && window.performance.now) {
window['inlineGapiLoadTime'] = window.performance.now();
}
}
</script><script id="base-js" src="./PythonforBeginners_files/m=b" nonce=""></script><script src="./PythonforBeginners_files/m=RsR2Mc" nonce=""></script><script src="./PythonforBeginners_files/m=core" nonce=""></script><div class="g-Yd g-Yd-Ya a-la-B a-Ff-B" aria-live="assertive" aria-atomic="true" id="IaVadb"></div><div id="drive_main_page"><div class="a-qc-La sd-ph"><div class="a-s-tb-sc-Ja a-s-tb-Pe a-qc-Pe a-s-tb-sc-Ja-fk gc-FnmOde"><div class="a-s-tb-sc-Ja-Q a-s-tb-sc-Ja-Q-Nm a-s-tb-Pe-Q a-D-Pe-Q"><div class="a-s-tb-sc-Ja-Q-x a-s-tb-Pe-Q a-D-Pe-Q"><div class="a-D-B Hb-ja-hc"><div class="a-D-B-WErN3d-j gc-FnmOde"><header class="gb_pa gb_Va gb_Re gb_Hc" ng-non-bindable="" id="gb" role="banner" style="background-color:rgba(255,255,255,1)"><div class="gb_7d"><div class="gb_Cc gb_Ac gb_Hc" ng-non-bindable=""><div class="gb_Mc"><div class="gb_nc"><div class="gb_oc gb_le"><a class="gb_ke gb_pc gb_ie" href="https://drive.google.com/?tab=oo&authuser=0" tabindex="0" title="Drive"><span class="gb_tc gb_he" aria-hidden="true"></span><span class="gb_5d gb_Vc">Drive</span></a></div></div></div><div class="gb_Ic"></div></div></div><div class="gb_Jd gb_3d gb_Sd"><div class="gb_Id gb_Wc" style="min-width:238px"><div class="gb_uc gb_Aa" aria-expanded="false" aria-label="Main menu" role="button" tabindex="0"><svg focusable="false" viewBox="0 0 24 24"><path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"></path></svg></div><div class="gb_uc gb_xc gb_Aa" aria-label="Go back" role="button" tabindex="0"><svg focusable="false" viewBox="0 0 24 24"><path d="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z"></path></svg></div><div class="gb_uc gb_yc gb_Aa" aria-label="Close" role="button" tabindex="0"><svg viewBox="0 0 24 24"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"></path></svg></div><div class="gb_nc"><div class="gb_oc gb_le"><a class="gb_ke gb_pc gb_ie" aria-label="Drive" href="https://drive.google.com/?tab=oo&authuser=0" tabindex="0" title="Drive"><img class="gb_tc gb_6d" src="./PythonforBeginners_files/drive_2020q4_48dp.png" srcset="//ssl.gstatic.com/images/branding/product/1x/drive_2020q4_48dp.png 1x, //ssl.gstatic.com/images/branding/product/2x/drive_2020q4_48dp.png 2x " alt="" aria-hidden="true" style="width:40px;height:40px"><span class="gb_5d gb_Vc">Drive</span></a></div></div><div class="gb_Id gb_Aa gb_Uc gb_Vc"><span class="gb_Zc" aria-level="1" role="heading"></span></div></div><div class="gb_Id gb_Vd gb_Oe gb_De gb_Le"><div class="gb_qe gb_pe"></div><div class="gb_Fe"><form class="gb_Te gb_rf" action="https://drive.google.com/drive/search" method="get" role="search" id="aso_search_form_anchor"><button class="gb_pf gb_of" aria-label="Close search" type="button"><svg focusable="false" height="24px" viewBox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0z" fill="none"></path><path d="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z"></path></svg></button><div class="gb_uf gb_of"><table cellspacing="0" cellpadding="0" class="gstl_50 gstt" role="presentation" style="height: 28px;"><tbody><tr><td><table cellspacing="0" cellpadding="0" style="width: 100%;"><tbody><tr><td class="gsib_a gb_ef"><div id="gs_lc50" style="position: relative;"><input class="gb_ef" aria-label="Search in Drive" autocomplete="off" placeholder="Search in Drive" role="combobox" value="" name="q" type="text" aria-autocomplete="list" dir="ltr" spellcheck="false" aria-haspopup="true" aria-live="off" aria-owns="gs_sbt50" style="border: none; padding: 0px; margin: 0px; height: auto; width: 100%; background: url("data:image/gif;base64,R0lGODlhAQABAID/AMDAwAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw%3D%3D") transparent; position: absolute; z-index: 6; left: 0px;"><input disabled="" autocomplete="off" autocapitalize="off" id="gs_taif50" class="gb_ef" dir="ltr" style="border: none; padding: 0px; margin: 0px; height: auto; width: 100%; position: absolute; z-index: 1; background-color: transparent; -webkit-text-fill-color: silver; color: silver; left: 0px; visibility: hidden;"></div></td></tr></tbody></table></td></tr></tbody></table></div><button class="gb_tf a-nb-Va-d-Gk-M" type="button" data-tooltip="Search options" aria-label="Search options" data-tooltip-align="b,c" data-tooltip-delay="500" data-tooltip-unhoverable="true" aria-haspopup="true"><svg class="Q6yead QJZfhe " width="24" height="24" viewBox="0 0 24 24" focusable="false"><path d="M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"></path></svg></button><button class="gb_qf" aria-label="Clear search" type="button"><svg focusable="false" height="24px" viewBox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"></path><path d="M0 0h24v24H0z" fill="none"></path></svg></button><button class="gb_nf gb_of" aria-label="Search Google Drive" role="button"><svg focusable="false" height="24px" viewBox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><path d="M20.49,19l-5.73-5.73C15.53,12.2,16,10.91,16,9.5C16,5.91,13.09,3,9.5,3S3,5.91,3,9.5C3,13.09,5.91,16,9.5,16 c1.41,0,2.7-0.47,3.77-1.24L19,20.49L20.49,19z M5,9.5C5,7.01,7.01,5,9.5,5S14,7.01,14,9.5S11.99,14,9.5,14S5,11.99,5,9.5z"></path><path d="M0,0h24v24H0V0z" fill="none"></path></svg></button><table cellspacing="0" cellpadding="0" class="gstl_50 gssb_c" style="width: 100%; display: none; position: relative;"><tbody><tr><td class="gssb_f"></td><td class="gssb_e" style="width: 100%;"></td></tr></tbody></table></form></div><div class="gb_re gb_pe Hb-ja-Na"><div class="h-sb-Ic h-R-d a-vu-w-d a-c-d" role="button" aria-hidden="false" aria-expanded="false" aria-haspopup="true" data-tooltip="Ready for offline" aria-label="Ready for offline" data-tooltip-align="b,c" data-tooltip-delay="500" data-tooltip-unhoverable="true" style="user-select: none;" tabindex="0"><div class="a-d-c"><svg viewBox="0 0 24 24" width="24px" height="24px" class=" a-s-fa-Ha-pa" focusable="false"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"></path><path d="M7 15h10v2H7zm3.3-3.8L8.4 9.3 7 10.7l3.3 3.3L17 7.3l-1.4-1.4z"></path></svg></div></div><div class="bMWlzf M1zY4b" data-tooltip="Support"><a class="gb_ue gb_se gb_3c Ewn2Sd" role="button" id="lZwQje" tabindex="0" aria-label="Support" aria-expanded="false" aria-haspopup="true" aria-controls="M842Cd"><svg class="wo35tf" xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 24 24" fill="#000000" focusable="false"><path fill="none" d="M0 0h24v24H0z"></path><path d="M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z"></path></svg></a></div><div id="M842Cd" class="M842Cd" role="menu" tabindex="0" aria-hidden="true" style="display: none;"><div class="QhgNnf" aria-label="Help" tabindex="-1" role="menuitem" jsname="j7LFlb">Help</div><div class="QhgNnf" aria-label="Training" tabindex="-1" role="menuitem" jsname="j7LFlb">Training</div><div class="QhgNnf" aria-label="Updates" tabindex="-1" role="menuitem" jsname="j7LFlb">Updates</div><div class="LMBRY" role="separator" aria-hidden="true"></div><div class="QhgNnf" aria-label="Terms and Policy" tabindex="-1" role="menuitem" jsname="j7LFlb">Terms and Policy</div><div class="LMBRY" role="separator" aria-hidden="true"></div><div class="QhgNnf" aria-label="Send feedback to Google" tabindex="-1" role="menuitem" jsname="j7LFlb">Send feedback to Google</div></div><div class="h-sb-Ic h-R-d a-vu-w-d a-c-d" role="button" aria-expanded="false" style="user-select: none;" tabindex="0" aria-haspopup="true" data-tooltip="Settings" aria-label="Settings" data-tooltip-align="b,c" data-tooltip-delay="500" data-tooltip-unhoverable="true"><div class="a-d-c"><svg class=" a-s-fa-Ha-pa" width="24px" height="24px" viewBox="0 0 24 24" fill="#000000" focusable="false"><path d="M13.85 22.25h-3.7c-.74 0-1.36-.54-1.45-1.27l-.27-1.89c-.27-.14-.53-.29-.79-.46l-1.8.72c-.7.26-1.47-.03-1.81-.65L2.2 15.53c-.35-.66-.2-1.44.36-1.88l1.53-1.19c-.01-.15-.02-.3-.02-.46 0-.15.01-.31.02-.46l-1.52-1.19c-.59-.45-.74-1.26-.37-1.88l1.85-3.19c.34-.62 1.11-.9 1.79-.63l1.81.73c.26-.17.52-.32.78-.46l.27-1.91c.09-.7.71-1.25 1.44-1.25h3.7c.74 0 1.36.54 1.45 1.27l.27 1.89c.27.14.53.29.79.46l1.8-.72c.71-.26 1.48.03 1.82.65l1.84 3.18c.36.66.2 1.44-.36 1.88l-1.52 1.19c.01.15.02.3.02.46s-.01.31-.02.46l1.52 1.19c.56.45.72 1.23.37 1.86l-1.86 3.22c-.34.62-1.11.9-1.8.63l-1.8-.72c-.26.17-.52.32-.78.46l-.27 1.91c-.1.68-.72 1.22-1.46 1.22zm-3.23-2h2.76l.37-2.55.53-.22c.44-.18.88-.44 1.34-.78l.45-.34 2.38.96 1.38-2.4-2.03-1.58.07-.56c.03-.26.06-.51.06-.78s-.03-.53-.06-.78l-.07-.56 2.03-1.58-1.39-2.4-2.39.96-.45-.35c-.42-.32-.87-.58-1.33-.77l-.52-.22-.37-2.55h-2.76l-.37 2.55-.53.21c-.44.19-.88.44-1.34.79l-.45.33-2.38-.95-1.39 2.39 2.03 1.58-.07.56a7 7 0 0 0-.06.79c0 .26.02.53.06.78l.07.56-2.03 1.58 1.38 2.4 2.39-.96.45.35c.43.33.86.58 1.33.77l.53.22.38 2.55z"></path><circle cx="12" cy="12" r="3.5"></circle></svg></div></div></div></div><div class="gb_Wd gb_Sa gb_Id" ng-non-bindable="" data-ogsr-up=""><div class="gb_Se"><div class="gb_Nc"><div class="gb_B gb_bd gb_h gb_Af" data-ogsr-fb="true" data-ogsr-alt="" id="gbwa"><div class="gb_zf"><a class="gb_C" aria-label="Google apps" href="https://www.google.co.in/intl/en/about/products?tab=oh" aria-expanded="false" role="button" tabindex="0"><svg class="gb_Ve" focusable="false" viewBox="0 0 24 24"><path d="M6,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,20c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM6,20c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM6,14c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,14c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM16,6c0,1.1 0.9,2 2,2s2,-0.9 2,-2 -0.9,-2 -2,-2 -2,0.9 -2,2zM12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM18,14c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM18,20c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2z"></path></svg></a></div></div></div><div class="gb_Na gb_bd gb_mg gb_h gb_Af"><div class="gb_zf gb_Ra gb_mg gb_h"><a class="gb_C gb_Ma gb_h" aria-label="Google Account: K. ABHIRAM
([email protected])" href="https://accounts.google.com/SignOutOptions?hl=en&continue=https://drive.google.com/drive/%3Fusp%3Dchrome_app&service=writely" role="button" tabindex="0" aria-expanded="false"><img class="gb_Ca gbii" src="./PythonforBeginners_files/unnamed.jpg" srcset="https://lh3.googleusercontent.com/ogw/ADea4I7e6EOV3BhxNR2-UbM-QtiamrReCeiIp3_V90rfqg=s32-c-mo 1x, https://lh3.googleusercontent.com/ogw/ADea4I7e6EOV3BhxNR2-UbM-QtiamrReCeiIp3_V90rfqg=s64-c-mo 2x " alt="" aria-hidden="true" data-noaft=""></a><div class="gb_Za"></div><div class="gb_Xa"></div></div></div></div><div style="overflow: hidden; position: absolute; top: 0px; visibility: hidden; width: 328px; z-index: 991; height: 0px; margin-top: 57px; transition: height 0.3s ease-in-out 0s; right: 0px; margin-right: 4px;"></div></div><div class="gb_0a gb_E gb_k gb_1a" aria-label="Account Information" aria-hidden="true"><div class="gb_9a"><div class="gb_ab"><img class="gb_Ha gbip gb_eb" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://lh3.googleusercontent.com/ogw/ADea4I7e6EOV3BhxNR2-UbM-QtiamrReCeiIp3_V90rfqg=s83-c-mo" data-srcset="https://lh3.googleusercontent.com/ogw/ADea4I7e6EOV3BhxNR2-UbM-QtiamrReCeiIp3_V90rfqg=s83-c-mo 1x, https://lh3.googleusercontent.com/ogw/ADea4I7e6EOV3BhxNR2-UbM-QtiamrReCeiIp3_V90rfqg=s192-c-mo 2x " title="Profile" alt="" aria-hidden="true"><div class="gb_ib gb_eb"><a class="gb_jb gb_Rf gb_eb gb_Wf" aria-label="Change profile picture." href="https://myaccount.google.com/?utm_source=OGB&tab=ok" target="_blank"><svg class="gb_kb" enable-background="new 0 0 24 24" focusable="false" height="26" viewBox="0 0 24 24" width="18" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h16v12zM12 9c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z"></path></svg></a></div></div><div class="gb_bb"><div class="gb_lb gb_mb">K. ABHIRAM</div><div class="gb_nb">[email protected]</div><a class="gb_rb gb_Sf gbp1 gb_Pe gb_3c" href="https://myaccount.google.com/?utm_source=OGB&tab=ok&utm_medium=act" target="_blank">Manage your Google Account</a></div></div><div class="gb_Eb gb_Ib"><div class="gb_Zf gb_fc gb_Aa"><div class="gb_gc"></div></div><div class="gb_Vf gb_Mb gb_Aa" aria-hidden="true"><a class="gb_Lb gb_Vb" aria-hidden="true" href="https://drive.google.com/drive/my-drive?authuser=0&ogss=1" rel="noreferrer" target="_blank"><img class="gb_Xb gb_eb" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://lh3.googleusercontent.com/ogw/ADea4I7e6EOV3BhxNR2-UbM-QtiamrReCeiIp3_V90rfqg=s48-c-mo" alt="" aria-hidden="true"><div class="gb_Ob"><div><div class="gb_4b">Default</div></div><div class="gb_0b">K. ABHIRAM</div><div class="gb_2b">[email protected]</div></div></a></div><div class="gb_yb" aria-hidden="true"><svg class="gb_zb" focusable="false" height="20" viewBox="0 0 20 20" width="20" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M0 0h20v20H0V0z" fill="none"></path><path d="M6.18 7L10 10.82 13.82 7 15 8.17l-5 5-5-5z"></path></svg></div><a class="gb_6b gb_Aa gb_Pb" href="https://myaccount.google.com/brandaccounts?authuser=0&continue=https://drive.google.com/drive/%3Fusp%3Dchrome_app&service=%3Fauthuser%3D%24authuser%26ogss%3D1" aria-hidden="true"><div class="gb_7b"><svg focusable="false" height="20" viewBox="0 0 24 24" width="20" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 2v10.79C16.52 14.37 13.23 14 12 14s-4.52.37-7 1.79V5h14zM5 19v-.77C6.74 16.66 10.32 16 12 16s5.26.66 7 2.23V19H5zm7-6c1.94 0 3.5-1.56 3.5-3.5S13.94 6 12 6 8.5 7.56 8.5 9.5 10.06 13 12 13zm0-5c.83 0 1.5.67 1.5 1.5S12.83 11 12 11s-1.5-.67-1.5-1.5S11.17 8 12 8z" fill="#5F6368"></path><path d="M0 0h24v24H0V0z" fill="none"></path></svg></div><div class="gb_9b gb_ac">All Brand accounts</div><svg class="gb_bc" focusable="false" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" fill="#5F6368"></path><path d="M0 0h24v24H0z" fill="none"></path></svg></a></div><div class="gb_Qb" tabindex="-1"><a class="gb_vb gb_Of" href="https://accounts.google.com/AddSession?hl=en&continue=https://drive.google.com/drive/%3Fusp%3Dchrome_app&service=writely&ec=GAlAMQ" target="_blank"><div class="gb_wb"><svg class="gb_xb" enable-background="new 0 0 24 24" focusable="false" height="20" viewBox="0 0 24 24" width="20" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M9 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 7c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm6 5H3v-.99C3.2 16.29 6.3 15 9 15s5.8 1.29 6 2v1zm3-4v-3h-3V9h3V6h2v3h3v2h-3v3h-2z"></path></svg></div><div class="gb_Ab">Add another account</div></a></div><div class="gb_Pf gb_Bb"><a class="gb_Cb gb_Tf gb_2f gb_Pe gb_3c" id="gb_71" href="https://accounts.google.com/Logout?hl=en&continue=https://drive.google.com/drive/%3Fusp%3Dchrome_app&service=writely&timeStmp=1624989530&secTok=.AG5fkS_Pr7fxirhoQjwgOYencinuBFCQEg&ec=GAdAMQ" target="_top">Sign out</a></div><div class="gb_Qf gb_sb"><a class="gb_tb gb_Hb" href="https://policies.google.com/privacy?hl=en" target="_blank">Privacy Policy</a><span class="gb_Oa" aria-hidden="true">•</span><a class="gb_tb gb_Fb" href="https://myaccount.google.com/termsofservice?hl=en" target="_blank">Terms of Service</a></div></div></div><div class="gb_Td gb_3d"></div></header><script nonce="">this.gbar_=this.gbar_||{};(function(_){var window=this;
try{
_.Cd=function(a,b,c){if(!a.o)if(c instanceof Array){c=_.oa(c);for(var d=c.next();!d.done;d=c.next())_.Cd(a,b,d.value)}else{d=(0,_.v)(a.F,a,b);var e=a.B+c;a.B++;b.setAttribute("data-eqid",e);a.D[e]=d;b&&b.addEventListener?b.addEventListener(c,d,!1):b&&b.attachEvent?b.attachEvent("on"+c,d):a.A.log(Error("n`"+b))}};
}catch(e){_._DumpException(e)}
try{
/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
_.Dd=function(){if(!_.t.addEventListener||!Object.defineProperty)return!1;var a=!1,b=Object.defineProperty({},"passive",{get:function(){a=!0}});try{_.t.addEventListener("test",_.Ba,b),_.t.removeEventListener("test",_.Ba,b)}catch(c){}return a}();
_.Ed=_.Lb?"webkitTransitionEnd":_.Hb?"otransitionend":"transitionend";
}catch(e){_._DumpException(e)}
try{
var Fd=document.querySelector(".gb_B .gb_C"),Gd=document.querySelector("#gb.gb_Dc");Fd&&!Gd&&_.Cd(_.sd,Fd,"click");
}catch(e){_._DumpException(e)}
try{
/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
var Md,Nd,Od,Pd,Qd,Rd,Sd,Ud,Yd,Xd,$d;_.Hd=function(a){var b=a.length;if(0<b){for(var c=Array(b),d=0;d<b;d++)c[d]=a[d];return c}return[]};_.Id=function(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var d=c.slice();d.push.apply(d,arguments);return a.apply(this,d)}};_.Jd=function(a){var b=typeof a;return"object"!=b?b:a?Array.isArray(a)?"array":b:"null"};_.Kd=function(a){var b=_.Jd(a);return"array"==b||"object"==b&&"number"==typeof a.length};
_.Ld=function(a,b){return 0==a.lastIndexOf(b,0)};Md=/&/g;Nd=/</g;Od=/>/g;Pd=/"/g;Qd=/'/g;Rd=/\x00/g;Sd=/[\x00&<>"']/;
_.Td=function(a,b){if(b)a=a.replace(Md,"&").replace(Nd,"<").replace(Od,">").replace(Pd,""").replace(Qd,"'").replace(Rd,"�");else{if(!Sd.test(a))return a;-1!=a.indexOf("&")&&(a=a.replace(Md,"&"));-1!=a.indexOf("<")&&(a=a.replace(Nd,"<"));-1!=a.indexOf(">")&&(a=a.replace(Od,">"));-1!=a.indexOf('"')&&(a=a.replace(Pd,"""));-1!=a.indexOf("'")&&(a=a.replace(Qd,"'"));-1!=a.indexOf("\x00")&&(a=a.replace(Rd,"�"))}return a};Ud=function(a,b){return a<b?-1:a>b?1:0};
_.Vd=function(a,b){var c=0;a=(0,_.Xa)(String(a)).split(".");b=(0,_.Xa)(String(b)).split(".");for(var d=Math.max(a.length,b.length),e=0;0==c&&e<d;e++){var f=a[e]||"",g=b[e]||"";do{f=/(\d*)(\D*)(.*)/.exec(f)||["","","",""];g=/(\d*)(\D*)(.*)/.exec(g)||["","","",""];if(0==f[0].length&&0==g[0].length)break;c=Ud(0==f[1].length?0:parseInt(f[1],10),0==g[1].length?0:parseInt(g[1],10))||Ud(0==f[2].length,0==g[2].length)||Ud(f[2],g[2]);f=f[3];g=g[3]}while(0==c)}return c};_.Wd=function(a){return a=_.Td(a,void 0)};
Yd=function(a,b){var c=Xd;return Object.prototype.hasOwnProperty.call(c,a)?c[a]:c[a]=b(a)};Xd={};_.Zd=function(a){return Yd(a,function(){return 0<=_.Vd(_.Zb,a)})};try{(new self.OffscreenCanvas(0,0)).getContext("2d")}catch(a){}$d=!_.A||9<=Number(_.bc);_.ae=!_.Kb&&!_.A||_.A&&9<=Number(_.bc)||_.Kb&&_.Zd("1.9.1");_.be=_.A&&!_.Zd("9");_.ce=_.A||_.Hb||_.Lb;
_.de=function(a,b){this.width=a;this.height=b};_.h=_.de.prototype;_.h.aspectRatio=function(){return this.width/this.height};_.h.Vb=function(){return!(this.width*this.height)};_.h.ceil=function(){this.width=Math.ceil(this.width);this.height=Math.ceil(this.height);return this};_.h.floor=function(){this.width=Math.floor(this.width);this.height=Math.floor(this.height);return this};_.h.round=function(){this.width=Math.round(this.width);this.height=Math.round(this.height);return this};
var ge;_.ee=function(a,b){return(b||document).getElementsByTagName(String(a))};_.M=function(a,b){var c=b||document;if(c.getElementsByClassName)a=c.getElementsByClassName(a)[0];else{c=document;var d=b||c;a=d.querySelectorAll&&d.querySelector&&a?d.querySelector(a?"."+a:""):_.fe(c,"*",a,b)[0]||null}return a||null};
_.fe=function(a,b,c,d){a=d||a;b=b&&"*"!=b?String(b).toUpperCase():"";if(a.querySelectorAll&&a.querySelector&&(b||c))return a.querySelectorAll(b+(c?"."+c:""));if(c&&a.getElementsByClassName){a=a.getElementsByClassName(c);if(b){d={};for(var e=0,f=0,g;g=a[f];f++)b==g.nodeName&&(d[e++]=g);d.length=e;return d}return a}a=a.getElementsByTagName(b||"*");if(c){d={};for(f=e=0;g=a[f];f++)b=g.className,"function"==typeof b.split&&_.ca(b.split(/\s+/),c)&&(d[e++]=g);d.length=e;return d}return a};
_.he=function(a,b){_.da(b,function(c,d){c&&"object"==typeof c&&c.Ub&&(c=c.Fb());"style"==d?a.style.cssText=c:"class"==d?a.className=c:"for"==d?a.htmlFor=c:ge.hasOwnProperty(d)?a.setAttribute(ge[d],c):_.Ld(d,"aria-")||_.Ld(d,"data-")?a.setAttribute(d,c):a[d]=c})};ge={cellpadding:"cellPadding",cellspacing:"cellSpacing",colspan:"colSpan",frameborder:"frameBorder",height:"height",maxlength:"maxLength",nonce:"nonce",role:"role",rowspan:"rowSpan",type:"type",usemap:"useMap",valign:"vAlign",width:"width"};
_.ke=function(a,b){var c=String(b[0]),d=b[1];if(!$d&&d&&(d.name||d.type)){c=["<",c];d.name&&c.push(' name="',_.Wd(d.name),'"');if(d.type){c.push(' type="',_.Wd(d.type),'"');var e={};_.fa(e,d);delete e.type;d=e}c.push(">");c=c.join("")}c=_.ie(a,c);d&&("string"===typeof d?c.className=d:Array.isArray(d)?c.className=d.join(" "):_.he(c,d));2<b.length&&_.je(a,c,b,2);return c};
_.je=function(a,b,c,d){function e(k){k&&b.appendChild("string"===typeof k?a.createTextNode(k):k)}for(;d<c.length;d++){var f=c[d];if(!_.Kd(f)||_.Da(f)&&0<f.nodeType)e(f);else{a:{if(f&&"number"==typeof f.length){if(_.Da(f)){var g="function"==typeof f.item||"string"==typeof f.item;break a}if("function"===typeof f){g="function"==typeof f.item;break a}}g=!1}_.Ja(g?_.Hd(f):f,e)}}};_.le=function(a){return _.ie(document,a)};
_.ie=function(a,b){b=String(b);"application/xhtml+xml"===a.contentType&&(b=b.toLowerCase());return a.createElement(b)};_.me=function(a){for(var b;b=a.firstChild;)a.removeChild(b)};_.ne=function(a){return a&&a.parentNode?a.parentNode.removeChild(a):null};_.oe=function(a){return _.Da(a)&&1==a.nodeType};_.pe=function(a){return 9==a.nodeType?a:a.ownerDocument||a.document};_.qe=function(a,b,c){for(var d=0;a&&(null==c||d<=c);){if(b(a))return a;a=a.parentNode;d++}return null};
}catch(e){_._DumpException(e)}
try{
/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
var re;
_.se=function(a,b){b?a.setAttribute("role",b):a.removeAttribute("role")};_.te=function(a,b,c){Array.isArray(c)&&(c=c.join(" "));var d="aria-"+b;""===c||void 0==c?(re||(re={atomic:!1,autocomplete:"none",dropeffect:"none",haspopup:!1,live:"off",multiline:!1,multiselectable:!1,orientation:"vertical",readonly:!1,relevant:"additions text",required:!1,sort:"none",busy:!1,disabled:!1,hidden:!1,invalid:"false"}),c=re,b in c?a.setAttribute(d,c[b]):a.removeAttribute(d)):a.setAttribute(d,c)};
}catch(e){_._DumpException(e)}
try{
/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
var ve,we,xe;_.ue=function(a,b){var c=a.length-b.length;return 0<=c&&a.indexOf(b,c)==c};ve=function(a){return"string"==typeof a.className?a.className:a.getAttribute&&a.getAttribute("class")||""};we=function(a){return a.classList?a.classList:ve(a).match(/\S+/g)||[]};xe=function(a,b){"string"==typeof a.className?a.className=b:a.setAttribute&&a.setAttribute("class",b)};_.N=function(a,b){return a.classList?a.classList.contains(b):_.ca(we(a),b)};
_.O=function(a,b){if(a.classList)a.classList.add(b);else if(!_.N(a,b)){var c=ve(a);xe(a,c+(0<c.length?" "+b:b))}};_.ye=function(a,b){if(a.classList)Array.prototype.forEach.call(b,function(e){_.O(a,e)});else{var c={};Array.prototype.forEach.call(we(a),function(e){c[e]=!0});Array.prototype.forEach.call(b,function(e){c[e]=!0});b="";for(var d in c)b+=0<b.length?" "+d:d;xe(a,b)}};
_.P=function(a,b){a.classList?a.classList.remove(b):_.N(a,b)&&xe(a,Array.prototype.filter.call(we(a),function(c){return c!=b}).join(" "))};_.ze=function(a,b){a.classList?Array.prototype.forEach.call(b,function(c){_.P(a,c)}):xe(a,Array.prototype.filter.call(we(a),function(c){return!_.ca(b,c)}).join(" "))};
}catch(e){_._DumpException(e)}
try{
/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
}catch(e){_._DumpException(e)}
try{
/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
}catch(e){_._DumpException(e)}
try{
/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
var Be;_.Ae=function(a,b){b=(0,_.ba)(a,b);var c;(c=0<=b)&&Array.prototype.splice.call(a,b,1);return c};Be=function(a,b){for(var c in a)if(b.call(void 0,a[c],c,a))return!0;return!1};_.Ce=function(a,b){try{return _.Gb(a[b]),!0}catch(c){}return!1};
_.Ee=function(a,b){this.type="undefined"!=typeof _.De&&a instanceof _.De?String(a):a;this.currentTarget=this.target=b;this.defaultPrevented=this.j=!1};_.Ee.prototype.stopPropagation=function(){this.j=!0};_.Ee.prototype.preventDefault=function(){this.defaultPrevented=!0};
_.Fe=function(a,b){_.Ee.call(this,a?a.type:"");this.relatedTarget=this.currentTarget=this.target=null;this.button=this.screenY=this.screenX=this.clientY=this.clientX=this.offsetY=this.offsetX=0;this.key="";this.charCode=this.keyCode=0;this.metaKey=this.shiftKey=this.altKey=this.ctrlKey=!1;this.state=null;this.pointerId=0;this.pointerType="";this.Ya=null;a&&this.init(a,b)};_.x(_.Fe,_.Ee);var Ge={2:"touch",3:"pen",4:"mouse"};
_.Fe.prototype.init=function(a,b){var c=this.type=a.type,d=a.changedTouches&&a.changedTouches.length?a.changedTouches[0]:null;this.target=a.target||a.srcElement;this.currentTarget=b;(b=a.relatedTarget)?_.Kb&&(_.Ce(b,"nodeName")||(b=null)):"mouseover"==c?b=a.fromElement:"mouseout"==c&&(b=a.toElement);this.relatedTarget=b;d?(this.clientX=void 0!==d.clientX?d.clientX:d.pageX,this.clientY=void 0!==d.clientY?d.clientY:d.pageY,this.screenX=d.screenX||0,this.screenY=d.screenY||0):(this.offsetX=_.Lb||void 0!==
a.offsetX?a.offsetX:a.layerX,this.offsetY=_.Lb||void 0!==a.offsetY?a.offsetY:a.layerY,this.clientX=void 0!==a.clientX?a.clientX:a.pageX,this.clientY=void 0!==a.clientY?a.clientY:a.pageY,this.screenX=a.screenX||0,this.screenY=a.screenY||0);this.button=a.button;this.keyCode=a.keyCode||0;this.key=a.key||"";this.charCode=a.charCode||("keypress"==c?a.keyCode:0);this.ctrlKey=a.ctrlKey;this.altKey=a.altKey;this.shiftKey=a.shiftKey;this.metaKey=a.metaKey;this.pointerId=a.pointerId||0;this.pointerType="string"===
typeof a.pointerType?a.pointerType:Ge[a.pointerType]||"";this.state=a.state;this.Ya=a;a.defaultPrevented&&_.Fe.T.preventDefault.call(this)};_.Fe.prototype.stopPropagation=function(){_.Fe.T.stopPropagation.call(this);this.Ya.stopPropagation?this.Ya.stopPropagation():this.Ya.cancelBubble=!0};_.Fe.prototype.preventDefault=function(){_.Fe.T.preventDefault.call(this);var a=this.Ya;a.preventDefault?a.preventDefault():a.returnValue=!1};
_.He="closure_listenable_"+(1E6*Math.random()|0);_.Ie=function(a){return!(!a||!a[_.He])};
var Je=0;
var Ke;Ke=function(a,b,c,d,e){this.listener=a;this.j=null;this.src=b;this.type=c;this.capture=!!d;this.te=e;this.key=++Je;this.Md=this.ie=!1};_.Le=function(a){a.Md=!0;a.listener=null;a.j=null;a.src=null;a.te=null};
_.Me=function(a){this.src=a;this.j={};this.o=0};_.Me.prototype.add=function(a,b,c,d,e){var f=a.toString();a=this.j[f];a||(a=this.j[f]=[],this.o++);var g=Ne(a,b,d,e);-1<g?(b=a[g],c||(b.ie=!1)):(b=new Ke(b,this.src,f,!!d,e),b.ie=c,a.push(b));return b};_.Me.prototype.remove=function(a,b,c,d){a=a.toString();if(!(a in this.j))return!1;var e=this.j[a];b=Ne(e,b,c,d);return-1<b?(_.Le(e[b]),Array.prototype.splice.call(e,b,1),0==e.length&&(delete this.j[a],this.o--),!0):!1};
_.Oe=function(a,b){var c=b.type;if(!(c in a.j))return!1;var d=_.Ae(a.j[c],b);d&&(_.Le(b),0==a.j[c].length&&(delete a.j[c],a.o--));return d};_.Me.prototype.qe=function(a,b){a=this.j[a.toString()];var c=[];if(a)for(var d=0;d<a.length;++d){var e=a[d];e.capture==b&&c.push(e)}return c};_.Me.prototype.Ed=function(a,b,c,d){a=this.j[a.toString()];var e=-1;a&&(e=Ne(a,b,c,d));return-1<e?a[e]:null};
_.Me.prototype.hasListener=function(a,b){var c=void 0!==a,d=c?a.toString():"",e=void 0!==b;return Be(this.j,function(f){for(var g=0;g<f.length;++g)if(!(c&&f[g].type!=d||e&&f[g].capture!=b))return!0;return!1})};var Ne=function(a,b,c,d){for(var e=0;e<a.length;++e){var f=a[e];if(!f.Md&&f.listener==b&&f.capture==!!c&&f.te==d)return e}return-1};
var Pe,Qe,Re,Ue,We,Xe,Ye,af;Pe="closure_lm_"+(1E6*Math.random()|0);Qe={};Re=0;_.Q=function(a,b,c,d,e){if(d&&d.once)return _.Se(a,b,c,d,e);if(Array.isArray(b)){for(var f=0;f<b.length;f++)_.Q(a,b[f],c,d,e);return null}c=_.Te(c);return _.Ie(a)?a.listen(b,c,_.Da(d)?!!d.capture:!!d,e):Ue(a,b,c,!1,d,e)};
Ue=function(a,b,c,d,e,f){if(!b)throw Error("q");var g=_.Da(e)?!!e.capture:!!e,k=_.Ve(a);k||(a[Pe]=k=new _.Me(a));c=k.add(b,c,d,g,f);if(c.j)return c;d=We();c.j=d;d.src=a;d.listener=c;if(a.addEventListener)_.Dd||(e=g),void 0===e&&(e=!1),a.addEventListener(b.toString(),d,e);else if(a.attachEvent)a.attachEvent(Xe(b.toString()),d);else if(a.addListener&&a.removeListener)a.addListener(d);else throw Error("r");Re++;return c};We=function(){var a=Ye,b=function(c){return a.call(b.src,b.listener,c)};return b};
_.Se=function(a,b,c,d,e){if(Array.isArray(b)){for(var f=0;f<b.length;f++)_.Se(a,b[f],c,d,e);return null}c=_.Te(c);return _.Ie(a)?a.Bb(b,c,_.Da(d)?!!d.capture:!!d,e):Ue(a,b,c,!0,d,e)};_.Ze=function(a,b,c,d,e){if(Array.isArray(b))for(var f=0;f<b.length;f++)_.Ze(a,b[f],c,d,e);else d=_.Da(d)?!!d.capture:!!d,c=_.Te(c),_.Ie(a)?a.Ca(b,c,d,e):a&&(a=_.Ve(a))&&(b=a.Ed(b,c,d,e))&&_.$e(b)};
_.$e=function(a){if("number"===typeof a||!a||a.Md)return!1;var b=a.src;if(_.Ie(b))return b.hh(a);var c=a.type,d=a.j;b.removeEventListener?b.removeEventListener(c,d,a.capture):b.detachEvent?b.detachEvent(Xe(c),d):b.addListener&&b.removeListener&&b.removeListener(d);Re--;(c=_.Ve(b))?(_.Oe(c,a),0==c.o&&(c.src=null,b[Pe]=null)):_.Le(a);return!0};Xe=function(a){return a in Qe?Qe[a]:Qe[a]="on"+a};
Ye=function(a,b){if(a.Md)a=!0;else{b=new _.Fe(b,this);var c=a.listener,d=a.te||a.src;a.ie&&_.$e(a);a=c.call(d,b)}return a};_.Ve=function(a){a=a[Pe];return a instanceof _.Me?a:null};af="__closure_events_fn_"+(1E9*Math.random()>>>0);_.Te=function(a){if("function"===typeof a)return a;a[af]||(a[af]=function(b){return a.handleEvent(b)});return a[af]};
}catch(e){_._DumpException(e)}
try{
/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
_.bf=function(a){return 0==a.Ya.button&&!(_.Mb&&a.ctrlKey)};
_.cf=function(a){_.K.call(this);this.U=a;this.R={}};_.x(_.cf,_.K);var df=[];_.cf.prototype.listen=function(a,b,c,d){return ef(this,a,b,c,d)};_.cf.prototype.C=function(a,b,c,d,e){return ef(this,a,b,c,d,e)};var ef=function(a,b,c,d,e,f){Array.isArray(c)||(c&&(df[0]=c.toString()),c=df);for(var g=0;g<c.length;g++){var k=_.Q(b,c[g],d||a.handleEvent,e||!1,f||a.U||a);if(!k)break;a.R[k.key]=k}return a};_.cf.prototype.Bb=function(a,b,c,d){return ff(this,a,b,c,d)};
var ff=function(a,b,c,d,e,f){if(Array.isArray(c))for(var g=0;g<c.length;g++)ff(a,b,c[g],d,e,f);else{b=_.Se(b,c,d||a.handleEvent,e,f||a.U||a);if(!b)return a;a.R[b.key]=b}return a};_.cf.prototype.Ca=function(a,b,c,d,e){if(Array.isArray(b))for(var f=0;f<b.length;f++)this.Ca(a,b[f],c,d,e);else c=c||this.handleEvent,d=_.Da(d)?!!d.capture:!!d,e=e||this.U||this,c=_.Te(c),d=!!d,b=_.Ie(a)?a.Ed(b,c,d,e):a?(a=_.Ve(a))?a.Ed(b,c,d,e):null:null,b&&(_.$e(b),delete this.R[b.key]);return this};
_.gf=function(a){_.da(a.R,function(b,c){this.R.hasOwnProperty(c)&&_.$e(b)},a);a.R={}};_.cf.prototype.P=function(){_.cf.T.P.call(this);_.gf(this)};_.cf.prototype.handleEvent=function(){throw Error("s");};
}catch(e){_._DumpException(e)}
try{
/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
var hf=function(a){_.t.setTimeout(function(){throw a;},0)},jf=function(a,b){this.A=a;this.B=b;this.o=0;this.j=null};jf.prototype.get=function(){if(0<this.o){this.o--;var a=this.j;this.j=a.next;a.next=null}else a=this.A();return a};var kf=function(a,b){a.B(b);100>a.o&&(a.o++,b.next=a.j,a.j=b)};
var lf,mf=function(){var a=_.t.MessageChannel;"undefined"===typeof a&&"undefined"!==typeof window&&window.postMessage&&window.addEventListener&&!_.z("Presto")&&(a=function(){var e=_.le("IFRAME");e.style.display="none";document.documentElement.appendChild(e);var f=e.contentWindow;e=f.document;e.open();e.close();var g="callImmediate"+Math.random(),k="file:"==f.location.protocol?"*":f.location.protocol+"//"+f.location.host;e=(0,_.v)(function(l){if(("*"==k||l.origin==k)&&l.data==g)this.port1.onmessage()},
this);f.addEventListener("message",e,!1);this.port1={};this.port2={postMessage:function(){f.postMessage(g,k)}}});if("undefined"!==typeof a&&!_.nb()){var b=new a,c={},d=c;b.port1.onmessage=function(){if(void 0!==c.next){c=c.next;var e=c.jg;c.jg=null;e()}};return function(e){d.next={jg:e};d=d.next;b.port2.postMessage(0)}}return function(e){_.t.setTimeout(e,0)}};
var nf=function(){this.o=this.j=null};nf.prototype.add=function(a,b){var c=of.get();c.set(a,b);this.o?this.o.next=c:this.j=c;this.o=c};nf.prototype.remove=function(){var a=null;this.j&&(a=this.j,this.j=this.j.next,this.j||(this.o=null),a.next=null);return a};var of=new jf(function(){return new pf},function(a){return a.reset()}),pf=function(){this.next=this.scope=this.hc=null};pf.prototype.set=function(a,b){this.hc=a;this.scope=b;this.next=null};
pf.prototype.reset=function(){this.next=this.scope=this.hc=null};
var qf,rf,sf,tf,vf;_.uf=function(a,b){qf||rf();sf||(qf(),sf=!0);tf.add(a,b)};rf=function(){if(_.t.Promise&&_.t.Promise.resolve){var a=_.t.Promise.resolve(void 0);qf=function(){a.then(vf)}}else qf=function(){var b=vf;"function"!==typeof _.t.setImmediate||_.t.Window&&_.t.Window.prototype&&!_.z("Edge")&&_.t.Window.prototype.setImmediate==_.t.setImmediate?(lf||(lf=mf()),lf(b)):_.t.setImmediate(b)}};sf=!1;tf=new nf;
vf=function(){for(var a;a=tf.remove();){try{a.hc.call(a.scope)}catch(b){hf(b)}kf(of,a)}sf=!1};
_.wf=function(a){if(!a)return!1;try{return!!a.$goog_Thenable}catch(b){return!1}};
var zf,Mf,If,Gf,Hf,Nf,Lf,Of;_.yf=function(a){this.j=0;this.F=void 0;this.B=this.o=this.A=null;this.C=this.D=!1;if(a!=_.Ba)try{var b=this;a.call(void 0,function(c){_.xf(b,2,c)},function(c){_.xf(b,3,c)})}catch(c){_.xf(this,3,c)}};zf=function(){this.next=this.context=this.o=this.A=this.j=null;this.B=!1};zf.prototype.reset=function(){this.context=this.o=this.A=this.j=null;this.B=!1};
var Af=new jf(function(){return new zf},function(a){a.reset()}),Bf=function(a,b,c){var d=Af.get();d.A=a;d.o=b;d.context=c;return d};_.yf.prototype.then=function(a,b,c){return Cf(this,"function"===typeof a?a:null,"function"===typeof b?b:null,c)};_.yf.prototype.$goog_Thenable=!0;_.Df=function(a,b){return Cf(a,null,b,void 0)};_.yf.prototype.cancel=function(a){if(0==this.j){var b=new _.Ef(a);_.uf(function(){Ff(this,b)},this)}};
var Ff=function(a,b){if(0==a.j)if(a.A){var c=a.A;if(c.o){for(var d=0,e=null,f=null,g=c.o;g&&(g.B||(d++,g.j==a&&(e=g),!(e&&1<d)));g=g.next)e||(f=g);e&&(0==c.j&&1==d?Ff(c,b):(f?(d=f,d.next==c.B&&(c.B=d),d.next=d.next.next):Gf(c),Hf(c,e,3,b)))}a.A=null}else _.xf(a,3,b)},Jf=function(a,b){a.o||2!=a.j&&3!=a.j||If(a);a.B?a.B.next=b:a.o=b;a.B=b},Cf=function(a,b,c,d){var e=Bf(null,null,null);e.j=new _.yf(function(f,g){e.A=b?function(k){try{var l=b.call(d,k);f(l)}catch(m){g(m)}}:f;e.o=c?function(k){try{var l=
c.call(d,k);void 0===l&&k instanceof _.Ef?g(k):f(l)}catch(m){g(m)}}:g});e.j.A=a;Jf(a,e);return e.j};_.yf.prototype.J=function(a){this.j=0;_.xf(this,2,a)};_.yf.prototype.K=function(a){this.j=0;_.xf(this,3,a)};_.xf=function(a,b,c){0==a.j&&(a===c&&(b=3,c=new TypeError("t")),a.j=1,_.Kf(c,a.J,a.K,a)||(a.F=c,a.j=b,a.A=null,If(a),3!=b||c instanceof _.Ef||Lf(a,c)))};
_.Kf=function(a,b,c,d){if(a instanceof _.yf)return Jf(a,Bf(b||_.Ba,c||null,d)),!0;if(_.wf(a))return a.then(b,c,d),!0;if(_.Da(a))try{var e=a.then;if("function"===typeof e)return Mf(a,e,b,c,d),!0}catch(f){return c.call(d,f),!0}return!1};Mf=function(a,b,c,d,e){var f=!1,g=function(l){f||(f=!0,c.call(e,l))},k=function(l){f||(f=!0,d.call(e,l))};try{b.call(a,g,k)}catch(l){k(l)}};If=function(a){a.D||(a.D=!0,_.uf(a.G,a))};Gf=function(a){var b=null;a.o&&(b=a.o,a.o=b.next,b.next=null);a.o||(a.B=null);return b};
_.yf.prototype.G=function(){for(var a;a=Gf(this);)Hf(this,a,this.j,this.F);this.D=!1};Hf=function(a,b,c,d){if(3==c&&b.o&&!b.B)for(;a&&a.C;a=a.A)a.C=!1;if(b.j)b.j.A=null,Nf(b,c,d);else try{b.B?b.A.call(b.context):Nf(b,c,d)}catch(e){Of.call(null,e)}kf(Af,b)};Nf=function(a,b,c){2==b?a.A.call(a.context,c):a.o&&a.o.call(a.context,c)};Lf=function(a,b){a.C=!0;_.uf(function(){a.C&&Of.call(null,b)})};Of=hf;_.Ef=function(a){_.aa.call(this,a)};_.x(_.Ef,_.aa);_.Ef.prototype.name="cancel";
}catch(e){_._DumpException(e)}
try{
/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
var Uf;_.Pf=function(a){a&&"function"==typeof a.oa&&a.oa()};_.Qf=function(a){var b=[],c=0,d;for(d in a)b[c++]=a[d];return b};_.Rf=function(a,b){b=_.Id(_.Pf,b);a.Tb?b():(a.Va||(a.Va=[]),a.Va.push(b))};_.Sf=function(a){var b=0,c;for(c in a.j){for(var d=a.j[c],e=0;e<d.length;e++)++b,_.Le(d[e]);delete a.j[c];a.o--}};_.Tf=function(a,b){if((0,_.yb)())for(;a.lastChild;)a.removeChild(a.lastChild);a.innerHTML=_.ub(b)};_.Vf=function(a){return/^[\s\xa0]*$/.test(a)};
_.Wf=function(a,b){return"string"===typeof b?a.getElementById(b):b};_.Xf=function(a){return"CSS1Compat"==a.compatMode};_.Yf=function(a){a=(a||window).document;a=_.Xf(a)?a.documentElement:a.body;return new _.de(a.clientWidth,a.clientHeight)};_.Zf=function(a){return a?a.parentWindow||a.defaultView:window};_.$f=function(a){return _.ae&&void 0!=a.children?a.children:Array.prototype.filter.call(a.childNodes,function(b){return 1==b.nodeType})};
_.ag=function(a,b){if(!a||!b)return!1;if(a.contains&&1==b.nodeType)return a==b||a.contains(b);if("undefined"!=typeof a.compareDocumentPosition)return a==b||!!(a.compareDocumentPosition(b)&16);for(;b&&a!=b;)b=b.parentNode;return b==a};_.bg=function(a){try{var b=a&&a.activeElement;return b&&b.nodeName?b:null}catch(c){return null}};_.cg=function(a){this.j=a||_.t.document||document};_.h=_.cg.prototype;_.h.H=function(a){return _.Wf(this.j,a)};_.h.Aa=function(a,b,c){return _.ke(this.j,arguments)};
_.h.createElement=function(a){return _.ie(this.j,a)};_.h.Td=function(a,b){a.appendChild(b)};_.h.Mf=_.me;_.h.Ud=_.ne;_.h.oh=_.$f;_.h.Lf=_.ag;_.dg=function(a){return a?new _.cg(_.pe(a)):Uf||(Uf=new _.cg)};_.S=function(){_.K.call(this);this.Eb=new _.Me(this);this.Vh=this;this.Ld=null};_.x(_.S,_.K);_.S.prototype[_.He]=!0;_.h=_.S.prototype;_.h.Oi=function(){return this.Ld};_.h.Pc=function(a){this.Ld=a};_.h.addEventListener=function(a,b,c,d){_.Q(this,a,b,c,d)};
_.h.removeEventListener=function(a,b,c,d){_.Ze(this,a,b,c,d)};
_.h.dispatchEvent=function(a){var b,c=this.Ld;if(c)for(b=[];c;c=c.Ld)b.push(c);c=this.Vh;var d=a.type||a;if("string"===typeof a)a=new _.Ee(a,c);else if(a instanceof _.Ee)a.target=a.target||c;else{var e=a;a=new _.Ee(d,c);_.fa(a,e)}e=!0;if(b)for(var f=b.length-1;!a.j&&0<=f;f--){var g=a.currentTarget=b[f];e=eg(g,d,!0,a)&&e}a.j||(g=a.currentTarget=c,e=eg(g,d,!0,a)&&e,a.j||(e=eg(g,d,!1,a)&&e));if(b)for(f=0;!a.j&&f<b.length;f++)g=a.currentTarget=b[f],e=eg(g,d,!1,a)&&e;return e};
_.h.P=function(){_.S.T.P.call(this);this.Eb&&_.Sf(this.Eb);this.Ld=null};_.h.listen=function(a,b,c,d){return this.Eb.add(String(a),b,!1,c,d)};_.h.Bb=function(a,b,c,d){return this.Eb.add(String(a),b,!0,c,d)};_.h.Ca=function(a,b,c,d){return this.Eb.remove(String(a),b,c,d)};_.h.hh=function(a){return _.Oe(this.Eb,a)};
var eg=function(a,b,c,d){b=a.Eb.j[String(b)];if(!b)return!0;b=b.concat();for(var e=!0,f=0;f<b.length;++f){var g=b[f];if(g&&!g.Md&&g.capture==c){var k=g.listener,l=g.te||g.src;g.ie&&a.hh(g);e=!1!==k.call(l,d)&&e}}return e&&!d.defaultPrevented};_.S.prototype.qe=function(a,b){return this.Eb.qe(String(a),b)};_.S.prototype.Ed=function(a,b,c,d){return this.Eb.Ed(String(a),b,c,d)};_.S.prototype.hasListener=function(a,b){return this.Eb.hasListener(void 0!==a?String(a):void 0,b)};
_.fg=function(a,b){_.S.call(this);this.o=a||1;this.j=b||_.t;this.A=(0,_.v)(this.Qk,this);this.B=Date.now()};_.x(_.fg,_.S);_.h=_.fg.prototype;_.h.Yb=!1;_.h.Ib=null;_.h.Qk=function(){if(this.Yb){var a=Date.now()-this.B;0<a&&a<.8*this.o?this.Ib=this.j.setTimeout(this.A,this.o-a):(this.Ib&&(this.j.clearTimeout(this.Ib),this.Ib=null),this.dispatchEvent("tick"),this.Yb&&(this.stop(),this.start()))}};_.h.start=function(){this.Yb=!0;this.Ib||(this.Ib=this.j.setTimeout(this.A,this.o),this.B=Date.now())};
_.h.stop=function(){this.Yb=!1;this.Ib&&(this.j.clearTimeout(this.Ib),this.Ib=null)};_.h.P=function(){_.fg.T.P.call(this);this.stop();delete this.j};_.gg=function(a,b,c){if("function"===typeof a)c&&(a=(0,_.v)(a,c));else if(a&&"function"==typeof a.handleEvent)a=(0,_.v)(a.handleEvent,a);else throw Error("u");return 2147483647<Number(b)?-1:_.t.setTimeout(a,b||0)};_.hg=function(a){_.t.clearTimeout(a)};
}catch(e){_._DumpException(e)}
try{
/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
var ig,lg,og,sg,tg;ig=function(a,b,c){return 2>=arguments.length?Array.prototype.slice.call(a,b):Array.prototype.slice.call(a,b,c)};_.jg=function(a,b,c,d){Array.prototype.splice.apply(a,ig(arguments,1))};_.kg=function(a){return new _.de(a.width,a.height)};lg=0;_.mg=function(a){return Object.prototype.hasOwnProperty.call(a,_.Ea)&&a[_.Ea]||(a[_.Ea]=++lg)};_.ng=function(a){return String(a).replace(/\-([a-z])/g,function(b,c){return c.toUpperCase()})};
og=function(a){return a.replace(/(^|[\s]+)([a-z])/g,function(b,c,d){return c+d.toUpperCase()})};_.pg=function(a,b){return a==b?!0:a&&b?a.width==b.width&&a.height==b.height:!1};_.qg=function(a,b,c){return _.ke(document,arguments)};_.rg=function(a,b){if("textContent"in a)a.textContent=b;else if(3==a.nodeType)a.data=String(b);else if(a.firstChild&&3==a.firstChild.nodeType){for(;a.lastChild!=a.firstChild;)a.removeChild(a.lastChild);a.firstChild.data=String(b)}else _.me(a),a.appendChild(_.pe(a).createTextNode(String(b)))};
sg={SCRIPT:1,STYLE:1,HEAD:1,IFRAME:1,OBJECT:1};tg={IMG:" ",BR:"\n"};_.ug=function(a,b,c){if(!(a.nodeName in sg))if(3==a.nodeType)c?b.push(String(a.nodeValue).replace(/(\r\n|\r|\n)/g,"")):b.push(a.nodeValue);else if(a.nodeName in tg)b.push(tg[a.nodeName]);else for(a=a.firstChild;a;)_.ug(a,b,c),a=a.nextSibling};
var zg,vg;_.yg=function(a,b,c){if("string"===typeof b)(b=vg(a,b))&&(a.style[b]=c);else for(var d in b){c=a;var e=b[d],f=vg(c,d);f&&(c.style[f]=e)}};zg={};vg=function(a,b){var c=zg[b];if(!c){var d=_.ng(b);c=d;void 0===a.style[d]&&(d=(_.Lb?"Webkit":_.Kb?"Moz":_.A?"ms":_.Hb?"O":null)+og(d),void 0!==a.style[d]&&(c=d));zg[b]=c}return c};_.Ag=function(a,b){var c=a.style[_.ng(b)];return"undefined"!==typeof c?c:a.style[vg(a,b)]||""};
_.Bg=function(a,b){var c=_.pe(a);return c.defaultView&&c.defaultView.getComputedStyle&&(a=c.defaultView.getComputedStyle(a,null))?a[b]||a.getPropertyValue(b)||"":""};_.Cg=function(a,b){return _.Bg(a,b)||(a.currentStyle?a.currentStyle[b]:null)||a.style&&a.style[b]};_.Dg=function(a){try{return a.getBoundingClientRect()}catch(b){return{left:0,top:0,right:0,bottom:0}}};_.Eg=function(a,b){"number"==typeof a&&(a=(b?Math.round(a):a)+"px");return a};
_.Gg=function(a){var b=_.Fg;if("none"!=_.Cg(a,"display"))return b(a);var c=a.style,d=c.display,e=c.visibility,f=c.position;c.visibility="hidden";c.position="absolute";c.display="inline";a=b(a);c.display=d;c.position=f;c.visibility=e;return a};_.Fg=function(a){var b=a.offsetWidth,c=a.offsetHeight,d=_.Lb&&!b&&!c;return(void 0===b||d)&&a.getBoundingClientRect?(a=_.Dg(a),new _.de(a.right-a.left,a.bottom-a.top)):new _.de(b,c)};_.Hg=_.Kb?"MozUserSelect":_.Lb||_.Ib?"WebkitUserSelect":null;
}catch(e){_._DumpException(e)}
try{
/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
var Ig,Kg;Ig=function(a,b){return null!==a&&b in a?a[b]:void 0};_.Jg=function(a){if(48<=a&&57>=a||96<=a&&106>=a||65<=a&&90>=a||(_.Lb||_.Ib)&&0==a)return!0;switch(a){case 32:case 43:case 63:case 64:case 107:case 109:case 110:case 111:case 186:case 59:case 189:case 187:case 61:case 188:case 190:case 191:case 192:case 222:case 219:case 220:case 221:case 163:case 58:return!0;case 173:return _.Kb;default:return!1}};
Kg=function(a){switch(a){case 61:return 187;case 59:return 186;case 173:return 189;case 224:return 91;case 0:return 224;default:return a}};_.Lg=function(a){if(_.Kb)a=Kg(a);else if(_.Mb&&_.Lb)switch(a){case 93:a=91}return a};
_.Mg=function(a,b,c,d,e,f){if(_.Lb&&!_.Zd("525"))return!0;if(_.Mb&&e)return _.Jg(a);if(e&&!d)return!1;if(!_.Kb){"number"===typeof b&&(b=_.Lg(b));var g=17==b||18==b||_.Mb&&91==b;if((!c||_.Mb)&&g||_.Mb&&16==b&&(d||f))return!1}if((_.Lb||_.Ib)&&d&&c)switch(a){case 220:case 219:case 221:case 192:case 186:case 189:case 187:case 188:case 190:case 191:case 192:case 222:return!1}if(_.A&&d&&b==a)return!1;switch(a){case 13:return _.Kb?f||e?!1:!(c&&d):!0;case 27:return!(_.Lb||_.Ib||_.Kb)}return _.Kb&&(d||e||
f)?!1:_.Jg(a)};_.Ng=function(){};_.Ca(_.Ng);_.Ng.prototype.j=0;_.Og=function(a){return":"+(a.j++).toString(36)};
var Pg,Tg;_.Qg=function(a){_.S.call(this);this.j=a||_.dg();this.$=Pg;this.W=null;this.Da=!1;this.o=null;this.M=void 0;this.J=this.C=this.A=this.D=null;this.Ga=!1};_.x(_.Qg,_.S);_.Qg.prototype.tb=_.Ng.na();Pg=null;_.Rg=function(a){return a.W||(a.W=_.Og(a.tb))};_.Qg.prototype.H=function(){return this.o};_.Sg=function(a){a.M||(a.M=new _.cf(a));return a.M};
Tg=function(a,b){if(a==b)throw Error("x");var c;if(c=b&&a.A&&a.W){c=a.A;var d=a.W;c=c.J&&d?Ig(c.J,d)||null:null}if(c&&a.A!=b)throw Error("x");a.A=b;_.Qg.T.Pc.call(a,b)};_.Qg.prototype.Pc=function(a){if(this.A&&this.A!=a)throw Error("y");_.Qg.T.Pc.call(this,a)};_.Qg.prototype.Jb=function(){this.o=this.j.createElement("DIV")};_.Qg.prototype.render=function(a){Ug(this,a)};
var Ug=function(a,b,c){if(a.Da)throw Error("z");a.o||a.Jb();b?b.insertBefore(a.o,c||null):a.j.j.body.appendChild(a.o);a.A&&!a.A.Da||a.Ea()};_.h=_.Qg.prototype;_.h.hg=function(){return!0};_.h.Zb=function(a){this.o=a};_.h.Ea=function(){this.Da=!0;_.Vg(this,function(a){!a.Da&&a.H()&&a.Ea()})};_.h.lb=function(){_.Vg(this,function(a){a.Da&&a.lb()});this.M&&_.gf(this.M);this.Da=!1};
_.h.P=function(){this.Da&&this.lb();this.M&&(this.M.oa(),delete this.M);_.Vg(this,function(a){a.oa()});!this.Ga&&this.o&&_.ne(this.o);this.A=this.D=this.o=this.J=this.C=null;_.Qg.T.P.call(this)};
_.h.Fc=function(a,b,c){if(a.Da&&(c||!this.Da))throw Error("z");if(0>b||b>_.Wg(this))throw Error("B");this.J&&this.C||(this.J={},this.C=[]);if(a.A==this){var d=_.Rg(a);this.J[d]=a;_.Ae(this.C,a)}else{d=this.J;var e=_.Rg(a);if(null!==d&&e in d)throw Error("i`"+e);d[e]=a}Tg(a,this);_.jg(this.C,b,0,a);a.Da&&this.Da&&a.A==this?(c=this.Qc(),(c.childNodes[b]||null)!=a.H()&&(a.H().parentElement==c&&c.removeChild(a.H()),b=c.childNodes[b]||null,c.insertBefore(a.H(),b))):c?(this.o||this.Jb(),b=_.Xg(this,b+1),
Ug(a,this.Qc(),b?b.o:null)):this.Da&&!a.Da&&a.o&&a.o.parentNode&&1==a.o.parentNode.nodeType&&a.Ea()};_.h.Qc=function(){return this.o};_.Wg=function(a){return a.C?a.C.length:0};_.Xg=function(a,b){return a.C?a.C[b]||null:null};_.Vg=function(a,b,c){a.C&&a.C.forEach(b,c)};_.Qg.prototype.od=function(a,b){if(a){var c="string"===typeof a?a:_.Rg(a);a=this.J&&c?Ig(this.J,c)||null:null;if(c&&a){var d=this.J;c in d&&delete d[c];_.Ae(this.C,a);b&&(a.lb(),a.o&&_.ne(a.o));Tg(a,null)}}if(!a)throw Error("C");return a};
}catch(e){_._DumpException(e)}
try{
/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
_.Yg=!_.A&&!_.qb();
}catch(e){_._DumpException(e)}
try{
/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
_.$g=function(a,b,c){_.Zg.listen(b,c,void 0,a.U||a,a);return a};_.ah=function(a,b){b=b instanceof _.Za?b:_.fb(b);a.href=_.$a(b)};_.bh=function(a,b){var c=b||document;return c.querySelectorAll&&c.querySelector?c.querySelectorAll("."+a):_.fe(document,"*",a,b)};_.ch=function(a,b){b.parentNode&&b.parentNode.insertBefore(a,b.nextSibling)};_.dh=function(a,b){return b?_.qe(a,function(c){return!b||"string"===typeof c.className&&_.ca(c.className.split(/\s+/),b)},void 0):null};
var eh,fh;eh=function(){};_.Zg=new eh;fh=["click","keydown","keyup"];eh.prototype.listen=function(a,b,c,d,e){var f=function(g){var k=_.Te(b),l=_.oe(g.target)?g.target.getAttribute("role")||null:null;"click"==g.type&&_.bf(g)?k.call(d,g):13!=g.keyCode&&3!=g.keyCode||"keyup"==g.type?32!=g.keyCode||"keyup"!=g.type||"button"!=l&&"tab"!=l&&"radio"!=l||(k.call(d,g),g.preventDefault()):(g.type="keypress",k.call(d,g))};f.Nb=b;f.Dk=d;e?e.listen(a,fh,f,c):_.Q(a,fh,f,c)};
eh.prototype.Ca=function(a,b,c,d,e){for(var f,g=0;f=fh[g];g++){var k=a;var l=f;var m=!!c;l=_.Ie(k)?k.qe(l,m):k?(k=_.Ve(k))?k.qe(l,m):[]:[];for(k=0;m=l[k];k++){var q=m.listener;if(q.Nb==b&&q.Dk==d){e?e.Ca(a,f,m.listener,c,d):_.Ze(a,f,m.listener,c,d);break}}}};
}catch(e){_._DumpException(e)}
try{
/*