-
Notifications
You must be signed in to change notification settings - Fork 0
/
chatapp.html
941 lines (914 loc) · 215 KB
/
chatapp.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
<!DOCTYPE html>
<html class='ltr' dir='ltr' lang='en' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'><head><meta content='width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1' name='viewport'/><meta content='general' name='rating'/><title>Chat App Beta By Pranav Dileep</title><link href='//1.bp.blogspot.com' rel='dns-prefetch'/><link href='//28.2bp.blogspot.com' rel='dns-prefetch'/><link href='//3.bp.blogspot.com' rel='dns-prefetch'/><link href='//4.bp.blogspot.com' rel='dns-prefetch'/><link href='//www.blogger.com' rel='dns-prefetch'/><link href='//maxcdn.bootstrapcdn.com' rel='dns-prefetch'/><link href='//fonts.googleapis.com' rel='dns-prefetch'/><link href='//use.fontawesome.com' rel='dns-prefetch'/><link href='//ajax.googleapis.com' rel='dns-prefetch'/><link href='//resources.blogblog.com' rel='dns-prefetch'/><link href='//www.facebook.com' rel='dns-prefetch'/><link href='//plus.google.com' rel='dns-prefetch'/><link href='//twitter.com' rel='dns-prefetch'/><link href='//www.youtube.com' rel='dns-prefetch'/><link href='//feedburner.google.com' rel='dns-prefetch'/><link href='//www.pinterest.com' rel='dns-prefetch'/><link href='//www.linkedin.com' rel='dns-prefetch'/><link href='//www.behance.net' rel='dns-prefetch'/><link href='//feeds.feedburner.com' rel='dns-prefetch'/><link href='//github.com' rel='dns-prefetch'/><link href='//player.vimeo.com' rel='dns-prefetch'/><link href='//platform.twitter.com' rel='dns-prefetch'/><link href='//apis.google.com' rel='dns-prefetch'/><link href='//connect.facebook.net' rel='dns-prefetch'/><link href='//cdnjs.cloudflare.com' rel='dns-prefetch'/><link href='//www.google-analytics.com' rel='dns-prefetch'/><link href='//pagead2.googlesyndication.com' rel='dns-prefetch'/><link href='//googleads.g.doubleclick.net' rel='dns-prefetch'/><link href='//www.gstatic.com' rel='dns-prefetch'/><link href='//www.googletagservices.com' rel='dns-prefetch'/><link href='//static.xx.fbcdn.net' rel='dns-prefetch'/><link href='//tpc.googlesyndication.com' rel='dns-prefetch'/><link href='//syndication.twitter.com' rel='dns-prefetch'/><link href='//w.sharethis.com' rel='dns-prefetch'/><link href='//edge.sharethis.com' rel='dns-prefetch'/><link href='//t.sharethis.com' rel='dns-prefetch'/><link href='//s7.addthis.com' rel='dns-prefetch'/><meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/><meta content='blogger' name='generator'/><link href='https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/favicon.ico' rel='icon' type='image/x-icon'/><meta content='#01875f' name='theme-color'/><meta content='#01875f' name='msapplication-navbutton-color'/><meta content='index/follow' name='robots'/><meta content='index/follow' name='googlebot'/><link href='https://www.blogger.com/openid-server.g' rel='openid.server'/><link href='https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/?m=1' rel='openid.delegate'/><link href='https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html' rel='canonical'/><link href='https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html' rel='canonical'/><link rel="alternate" type="application/atom+xml" title="Goolge Plays - Atom" href="https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/feeds/posts/default" />
<link rel="alternate" type="application/rss+xml" title="Goolge Plays - RSS" href="https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/feeds/posts/default?alt=rss" />
<link rel="service.post" type="application/atom+xml" title="Goolge Plays - Atom" href="https://www.blogger.com/feeds/1514000847673033007/posts/default" />
<link rel="alternate" type="application/atom+xml" title="Goolge Plays - Atom" href="https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/feeds/1690150740204473703/comments/default" />
<meta content='Chat App Beta By Pranav Dileep' name='description'/><link href='https://1.bp.blogspot.com/-coSY0YIkEqs/Xemn1AkA6eI/AAAAAAAAAW4/KHj0QUGhi7AU7OkUwtL8RhXWzB2yFAvgACLcBGAsYHQ/s1600/unnamed.png' rel='image_src'/><meta content='article' property='og:type'/><meta content='Chat App Beta By Pranav Dileep' property='og:title'/><meta content='https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html' property='og:url'/><meta content='Enjoy millions of the latest free, paid, and mod Android Apps, Games, & more. Anytime, anywhere, across your devices.' property='og:description'/><meta content='Goolge Plays' property='og:site_name'/><meta content='https://1.bp.blogspot.com/-coSY0YIkEqs/Xemn1AkA6eI/AAAAAAAAAW4/KHj0QUGhi7AU7OkUwtL8RhXWzB2yFAvgACLcBGAsYHQ/s1600/unnamed.png' property='og:image'/><meta content='https://1.bp.blogspot.com/-coSY0YIkEqs/Xemn1AkA6eI/AAAAAAAAAW4/KHj0QUGhi7AU7OkUwtL8RhXWzB2yFAvgACLcBGAsYHQ/s1600/unnamed.png' name='twitter:image'/><meta content='summary_large_image' name='twitter:card'/><meta content='Chat App Beta By Pranav Dileep' name='twitter:title'/><meta content='https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html' name='twitter:domain'/><meta content='Enjoy millions of the latest free, paid, and mod Android Apps, Games, & more. Anytime, anywhere, across your devices.' name='twitter:description'/>
<style id='page-skin-1' type='text/css'><!--
/*
-----------------------------------------------
Template Name : Goolge Play v2
Version : 1.0.0
Author : Yasya El Hakim
Author Url : https://bit.ly/2ZdDxHf
Publisher : EL Creative Organization
Publisher Url : https://bit.ly/2Z5lQto
-----------------------------------------------
*/
/*-- Google Font --*/
@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:local('Google Sans Regular'),local(GoogleSans-Regular),url(//fonts.gstatic.com/s/googlesans/v5/4UaGrENHsxJlGDuGo1OIlL3Kwp5MKg.woff2) format("woff2");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:local('Google Sans Regular'),local(GoogleSans-Regular),url(//fonts.gstatic.com/s/googlesans/v5/4UaGrENHsxJlGDuGo1OIlL3Nwp5MKg.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:local('Google Sans Regular'),local(GoogleSans-Regular),url(//fonts.gstatic.com/s/googlesans/v5/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}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:local('Google Sans Regular'),local(GoogleSans-Regular),url(//fonts.gstatic.com/s/googlesans/v5/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}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:local('Google Sans Medium'),local(GoogleSans-Medium),url(//fonts.gstatic.com/s/googlesans/v5/4UabrENHsxJlGDuGo1OIlLU94Yt3CwZ-Pw.woff2) format("woff2");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:local('Google Sans Medium'),local(GoogleSans-Medium),url(//fonts.gstatic.com/s/googlesans/v5/4UabrENHsxJlGDuGo1OIlLU94YtwCwZ-Pw.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:local('Google Sans Medium'),local(GoogleSans-Medium),url(//fonts.gstatic.com/s/googlesans/v5/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}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:local('Google Sans Medium'),local(GoogleSans-Medium),url(//fonts.gstatic.com/s/googlesans/v5/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}
*{-webkit-tap-highlight-color:rgba(0,0,0,0)}
/*-- Reset CSS --*/
html {scroll-behavior: smooth; }
a, abbr, acronym, address, applet, b, big, blockquote, body, caption, center, cite, code, dd, del, dfn, div, dl, dt, em, fieldset, font, form, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, kbd, label, legend, li, object, p, pre, q, s, samp, small, span, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, var {padding: 0; border: 0; outline: 0; vertical-align: baseline; background: 0 0; text-decoration: none }
form, textarea, input, button {-webkit-appearance: none; -moz-appearance: none; appearance: none; outline: none; -webkit-box-sizing: border-box; box-sizing: border-box; border-radius: 0 }
dl, ul {list-style-position: inside; font-weight: 400; list-style: none }
ul li {list-style: none }
caption, th {text-align: center }
img {border: none; position: relative }
a, a:visited {text-decoration: none }
.clearfix {clear: both }
.section, .widget, .widget ul {margin: 0; padding: 0 }
a {color: #01875f }
a img {border: 0 }
abbr {text-decoration: none }
.CSS_LIGHTBOX {z-index: 999999!important }
.CSS_LIGHTBOX_ATTRIBUTION_INDEX_CONTAINER .CSS_HCONT_CHILDREN_HOLDER>.CSS_LAYOUT_COMPONENT.CSS_HCONT_CHILD:first-child>.CSS_LAYOUT_COMPONENT {opacity: 0 }
.separator a {clear: none!important; float: none!important; margin-left: 0!important; margin-right: 0!important }
#Navbar1, #navbar-iframe, .widget-item-control, a.quickedit, .home-link, .feed-links {display: none!important }
.center {display: table; margin: 0 auto; position: relative }
.widget>h2, .widget>h3 {display: none }
.widget iframe, .widget img {max-width: 100% }
/*-- Body Content --*/
:root {--body-font: 'Google Sans',sans-serif; --title-font: 'Google Sans',sans-serif; --meta-font: 'Google Sans',sans-serif; --text-font: 'Google Sans',sans-serif }
body {position: relative; background: #ffffff url() repeat scroll top left; font-family: var(--body-font); font-size: 14px; color: #656565; font-weight: 400; font-style: normal; line-height: 1.4em; word-wrap: break-word; margin: 0; padding: 0; counter-reset: my-sec-counter; }
.no-items.section {display: none }
h1, h2, h3, h4, h5, h6 {font-family: var(--title-font); font-weight: 500 }
#r9DegAOyDFZ {margin: 0 auto; background-color: #ffffff; }
.uSaddoqbqZa {width: 1078px }
#tkmTfYToUZG { position: relative; float: left; width: 100%; overflow: hidden; margin: 0; border-top: 0; margin-top: 15px;}
#tkmTfYToUZG > .container {overflow: hidden; max-width: 980px; margin-left: 315px; width: auto; margin-right: 30px; -webkit-transition: background-color .2s; -o-transition: background-color .2s; transition: background-color .2s; }
#tkmTfYToUZG > .container.eDdXcdYuDgV {margin: 0 auto; }
.theiaStickySidebar {left: auto !important; }
.nav-active .theiaStickySidebar {left: auto !important; }
.nav-active #tkmTfYToUZG > .container, .error404 #tkmTfYToUZG > .container {margin: 0 auto; }
#KRAidVdnwjq {position: relative; float: left; width: calc(100% - (320px + 30px)); -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0 }
#mYCTShOgfYC {position: relative; float: right; width: 320px; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0 }
.iDsdFYwGitp, .custom-avatar, .comments .avatar-image-container {overflow: hidden; z-index: 5; color: transparent!important }
.gjSjwMVbXQb {display: block; position: relative; width: 100%; height: 100%; background-size: cover; background-position: center center; background-repeat: no-repeat; z-index: 1; opacity: 0; -webkit-transition: opacity .35s ease, -webkit-transform .3s ease; transition: opacity .35s ease, -webkit-transform .3s ease; -o-transition: opacity .35s ease, transform .3s ease; transition: opacity .35s ease, transform .3s ease; transition: opacity .35s ease, transform .3s ease, -webkit-transform .3s ease }
.gjSjwMVbXQb.elcreative-lazy {opacity: 1 }
.iDsdFYwGitp:hover .gjSjwMVbXQb, .featured-item-inner:hover .gjSjwMVbXQb, .column-inner:hover .gjSjwMVbXQb {-webkit-transform: scale(1.05); -ms-transform: scale(1.05); transform: scale(1.05) }
.FxBY-BvsuAW {color: #171c24 }
.FxBY-BvsuAW a {color: #171c24; display: block }
.FxBY-BvsuAW a:hover {color: #01875f; text-decoration: underline; }
aside .widget-content a {color: #171c24; }
aside .widget-content a:hover {color: #01875f; }
aside .widget-content .FHmlCbpwBfF span {color: #656565 }
.nvAbKe-CNil {font-family: var(--text-font) }
/* Social */
.fTGiWP_LEyO .blogger a, .fTGiWP_LEyO-hover .blogger a:hover {background-color: #ff5722 }
.fTGiWP_LEyO .facebook a, .fTGiWP_LEyO .facebook-f a, .fTGiWP_LEyO-hover .facebook a:hover, .fTGiWP_LEyO-hover .facebook-f a:hover {background-color: #3b5999 }
.fTGiWP_LEyO .twitter a, .fTGiWP_LEyO-hover .twitter a:hover {background-color: #00acee }
.fTGiWP_LEyO .youtube a, .fTGiWP_LEyO-hover .youtube a:hover {background-color: #f50000 }
.fTGiWP_LEyO .instagram a, .fTGiWP_LEyO-hover .instagram a:hover {background: -o-linear-gradient(75deg, #ffb13d, #dd277b, #4d5ed4); background: linear-gradient(15deg, #ffb13d, #dd277b, #4d5ed4) }
.fTGiWP_LEyO .pinterest a, .fTGiWP_LEyO .pinterest-p a, .fTGiWP_LEyO-hover .pinterest a:hover, .fTGiWP_LEyO-hover .pinterest-p a:hover {background-color: #ca2127 }
.fTGiWP_LEyO .dribbble a, .fTGiWP_LEyO-hover .dribbble a:hover {background-color: #ea4c89 }
.fTGiWP_LEyO .linkedin a, .fTGiWP_LEyO-hover .linkedin a:hover {background-color: #0077b5 }
.fTGiWP_LEyO .tumblr a, .fTGiWP_LEyO-hover .tumblr a:hover {background-color: #365069 }
.fTGiWP_LEyO .twitch a,
.fTGiWP_LEyO-hover .twitch a:hover {background-color: #6441a5 }
.fTGiWP_LEyO .rss a, .fTGiWP_LEyO-hover .rss a:hover {background-color: #ffc200 }
.fTGiWP_LEyO .skype a, .fTGiWP_LEyO-hover .skype a:hover {background-color: #00aff0 }
.fTGiWP_LEyO .stumbleupon a, .fTGiWP_LEyO-hover .stumbleupon a:hover {background-color: #eb4823 }
.fTGiWP_LEyO .vk a, .fTGiWP_LEyO-hover .vk a:hover {background-color: #4a76a8 }
.fTGiWP_LEyO .stack-overflow a, .fTGiWP_LEyO-hover .stack-overflow a:hover {background-color: #f48024 }
.fTGiWP_LEyO .github a, .fTGiWP_LEyO-hover .github a:hover {background-color: #24292e }
.fTGiWP_LEyO .soundcloud a, .fTGiWP_LEyO-hover .soundcloud a:hover {background: -o-linear-gradient(#ff7400, #ff3400); background: -webkit-gradient(linear, left top, left bottom, from(#ff7400), to(#ff3400)); background: linear-gradient(#ff7400, #ff3400) }
.fTGiWP_LEyO .behance a, .fTGiWP_LEyO-hover .behance a:hover {background-color: #191919 }
.fTGiWP_LEyO .digg a, .fTGiWP_LEyO-hover .digg a:hover {background-color: #1b1a19 }
.fTGiWP_LEyO .delicious a, .fTGiWP_LEyO-hover .delicious a:hover {background-color: #0076e8 }
.fTGiWP_LEyO .codepen a, .fTGiWP_LEyO-hover .codepen a:hover {background-color: #000 }
.fTGiWP_LEyO .flipboard a, .fTGiWP_LEyO-hover .flipboard a:hover {background-color: #f52828 }
.fTGiWP_LEyO .reddit a, .fTGiWP_LEyO-hover .reddit a:hover {background-color: #ff4500 }
.fTGiWP_LEyO .whatsapp a, .fTGiWP_LEyO-hover .whatsapp a:hover {background-color: #3fbb50 }
.fTGiWP_LEyO .messenger a, .fTGiWP_LEyO-hover .messenger a:hover {background-color: #0084ff }
.fTGiWP_LEyO .snapchat a, .fTGiWP_LEyO-hover .snapchat a:hover {background-color: #ffe700 }
.fTGiWP_LEyO .telegram a, .fTGiWP_LEyO-hover .telegram a:hover {background-color: #179cde }
.fTGiWP_LEyO .discord a, .fTGiWP_LEyO-hover .discord a:hover {background-color: #7289da }
.fTGiWP_LEyO .share a, .fTGiWP_LEyO-hover .share a:hover {background-color: #656565 }
.fTGiWP_LEyO .email a, .fTGiWP_LEyO-hover .email a:hover {background-color: #888 }
.fTGiWP_LEyO .external-link a, .fTGiWP_LEyO-hover .external-link a:hover {background-color: #035b41 }
.social-color .blogger a, .gfwyUZuXStJ .blogger a:hover {color: #ff5722 }
.social-color .facebook a, .social-color .facebook-f a, .gfwyUZuXStJ .facebook a:hover, .gfwyUZuXStJ .facebook-f a:hover {color: #3b5999 }
.social-color .twitter a, .gfwyUZuXStJ .twitter a:hover {color: #00acee }
.social-color .youtube a, .gfwyUZuXStJ .youtube a:hover {color: #f50000 }
.social-color .instagram a, .gfwyUZuXStJ .instagram a:hover {color: #dd277b }
.social-color .pinterest a, .social-color .pinterest-p a, .gfwyUZuXStJ .pinterest a:hover, .gfwyUZuXStJ .pinterest-p a:hover {color: #ca2127 }
.social-color .dribbble a, .gfwyUZuXStJ .dribbble a:hover {color: #ea4c89 }
.social-color .linkedin a, .gfwyUZuXStJ .linkedin a:hover {color: #0077b5 }
.social-color .tumblr a, .gfwyUZuXStJ .tumblr a:hover {color: #365069 }
.social-color .twitch a, .gfwyUZuXStJ .twitch a:hover {color: #6441a5 }
.social-color .rss a, .gfwyUZuXStJ .rss a:hover {color: #ffc200 }
.social-color .skype a, .gfwyUZuXStJ .skype a:hover {color: #00aff0 }
.social-color .stumbleupon a, .gfwyUZuXStJ .stumbleupon a:hover {color: #eb4823 }
.social-color .vk a, .gfwyUZuXStJ .vk a:hover {color: #4a76a8 }
.social-color .stack-overflow a, .gfwyUZuXStJ .stack-overflow a:hover {color: #f48024 }
.social-color .github a, .gfwyUZuXStJ .github a:hover {color: #24292e }
.social-color .soundcloud a, .gfwyUZuXStJ .soundcloud a:hover {color: #ff7400 }
.social-color .behance a, .gfwyUZuXStJ .behance a:hover {color: #191919 }
.social-color .digg a, .gfwyUZuXStJ .digg a:hover {color: #1b1a19 }
.social-color .delicious a, .gfwyUZuXStJ .delicious a:hover {color: #0076e8 }
.social-color .codepen a, .gfwyUZuXStJ .codepen a:hover {color: #000 }
.social-color .flipboard a, .gfwyUZuXStJ .flipboard a:hover {color: #f52828 }
.social-color .reddit a, .gfwyUZuXStJ .reddit a:hover {color: #ff4500 }
.social-color .whatsapp a, .gfwyUZuXStJ .whatsapp a:hover {color: #3fbb50 }
.social-color .messenger a, .gfwyUZuXStJ .messenger a:hover {color: #0084ff }
.social-color .snapchat a, .gfwyUZuXStJ .snapchat a:hover {color: #ffe700 }
.social-color .telegram a, .gfwyUZuXStJ .telegram a:hover {color: #179cde }
.social-color .discord a, .gfwyUZuXStJ .discord a:hover {color: #7289da }
.social-color .share a, .gfwyUZuXStJ .share a:hover {color: #656565 }
.social-color .email a, .gfwyUZuXStJ .email a:hover {color: #888 }
.social-color .external-link a, .gfwyUZuXStJ .external-link a:hover {color: #035b41 }
.category #engOHzr-XAE {height: 158px;}
.error_page #engOHzr-XAE {visibility: hidden; }
#engOHzr-XAE {position: relative; margin: 0; height: 100px;}
.header-submenu .header-submenu-first, .header-submenu .header-submenu-second {display: none; position: static;}
.header-submenu.active .header-submenu-first {display: block; }
.header-submenu ul {padding-left: 39px; }
#quJdqxDdZwZ .CFKEr-vUdQq {-webkit-box-align: center;-ms-flex-align: center;align-items: center; display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-flex: 1; -ms-flex: 1 1; flex: 1 1; }
#quJdqxDdZwZ.eDdXcdYuDgV {-webkit-transform: translateX(-290px);-ms-transform: translateX(-290px);transform: translateX(-290px); }
.nav-active #quJdqxDdZwZ.eDdXcdYuDgV {-webkit-transform: translateX(0);-ms-transform: translateX(0);transform: translateX(0); }
#quJdqxDdZwZ ul li:not(:first-child) {display: none; }
#quJdqxDdZwZ .show-menu ul li {display: block; }
#quJdqxDdZwZ {box-shadow: 0 0 16px rgba(0, 0, 0, .28); z-index: 999; width: 280px; position: fixed; top: 0; left: 0; background-color: #ffffff; -webkit-transition: .3s; -o-transition: .3s; transition: .3s; bottom: 0; overflow: hidden; }
#quJdqxDdZwZ:hover {overflow-y: auto; }
.nav-active #quJdqxDdZwZ {-webkit-transform: translateX(-290px); -ms-transform: translateX(-290px); transform: translateX(-290px); }
#quJdqxDdZwZ .LinkList {padding-bottom: 15px; }
#quJdqxDdZwZ li.jYmWHYmIHLQ {font-weight: 500; background: rgba(66,133,244,0.149); color: #01875f; border-radius: 0 50px 50px 0;}
#quJdqxDdZwZ li.jYmWHYmIHLQ a {color: inherit;}
#quJdqxDdZwZ li.jYmWHYmIHLQ.header-submenu {background: none; }
#quJdqxDdZwZ li.jYmWHYmIHLQ.header-submenu a {background: rgba(66,133,244,0.149); border-radius: 0 50px 50px 0; }
#quJdqxDdZwZ li.jYmWHYmIHLQ.header-submenu ul li a {background: none; }
.quJdqxDdZwZ a, #Header1 p {padding: 10px 0 10px 24px; text-decoration: none; font-size: 13px; color: #171c24; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;}
#quJdqxDdZwZ .LinkList ul li::after {background: #dadce0 !important}
#Header1 a, #Header1 h1, #Header1 p {margin: 0; padding: 0; color: #fff;}
.main-logo-img {position: relative; }
.main-logo-img img {border-radius: 100%; position: absolute; left: 24px; top: 20px; height: 55px; width: 55px; }
#Header1 .header-widget {height: 160px; position: relative; z-index: 999; background-size: cover; margin-bottom: 10px; }
#Header1 .header-widget::before {content: ''; background: rgba(0, 0, 0, 0.4); width: 100%; height: 100%; position: absolute; }
#Header1 .desc {position: absolute; bottom: 0; left: 0; width: 100%; box-sizing: border-box; padding: 8px 0 24px 25px; color: white; }
.header-submenu a {padding: 10px 24px; }
.quJdqxDdZwZ a:hover {color: #01875f; fill: currentColor; }
.quJdqxDdZwZ svg {height: 24px; width: 24px; margin-right: 15px; overflow: hidden; opacity: .7; fill: currentColor; }
.quJdqxDdZwZ .down {display: block;}
.quJdqxDdZwZ svg.down {margin-right: 0;margin-left: 15px; display: block;}
.uBJy2yk5LD3.fixed {top: -55px; }
.category .uBJy2yk5LD3 {border: none}
.category .uBJy2yk5LD3 #WrwN_AXRRxg {border-bottom: .0625rem solid #dadce0; }
.uBJy2yk5LD3 {transition: top .2s cubic-bezier(.215,.61,.355,1); padding: 8px 20px 0 20px; -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; background-color: #ffffff; position: fixed; left: 0; right: 0; top: 0; width: 100%; color: #171c24; min-width: 320px; z-index: 986; border-bottom: .0625rem solid #dadce0;}
.xFAgqb93ZL8 {width: 100%; }
#SaTXKffDCdm {background: #ffffff; border: 1px solid #dadce0;}
#SaTXKffDCdm a {color: #171c24 !important}
.uBJy2yk5LD3 .Y26X1GhHSP7 {padding-bottom: 4px; flex-direction: inherit;-webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-flex: 1; -ms-flex: 1 1 100%; flex: 1 1 100%; height: 48px; vertical-align: middle; white-space: nowrap; -webkit-box-align: center; -ms-flex-align: center; align-items: center; display: -webkit-box; display: -ms-flexbox; display: flex; -moz-user-select: -moz-none; }
#hGYE_on-mcL li {padding: 12px 5px !important; }
#HFDXJSGaYND .cloud-label li {padding: 0; margin: 0 5px; }
.uBJy2yk5LD3 #WrwN_AXRRxg li, #hGYE_on-mcL li, .FgScgdcB-We .cloud-label li {position: relative; cursor: pointer; align-items: center; color: inherit; display: flex; height: 100%; justify-content: center; max-width: inherit; padding: 12px; text-decoration: none; -moz-user-select: none; white-space: normal; border-bottom: .1875rem solid transparent; min-width: max-content; scroll-snap-align: start;}
.uBJy2yk5LD3 #WrwN_AXRRxg li.jYmWHYmIHLQ {border-bottom: .1875rem solid #01875f; border-left: .1875rem solid transparent; border-right: .1875rem solid transparent; }
.uBJy2yk5LD3 #WrwN_AXRRxg li.jYmWHYmIHLQ a {color: #01875f !important;}
#hGYE_on-mcL a {font-weight: 500 !important; }
.uBJy2yk5LD3 a, #hGYE_on-mcL a {color: #5f6368 !important}
.uBJy2yk5LD3 #WrwN_AXRRxg ul, #hGYE_on-mcL ul, .FgScgdcB-We .cloud-label ul {align-items: center; display: flex; font-size: 14px; font-weight: 500; line-height: normal; height: inherit; text-align: center; margin: 0; padding: 0;}
.uBJy2yk5LD3 #WrwN_AXRRxg, #hGYE_on-mcL {flex: 1 0 auto; display: flex; list-style-type: none; transition: transform .6s cubic-bezier(.86,0,.07,1); white-space: nowrap; position: relative; justify-content: center; align-items: center; overflow: hidden; }
#Label99, #LinkList98 {overflow: hidden; max-width: 980px; scroll-snap-type: x mandatory; scroll-behavior: smooth;}
#Label99:hover, #LinkList98:hover, .Ib_ZhnupCtZ:hover {overflow: auto;}
.uBJy2yk5LD3.fixed #WrwN_AXRRxg {padding-top: 3px; }
.uBJy2yk5LD3 .W0DJlgtgItZ {box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15); width: 100%; -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; height: 43px; border-radius: 5px; background: #ffffff; border: 1px solid transparent; max-width: 980px; position: relative; -webkit-transition: background .1s ease-in, width .1s ease-out; -o-transition: background .1s ease-in, width .1s ease-out; transition: background .1s ease-in, width .1s ease-out; left: 0; }
.uBJy2yk5LD3 .byvCyiObpMU {padding: 0 5px; background: 0 0; border: none; cursor: pointer; outline: 0; line-height: 0; float: left }
.uBJy2yk5LD3 .byvCyiObpMU svg, .Y26X1GhHSP7 svg {padding: 5px; margin: 3px; border-radius: 50%; color: #5f6368; fill: currentColor; }
.uBJy2yk5LD3 .Kvi5rfk728R {font-size: initial;padding: 0; overflow: hidden; -webkit-box-sizing: border-box; box-sizing: border-box; border-color: transparent; border-style: solid; border-width: 0 1px; outline: 0; background-color: transparent; left: 0; width: -moz-available; height: 100%; display: block; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; margin-left: 50px; position: relative; font-family: inherit; color: #171c24; }
.uBJy2yk5LD3 .Kvi5rfk728R::-webkit-input-placeholder {color: #171c24;}
.uBJy2yk5LD3 .Kvi5rfk728R::-moz-placeholder {color: #171c24;}
.uBJy2yk5LD3 .Kvi5rfk728R:-ms-input-placeholder {color: #171c24;}
.uBJy2yk5LD3 .Kvi5rfk728R::-ms-input-placeholder {color: #171c24;}
.uBJy2yk5LD3 .Kvi5rfk728R::placeholder {color: #171c24;}
#engOHzr-XAE .container {flex-direction: column;position: relative; padding: 0; width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; }
.uBJy2yk5LD3 .header-button:hover, .uBJy2yk5LD3 .byvCyiObpMU svg:hover, .mRiyHvEpnOm svg:hover {background-color: rgba(60, 64, 67, 0.08); outline: none; }
.uBJy2yk5LD3 .header-button:active {background-color: rgba(60, 64, 67, 0.12); outline: none; }
.uBJy2yk5LD3 .header-button:focus, .uBJy2yk5LD3 .header-button:focus:hover {background-color: rgba(60, 64, 67, 0.1); outline: none; }
.tab-active {display: block }
.tab-animated, .post-animated {-webkit-animation-duration: .5s; animation-duration: .5s; -webkit-animation-fill-mode: both; animation-fill-mode: both }
@-webkit-keyframes fadeIn {from {opacity: 0 } to {opacity: 1 } }
@keyframes fadeIn {from {opacity: 0 } to {opacity: 1 } }
.tab-fadeIn, .post-fadeIn {-webkit-animation-name: fadeIn; animation-name: fadeIn }
@-webkit-keyframes fadeInUp {from {opacity: 0; -webkit-transform: translate3d(0, 5px, 0); transform: translate3d(0, 5px, 0) } to {opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0) } }
@keyframes fadeInUp {from {opacity: 0; -webkit-transform: translate3d(0, 5px, 0); transform: translate3d(0, 5px, 0) } to {opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0) } }
.tab-fadeInUp, .post-fadeInUp {-webkit-animation-name: fadeInUp; animation-name: fadeInUp }
.no-posts {display: block; font-size: 14px; color: #171c24; padding: 30px 0; font-weight: 400; text-align: center; }
.mega-menu .no-posts {color: #656565; text-align: center; padding: 0 }
.eoIkMNEFXCG, .CKwkyxhrxkc {visibility: hidden; opacity: 0; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(23, 28, 36, 0.6); z-index: 986; margin: 0; -webkit-transition: all .25s ease; -o-transition: all .25s ease; transition: all .25s ease }
.nav-active .eoIkMNEFXCG {visibility: visible; opacity: 1 }
.is-fixed {position: fixed; top: -60px; left: 0; width: 100%; z-index: 990; -webkit-transition: top .17s ease; -o-transition: top .17s ease; transition: top .17s ease }
.nav-active .is-fixed {top: 0 }
.MKTctinlhnV {position: relative; height: 100%; overflow: hidden; display: block; margin: 0 }
.MKTctinlhnV:after {content: ''; position: absolute; top: 50%; left: 50%; width: 28px; height: 28px; margin: -16px 0 0 -16px; border: 2px solid #01875f; border-right-color: rgba(155, 155, 155, 0.2); border-radius: 100%; -webkit-animation: spinner 1.1s infinite linear; animation: spinner 1.1s infinite linear; -webkit-transform-origin: center; -ms-transform-origin: center; transform-origin: center }
@-webkit-keyframes spinner {0% {-webkit-transform: rotate(0deg); transform: rotate(0deg) } to {-webkit-transform: rotate(1turn); transform: rotate(1turn) } }
@keyframes spinner {0% {-webkit-transform: rotate(0deg); transform: rotate(0deg) } to {-webkit-transform: rotate(1turn); transform: rotate(1turn) } }
.header-ad .widget {position: relative; float: left; width: 100%; text-align: center; line-height: 0; margin: 30px 0 0 }
.header-ad .widget>.widget-title {display: none }
.no-posts {display: block; font-size: 14px; color: #171c24; padding: 30px 0; font-weight: 400 }
.title-wrap {position: relative; float: left; width: 100%; margin: 20px 0; }
.comments-title .messages{margin-left:5px;}
.title-wrap>h3 {float: left; font-family: var(--body-font); font-size: 18px; color: #171c24; margin: 0 }
.title-wrap>a.more {float: right; font-size: 12px; color: #656565; line-height: 14px; padding: 0 }
.title-wrap>a.more svg {fill: currentcolor; height: 1.25rem; margin-left: .25rem; vertical-align: middle; width: 1.25rem; color: inherit; }
.title-wrap>a.more:hover {color: #01875f }
.item .BuwJLICAgft {box-sizing: border-box; display: inline-block; text-align: center; width: 160px;}
.item .EpzwWPboxxj {color: #171c24; font-size: 64px; font-weight: 100; line-height: 64px; }
.item .lzEbpbAhYcl {display: inherit; margin: 5px 0 0; }
.item .lzEbpbAhYcl svg {fill: #01875f}
.item .ZRoFIZiY-EB {display: inline-block;}
.item .m-GwWBFmbcL {box-sizing: border-box; width: 100%; flex-wrap: wrap; display: inherit; padding: 0 30px 0 35px;}
.item .sFBlhHLLbgx {height: 10px; margin-bottom: 10px; position: relative; width: 100%; background: #dadce0; border-radius: 100px; }
.item .qIAqXOFx_NH {top: -5px; font-size: 11px; left: -16px; letter-spacing: 1px; position: absolute; }
.item .wMtyKggcifv {transition: width .25s ease; display: inherit; height: 100%; background: #01875f; border-radius: 100px; }
.comments .qUzDzQvDZvV {margin-bottom: 55px; display: flex; flex-direction: row; position: relative; width: 100%; align-items: center; justify-content: center;}
.item .sFBlhHLLbgx:last-child {margin: 0; }
/* Custom Widgets */
.FgScgdcB-We {position: relative; float: left; width: 100%; margin: 0 }
.FgScgdcB-We .widget {display: none; position: relative; float: left; width: 100%; -webkit-box-sizing: border-box; box-sizing: border-box; margin: 0 0 15px }
#HFDXJSGaYND .Label {display: inherit; }
#HFDXJSGaYND .Label .cloud-label {overflow: hidden; scroll-snap-type: x mandatory; scroll-behavior: smooth; }
.FgScgdcB-We .showing {display: block }
.FgScgdcB-We .widget-content {position: relative; float: left; width: 100%; display: block }
.FgScgdcB-We .MKTctinlhnV {height: 180px }
.HFDXJSGaYND {position: relative; display: -webkit-box; padding: 0; overflow: hidden; }
.HFDXJSGaYND:hover, #HFDXJSGaYND .Label .cloud-label:hover {overflow: auto; }
.HFDXJSGaYND ._w_ZiGamgtb {flex: 1 1 auto; z-index: 2;}
.HFDXJSGaYND .ZqrWwtOVEFM._ny-voEHCCz0 {margin-left: 0; }
#_-JOkMVnFuS > article {scroll-snap-align: start; }
#_-JOkMVnFuS {scroll-snap-type: x mandatory; scroll-behavior: smooth; overflow: hidden; }
#_-JOkMVnFuS:hover {overflow-x: scroll; }
.HFDXJSGaYND .ZqrWwtOVEFM::before {background: linear-gradient(90deg, #ffffff 44%, rgba(255,255,255,0) 100%); content: ''; width: 100%; height: 100%; position: absolute; left: 0; z-index: 2}
.HFDXJSGaYND .ZqrWwtOVEFM {position: relative; float: left; width: 100%; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 20px; border-radius: 8px; display: flex; align-items: center; margin: 0 10px;}
.HFDXJSGaYND ._ny-voEHCCz1 {margin: 0 }
.HFDXJSGaYND .iDsdFYwGitp {position: relative; width: 100px; height: 100px; float: left; display: block; overflow: hidden; margin: 0 0 0 13px; border-radius: 8px;}
.HFDXJSGaYND .FxBY-BvsuAW {font-size: 16px; font-weight: 500; line-height: 1.4em; margin: 0 }
.HFDXJSGaYND .FHmlCbpwBfF {margin: 3px 0 0 }
.FgScgdcB-We .block-column {width: calc((100% - 30px) / 2) }
.FgScgdcB-We .column-left {float: left }
.FgScgdcB-We .column-right {float: right }
.block-column .column-item {position: relative; float: left; width: 100%; overflow: hidden; padding: 0; margin: 20px 0 0 }
.block-column .column-item._ny-voEHCCz0 {margin: 0 0 5px }
.column-inner {position: relative; width: 100%; height: 200px; overflow: hidden }
.column-posts .iDsdFYwGitp {border-radius: 8px; position: relative; width: 65px; height: 65px; float: left; display: block; overflow: hidden; margin: 0 13px 0 0 }
.column-inner .iDsdFYwGitp {width: 100%; border-radius: 8px; height: 100%; margin: 0 }
.column-posts .column-item:not(._ny-voEHCCz0) ._w_ZiGamgtb {overflow: hidden }
.column-posts .FxBY-BvsuAW {font-size: 14px; font-weight: 500; line-height: 1.4em; margin: 0 }
.column-posts .FHmlCbpwBfF {margin: 3px 0 0 }
.column-posts ._ny-voEHCCz0 .FHmlCbpwBfF {margin: 5px 0 0 }
.ekltGYwaBWb {position: relative; overflow: hidden; display: -webkit-box; display: -ms-flexbox; display: flex; padding: 0; overflow: hidden;}
.ekltGYwaBWb:hover {overflow: auto;}
.ekltGYwaBWb .ooYvIlbrvNW {position: relative; float: left; width: min-content; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0 10px; }
.ekltGYwaBWb .ooYvIlbrvNW._ny-voEHCCz0, .ekltGYwaBWb .ooYvIlbrvNW._ny-voEHCCz1, .ekltGYwaBWb .ooYvIlbrvNW._ny-voEHCCz2 {margin: 0 }
.ekltGYwaBWb .ONtk-eWxDOD {position: relative }
.ekltGYwaBWb .iDsdFYwGitp {box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15); width: 100px; height: 100px; position: relative; display: block; border-radius: 20px; overflow: hidden }
.ekltGYwaBWb .FxBY-BvsuAW {font-size: 14px; font-weight: normal; line-height: 1.4em; margin: 8px 0 0 }
.ekltGYwaBWb .FHmlCbpwBfF {font-size: 12px;}
.ItVTXUscSJP {position: relative; overflow: hidden; display: -webkit-box; display: -ms-flexbox; display: flex; }
.ItVTXUscSJP .gG_jg_aYzWa {position: relative; float: left; min-width: calc(100% / 2); overflow: hidden; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 10px; }
.ItVTXUscSJP .gG_jg_aYzWa._ny-voEHCCz0 {margin-left: 10px; }
.ItVTXUscSJP:hover {overflow: auto}
.ItVTXUscSJP .ONtk-eWxDOD .iDsdFYwGitp {box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15); }
.ItVTXUscSJP .iDsdFYwGitp {border-radius: 8px; width: 100%; height: 160px; position: relative; display: block; overflow: hidden }
.ItVTXUscSJP .iDsdFYwGitp.second {width: 40px; height: 40px; float: left; margin-right: 10px; }
.ItVTXUscSJP .videos-inner:hover .iDsdFYwGitp:after {opacity: 1 }
.ItVTXUscSJP .FxBY-BvsuAW {font-size: 13px; font-weight: normal; line-height: 1.4em; margin: 8px 0 0 }
.ItVTXUscSJP .FHmlCbpwBfF {font-size: 12px; }
.ItVTXUscSJP .EIGNW_MWZfI {position: absolute; top: calc(50% - (34px / 2)); right: calc(50% - (34px / 2)); background-color: rgba(0, 0, 0, 0.5); height: 34px; width: 34px; color: #fff; font-size: 12px; text-align: center; line-height: 32px; z-index: 5; margin: 0; -webkit-box-sizing: border-box; box-sizing: border-box; border-radius: 100%; opacity: .85; -webkit-transition: opacity .25s ease; -o-transition: opacity .25s ease; transition: opacity .25s ease; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
.ItVTXUscSJP .EIGNW_MWZfI svg {fill: currentColor; }
.ItVTXUscSJP .gG_jg_aYzWa:hover .EIGNW_MWZfI {opacity: 1 }
.gsuqxpjsDTU {position: relative; float: left; width: 100%; margin: 0 }
.gsuqxpjsDTU .widget {position: relative; float: left; width: 100%; line-height: 0; margin: 20px 0 }
#fzWKm-EtbST .widget {margin: 20px 0 }
.gsuqxpjsDTU .widget>.widget-title {display: block }
.gsuqxpjsDTU .widget>.widget-title>h3.title {font-size: 12px; color: #656565; font-weight: 400; line-height: 12px; margin: 0 0 5px }
#tshHtdARdo- {float: left; width: 100%; opacity: 0; visibility: hidden; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0 20px; margin: 0; border: 1px solid rgba(0, 0, 0, 0) }
#kEZUQLxosxj, #OtxHOYIQpOJ {float: left; width: 100%; margin: 0 }
#kEZUQLxosxj .widget>.widget-title, #OtxHOYIQpOJ .widget>.widget-title {display: block }
#kEZUQLxosxj .widget>.widget-title>h3.title, #OtxHOYIQpOJ .widget>.widget-title>h3.title {font-size: 12px; color: #656565; font-weight: 400; line-height: 12px; margin: 0 0 5px }
#kEZUQLxosxj .widget, #OtxHOYIQpOJ .widget {width: 100%;}
#kEZUQLxosxj .widget-content, #OtxHOYIQpOJ .widget-content {position: relative; width: 100%; line-height: 1; overflow: hidden }
#GwRVbxt-RLp #kEZUQLxosxj, #new-OtxHOYIQpOJ #OtxHOYIQpOJ {float: none; display: block; margin: 0 }
#GwRVbxt-RLp #kEZUQLxosxj .widget, #new-OtxHOYIQpOJ #OtxHOYIQpOJ .widget {margin: 0 }
.wGiAgnjZGGK {margin: 15px 0; }
.HHiIscIWBCx .FollowByEmail {-webkit-box-sizing: border-box; box-sizing: border-box }
#KRAidVdnwjq #main {position: relative; float: left; width: 100%; -webkit-box-sizing: border-box; box-sizing: border-box; margin: 0 }
.V_pBIVQznon {display: block; word-wrap: break-word }
.item .V_pBIVQznon {float: left; width: 100% }
.fAVGtHfJpXn {position: relative; float: left; width: 100%; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0; margin: 0 }
.post-animated {-webkit-animation-duration: .5s; animation-duration: .5s; -webkit-animation-fill-mode: both; animation-fill-mode: both }
@-webkit-keyframes fadeIn {from {opacity: 0 } to {opacity: 1 } }
@keyframes fadeIn {from {opacity: 0 } to {opacity: 1 } }
.post-fadeIn {-webkit-animation-name: fadeIn; animation-name: fadeIn }
@-webkit-keyframes fadeInUp {from {opacity: 0; -webkit-transform: translate3d(0, 5px, 0); transform: translate3d(0, 5px, 0) } to {opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0) } }
@keyframes fadeInUp {from {opacity: 0; -webkit-transform: translate3d(0, 5px, 0); transform: translate3d(0, 5px, 0) } to {opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0) } }
.post-fadeInUp {-webkit-animation-name: fadeInUp; animation-name: fadeInUp }
.TdPJ_wFuFiq {border-bottom: 1px solid #dadce0; padding: 15px 10px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; position: relative; position: relative;}
.category .V_pBIVQznon.TdPJ_wFuFiq::before {counter-increment: my-sec-counter; content: counter(my-sec-counter); display: inherit; margin-right: 15px; align-items: center; }
.TdPJ_wFuFiq .HZCvATzZPKu {display: -webkit-box; display: -ms-flexbox; display: flex; flex-direction: row-reverse; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
.TdPJ_wFuFiq .title svg {width: 15px; height: 15px; margin-right: 5px; fill: currentColor; }
.TdPJ_wFuFiq.post-ad-type {padding: 0 !important; border-width: 0px !important;}
.YKlfuDBxq-T .TdPJ_wFuFiq:last-child {margin-bottom: 0; }
.YKlfuDBxq-T .TdPJ_wFuFiq.post-ad-type:last-child {padding: 0!important; margin: 0!important; border-width: 0!important }
.TdPJ_wFuFiq .ONtk-eWxDOD {z-index: 1; width: 100px; height: 100px; overflow: hidden; border-radius: 20px; position: relative; display: block; box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);}
.TdPJ_wFuFiq .iDsdFYwGitp {width: 100%; height: 100%; position: relative; display: block; z-index: 1; overflow: hidden; }
.TdPJ_wFuFiq ._w_ZiGamgtb {position: relative; vertical-align: top; padding: 0 0 0 15px; -webkit-box-flex: 1; -ms-flex: 1 1 100%; flex: 1 1 100%; }
.TdPJ_wFuFiq .FxBY-BvsuAW {font-size: 18px; font-weight: 500; line-height: 1.5em; text-decoration: none; margin: 0; }
.TdPJ_wFuFiq .qOplvjAmpIn {position: relative; display: block; overflow: hidden; font-size: 13px; line-height: 1.6em; font-weight: 400; margin: 8px 0 0; color: #656565; }
.FHmlCbpwBfF {font-family: var(--meta-font); font-size: 13px; font-weight: 400; overflow: hidden; padding: 0 1px; margin: 0 }
.TdPJ_wFuFiq .FHmlCbpwBfF {font-size: 13px; margin: 5px 0; color: #656565 }
.no-meta .FHmlCbpwBfF {display: none }
.FHmlCbpwBfF a {color: #656565 }
.FHmlCbpwBfF a:hover {color: #01875f }
.FHmlCbpwBfF span {float: left; font-style: normal; color: #656565 }
.FHmlCbpwBfF span:not(:last-child)::after {content: '\0000a0\002022\0000a0'; margin: 0 5px; }
.FHmlCbpwBfF .entry-comments-link {display: none }
.FHmlCbpwBfF .entry-comments-link .messages {margin-left:5px; float:right; color: inherit;}
.FHmlCbpwBfF .entry-comments-link.show {display: block }
.inline-ad-wrap {position: relative; float: left; width: 100%; margin: 0 }
.inline-ad {position: relative; float: left; width: 100%; text-align: center; line-height: 1; margin: 0 }
.foTysELsHfu {position: relative; float: left; width: 100%; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0; margin: 0 }
.ZonjXfWxqfv {position: relative; float: left; width: 100%; -webkit-box-sizing: border-box; box-sizing: border-box; margin: 0 }
.first-image {float: left; margin-right: 15px; position: relative;}
.first-image img {width: 80px; height: 80px; transition: all 0.3s ease; }
._w_ZiGamgtb.load .first-image img {transform: scale(0.5);}
._w_ZiGamgtb.load .first-image::before {content: ''; position: absolute; top: 22%; left: 20px; width: 70px; height: 70px; margin: -16px 0 0 -16px; border: 2px solid #01875f; border-right-color: rgb(1, 135, 95); border-right-color: rgba(155, 155, 155, 0.2); border-radius: 100%; animation: spinner 0.4s infinite linear; transform-origin: center; z-index: 999; }
#breadcrumb a:not(:first-child)::before {content: '/'; margin: 0 5px; }
#breadcrumb {font-family: var(--meta-font); font-size: 13px; color: #656565; font-weight: 400; }
#breadcrumb a {color: #656565; -webkit-transition: color .25s; -o-transition: color .25s; transition: color .25s }
#breadcrumb a.home {color: #01875f }
#breadcrumb a:hover {color: #01875f }
#breadcrumb a, #breadcrumb em {display: inline-block }
.HHiIscIWBCx .uESSqiAiAzk {position: relative; float: left; width: 100%; overflow: hidden; padding: 0 0 10px; margin: 0;}
.HHiIscIWBCx h1.FxBY-BvsuAW {font-size: 25px; line-height: 1.1em; font-weight: 500; position: relative; display: block; margin: 0; color: #171c24 }
.HHiIscIWBCx .-cGtQPpyHlz h1.FxBY-BvsuAW {margin-bottom: 5px }
.HHiIscIWBCx .uESSqiAiAzk .FHmlCbpwBfF {font-size: 13px }
.ZonjXfWxqfv .slides {display: flex; white-space: nowrap; width: 100%; flex-direction: row; overflow: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 20px 0 0; }
.ZonjXfWxqfv .slide-content img {border-radius: 15px; max-height: 310px; max-width: 720px; }
.ZonjXfWxqfv .slide-content {margin: 0 5px; scroll-snap-align: start; }
.HHiIscIWBCx .download-demo, .HHiIscIWBCx .qUzDzQvDZvV {padding: 15px 0 0; display: flex; align-items: center; width: 100%; justify-content: center; }
.HHiIscIWBCx .bcont {width: 100%; flex-direction: row; display: inherit; justify-content: center; }
.HHiIscIWBCx .download, .HHiIscIWBCx .downloads, .HHiIscIWBCx .demo, .HHiIscIWBCx .qUzDzQvDZvV .section {width: 100%; margin: 0 5px; }
.HHiIscIWBCx .load .downloads .buttons {background: transparent; color: inherit; }
.HHiIscIWBCx .load .download-demo .download, .HHiIscIWBCx .load .demo {display: none;}
.HHiIscIWBCx .ZonjXfWxqfv .download-demo .buttons {width: 100%; margin: 0; height: auto; padding: 0; font-weight: 500;}
.HHiIscIWBCx .qUzDzQvDZvV {font-size: 12px; line-height: 15px; }
.HHiIscIWBCx .qUzDzQvDZvV .section {border-right: .0625rem solid #dadce0; }
.HHiIscIWBCx .s1 {font-weight: 500; font-size: 16px; }
.HHiIscIWBCx .qUzDzQvDZvV .section:last-child {border: none; }
.HHiIscIWBCx .qUzDzQvDZvV svg {fill: currentColor; }
.HHiIscIWBCx .qUzDzQvDZvV a {color: inherit; }
.HHiIscIWBCx .qUzDzQvDZvV a:hover {text-decoration: underline; }
.HHiIscIWBCx .post-meta-info {font-size: 12px;-webkit-box-align: center; -ms-flex-align: center; align-items: center; display: -webkit-box; display: -ms-flexbox; display: flex; }
.HHiIscIWBCx .second-line {width: auto; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
.HHiIscIWBCx .rLIMlRStCFW::after {display: none; }
#NgRgUeYeLaR {position: relative; float: left; width: 100%; font-family: var(--text-font); font-size: 16px; color: #171c24; line-height: 30px; margin: 0; overflow: hidden;}
#NgRgUeYeLaR .separator:first-child {display: none; }
.NgRgUeYeLaR .google-auto-placed {margin: 30px 0; }
.NgRgUeYeLaR .google-auto-placed + br {display: none; }
#NgRgUeYeLaR.BxGKLqTqQ-F {max-height: 120px; }
#NgRgUeYeLaR.BxGKLqTqQ-F::before {background: linear-gradient(0deg, #ffffff 30%, rgba(255,255,255,0) 100%); content: ''; width: 100%; height: 145px; position: absolute; }
/* Shortcodes */
b {font-weight: 500; }
.NgRgUeYeLaR h1, .NgRgUeYeLaR h2, .NgRgUeYeLaR h3, .NgRgUeYeLaR h4 {font-size: 18px; color: #171c24; margin: 0 0 15px }
.NgRgUeYeLaR h1, .NgRgUeYeLaR h2 {font-size: 23px } .NgRgUeYeLaR h3 {font-size: 21px }
blockquote {padding: 15px 30px; margin: 0; border: 1px solid #dadce0; border-radius: 8px; }
.NgRgUeYeLaR ul, .widget .NgRgUeYeLaR ol {line-height: 1.5em; font-weight: 400; margin: 10px 0;}
.NgRgUeYeLaR ul:first-child, .widget .NgRgUeYeLaR ol:first-child {padding: 0; }
.NgRgUeYeLaR li {margin: 5px 0; padding: 0; line-height: 1.5em }
.NgRgUeYeLaR ul li {list-style: outside; margin-left: 20px; }
.NgRgUeYeLaR ol li {list-style: decimal outside }
.NgRgUeYeLaR u {text-decoration: underline }
.NgRgUeYeLaR strike {text-decoration: line-through }
.NgRgUeYeLaR a:not(.button) {color: #01875f }
.NgRgUeYeLaR a:hover {text-decoration: underline }
.NgRgUeYeLaR a.button, .HHiIscIWBCx .download-demo .buttons {display: inline-block; height: 31px; background-color: #01875f; font-family: var(--body-font); font-size: 14px; color: #ffffff; font-weight: 400; line-height: 31px; text-align: center; text-decoration: none; cursor: pointer; padding: 0 15px; margin: 0 5px 5px 0; border: 1px solid rgba(0, 0, 0, .1); border-radius: .28em }
.NgRgUeYeLaR a.colored-button {color: #fff }
.NgRgUeYeLaR a.button:hover {background-color: #035b41; color: #ffffff }
.NgRgUeYeLaR a.colored-button:hover {background-color: #035b41!important; color: #ffffff!important }
.button:before {font-family: 'Font Awesome 5 Free'; font-weight: 900; display: inline-block; margin: 0 5px 0 0 }
.button.preview:before {content: "\f06e"}
.button.download:before {content: "\f019"}
.button.link:before {content: "\f0c1"}
.button.cart:before {content: "\f07a"}
.button.info:before {content: "\f06a"}
.button.share:before {content: "\f1e0"}
.button.contact:before {content: "\f0e0"; font-weight: 400 }
.alert-message {position: relative; display: block; padding: 15px 30px; border: 1px solid rgba(155, 155, 155, 0.2); border-radius: 8px }
.alert-message.alert-success {background-color: rgba(34, 245, 121, 0.03); border: 1px solid rgba(34, 245, 121, 0.5) }
.alert-message.alert-info {background-color: rgba(55, 153, 220, 0.03); border: 1px solid rgba(55, 153, 220, 0.5) }
.alert-message.alert-warning {background-color: rgba(185, 139, 61, 0.03); border: 1px solid rgba(185, 139, 61, 0.5) }
.alert-message.alert-error {background-color: rgba(231, 76, 60, 0.03); border: 1px solid rgba(231, 76, 60, 0.5) }
.contact-form {overflow: hidden }
.contact-form .widget-title {display: none }
.contact-form .contact-form-name {width: calc(50% - 5px) }
.contact-form .contact-form-email {width: calc(50% - 5px); float: right }
.contact-form .contact-form-button-submit {font-family: var(--body-font) }
#NgRgUeYeLaR .contact-form-button-submit {height: 34px; line-height: 34px }
.code-box {position: relative; display: block; background-color: rgba(155, 155, 155, 0.1); font-family: Monospace; font-size: 13px; white-space: pre-wrap; line-height: 1.4em; padding: 15px 30px; margin: 0; border: 1px solid rgba(155, 155, 155, 0.3); border-radius: 8px }
.ElKRAjAyAAl {position: relative; float: left; width: 100%; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0 }
.ahaOvnarbIz {overflow: hidden; float: left; width: 100%; height: auto; position: relative; margin: 25px 0 }
.ahaOvnarbIz .OTnFsaehvbk {background-color: #171c24; color: #ffffff }
.tNdOiOeEFnf {position: relative; float: left; width: 100%; overflow: hidden; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 20px 0; margin: 0; border-top: 1px solid #dadce0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;}
._w_ZiGamgtb .tNdOiOeEFnf {padding: 5px 0 0; margin: 10px 0 0; border-top: 1px solid #dadce0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center;}
ul.QpWPiVLIBc- {position: relative }
.QpWPiVLIBc- li {float: left; overflow: hidden; margin: 5px 5px 0 0; border-radius: 100px; }
.QpWPiVLIBc- li a {display: -webkit-box; display: -ms-flexbox; display: flex; width: 34px; height: 34px; line-height: 34px; color: #fff; font-size: 15px; font-weight: 400; cursor: pointer; text-align: center; -webkit-box-sizing: border-box; box-sizing: border-box; border: 1px solid rgba(0, 0, 0, .1); border-radius: 2px; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
.QpWPiVLIBc- svg {width: 32px; fill: currentColor; }
.QpWPiVLIBc- li a.facebook, .QpWPiVLIBc- li a.twitter {width: auto }
.QpWPiVLIBc- li a span {font-size: 14px; padding-right: 15px; padding-left: 10px; }
.QpWPiVLIBc- li a:hover {opacity: .8 }
.QpWPiVLIBc- .show-hid a {font-size: 14px; color: #656565; width: auto; border: 0; }
.QpWPiVLIBc- .show-hid .less, .QpWPiVLIBc-.show-hidden .show-hid .more {display: none }
.QpWPiVLIBc- .more, .QpWPiVLIBc- .less {font-size: 25px; }
.QpWPiVLIBc-.show-hidden .show-hid .less {display: block }
.QpWPiVLIBc- li.linkedin, .QpWPiVLIBc- li.reddit, .QpWPiVLIBc- li.whatsapp, .QpWPiVLIBc- li.telegram {display: none }
.show-hidden li.linkedin, .show-hidden li.reddit, .show-hidden li.whatsapp, .show-hidden li.telegram {display: inline-block }
.flXpImjHOeX {position: relative; float: left; width: 100%; border-radius: 8px; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 15px; margin: 25px 0 0; border: 1px solid #dadce0 }
.flXpImjHOeX .VPdpeAXPKRv {position: relative; float: left; width: 60px; height: 60px; border-radius: 100%; overflow: hidden; margin: 0 17px 0 0 }
.flXpImjHOeX .FysZsGx-IOZ {float: left; width: 100%; height: 100%; background-size: 100% 100%; background-position: 0 0; background-repeat: no-repeat; opacity: 0; overflow: hidden; -webkit-transition: opacity .35s ease; -o-transition: opacity .35s ease; transition: opacity .35s ease }
.flXpImjHOeX .FysZsGx-IOZ.elcreative-lazy {opacity: 1 }
.flXpImjHOeX .zqJcePtQpPu {display: block; font-size: 17px; color: #171c24; font-weight: 500; margin: 0 0 5px }
.flXpImjHOeX .zqJcePtQpPu a {color: #171c24 }
.flXpImjHOeX .zqJcePtQpPu a:hover {color: #01875f; text-decoration: none }
.dSEyfTyaVEE {overflow: hidden }
.dSEyfTyaVEE span {display: block; overflow: hidden; font-size: 14px; color: #656565; font-weight: 400; line-height: 1.6em }
.dSEyfTyaVEE span br {display: none }
.dSEyfTyaVEE a {display: none; float: left; font-size: 13px; color: #656565; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0; margin: 12px 12px 0 0 }
.dSEyfTyaVEE.khUmznNwxQD li, .dSEyfTyaVEE.khUmznNwxQD a {display: inline-block }
#QKqIQuamkHo {overflow: hidden; float: left; width: 100%; -webkit-box-sizing: border-box; box-sizing: border-box; margin: 30px 0 0; }
#QKqIQuamkHo .related-tag {display: none }
.YkcvDwIGllx {float: left; width: 100% }
.YkcvDwIGllx .MKTctinlhnV {height: 200px }
.Ib_ZhnupCtZ {position: relative; overflow: hidden; display: -webkit-box; display: -ms-flexbox; display: flex; padding: 0; overflow: hidden }
.Ib_ZhnupCtZ .JAsARehadkd {position: relative; float: left; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 10px; flex: 1 1 0; align-items: center; display: inherit; flex-direction: column; }
.Ib_ZhnupCtZ .ONtk-eWxDOD {position: relative }
.Ib_ZhnupCtZ .iDsdFYwGitp {border-radius: 20px; width: 120px; height: 120px; position: relative; display: block; overflow: hidden }
.Ib_ZhnupCtZ .FxBY-BvsuAW {font-size: 14px; font-weight: normal; line-height: 1.4em; margin: 8px 0 0 }
.Ib_ZhnupCtZ .FHmlCbpwBfF {font-size: 12px;}
.cuQbKvIAACH {float: left; width: 100%; font-size: 13px; margin: 30px 0 0 }
.cuQbKvIAACH a {color: #656565; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
.cuQbKvIAACH a:hover {color: #01875f }
.cuQbKvIAACH span {color: #656565; opacity: .8 }
.cuQbKvIAACH .FYAEeyvZXBs {float: left }
.cuQbKvIAACH .TLRNTFxLVEf {float: right }
#gfdniIrfXuR {float: left; width: 100%; font-size: 15px; font-weight: 500; text-align: center; clear: both; -webkit-box-sizing: border-box; box-sizing: border-box; margin: 30px 0 10px }
#gfdniIrfXuR .sdynnkoqPrz, .follow-by-email-submit {margin-right: .5rem; background-color: #01875f; color: #ffffff; border: none; border-radius: .25rem; -webkit-box-sizing: border-box; box-sizing: border-box; min-height: 2.25rem; min-width: 5.5rem; outline: 0; padding: 7px 15px; position: relative; -webkit-transition: background .4s cubic-bezier(0.25, 0.8, 0.25, 1); -o-transition: background .4s cubic-bezier(0.25, 0.8, 0.25, 1); transition: background .4s cubic-bezier(0.25, 0.8, 0.25, 1); -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; cursor: pointer; text-align: center; white-space: nowrap; display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
#gfdniIrfXuR .sdynnkoqPrz svg {fill: currentColor; margin-right: 10px; }
#gfdniIrfXuR #DUVgLqJuJW-:hover {background-color: #035b41; color: #ffffff }
#gfdniIrfXuR .sdynnkoqPrz.tCM-KshTBQz {background-color: rgba(155, 155, 155, 0.05); color: #656565 }
#gfdniIrfXuR .cJJkXuTZMos, #gfdniIrfXuR .tCM-KshTBQz {display: none }
#gfdniIrfXuR .cJJkXuTZMos .MKTctinlhnV {height: 34px }
#gfdniIrfXuR .tCM-KshTBQz.show {display: inline-block; cursor: not-allowed; }
#gfdniIrfXuR .cJJkXuTZMos .MKTctinlhnV:after {border-left-color: transparent; border-right-color: transparent; width: 26px; height: 26px; margin: -15px 0 0 -15px }
.guiq_KMLGeb {display: none; float: left; width: 100%; -webkit-box-sizing: border-box; box-sizing: border-box; margin: 30px 0 0; }
.guiq_KMLGeb.comments-system-disqus, .guiq_KMLGeb.comments-system-facebook {padding: 10px 20px }
#comments, #disqus_thread {float: left; width: 100% }
.guiq_KMLGeb .fb_iframe_widget_fluid_desktop, .guiq_KMLGeb .fb_iframe_widget_fluid_desktop span, .guiq_KMLGeb .fb_iframe_widget_fluid_desktop iframe {float: left; display: block!important; width: 100%!important }
.fb-comments {padding: 0; margin: 0 }
.comments {display: block; clear: both; padding: 0; margin: 0 }
.comments .comments-content {float: left; width: 100%; margin: 0 }
#comments h4#comment-post-message {display: none }
.comments .comment-block {padding: 20px 0 0 50px; border-top: 1px #dadce0 }
.comments .comment-content {font-family: var(--text-font); font-size: 14px; color: #656565; line-height: 1.6em; margin: 15px 0 }
.comments .comment-content>a:hover {text-decoration: underline }
.comment-thread .comment {position: relative; padding: 0; margin: 25px 0 0; list-style: none; border-radius: 0 }
.comment-thread ol {padding: 0; margin: 0 }
.toplevel-thread ol>li:first-child {margin: 0 }
.toplevel-thread ol>li:first-child>.comment-block {padding-top: 0; margin: 0; border: 0 }
.comment-thread.toplevel-thread>ol>.comment>.comment-replybox-single iframe {-webkit-box-sizing: border-box; box-sizing: border-box; padding: 0 0 0 50px; margin: 20px 0 0 }
.comment-thread .avatar-image-container {border-radius: 100%;position: absolute; top: 20px; left: 0; width: 35px; height: 35px; overflow: hidden }
.toplevel-thread ol>li:first-child>.avatar-image-container {top: 0 }
.avatar-image-container img {width: 100%; height: 100%; border-radius: 100%; }
.comments .comment-header .user {font-family: var(--title-font); font-size: 14px; color: #171c24; display: inline-block; font-style: normal; font-weight: 500; margin: 0 0 3px }
.comments .comment-header .user a {color: #171c24 }
.comments .comment-header .user a:hover {color: #01875f }
.comments .comment-header .icon.user {display: none }
.comments .comment-header .icon.blog-author {display: inline-block; font-size: 12px; color: #01875f; font-weight: 400; margin: -3px 0 0 5px }
.comments .comment-header .icon.blog-author:before {content: '\0229B'; font-size: 15px;}
.comments .comment-header .datetime {float: right; margin: 0 }
.comment-header .datetime a {font-family: var(--meta-font); font-size: 11px; color: #656565; padding: 0 }
.comments .comment-actions {display: block; margin: 0 }
.comments .comment-actions a {display: inline-block; height: 20px; font-size: 12px; color: #656565; font-style: normal; line-height: 20px; padding: 0 7px; margin: 0 12px 0 0 }
.comments .comment-actions a:hover {color: #01875f }
.item-control {display: none }
.loadmore.loaded a {display: inline-block; border-bottom: 1px solid rgba(155, 155, 155, .51); text-decoration: none; margin-top: 15px }
.comments .continue {display: none }
.comments .toplevel-thread>#top-continue a {display: block; color: #01875f; padding: 0 0 0 50px; margin: 30px 0 0 }
.comments .toplevel-thread>#top-continue a:hover {color: #171c24 }
.comments .comment-replies {padding: 0 0 0 50px }
.thread-expanded .thread-count a, .loadmore {display: none }
.comments .footer, .comments .comment-footer {float: left; width: 100%; font-size: 13px; margin: 0 }
.comments .comment-thread>.comment-replybox-thread {margin: 30px 0 0 }
.comment-form {float: left; width: 100%; margin: 0 }
p.comments-message {float: left; width: 100%; font-size: 12px; color: #656565; font-style: italic; padding: 0 0 20px; margin: 0 0 20px; border-bottom: 1px solid rgba(155, 155, 155, 0.1) }
.no-comments p.comments-message {margin: 0; border: 0 }
p.comments-message>a {color: #01875f }
p.comments-message>a:hover {color: #171c24 }
p.comments-message>em {color: #d63031; font-style: normal }
.comment-form>p {display: none }
p.comment-footer span {color: #656565 }
p.comment-footer span:after {content: '\002A'; color: #d63031 }
/* Widgets */
#mYCTShOgfYC .sidebar {float: left; width: 100% }
.sidebar>.widget {position: relative; float: left; width: 100%; -webkit-box-sizing: border-box; box-sizing: border-box; margin: 0 0 30px }
#sidebar>.widget:last-child, #Kt_-gFHGGyE>.widget {margin: 0 }
.post .SlvsDVeEMLb #sidebar>.widget:last-child {margin: 0 0 30px }
.sidebar>.widget.no-style {background-color: rgba(0, 0, 0, 0); padding: 0; border: 0; border-radius: 0; -webkit-box-shadow: unset; box-shadow: unset }
.sidebar > .widget .widget-title {text-align: left; -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; min-height: 3rem; width: 100%; margin-bottom: 15px; border-bottom: .0625rem solid #dadce0 }
.sidebar > .widget .widget-title > h3 {line-height: 2.75rem; margin: 0 .5rem 0 0; max-width: none; width: auto; border-left: .1875rem solid transparent; border-right: .1875rem solid transparent; -webkit-box-sizing: border-box; box-sizing: border-box; padding: .125rem .5rem 0; border-bottom: .1875rem solid #01875f; color: #01875f; display: inline-block; }
.sidebar>.widget.no-style .widget-title {display: none }
.sidebar .widget-content {float: left; width: 100%; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0; margin: 0 }
.sidebar .MKTctinlhnV {height: 180px }
.custom-widget .custom-item {display: block; overflow: hidden; padding: 0; margin: 20px 0 0 }
.custom-widget .custom-item._ny-voEHCCz0 {margin: 0 }
.custom-widget .iDsdFYwGitp {position: relative; float: left; width: 65px; height: 65px; overflow: hidden; margin: 0 13px 0 0; border-radius: 100%; }
.custom-widget .iDsdFYwGitp .gjSjwMVbXQb {width: 65px; height: 65px }
.custom-widget .custom-avatar {width: 55px; height: 55px }
.custom-widget .custom-avatar .gjSjwMVbXQb {width: 55px; height: 55px }
.custom-widget .custom-snippet {display: block; font-size: 11px; line-height: 1.5em; margin: 4px 0 0; color: #656565 }
.custom-widget ._w_ZiGamgtb {overflow: hidden }
.custom-widget .FxBY-BvsuAW {font-size: 14px; font-weight: 500; line-height: 1.4em; margin: 0 }
.custom-widget .FHmlCbpwBfF {margin: 3px 0 0 }
.PopularPosts .popular-post {display: block; overflow: hidden; padding: 0; margin: 20px 0 0 }
.PopularPosts .popular-post._ny-voEHCCz0 {margin: 0 }
.PopularPosts ._w_ZiGamgtb {overflow: hidden }
.PopularPosts .FxBY-BvsuAW {font-size: 16px; font-weight: 500; line-height: 1.4em; margin: 0 }
.PopularPosts .FHmlCbpwBfF {margin: 3px 0 0 }
.FeaturedPost .iDsdFYwGitp {border-radius: 8px; position: relative; float: left; width: 100%; height: 175px; z-index: 1; overflow: hidden; margin: 0 }
.FeaturedPost ._w_ZiGamgtb {float: left; margin: 0 }
.FeaturedPost .FxBY-BvsuAW {font-size: 18px; font-weight: 500; line-height: 1.3em; margin: 12px 0 0 }
.FeaturedPost .FHmlCbpwBfF {margin: 7px 0 0; font-size: 13px }
.FollowByEmail .widget-content {position: relative; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0; text-align: center; }
.main .foTysELsHfu .FollowByEmail .widget-content-inner {-webkit-box-sizing: border-box; box-sizing: border-box; padding: 20px; border: 1px solid rgba(155, 155, 155, 0.2) }
.follow-by-email-content {position: relative; z-index: 5 }
.follow-by-email-title {font-family: var(--body-font); font-size: 20px; color: #01875f; font-weight: 500; margin: 0 0 13px }
.follow-by-email-text {font-size: 13px; line-height: 1.5em; margin: 0 0 15px; color: #656565 }
.follow-by-email-address {width: 100%; height: 34px; font-family: inherit; font-size: 13px; color: #656565; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0 10px; margin: 0 0 10px; border: 1px solid #dadce0; border-radius: .25rem }
.follow-by-email-address:focus {background-color: rgba(155, 155, 155, 0.05); border-color: rgba(155, 155, 155, 0.4) }
.follow-by-email-submit {font-family: inherit; }
.follow-by-email-submit:hover {background-color: #035b41; color: #ffffff }
.list-label li, .archive-list li {position: relative; display: block }
.list-label li a, .archive-list li a {display: block; color: #171c24; font-size: 14px; font-weight: 400; text-transform: capitalize; padding: 5px 0 }
.list-label li:last-child a, .archive-list li:last-child a {padding-bottom: 0 }
.list-label li a:hover, .archive-list li a:hover {color: #01875f }
.list-label .label-count, .archive-list .archive-count {float: right; font-size: 11px; color: #656565; text-decoration: none; margin: 1px 0 0 5px }
.cloud-label li {position: relative; float: left; margin: 0 5px 5px 0 }
#hGYE_on-mcL .list-label a {border: 1px solid #dadce0;}
.cloud-label li a, .ahaOvnarbIz a, .ahaOvnarbIz span, #hGYE_on-mcL a {display: block; height: 30px; color: #171c24; font-size: 13px; line-height: 26px; font-weight: 500; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0 9px; border: 1px solid #dadce0; border-radius: 100px; }
.ahaOvnarbIz a, .ahaOvnarbIz span {float: left; margin: 0 5px 5px 0; }
.ahaOvnarbIz span {border: 0; }
.cloud-label li a:hover, .ahaOvnarbIz a:hover, #hGYE_on-mcL a:hover {background-color: #01875f; color: #ffffff !important; -webkit-box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); border-color: transparent; }
.cloud-label .label-count {display: none }
.BlogSearch .W0DJlgtgItZ {display: -webkit-box; display: -ms-flexbox; display: flex; background-color: rgba(255, 255, 255, 0.05); padding: 2px; border: .0625rem solid #dadce0; border-radius: .25rem; }
.BlogSearch .Kvi5rfk728R {float: left; width: 100%; height: 32px; background-color: rgba(0, 0, 0, 0); font-family: inherit; font-weight: 400; font-size: 14px; color: #656565; line-height: 32px; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0 10px; margin: 0; border: 0; border-radius: 0 }
.BlogSearch .Kvi5rfk728R:focus {outline: none }
.BlogSearch .search-action {float: right; width: auto; height: 32px; font-family: inherit; font-size: 14px; line-height: 32px; cursor: pointer; -webkit-box-sizing: border-box; box-sizing: border-box; background-color: #01875f; color: #ffffff; padding: 0 15px; border: 0; border-bottom: 2px solid rgba(0, 0, 0, .1) }
.BlogSearch .search-action:hover {background-color: #035b41; color: #ffffff }
.Profile ul li {float: left; width: 100%; margin: 20px 0 0 }
.Profile ul li:first-child {margin: 0 }
.Profile .profile-img {float: left; width: 55px; height: 55px; background-color: rgba(155, 155, 155, 0.08); overflow: hidden; color: transparent!important; margin: 0 12px 0 0; border-radius: 50% }
.Profile .profile-datablock {margin: 0 }
.Profile .profile-info>.profile-link {display: inline-block; font-size: 12px; color: #01875f; font-weight: 400; margin: 3px 0 0 }
.Profile .profile-info>.profile-link:hover {color: #171c24 }
.Profile .g-profile, .Profile .profile-data .g-profile {font-size: 15px; color: #171c24; font-weight: 500; line-height: 1.4em; margin: 0 0 5px }
.Profile .g-profile:hover, .Profile .profile-data .g-profile:hover {color: #01875f }
.Profile .profile-textblock {display: none }
.profile-data.location {font-size: 12px; color: #656565; line-height: 1.4em; margin: 2px 0 0 }
.rngwiv-sQEZ .PageList ul li, .rngwiv-sQEZ .LinkList ul li {position: relative; display: block }
.rngwiv-sQEZ .PageList ul li a, .rngwiv-sQEZ .LinkList ul li a {display: block; color: #171c24; font-size: 13px; font-weight: 400; padding: 5px 0 }
.rngwiv-sQEZ .PageList ul li:first-child a, .rngwiv-sQEZ .LinkList ul li:first-child a {padding: 0 0 5px }
.rngwiv-sQEZ .PageList ul li a:hover, .rngwiv-sQEZ .LinkList ul li a:hover {color: #01875f }
.Text .widget-content {font-family: var(--text-font); font-size: 13px; line-height: 1.5em }
.Image .image-caption {font-size: 13px; line-height: 1.5em; margin: 10px 0 0; display: block }
.contact-form-widget form {font-family: inherit; font-weight: 400 }
.contact-form-name, .contact-form-email, .contact-form-email-message {float: left; width: 100%; height: 34px; background-color: rgba(255, 255, 255, 0.05); font-family: inherit; font-size: 13px; color: #656565; line-height: 34px; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 5px 10px; margin: 0 0 10px; border: 1px solid #dadce0; border-radius: .25em }
.contact-form-email-message {resize: vertical; height: auto }
.contact-form-button-submit {float: left; width: 100%; height: 34px; background-color: #01875f; font-family: inherit; font-size: 15px; color: #ffffff; font-weight: 400; line-height: 33px; cursor: pointer; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0 10px; margin: 0; border: 0; border: 1px solid rgba(0, 0, 0, .1); border-bottom-width: 2px; border-radius: 2px }
.contact-form-button-submit:hover {background-color: #035b41; color: #ffffff }
.contact-form-error-message-with-border {float: left; width: 100%; background-color: rgba(0, 0, 0, 0); font-size: 12px; color: #e74c3c; text-align: left; line-height: 12px; padding: 3px 0; margin: 10px 0; -webkit-box-sizing: border-box; box-sizing: border-box; border: 0 }
.contact-form-success-message-with-border {float: left; width: 100%; background-color: rgba(0, 0, 0, 0); font-size: 12px; color: #27ae60; text-align: left; line-height: 12px; padding: 3px 0; margin: 10px 0; -webkit-box-sizing: border-box; box-sizing: border-box; border: 0 }
.contact-form-cross {cursor: pointer; margin: 0 0 0 3px }
.contact-form-error-message, .contact-form-success-message {margin: 0 }
.contact-form-name:focus, .contact-form-email:focus, .contact-form-email-message:focus {background-color: rgba(155, 155, 155, 0.05); border-color: rgba(155, 155, 155, 0.4) }
.Attribution a {font-size: 14px; line-height: 16px; display: block }
.Attribution a>svg {width: 16px; height: 16px; float: left; margin: 0 4px 0 0 }
.Attribution .copyright {font-size: 12px; color: #656565; padding: 0 20px; margin: 3px 0 0 }
#YrWQBpZyErG .container {position: relative; margin: 0 auto }
#jsqdRpdnjLt.no-items {padding: 0; border: 0 }
.DKFHExRwwzq #jsqdRpdnjLt {border: 0 }
#jsqdRpdnjLt .widget>widget-content {display: none }
#jsqdRpdnjLt .Image .no-image .about-content {max-width: 100%; padding: 0 30px 0 0 }
#footerbar {display: block; width: 100%; height: 60px; overflow: hidden; margin: 0 }
#footerbar.border>.container {border-top: 1px solid rgba(155, 155, 155, 0.2) }
.DKFHExRwwzq #footerbar.border>.container {border: 0 }
#footerbar .AdZyVQTCjqL {height: 30px; font-size: 14px; font-weight: 400; line-height: 30px; margin: 15px 0 0; text-align: center; color: #171c24; }
#AdZyVQTCjqL a {color: #01875f; }
#footerbar .AdZyVQTCjqL a:hover {text-decoration: underline }
#IwFoKwzsVKY, .zcZ_ElS_UPQ {display: none; visibility: hidden }
.tQHEdnCdeLO {position: relative; margin: 0; height: 50px; }
.JbKnyTUomce {transition: top .2s cubic-bezier(.215,.61,.355,1); padding: 0 20px; -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; background-color: #ffffff; position: fixed; left: 0; right: 0; bottom: 0; width: 100%; color: #171c24; min-width: 320px; z-index: 986; border-top: .0625rem solid #dadce0; justify-content: center; }
#uyxfwiMtTTj {padding-bottom: 4px; flex-direction: inherit; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-flex: 1; -ms-flex: 1 1 100%; flex: 1 1 100%; height: 48px; vertical-align: middle; white-space: nowrap; -webkit-box-align: center; -ms-flex-align: center; align-items: center; display: -webkit-box; display: -ms-flexbox; display: flex; -moz-user-select: -moz-none; }
#LinkList96 {overflow: hidden; max-width: 980px; width: 100%;}
#LinkList96 ul {align-items: center; display: flex; font-weight: 500; flex-direction: row; flex: 1 1 auto; }
#LinkList96 li {justify-content: center; cursor: pointer; display: flex; padding: 0 15px; text-decoration: none; -moz-user-select: none; width: 100%; min-width: max-content; }
#LinkList96 li a {color: #5f6368; }
#LinkList96 li.jYmWHYmIHLQ a {color: #01875f; }
#LinkList96 a .CFKEr-vUdQq {display: flex; flex-direction: column; align-items: center; }
#LinkList96 a .CFKEr-vUdQq svg {fill: currentColor; }
.scrolltop {display: none; position: fixed; bottom: 15px; right: 15px; z-index: 50; background-color: #ffffff; border: none; border-radius: 50%; -webkit-box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); cursor: pointer; height: 48px; padding: 0; width: 48px; }
.scrolltop svg {position: relative; width: 48px; top: 13px; }
.error404 #KRAidVdnwjq {width: 100% }
.error404 #mYCTShOgfYC {display: none }
.BDrOhwKKmYu {color: #171c24; text-align: center; padding: 60px 0 }
.BDrOhwKKmYu h3 {font-size: 160px; line-height: 1em; margin: 0 0 25px }
.BDrOhwKKmYu h4 {font-size: 25px; margin: 0 0 30px }
.BDrOhwKKmYu p {margin: 0 0 20px }
.BDrOhwKKmYu a {background-color: #01875f; color: #ffffff; border: none; border-radius: .25rem; -webkit-box-sizing: border-box; box-sizing: border-box; min-height: 2.25rem; min-width: 5.5rem; outline: 0; padding: 7px 15px; position: relative; -webkit-transition: background .4s cubic-bezier(0.25, 0.8, 0.25, 1); -o-transition: background .4s cubic-bezier(0.25, 0.8, 0.25, 1); transition: background .4s cubic-bezier(0.25, 0.8, 0.25, 1); -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; cursor: pointer; text-align: center; white-space: nowrap; display: inline-block }
.BDrOhwKKmYu a:hover {background-color: #035b41; color: #ffffff }
.cookie-choices-info {top: unset!important; bottom: 0 }
a.ads-here {display: block; background-color: #ffffff; text-align: center; font-size: 14px; color: #656565; font-weight: 400; font-style: italic; line-height: 88px; border: 1px solid #dadce0 }
#main a.ads-here {background-color: rgba(155, 155, 155, 0.05) }
.sidebar a.ads-here {line-height: 265px }
.sidebar a.ads-here.ad-600 {line-height: 598px }
a.ads-here:hover {text-decoration: none; color: #01875f; border-color: #dadce0 }
.item.post #tkmTfYToUZG {margin-top: 0}
.item.post .uBJy2yk5LD3 .Y26X1GhHSP7 {flex-direction: row; padding-bottom: 0;}
.item.post .uBJy2yk5LD3 {padding: 6px; border: none;}
.item.post .Y26X1GhHSP7 a {padding: 0 5px; background: 0 0; border: none; cursor: pointer; outline: 0; line-height: 0; }
.item.post #engOHzr-XAE {height: 60px;}
.item.post .mRiyHvEpnOm {display: inherit; flex-direction: inherit; flex: 1 1 100%; max-width: 1015px; position: relative}
.item.post #SaTXKffDCdm {outline: none; z-index: 1000; line-height: normal; -webkit-box-shadow: 0 2px 10px rgba(0,0,0,.2); box-shadow: 0 2px 10px rgba(0,0,0,.2); overflow: hidden; position: absolute; right: 50px; -moz-user-select: text; border-radius: 8px; min-width: 200px; display: block; -webkit-transform-origin: 100% 0; -ms-transform-origin: 100% 0; transform-origin: 100% 0; -webkit-transform: scale(0) translateZ(0); transform: scale(0) translateZ(0); opacity: 0; -webkit-transition: opacity 0.15s,-webkit-transform 0.3s cubic-bezier(.4,0,.2,1); transition: opacity 0.15s,-webkit-transform 0.3s cubic-bezier(.4,0,.2,1); -o-transition: transform 0.3s cubic-bezier(.4,0,.2,1),opacity 0.15s; transition: transform 0.3s cubic-bezier(.4,0,.2,1),opacity 0.15s; transition: transform 0.3s cubic-bezier(.4,0,.2,1),opacity 0.15s,-webkit-transform 0.3s cubic-bezier(.4,0,.2,1);}
.item.post #SaTXKffDCdm.active {-webkit-transform: scale(1) translateZ(0); transform: scale(1) translateZ(0); opacity: 1; }
.item.post #SaTXKffDCdm #dCaHJUoOoBt {-webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; vertical-align: middle; max-height: 280px; overflow: auto; }
#SaTXKffDCdm ul {margin: 0; padding: 10px 0; display: inline-block; vertical-align: top; -webkit-box-sizing: inherit; box-sizing: inherit; width: 100%; }
.item.post #SaTXKffDCdm li {margin: -4px 0 1px; -o-text-overflow: ellipsis; text-overflow: ellipsis; overflow: hidden; }
.item.post #SaTXKffDCdm a {margin: 0; height: 25px; outline-offset: -2px; padding: 10px 20px; position: relative; white-space: nowrap; -webkit-box-sizing: inherit; box-sizing: inherit; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; cursor: pointer; text-decoration: none; border-radius: 0 50px 50px 0; line-height: 1.4; }
.item.post #SaTXKffDCdm svg {fill: currentColor; margin: 0; margin-right: 10px; border-radius: 0;}
.item.post #SaTXKffDCdm svg:hover {background: transparent; }
.item.post.ShKlkbifCLQ .uBJy2yk5LD3 {border-bottom: .0625rem solid #dadce0;}
.item.post .uBJy2yk5LD3 .W0DJlgtgItZ .Kvi5rfk728R {margin-left: 0;}
.item.post .W0DJlgtgItZ, .item.post.ShKlkbifCLQ .mRiyHvEpnOm {display: none; }
.item.post.ShKlkbifCLQ .W0DJlgtgItZ {display: inherit; box-shadow: none; }
.item.post.ShKlkbifCLQ .CKwkyxhrxkc {visibility: visible; opacity: 1; z-index: 888;}
body.ShKlkbifCLQ {overflow: hidden}
/* Responsive */
@media (max-width: 1165px) {
#tkmTfYToUZG > .container {margin: 0 auto }
.nav-active #quJdqxDdZwZ {-webkit-transform: translateX(-0); -ms-transform: translateX(-0); transform: translateX(-0); }
#quJdqxDdZwZ {-webkit-transform: translateX(-290px); -ms-transform: translateX(-290px); transform: translateX(-290px); background-color: #ffffff; -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, .28); box-shadow: 0 0 16px rgba(0, 0, 0, .28); overflow-y: auto }
body.nav-active {overflow: hidden; }
}
@media screen and (max-width: 1165px) {
#r9DegAOyDFZ {max-width: 100% }
.uSaddoqbqZa {width: 100% }
.uBJy2yk5LD3 .xFAgqb93ZL8, #tkmTfYToUZG > .container, #YrWQBpZyErG .container {-webkit-box-sizing: border-box; box-sizing: border-box; padding: 0 20px }
.uBJy2yk5LD3 .xFAgqb93ZL8 {padding: 0; }
}
@media screen and (max-width: 980px) {
#KRAidVdnwjq, #mYCTShOgfYC {width: 100% }
#mYCTShOgfYC {margin: 30px 0 0 }
.nav-active #tkmTfYToUZG > .container, .error404 #tkmTfYToUZG > .container {margin: 0 auto !important; }
}
@media screen and (max-width: 880px) {
.uBJy2yk5LD3 .xFAgqb93ZL8 {padding: 0 }
.nav-active .scrolltop {opacity: 0!important }
.eoIkMNEFXCG {display: block }
#Label99, #LinkList98 {justify-content: inherit; overflow: auto; }
}
@media screen and (max-width: 780px) {
.uBJy2yk5LD3 {padding: 4px 20px 0 20px; }
#jsqdRpdnjLt {text-align: center }
#jsqdRpdnjLt .Image {width: 100%; padding: 0 }
#jsqdRpdnjLt .footer-logo {display: inline-block; float: none; max-width: 100%; padding: 0 0 30px }
#jsqdRpdnjLt .about-content, #jsqdRpdnjLt .Image .no-image .about-content {max-width: 100%; padding: 0 }
#footerbar {height: auto; line-height: 1.4em; padding: 20px 0 }
#footerbar .AdZyVQTCjqL {width: 100%; height: unset; line-height: inherit; text-align: center; margin: 0 }
#footerbar .AdZyVQTCjqL .widget {float: left; width: 100%; padding: 0 0 15px }
}
@media screen and (max-width: 680px) {
.ZonjXfWxqfv .slide-content img {max-height: 225px;}
.uBJy2yk5LD3 .byvCyiObpMU {position: relative; top: 3px;}
.TdPJ_wFuFiq .ONtk-eWxDOD {width: 60px; height: 60px;border-radius: 10px;}
.TdPJ_wFuFiq {padding: 10px 0;}
.search-active .uBJy2yk5LD3 .Y26X1GhHSP7 {display: -webkit-box; display: -ms-flexbox; display: flex }
.TdPJ_wFuFiq .qOplvjAmpIn {display: none; }
.HFDXJSGaYND .ZqrWwtOVEFM {width: 100% }
.HFDXJSGaYND ._ny-voEHCCz1 {margin: 20px 0 0 }
.FgScgdcB-We .block-column {width: 100% }
.ItVTXUscSJP .gG_jg_aYzWa {min-width: 100%; }
.ItVTXUscSJP .gG_jg_aYzWa._ny-voEHCCz0 {margin: 0!important }
.ItVTXUscSJP .iDsdFYwGitp {height: 200px }
.ItVTXUscSJP .FxBY-BvsuAW {margin: 10px 0 0 }
.ekltGYwaBWb, .HFDXJSGaYND, .ItVTXUscSJP, #HFDXJSGaYND .Label .cloud-label, .Ib_ZhnupCtZ, #_-JOkMVnFuS {overflow: auto; }
.ekltGYwaBWb .FxBY-BvsuAW {margin: 10px 0 0 }
.Ib_ZhnupCtZ .FxBY-BvsuAW {margin: 10px 0 }
.TdPJ_wFuFiq ._w_ZiGamgtb {float: left; width: 100% }
.sidebar a.ads-here, .sidebar a.ads-here.ad-600 {line-height: 88px }
}
@media screen and (max-width: 460px) {
.TdPJ_wFuFiq .FxBY-BvsuAW {font-size: 17px; font-weight: normal; }
.TdPJ_wFuFiq .qOplvjAmpIn {font-size: 13px }
.QpWPiVLIBc- li a.facebook, .QpWPiVLIBc- li a.twitter {width: 34px }
.QpWPiVLIBc- li a.facebook span, .QpWPiVLIBc- li a.twitter span {display: none }
.QpWPiVLIBc- li a.facebook:before, .QpWPiVLIBc- li a.twitter:before {width: 34px; background-color: rgba(0, 0, 0, 0) }
.comments .comment-content iframe#youtube {height: 180px }
.product-button {margin: 10px 0 0; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; width: 100%}
.product-button a, .product-button .item_qty {margin: 5px 0; width: 100%; width: 100%;}
.item_qty input {max-width: 100%; width: 100%;}
.item_qty button {margin-right: 0;}
}
@media screen and (max-width: 360px) {
.TdPJ_wFuFiq .FxBY-BvsuAW {font-size: 18px }
.QpWPiVLIBc- li.share-icon {display: none }
.BDrOhwKKmYu h3 {font-size: 130px }
.comments .comment-content iframe#youtube {height: 140px }
}
.ShKlkbifCLQ .CKwkyxhrxkc {background-color: #ffffff;}
--></style><script defer='defer' type='text/javascript'>//<![CDATA[
var monthFormat = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
fixedSidebar = false,
relatedPostsNum = 4,
commentsSystem = "blogger",
disqusShortname = "template-discussions",
followByEmailText = "";
//]]></script>
<style id='page-skin-2' type='text/css'></style><link href='https://www.blogger.com/dyn-css/authorization.css?targetBlogID=1514000847673033007&zx=403b2d1b-5655-4df6-9fd1-4e3e0823b2c9' media='none' onload='if(media!='all')media='all'' rel='stylesheet'/><noscript><link href='https://www.blogger.com/dyn-css/authorization.css?targetBlogID=1514000847673033007&zx=403b2d1b-5655-4df6-9fd1-4e3e0823b2c9' rel='stylesheet'/></noscript>
<meta name='google-adsense-platform-account' content='ca-host-pub-1556223355139109'/>
<meta name='google-adsense-platform-domain' content='blogspot.com'/>
</head><body class='item post'>
<div class='ibk0J7UIq5M' id='ibk0J7UIq5M' style='display:none'><div class='YhmeU7AOHer section' id='YhmeU7AOHer' name='Theme Options'><div class='widget HTML' data-version='2' id='HTML150'><div class='widget-content'>
</div></div>
<div class='widget LinkList' data-version='2' id='LinkList97'>
<style type='text/css'>
#Header1 .header-widget {background: url("https://lh3.googleusercontent.com/c5dqxl-2uHZ82ah9p7yxrVF1ZssrJNSV_15Nu0TUZwzCWqmtoLxCUJgEzLGtxsrJ6-v6R6rKU_-FYm881TTiMCJ_=w728-h1600"); background-size: cover;}
#quJdqxDdZwZ .show-menu ul li:nth-child(10)::after {content: ' '; margin: .75rem 1rem; background: #e0e0e0; height: 1px; white-space: normal; display: block; width: 14.5rem;}
#quJdqxDdZwZ .show-menu ul li:nth-child(8)::after {content: ' '; margin: .75rem 1rem; background: #e0e0e0; height: 1px; white-space: normal; display: block; width: 14.5rem;}
#quJdqxDdZwZ .show-menu ul li:nth-child(4)::after {content: ' '; margin: .75rem 1rem; background: #e0e0e0; height: 1px; white-space: normal; display: block; width: 14.5rem;}
</style>
</div></div></div><div class='r9DegAOyDFZ' id='r9DegAOyDFZ'><header class='engOHzr-XAE' id='engOHzr-XAE'><div class='uBJy2yk5LD3'><div class='xFAgqb93ZL8'><div class='container uSaddoqbqZa'><div class='Y26X1GhHSP7'><form action='https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/search' class='W0DJlgtgItZ'><a aria-label='Menu' class='LLqvgyaSgHO' href='javascript:void(0)'><svg height='24' viewBox='0 0 24 24' width='24'><path d='M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z'></path></svg></a><input aria-label='Telusuri' autocomplete='off' class='Kvi5rfk728R' name='q' placeholder='Search' value=''/></form><div class='mRiyHvEpnOm'><a aria-label='Home' class='VvOvOWhwxWf' href='/'><svg height='24' viewBox='0 0 24 24' width='24'><path d='M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z'></path></svg></a><div style='flex: 1 1 auto;'></div><a aria-label='Search' class='wQhYIRWORaC' href='javascript:void(0)'><svg height='24' viewBox='0 0 24 24' width='24'><path d='M9.5,3A6.5,6.5 0 0,1 16,9.5C16,11.11 15.41,12.59 14.44,13.73L14.71,14H15.5L20.5,19L19,20.5L14,15.5V14.71L13.73,14.44C12.59,15.41 11.11,16 9.5,16A6.5,6.5 0 0,1 3,9.5A6.5,6.5 0 0,1 9.5,3M9.5,5C7,5 5,7 5,9.5C5,12 7,14 9.5,14C12,14 14,12 14,9.5C14,7 12,5 9.5,5Z'></path></svg></a><a aria-label='Other' class='iBywgAOeYdL' href='javascript:void(0)'><svg height='24' viewBox='0 0 24 24' width='24'><path d='M12,16A2,2 0 0,1 14,18A2,2 0 0,1 12,20A2,2 0 0,1 10,18A2,2 0 0,1 12,16M12,10A2,2 0 0,1 14,12A2,2 0 0,1 12,14A2,2 0 0,1 10,12A2,2 0 0,1 12,10M12,4A2,2 0 0,1 14,6A2,2 0 0,1 12,8A2,2 0 0,1 10,6A2,2 0 0,1 12,4Z'></path></svg></a><div class='SaTXKffDCdm' id='SaTXKffDCdm'><div id='dCaHJUoOoBt'><ul><li class='UwldFjqwVtI'><a href='#tNdOiOeEFnf' title='Share'><svg height='24' viewBox='0 0 24 24' width='24'><path d='M18,16.08C17.24,16.08 16.56,16.38 16.04,16.85L8.91,12.7C8.96,12.47 9,12.24 9,12C9,11.76 8.96,11.53 8.91,11.3L15.96,7.19C16.5,7.69 17.21,8 18,8A3,3 0 0,0 21,5A3,3 0 0,0 18,2A3,3 0 0,0 15,5C15,5.24 15.04,5.47 15.09,5.7L8.04,9.81C7.5,9.31 6.79,9 6,9A3,3 0 0,0 3,12A3,3 0 0,0 6,15C6.79,15 7.5,14.69 8.04,14.19L15.16,18.34C15.11,18.55 15.08,18.77 15.08,19C15.08,20.61 16.39,21.91 18,21.91C19.61,21.91 20.92,20.61 20.92,19A2.92,2.92 0 0,0 18,16.08Z'></path></svg><span class='GDaEzNZfnHV'>Share</span></a></li><li class='UwldFjqwVtI'><a href='#comments' title='Comments'><svg height='24' viewBox='0 0 24 24' width='24'><path d='M12,23A1,1 0 0,1 11,22V19H7A2,2 0 0,1 5,17V7C5,5.89 5.9,5 7,5H21A2,2 0 0,1 23,7V17A2,2 0 0,1 21,19H16.9L13.2,22.71C13,22.9 12.75,23 12.5,23V23H12M13,17V20.08L16.08,17H21V7H7V17H13M3,15H1V3A2,2 0 0,1 3,1H19V3H3V15Z'></path></svg><span class='GDaEzNZfnHV'>Comments</span></a></li></ul></div></div></div></div></div></div></div></header><nav class='quJdqxDdZwZ eDdXcdYuDgV' id='quJdqxDdZwZ'><div class='fcGzTlqihoz section' id='fcGzTlqihoz' name='Left Navigation'><div class='widget Header' data-version='2' id='Header1'><div class='header-widget'><a class='main-logo-img' href='https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/?m=1'><img alt='Goolge Plays' data-height='34' data-width='150' src='https://yt3.ggpht.com/a/AGF-l7_nq3H8zE0QV5JVLX1qta6TskgRvpxtl5gP1g=s900-c-k-c0xffffffff-no-rj-mo'/></a><div class='desc'><h1 class='blog-title'><a href='https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/?m=1'>Goolge Plays</a></h1><p>Enjoy millions of the latest free, paid, and mod Android Apps, Games, & more. Anytime, anywhere, across your devices.</p></div></div></div><div class='widget LinkList' data-version='2' id='LinkList99'><ul><li><a href='#' onmouseover='this.title='';' title='false'><span class='CFKEr-vUdQq'><svg width="24" height="24" viewBox="0 0 24 24"><path d="M5,3H19A2,2 0 0,1 21,5V19A2,2 0 0,1 19,21H5A2,2 0 0,1 3,19V5A2,2 0 0,1 5,3M7,7V9H9V7H7M11,7V9H13V7H11M15,7V9H17V7H15M7,11V13H9V11H7M11,11V13H13V11H11M15,11V13H17V11H15M7,15V17H9V15H7M11,15V17H13V15H11M15,15V17H17V15H15Z" /></svg>Apps & Games</span></a></li><li><a href='#' onmouseover='this.title='';' title='false'><span class='CFKEr-vUdQq'><svg width="24" height="24" viewBox="0 0 24 24"><path d="M16,17H7V10.5C7,8 9,6 11.5,6C14,6 16,8 16,10.5M18,16V10.5C18,7.43 15.86,4.86 13,4.18V3.5A1.5,1.5 0 0,0 11.5,2A1.5,1.5 0 0,0 10,3.5V4.18C7.13,4.86 5,7.43 5,10.5V16L3,18V19H20V18M11.5,22A2,2 0 0,0 13.5,20H9.5A2,2 0 0,0 11.5,22Z" /></svg>Notifications</span></a></li><li><a href='#' onmouseover='this.title='';' title='false'><span class='CFKEr-vUdQq'><svg width="24" height="24" viewBox="0 0 24 24"><path d="M12,6V9L16,5L12,1V4A8,8 0 0,0 4,12C4,13.57 4.46,15.03 5.24,16.26L6.7,14.8C6.25,13.97 6,13 6,12A6,6 0 0,1 12,6M18.76,7.74L17.3,9.2C17.74,10.04 18,11 18,12A6,6 0 0,1 12,18V15L8,19L12,23V20A8,8 0 0,0 20,12C20,10.43 19.54,8.97 18.76,7.74Z" /></svg>Subscriptions</span></a></li><li><a href='#' onmouseover='this.title='';' title='false'><span class='CFKEr-vUdQq'><svg width="24" height="24" viewBox="0 0 24 24"><path d="M17,18V5H7V18L12,15.82L17,18M17,3A2,2 0 0,1 19,5V21L12,18L5,21V5C5,3.89 5.9,3 7,3H17M11,7H13V9H15V11H13V13H11V11H9V9H11V7Z" /></svg>Wishlist</span></a></li><li><a href='#' onmouseover='this.title='';' title='false'><span class='CFKEr-vUdQq'><svg width="24" height="24" viewBox="0 0 24 24"><path d="M12,4A4,4 0 0,1 16,8A4,4 0 0,1 12,12A4,4 0 0,1 8,8A4,4 0 0,1 12,4M12,6A2,2 0 0,0 10,8A2,2 0 0,0 12,10A2,2 0 0,0 14,8A2,2 0 0,0 12,6M12,13C14.67,13 20,14.33 20,17V20H4V17C4,14.33 9.33,13 12,13M12,14.9C9.03,14.9 5.9,16.36 5.9,17V18.1H18.1V17C18.1,16.36 14.97,14.9 12,14.9Z" /></svg>Account</span></a></li><li><a href='#' onmouseover='this.title='';' title='false'><span class='CFKEr-vUdQq'><svg width="24" height="24" viewBox="0 0 24 24"><path d="M20,8H4V6H20M20,18H4V12H20M20,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V6C22,4.89 21.1,4 20,4Z" /></svg>Payment Methods</span></a></li><li><a href='#' onmouseover='this.title='';' title='false'><span class='CFKEr-vUdQq'><svg width="24" height="24" viewBox="0 0 24 24"><path d="M21,11C21,16.55 17.16,21.74 12,23C6.84,21.74 3,16.55 3,11V5L12,1L21,5V11M12,21C15.75,20 19,15.54 19,11.22V6.3L12,3.18L5,6.3V11.22C5,15.54 8.25,20 12,21M10,17L6,13L7.41,11.59L10,14.17L16.59,7.58L18,9" /></svg>Play Protect</span></a></li><li><a href='#' onmouseover='this.title='';' title='false'><span class='CFKEr-vUdQq'><svg width="24" height="24" viewBox="0 0 24 24"><path d="M12,8A4,4 0 0,1 16,12A4,4 0 0,1 12,16A4,4 0 0,1 8,12A4,4 0 0,1 12,8M12,10A2,2 0 0,0 10,12A2,2 0 0,0 12,14A2,2 0 0,0 14,12A2,2 0 0,0 12,10M10,22C9.75,22 9.54,21.82 9.5,21.58L9.13,18.93C8.5,18.68 7.96,18.34 7.44,17.94L4.95,18.95C4.73,19.03 4.46,18.95 4.34,18.73L2.34,15.27C2.21,15.05 2.27,14.78 2.46,14.63L4.57,12.97L4.5,12L4.57,11L2.46,9.37C2.27,9.22 2.21,8.95 2.34,8.73L4.34,5.27C4.46,5.05 4.73,4.96 4.95,5.05L7.44,6.05C7.96,5.66 8.5,5.32 9.13,5.07L9.5,2.42C9.54,2.18 9.75,2 10,2H14C14.25,2 14.46,2.18 14.5,2.42L14.87,5.07C15.5,5.32 16.04,5.66 16.56,6.05L19.05,5.05C19.27,4.96 19.54,5.05 19.66,5.27L21.66,8.73C21.79,8.95 21.73,9.22 21.54,9.37L19.43,11L19.5,12L19.43,13L21.54,14.63C21.73,14.78 21.79,15.05 21.66,15.27L19.66,18.73C19.54,18.95 19.27,19.04 19.05,18.95L16.56,17.95C16.04,18.34 15.5,18.68 14.87,18.93L14.5,21.58C14.46,21.82 14.25,22 14,22H10M11.25,4L10.88,6.61C9.68,6.86 8.62,7.5 7.85,8.39L5.44,7.35L4.69,8.65L6.8,10.2C6.4,11.37 6.4,12.64 6.8,13.8L4.68,15.36L5.43,16.66L7.86,15.62C8.63,16.5 9.68,17.14 10.87,17.38L11.24,20H12.76L13.13,17.39C14.32,17.14 15.37,16.5 16.14,15.62L18.57,16.66L19.32,15.36L17.2,13.81C17.6,12.64 17.6,11.37 17.2,10.2L19.31,8.65L18.56,7.35L16.15,8.39C15.38,7.5 14.32,6.86 13.12,6.62L12.75,4H11.25Z" /></svg>Settings</span></a></li><li><a href='#' onmouseover='this.title='';' title='false'><span class='CFKEr-vUdQq'><svg width="24" height="24" viewBox="0 0 24 24"><path d="M18,9H16V7H18M18,13H16V11H18M18,17H16V15H18M8,9H6V7H8M8,13H6V11H8M8,17H6V15H8M18,3V5H16V3H8V5H6V3H4V21H6V19H8V21H16V19H18V21H20V3H18Z" /></svg>Open Movies App</span></a></li><li><a href='#' onmouseover='this.title='';' title='false'><span class='CFKEr-vUdQq'><svg width="24" height="24" viewBox="0 0 24 24"><path d="M18,2A2,2 0 0,1 20,4V20A2,2 0 0,1 18,22H6A2,2 0 0,1 4,20V4A2,2 0 0,1 6,2H18M18,4H13V12L10.5,9.75L8,12V4H6V20H18V4Z" /></svg>Open Book App</span></a></li><li><a href='#' onmouseover='this.title='';' title='false'><span class='CFKEr-vUdQq'>Redeeem</span></a></li><li><a href='#' onmouseover='this.title='';' title='false'><span class='CFKEr-vUdQq'>Help & Feedback</span></a></li><li><a href='#' onmouseover='this.title='';' title='false'><span class='CFKEr-vUdQq'>Parent Guide</span></a></li><li><a href='#' onmouseover='this.title='';' title='false'><span class='CFKEr-vUdQq'>About Goolge Play v2</span></a></li></ul></div></div></nav><div id='tkmTfYToUZG'><div class='container uSaddoqbqZa eDdXcdYuDgV'><main class='KRAidVdnwjq' id='KRAidVdnwjq'>
<div class='main section' id='main' name='Main Posts'><div class='widget Blog' data-version='2' id='Blog1'><div class='YKlfuDBxq-T hfeed container wGiAgnjZGGK'>
<article class='V_pBIVQznon hentry HHiIscIWBCx'>
<script type='application/ld+json'>{"@context":"https://schema.org", "@type":"MobileApplication", "name":"Chat App Beta By Pranav Dileep", "version":"Latest", "description":" 💎Subtle. Gorgeous. Magnifique. Enjoy the vector gradient and lot of option inside theme from changing the primary or accent colors to c...", "applicationCategory":"App & Game", "applicationSubCategory":"App & Game", "datePublished":"2019-12-06T16:58:00-08:00", "operatingSystem":"ANDROID", "aggregateRating":{"@type":"aggregateRating", "@id":"https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html", "ratingValue":"9", "ratingCount":"10", "bestRating":"10", "worstRating":"1" }, "publisher":{"@type":"Thing", "name":"Goolge Plays" }, "offers":{"price":"0", "priceCurrency":"USD" } }</script><div class='foTysELsHfu'><div class='ZonjXfWxqfv'><div class='_w_ZiGamgtb uESSqiAiAzk -cGtQPpyHlz'><div class='first-image'><img class='first-thumb' src='https://i.ibb.co/XSqXWxw/chat.png'/></div><h1 class='FxBY-BvsuAW'>Chat App Beta By Pranav Dileep</h1><nav id='breadcrumb'><a class='home' href='https://pkdileepp.blogspot.com/?m=1'>PRANAV.K.DILEEP</a><a class='label' href='https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/search/label/Apps?m=1'></a></nav><script type='application/ld+json'>{"@context":"http://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/"},{"@type":"ListItem","position":2,"name":"Apps","item":"https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/search/label/Apps"},{"@type":"ListItem","position":3,"name":"Chat App Beta By Pranav Dileep","item":"https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.bogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html"}]}</script>
<div class='FHmlCbpwBfF'><div class='post-meta-info'><div class='second-line'><div class='meta-info'><span class='qvQOYJDjUik'><time class='KeUhKwxCxfI' datetime='2019-12-06T16:58:00-08:00'></time></span></div></div></div></div><div class='qUzDzQvDZvV'><div class='bcont'><div class='section comment'><div class='s1'><svg height='18' viewBox='0 0 24 24' width='18'><path d='M9,22A1,1 0 0,1 8,21V18H4A2,2 0 0,1 2,16V4C2,2.89 2.9,2 4,2H20A2,2 0 0,1 22,4V16A2,2 0 0,1 20,18H13.9L10.2,21.71C10,21.9 9.75,22 9.5,22V22H9M10,16V19.08L13.08,16H20V4H4V16H10Z'></path></svg></div><div class='s2'><a href='#comments'>3 Komentar</a></div></div><div class='section download'><div class='s1'><svg height='18' viewBox='0 0 24 24' width='18'><path d='M13,5V11H14.17L12,13.17L9.83,11H11V5H13M15,3H9V9H5L12,16L19,9H15V3M19,18H5V20H19V18Z'></path></svg></div><div class='s2'></div></div><div class='section label'><div class='s1'><svg height='18' viewBox='0 0 24 24' width='18'><path d='M6.5,17H15L18.5,12L15,7H6.5L10,12L6.5,17M15,19H3L7.5,12L3,5H15C15.69,5 16.23,5.3 16.64,5.86L21,12L16.64,18.14C16.23,18.7 15.69,19 15,19Z'></path></svg></div><div class='s2'><a class='label' href='https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/search/label/Personalization?m=1'>Personalization</a></div></div></div></div><div class='download-demo'><div class='bcont'><div class='download'><a alt='Download' class='buttons' href='#' rel='nofollow' target='_blank'>Download</a></div><div class='demo'><a alt='Demo' class='buttons' href='#' rel='nofollow' target='_blank'>Demo</a></div></div></div></div><div class='YIsIUuZvjxK'></div><div class='title-wrap'><h3>
Descriptions
</h3><a class='more showwwing' href='#NgRgUeYeLaR'><svg height='24' viewBox='0 0 24 24' width='24'><path d='M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z'></path></svg></a></div><div id='kEZUQLxosxj'></div><div class='NgRgUeYeLaR KkF_xcDFhgX BxGKLqTqQ-F' id='NgRgUeYeLaR'>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" data-original-height="70" data-original-width="70" src="https://1.bp.blogspot.com/-coSY0YIkEqs/Xemn1AkA6eI/AAAAAAAAAW4/KHj0QUGhi7AU7OkUwtL8RhXWzB2yFAvgACLcBGAsYHQ/s1600/unnamed.png" /></div>
<br />
Chat App from Pranav Dileep is a FREE messaging and video calling app. It’s used by over 2B people in more than 180 countries. It’s simple, reliable, and private, so you can easily keep in touch with your friends and family. Chat App works across mobile and desktop even on slow connections, with no subscription fees*.
**Private messaging across the world**
Your personal messages and calls to friends and family are end-to-end encrypted. No one outside of your chats, not even Chat App, can read or listen to them.
**Simple and secure connections, right away**
All you need is your phone number, no user names or logins. You can quickly view your contacts who are on Chat App and start messaging.
**High quality voice and video calls**
Make secure video and voice calls with up to 8 people for free*. Your calls work across mobile devices using your phone’s Internet service, even on slow connections.
**Group chats to keep you in contact**
Stay in touch with your friends and family. End-to-end encrypted group chats let you share messages, photos, videos and documents across mobile and desktop.
**Stay connected in real time**
Share your location with only those in your individual or group chat, and stop sharing at any time. Or record a voice message to connect quickly.
**Share daily moments through Status**
Status allows you to share text, photos, video and GIF updates that disappear after 24 hours. You can choose to share status posts with all your contacts or just selected ones.
*Data charges may apply. Contact your provider for details.
<br />
<h3 class="InfoBar">
<span class="icon-arrow-right"></span>ChatApp Beta By Pranav Dileep</h3>
<div class="" id="whats">
• Fixed WhatsApp overlay<br />
• Improved welcome dialog<br />
• Now support Android 10 Q<br />
• Fixed Instagram overlay<br />
• Various minor fixes and improvements<br />
• Revamp Instagram overlay! Added Gradient option<br />
• Added Google Chrome<br />
• Added XDA<br />
• Improve YouTube<br />
• Improve Google Duo overlay<br />
<br />
Previously<br />
• Improve WhatsApp overlay. Added more Chat Bubble option.<br />
• Improve PlayStore overlay<br />
• Added YouTubeGo overlay<br />
• Added Gallery Go overlay<br />
• Added Gboard overlay<br />
<br />
More info<br />
https://www.pranavkd.com</div>
<strike>demo~https://siasky.net/AADCmS0mjgmhRiF_OOMqRj9vwhSBAoK3T1UrrXZQXVPXYA</strike><strike>download~https://siasky.net/AADCmS0mjgmhRiF_OOMqRj9vwhSBAoK3T1UrrXZQXVPXYA</strike><strike>size=Size: 17 MB</strike><div class="slides"><div class="slide-content"><img alt="Screenshot Image" aria-hidden="true" src="https://i.ibb.co/YTVPRWF/Screenshot-2021-11-22-14-20-02-235-com-pranavkd-waclone-chat-activities.jpg" /></div><div class="slide-content"><img alt="Screenshot Image" aria-hidden="true" src="https://i.ibb.co/yQRKkLn/Screenshot-2021-11-22-14-19-56-484-com-pranavkd-waclone-chat-activities.jpg" /></div><div class="slide-content"><img alt="Screenshot Image" aria-hidden="true" src="https://i.ibb.co/g4R5558/Screenshot-2021-11-22-14-19-49-592-com-pranavkd-waclone-chat-activities.jpg" /></div><div class="slide-content"><img alt="Screenshot Image" aria-hidden="true" src="https://i.ibb.co/4pK7Vcd/Screenshot-2021-11-22-14-19-45-545-com-pranavkd-waclone-chat-activities.jpg" /></div><div class="slide-content"><img alt="Screenshot Image" aria-hidden="true" src="https://i.ibb.co/mRWzxyL/Screenshot-2021-11-22-14-19-41-102-com-pranavkd-waclone-chat-activities.jpg" /></div></div></div><div id='OtxHOYIQpOJ'></div><div class='ahaOvnarbIz'><span class='OTnFsaehvbk'>Tags</span><a class='ipSTRJZKdRT' href='https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/search/label/Apps?m=1' rel='tag'>Apps</a><a class='ipSTRJZKdRT' href='https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/search/label/Personalization?m=1' rel='tag'>Personalization</a></div></div><div class='tNdOiOeEFnf' id='tNdOiOeEFnf'><ul class='QpWPiVLIBc- social fTGiWP_LEyO'><li class='facebook-f'><a class='facebook new-window' data-height='650' data-url='https://www.facebook.com/sharer.php?u=https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html' data-width='550' href='javascript:;' rel='nofollow' title='Facebook'><svg height='20' viewBox='0 0 24 24' width='20'><path d='M17,2V2H17V6H15C14.31,6 14,6.81 14,7.5V10H14L17,10V14H14V22H10V14H7V10H10V6A4,4 0 0,1 14,2H17Z'></path></svg><span>Facebook</span></a></li><li class='twitter'><a class='twitter new-window' data-height='460' data-url='https://twitter.com/intent/tweet?url=https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html&text=Chat App Beta By Pranav Dileep' data-width='550' href='javascript:;' rel='nofollow' title='Twitter'><svg height='20' viewBox='0 0 24 24' width='20'><path d='M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z'></path></svg><span>Twitter</span></a></li><li class='pinterest-p'><a class='pinterest new-window' data-height='750' data-url='https://www.pinterest.com/pin/create/button/?url=https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html&media=https://1.bp.blogspot.com/-coSY0YIkEqs/Xemn1AkA6eI/AAAAAAAAAW4/KHj0QUGhi7AU7OkUwtL8RhXWzB2yFAvgACLcBGAsYHQ/s1600/unnamed.png&description=Chat App Beta By Pranav Dileep' data-width='735' href='javascript:;' rel='nofollow' title='Pinterest'><svg height='20' viewBox='0 0 24 24' width='20'><path d='M9.04,21.54C10,21.83 10.97,22 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2A10,10 0 0,0 2,12C2,16.25 4.67,19.9 8.44,21.34C8.35,20.56 8.26,19.27 8.44,18.38L9.59,13.44C9.59,13.44 9.3,12.86 9.3,11.94C9.3,10.56 10.16,9.53 11.14,9.53C12,9.53 12.4,10.16 12.4,10.97C12.4,11.83 11.83,13.06 11.54,14.24C11.37,15.22 12.06,16.08 13.06,16.08C14.84,16.08 16.22,14.18 16.22,11.5C16.22,9.1 14.5,7.46 12.03,7.46C9.21,7.46 7.55,9.56 7.55,11.77C7.55,12.63 7.83,13.5 8.29,14.07C8.38,14.13 8.38,14.21 8.35,14.36L8.06,15.45C8.06,15.62 7.95,15.68 7.78,15.56C6.5,15 5.76,13.18 5.76,11.71C5.76,8.55 8,5.68 12.32,5.68C15.76,5.68 18.44,8.15 18.44,11.43C18.44,14.87 16.31,17.63 13.26,17.63C12.29,17.63 11.34,17.11 11,16.5L10.33,18.87C10.1,19.73 9.47,20.88 9.04,21.57V21.54Z'></path></svg></a></li><li class='linkedin'><a class='linkedin new-window' data-height='700' data-url='https://www.linkedin.com/shareArticle?url=https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html' data-width='1000' href='javascript:;' rel='nofollow' title='LinkedIn'><svg height='20' viewBox='0 0 24 24' width='20'><path d='M21,21H17V14.25C17,13.19 15.81,12.31 14.75,12.31C13.69,12.31 13,13.19 13,14.25V21H9V9H13V11C13.66,9.93 15.36,9.24 16.5,9.24C19,9.24 21,11.28 21,13.75V21M7,21H3V9H7V21M5,3A2,2 0 0,1 7,5A2,2 0 0,1 5,7A2,2 0 0,1 3,5A2,2 0 0,1 5,3Z'></path></svg></a></li><li class='reddit'><a class='reddit new-window' data-height='460' data-url='https://reddit.com/submit?url=https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html&title=Chat App Beta By Pranav Dileep' data-width='550' href='javascript:;' rel='nofollow' title='Reddit'><svg height='20' viewBox='0 0 24 24' width='20'><path d='M22,12.14C22,10.92 21,9.96 19.81,9.96C19.22,9.96 18.68,10.19 18.29,10.57C16.79,9.5 14.72,8.79 12.43,8.7L13.43,4L16.7,4.71C16.73,5.53 17.41,6.19 18.25,6.19C19.11,6.19 19.81,5.5 19.81,4.63C19.81,3.77 19.11,3.08 18.25,3.08C17.65,3.08 17.11,3.43 16.86,3.95L13.22,3.18C13.11,3.16 13,3.18 12.93,3.24C12.84,3.29 12.79,3.38 12.77,3.5L11.66,8.72C9.33,8.79 7.23,9.5 5.71,10.58C5.32,10.21 4.78,10 4.19,10C2.97,10 2,10.96 2,12.16C2,13.06 2.54,13.81 3.29,14.15C3.25,14.37 3.24,14.58 3.24,14.81C3.24,18.18 7.16,20.93 12,20.93C16.84,20.93 20.76,18.2 20.76,14.81C20.76,14.6 20.75,14.37 20.71,14.15C21.46,13.81 22,13.04 22,12.14M7,13.7C7,12.84 7.68,12.14 8.54,12.14C9.4,12.14 10.1,12.84 10.1,13.7A1.56,1.56 0 0,1 8.54,15.26C7.68,15.28 7,14.56 7,13.7M15.71,17.84C14.63,18.92 12.59,19 12,19C11.39,19 9.35,18.9 8.29,17.84C8.13,17.68 8.13,17.43 8.29,17.27C8.45,17.11 8.7,17.11 8.86,17.27C9.54,17.95 11,18.18 12,18.18C13,18.18 14.47,17.95 15.14,17.27C15.3,17.11 15.55,17.11 15.71,17.27C15.85,17.43 15.85,17.68 15.71,17.84M15.42,15.28C14.56,15.28 13.86,14.58 13.86,13.72A1.56,1.56 0 0,1 15.42,12.16C16.28,12.16 17,12.86 17,13.72C17,14.56 16.28,15.28 15.42,15.28Z'></path></svg></a></li><li class='whatsapp'><a class='whatsapp new-window' data-height='550' data-url='https://api.whatsapp.com/send?text=Chat App Beta By Pranav Dileep | https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html' data-width='900' href='javascript:;' rel='nofollow' title='WhatsApp'><svg height='20' viewBox='0 0 24 24' width='20'><path d='M16.75,13.96C17,14.09 17.16,14.16 17.21,14.26C17.27,14.37 17.25,14.87 17,15.44C16.8,16 15.76,16.54 15.3,16.56C14.84,16.58 14.83,16.92 12.34,15.83C9.85,14.74 8.35,12.08 8.23,11.91C8.11,11.74 7.27,10.53 7.31,9.3C7.36,8.08 8,7.5 8.26,7.26C8.5,7 8.77,6.97 8.94,7H9.41C9.56,7 9.77,6.94 9.96,7.45L10.65,9.32C10.71,9.45 10.75,9.6 10.66,9.76L10.39,10.17L10,10.59C9.88,10.71 9.74,10.84 9.88,11.09C10,11.35 10.5,12.18 11.2,12.87C12.11,13.75 12.91,14.04 13.15,14.17C13.39,14.31 13.54,14.29 13.69,14.13L14.5,13.19C14.69,12.94 14.85,13 15.08,13.08L16.75,13.96M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22C10.03,22 8.2,21.43 6.65,20.45L2,22L3.55,17.35C2.57,15.8 2,13.97 2,12A10,10 0 0,1 12,2M12,4A8,8 0 0,0 4,12C4,13.72 4.54,15.31 5.46,16.61L4.5,19.5L7.39,18.54C8.69,19.46 10.28,20 12,20A8,8 0 0,0 20,12A8,8 0 0,0 12,4Z'></path></svg></a></li><li class='telegram'><a class='telegram new-window' data-height='460' data-url='https://telegram.me/share/url?url=https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html&text=Chat App Beta By Pranav Dileep' data-width='550' href='javascript:;' rel='nofollow' title='Telegram'><svg height='20' viewBox='0 0 24 24' width='20'><path d='M9.78,18.65L10.06,14.42L17.74,7.5C18.08,7.19 17.67,7.04 17.22,7.31L7.74,13.3L3.64,12C2.76,11.75 2.75,11.14 3.84,10.7L19.81,4.54C20.54,4.21 21.24,4.72 20.96,5.84L18.24,18.65C18.05,19.56 17.5,19.78 16.74,19.36L12.6,16.3L10.61,18.23C10.38,18.46 10.19,18.65 9.78,18.65Z'></path></svg></a></li><li class='email'><a class='email new-window' data-height='460' data-url='mailto:?subject=Chat App Beta By Pranav Dileep&body=https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html' data-width='550' href='javascript:;' rel='nofollow' title='Email'><svg height='20' viewBox='0 0 24 24' width='20'><path d='M22 6C22 4.9 21.1 4 20 4H4C2.9 4 2 4.9 2 6V18C2 19.1 2.9 20 4 20H20C21.1 20 22 19.1 22 18V6M20 6L12 11L4 6H20M20 18H4V8L12 13L20 8V18Z'></path></svg></a></li><li class='show-hid'><a href='javascript:;' rel='nofollow'><span class='more'>+</span><span class='less'>-</span></a></li></ul></div></div><div class='ElKRAjAyAAl'><div class='flXpImjHOeX'>
<div class='VPdpeAXPKRv'></div><h3 class='zqJcePtQpPu'><a alt='DXP' href='' target='_blank'>DXP</a></h3><div class='dSEyfTyaVEE social gfwyUZuXStJ'><span class='sL-lWzrxfnK nvAbKe-CNil'>Hi</span></div></div><div id='QKqIQuamkHo'><div class='title-wrap xbWQPFae_ie'><h3>
You Might Also Like
</h3><a class='more' href='https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/search/label/Apps?m=1'><svg height='24' viewBox='0 0 24 24' width='24'><path d='M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z'></path></svg></a></div><div class='YkcvDwIGllx'><div class='related-tag' data-label='Apps'></div></div></div></div></article><div class='guiq_KMLGeb'><script type='text/javascript'>
var disqus_shortname = disqusShortname;
var disqus_blogger_current_url = "https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html";
if (!disqus_blogger_current_url.length) {
disqus_blogger_current_url = "https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html";
}
var disqus_blogger_homepage_url = "https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/";
var disqus_blogger_canonical_homepage_url = "https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/";
</script><script type='text/javascript'>
//<![CDATA[
if (commentsSystem == 'disqus') {
(function() {
var bloggerjs = document.createElement('script');
bloggerjs.type = 'text/javascript';
bloggerjs.async = true;
bloggerjs.src = '//' + disqus_shortname + '.disqus.com/blogger_item.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(bloggerjs);
})();
}
//]]></script><section class='comments threaded' data-embed='true' data-num-comments='3' id='comments'>
<a name='comments'></a><div class='title-wrap comments-title'><h3 class='title'><span class='messages'>
Reviews and Comments
</span></h3><a class='more' href='#comments'><svg height='24' viewBox='0 0 24 24' width='24'><path d='M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z'></path></svg></a></div><div class='qUzDzQvDZvV'><div class='BuwJLICAgft'><div aria-label='Rated 4.5 stars out of five stars' class='EpzwWPboxxj'>3.5</div><div class='lzEbpbAhYcl'><div aria-label='Rated 4.5 stars out of five stars' role='img'><div class='ZRoFIZiY-EB'><svg height='16' viewBox='0 0 24 24' width='16'><path d='M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z'></path></svg></div><div class='ZRoFIZiY-EB'><svg height='16' viewBox='0 0 24 24' width='16'><path d='M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z'></path></svg></div><div class='ZRoFIZiY-EB'><svg height='16' viewBox='0 0 24 24' width='16'><path d='M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z'></path></svg></div><div class='ZRoFIZiY-EB'><svg height='16' viewBox='0 0 24 24' width='16'><path d='M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z'></path></svg></div><div class='ZRoFIZiY-EB'><svg height='16' viewBox='0 0 24 24' width='16'><path d='M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z'></path></svg></div></div></div><span class='oQMmyOtjPLd'><span aria-label='ratings' class=''>3</span></span></div><div class='m-GwWBFmbcL'><div class='sFBlhHLLbgx'><span class='qIAqXOFx_NH'>0</span><span class='wMtyKggcifv' style='width: 0'></span></div><div class='sFBlhHLLbgx'><span class='qIAqXOFx_NH'>4</span><span class='wMtyKggcifv' style='width: 60%'></span></div><div class='sFBlhHLLbgx'><span class='qIAqXOFx_NH'>3</span><span class='wMtyKggcifv' style='width: 40%'></span></div><div class='sFBlhHLLbgx'><span class='qIAqXOFx_NH'>2</span><span class='wMtyKggcifv' style='width: 20%'></span></div><div class='sFBlhHLLbgx'><span class='qIAqXOFx_NH'>1</span><span class='wMtyKggcifv' style='width: 10%'></span></div></div></div><div class='comments-content'><script async='async' src='' type='text/javascript'></script><script type='text/javascript'>(function(){/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
var m=this||self,p=function(a,b){function d(){}d.prototype=b.prototype;a.superClass_=b.prototype;a.prototype=new d;a.prototype.constructor=a;a.base=function(f,e,q){for(var r=Array(arguments.length-2),n=2;n<arguments.length;n++)r[n-2]=arguments[n];return b.prototype[e].apply(f,r)}},t=function(a){return a};/*
Copyright 2021 Google LLC
SPDX-License-Identifier: Apache-2.0
*/
function w(a){if(Error.captureStackTrace)Error.captureStackTrace(this,w);else{var b=Error().stack;b&&(this.stack=b)}a&&(this.message=String(a))}p(w,Error);w.prototype.name="CustomError";var x=function(a,b){a=a.split("%s");for(var d="",f=a.length-1,e=0;e<f;e++)d+=a[e]+(e<b.length?b[e]:"%s");w.call(this,d+a[f])};p(x,w);x.prototype.name="AssertionError";var y=function(a,b){throw new x("Failure"+(a?": "+a:""),Array.prototype.slice.call(arguments,1));};var C;var E=function(a,b){this.privateDoNotAccessOrElseTrustedResourceUrlWrappedValue_=b===D?a:""};E.prototype.toString=function(){return this.privateDoNotAccessOrElseTrustedResourceUrlWrappedValue_+""};var D={},G=function(a){if(void 0===C){var b=null;var d=m.trustedTypes;if(d&&d.createPolicy)try{b=d.createPolicy("goog#html",{createHTML:t,createScript:t,createScriptURL:t})}catch(f){m.console&&m.console.error(f.message)}C=b}a=(b=C)?b.createScriptURL(a):a;return new E(a,D)};function H(a,b){if(b instanceof E&&b.constructor===E)b=b.privateDoNotAccessOrElseTrustedResourceUrlWrappedValue_;else{var d=typeof b;y("expected object of type TrustedResourceUrl, got '"+b+"' of type "+("object"!=d?d:b?Array.isArray(b)?"array":d:"null"));b="type_error:TrustedResourceUrl"}a.src=b;var f;b=(a.ownerDocument&&a.ownerDocument.defaultView||window).document;(f=(d=null===(f=b.querySelector)||void 0===f?void 0:f.call(b,"script[nonce]"))?d.nonce||d.getAttribute("nonce")||"":"")&&a.setAttribute("nonce",
f)};var M=function(){var a=document;var b="SCRIPT";"application/xhtml+xml"===a.contentType&&(b=b.toLowerCase());return a.createElement(b)};var N=function(a,b,d){var f=null;a&&0<a.length&&(f=parseInt(a[a.length-1].timestamp,10)+1);var e=null,q=null,r=void 0,n=null,z=(window.location.hash||"#").substring(1),I,J;/^comment-form_/.test(z)?I=z.substring(13):/^c[0-9]+$/.test(z)&&(J=z.substring(1));var R={id:d.postId,data:a,loadNext:function(l){if(f){var g=d.feed+"?alt=json&v=2&orderby=published&reverse=false&max-results=50";f&&(g+="&published-min="+(new Date(f)).toISOString());window.bloggercomments=function(A){f=null;var u=[];if(A&&A.feed&&
A.feed.entry)for(var K=0,c;c=A.feed.entry[K];K++){var k={},h=/blog-(\d+).post-(\d+)/.exec(c.id.$t);k.id=h?h[2]:null;h=k;a:{var v=void 0;var L=c&&(c.content&&c.content.$t||c.summary&&c.summary.$t)||"";if(c&&c.gd$extendedProperty)for(v in c.gd$extendedProperty)if("blogger.contentRemoved"==c.gd$extendedProperty[v].name){v='<span class="deleted-comment">'+L+"</span>";break a}v=L}h.body=v;k.timestamp=Date.parse(c.published.$t)+"";c.author&&c.author.constructor===Array&&(h=c.author[0])&&(k.author={name:h.name?
h.name.$t:void 0,profileUrl:h.uri?h.uri.$t:void 0,avatarUrl:h.gd$image?h.gd$image.src:void 0});c.link&&(c.link[2]&&(k.link=k.permalink=c.link[2].href),c.link[3]&&(h=/.*comments\/default\/(\d+)\?.*/.exec(c.link[3].href))&&h[1]&&(k.parentId=h[1]));k.deleteclass="item-control blog-admin";if(c.gd$extendedProperty)for(var B in c.gd$extendedProperty)"blogger.itemClass"==c.gd$extendedProperty[B].name?k.deleteclass+=" "+c.gd$extendedProperty[B].value:"blogger.displayTime"==c.gd$extendedProperty[B].name&&
(k.displayTime=c.gd$extendedProperty[B].value);u.push(k)}f=50>u.length?null:parseInt(u[u.length-1].timestamp,10)+1;l(u);window.bloggercomments=null};var F=M();F.type="text/javascript";H(F,G(g+"&callback=bloggercomments"));document.getElementsByTagName("head")[0].appendChild(F)}},hasMore:function(){return!!f},getMeta:function(l,g){return"iswriter"==l?g.author&&g.author.name==d.authorName&&g.author.profileUrl==d.authorUrl?"true":"":"deletelink"==l?d.baseUri+"/delete-comment.g?blogID="+d.blogId+"&postID="+
g.id:"deleteclass"==l?g.deleteclass:""},onReply:function(l,g){null==e&&(e=document.getElementById("comment-editor"),null!=e&&(n=e.style.height,e.style.display="block",q=e.src.split("#")));e&&l&&l!==r&&(document.getElementById(g).insertBefore(e,null),g=q[0]+(l?"&parentID="+l:""),q[1]&&(g=g+"#"+q[1]),e.src=g,e.style.height=n||e.style.height,r=l,e.removeAttribute("data-resized"),e.dispatchEvent(new Event("iframeMoved")))},rendered:!0,initComment:J,initReplyThread:I,config:{maxDepth:d.maxThreadDepth},
messages:b};a=function(){window.goog&&window.goog.comments&&window.goog.comments.render(document.getElementById("comment-holder"),R)};window.goog&&window.goog.comments?a():(window.goog=window.goog||{},window.goog.comments=window.goog.comments||{},window.goog.comments.loadQueue=window.goog.comments.loadQueue||[],window.goog.comments.loadQueue.push(a))},O=["blogger","widgets","blog","initThreadedComments"],P=m;O[0]in P||"undefined"==typeof P.execScript||P.execScript("var "+O[0]);
for(var Q;O.length&&(Q=O.shift());)O.length||void 0===N?P=P[Q]&&P[Q]!==Object.prototype[Q]?P[Q]:P[Q]={}:P[Q]=N;}).call(this);
</script><script type='text/javascript'>
blogger.widgets.blog.initThreadedComments(
null,
null,
{});
</script><div id='comment-holder'><div class="comment-thread toplevel-thread"><ol id="top-ra"><li class="comment" id="c1911089938680576667"><div class="avatar-image-container"><img src="//3.bp.blogspot.com/-MgOk17wmTxE/YLsDwGnh4eI/AAAAAAAAA7Y/aIrYHX7MdJE-8klCLpwoZKrVRcMAqvkzACK4BGAYYCw/s35/CC_20210605_102415.png" alt=""/></div><div class="comment-block"><div class="comment-header"><cite class="user"><a href="https://www.blogger.com/profile/16725897111467140498" rel="nofollow">Vιԋαƚ Rαɱ мαℓℓ</a></cite><span class="icon user "></span><span class="datetime secondary-text"><a rel="nofollow" href="https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html?showComment=1616869492493&m=1#c1911089938680576667">March 27, 2021 at 11:24 AM</a></span></div><p class="comment-content">Mast haii</p><span class="comment-actions secondary-text"><a class="comment-reply" target="_self" data-comment-id="1911089938680576667">Reply</a><span class="item-control blog-admin blog-admin pid-345458796"><a target="_self" href="https://www.blogger.com/delete-comment.g?blogID=1514000847673033007&postID=1911089938680576667">Delete</a></span></span></div><div class="comment-replies"><div id="c1911089938680576667-rt" class="comment-thread inline-thread hidden"><span class="thread-toggle thread-expanded"><span class="thread-arrow"></span><span class="thread-count"><a target="_self">Replies</a></span></span><ol id="c1911089938680576667-ra" class="thread-chrome thread-expanded"><div></div><div id="c1911089938680576667-continue" class="continue"><a class="comment-reply" target="_self" data-comment-id="1911089938680576667">Reply</a></div></ol></div></div><div class="comment-replybox-single" id="c1911089938680576667-ce"></div></li><li class="comment" id="c3192928142894453763"><div class="avatar-image-container"><img src="//www.blogger.com/img/blogger_logo_round_35.png" alt=""/></div><div class="comment-block"><div class="comment-header"><cite class="user"><a href="https://www.blogger.com/profile/01151436799134216113" rel="nofollow">Unknown</a></cite><span class="icon user "></span><span class="datetime secondary-text"><a rel="nofollow" href="https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html?showComment=1618449042413&m=1#c3192928142894453763">April 14, 2021 at 6:10 PM</a></span></div><p class="comment-content">Hi</p><span class="comment-actions secondary-text"><a class="comment-reply" target="_self" data-comment-id="3192928142894453763">Reply</a><span class="item-control blog-admin blog-admin pid-1205849897"><a target="_self" href="https://www.blogger.com/delete-comment.g?blogID=1514000847673033007&postID=3192928142894453763">Delete</a></span></span></div><div class="comment-replies"><div id="c3192928142894453763-rt" class="comment-thread inline-thread hidden"><span class="thread-toggle thread-expanded"><span class="thread-arrow"></span><span class="thread-count"><a target="_self">Replies</a></span></span><ol id="c3192928142894453763-ra" class="thread-chrome thread-expanded"><div></div><div id="c3192928142894453763-continue" class="continue"><a class="comment-reply" target="_self" data-comment-id="3192928142894453763">Reply</a></div></ol></div></div><div class="comment-replybox-single" id="c3192928142894453763-ce"></div></li><li class="comment" id="c4392053074989978842"><div class="avatar-image-container"><img src="//2.bp.blogspot.com/-JalYNTgz9pc/YTlxlr5wCUI/AAAAAAAAB88/djTgqQzVINIOMg2hU9K5gFZcBZHJ_tBtwCK4BGAYYCw/s35/20210905_212853_0000.png" alt=""/></div><div class="comment-block"><div class="comment-header"><cite class="user"><a href="https://www.blogger.com/profile/06154813304635952991" rel="nofollow">Jubayer Ahmed</a></cite><span class="icon user "></span><span class="datetime secondary-text"><a rel="nofollow" href="https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html?showComment=1625334761500&m=1#c4392053074989978842">July 3, 2021 at 10:52 AM</a></span></div><p class="comment-content">Test</p><span class="comment-actions secondary-text"><a class="comment-reply" target="_self" data-comment-id="4392053074989978842">Reply</a><span class="item-control blog-admin blog-admin pid-448851832"><a target="_self" href="https://www.blogger.com/delete-comment.g?blogID=1514000847673033007&postID=4392053074989978842">Delete</a></span></span></div><div class="comment-replies"><div id="c4392053074989978842-rt" class="comment-thread inline-thread hidden"><span class="thread-toggle thread-expanded"><span class="thread-arrow"></span><span class="thread-count"><a target="_self">Replies</a></span></span><ol id="c4392053074989978842-ra" class="thread-chrome thread-expanded"><div></div><div id="c4392053074989978842-continue" class="continue"><a class="comment-reply" target="_self" data-comment-id="4392053074989978842">Reply</a></div></ol></div></div><div class="comment-replybox-single" id="c4392053074989978842-ce"></div></li></ol><div id="top-continue" class="continue"><a class="comment-reply" target="_self">Add comment</a></div><div class="comment-replybox-thread" id="top-ce"></div><div class="loadmore hidden" data-post-id="1690150740204473703"><a target="_self">Load more...</a></div></div></div></div><p class='comment-footer'><div class='comment-form'><a name='comment-form'></a><h4 id='comment-post-message'>Post a Comment</h4><a href='https://www.blogger.com/comment-iframe.g?blogID=1514000847673033007&postID=1690150740204473703&m=1' id='comment-editor-src'></a><iframe allowtransparency='allowtransparency' class='blogger-iframe-colorize blogger-comment-from-post' frameborder='0' height='410px' id='comment-editor' name='comment-editor' src='' width='100%'></iframe><script src='https://www.blogger.com/static/v1/jsbin/186635561-comment_from_post_iframe.js' type='text/javascript'></script><script type='text/javascript'>
BLOG_CMT_createIframe('https://www.blogger.com/rpc_relay.html');
</script></div></p></section></div><div class='cuQbKvIAACH'><a class='FYAEeyvZXBs' href='https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/kuji-cam-v22121-premium.html?m=1' id='Blog1_FYAEeyvZXBs'><svg height='20' style='fill: currentColor; margin-right: 5px;' viewBox='0 0 24 24' width='20'><path d='M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z'></path></svg>
Previous Post
</a><a class='TLRNTFxLVEf' href='https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/prime-novus-substratum-v2768-patched-pie.html?m=1' id='Blog1_TLRNTFxLVEf'>
Next Post
<svg height='20' style='fill: currentColor; margin-left: 5px;' viewBox='0 0 24 24' width='20'><path d='M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z'></path></svg></a></div></div>
<script type='text/javascript'>
var messages = {
showMore: "Show more",
postAuthor: "true",
postDate: "true"
}
</script>
</div></div><div class='tshHtdARdo-' id='tshHtdARdo-'><div class='no-items section' id='HLjceGbUODN' name='Post ADS 1'></div><div class='no-items section' id='ShiRG_QkQfj' name='Post ADS 2'></div></div>
</main><aside class='mYCTShOgfYC SlvsDVeEMLb' id='mYCTShOgfYC'>
<div class='sidebar rngwiv-sQEZ section' id='sidebar' name='Main Sidebar'><div class='widget Label' data-version='2' id='Label3'><div class='widget-title'>
<h3 class='title'>Categories</h3></div><div class='widget-content list-label'>
<ul><li><a class='label-name' href='https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/search/label/Apps?m=1'>Apps<span class='label-count'>(19)</span></a></li><li><a class='label-name' href='https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/search/label/Games?m=1'>Games<span class='label-count'>(6)</span></a></li></ul></div></div><div class='widget Label' data-version='2' id='Label2'><div class='widget-title'>
<h3 class='title'>Main Tags</h3></div><div class='widget-content cloud-label'>
<ul><li><a class='label-name' href='https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/search/label/Casual?m=1'>Casual</a></li><li><a class='label-name' href='https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/search/label/Photography?m=1'>Photography</a></li><li><a class='label-name' href='https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/search/label/Tools?m=1'>Tools</a></li></ul></div></div></div><div class='sidebar rngwiv-sQEZ section' id='Kt_-gFHGGyE' name='Sidebar ADS'><div class='widget HTML no-style' data-version='2' id='HTML10'>
<div class='widget-title'>
<h3 class='title'>no-style</h3></div><div class='widget-content'><a class="ads-here ad-600" href="javascript:;">Responsive Advertisement</a></div></div></div></aside></div></div><div class='clearfix'></div><footer class='DKFHExRwwzq' id='YrWQBpZyErG'>
<div class='border' id='footerbar'>
<div class='container uSaddoqbqZa'><div class='AdZyVQTCjqL' id='AdZyVQTCjqL'><span class='liXJoJYMALQ widget'>© Copyright - Goolge Plays</span></div></div></div></footer><div class='IwFoKwzsVKY' id='IwFoKwzsVKY' style='display:none'><div class='zcZ_ElS_UPQ section' id='zcZ_ElS_UPQ'><div class='widget ContactForm' data-version='2' id='ContactForm1'><div class='widget-title'>
<h3 class='title'>Contact Form</h3></div><div class='contact-form-widget'><div class='form'><form name='contact-form'><input class='contact-form-name' id='ContactForm1_contact-form-name' name='name' placeholder='Name' size='30' type='text' value=''/><input class='contact-form-email' id='ContactForm1_contact-form-email' name='email' placeholder='Email*' size='30' type='text' value=''/><textarea class='contact-form-email-message' cols='25' id='ContactForm1_contact-form-email-message' name='email-message' placeholder='Message*' rows='5'></textarea><input class='contact-form-button contact-form-button-submit' id='ContactForm1_contact-form-submit' type='button' value='Send'/><p class='contact-form-error-message' id='ContactForm1_contact-form-error-message'></p><p class='contact-form-success-message' id='ContactForm1_contact-form-success-message'></p></form></div></div></div></div></div></div><script defer='defer' type='text/javascript'>
var fixedSidebar = true;
</script><script src='https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js'></script><script type='text/javascript'>
//<![CDATA[
/*! Theia Sticky Sidebar | v1.7.0 - https://github.com/WeCodePixels/theia-sticky-sidebar */
(function($){$.fn.theiaStickySidebar=function(options){var defaults={'containerSelector':'','additionalMarginTop':0,'additionalMarginBottom':0,'updateSidebarHeight':true,'minWidth':0,'disableOnResponsiveLayouts':true,'sidebarBehavior':'modern','defaultPosition':'relative','namespace':'TSS'};options=$.extend(defaults,options);options.additionalMarginTop=parseInt(options.additionalMarginTop)||0;options.additionalMarginBottom=parseInt(options.additionalMarginBottom)||0;tryInitOrHookIntoEvents(options,this);function tryInitOrHookIntoEvents(options,$that){var success=tryInit(options,$that);if(!success){console.log('TSS: Body width smaller than options.minWidth. Init is delayed.');$(document).on('scroll.'+options.namespace,function(options,$that){return function(evt){var success=tryInit(options,$that);if(success){$(this).unbind(evt)}}}(options,$that));$(window).on('resize.'+options.namespace,function(options,$that){return function(evt){var success=tryInit(options,$that);if(success){$(this).unbind(evt)}}}(options,$that))}}function tryInit(options,$that){if(options.initialized===true){return true}if($('body').width()<options.minWidth){return false}init(options,$that);return true}function init(options,$that){options.initialized=true;var existingStylesheet=$('#theia-sticky-sidebar-stylesheet-'+options.namespace);if(existingStylesheet.length===0){$('head').append($('<style id="theia-sticky-sidebar-stylesheet-'+options.namespace+'">.theiaStickySidebar:after {content: ""; display: table; clear: both;}</style>'))}$that.each(function(){var o={};o.sidebar=$(this);o.options=options||{};o.container=$(o.options.containerSelector);if(o.container.length==0){o.container=o.sidebar.parent()}o.sidebar.parents().css('-webkit-transform','none');o.sidebar.css({'position':o.options.defaultPosition,'overflow':'visible','-webkit-box-sizing':'border-box','-moz-box-sizing':'border-box','box-sizing':'border-box'});o.stickySidebar=o.sidebar.find('.theiaStickySidebar');if(o.stickySidebar.length==0){var javaScriptMIMETypes=/(?:text|application)\/(?:x-)?(?:javascript|ecmascript)/i;o.sidebar.find('script').filter(function(index,script){return script.type.length===0||script.type.match(javaScriptMIMETypes)}).remove();o.stickySidebar=$('<div>').addClass('theiaStickySidebar').append(o.sidebar.children());o.sidebar.append(o.stickySidebar)}o.marginBottom=parseInt(o.sidebar.css('margin-bottom'));o.paddingTop=parseInt(o.sidebar.css('padding-top'));o.paddingBottom=parseInt(o.sidebar.css('padding-bottom'));var collapsedTopHeight=o.stickySidebar.offset().top;var collapsedBottomHeight=o.stickySidebar.outerHeight();o.stickySidebar.css('padding-top',1);o.stickySidebar.css('padding-bottom',1);collapsedTopHeight-=o.stickySidebar.offset().top;collapsedBottomHeight=o.stickySidebar.outerHeight()-collapsedBottomHeight-collapsedTopHeight;if(collapsedTopHeight==0){o.stickySidebar.css('padding-top',0);o.stickySidebarPaddingTop=0}else{o.stickySidebarPaddingTop=1}if(collapsedBottomHeight==0){o.stickySidebar.css('padding-bottom',0);o.stickySidebarPaddingBottom=0}else{o.stickySidebarPaddingBottom=1}o.previousScrollTop=null;o.fixedScrollTop=0;resetSidebar();o.onScroll=function(o){if(!o.stickySidebar.is(":visible")){return}if($('body').width()<o.options.minWidth){resetSidebar();return}if(o.options.disableOnResponsiveLayouts){var sidebarWidth=o.sidebar.outerWidth(o.sidebar.css('float')=='none');if(sidebarWidth+50>o.container.width()){resetSidebar();return}}var scrollTop=$(document).scrollTop();var position='static';if(scrollTop>=o.sidebar.offset().top+(o.paddingTop-o.options.additionalMarginTop)){var offsetTop=o.paddingTop+options.additionalMarginTop;var offsetBottom=o.paddingBottom+o.marginBottom+options.additionalMarginBottom;var containerTop=o.sidebar.offset().top;var containerBottom=o.sidebar.offset().top+getClearedHeight(o.container);var windowOffsetTop=0+options.additionalMarginTop;var windowOffsetBottom;var sidebarSmallerThanWindow=(o.stickySidebar.outerHeight()+offsetTop+offsetBottom)<$(window).height();if(sidebarSmallerThanWindow){windowOffsetBottom=windowOffsetTop+o.stickySidebar.outerHeight()}else{windowOffsetBottom=$(window).height()-o.marginBottom-o.paddingBottom-options.additionalMarginBottom}var staticLimitTop=containerTop-scrollTop+o.paddingTop;var staticLimitBottom=containerBottom-scrollTop-o.paddingBottom-o.marginBottom;var top=o.stickySidebar.offset().top-scrollTop;var scrollTopDiff=o.previousScrollTop-scrollTop;if(o.stickySidebar.css('position')=='fixed'){if(o.options.sidebarBehavior=='modern'){top+=scrollTopDiff}}if(o.options.sidebarBehavior=='stick-to-top'){top=options.additionalMarginTop}if(o.options.sidebarBehavior=='stick-to-bottom'){top=windowOffsetBottom-o.stickySidebar.outerHeight()}if(scrollTopDiff>0){top=Math.min(top,windowOffsetTop)}else{top=Math.max(top,windowOffsetBottom-o.stickySidebar.outerHeight())}top=Math.max(top,staticLimitTop);top=Math.min(top,staticLimitBottom-o.stickySidebar.outerHeight());var sidebarSameHeightAsContainer=o.container.height()==o.stickySidebar.outerHeight();if(!sidebarSameHeightAsContainer&&top==windowOffsetTop){position='fixed'}else if(!sidebarSameHeightAsContainer&&top==windowOffsetBottom-o.stickySidebar.outerHeight()){position='fixed'}else if(scrollTop+top-o.sidebar.offset().top-o.paddingTop<=options.additionalMarginTop){position='static'}else{position='absolute'}}if(position=='fixed'){var scrollLeft=$(document).scrollLeft();o.stickySidebar.css({'position':'fixed','width':getWidthForObject(o.stickySidebar)+'px','transform':'translateY('+top+'px)','left':(o.sidebar.offset().left+parseInt(o.sidebar.css('padding-left'))-scrollLeft)+'px','top':'0px'})}else if(position=='absolute'){var css={};if(o.stickySidebar.css('position')!='absolute'){css.position='absolute';css.transform='translateY('+(scrollTop+top-o.sidebar.offset().top-o.stickySidebarPaddingTop-o.stickySidebarPaddingBottom)+'px)';css.top='0px'}css.width=getWidthForObject(o.stickySidebar)+'px';css.left='';o.stickySidebar.css(css)}else if(position=='static'){resetSidebar()}if(position!='static'){if(o.options.updateSidebarHeight==true){o.sidebar.css({'min-height':o.stickySidebar.outerHeight()+o.stickySidebar.offset().top-o.sidebar.offset().top+o.paddingBottom})}}o.previousScrollTop=scrollTop};o.onScroll(o);$(document).on('scroll.'+o.options.namespace,function(o){return function(){o.onScroll(o)}}(o));$(window).on('resize.'+o.options.namespace,function(o){return function(){o.stickySidebar.css({'position':'static'});o.onScroll(o)}}(o));if(typeof ResizeSensor!=='undefined'){new ResizeSensor(o.stickySidebar[0],function(o){return function(){o.onScroll(o)}}(o))}function resetSidebar(){o.fixedScrollTop=0;o.sidebar.css({'min-height':'1px'});o.stickySidebar.css({'position':'static','width':'','transform':'none'})}function getClearedHeight(e){var height=e.height();e.children().each(function(){height=Math.max(height,$(this).height())});return height}})}function getWidthForObject(object){var width;try{width=object[0].getBoundingClientRect().width}catch(err){}if(typeof width==="undefined"){width=object.width()}return width}return this}})(jQuery);
/*! jQuery replaceText by "Cowboy" Ben Alman | v1.1.0 - http://benalman.com/projects/jquery-replacetext-plugin/ */
(function($){$.fn.replaceText=function(b,a,c){return this.each(function(){var f=this.firstChild,g,e,d=[];if(f){do{if(f.nodeType===3){g=f.nodeValue;e=g.replace(b,a);if(e!==g){if(!c&&/</.test(e)){$(f).before(e);d.push(f)}else{f.nodeValue=e}}}}while(f=f.nextSibling)}d.length&&$(d).remove()})}})(jQuery);
//]]></script><script type='text/javascript'>
//<![CDATA[
var fckucloner_0x1e80=['\x2f\x30\x2e','\x6e\x61\x6d\x65','\x70\x6f\x73\x74\x41\x75\x74\x68\x6f\x72','\x74\x72\x75\x65','\x3c\x73\x70\x61\x6e\x20\x63\x6c\x61\x73\x73\x3d\x22\x72\x4c\x49\x4d\x6c\x52\x53\x74\x43\x46\x57\x22\x3e','\x3c\x2f\x73\x70\x61\x6e\x3e','\x70\x75\x62\x6c\x69\x73\x68\x65\x64','\x73\x75\x62\x73\x74\x72\x69\x6e\x67','\x70\x6f\x73\x74\x44\x61\x74\x65','\x3c\x73\x70\x61\x6e\x20\x63\x6c\x61\x73\x73\x3d\x22\x71\x76\x51\x4f\x59\x4a\x44\x6a\x55\x69\x6b\x22\x3e\x3c\x74\x69\x6d\x65\x20\x63\x6c\x61\x73\x73\x3d\x22\x4b\x65\x55\x68\x4b\x77\x78\x43\x78\x66\x49\x22\x20\x64\x61\x74\x65\x74\x69\x6d\x65\x3d\x22','\x3c\x2f\x74\x69\x6d\x65\x3e\x3c\x2f\x73\x70\x61\x6e\x3e','\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\x46\x48\x6d\x6c\x43\x62\x70\x77\x42\x66\x46\x22\x3e','\x63\x61\x74\x65\x67\x6f\x72\x79','\x74\x65\x72\x6d','\x3c\x73\x70\x61\x6e\x20\x63\x6c\x61\x73\x73\x3d\x22\x65\x6e\x74\x72\x79\x2d\x63\x61\x74\x65\x67\x6f\x72\x79\x22\x3e','\x61\x75\x74\x68\x6f\x72','\x67\x64\x24\x69\x6d\x61\x67\x65','\x2f\x73\x31\x31\x33','\x2f\x77\x35\x35\x2d\x68\x35\x35\x2d\x70\x2d\x6b\x2d\x6e\x6f\x2d\x6e\x75','\x2f\x2f\x34\x2e\x62\x70\x2e\x62\x6c\x6f\x67\x73\x70\x6f\x74\x2e\x63\x6f\x6d\x2f\x2d\x6f\x53\x6a\x50\x38\x46\x30\x39\x71\x78\x6f\x2f\x57\x79\x31\x4a\x39\x64\x70\x37\x62\x30\x49\x2f\x41\x41\x41\x41\x41\x41\x41\x41\x43\x46\x30\x2f\x67\x67\x63\x52\x66\x4c\x43\x46\x51\x39\x73\x32\x53\x53\x61\x65\x4c\x39\x42\x46\x53\x45\x32\x77\x79\x54\x59\x7a\x51\x61\x54\x79\x51\x43\x4b\x34\x42\x47\x41\x59\x59\x43\x77\x2f\x77\x35\x35\x2d\x68\x35\x35\x2d\x70\x2d\x6b\x2d\x6e\x6f\x2d\x6e\x75\x2f\x61\x76\x61\x74\x61\x72\x2e\x6a\x70\x67','\x3c\x61\x72\x74\x69\x63\x6c\x65\x20\x63\x6c\x61\x73\x73\x3d\x22\x63\x75\x73\x74\x6f\x6d\x2d\x69\x74\x65\x6d\x20\x5f\x6e\x79\x2d\x76\x6f\x45\x48\x43\x43\x7a','\x22\x3e\x3c\x61\x20\x63\x6c\x61\x73\x73\x3d\x22\x69\x44\x73\x64\x46\x59\x77\x47\x69\x74\x70\x20\x63\x75\x73\x74\x6f\x6d\x2d\x61\x76\x61\x74\x61\x72\x22\x20\x68\x72\x65\x66\x3d\x22','\x22\x3e\x3c\x73\x70\x61\x6e\x20\x63\x6c\x61\x73\x73\x3d\x22\x67\x6a\x53\x6a\x77\x4d\x56\x62\x58\x51\x62\x22\x20\x64\x61\x74\x61\x2d\x69\x6d\x61\x67\x65\x3d\x22','\x22\x2f\x3e\x3c\x2f\x61\x3e\x3c\x68\x32\x20\x63\x6c\x61\x73\x73\x3d\x22\x46\x78\x42\x59\x2d\x42\x76\x73\x75\x41\x57\x22\x3e\x3c\x61\x20\x68\x72\x65\x66\x3d\x22','\x3c\x2f\x61\x3e\x3c\x2f\x68\x32\x3e\x3c\x70\x20\x63\x6c\x61\x73\x73\x3d\x22\x63\x75\x73\x74\x6f\x6d\x2d\x73\x6e\x69\x70\x70\x65\x74\x20\x6e\x76\x41\x62\x4b\x65\x2d\x43\x4e\x69\x6c\x22\x3e','\x3c\x2f\x70\x3e\x3c\x2f\x61\x72\x74\x69\x63\x6c\x65\x3e','\x2e\x69\x64\x2d','\x20\x2e\x74\x69\x74\x6c\x65\x2d\x77\x72\x61\x70\x3a\x61\x66\x74\x65\x72\x2c\x2e\x69\x64\x2d','\x3b\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x7d\x2e\x69\x64\x2d','\x20\x2e\x74\x69\x74\x6c\x65\x2d\x77\x72\x61\x70\x20\x3e\x20\x61\x2e\x6d\x6f\x72\x65\x3a\x68\x6f\x76\x65\x72\x2c\x2e\x69\x64\x2d','\x20\x2e\x5f\x77\x5f\x5a\x69\x47\x61\x6d\x67\x74\x62\x3a\x6e\x6f\x74\x28\x2e\x65\x6e\x74\x72\x79\x2d\x69\x6e\x66\x6f\x29\x20\x2e\x46\x78\x42\x59\x2d\x42\x76\x73\x75\x41\x57\x20\x61\x3a\x68\x6f\x76\x65\x72\x7b\x63\x6f\x6c\x6f\x72\x3a','\x7d\x2e\x69\x64\x2d','\x3b\x62\x6f\x72\x64\x65\x72\x2d\x72\x69\x67\x68\x74\x2d\x63\x6f\x6c\x6f\x72\x3a\x72\x67\x62\x61\x28\x31\x35\x35\x2c\x31\x35\x35\x2c\x31\x35\x35\x2c\x30\x2e\x32\x29\x7d','\x67\x72\x69\x64\x73','\x76\x69\x64\x65\x6f\x73','\x6c\x69\x73\x74','\x61\x6a\x61\x78','\x47\x45\x54','\x6a\x73\x6f\x6e','\x62\x6c\x6f\x63\x6b\x73','\x70\x72\x65\x70\x65\x6e\x64','\x70\x61\x72\x65\x6e\x74','\x69\x64\x2d','\x20\x73\x68\x6f\x77\x69\x6e\x67','\x73\x68\x6f\x77\x69\x6e\x67','\x3c\x64\x69\x76\x20\x69\x64\x3d\x22\x5f\x2d\x4a\x4f\x6b\x4d\x56\x6e\x46\x75\x53\x22\x20\x63\x6c\x61\x73\x73\x3d\x22\x48\x46\x44\x58\x4a\x53\x47\x61\x59\x4e\x44\x22\x3e','\x3c\x64\x69\x76\x20\x69\x64\x3d\x22\x5f\x2d\x4a\x4f\x6b\x4d\x56\x6e\x46\x75\x53\x22\x20\x63\x6c\x61\x73\x73\x3d\x22\x65\x6b\x6c\x74\x47\x59\x77\x61\x42\x57\x62\x22\x3e','\x3c\x64\x69\x76\x20\x69\x64\x3d\x22\x5f\x2d\x4a\x4f\x6b\x4d\x56\x6e\x46\x75\x53\x22\x20\x63\x6c\x61\x73\x73\x3d\x22\x49\x74\x56\x54\x58\x55\x73\x63\x53\x4a\x50\x22\x3e','\x3c\x64\x69\x76\x20\x69\x64\x3d\x22\x5f\x2d\x4a\x4f\x6b\x4d\x56\x6e\x46\x75\x53\x22\x20\x63\x6c\x61\x73\x73\x3d\x22\x49\x62\x5f\x5a\x68\x6e\x75\x70\x43\x74\x5a\x22\x3e','\x66\x65\x65\x64','\x3c\x61\x72\x74\x69\x63\x6c\x65\x20\x63\x6c\x61\x73\x73\x3d\x22\x5a\x71\x72\x57\x77\x74\x4f\x56\x45\x46\x4d\x20\x5f\x6e\x79\x2d\x76\x6f\x45\x48\x43\x43\x7a','\x22\x3e\x3c\x64\x69\x76\x20\x73\x74\x79\x6c\x65\x3d\x22\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x2d\x69\x6d\x61\x67\x65\x3a\x75\x72\x6c\x28','\x29\x3b\x20\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x2d\x73\x69\x7a\x65\x3a\x20\x33\x30\x30\x70\x78\x20\x33\x30\x30\x70\x78\x3b\x20\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x2d\x70\x6f\x73\x69\x74\x69\x6f\x6e\x3a\x20\x72\x69\x67\x68\x74\x20\x63\x65\x6e\x74\x65\x72\x3b\x20\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x2d\x72\x65\x70\x65\x61\x74\x3a\x20\x6e\x6f\x2d\x72\x65\x70\x65\x61\x74\x3b\x20\x77\x69\x64\x74\x68\x3a\x20\x31\x30\x30\x25\x3b\x20\x68\x65\x69\x67\x68\x74\x3a\x20\x31\x30\x30\x25\x3b\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\x3a\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x3b\x20\x66\x69\x6c\x74\x65\x72\x3a\x20\x62\x6c\x75\x72\x28\x38\x70\x78\x29\x3b\x22\x3e\x3c\x2f\x64\x69\x76\x3e\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\x5f\x77\x5f\x5a\x69\x47\x61\x6d\x67\x74\x62\x22\x3e\x3c\x68\x32\x20\x63\x6c\x61\x73\x73\x3d\x22\x46\x78\x42\x59\x2d\x42\x76\x73\x75\x41\x57\x22\x3e\x3c\x61\x20\x68\x72\x65\x66\x3d\x22','\x3c\x2f\x61\x3e\x3c\x2f\x68\x32\x3e','\x3c\x2f\x64\x69\x76\x3e\x3c\x61\x20\x63\x6c\x61\x73\x73\x3d\x22\x69\x44\x73\x64\x46\x59\x77\x47\x69\x74\x70\x22\x20\x68\x72\x65\x66\x3d\x22','\x22\x2f\x3e\x3c\x2f\x61\x3e\x3c\x2f\x61\x72\x74\x69\x63\x6c\x65\x3e','\x3c\x61\x72\x74\x69\x63\x6c\x65\x20\x63\x6c\x61\x73\x73\x3d\x22\x6f\x6f\x59\x76\x49\x6c\x62\x72\x76\x4e\x57\x20\x5f\x6e\x79\x2d\x76\x6f\x45\x48\x43\x43\x7a','\x22\x3e\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\x4f\x4e\x74\x6b\x2d\x65\x57\x78\x44\x4f\x44\x22\x3e\x3c\x61\x20\x63\x6c\x61\x73\x73\x3d\x22\x69\x44\x73\x64\x46\x59\x77\x47\x69\x74\x70\x22\x20\x68\x72\x65\x66\x3d\x22','\x22\x2f\x3e\x3c\x2f\x61\x3e\x3c\x2f\x64\x69\x76\x3e\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\x5f\x77\x5f\x5a\x69\x47\x61\x6d\x67\x74\x62\x22\x3e\x3c\x68\x32\x20\x63\x6c\x61\x73\x73\x3d\x22\x46\x78\x42\x59\x2d\x42\x76\x73\x75\x41\x57\x22\x3e\x3c\x61\x20\x68\x72\x65\x66\x3d\x22','\x3c\x2f\x64\x69\x76\x3e\x3c\x2f\x61\x72\x74\x69\x63\x6c\x65\x3e','\x3c\x61\x72\x74\x69\x63\x6c\x65\x20\x63\x6c\x61\x73\x73\x3d\x22\x67\x47\x5f\x6a\x67\x5f\x61\x59\x7a\x57\x61\x20\x5f\x6e\x79\x2d\x76\x6f\x45\x48\x43\x43\x7a','\x22\x2f\x3e\x3c\x73\x70\x61\x6e\x20\x63\x6c\x61\x73\x73\x3d\x22\x45\x49\x47\x4e\x57\x5f\x4d\x57\x5a\x66\x49\x22\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x34\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x34\x22\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x32\x34\x20\x32\x34\x22\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x38\x2c\x35\x2e\x31\x34\x56\x31\x39\x2e\x31\x34\x4c\x31\x39\x2c\x31\x32\x2e\x31\x34\x4c\x38\x2c\x35\x2e\x31\x34\x5a\x22\x3e\x3c\x2f\x70\x61\x74\x68\x3e\x3c\x2f\x73\x76\x67\x3e\x3c\x2f\x73\x70\x61\x6e\x3e\x3c\x2f\x61\x3e\x3c\x2f\x64\x69\x76\x3e\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\x5f\x77\x5f\x5a\x69\x47\x61\x6d\x67\x74\x62\x22\x3e\x3c\x61\x20\x63\x6c\x61\x73\x73\x3d\x22\x69\x44\x73\x64\x46\x59\x77\x47\x69\x74\x70\x20\x73\x65\x63\x6f\x6e\x64\x22\x20\x68\x72\x65\x66\x3d\x22','\x22\x3e\x3c\x61\x20\x63\x6c\x61\x73\x73\x3d\x22\x69\x44\x73\x64\x46\x59\x77\x47\x69\x74\x70\x22\x20\x68\x72\x65\x66\x3d\x22','\x22\x2f\x3e\x3c\x2f\x61\x3e\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\x5f\x77\x5f\x5a\x69\x47\x61\x6d\x67\x74\x62\x22\x3e\x3c\x68\x32\x20\x63\x6c\x61\x73\x73\x3d\x22\x46\x78\x42\x59\x2d\x42\x76\x73\x75\x41\x57\x22\x3e\x3c\x61\x20\x68\x72\x65\x66\x3d\x22','\x3c\x61\x72\x74\x69\x63\x6c\x65\x20\x63\x6c\x61\x73\x73\x3d\x22\x4a\x41\x73\x41\x52\x65\x68\x61\x64\x6b\x64\x20\x70\x6f\x73\x74\x20\x5f\x6e\x79\x2d\x76\x6f\x45\x48\x43\x43\x7a','\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\x74','\x2e\x77\x69\x64\x67\x65\x74\x2d\x74\x69\x74\x6c\x65','\x3c\x61\x20\x63\x6c\x61\x73\x73\x3d\x22\x6d\x6f\x72\x65\x22\x20\x68\x72\x65\x66\x3d\x22\x2f\x73\x65\x61\x72\x63\x68\x2f\x6c\x61\x62\x65\x6c\x2f','\x67\x65\x74\x77\x69\x64\x67\x65\x74','\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\x66\x62\x2d\x63\x6f\x6d\x6d\x65\x6e\x74\x73\x22\x20\x64\x61\x74\x61\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x25\x22\x20\x64\x61\x74\x61\x2d\x68\x72\x65\x66\x3d\x22','\x22\x20\x6f\x72\x64\x65\x72\x5f\x62\x79\x3d\x22\x74\x69\x6d\x65\x22\x20\x64\x61\x74\x61\x2d\x6e\x75\x6d\x70\x6f\x73\x74\x73\x3d\x22\x35\x22\x3e\x3c\x2f\x64\x69\x76\x3e','\x73\x68\x6f\x77','\x2e\x46\x48\x6d\x6c\x43\x62\x70\x77\x42\x66\x46\x20\x2e\x65\x6e\x74\x72\x79\x2d\x63\x6f\x6d\x6d\x65\x6e\x74\x73\x2d\x6c\x69\x6e\x6b','\x64\x69\x73\x71\x75\x73','\x66\x61\x63\x65\x62\x6f\x6f\x6b','\x68\x69\x64\x65','\x63\x6f\x6d\x6d\x65\x6e\x74\x73\x2d\x73\x79\x73\x74\x65\x6d\x2d\x64\x65\x66\x61\x75\x6c\x74','\x2e\x63\x6f\x6d\x6d\x65\x6e\x74\x73\x20\x2e\x74\x6f\x70\x6c\x65\x76\x65\x6c\x2d\x74\x68\x72\x65\x61\x64\x20\x3e\x20\x6f\x6c\x20\x3e\x20\x2e\x63\x6f\x6d\x6d\x65\x6e\x74\x20\x2e\x63\x6f\x6d\x6d\x65\x6e\x74\x2d\x61\x63\x74\x69\x6f\x6e\x73\x20\x2e\x63\x6f\x6d\x6d\x65\x6e\x74\x2d\x72\x65\x70\x6c\x79','\x2e\x63\x6f\x6d\x6d\x65\x6e\x74\x73\x20\x2e\x74\x6f\x70\x6c\x65\x76\x65\x6c\x2d\x74\x68\x72\x65\x61\x64\x20\x3e\x20\x23\x74\x6f\x70\x2d\x63\x6f\x6e\x74\x69\x6e\x75\x65','\x2e\x54\x64\x50\x4a\x5f\x77\x46\x75\x46\x69\x71\x20\x2e\x69\x44\x73\x64\x46\x59\x77\x47\x69\x74\x70\x20\x2e\x67\x6a\x53\x6a\x77\x4d\x56\x62\x58\x51\x62\x2c\x20\x2e\x50\x6f\x70\x75\x6c\x61\x72\x50\x6f\x73\x74\x73\x20\x2e\x69\x44\x73\x64\x46\x59\x77\x47\x69\x74\x70\x20\x2e\x67\x6a\x53\x6a\x77\x4d\x56\x62\x58\x51\x62\x2c\x20\x2e\x66\x6c\x58\x70\x49\x6d\x6a\x48\x4f\x65\x58\x20\x2e\x46\x79\x73\x5a\x73\x47\x78\x2d\x49\x4f\x5a\x2c\x20\x2e\x46\x65\x61\x74\x75\x72\x65\x64\x50\x6f\x73\x74\x20\x2e\x67\x6a\x53\x6a\x77\x4d\x56\x62\x58\x51\x62','\x2e\x65\x6f\x49\x6b\x4d\x4e\x45\x46\x58\x43\x47\x2c\x20\x2e\x75\x42\x4a\x79\x32\x79\x6b\x35\x4c\x44\x33\x20\x2e\x62\x79\x76\x43\x79\x69\x4f\x62\x70\x4d\x55','\x62\x6f\x64\x79','\x6e\x61\x76\x2d\x61\x63\x74\x69\x76\x65','\x2e\x53\x61\x54\x58\x4b\x66\x66\x44\x43\x64\x6d','\x72\x65\x6d\x6f\x76\x65\x43\x6c\x61\x73\x73','\x61\x63\x74\x69\x76\x65','\x68\x61\x73\x43\x6c\x61\x73\x73','\x6e\x61\x76\x2d\x68\x69\x64\x64\x65\x6e','\x2e\x73\x68\x6f\x77\x77\x77\x69\x6e\x67','\x74\x6f\x67\x67\x6c\x65\x43\x6c\x61\x73\x73','\x42\x78\x47\x4b\x4c\x71\x54\x71\x51\x2d\x46','\x2e\x6d\x52\x69\x79\x48\x76\x45\x70\x6e\x4f\x6d\x20\x2e\x77\x51\x68\x59\x49\x52\x57\x4f\x52\x61\x43\x2c\x20\x2e\x4c\x4c\x71\x76\x67\x79\x61\x53\x67\x48\x4f','\x53\x68\x4b\x6c\x6b\x62\x69\x66\x43\x4c\x51','\x2e\x73\x63\x72\x6f\x6c\x6c\x74\x6f\x70','\x73\x63\x72\x6f\x6c\x6c','\x23\x59\x72\x57\x51\x42\x70\x5a\x79\x45\x72\x47','\x6f\x6e\x2d\x66\x6f\x6f\x74\x65\x72','\x68\x74\x6d\x6c\x2c\x20\x62\x6f\x64\x79','\x61\x6e\x69\x6d\x61\x74\x65','\x72\x65\x70\x6c\x61\x63\x65\x54\x65\x78\x74','\x3c\x69\x66\x72\x61\x6d\x65\x20\x69\x64\x3d\x22\x79\x6f\x75\x74\x75\x62\x65\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x25\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x35\x38\x22\x20\x73\x72\x63\x3d\x22\x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\x77\x77\x2e\x79\x6f\x75\x74\x75\x62\x65\x2e\x63\x6f\x6d\x2f\x65\x6d\x62\x65\x64\x2f\x24\x31\x22\x20\x66\x72\x61\x6d\x65\x62\x6f\x72\x64\x65\x72\x3d\x22\x30\x22\x20\x61\x6c\x6c\x6f\x77\x3d\x22\x61\x63\x63\x65\x6c\x65\x72\x6f\x6d\x65\x74\x65\x72\x3b\x20\x61\x75\x74\x6f\x70\x6c\x61\x79\x3b\x20\x65\x6e\x63\x72\x79\x70\x74\x65\x64\x2d\x6d\x65\x64\x69\x61\x3b\x20\x67\x79\x72\x6f\x73\x63\x6f\x70\x65\x3b\x20\x70\x69\x63\x74\x75\x72\x65\x2d\x69\x6e\x2d\x70\x69\x63\x74\x75\x72\x65\x22\x20\x61\x6c\x6c\x6f\x77\x66\x75\x6c\x6c\x73\x63\x72\x65\x65\x6e\x3e\x3c\x2f\x69\x66\x72\x61\x6d\x65\x3e','\x23\x44\x55\x56\x67\x4c\x71\x4a\x75\x4a\x57\x2d','\x6c\x6f\x61\x64','\x2e\x54\x64\x50\x4a\x5f\x77\x46\x75\x46\x69\x71','\x70\x6f\x73\x74\x2d\x61\x6e\x69\x6d\x61\x74\x65\x64\x20\x70\x6f\x73\x74\x2d\x66\x61\x64\x65\x49\x6e\x55\x70','\x2e\x59\x4b\x6c\x66\x75\x44\x42\x78\x71\x2d\x54','\x23\x67\x66\x64\x6e\x69\x49\x72\x66\x58\x75\x52\x20\x2e\x74\x43\x4d\x2d\x4b\x73\x68\x54\x42\x51\x7a','\x2e\x54\x64\x50\x4a\x5f\x77\x46\x75\x46\x69\x71\x20\x2e\x69\x44\x73\x64\x46\x59\x77\x47\x69\x74\x70\x20\x2e\x67\x6a\x53\x6a\x77\x4d\x56\x62\x58\x51\x62','\x23\x67\x66\x64\x6e\x69\x49\x72\x66\x58\x75\x52\x20\x2e\x63\x4a\x4a\x6b\x58\x75\x54\x5a\x4d\x6f\x73','\x70\x72\x65\x76\x65\x6e\x74\x44\x65\x66\x61\x75\x6c\x74','\x23\x71\x75\x4a\x64\x71\x78\x44\x64\x5a\x77\x5a','\x2e\x4c\x69\x6e\x6b\x4c\x69\x73\x74\x20\x75\x6c\x20\x3e\x20\x6c\x69','\x63\x68\x69\x6c\x64\x72\x65\x6e','\x63\x68\x61\x72\x41\x74','\x3c\x75\x6c\x20\x63\x6c\x61\x73\x73\x3d\x22\x68\x65\x61\x64\x65\x72\x2d\x73\x75\x62\x6d\x65\x6e\x75\x2d\x66\x69\x72\x73\x74\x22\x2f\x3e','\x2e\x68\x65\x61\x64\x65\x72\x2d\x73\x75\x62\x6d\x65\x6e\x75\x2d\x66\x69\x72\x73\x74','\x3c\x75\x6c\x20\x63\x6c\x61\x73\x73\x3d\x22\x68\x65\x61\x64\x65\x72\x2d\x73\x75\x62\x6d\x65\x6e\x75\x2d\x73\x65\x63\x6f\x6e\x64\x22\x2f\x3e','\x2e\x68\x65\x61\x64\x65\x72\x2d\x73\x75\x62\x6d\x65\x6e\x75\x2d\x73\x65\x63\x6f\x6e\x64','\x23\x71\x75\x4a\x64\x71\x78\x44\x64\x5a\x77\x5a\x20\x75\x6c\x20\x6c\x69\x20\x75\x6c','\x68\x65\x61\x64\x65\x72\x2d\x73\x75\x62\x6d\x65\x6e\x75','\x23\x71\x75\x4a\x64\x71\x78\x44\x64\x5a\x77\x5a\x20\x2e\x77\x69\x64\x67\x65\x74','\x73\x68\x6f\x77\x2d\x6d\x65\x6e\x75','\x6e\x65\x78\x74','\x23\x71\x75\x4a\x64\x71\x78\x44\x64\x5a\x77\x5a\x20\x6c\x69','\x63\x6c\x6f\x73\x65\x73\x74','\x3a\x76\x69\x73\x69\x62\x6c\x65','\x6e\x6f\x72\x6d\x61\x6c','\x73\x6c\x69\x64\x65\x44\x6f\x77\x6e','\x23\x71\x75\x4a\x64\x71\x78\x44\x64\x5a\x77\x5a\x20\x2e\x68\x65\x61\x64\x65\x72\x2d\x73\x75\x62\x6d\x65\x6e\x75\x20\x3e\x20\x61','\x2e\x75\x42\x4a\x79\x32\x79\x6b\x35\x4c\x44\x33','\x66\x69\x78\x65\x64','\x2e\x48\x48\x69\x49\x73\x63\x49\x57\x42\x43\x78\x20\x2e\x5a\x6f\x6e\x6a\x58\x66\x57\x78\x71\x66\x76\x20\x2e\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x2d\x64\x65\x6d\x6f\x20\x2e\x62\x75\x74\x74\x6f\x6e\x73','\x2e\x48\x48\x69\x49\x73\x63\x49\x57\x42\x43\x78\x20\x2e\x75\x45\x53\x53\x71\x69\x41\x69\x41\x7a\x6b','\x2e\x48\x48\x69\x49\x73\x63\x49\x57\x42\x43\x78\x20\x2e\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x2d\x64\x65\x6d\x6f\x20\x2e\x62\x63\x6f\x6e\x74','\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x73\x22\x3e\x3c\x73\x70\x61\x6e\x20\x63\x6c\x61\x73\x73\x3d\x22\x62\x75\x74\x74\x6f\x6e\x73\x22\x3e\x50\x6c\x65\x61\x73\x65\x20\x57\x61\x69\x74\x2e\x2e\x3c\x2f\x73\x70\x61\x6e\x3e\x3c\x2f\x64\x69\x76\x3e','\x6f\x70\x65\x6e','\x2e\x69\x74\x65\x6d\x20\x2e\x4e\x67\x52\x67\x55\x65\x59\x65\x4c\x61\x52','\x73\x74\x72\x69\x6b\x65\x3a\x63\x6f\x6e\x74\x61\x69\x6e\x73\x28\x22\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x7e\x22\x29','\x73\x74\x72\x69\x6b\x65\x3a\x63\x6f\x6e\x74\x61\x69\x6e\x73\x28\x22\x73\x69\x7a\x65\x3d\x22\x29','\x2e\x73\x6c\x69\x64\x65\x73','\x2e\x59\x49\x73\x49\x55\x75\x5a\x76\x6a\x78\x4b','\x2e\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x2d\x64\x65\x6d\x6f\x20\x2e\x64\x65\x6d\x6f\x20\x61','\x72\x65\x6d\x6f\x76\x65','\x2e\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x2d\x64\x65\x6d\x6f\x20\x2e\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x20\x61','\x2e\x73\x65\x63\x74\x69\x6f\x6e\x2e\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x20\x2e\x73\x32','\x65\x6c\x63\x72\x65\x61\x74\x69\x76\x65\x4c\x61\x7a\x79','\x73\x63\x72\x6f\x6c\x6c\x54\x6f\x70','\x6f\x66\x66\x73\x65\x74','\x74\x6f\x70','\x6f\x6e\x6c\x6f\x61\x64','\x61\x74\x74\x72','\x73\x74\x79\x6c\x65','\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x2d\x69\x6d\x61\x67\x65\x3a\x75\x72\x6c\x28','\x73\x72\x63','\x61\x64\x64\x43\x6c\x61\x73\x73','\x65\x6c\x63\x72\x65\x61\x74\x69\x76\x65\x2d\x6c\x61\x7a\x79','\x64\x61\x74\x61\x2d\x69\x6d\x61\x67\x65','\x72\x6f\x75\x6e\x64','\x77\x69\x64\x74\x68','\x68\x65\x69\x67\x68\x74','\x2d\x70\x2d\x6b\x2d\x6e\x6f\x2d\x6e\x75','\x6d\x61\x74\x63\x68','\x77\x37\x32\x2d\x68','\x72\x65\x70\x6c\x61\x63\x65','\x2e\x66\x6f\x6c\x6c\x6f\x77\x2d\x62\x79\x2d\x65\x6d\x61\x69\x6c\x2d\x74\x65\x78\x74','\x65\x61\x63\x68','\x74\x65\x78\x74','\x2e\x4e\x67\x52\x67\x55\x65\x59\x65\x4c\x61\x52\x20\x73\x74\x72\x69\x6b\x65','\x74\x72\x69\x6d','\x61\x64\x73\x3d\x5b\x31\x5d','\x72\x65\x70\x6c\x61\x63\x65\x57\x69\x74\x68','\x3c\x64\x69\x76\x20\x69\x64\x3d\x22\x47\x77\x52\x56\x62\x78\x74\x2d\x52\x4c\x70\x22\x2f\x3e','\x3c\x64\x69\x76\x20\x69\x64\x3d\x22\x67\x5a\x75\x44\x75\x65\x6f\x4d\x51\x79\x6e\x22\x2f\x3e','\x23\x47\x77\x52\x56\x62\x78\x74\x2d\x52\x4c\x70','\x23\x6b\x45\x5a\x55\x51\x4c\x78\x6f\x73\x78\x6a','\x23\x67\x5a\x75\x44\x75\x65\x6f\x4d\x51\x79\x6e','\x6c\x65\x6e\x67\x74\x68','\x23\x4f\x74\x78\x48\x4f\x59\x49\x51\x70\x4f\x4a','\x61\x70\x70\x65\x6e\x64\x54\x6f','\x23\x48\x4c\x6a\x63\x65\x47\x62\x55\x4f\x44\x4e\x20\x2e\x77\x69\x64\x67\x65\x74','\x23\x53\x68\x69\x52\x47\x5f\x51\x6b\x51\x66\x6a\x20\x2e\x77\x69\x64\x67\x65\x74','\x2e\x61\x76\x61\x74\x61\x72\x2d\x69\x6d\x61\x67\x65\x2d\x63\x6f\x6e\x74\x61\x69\x6e\x65\x72\x20\x69\x6d\x67','\x2f\x2f\x72\x65\x73\x6f\x75\x72\x63\x65\x73\x2e\x62\x6c\x6f\x67\x62\x6c\x6f\x67\x2e\x63\x6f\x6d\x2f\x69\x6d\x67\x2f\x62\x6c\x61\x6e\x6b\x2e\x67\x69\x66','\x2f\x2f\x34\x2e\x62\x70\x2e\x62\x6c\x6f\x67\x73\x70\x6f\x74\x2e\x63\x6f\x6d\x2f\x2d\x6f\x53\x6a\x50\x38\x46\x30\x39\x71\x78\x6f\x2f\x57\x79\x31\x4a\x39\x64\x70\x37\x62\x30\x49\x2f\x41\x41\x41\x41\x41\x41\x41\x41\x43\x46\x30\x2f\x67\x67\x63\x52\x66\x4c\x43\x46\x51\x39\x73\x32\x53\x53\x61\x65\x4c\x39\x42\x46\x53\x45\x32\x77\x79\x54\x59\x7a\x51\x61\x54\x79\x51\x43\x4b\x34\x42\x47\x41\x59\x59\x43\x77\x2f\x73\x33\x35\x2d\x72\x2f\x61\x76\x61\x74\x61\x72\x2e\x6a\x70\x67','\x73\x70\x6c\x69\x74','\x70\x6f\x70','\x62\x75\x74\x74\x6f\x6e','\x63\x6f\x6c\x6f\x72\x65\x64\x2d\x62\x75\x74\x74\x6f\x6e','\x68\x74\x6d\x6c','\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\x63\x6f\x6e\x74\x61\x63\x74\x2d\x66\x6f\x72\x6d\x22\x2f\x3e','\x61\x70\x70\x65\x6e\x64','\x23\x43\x6f\x6e\x74\x61\x63\x74\x46\x6f\x72\x6d\x31','\x3c\x2f\x64\x69\x76\x3e','\x61\x6c\x65\x72\x74\x2d\x69\x6e\x66\x6f','\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\x61\x6c\x65\x72\x74\x2d\x6d\x65\x73\x73\x61\x67\x65\x20\x61\x6c\x65\x72\x74\x2d\x69\x6e\x66\x6f\x20\x73\x68\x6f\x72\x74\x2d\x62\x22\x3e','\x61\x6c\x65\x72\x74\x2d\x77\x61\x72\x6e\x69\x6e\x67','\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\x61\x6c\x65\x72\x74\x2d\x6d\x65\x73\x73\x61\x67\x65\x20\x61\x6c\x65\x72\x74\x2d\x77\x61\x72\x6e\x69\x6e\x67\x20\x73\x68\x6f\x72\x74\x2d\x62\x22\x3e','\x61\x6c\x65\x72\x74\x2d\x65\x72\x72\x6f\x72','\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\x61\x6c\x65\x72\x74\x2d\x6d\x65\x73\x73\x61\x67\x65\x20\x61\x6c\x65\x72\x74\x2d\x65\x72\x72\x6f\x72\x20\x73\x68\x6f\x72\x74\x2d\x62\x22\x3e','\x72\x69\x67\x68\x74\x2d\x73\x69\x64\x65\x62\x61\x72','\x3c\x73\x74\x79\x6c\x65\x3e\x2e\x69\x74\x65\x6d\x20\x23\x4b\x52\x41\x69\x64\x56\x64\x6e\x77\x6a\x71\x7b\x66\x6c\x6f\x61\x74\x3a\x6c\x65\x66\x74\x7d\x2e\x69\x74\x65\x6d\x20\x23\x6d\x59\x43\x54\x53\x68\x4f\x67\x66\x59\x43\x7b\x66\x6c\x6f\x61\x74\x3a\x72\x69\x67\x68\x74\x7d\x3c\x2f\x73\x74\x79\x6c\x65\x3e','\x66\x75\x6c\x6c\x2d\x77\x69\x64\x74\x68','\x3c\x73\x74\x79\x6c\x65\x3e\x2e\x69\x74\x65\x6d\x20\x23\x4b\x52\x41\x69\x64\x56\x64\x6e\x77\x6a\x71\x7b\x77\x69\x64\x74\x68\x3a\x31\x30\x30\x25\x7d\x2e\x69\x74\x65\x6d\x20\x23\x6d\x59\x43\x54\x53\x68\x4f\x67\x66\x59\x43\x7b\x64\x69\x73\x70\x6c\x61\x79\x3a\x6e\x6f\x6e\x65\x7d\x3c\x2f\x73\x74\x79\x6c\x65\x3e','\x63\x6f\x64\x65\x2d\x62\x6f\x78','\x2e\x4e\x67\x52\x67\x55\x65\x59\x65\x4c\x61\x52\x20\x2e\x73\x68\x6f\x72\x74\x2d\x62','\x66\x69\x6e\x64','\x61\x6c\x65\x72\x74\x2d\x73\x75\x63\x63\x65\x73\x73','\x2e\x51\x70\x57\x50\x69\x56\x4c\x49\x42\x63\x2d\x20\x2e\x6e\x65\x77\x2d\x77\x69\x6e\x64\x6f\x77\x2c\x2e\x65\x6e\x74\x72\x79\x2d\x73\x68\x61\x72\x65\x20\x2e\x6e\x65\x77\x2d\x77\x69\x6e\x64\x6f\x77','\x75\x72\x6c','\x64\x61\x74\x61','\x73\x63\x72\x65\x65\x6e','\x5f\x62\x6c\x61\x6e\x6b','\x73\x63\x72\x6f\x6c\x6c\x62\x61\x72\x73\x3d\x79\x65\x73\x2c\x72\x65\x73\x69\x7a\x61\x62\x6c\x65\x3d\x79\x65\x73\x2c\x74\x6f\x6f\x6c\x62\x61\x72\x3d\x6e\x6f\x2c\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x3d\x79\x65\x73\x2c\x77\x69\x64\x74\x68\x3d','\x2c\x68\x65\x69\x67\x68\x74\x3d','\x66\x6f\x63\x75\x73','\x2e\x51\x70\x57\x50\x69\x56\x4c\x49\x42\x63\x2d','\x2e\x73\x68\x6f\x77\x2d\x68\x69\x64\x20\x61','\x63\x6c\x69\x63\x6b','\x73\x68\x6f\x77\x2d\x68\x69\x64\x64\x65\x6e','\x2e\x66\x6c\x58\x70\x49\x6d\x6a\x48\x4f\x65\x58\x20\x2e\x64\x53\x45\x79\x66\x54\x79\x61\x56\x45\x45\x20\x73\x70\x61\x6e\x20\x61','\x3c\x6c\x69\x20\x63\x6c\x61\x73\x73\x3d\x22','\x22\x3e\x3c\x61\x20\x68\x72\x65\x66\x3d\x22','\x3c\x2f\x61\x3e\x3c\x2f\x6c\x69\x3e','\x2e\x64\x53\x45\x79\x66\x54\x79\x61\x56\x45\x45','\x6b\x68\x55\x6d\x7a\x6e\x4e\x77\x78\x51\x44','\x2e\x46\x67\x53\x63\x67\x64\x63\x42\x2d\x57\x65\x20\x2e\x48\x54\x4d\x4c\x20\x2e\x77\x69\x64\x67\x65\x74\x2d\x63\x6f\x6e\x74\x65\x6e\x74','\x74\x6f\x4c\x6f\x77\x65\x72\x43\x61\x73\x65','\x2e\x72\x6e\x67\x77\x69\x76\x2d\x73\x51\x45\x5a\x20\x2e\x48\x54\x4d\x4c\x20\x2e\x77\x69\x64\x67\x65\x74\x2d\x63\x6f\x6e\x74\x65\x6e\x74','\x2e\x59\x6b\x63\x76\x44\x77\x49\x47\x6c\x6c\x78','\x2e\x72\x65\x6c\x61\x74\x65\x64\x2d\x74\x61\x67','\x72\x65\x6c\x61\x74\x65\x64','\x67\x65\x74\x72\x65\x6c\x61\x74\x65\x64','\x3c\x73\x70\x61\x6e\x20\x63\x6c\x61\x73\x73\x3d\x22\x6e\x6f\x2d\x70\x6f\x73\x74\x73\x22\x3e\x4e\x6f\x20\x52\x65\x73\x75\x6c\x74\x73\x20\x46\x6f\x75\x6e\x64\x3c\x2f\x73\x70\x61\x6e\x3e','\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\x6e\x6f\x2d\x70\x6f\x73\x74\x73\x20\x65\x72\x72\x6f\x72\x2d\x35\x30\x33\x22\x3e\x45\x72\x72\x6f\x72\x20\x6c\x6f\x61\x64\x69\x6e\x67\x20\x66\x65\x65\x64\x73\x21\x20\x50\x6c\x65\x61\x73\x65\x20\x43\x68\x65\x63\x6b\x20\x79\x6f\x75\x72\x20\x49\x6e\x74\x65\x72\x6e\x65\x74\x20\x43\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x73\x2e\x3c\x2f\x64\x69\x76\x3e','\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\x4d\x4b\x54\x63\x74\x69\x6e\x6c\x68\x6e\x56\x22\x2f\x3e','\x2f\x66\x65\x65\x64\x73\x2f\x70\x6f\x73\x74\x73\x2f\x73\x75\x6d\x6d\x61\x72\x79\x3f\x61\x6c\x74\x3d\x6a\x73\x6f\x6e\x26\x6d\x61\x78\x2d\x72\x65\x73\x75\x6c\x74\x73\x3d','\x63\x6f\x6d\x6d\x65\x6e\x74\x73','\x2f\x66\x65\x65\x64\x73\x2f\x63\x6f\x6d\x6d\x65\x6e\x74\x73\x2f\x73\x75\x6d\x6d\x61\x72\x79\x3f\x61\x6c\x74\x3d\x6a\x73\x6f\x6e\x26\x6d\x61\x78\x2d\x72\x65\x73\x75\x6c\x74\x73\x3d','\x2f\x66\x65\x65\x64\x73\x2f\x70\x6f\x73\x74\x73\x2f\x73\x75\x6d\x6d\x61\x72\x79\x2f\x2d\x2f','\x3f\x61\x6c\x74\x3d\x6a\x73\x6f\x6e\x26\x6d\x61\x78\x2d\x72\x65\x73\x75\x6c\x74\x73\x3d','\x6c\x69\x6e\x6b','\x72\x65\x6c','\x61\x6c\x74\x65\x72\x6e\x61\x74\x65','\x68\x72\x65\x66','\x74\x69\x74\x6c\x65','\x69\x6d\x67\x2e\x79\x6f\x75\x74\x75\x62\x65\x2e\x63\x6f\x6d','\x2f\x64\x65\x66\x61\x75\x6c\x74\x2e'];(function(_0x5646d2,_0x57e78c){var _0x1e98e3=function(_0x5adb7d){while(--_0x5adb7d){_0x5646d2['push'](_0x5646d2['shift']());}};var _0x4fd4d7=function(){var _0x3e11b5={'data':{'key':'cookie','value':'timeout'},'setCookie':function(_0x429043,_0x2875a5,_0x24d1d4,_0x185255){_0x185255=_0x185255||{};var _0x629ca2=_0x2875a5+'='+_0x24d1d4;var _0x440f0e=0x0;for(var _0x440f0e=0x0,_0x2163b7=_0x429043['length'];_0x440f0e<_0x2163b7;_0x440f0e++){var _0x51d240=_0x429043[_0x440f0e];_0x629ca2+=';\x20'+_0x51d240;var _0x5656ab=_0x429043[_0x51d240];_0x429043['push'](_0x5656ab);_0x2163b7=_0x429043['length'];if(_0x5656ab!==!![]){_0x629ca2+='='+_0x5656ab;}}_0x185255['cookie']=_0x629ca2;},'removeCookie':function(){return'dev';},'getCookie':function(_0x55d8f9,_0x291ae7){_0x55d8f9=_0x55d8f9||function(_0x19cda7){return _0x19cda7;};var _0x5918d1=_0x55d8f9(new RegExp('(?:^|;\x20)'+_0x291ae7['replace'](/([.$?*|{}()[]\/+^])/g,'$1')+'=([^;]*)'));var _0x1e9394=function(_0x3175f6,_0x6b2b0d){_0x3175f6(++_0x6b2b0d);};_0x1e9394(_0x1e98e3,_0x57e78c);return _0x5918d1?decodeURIComponent(_0x5918d1[0x1]):undefined;}};var _0x554e44=function(){var _0x398015=new RegExp('\x5cw+\x20*\x5c(\x5c)\x20*{\x5cw+\x20*[\x27|\x22].+[\x27|\x22];?\x20*}');return _0x398015['test'](_0x3e11b5['removeCookie']['toString']());};_0x3e11b5['updateCookie']=_0x554e44;var _0x43cbcf='';var _0x30e080=_0x3e11b5['updateCookie']();if(!_0x30e080){_0x3e11b5['setCookie'](['*'],'counter',0x1);}else if(_0x30e080){_0x43cbcf=_0x3e11b5['getCookie'](null,'counter');}else{_0x3e11b5['removeCookie']();}};_0x4fd4d7();}(fckucloner_0x1e80,0x188));var fckucloner_0x1136=function(_0x546a53,_0x3f720e){_0x546a53=_0x546a53-0x0;var _0x440369=fckucloner_0x1e80[_0x546a53];return _0x440369;};!function(_0x31172f){var _0x59fcbc=function(){var _0x5a254d=!![];return function(_0x2dae91,_0x5afc34){var _0x262be4=_0x5a254d?function(){if(_0x5afc34){var _0x3111fd=_0x5afc34['apply'](_0x2dae91,arguments);_0x5afc34=null;return _0x3111fd;}}:function(){};_0x5a254d=![];return _0x262be4;};}();var _0x21719f=_0x59fcbc(this,function(){var _0x2f133e=function(){return'\x64\x65\x76';},_0x1b7d94=function(){return'\x77\x69\x6e\x64\x6f\x77';};var _0x28ba14=function(){var _0x1aec35=new RegExp('\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d');return!_0x1aec35['\x74\x65\x73\x74'](_0x2f133e['\x74\x6f\x53\x74\x72\x69\x6e\x67']());};var _0x10ed62=function(){var _0x4203dc=new RegExp('\x28\x5c\x5c\x5b\x78\x7c\x75\x5d\x28\x5c\x77\x29\x7b\x32\x2c\x34\x7d\x29\x2b');return _0x4203dc['\x74\x65\x73\x74'](_0x1b7d94['\x74\x6f\x53\x74\x72\x69\x6e\x67']());};var _0x46f3fb=function(_0x429e2c){var _0x4354b8=~-0x1>>0x1+0xff%0x0;if(_0x429e2c['\x69\x6e\x64\x65\x78\x4f\x66']('\x69'===_0x4354b8)){_0x573aea(_0x429e2c);}};var _0x573aea=function(_0xaeccbf){var _0x2a521e=~-0x4>>0x1+0xff%0x0;if(_0xaeccbf['\x69\x6e\x64\x65\x78\x4f\x66']((!![]+'')[0x3])!==_0x2a521e){_0x46f3fb(_0xaeccbf);}};if(!_0x28ba14()){if(!_0x10ed62()){_0x46f3fb('\x69\x6e\x64\u0435\x78\x4f\x66');}else{_0x46f3fb('\x69\x6e\x64\x65\x78\x4f\x66');}}else{_0x46f3fb('\x69\x6e\x64\u0435\x78\x4f\x66');}});_0x21719f();_0x31172f['\x66\x6e'][fckucloner_0x1136('0x0')]=function(){return this['\x65\x61\x63\x68'](function(){function _0x17537f(){var _0x30c447=_0x31172f(window)['\x68\x65\x69\x67\x68\x74']();var _0x1bbf4d=_0x31172f(window)[fckucloner_0x1136('0x1')]();var _0x5c8117=_0x46f3f9[fckucloner_0x1136('0x2')]()[fckucloner_0x1136('0x3')];if(_0x1bbf4d+_0x30c447>_0x5c8117){var _0x13498b=new Image();_0x13498b[fckucloner_0x1136('0x4')]=function(){_0x46f3f9[fckucloner_0x1136('0x5')](fckucloner_0x1136('0x6'),fckucloner_0x1136('0x7')+this[fckucloner_0x1136('0x8')]+'\x29')[fckucloner_0x1136('0x9')](fckucloner_0x1136('0xa'));};_0x13498b['\x73\x72\x63']=_0x51f802;}}var _0x46f3f9=_0x31172f(this);var _0x17cd65=_0x46f3f9[fckucloner_0x1136('0x5')](fckucloner_0x1136('0xb'));var _0x36ffe7=Math[fckucloner_0x1136('0xc')](_0x46f3f9[fckucloner_0x1136('0xd')]());var _0x57fc11=Math[fckucloner_0x1136('0xc')](_0x46f3f9[fckucloner_0x1136('0xe')]());var _0xb2bd06='\x2f\x77'+_0x36ffe7+'\x2d\x68'+_0x57fc11+fckucloner_0x1136('0xf');var _0x51f802='';if(_0x17cd65['\x6d\x61\x74\x63\x68']('\x73\x37\x32\x2d\x63')){_0x51f802=_0x17cd65['\x72\x65\x70\x6c\x61\x63\x65']('\x2f\x73\x37\x32\x2d\x63',_0xb2bd06);}else{if(_0x17cd65[fckucloner_0x1136('0x10')](fckucloner_0x1136('0x11'))){_0x51f802=_0x17cd65[fckucloner_0x1136('0x12')]('\x2f\x77\x37\x32\x2d\x68\x37\x32\x2d\x70\x2d\x6b\x2d\x6e\x6f\x2d\x6e\x75',_0xb2bd06);}else{_0x51f802=_0x17cd65;}}_0x31172f(window)['\x6f\x6e']('\x6c\x6f\x61\x64\x20\x72\x65\x73\x69\x7a\x65\x20\x73\x63\x72\x6f\x6c\x6c',_0x17537f);_0x17537f();});};}(jQuery);$(fckucloner_0x1136('0x13'))[fckucloner_0x1136('0x14')](function(){var _0x15a8de=$(this);var _0x104ae8=followByEmailText;if(_0x104ae8!=''){_0x15a8de[fckucloner_0x1136('0x15')](_0x104ae8);}});$(fckucloner_0x1136('0x16'))[fckucloner_0x1136('0x14')](function(){var _0x243a64=$(this);var _0x57d941=_0x243a64[fckucloner_0x1136('0x15')]()[fckucloner_0x1136('0x17')]();if(_0x57d941==fckucloner_0x1136('0x18')){_0x243a64[fckucloner_0x1136('0x19')](fckucloner_0x1136('0x1a'));}if(_0x57d941=='\x61\x64\x73\x3d\x5b\x32\x5d'){_0x243a64[fckucloner_0x1136('0x19')](fckucloner_0x1136('0x1b'));}});$(fckucloner_0x1136('0x1c'))[fckucloner_0x1136('0x14')](function(){var _0x72e21e=$(this);if(_0x72e21e['\x6c\x65\x6e\x67\x74\x68']){$(fckucloner_0x1136('0x1d'))['\x61\x70\x70\x65\x6e\x64\x54\x6f'](_0x72e21e);}});$(fckucloner_0x1136('0x1e'))[fckucloner_0x1136('0x14')](function(){var _0x3d1cdc=$(this);if(_0x3d1cdc[fckucloner_0x1136('0x1f')]){$(fckucloner_0x1136('0x20'))[fckucloner_0x1136('0x21')](_0x3d1cdc);}});$(fckucloner_0x1136('0x22'))[fckucloner_0x1136('0x14')](function(){var _0x4e4b59=$(this);if(_0x4e4b59[fckucloner_0x1136('0x1f')]){_0x4e4b59['\x61\x70\x70\x65\x6e\x64\x54\x6f']($('\x23\x6b\x45\x5a\x55\x51\x4c\x78\x6f\x73\x78\x6a'));}});$(fckucloner_0x1136('0x23'))[fckucloner_0x1136('0x14')](function(){var _0xc9ba13=$(this);if(_0xc9ba13[fckucloner_0x1136('0x1f')]){_0xc9ba13[fckucloner_0x1136('0x21')]($(fckucloner_0x1136('0x20')));}});$(fckucloner_0x1136('0x24'))[fckucloner_0x1136('0x5')](fckucloner_0x1136('0x8'),function(_0x2bb2fc,_0x7fe32d){_0x7fe32d=_0x7fe32d['\x72\x65\x70\x6c\x61\x63\x65'](fckucloner_0x1136('0x25'),fckucloner_0x1136('0x26'));_0x7fe32d=_0x7fe32d[fckucloner_0x1136('0x12')]('\x2f\x2f\x72\x65\x73\x6f\x75\x72\x63\x65\x73\x2e\x62\x6c\x6f\x67\x62\x6c\x6f\x67\x2e\x63\x6f\x6d\x2f\x69\x6d\x67\x2f\x62\x6c\x61\x6e\x6b\x2e\x67\x69\x66','\x2f\x2f\x34\x2e\x62\x70\x2e\x62\x6c\x6f\x67\x73\x70\x6f\x74\x2e\x63\x6f\x6d\x2f\x2d\x6f\x53\x6a\x50\x38\x46\x30\x39\x71\x78\x6f\x2f\x57\x79\x31\x4a\x39\x64\x70\x37\x62\x30\x49\x2f\x41\x41\x41\x41\x41\x41\x41\x41\x43\x46\x30\x2f\x67\x67\x63\x52\x66\x4c\x43\x46\x51\x39\x73\x32\x53\x53\x61\x65\x4c\x39\x42\x46\x53\x45\x32\x77\x79\x54\x59\x7a\x51\x61\x54\x79\x51\x43\x4b\x34\x42\x47\x41\x59\x59\x43\x77\x2f\x73\x33\x35\x2d\x72\x2f\x61\x76\x61\x74\x61\x72\x2e\x6a\x70\x67');return _0x7fe32d;});$('\x2e\x4e\x67\x52\x67\x55\x65\x59\x65\x4c\x61\x52\x20\x61')['\x65\x61\x63\x68'](function(){var _0x1dd51f=$(this);var _0x4e285d=_0x1dd51f[fckucloner_0x1136('0x15')]()[fckucloner_0x1136('0x17')]();var _0x3ecdc6=_0x4e285d[fckucloner_0x1136('0x27')]('\x2f');var _0x5cf08a=_0x3ecdc6[0x0];var _0x5d0dad=_0x3ecdc6[0x1];var _0x477070=_0x3ecdc6[fckucloner_0x1136('0x28')]();if(_0x4e285d[fckucloner_0x1136('0x10')](fckucloner_0x1136('0x29'))){_0x1dd51f['\x61\x64\x64\x43\x6c\x61\x73\x73'](fckucloner_0x1136('0x29'))[fckucloner_0x1136('0x15')](_0x5cf08a);if(_0x5d0dad!=fckucloner_0x1136('0x29')){_0x1dd51f['\x61\x64\x64\x43\x6c\x61\x73\x73'](_0x5d0dad);}if(_0x477070!=fckucloner_0x1136('0x29')){_0x1dd51f[fckucloner_0x1136('0x9')](fckucloner_0x1136('0x2a'))['\x63\x73\x73']({'background-color':_0x477070});}}});$(fckucloner_0x1136('0x16'))[fckucloner_0x1136('0x14')](function(){var _0x335709=$(this);var _0x5be845=_0x335709[fckucloner_0x1136('0x15')]()[fckucloner_0x1136('0x17')]();var _0x253c10=_0x335709[fckucloner_0x1136('0x2b')]();if(_0x5be845[fckucloner_0x1136('0x10')]('\x63\x6f\x6e\x74\x61\x63\x74\x2d\x66\x6f\x72\x6d')){_0x335709[fckucloner_0x1136('0x19')](fckucloner_0x1136('0x2c'));$('\x2e\x63\x6f\x6e\x74\x61\x63\x74\x2d\x66\x6f\x72\x6d')[fckucloner_0x1136('0x2d')]($(fckucloner_0x1136('0x2e')));}if(_0x5be845['\x6d\x61\x74\x63\x68']('\x61\x6c\x65\x72\x74\x2d\x73\x75\x63\x63\x65\x73\x73')){_0x335709['\x72\x65\x70\x6c\x61\x63\x65\x57\x69\x74\x68']('\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\x61\x6c\x65\x72\x74\x2d\x6d\x65\x73\x73\x61\x67\x65\x20\x61\x6c\x65\x72\x74\x2d\x73\x75\x63\x63\x65\x73\x73\x20\x73\x68\x6f\x72\x74\x2d\x62\x22\x3e'+_0x253c10+fckucloner_0x1136('0x2f'));}if(_0x5be845['\x6d\x61\x74\x63\x68'](fckucloner_0x1136('0x30'))){_0x335709[fckucloner_0x1136('0x19')](fckucloner_0x1136('0x31')+_0x253c10+fckucloner_0x1136('0x2f'));}if(_0x5be845[fckucloner_0x1136('0x10')](fckucloner_0x1136('0x32'))){_0x335709[fckucloner_0x1136('0x19')](fckucloner_0x1136('0x33')+_0x253c10+'\x3c\x2f\x64\x69\x76\x3e');}if(_0x5be845[fckucloner_0x1136('0x10')](fckucloner_0x1136('0x34'))){_0x335709[fckucloner_0x1136('0x19')](fckucloner_0x1136('0x35')+_0x253c10+fckucloner_0x1136('0x2f'));}if(_0x5be845[fckucloner_0x1136('0x10')](fckucloner_0x1136('0x36'))){_0x335709[fckucloner_0x1136('0x19')](fckucloner_0x1136('0x37'));}if(_0x5be845['\x6d\x61\x74\x63\x68'](fckucloner_0x1136('0x38'))){_0x335709[fckucloner_0x1136('0x19')](fckucloner_0x1136('0x39'));}if(_0x5be845[fckucloner_0x1136('0x10')](fckucloner_0x1136('0x3a'))){_0x335709[fckucloner_0x1136('0x19')]('\x3c\x70\x72\x65\x20\x63\x6c\x61\x73\x73\x3d\x22\x63\x6f\x64\x65\x2d\x62\x6f\x78\x20\x73\x68\x6f\x72\x74\x2d\x62\x22\x3e'+_0x253c10+'\x3c\x2f\x70\x72\x65\x3e');}var _0x3cafa7=$(fckucloner_0x1136('0x3b'))[fckucloner_0x1136('0x3c')]('\x62');_0x3cafa7[fckucloner_0x1136('0x14')](function(){var _0x5f5d90=$(this);var _0x5be845=_0x5f5d90[fckucloner_0x1136('0x15')]()[fckucloner_0x1136('0x17')]();if(_0x5be845['\x6d\x61\x74\x63\x68'](fckucloner_0x1136('0x3d'))||_0x5be845[fckucloner_0x1136('0x10')](fckucloner_0x1136('0x30'))||_0x5be845[fckucloner_0x1136('0x10')]('\x61\x6c\x65\x72\x74\x2d\x77\x61\x72\x6e\x69\x6e\x67')||_0x5be845[fckucloner_0x1136('0x10')](fckucloner_0x1136('0x34'))||_0x5be845[fckucloner_0x1136('0x10')](fckucloner_0x1136('0x3a'))){_0x5f5d90[fckucloner_0x1136('0x19')]('');}});});$(fckucloner_0x1136('0x3e'))['\x6f\x6e']('\x63\x6c\x69\x63\x6b',function(){var _0x95ee73=$(this);var _0x324811=_0x95ee73['\x64\x61\x74\x61'](fckucloner_0x1136('0x3f'));var _0x2dc49a=_0x95ee73[fckucloner_0x1136('0x40')](fckucloner_0x1136('0xd'));var _0xcb2957=_0x95ee73[fckucloner_0x1136('0x40')](fckucloner_0x1136('0xe'));var _0x1718a1=window[fckucloner_0x1136('0x41')][fckucloner_0x1136('0xd')];var _0x15d3cc=window['\x73\x63\x72\x65\x65\x6e'][fckucloner_0x1136('0xe')];var _0x4b8940=Math['\x72\x6f\x75\x6e\x64'](_0x1718a1/0x2-_0x2dc49a/0x2);var _0x2e1194=Math[fckucloner_0x1136('0xc')](_0x15d3cc/0x2-_0xcb2957/0x2);var _0x30d839=window['\x6f\x70\x65\x6e'](_0x324811,fckucloner_0x1136('0x42'),fckucloner_0x1136('0x43')+_0x2dc49a+fckucloner_0x1136('0x44')+_0xcb2957+'\x2c\x6c\x65\x66\x74\x3d'+_0x4b8940+'\x2c\x74\x6f\x70\x3d'+_0x2e1194);_0x30d839[fckucloner_0x1136('0x45')]();});$(fckucloner_0x1136('0x46'))[fckucloner_0x1136('0x14')](function(){var _0x409905=$(this);var _0x559a22=_0x409905[fckucloner_0x1136('0x3c')](fckucloner_0x1136('0x47'));_0x559a22['\x6f\x6e'](fckucloner_0x1136('0x48'),function(){_0x409905['\x74\x6f\x67\x67\x6c\x65\x43\x6c\x61\x73\x73'](fckucloner_0x1136('0x49'));});});$(fckucloner_0x1136('0x4a'))[fckucloner_0x1136('0x14')](function(){var _0x23e84f=$(this);var _0x37ba7a=_0x23e84f[fckucloner_0x1136('0x15')]()[fckucloner_0x1136('0x17')]();var _0x3040fd=_0x23e84f[fckucloner_0x1136('0x5')]('\x68\x72\x65\x66');_0x23e84f[fckucloner_0x1136('0x19')](fckucloner_0x1136('0x4b')+_0x37ba7a+fckucloner_0x1136('0x4c')+_0x3040fd+'\x22\x20\x74\x69\x74\x6c\x65\x3d\x22'+_0x37ba7a+'\x22\x20\x74\x61\x72\x67\x65\x74\x3d\x22\x5f\x62\x6c\x61\x6e\x6b\x22\x3e'+_0x37ba7a+fckucloner_0x1136('0x4d'));$('\x2e\x64\x53\x45\x79\x66\x54\x79\x61\x56\x45\x45')[fckucloner_0x1136('0x2d')]($('\x2e\x64\x53\x45\x79\x66\x54\x79\x61\x56\x45\x45\x20\x73\x70\x61\x6e\x20\x6c\x69'));$(fckucloner_0x1136('0x4e'))[fckucloner_0x1136('0x9')](fckucloner_0x1136('0x4f'));});function elcRegex(_0x5062a1){var _0x504f65=/[^[\}]+(?=])/g;return String(_0x5062a1['\x6d\x61\x74\x63\x68'](_0x504f65))[fckucloner_0x1136('0x17')]();}$(fckucloner_0x1136('0x50'))[fckucloner_0x1136('0x14')](function(_0x1efa8b,_0x19fe5a,_0x41d08c,_0x264580){var _0x4a8b01=$(this);var _0x502c78=_0x4a8b01['\x74\x65\x78\x74']()[fckucloner_0x1136('0x17')]();var _0x5e788b=_0x502c78[fckucloner_0x1136('0x51')]();var _0x1741ba=_0x502c78['\x73\x70\x6c\x69\x74']('\x2d');if(_0x1741ba[0x1]!=undefined){_0x1efa8b=elcRegex(_0x1741ba[0x1]);}else{_0x1efa8b='';}if(_0x1741ba[0x2]!=undefined){_0x19fe5a=elcRegex(_0x1741ba[0x2]);}else{_0x19fe5a='';}if(_0x1741ba[0x3]!=undefined){_0x41d08c=elcRegex(_0x1741ba[0x3]);}else{_0x41d08c='';}if(_0x1741ba[0x4]!=undefined){_0x264580=elcRegex(_0x1741ba[0x4]);}else{_0x264580='';}ajaxBlock(_0x4a8b01,_0x41d08c,_0x1efa8b,_0x19fe5a,_0x5e788b,_0x264580);});$(fckucloner_0x1136('0x52'))[fckucloner_0x1136('0x14')](function(_0xc4eaf,_0x15caeb,_0x3907d6){var _0x50f954=$(this);var _0x3332b8=_0x50f954[fckucloner_0x1136('0x15')]()['\x74\x72\x69\x6d']();var _0x5d6077=_0x3332b8[fckucloner_0x1136('0x51')]();var _0x20a659=_0x3332b8[fckucloner_0x1136('0x27')]('\x2d');if(_0x20a659[0x1]!=undefined){_0xc4eaf=elcRegex(_0x20a659[0x1]);}else{_0xc4eaf='';}if(_0x20a659[0x2]!=undefined){_0x15caeb=elcRegex(_0x20a659[0x2]);}else{_0x15caeb='';}if(_0x20a659[0x3]!=undefined){_0x3907d6=elcRegex(_0x20a659[0x3]);}else{_0x3907d6='';}ajaxWidget(_0x50f954,_0x3907d6,_0xc4eaf,_0x15caeb,_0x5d6077);});$(fckucloner_0x1136('0x53'))[fckucloner_0x1136('0x14')](function(){var _0x114482=$(this);var _0x1ebc58=_0x114482[fckucloner_0x1136('0x3c')](fckucloner_0x1136('0x54'))[fckucloner_0x1136('0x5')]('\x64\x61\x74\x61\x2d\x6c\x61\x62\x65\x6c');var _0x4d77d3=relatedPostsNum;ajaxRelated(_0x114482,fckucloner_0x1136('0x55'),_0x4d77d3,_0x1ebc58,fckucloner_0x1136('0x56'));});function msgError(){return fckucloner_0x1136('0x57');}function msgServerError(){return fckucloner_0x1136('0x58');}function beforeLoader(){return fckucloner_0x1136('0x59');}function getFeedUrl(_0x219610,_0x22c0fe,_0x220eac){var _0x16940b='';switch(_0x220eac){case'\x72\x65\x63\x65\x6e\x74':_0x16940b=fckucloner_0x1136('0x5a')+_0x22c0fe;break;case fckucloner_0x1136('0x5b'):if(_0x219610=='\x6c\x69\x73\x74'){_0x16940b=fckucloner_0x1136('0x5c')+_0x22c0fe;}else{_0x16940b=fckucloner_0x1136('0x5d')+_0x220eac+fckucloner_0x1136('0x5e')+_0x22c0fe;}break;default:_0x16940b=fckucloner_0x1136('0x5d')+_0x220eac+fckucloner_0x1136('0x5e')+_0x22c0fe;break;}return _0x16940b;}function getPostLink(_0x1c453f,_0x319694){var _0x562c7f=0x0;for(;_0x562c7f<_0x1c453f[_0x319694][fckucloner_0x1136('0x5f')][fckucloner_0x1136('0x1f')];_0x562c7f++){if(_0x1c453f[_0x319694][fckucloner_0x1136('0x5f')][_0x562c7f][fckucloner_0x1136('0x60')]==fckucloner_0x1136('0x61')){var _0x62e1e2=_0x1c453f[_0x319694][fckucloner_0x1136('0x5f')][_0x562c7f][fckucloner_0x1136('0x62')];break;}}return _0x62e1e2;}function getPostTitle(_0x26a483,_0x55154d){var _0x17653b=_0x26a483[_0x55154d][fckucloner_0x1136('0x63')]['\x24\x74'];return _0x17653b;}function getPostImage(_0x3fdf37,_0x586284){if('\x6d\x65\x64\x69\x61\x24\x74\x68\x75\x6d\x62\x6e\x61\x69\x6c'in _0x3fdf37[_0x586284]){var _0x4387b5=_0x3fdf37[_0x586284]['\x6d\x65\x64\x69\x61\x24\x74\x68\x75\x6d\x62\x6e\x61\x69\x6c']['\x75\x72\x6c'];if(_0x4387b5['\x6d\x61\x74\x63\x68'](fckucloner_0x1136('0x64'))){_0x4387b5=_0x4387b5[fckucloner_0x1136('0x12')](fckucloner_0x1136('0x65'),fckucloner_0x1136('0x66'));}var _0x44d7e2=_0x4387b5;}else{_0x44d7e2=fckucloner_0x1136('0x25');}return _0x44d7e2;}function getPostAuthor(_0x56b7af,_0x750dca){var _0x2f288f=_0x56b7af[_0x750dca]['\x61\x75\x74\x68\x6f\x72'][0x0][fckucloner_0x1136('0x67')]['\x24\x74'];if(messages[fckucloner_0x1136('0x68')]==fckucloner_0x1136('0x69')){var _0x16ae7c=fckucloner_0x1136('0x6a')+_0x2f288f+fckucloner_0x1136('0x6b');}else{_0x16ae7c='';}return _0x16ae7c;}function getPostDate(_0x37be59,_0x38817a){var _0xeeeb21=_0x37be59[_0x38817a][fckucloner_0x1136('0x6c')]['\x24\x74'];var _0x2e04e7=_0xeeeb21[fckucloner_0x1136('0x6d')](0x0,0x4);var _0x22718c=_0xeeeb21[fckucloner_0x1136('0x6d')](0x5,0x7);var _0x5c0168=_0xeeeb21['\x73\x75\x62\x73\x74\x72\x69\x6e\x67'](0x8,0xa);var _0x3347e1=monthFormat[parseInt(_0x22718c,0xa)-0x1]+'\x20'+_0x5c0168+'\x2c\x20'+_0x2e04e7;if(messages[fckucloner_0x1136('0x6e')]==fckucloner_0x1136('0x69')){var _0x49c246=fckucloner_0x1136('0x6f')+_0xeeeb21+'\x22\x3e'+_0x3347e1+fckucloner_0x1136('0x70');}else{_0x49c246='';}return _0x49c246;}function getPostMeta(_0x4bd08a,_0xd243e7){if(messages[fckucloner_0x1136('0x68')]==fckucloner_0x1136('0x69')||messages[fckucloner_0x1136('0x6e')]=='\x74\x72\x75\x65'){var _0x3cc945=fckucloner_0x1136('0x71')+_0x4bd08a+_0xd243e7+fckucloner_0x1136('0x2f');}else{_0x3cc945='';}if(messages[fckucloner_0x1136('0x6e')]==fckucloner_0x1136('0x69')){var _0x296baf='\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\x46\x48\x6d\x6c\x43\x62\x70\x77\x42\x66\x46\x22\x3e'+_0xd243e7+fckucloner_0x1136('0x2f');}else{_0x296baf='';}var _0x106a6f=[_0x3cc945,_0x296baf];return _0x106a6f;}function getPostLabel(_0xfae64b,_0x10c502){if(_0xfae64b[_0x10c502]['\x63\x61\x74\x65\x67\x6f\x72\x79']!=undefined){var _0x29b557=_0xfae64b[_0x10c502][fckucloner_0x1136('0x72')][0x0][fckucloner_0x1136('0x73')];var _0x53ef0d=fckucloner_0x1136('0x74')+_0x29b557+fckucloner_0x1136('0x6b');}else{_0x53ef0d='';}return _0x53ef0d;}function getPostComments(_0xb894e9,_0x238e08,_0xe3c70d){var _0xb62ab1=_0xb894e9[_0x238e08][fckucloner_0x1136('0x75')][0x0][fckucloner_0x1136('0x67')]['\x24\x74'];var _0x402caa=_0xb894e9[_0x238e08][fckucloner_0x1136('0x75')][0x0][fckucloner_0x1136('0x76')][fckucloner_0x1136('0x8')][fckucloner_0x1136('0x12')](fckucloner_0x1136('0x77'),fckucloner_0x1136('0x78'));var _0x1d3f6d=_0xb894e9[_0x238e08][fckucloner_0x1136('0x63')]['\x24\x74'];if(_0x402caa[fckucloner_0x1136('0x10')](fckucloner_0x1136('0x25'))){var _0x379294=fckucloner_0x1136('0x79');}else{_0x379294=_0x402caa;}var _0x2c8c9c=fckucloner_0x1136('0x7a')+_0x238e08+fckucloner_0x1136('0x7b')+_0xe3c70d+fckucloner_0x1136('0x7c')+_0x379294+fckucloner_0x1136('0x7d')+_0xe3c70d+'\x22\x3e'+_0xb62ab1+fckucloner_0x1136('0x7e')+_0x1d3f6d+fckucloner_0x1136('0x7f');return _0x2c8c9c;}function getCustomStyle(_0x5453c7,_0x39e914,_0x1b53a0){if(_0x1b53a0!=''){entryArtcImage=fckucloner_0x1136('0x80')+_0x5453c7+'\x2d'+_0x39e914+fckucloner_0x1136('0x81')+_0x5453c7+'\x2d'+_0x39e914+'\x20\x2e\x65\x6e\x74\x72\x79\x2d\x63\x61\x74\x65\x67\x6f\x72\x79\x7b\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x2d\x63\x6f\x6c\x6f\x72\x3a'+_0x1b53a0+fckucloner_0x1136('0x82')+_0x5453c7+'\x2d'+_0x39e914+fckucloner_0x1136('0x83')+_0x5453c7+'\x2d'+_0x39e914+fckucloner_0x1136('0x84')+_0x1b53a0+fckucloner_0x1136('0x85')+_0x5453c7+'\x2d'+_0x39e914+'\x20\x2e\x4d\x4b\x54\x63\x74\x69\x6e\x6c\x68\x6e\x56\x3a\x61\x66\x74\x65\x72\x7b\x62\x6f\x72\x64\x65\x72\x2d\x63\x6f\x6c\x6f\x72\x3a'+_0x1b53a0+fckucloner_0x1136('0x86');}else{entryArtcImage='';}return entryArtcImage;}function getAjax(_0x819ef4,_0x417c9d,_0x47971e,_0x12bf02,_0x118b3a){switch(_0x417c9d){case'\x62\x6c\x6f\x63\x6b\x73':case fckucloner_0x1136('0x87'):case fckucloner_0x1136('0x88'):case fckucloner_0x1136('0x89'):case fckucloner_0x1136('0x55'):if(_0x12bf02==undefined){_0x12bf02='\x67\x65\x74\x65\x72\x72\x6f\x72\x34\x30\x34';}var _0x4163b5=getFeedUrl(_0x417c9d,_0x47971e,_0x12bf02);$[fckucloner_0x1136('0x8a')]({'\x75\x72\x6c':_0x4163b5,'\x74\x79\x70\x65':fckucloner_0x1136('0x8b'),'\x64\x61\x74\x61\x54\x79\x70\x65':fckucloner_0x1136('0x8c'),'\x63\x61\x63\x68\x65':!![],'\x62\x65\x66\x6f\x72\x65\x53\x65\x6e\x64':function(_0x40498e){var _0x1eb8b7=getCustomStyle(_0x417c9d,_0x12bf02,_0x118b3a);switch(_0x417c9d){case fckucloner_0x1136('0x8d'):case'\x67\x72\x69\x64\x73':case fckucloner_0x1136('0x88'):$('\x23\x70\x61\x67\x65\x2d\x73\x6b\x69\x6e\x2d\x32')[fckucloner_0x1136('0x8e')](_0x1eb8b7);_0x819ef4[fckucloner_0x1136('0x2b')](beforeLoader())[fckucloner_0x1136('0x8f')]()[fckucloner_0x1136('0x9')](fckucloner_0x1136('0x90')+_0x417c9d+'\x2d'+_0x12bf02+fckucloner_0x1136('0x91'));break;case'\x6c\x69\x73\x74':_0x819ef4[fckucloner_0x1136('0x2b')](beforeLoader());break;case fckucloner_0x1136('0x55'):_0x819ef4['\x68\x74\x6d\x6c'](beforeLoader())[fckucloner_0x1136('0x8f')]()[fckucloner_0x1136('0x9')](fckucloner_0x1136('0x92'));break;}},'\x73\x75\x63\x63\x65\x73\x73':function(_0x5ddedc){var _0x5a3c17='';switch(_0x417c9d){case fckucloner_0x1136('0x8d'):_0x5a3c17=fckucloner_0x1136('0x93');break;case fckucloner_0x1136('0x87'):_0x5a3c17=fckucloner_0x1136('0x94');break;case fckucloner_0x1136('0x88'):_0x5a3c17=fckucloner_0x1136('0x95');break;case fckucloner_0x1136('0x89'):_0x5a3c17='\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\x63\x75\x73\x74\x6f\x6d\x2d\x77\x69\x64\x67\x65\x74\x22\x3e';break;case fckucloner_0x1136('0x55'):_0x5a3c17=fckucloner_0x1136('0x96');break;}var _0x2d03a3=_0x5ddedc[fckucloner_0x1136('0x97')]['\x65\x6e\x74\x72\x79'];if(_0x2d03a3!=undefined){var _0xc28704=0x0;var _0x47971e=_0x2d03a3;for(;_0xc28704<_0x47971e[fckucloner_0x1136('0x1f')];_0xc28704++){var _0x220f63=getPostLink(_0x47971e,_0xc28704);var _0x180b9f=getPostTitle(_0x47971e,_0xc28704,_0x220f63);var _0x231732=getPostImage(_0x47971e,_0xc28704,_0x220f63);var _0xbb35f2=getPostAuthor(_0x47971e,_0xc28704);var _0x2c3094=getPostDate(_0x47971e,_0xc28704);var _0x3b5212=getPostMeta(_0xbb35f2,_0x2c3094);var _0x476c75=getPostLabel(_0x47971e,_0xc28704);var _0x2b3241='';switch(_0x417c9d){case fckucloner_0x1136('0x8d'):switch(_0xc28704){case 0x0:_0x2b3241=_0x2b3241+(fckucloner_0x1136('0x98')+_0xc28704+fckucloner_0x1136('0x99')+_0x231732+fckucloner_0x1136('0x9a')+_0x220f63+'\x22\x3e'+_0x180b9f+fckucloner_0x1136('0x9b')+_0x3b5212[0x0]+fckucloner_0x1136('0x9c')+_0x220f63+fckucloner_0x1136('0x7c')+_0x231732+fckucloner_0x1136('0x9d'));break;default:_0x2b3241=_0x2b3241+(fckucloner_0x1136('0x98')+_0xc28704+fckucloner_0x1136('0x99')+_0x231732+fckucloner_0x1136('0x9a')+_0x220f63+'\x22\x3e'+_0x180b9f+fckucloner_0x1136('0x9b')+_0x3b5212[0x1]+fckucloner_0x1136('0x9c')+_0x220f63+fckucloner_0x1136('0x7c')+_0x231732+fckucloner_0x1136('0x9d'));break;}break;case fckucloner_0x1136('0x87'):_0x2b3241=_0x2b3241+(fckucloner_0x1136('0x9e')+_0xc28704+fckucloner_0x1136('0x9f')+_0x220f63+fckucloner_0x1136('0x7c')+_0x231732+fckucloner_0x1136('0xa0')+_0x220f63+'\x22\x3e'+_0x180b9f+'\x3c\x2f\x61\x3e\x3c\x2f\x68\x32\x3e'+_0x3b5212[0x1]+fckucloner_0x1136('0xa1'));break;case fckucloner_0x1136('0x88'):_0x2b3241=_0x2b3241+(fckucloner_0x1136('0xa2')+_0xc28704+fckucloner_0x1136('0x9f')+_0x220f63+fckucloner_0x1136('0x7c')+_0x231732+fckucloner_0x1136('0xa3')+_0x220f63+fckucloner_0x1136('0x7c')+_0x231732+fckucloner_0x1136('0x7d')+_0x220f63+'\x22\x3e'+_0x180b9f+fckucloner_0x1136('0x9b')+_0x3b5212[0x1]+fckucloner_0x1136('0xa1'));break;case'\x6c\x69\x73\x74':switch(_0x12bf02){case fckucloner_0x1136('0x5b'):var _0x5a3c17=getPostComments(_0x47971e,_0xc28704,_0x220f63);_0x2b3241=_0x2b3241+_0x5a3c17;break;default:_0x2b3241=_0x2b3241+(fckucloner_0x1136('0x7a')+_0xc28704+fckucloner_0x1136('0xa4')+_0x220f63+fckucloner_0x1136('0x7c')+_0x231732+fckucloner_0x1136('0xa5')+_0x220f63+'\x22\x3e'+_0x180b9f+fckucloner_0x1136('0x9b')+_0x3b5212[0x1]+fckucloner_0x1136('0xa1'));break;}break;case fckucloner_0x1136('0x55'):_0x2b3241=_0x2b3241+(fckucloner_0x1136('0xa6')+_0xc28704+fckucloner_0x1136('0x9f')+_0x220f63+fckucloner_0x1136('0x7c')+_0x231732+fckucloner_0x1136('0xa0')+_0x220f63+'\x22\x3e'+_0x180b9f+fckucloner_0x1136('0x9b')+_0x3b5212[0x1]+'\x3c\x2f\x64\x69\x76\x3e\x3c\x2f\x61\x72\x74\x69\x63\x6c\x65\x3e');break;}_0x5a3c17=_0x5a3c17+_0x2b3241;}}switch(_0x417c9d){case fckucloner_0x1136('0x8d'):case fckucloner_0x1136('0x87'):case fckucloner_0x1136('0x88'):_0x5a3c17=_0x5a3c17+fckucloner_0x1136('0x2f');_0x819ef4['\x68\x74\x6d\x6c'](_0x5a3c17);break;default:_0x5a3c17=_0x5a3c17+fckucloner_0x1136('0x2f');_0x819ef4[fckucloner_0x1136('0x2b')](_0x5a3c17);break;}_0x819ef4[fckucloner_0x1136('0x3c')]('\x73\x70\x61\x6e\x2e\x67\x6a\x53\x6a\x77\x4d\x56\x62\x58\x51\x62')[fckucloner_0x1136('0x0')]();},'\x65\x72\x72\x6f\x72':function(){switch(_0x417c9d){default:_0x819ef4[fckucloner_0x1136('0x2b')](msgServerError());break;}}});}}function ajaxBlock(_0xdcf837,_0x37fde4,_0x3c36df,_0x2f3858,_0x92f091,_0xa9bc9c){if(_0x92f091[fckucloner_0x1136('0x10')](fckucloner_0x1136('0xa7'))){if(_0x37fde4==fckucloner_0x1136('0x8d')||_0x37fde4==fckucloner_0x1136('0x87')||_0x37fde4==fckucloner_0x1136('0x88')){_0xdcf837['\x70\x61\x72\x65\x6e\x74']()[fckucloner_0x1136('0x3c')](fckucloner_0x1136('0xa8'))[fckucloner_0x1136('0x2d')](fckucloner_0x1136('0xa9')+_0x2f3858+'\x22\x3e\x3c\x73\x76\x67\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x32\x34\x20\x32\x34\x22\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x32\x20\x34\x6c\x2d\x31\x2e\x34\x31\x20\x31\x2e\x34\x31\x4c\x31\x36\x2e\x31\x37\x20\x31\x31\x48\x34\x76\x32\x68\x31\x32\x2e\x31\x37\x6c\x2d\x35\x2e\x35\x38\x20\x35\x2e\x35\x39\x4c\x31\x32\x20\x32\x30\x6c\x38\x2d\x38\x7a\x22\x3e\x3c\x2f\x70\x61\x74\x68\x3e\x3c\x2f\x73\x76\x67\x3e\x3c\x2f\x61\x3e');return getAjax(_0xdcf837,_0x37fde4,_0x3c36df,_0x2f3858,_0xa9bc9c);}else{_0xdcf837[fckucloner_0x1136('0x2b')](msgError())[fckucloner_0x1136('0x8f')]()[fckucloner_0x1136('0x9')](fckucloner_0x1136('0x92'));}}}function ajaxWidget(_0x56f12a,_0x46ce65,_0x25c8f7,_0x36aabb,_0x388d73){if(_0x388d73[fckucloner_0x1136('0x10')](fckucloner_0x1136('0xaa'))){if(_0x46ce65=='\x6c\x69\x73\x74'){return getAjax(_0x56f12a,_0x46ce65,_0x25c8f7,_0x36aabb);}else{_0x56f12a[fckucloner_0x1136('0x2b')](msgError());}}}function ajaxRelated(_0x2398ea,_0x5c27d4,_0x3f3108,_0x52c219,_0x431b60){if(_0x431b60[fckucloner_0x1136('0x10')](fckucloner_0x1136('0x56'))){return getAjax(_0x2398ea,_0x5c27d4,_0x3f3108,_0x52c219);}}$('\x2e\x67\x75\x69\x71\x5f\x4b\x4d\x4c\x47\x65\x62')[fckucloner_0x1136('0x14')](function(){var _0x1b157d=$(this);var _0x9f3b3f=commentsSystem;var _0x2a1330=fckucloner_0x1136('0xab')+disqus_blogger_current_url+fckucloner_0x1136('0xac');var _0x258561='\x63\x6f\x6d\x6d\x65\x6e\x74\x73\x2d\x73\x79\x73\x74\x65\x6d\x2d'+_0x9f3b3f;switch(_0x9f3b3f){case'\x62\x6c\x6f\x67\x67\x65\x72':_0x1b157d[fckucloner_0x1136('0x9')](_0x258561)[fckucloner_0x1136('0xad')]();$(fckucloner_0x1136('0xae'))[fckucloner_0x1136('0x9')](fckucloner_0x1136('0xad'));break;case fckucloner_0x1136('0xaf'):_0x1b157d[fckucloner_0x1136('0x9')](_0x258561)['\x73\x68\x6f\x77']();break;case fckucloner_0x1136('0xb0'):_0x1b157d[fckucloner_0x1136('0x9')](_0x258561)[fckucloner_0x1136('0x3c')]('\x23\x63\x6f\x6d\x6d\x65\x6e\x74\x73')[fckucloner_0x1136('0x2b')](_0x2a1330);_0x1b157d[fckucloner_0x1136('0xad')]();break;case fckucloner_0x1136('0xb1'):_0x1b157d[fckucloner_0x1136('0xb1')]();break;default:_0x1b157d[fckucloner_0x1136('0x9')](fckucloner_0x1136('0xb2'))[fckucloner_0x1136('0xad')]();$(fckucloner_0x1136('0xae'))['\x61\x64\x64\x43\x6c\x61\x73\x73'](fckucloner_0x1136('0xad'));break;}var _0x57d758=_0x1b157d[fckucloner_0x1136('0x3c')](fckucloner_0x1136('0xb3'));var _0x2ceeb8=_0x1b157d[fckucloner_0x1136('0x3c')](fckucloner_0x1136('0xb4'));_0x57d758['\x6f\x6e'](fckucloner_0x1136('0x48'),function(){_0x2ceeb8[fckucloner_0x1136('0xad')]();});_0x2ceeb8['\x6f\x6e']('\x63\x6c\x69\x63\x6b',function(){_0x2ceeb8[fckucloner_0x1136('0xb1')]();});});$(function(){$(fckucloner_0x1136('0xb5'))[fckucloner_0x1136('0x0')]();$(fckucloner_0x1136('0xb6'))['\x6f\x6e'](fckucloner_0x1136('0x48'),function(){$(fckucloner_0x1136('0xb7'))['\x74\x6f\x67\x67\x6c\x65\x43\x6c\x61\x73\x73'](fckucloner_0x1136('0xb8'));$(fckucloner_0x1136('0xb9'))[fckucloner_0x1136('0xba')](fckucloner_0x1136('0xbb'));if($(this)[fckucloner_0x1136('0xbc')](fckucloner_0x1136('0xbd'))){$(fckucloner_0x1136('0xb7'))[fckucloner_0x1136('0xba')](fckucloner_0x1136('0xb8'));$('\x2e\x53\x61\x54\x58\x4b\x66\x66\x44\x43\x64\x6d')[fckucloner_0x1136('0xba')](fckucloner_0x1136('0xbb'));}});$('\x2e\x6d\x52\x69\x79\x48\x76\x45\x70\x6e\x4f\x6d\x20\x2e\x69\x42\x79\x77\x67\x41\x4f\x65\x59\x64\x4c\x2c\x20\x23\x53\x61\x54\x58\x4b\x66\x66\x44\x43\x64\x6d\x20\x61')['\x6f\x6e']('\x63\x6c\x69\x63\x6b',function(){$(fckucloner_0x1136('0xb9'))['\x74\x6f\x67\x67\x6c\x65\x43\x6c\x61\x73\x73'](fckucloner_0x1136('0xbb'));});$(fckucloner_0x1136('0xbe'))['\x6f\x6e'](fckucloner_0x1136('0x48'),function(){$('\x23\x4e\x67\x52\x67\x55\x65\x59\x65\x4c\x61\x52')[fckucloner_0x1136('0xbf')](fckucloner_0x1136('0xc0'));});$(fckucloner_0x1136('0xc1'))['\x6f\x6e'](fckucloner_0x1136('0x48'),function(){$('\x62\x6f\x64\x79')[fckucloner_0x1136('0xbf')](fckucloner_0x1136('0xc2'));});$('\x23\x4b\x52\x41\x69\x64\x56\x64\x6e\x77\x6a\x71\x2c\x23\x6d\x59\x43\x54\x53\x68\x4f\x67\x66\x59\x43')[fckucloner_0x1136('0x14')](function(){if(fixedSidebar==!![]){$(this)['\x74\x68\x65\x69\x61\x53\x74\x69\x63\x6b\x79\x53\x69\x64\x65\x62\x61\x72']({'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x4d\x61\x72\x67\x69\x6e\x54\x6f\x70':0x40,'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x4d\x61\x72\x67\x69\x6e\x42\x6f\x74\x74\x6f\x6d':0x1e});}});$(fckucloner_0x1136('0xc3'))[fckucloner_0x1136('0x14')](function(){var _0x1f997f=$(this);$(window)['\x6f\x6e'](fckucloner_0x1136('0xc4'),function(){if($(this)[fckucloner_0x1136('0x1')]()>=0x64){_0x1f997f['\x66\x61\x64\x65\x49\x6e'](0xfa);}else{_0x1f997f['\x66\x61\x64\x65\x4f\x75\x74'](0xfa);}if(_0x1f997f[fckucloner_0x1136('0x2')]()[fckucloner_0x1136('0x3')]>=$(fckucloner_0x1136('0xc5'))[fckucloner_0x1136('0x2')]()['\x74\x6f\x70']-0x20){_0x1f997f[fckucloner_0x1136('0x9')](fckucloner_0x1136('0xc6'));}else{_0x1f997f[fckucloner_0x1136('0xba')](fckucloner_0x1136('0xc6'));}});_0x1f997f['\x63\x6c\x69\x63\x6b'](function(){$(fckucloner_0x1136('0xc7'))[fckucloner_0x1136('0xc8')]({'\x73\x63\x72\x6f\x6c\x6c\x54\x6f\x70':0x0},0x1f4);});});$('\x70\x2e\x63\x6f\x6d\x6d\x65\x6e\x74\x2d\x63\x6f\x6e\x74\x65\x6e\x74')[fckucloner_0x1136('0x14')](function(){var _0x4f6c01=$(this);_0x4f6c01[fckucloner_0x1136('0xc9')](/(https:\/\/\S+(\.png|\.jpeg|\.jpg|\.gif))/g,'\x3c\x69\x6d\x67\x20\x73\x72\x63\x3d\x22\x24\x31\x22\x2f\x3e');_0x4f6c01[fckucloner_0x1136('0xc9')](/(?:https:\/\/)?(?:www\.)?(?:youtube\.com)\/(?:watch\?v=)?(.+)/g,fckucloner_0x1136('0xca'));});$(fckucloner_0x1136('0xcb'))[fckucloner_0x1136('0x14')](function(){var _0x202d96=$(this);var _0x2855c7=_0x202d96[fckucloner_0x1136('0x40')](fckucloner_0x1136('0xcc'));if(_0x2855c7){$(fckucloner_0x1136('0xcb'))[fckucloner_0x1136('0xad')]();}$(fckucloner_0x1136('0xcb'))['\x6f\x6e'](fckucloner_0x1136('0x48'),function(_0x32220a){$(fckucloner_0x1136('0xcb'))[fckucloner_0x1136('0xb1')]();$['\x61\x6a\x61\x78']({'\x75\x72\x6c':_0x2855c7,'\x73\x75\x63\x63\x65\x73\x73':function(_0x2a56ea){var _0x32057b=$(_0x2a56ea)[fckucloner_0x1136('0x3c')]('\x2e\x59\x4b\x6c\x66\x75\x44\x42\x78\x71\x2d\x54');_0x32057b[fckucloner_0x1136('0x3c')](fckucloner_0x1136('0xcd'))[fckucloner_0x1136('0x9')](fckucloner_0x1136('0xce'));$(fckucloner_0x1136('0xcf'))[fckucloner_0x1136('0x2d')](_0x32057b[fckucloner_0x1136('0x2b')]());_0x2855c7=$(_0x2a56ea)[fckucloner_0x1136('0x3c')](fckucloner_0x1136('0xcb'))[fckucloner_0x1136('0x40')](fckucloner_0x1136('0xcc'));if(_0x2855c7){$(fckucloner_0x1136('0xcb'))[fckucloner_0x1136('0xad')]();}else{$(fckucloner_0x1136('0xcb'))[fckucloner_0x1136('0xb1')]();$(fckucloner_0x1136('0xd0'))['\x61\x64\x64\x43\x6c\x61\x73\x73'](fckucloner_0x1136('0xad'));}$(fckucloner_0x1136('0xd1'))[fckucloner_0x1136('0x0')]();},'\x62\x65\x66\x6f\x72\x65\x53\x65\x6e\x64':function(){$(fckucloner_0x1136('0xd2'))[fckucloner_0x1136('0xad')]();},'\x63\x6f\x6d\x70\x6c\x65\x74\x65':function(){$(fckucloner_0x1136('0xd2'))['\x68\x69\x64\x65']();}});_0x32220a[fckucloner_0x1136('0xd3')]();});});});$(fckucloner_0x1136('0xd4'))[fckucloner_0x1136('0x14')](function(){var _0x394354=$(this)[fckucloner_0x1136('0x3c')](fckucloner_0x1136('0xd5'))[fckucloner_0x1136('0xd6')]('\x61');var _0x2baa16=_0x394354[fckucloner_0x1136('0x1f')];var _0x32e6ce=0x0;for(;_0x32e6ce<_0x2baa16;_0x32e6ce++){var _0x311139=_0x394354['\x65\x71'](_0x32e6ce);var _0x46a484=_0x311139[fckucloner_0x1136('0x15')]();if(_0x46a484[fckucloner_0x1136('0xd7')](0x0)!=='\x5f'){var _0x60c999=_0x394354['\x65\x71'](_0x32e6ce+0x1);var _0x28291f=_0x60c999['\x74\x65\x78\x74']();if(_0x28291f[fckucloner_0x1136('0xd7')](0x0)==='\x5f'){var _0x2b7238=_0x311139[fckucloner_0x1136('0x8f')]();_0x2b7238[fckucloner_0x1136('0x2d')](fckucloner_0x1136('0xd8'));}}if(_0x46a484[fckucloner_0x1136('0xd7')](0x0)==='\x5f'){_0x311139[fckucloner_0x1136('0x15')](_0x46a484['\x72\x65\x70\x6c\x61\x63\x65']('\x5f',''));_0x311139[fckucloner_0x1136('0x8f')]()[fckucloner_0x1136('0x21')](_0x2b7238['\x63\x68\x69\x6c\x64\x72\x65\x6e'](fckucloner_0x1136('0xd9')));}}_0x32e6ce=0x0;for(;_0x32e6ce<_0x2baa16;_0x32e6ce++){var _0x311139=_0x394354['\x65\x71'](_0x32e6ce);var _0x1380ee=_0x311139['\x74\x65\x78\x74']();if(_0x1380ee[fckucloner_0x1136('0xd7')](0x0)!=='\x5f'){var _0x52e6c5=_0x394354['\x65\x71'](_0x32e6ce+0x1);var _0x2ed219=_0x52e6c5[fckucloner_0x1136('0x15')]();if(_0x2ed219[fckucloner_0x1136('0xd7')](0x0)==='\x5f'){var _0xff269b=_0x311139['\x70\x61\x72\x65\x6e\x74']();_0xff269b[fckucloner_0x1136('0x2d')](fckucloner_0x1136('0xda'));}}if(_0x1380ee['\x63\x68\x61\x72\x41\x74'](0x0)==='\x5f'){_0x311139[fckucloner_0x1136('0x15')](_0x1380ee['\x72\x65\x70\x6c\x61\x63\x65']('\x5f',''));_0x311139[fckucloner_0x1136('0x8f')]()['\x61\x70\x70\x65\x6e\x64\x54\x6f'](_0xff269b['\x63\x68\x69\x6c\x64\x72\x65\x6e'](fckucloner_0x1136('0xdb')));}}$(fckucloner_0x1136('0xdc'))[fckucloner_0x1136('0x8f')]('\x6c\x69')[fckucloner_0x1136('0x9')](fckucloner_0x1136('0xdd'));$(fckucloner_0x1136('0xde'))[fckucloner_0x1136('0x9')](fckucloner_0x1136('0xdf'));});$('\x23\x71\x75\x4a\x64\x71\x78\x44\x64\x5a\x77\x5a\x20\x75\x6c\x20\x3e\x20\x6c\x69\x20\x3e\x20\x61')[fckucloner_0x1136('0x48')](function(){var _0x488c58=$(this)[fckucloner_0x1136('0xe0')]();return $(fckucloner_0x1136('0xe1'))['\x72\x65\x6d\x6f\x76\x65\x43\x6c\x61\x73\x73'](fckucloner_0x1136('0xbb')),$(this)[fckucloner_0x1136('0xe2')]('\x6c\x69')[fckucloner_0x1136('0x9')](fckucloner_0x1136('0xbb')),_0x488c58['\x69\x73']('\x75\x6c')&&_0x488c58['\x69\x73'](fckucloner_0x1136('0xe3'))&&($(this)['\x63\x6c\x6f\x73\x65\x73\x74']('\x6c\x69')['\x72\x65\x6d\x6f\x76\x65\x43\x6c\x61\x73\x73'](fckucloner_0x1136('0xbb')),_0x488c58['\x73\x6c\x69\x64\x65\x55\x70']('\x6e\x6f\x72\x6d\x61\x6c')),_0x488c58['\x69\x73']('\x75\x6c')&&!_0x488c58['\x69\x73'](fckucloner_0x1136('0xe3'))&&($('\x2e\x4c\x69\x6e\x6b\x4c\x69\x73\x74\x20\x75\x6c\x20\x75\x6c\x20\x75\x6c\x3a\x76\x69\x73\x69\x62\x6c\x65')['\x73\x6c\x69\x64\x65\x55\x70'](fckucloner_0x1136('0xe4')),_0x488c58[fckucloner_0x1136('0xe5')](fckucloner_0x1136('0xe4'))),0x0==$(this)[fckucloner_0x1136('0xe2')]('\x6c\x69')[fckucloner_0x1136('0x3c')]('\x75\x6c')[fckucloner_0x1136('0xd6')]()[fckucloner_0x1136('0x1f')];});$(fckucloner_0x1136('0xe6'))[fckucloner_0x1136('0x14')](function(){$(this)[fckucloner_0x1136('0x2d')]('\x3c\x73\x76\x67\x20\x63\x6c\x61\x73\x73\x3d\x22\x64\x6f\x77\x6e\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x34\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x34\x22\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x32\x34\x20\x32\x34\x22\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x37\x2e\x34\x31\x2c\x38\x2e\x35\x38\x4c\x31\x32\x2c\x31\x33\x2e\x31\x37\x4c\x31\x36\x2e\x35\x39\x2c\x38\x2e\x35\x38\x4c\x31\x38\x2c\x31\x30\x4c\x31\x32\x2c\x31\x36\x4c\x36\x2c\x31\x30\x4c\x37\x2e\x34\x31\x2c\x38\x2e\x35\x38\x5a\x22\x20\x2f\x3e\x3c\x2f\x73\x76\x67\x3e');});var scrollPos=0x0,scrollTime;$(window)['\x6f\x6e']('\x73\x63\x72\x6f\x6c\x6c',function(){showHideHeader['\x63\x61\x6c\x6c'](this);});var showHideHeader=function(_0x48ab04){clearTimeout(scrollTime);var _0x3d4dee=$(this)[fckucloner_0x1136('0x1')]();if(_0x3d4dee<0x0){$(fckucloner_0x1136('0xe7'))[fckucloner_0x1136('0xba')](fckucloner_0x1136('0xe8'));}else{if(_0x3d4dee<=scrollPos){$('\x2e\x75\x42\x4a\x79\x32\x79\x6b\x35\x4c\x44\x33')[fckucloner_0x1136('0xba')](fckucloner_0x1136('0xe8'));}else{$('\x2e\x75\x42\x4a\x79\x32\x79\x6b\x35\x4c\x44\x33')[fckucloner_0x1136('0x9')](fckucloner_0x1136('0xe8'));}}scrollTime=setTimeout(function(){scrollPos=$(window)['\x73\x63\x72\x6f\x6c\x6c\x54\x6f\x70']();},0x64);};$(fckucloner_0x1136('0xe9'))[fckucloner_0x1136('0x48')](function(_0x1b299c){_0x1b299c[fckucloner_0x1136('0xd3')]();$(fckucloner_0x1136('0xea'))[fckucloner_0x1136('0x9')](fckucloner_0x1136('0xcc'));$(fckucloner_0x1136('0xeb'))[fckucloner_0x1136('0x8e')](fckucloner_0x1136('0xec'));var _0x2dbe95=$(this)[fckucloner_0x1136('0x5')](fckucloner_0x1136('0x62'));setTimeout(function(){window[fckucloner_0x1136('0xed')](_0x2dbe95,'\x5f\x62\x6c\x61\x6e\x6b');$(fckucloner_0x1136('0xea'))[fckucloner_0x1136('0xba')]('\x6c\x6f\x61\x64');$('\x2e\x48\x48\x69\x49\x73\x63\x49\x57\x42\x43\x78\x20\x2e\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x73')['\x72\x65\x6d\x6f\x76\x65']();},0x7d0);});$(fckucloner_0x1136('0xee'))[fckucloner_0x1136('0x14')](function(){var _0x36aa6f=$(this);var _0x459638=_0x36aa6f[fckucloner_0x1136('0x3c')]('\x73\x74\x72\x69\x6b\x65\x3a\x63\x6f\x6e\x74\x61\x69\x6e\x73\x28\x22\x64\x65\x6d\x6f\x7e\x22\x29');var _0x2bb83d=_0x36aa6f[fckucloner_0x1136('0x3c')](fckucloner_0x1136('0xef'));var _0x51b8f2=_0x36aa6f[fckucloner_0x1136('0x3c')](fckucloner_0x1136('0xf0'));var _0x58efab=$(this)[fckucloner_0x1136('0x3c')](fckucloner_0x1136('0xf1'));_0x58efab[fckucloner_0x1136('0x21')](fckucloner_0x1136('0xf2'));if(_0x459638[fckucloner_0x1136('0x1f')]>0x0){var _0x2eafa2=_0x459638[fckucloner_0x1136('0x15')]();var _0x11c42e=_0x2eafa2[fckucloner_0x1136('0x27')]('\x7e');var _0x2fbb8e=_0x11c42e[0x1];$(fckucloner_0x1136('0xf3'))['\x61\x74\x74\x72']('\x68\x72\x65\x66',_0x2fbb8e);_0x459638[fckucloner_0x1136('0xf4')]();}if(_0x2bb83d[fckucloner_0x1136('0x1f')]>0x0){var _0x2eafa2=_0x2bb83d['\x74\x65\x78\x74']();var _0x11c42e=_0x2eafa2['\x73\x70\x6c\x69\x74']('\x7e');var _0x2fbb8e=_0x11c42e[0x1];$(fckucloner_0x1136('0xf5'))[fckucloner_0x1136('0x5')](fckucloner_0x1136('0x62'),_0x2fbb8e);_0x2bb83d[fckucloner_0x1136('0xf4')]();}if(_0x51b8f2[fckucloner_0x1136('0x1f')]>0x0){var _0x2eafa2=_0x51b8f2[fckucloner_0x1136('0x15')]();var _0x11c42e=_0x2eafa2['\x73\x70\x6c\x69\x74']('\x3d');var _0x2fbb8e=_0x11c42e[0x1];$(fckucloner_0x1136('0xf6'))[fckucloner_0x1136('0x15')](_0x2fbb8e);_0x51b8f2['\x72\x65\x6d\x6f\x76\x65']();}});
//]]></script><div class='CKwkyxhrxkc'></div><a class='scrolltop' href='javascript:;'><svg height='24' viewBox='0 0 24 24' width='24'><path d='M7.41,15.41L12,10.83L16.59,15.41L18,14L12,8L6,14L7.41,15.41Z'></path></svg></a>
<script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/963277127-widgets.js"></script>
<script type='text/javascript'>
window['__wavt'] = 'AOuZoY6KaY8dODE0pkyVIkD0ezR2zo48sw:1633778993861';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d1514000847673033007','//goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html?m\x3d1','1514000847673033007');
_WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '1514000847673033007', 'title': 'Goolge Plays', 'url': 'https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html?m\x3d1', 'canonicalUrl': 'https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html', 'homepageUrl': 'https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/?m\x3d1', 'searchUrl': 'https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/search', 'canonicalHomepageUrl': 'https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/', 'blogspotFaviconUrl': 'https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': false, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': '', 'encoding': 'UTF-8', 'locale': 'en', 'localeUnderscoreDelimited': 'en', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': true, 'isMobileRequest': true, 'mobileClass': ' mobile', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Goolge Plays - Atom\x22 href\x3d\x22https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22Goolge Plays - RSS\x22 href\x3d\x22https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Goolge Plays - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/1514000847673033007/posts/default\x22 /\x3e\n\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Goolge Plays - Atom\x22 href\x3d\x22https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/feeds/1690150740204473703/comments/default\x22 /\x3e\n', 'meTag': '', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': false, 'adsenseAutoAds': false, 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/0af3c3e44fd57957', 'plusOneApiSrc': 'https://apis.google.com/js/plusone.js', 'disableGComments': true, 'sharing': {'platforms': [{'name': 'Get link', 'key': 'link', 'shareMessage': 'Get link', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': 'Share to Facebook', 'target': 'facebook'}, {'name': 'BlogThis!', 'key': 'blogThis', 'shareMessage': 'BlogThis!', 'target': 'blog'}, {'name': 'Twitter', 'key': 'twitter', 'shareMessage': 'Share to Twitter', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': 'Share to Pinterest', 'target': 'pinterest'}, {'name': 'Email', 'key': 'email', 'shareMessage': 'Email', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27en\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': false, 'jumpLinkMessage': 'Read more', 'pageType': 'item', 'postId': '1690150740204473703', 'postImageThumbnailUrl': 'https://1.bp.blogspot.com/-coSY0YIkEqs/Xemn1AkA6eI/AAAAAAAAAW4/KHj0QUGhi7AU7OkUwtL8RhXWzB2yFAvgACLcBGAsYHQ/s72-c/unnamed.png', 'postImageUrl': 'https://1.bp.blogspot.com/-coSY0YIkEqs/Xemn1AkA6eI/AAAAAAAAAW4/KHj0QUGhi7AU7OkUwtL8RhXWzB2yFAvgACLcBGAsYHQ/s1600/unnamed.png', 'pageName': 'Chat App Beta By Pranav Dileep', 'pageTitle': 'Goolge Plays: Chat App Beta By Pranav Dileep', 'metaDescription': ''}}, {'name': 'features', 'data': {'sharing_get_link_dialog': 'true', 'sharing_native': 'false'}}, {'name': 'messages', 'data': {'edit': 'Edit', 'linkCopiedToClipboard': 'Link copied to clipboard!', 'ok': 'Ok', 'postLink': 'Post Link'}}, {'name': 'template', 'data': {'name': 'custom', 'localizedName': 'Custom', 'isResponsive': true, 'isAlternateRendering': false, 'isCustom': true}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': 'Chat App Beta By Pranav Dileep', 'description': 'Enjoy millions of the latest free, paid, and mod Android Apps, Games, \x26 more. Anytime, anywhere, across your devices.', 'featuredImage': 'https://1.bp.blogspot.com/-coSY0YIkEqs/Xemn1AkA6eI/AAAAAAAAAW4/KHj0QUGhi7AU7OkUwtL8RhXWzB2yFAvgACLcBGAsYHQ/s1600/unnamed.png', 'url': 'https://goolgeplaysbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbsbwbs.blogspot.com/2019/12/gravija-substratum-theme-v2741-patched.html?m\x3d1', 'type': 'item', 'isSingleItem': true, 'isMultipleItems': false, 'isError': false, 'isPage': false, 'isPost': true, 'isHomepage': false, 'isArchive': false, 'isLabelSearch': false, 'postId': 1690150740204473703}}, {'name': 'widgets', 'data': [{'title': 'Facebook SDK', 'type': 'HTML', 'sectionId': 'YhmeU7AOHer', 'id': 'HTML150'}, {'title': 'Style Options', 'type': 'LinkList', 'sectionId': 'YhmeU7AOHer', 'id': 'LinkList97'}, {'title': 'Header Menu', 'type': 'LinkList', 'sectionId': 'WrwN_AXRRxg', 'id': 'LinkList98'}, {'title': 'Search Label List', 'type': 'Label', 'sectionId': 'hGYE_on-mcL', 'id': 'Label99'}, {'title': 'Goolge Plays (Header)', 'type': 'Header', 'sectionId': 'fcGzTlqihoz', 'id': 'Header1'}, {'title': 'Left Sidebar Menu', 'type': 'LinkList', 'sectionId': 'fcGzTlqihoz', 'id': 'LinkList99'}, {'title': 'Games', 'type': 'HTML', 'sectionId': 'HFDXJSGaYND', 'id': 'HTML5'}, {'title': 'Apps', 'type': 'HTML', 'sectionId': 'HFDXJSGaYND', 'id': 'HTML3'}, {'title': 'Personalization', 'type': 'HTML', 'sectionId': 'HFDXJSGaYND', 'id': 'HTML4'}, {'title': 'Discover Something New', 'type': 'Label', 'sectionId': 'HFDXJSGaYND', 'id': 'Label1'}, {'title': 'Books \x26amp; Reference', 'type': 'HTML', 'sectionId': 'HFDXJSGaYND', 'id': 'HTML6'}, {'title': '', 'type': 'HTML', 'sectionId': 'HFDXJSGaYND', 'id': 'HTML2'}, {'title': 'Recommended For You', 'type': 'HTML', 'sectionId': 'HFDXJSGaYND', 'id': 'HTML1'}, {'title': 'Blog Posts', 'type': 'Blog', 'sectionId': 'main', 'id': 'Blog1', 'posts': [{'id': '1690150740204473703', 'title': 'Chat App Beta By Pranav Dileep', 'featuredImage': 'https://1.bp.blogspot.com/-coSY0YIkEqs/Xemn1AkA6eI/AAAAAAAAAW4/KHj0QUGhi7AU7OkUwtL8RhXWzB2yFAvgACLcBGAsYHQ/s1600/unnamed.png', 'showInlineAds': false}], 'headerByline': {'regionName': 'header1', 'items': [{'name': 'share', 'label': ''}, {'name': 'author', 'label': 'by'}, {'name': 'timestamp', 'label': '-'}]}, 'footerBylines': [{'regionName': 'footer1', 'items': [{'name': 'comments', 'label': 'Post a Comment'}, {'name': 'icons', 'label': ''}, {'name': 'backlinks', 'label': 'You might like'}]}, {'regionName': 'footer2', 'items': [{'name': 'labels', 'label': 'Tags'}]}, {'regionName': 'footer3', 'items': [{'name': 'reactions', 'label': 'Post Navi'}]}], 'allBylineItems': [{'name': 'share', 'label': ''}, {'name': 'author', 'label': 'by'}, {'name': 'timestamp', 'label': '-'}, {'name': 'comments', 'label': 'Post a Comment'}, {'name': 'icons', 'label': ''}, {'name': 'backlinks', 'label': 'You might like'}, {'name': 'labels', 'label': 'Tags'}, {'name': 'reactions', 'label': 'Post Navi'}]}, {'title': 'Categories', 'type': 'Label', 'sectionId': 'sidebar', 'id': 'Label3'}, {'title': 'Main Tags', 'type': 'Label', 'sectionId': 'sidebar', 'id': 'Label2'}, {'title': 'no-style', 'type': 'HTML', 'sectionId': 'Kt_-gFHGGyE', 'id': 'HTML10'}, {'title': 'Contact Form', 'type': 'ContactForm', 'sectionId': 'zcZ_ElS_UPQ', 'id': 'ContactForm1'}, {'title': 'Mobile Footer Menu', 'type': 'LinkList', 'sectionId': 'uyxfwiMtTTj', 'id': 'LinkList96'}]}]);
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML150', 'YhmeU7AOHer', document.getElementById('HTML150'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList97', 'YhmeU7AOHer', document.getElementById('LinkList97'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList98', 'WrwN_AXRRxg', document.getElementById('LinkList98'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label99', 'hGYE_on-mcL', document.getElementById('Label99'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'fcGzTlqihoz', document.getElementById('Header1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList99', 'fcGzTlqihoz', document.getElementById('LinkList99'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML5', 'HFDXJSGaYND', document.getElementById('HTML5'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML3', 'HFDXJSGaYND', document.getElementById('HTML3'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML4', 'HFDXJSGaYND', document.getElementById('HTML4'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label1', 'HFDXJSGaYND', document.getElementById('Label1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML6', 'HFDXJSGaYND', document.getElementById('HTML6'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML2', 'HFDXJSGaYND', document.getElementById('HTML2'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML1', 'HFDXJSGaYND', document.getElementById('HTML1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/3903954502-lbx.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/4076883957-lightbox_bundle.css'}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label3', 'sidebar', document.getElementById('Label3'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label2', 'sidebar', document.getElementById('Label2'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML10', 'Kt_-gFHGGyE', document.getElementById('HTML10'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_ContactFormView', new _WidgetInfo('ContactForm1', 'zcZ_ElS_UPQ', document.getElementById('ContactForm1'), {'contactFormMessageSendingMsg': 'Sending...', 'contactFormMessageSentMsg': 'Your message has been sent.', 'contactFormMessageNotSentMsg': 'Message could not be sent. Please try again later.', 'contactFormInvalidEmailMsg': 'A valid email address is required.', 'contactFormEmptyMessageMsg': 'Message field cannot be empty.', 'title': 'Contact Form', 'blogId': '1514000847673033007', 'contactFormNameMsg': 'Name', 'contactFormEmailMsg': 'Email', 'contactFormMessageMsg': 'Message', 'contactFormSendMsg': 'Send', 'submitUrl': 'https://www.blogger.com/contact-form.do'}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList96', 'uyxfwiMtTTj', document.getElementById('LinkList96'), {}, 'displayModeFull'));
</script>
</body></html>