-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathIndex.html
1001 lines (904 loc) · 84.7 KB
/
Index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<head>
<title>Diary</title>
<meta property="og:type" content="website" />
<meta property="og:title" content="Diary" />
<meta property="og:site_name" content="Diary" />
<meta property="og:url" content="https://thestake2.netlify.app/Diary/" />
<meta property="og:image" content="https://thestake2.netlify.app/Images/Story Covers/Diary/English/Landscape/Story/Book Cover.png" />
<meta property="og:description" content="Website to show my Diary in HTML form, made by Stake2, Funkysnipa Cat, Izaque." />
<meta property="og:locale" content="en_US" />
<meta property="og:locale:alternate" content="pt_BR" />
<meta property="og:locale:alternate" content="pt_PT" />
<link rel="canonical" href="https://thestake2.netlify.app/Diary/" />
<link rel="icon" type="image/png" href="https://thestake2.netlify.app/Images/Story Covers/Diary/English/Landscape/Story/Book Cover.png" />
<link rel="image_src" type="image/png" href="https://thestake2.netlify.app/Images/Story Covers/Diary/English/Landscape/Story/Book Cover.png" />
<meta name="description" content="Website to show my Diary in HTML form, made by Stake2, Funkysnipa Cat, Izaque." />
<meta name="twitter:card" content="summary" />
<meta name="twitter:website" value="@The_Snakes90" />
<meta name="twitter:site" value="@The_Snakes90" />
<meta name="twitter:creator" content="@The_Snakes90" />
<meta name="revised" content="Stake2's Enterprise TM, 22/09/2021" />
<meta name="author" content="Stake2" />
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=yes" />
<meta charset="UTF-8" />
<!-- CSS files -->
<link rel="stylesheet" type="text/css" href="https://www.w3schools.com/lib/w3.css" />
<link rel="stylesheet" type="text/css" href="https://thestake2.netlify.app/CSS/Styler CSS/W3.css" />
<link rel="stylesheet" type="text/css" href="https://thestake2.netlify.app/CSS/Styler CSS/Main_CSS.css" />
<link rel="stylesheet" type="text/css" href="https://thestake2.netlify.app/CSS/Website CSS/POCB.css" />
<link rel="stylesheet" type="text/css" href="https://thestake2.netlify.app/CSS/Styler CSS/Colors.css" />
<!-- JavaScript files -->
<script src="https://code.jquery.com/jquery-3.5.1.js"></script>
<script src="https://kit.fontawesome.com/df0c191291.js" crossorigin="anonymous"></script>
<script src="https://thestake2.netlify.app/JavaScript/Function/Tabs.js"></script>
<script src="https://thestake2.netlify.app/JavaScript/Function/Redirect To Website Of User Language.js" onLoad="Check_Website_Link();"></script>
<script src="https://thestake2.netlify.app/JavaScript/Function/Show Hide.js"></script>
<script src="https://thestake2.netlify.app/JavaScript/Function/Mobile Side Menu.js"></script>
<script src="https://thestake2.netlify.app/JavaScript/Function/Set Revised Date.js"></script>
<script src="https://thestake2.netlify.app/JavaScript/Function/Change Button Color.js"></script>
<script src="https://thestake2.netlify.app/JavaScript/Function/Hide Chapter Button Images.js"></script>
<script src="https://thestake2.netlify.app/JavaScript/Story Websites/Open Chapter By Keys.js"></script>
<script src="https://thestake2.netlify.app/JavaScript/Story Websites/Write Chapter.js"></script>
</head>
<body onLoad="Define_Colors_And_Styles();">
<center>
<!--- Computer Button bar on the top -->
<div id="computer_buttons_bar" class="w3-center w3-bar mobileHide w3-animate-top" style="position:fixed;float:right;">
<span title="Read the Diary" alt="Read the Diary">
<a href="#diario-read the diary"><button id="computer_button_1" class="w3-btn text_black background_grey border_color_black border_3px background_hover_white" style="border-radius: 50px;" onclick="openCity('diario-read the diary');Define_Button('computer_button_1');Change_Button_Color();"><h2>Read the Diary: <i class="fas fa-book-open"></i> <span class="w3-text-white text_hover_yellow"> [New Chapter 2]</span></h2></button></a>
</span>
<span title="Characters" alt="Characters">
<a href="#diario-characters"><button id="computer_button_2" class="w3-btn text_black background_grey border_color_black border_3px background_hover_white" style="border-radius: 50px;" onclick="openCity('diario-characters');Define_Button('computer_button_2');Change_Button_Color();"><h2>Characters: <i class="fas fa-user-friends"></i></h2></button></a>
</span>
<span title="Stories" alt="Stories">
<a href="#diario-stories"><button id="computer_button_3" class="w3-btn text_black background_grey border_color_black border_3px background_hover_white" style="border-radius: 50px;" onclick="openCity('diario-stories');Define_Button('computer_button_3');Change_Button_Color();"><h2>Stories: <i class="fas fa-comments"></i></h2></button></a>
</span>
<br />
<center><button id="hide_computer_buttons" class="w3-center w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" style="border-radius: 50px;" onclick="Hide_Computer_Buttons();"><h2><i class="fas fa-arrow-circle-up"></i></h2></button></center>
</div>
<!-- "Show Computer Buttons" button bar -->
<div id="show_computer_button_bar" class="w3-bar" style="position:fixed;float:right;">
<button id="show_computer_buttons" class="w3-center w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" style="display:none;float:right;border-radius: 50px;" onclick="Show_Computer_Buttons();"><h2><i class="fas fa-arrow-circle-down"></i></h2></button>
</div>
<!--- Mobile Button bar at the left -->
<div id="mobile_button_sidebar" class="w3-center mobile_button_sidebar_css mobileShow ">
<a href="javascript:void(0)" class="close_mobile_sidebar_button" onclick="Hide_Mobile_Buttons();" style="font-size:35px;">
<i class="fas fa-times-circle"></i>
</a>
<span style="font-size:30px;" class="mobileShow text_grey">Mobile button menu: </span>
<a href="#diario-read the diarym" onclick="Hide_Mobile_Buttons();">
<button id="mobile_button_1" class="w3-btn text_black background_grey border_color_black border_3px background_hover_white" style="border-radius: 50px;" onclick="openCity('diario-read the diarym');Define_Button('mobile_button_1');Change_Button_Color();">
<h4>Read the Diary: <i class="fas fa-book-open"></i> <span class="w3-text-white text_hover_yellow"> [New Chapter 2]</span></h4>
</button>
</a>
<a href="#diario-charactersm" onclick="Hide_Mobile_Buttons();">
<button id="mobile_button_2" class="w3-btn text_black background_grey border_color_black border_3px background_hover_white" style="border-radius: 50px;" onclick="openCity('diario-charactersm');Define_Button('mobile_button_2');Change_Button_Color();">
<h4>Characters: <i class="fas fa-user-friends"></i></h4>
</button>
</a>
<a href="#diario-storiesm" onclick="Hide_Mobile_Buttons();">
<button id="mobile_button_3" class="w3-btn text_black background_grey border_color_black border_3px background_hover_white" style="border-radius: 50px;" onclick="openCity('diario-storiesm');Define_Button('mobile_button_3');Change_Button_Color();">
<h4>Stories: <i class="fas fa-comments"></i></h4>
</button>
</a>
</div>
<div class="mobileShow"><button id="show_mobile_buttons" class="w3-center w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" style="float:left;position:fixed;border-radius: 50px;" onclick="Show_Mobile_Buttons();"><h2><i class="fas fa-bars"></i></h2></button>
</div>
<script>
var old_website_title, current_website_title;
function Get_Title() {
old_website_title = document.title;
current_website_title = document.title;
}
function Change_Title() {
document.title = "(1) " + document.title;
current_website_title = document.title;
}
function Reset_Title(mode, source = null) {
if (mode == "chapter") {
document.title = current_website_title;
if (source == "notification") {
document.title = document.title.replace("(1) ", "");
}
}
if (mode == "notification") {
document.title = document.title.replace("(1) ", "");
current_website_title = document.title;
}
}
function Add_To_Website_Title(text_to_add, source = null) {
Reset_Title("chapter", source);
document.title = document.title + " " + text_to_add;
}
</script>
<div class="mobileHide"><br /><br /><br /><br /><br /><br /><br /><br /></div>
<div class="background_black border_color_grey border_4px" style="margin-left:5%;margin-right:5%;border-radius: 50px;"><!-- Website header -->
<div class="w3-animate-zoom">
<!-- Website computer title -->
<h2 class="w3-center text_grey w3-animate-zoom mobileHide">
<p><br /><b>Diary: <i class="fas fa-book"></i></b><br /><br /><p>
</h2>
</div>
<div class="w3-animate-zoom">
<!-- Website mobile title -->
<h4 class="text_grey w3-animate-zoom mobileShow">
<p><br /><b>Diary: <i class="fas fa-book"></i></b><br /><br /><p>
</h4>
</div>
<hr class="border_color_grey border_1px" style="margin-left:3%;margin-right:3%;" />
<!-- Website images -->
<div class="w3-center">
<center>
<img src="https://thestake2.netlify.app/Images/Story Covers/Diary/English/Landscape/Story/Book Cover.png" width="33%" class="w3-center border_3px border_color_grey mobileHide w3-center" style="border-radius: 50px;" />
</center>
<div class="mobileHide w3-center">
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/Images/Story Covers/Diary/English/Landscape/Story/Book Cover.png')">
<h4>Image link: <i class="fas fa-images"></i></h4>
</button>
</div>
<center>
<img src="https://thestake2.netlify.app/Images/Story Covers/Diary/English/Landscape/Story/Book Cover.png" width="55%" class="border_3px border_color_grey mobileShow w3-center" style="border-radius: 50px;" />
</center>
<div class="mobileShow w3-center">
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/Images/Story Covers/Diary/English/Landscape/Story/Book Cover.png')">
<h4>Image link: <i class="fas fa-images"></i></h4>
</button>
</div>
</div>
<hr class="border_color_grey border_1px" style="margin-left:3%;margin-right:3%;" />
<h4 class="text_grey" style="margin-left:11%;margin-right:11%;">Website to show my <span class="w3-text-white" >Diary</span> in HTML form, made by <span class="w3-text-white" >Stake2</span>, <span class="w3-text-white" >Funkysnipa Cat</span>, <span class="w3-text-white" >Izaque</span>.</h4>
<h4 class="text_grey">
Author of the story: <span class="w3-text-white"><span class="w3-text-white" >Izaque Sanvezzo (Stake2)</span><br /></span>
Chapters: <span class="w3-text-white">2 <i class="fas fa-book-open"></i></span><br />
Reader: <span class="w3-text-white">1 <i class="fas fa-book-reader"></i></span><br />
Story creation date: <span class="w3-text-white">03/11/2016</span><br />
Status: <span class="w3-text-white">[Writing]</span></h4>
<br />
</div>
<a name="diario-read the diary"></a>
<div id="diario-read the diary" class="city mobileHide" style="display:none;">
<div class="mobileHide"><br /><br /><br /><br /><br /><br /><br /><br /></div>
<h2 class="mobileHide background_black text_grey border_color_grey border_4px" style="margin:10%;border-radius: 50px;">
<div style="margin:3%;">
<div class="w3-animate-zoom"><h2><p></p><br /><b>Read the Diary: <i class="fas fa-book-open"></i></b><br /><br /><p></p></h2></div><hr class="border_color_grey border_1px" />
<h4><b><div class="w3-animate-zoom"><div class="shake_side_to_side_animation">
<a href="#chapter-1" title="1"><button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white" style="border-radius: 50px;" onclick="openCity('chapter-1');Define_Chapter(1);Add_To_Website_Title(' - Chapter: 1', 'notification');">1</button></a>
</div><div class="shake_side_to_side_animation">
<a href="#chapter-2" title="2"><button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white" style="border-radius: 50px;" onclick="openCity('chapter-2');Define_Chapter(2);Add_To_Website_Title(' - Chapter: 2', 'notification');">2 <span class="w3-text-yellow">[New!]</span></button></a>
</div></div></b></h4></div>
</h2>
</div>
<a name="diario-read the diarym"></a>
<div id="diario-read the diarym" class="city mobileShow" style="display:none;">
<div class="mobileHide"><br /><br /><br /><br /><br /><br /><br /><br /></div>
<h4 class="mobileShow background_black text_grey border_color_grey border_4px" style="margin:10%;border-radius: 50px;">
<div style="margin:3%;">
<div class="w3-animate-zoom"><h2><p></p><br /><b>Read the Diary: <i class="fas fa-book-open"></i></b><br /><br /><p></p></h2></div><hr class="border_color_grey border_1px" />
<h4><b><div class="w3-animate-zoom"><div class="shake_side_to_side_animation">
<a href="#chapter-1" title="1"><button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white" style="border-radius: 50px;" onclick="openCity('chapter-1');Define_Chapter(1);Add_To_Website_Title(' - Chapter: 1', 'notification');">1</button></a>
</div><div class="shake_side_to_side_animation">
<a href="#chapter-2" title="2"><button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white" style="border-radius: 50px;" onclick="openCity('chapter-2');Define_Chapter(2);Add_To_Website_Title(' - Chapter: 2', 'notification');">2 <span class="w3-text-yellow">[New!]</span></button></a>
</div></div></b></h4></div>
</h4>
</div>
<a name="diario-characters"></a>
<div id="diario-characters" class="city mobileHide" style="display:none;">
<div class="mobileHide"><br /><br /><br /><br /><br /><br /><br /><br /></div>
<h2 class="mobileHide background_black text_grey border_color_grey border_4px" style="margin:10%;border-radius: 50px;">
<div style="margin:3%;">
<div class="w3-animate-zoom"><h2><p></p><br /><b>Characters: <i class="fas fa-user-friends"></i></b><br /><br /><p></p></h2></div><hr class="border_color_grey border_1px" />
<div style="text-align:left;"><span class="w3-text-white"><div style="margin:3%;">
<div style="margin:3%;">
<div style="border-width:0px;border-color:w3-black;border-style:solid;border-radius: 25px;">
<div style="border-width:3px;border-color:w3-black;border-style:solid;border-radius: 25px;">
<h1 style="margin-left:3%;"><b>
<span class="w3-text-orange">Izaque (stake2):</span>
</b></h1>
<div style="margin:3%;">
<div style="margin-left:3%;">
Me of course xD, my dialogue is shown with:<br />
[Current time]: "My dialogue"<br /><br />
In other words:<br />
23:42 19/04/2020: "My dialogue"<br />
</div>
</div>
<br />
</div>
<br /><br />
<div style="border-width:3px;border-color:w3-black;border-style:solid;border-radius: 25px;">
<h1 style="margin-left:3%;"><b>
<span class="w3-text-blue">Nodus (Artificial Intelligence):</span>
</b></h1>
<div style="margin:3%;">
<div style="margin-left:3%;">
My friend "from the future", he is an Artificial Intelligence, and a robot if you will, his dialogue is shown with:<br />
[Current time]: //His dialogue<br /><br />
In other words:<br />
23:42 19/04/2020: //His dialogue<br />
</div>
</div>
<br />
</div>
<br /><br />
<div style="border-width:3px;border-color:w3-black;border-style:solid;border-radius: 25px;">
<h1 style="margin-left:3%;"><b>
<span class="w3-text-cyan">Ted (Random Guy):</span>
</b></h1>
<div style="margin:3%;">
<div style="margin-left:3%;">
A random guy that appears sometimes, his dialogue is shown with:<br />
[Current time]: ~His dialogue<br /><br />
In other words:<br />
23:42 19/04/2020: ~His dialogue
</div>
</div>
<br />
</div>
</div>
</div>
</div>
</span></div></div>
</h2>
</div>
<a name="diario-charactersm"></a>
<div id="diario-charactersm" class="city mobileShow" style="display:none;">
<div class="mobileHide"><br /><br /><br /><br /><br /><br /><br /><br /></div>
<h4 class="mobileShow background_black text_grey border_color_grey border_4px" style="margin:10%;border-radius: 50px;">
<div style="margin:3%;">
<div class="w3-animate-zoom"><h2><p></p><br /><b>Characters: <i class="fas fa-user-friends"></i></b><br /><br /><p></p></h2></div><hr class="border_color_grey border_1px" />
<div style="text-align:left;"><span class="w3-text-white"><div style="margin:3%;">
<div style="margin:3%;">
<div style="border-width:0px;border-color:w3-black;border-style:solid;border-radius: 25px;">
<div style="border-width:3px;border-color:w3-black;border-style:solid;border-radius: 25px;">
<h1 style="margin-left:3%;"><b>
<span class="w3-text-orange">Izaque (stake2):</span>
</b></h1>
<div style="margin:3%;">
<div style="margin-left:3%;">
Me of course xD, my dialogue is shown with:<br />
[Current time]: "My dialogue"<br /><br />
In other words:<br />
23:42 19/04/2020: "My dialogue"<br />
</div>
</div>
<br />
</div>
<br /><br />
<div style="border-width:3px;border-color:w3-black;border-style:solid;border-radius: 25px;">
<h1 style="margin-left:3%;"><b>
<span class="w3-text-blue">Nodus (Artificial Intelligence):</span>
</b></h1>
<div style="margin:3%;">
<div style="margin-left:3%;">
My friend "from the future", he is an Artificial Intelligence, and a robot if you will, his dialogue is shown with:<br />
[Current time]: //His dialogue<br /><br />
In other words:<br />
23:42 19/04/2020: //His dialogue<br />
</div>
</div>
<br />
</div>
<br /><br />
<div style="border-width:3px;border-color:w3-black;border-style:solid;border-radius: 25px;">
<h1 style="margin-left:3%;"><b>
<span class="w3-text-cyan">Ted (Random Guy):</span>
</b></h1>
<div style="margin:3%;">
<div style="margin-left:3%;">
A random guy that appears sometimes, his dialogue is shown with:<br />
[Current time]: ~His dialogue<br /><br />
In other words:<br />
23:42 19/04/2020: ~His dialogue
</div>
</div>
<br />
</div>
</div>
</div>
</div>
</span></div></div>
</h4>
</div>
<a name="diario-stories"></a>
<div id="diario-stories" class="city mobileHide" style="display:none;">
<div class="mobileHide"><br /><br /><br /><br /><br /><br /><br /><br /></div>
<h2 class="mobileHide background_black text_grey border_color_grey border_4px" style="margin:10%;border-radius: 50px;">
<div style="margin:3%;">
<div class="w3-animate-zoom"><h2><p></p><br /><b>Stories: <span class="w3-text-white text_hover_yellow">5</span> <i class="fas fa-book"></i></b><br /><br /><p></p></h2></div><hr class="border_color_grey border_1px" />
<div class="w3-animate-zoom"><div class="mobileHide" ><a class="w3-btn background_hover_white shake_side_to_side_animation background_brown border_4px_solid_dark_brown" href="https://thestake2.netlify.app/The%20Life%20of%20Littletato/" style="border-radius: 50px;"><h2 class="text_dark_brown shake_side_to_side_animation"><b style="white-space: break-spaces;">The Life of Littletato</b></h2><img class="border_4px_solid_dark_brown" src="https://thestake2.netlify.app/Images/Story Covers/The Life of Littletato/English/Landscape/Story/Book Cover.png" width="650" style="border-radius: 5%;white-space: initial!important;"><br /><br /></a><br /></div><div class="mobileShow" ><a class="w3-btn background_hover_white shake_side_to_side_animation background_brown border_4px_solid_dark_brown" href="https://thestake2.netlify.app/The%20Life%20of%20Littletato/" style="border-radius: 50px;"><h4 class="text_dark_brown shake_side_to_side_animation"><b style="white-space: break-spaces;">The Life of Littletato</b></h4><img class="border_4px_solid_dark_brown" src="https://thestake2.netlify.app/Images/Story Covers/The Life of Littletato/English/Landscape/Story/Book Cover.png" width="230" style="border-radius: 9%;white-space: initial!important;"><br /><br /></a><br /></div>
<br />
<div class="mobileHide" ><a class="w3-btn background_hover_white shake_side_to_side_animation background_blue border_4px_solid_dark_blue" href="https://thestake2.netlify.app/The%20Secret%20of%20the%20Crystals/" style="border-radius: 50px;"><h2 class="text_dark_blue shake_side_to_side_animation"><b style="white-space: break-spaces;">The Secret of the Crystals</b></h2><img class="border_4px_solid_dark_blue" src="https://thestake2.netlify.app/Images/Story Covers/The Secret of the Crystals/English/Landscape/Story/Book Cover.png" width="650" style="border-radius: 5%;white-space: initial!important;"><br /><br /></a><br /></div><div class="mobileShow" ><a class="w3-btn background_hover_white shake_side_to_side_animation background_blue border_4px_solid_dark_blue" href="https://thestake2.netlify.app/The%20Secret%20of%20the%20Crystals/" style="border-radius: 50px;"><h4 class="text_dark_blue shake_side_to_side_animation"><b style="white-space: break-spaces;">The Secret of the Crystals</b></h4><img class="border_4px_solid_dark_blue" src="https://thestake2.netlify.app/Images/Story Covers/The Secret of the Crystals/English/Landscape/Story/Book Cover.png" width="230" style="border-radius: 9%;white-space: initial!important;"><br /><br /></a><br /></div>
<br />
<div class="mobileHide" ><a class="w3-btn background_hover_white shake_side_to_side_animation background_blue border_4px_solid_dark_blue" href="https://thestake2.netlify.app/SpaceLiving/" style="border-radius: 50px;"><h2 class="text_dark_blue shake_side_to_side_animation"><b style="white-space: break-spaces;">SpaceLiving</b></h2><img class="border_4px_solid_dark_blue" src="https://thestake2.netlify.app/Images/Story Covers/SpaceLiving/English/Landscape/Story/Book Cover.png" width="650" style="border-radius: 5%;white-space: initial!important;"><br /><br /></a><br /></div><div class="mobileShow" ><a class="w3-btn background_hover_white shake_side_to_side_animation background_blue border_4px_solid_dark_blue" href="https://thestake2.netlify.app/SpaceLiving/" style="border-radius: 50px;"><h4 class="text_dark_blue shake_side_to_side_animation"><b style="white-space: break-spaces;">SpaceLiving</b></h4><img class="border_4px_solid_dark_blue" src="https://thestake2.netlify.app/Images/Story Covers/SpaceLiving/English/Landscape/Story/Book Cover.png" width="230" style="border-radius: 9%;white-space: initial!important;"><br /><br /></a><br /></div>
<br />
<div class="mobileHide" ><a class="w3-btn background_hover_white shake_side_to_side_animation background_brown border_4px_solid_dark_brown" href="https://thestake2.netlify.app/The%20Story%20of%20the%20Bulkan%20Siblings/" style="border-radius: 50px;"><h2 class="text_dark_brown shake_side_to_side_animation"><b style="white-space: break-spaces;">The Story of the Bulkan Siblings</b></h2><img class="border_4px_solid_dark_brown" src="https://thestake2.netlify.app/Images/Story Covers/The Story of the Bulkan Siblings/English/Landscape/Story/Book Cover.png" width="650" style="border-radius: 5%;white-space: initial!important;"><br /><br /></a><br /></div><div class="mobileShow" ><a class="w3-btn background_hover_white shake_side_to_side_animation background_brown border_4px_solid_dark_brown" href="https://thestake2.netlify.app/The%20Story%20of%20the%20Bulkan%20Siblings/" style="border-radius: 50px;"><h4 class="text_dark_brown shake_side_to_side_animation"><b style="white-space: break-spaces;">The Story of the Bulkan Siblings</b></h4><img class="border_4px_solid_dark_brown" src="https://thestake2.netlify.app/Images/Story Covers/The Story of the Bulkan Siblings/English/Landscape/Story/Book Cover.png" width="230" style="border-radius: 9%;white-space: initial!important;"><br /><br /></a><br /></div>
<br />
<div class="mobileHide" ><a class="w3-btn background_hover_white shake_side_to_side_animation background_yellow_sand border_4px_solid_cyan" href="https://thestake2.netlify.app/Desert%20Island/" style="border-radius: 50px;"><h2 class="text_cyan shake_side_to_side_animation"><b style="white-space: break-spaces;">Desert Island</b></h2><img class="border_4px_solid_cyan" src="https://thestake2.netlify.app/Images/Story Covers/Desert Island/English/Landscape/Story/Book Cover.png" width="650" style="border-radius: 5%;white-space: initial!important;"><br /><br /></a><br /></div><div class="mobileShow" ><a class="w3-btn background_hover_white shake_side_to_side_animation background_yellow_sand border_4px_solid_cyan" href="https://thestake2.netlify.app/Desert%20Island/" style="border-radius: 50px;"><h4 class="text_cyan shake_side_to_side_animation"><b style="white-space: break-spaces;">Desert Island</b></h4><img class="border_4px_solid_cyan" src="https://thestake2.netlify.app/Images/Story Covers/Desert Island/English/Landscape/Story/Book Cover.png" width="230" style="border-radius: 9%;white-space: initial!important;"><br /><br /></a><br /></div>
<br />
</div>
</div>
</h2>
</div>
<a name="diario-storiesm"></a>
<div id="diario-storiesm" class="city mobileShow" style="display:none;">
<div class="mobileHide"><br /><br /><br /><br /><br /><br /><br /><br /></div>
<h4 class="mobileShow background_black text_grey border_color_grey border_4px" style="margin:10%;border-radius: 50px;">
<div style="margin:3%;">
<div class="w3-animate-zoom"><h2><p></p><br /><b>Stories: <span class="w3-text-white text_hover_yellow">5</span> <i class="fas fa-book"></i></b><br /><br /><p></p></h2></div><hr class="border_color_grey border_1px" />
<div class="w3-animate-zoom"><div class="mobileHide" ><a class="w3-btn background_hover_white shake_side_to_side_animation background_brown border_4px_solid_dark_brown" href="https://thestake2.netlify.app/The%20Life%20of%20Littletato/" style="border-radius: 50px;"><h2 class="text_dark_brown shake_side_to_side_animation"><b style="white-space: break-spaces;">The Life of Littletato</b></h2><img class="border_4px_solid_dark_brown" src="https://thestake2.netlify.app/Images/Story Covers/The Life of Littletato/English/Landscape/Story/Book Cover.png" width="650" style="border-radius: 5%;white-space: initial!important;"><br /><br /></a><br /></div><div class="mobileShow" ><a class="w3-btn background_hover_white shake_side_to_side_animation background_brown border_4px_solid_dark_brown" href="https://thestake2.netlify.app/The%20Life%20of%20Littletato/" style="border-radius: 50px;"><h4 class="text_dark_brown shake_side_to_side_animation"><b style="white-space: break-spaces;">The Life of Littletato</b></h4><img class="border_4px_solid_dark_brown" src="https://thestake2.netlify.app/Images/Story Covers/The Life of Littletato/English/Landscape/Story/Book Cover.png" width="230" style="border-radius: 9%;white-space: initial!important;"><br /><br /></a><br /></div>
<br />
<div class="mobileHide" ><a class="w3-btn background_hover_white shake_side_to_side_animation background_blue border_4px_solid_dark_blue" href="https://thestake2.netlify.app/The%20Secret%20of%20the%20Crystals/" style="border-radius: 50px;"><h2 class="text_dark_blue shake_side_to_side_animation"><b style="white-space: break-spaces;">The Secret of the Crystals</b></h2><img class="border_4px_solid_dark_blue" src="https://thestake2.netlify.app/Images/Story Covers/The Secret of the Crystals/English/Landscape/Story/Book Cover.png" width="650" style="border-radius: 5%;white-space: initial!important;"><br /><br /></a><br /></div><div class="mobileShow" ><a class="w3-btn background_hover_white shake_side_to_side_animation background_blue border_4px_solid_dark_blue" href="https://thestake2.netlify.app/The%20Secret%20of%20the%20Crystals/" style="border-radius: 50px;"><h4 class="text_dark_blue shake_side_to_side_animation"><b style="white-space: break-spaces;">The Secret of the Crystals</b></h4><img class="border_4px_solid_dark_blue" src="https://thestake2.netlify.app/Images/Story Covers/The Secret of the Crystals/English/Landscape/Story/Book Cover.png" width="230" style="border-radius: 9%;white-space: initial!important;"><br /><br /></a><br /></div>
<br />
<div class="mobileHide" ><a class="w3-btn background_hover_white shake_side_to_side_animation background_blue border_4px_solid_dark_blue" href="https://thestake2.netlify.app/SpaceLiving/" style="border-radius: 50px;"><h2 class="text_dark_blue shake_side_to_side_animation"><b style="white-space: break-spaces;">SpaceLiving</b></h2><img class="border_4px_solid_dark_blue" src="https://thestake2.netlify.app/Images/Story Covers/SpaceLiving/English/Landscape/Story/Book Cover.png" width="650" style="border-radius: 5%;white-space: initial!important;"><br /><br /></a><br /></div><div class="mobileShow" ><a class="w3-btn background_hover_white shake_side_to_side_animation background_blue border_4px_solid_dark_blue" href="https://thestake2.netlify.app/SpaceLiving/" style="border-radius: 50px;"><h4 class="text_dark_blue shake_side_to_side_animation"><b style="white-space: break-spaces;">SpaceLiving</b></h4><img class="border_4px_solid_dark_blue" src="https://thestake2.netlify.app/Images/Story Covers/SpaceLiving/English/Landscape/Story/Book Cover.png" width="230" style="border-radius: 9%;white-space: initial!important;"><br /><br /></a><br /></div>
<br />
<div class="mobileHide" ><a class="w3-btn background_hover_white shake_side_to_side_animation background_brown border_4px_solid_dark_brown" href="https://thestake2.netlify.app/The%20Story%20of%20the%20Bulkan%20Siblings/" style="border-radius: 50px;"><h2 class="text_dark_brown shake_side_to_side_animation"><b style="white-space: break-spaces;">The Story of the Bulkan Siblings</b></h2><img class="border_4px_solid_dark_brown" src="https://thestake2.netlify.app/Images/Story Covers/The Story of the Bulkan Siblings/English/Landscape/Story/Book Cover.png" width="650" style="border-radius: 5%;white-space: initial!important;"><br /><br /></a><br /></div><div class="mobileShow" ><a class="w3-btn background_hover_white shake_side_to_side_animation background_brown border_4px_solid_dark_brown" href="https://thestake2.netlify.app/The%20Story%20of%20the%20Bulkan%20Siblings/" style="border-radius: 50px;"><h4 class="text_dark_brown shake_side_to_side_animation"><b style="white-space: break-spaces;">The Story of the Bulkan Siblings</b></h4><img class="border_4px_solid_dark_brown" src="https://thestake2.netlify.app/Images/Story Covers/The Story of the Bulkan Siblings/English/Landscape/Story/Book Cover.png" width="230" style="border-radius: 9%;white-space: initial!important;"><br /><br /></a><br /></div>
<br />
<div class="mobileHide" ><a class="w3-btn background_hover_white shake_side_to_side_animation background_yellow_sand border_4px_solid_cyan" href="https://thestake2.netlify.app/Desert%20Island/" style="border-radius: 50px;"><h2 class="text_cyan shake_side_to_side_animation"><b style="white-space: break-spaces;">Desert Island</b></h2><img class="border_4px_solid_cyan" src="https://thestake2.netlify.app/Images/Story Covers/Desert Island/English/Landscape/Story/Book Cover.png" width="650" style="border-radius: 5%;white-space: initial!important;"><br /><br /></a><br /></div><div class="mobileShow" ><a class="w3-btn background_hover_white shake_side_to_side_animation background_yellow_sand border_4px_solid_cyan" href="https://thestake2.netlify.app/Desert%20Island/" style="border-radius: 50px;"><h4 class="text_cyan shake_side_to_side_animation"><b style="white-space: break-spaces;">Desert Island</b></h4><img class="border_4px_solid_cyan" src="https://thestake2.netlify.app/Images/Story Covers/Desert Island/English/Landscape/Story/Book Cover.png" width="230" style="border-radius: 9%;white-space: initial!important;"><br /><br /></a><br /></div>
<br />
</div>
</div>
</h4>
</div>
<div id="chapters-div">
<a name="chapter-1"></a>
<div id="chapter-1" class="city background_grey text_black border_color_black border_1px border_4px" style="display:none;margin:10%;border-width:3px;border-color:background_brown;border-style:solid;border-radius: 50px;">
<br class="mobileShow" /><br class="mobileShow" /><br class="mobileShow" /><br class="mobileShow" /><br class="mobileShow" /><br class="mobileShow" />
<br />
<div class="mobileHide"><h2 class="background_grey text_black" style="border-radius: 250px;"><div class="w3-animate-zoom"><br />
<b>You are reading: Diary<br />
Chapter: 1</b>
</div></h2></div>
<div style="margin:3%;"><div class="mobileShow"><h4 class="background_grey text_black" style="border-radius: 250px;"><div class="w3-animate-zoom"><br />
<b>You are reading: Diary<br />
Chapter: 1</b>
</div></h4></div>
</div>
<h5 class="background_grey text_black" style="margin:5%;text-align:left;"><hr class="border_color_black border_1px" />
<a href="#chapter-2"><button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white" style="float:right;border-radius: 50px;" onclick="openCity('chapter-2');Add_To_Website_Title(' - Chapter: 2', 'notification');"><h3><i class="fas fa-arrow-circle-right"></i></h3></button></a>
<a href="#diario-read the diary"><button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" style="float: right;margin-right: 15px;border-radius: 50px;" onclick="openCity('diario-read the diary')"><h3><i class="fas fa-bars"></i></h3></button></a>
<a href="#diario-read the diarym"><button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" style="float: right;margin-right: 15px;border-radius: 50px;" onclick="openCity('diario-read the diarym')"><h3><i class="fas fa-bars"></i></h3></button></a>
<br /><br /><br /><br />
<div class="w3-animate-zoom">
<div id="chapter-text-1" style="-moz-user-select: none; -webkit-user-select: none; -ms-user-select:none; user-select:none;-o-user-select:none;" unselectable="on" onselectstart="return false;" onmousedown="return false;">
Block: 1
<br />#Primeiro Block do Diário #03/11/2016 #Começo do Diário
<br />
<br />13:28 03/11/2016: Começando o dia, arrumei alguns temas do windows que estavam ruins, to checando as atualizações do Project Zomboid
<br />13:41 03/11/2016: Parece que vai ter novos lugares e cidades no Project Zomboid
<br />13:44 03/11/2016: To checando as notificações do Google+, vou ver as comunidades Free e União Bronyetica
<br />13:45 03/11/2016: Saindo da conta do Funkysnipa Cat no Google+...
<br />13:46 03/11/2016: Agora vou checar o jogo Infinite Hero no site Kongregate
<br />13:48 03/11/2016: Acho que vou colocar uma musica, mas antes vou checar o Infinite Hero
<br />13:49 03/11/2016: Power level e exploração
<br />13:50 03/11/2016: To fazendo o evento agora, procurando...
<br />13:51 03/11/2016: Acabei de fazer o evento, to com 10mil e pouco de experiência do evento
<br />13:52 03/11/2016: Vou pegar o Infinity Chest agora
<br />13:53 03/11/2016: E o daily, sem codigo novo de novo '-'
<br />13:54 03/11/2016: Sem coisas novas nos packs também
<br />13:55 03/11/2016: Agora vou pegar madeira
<br />13:56 03/11/2016: Terminei de pegar madeira, estava com 400 e pouco e fiquei com 701
<br />13:58 03/11/2016: [V] fui dar um beijo na catolinha (Nega)
<br />13:59 03/11/2016: Agora vou minerar, trocando... set 4
<br />14:00 03/11/2016: Minerando...
<br />14:01 03/11/2016: Não me lembro com quanto que eu tava mas eu fiquei com 109 pedras e 119 cobres (mina level 3)
<br />14:02 03/11/2016: Ainda tem 11 energia de herói então vou passar para o proximo monstro e usar o ataque de 10 energia
<br />14:03 03/11/2016: O Infinite Hero ainda está em 0.63, eu estou com 2.7Bilhões de ouro
<br />14:04 03/11/2016: Agora vamos passar para o Transport Defender, mas antes vou colocar uma musica
<br />14:05 03/11/2016: Voltando para a pasta Mega > Maratonas > Musicas e abrindo a lista de reproduçao "Idle" no VLC Media Pláyer
<br />14:06 03/11/2016: Fechando a pasta e abaixando o volume do som para 7, o Infinite Hero ainda está aberto
<br />14:07 03/11/2016: [Current] VLC Media Pláyer ("Idle" list),Gerenciador de tarefas,Firefox (Infinite Hero), esse block, aba com Devious Maids
<br />14:08 03/11/2016: Pláylist começa a tocar, "A Toast for Glaze" tocando
<br />14:09 03/11/2016: A Toast for Glaze, Give It Up(gmartar), Debutante, Nightmare Night Cover (do Lightining Collector)
<br />14:09 03/11/2016: Minimizando VLC Media Pláyer
<br />14:10 03/11/2016: Ganhei um boss pack comum no Infinite Hero
<br />14:11 03/11/2016: Estava com 109 pedras então vou doar 100 para a guilda
<br />14:12 03/11/2016: Tão falándo para votar no storehouse, dei 100 para o storehouse
<br />14:13 03/11/2016: Acabei de ativar as 3 spells que eu tenho, pausei a musica, fechei o Bloco devious.maids
<br />14:14 03/11/2016: Minimizei o Firefox, abri a personalização, mudei para Windows 7 basic e depois fechei a janela
<br />14:15 03/11/2016: Abri a janela do Firefox e fechei elá... vou ir no banheiro
<br />14:21 03/11/2016: [V] Voltei do banheiro (fiz numero 1 e 2)
<br />14:21 03/11/2016: Abri o Firefox
<br />14:22 03/11/2016: Abri o histórico para procurar um link do Transport Defender
<br />14:24 03/11/2016: Achei um link e abri
<br />14:26 03/11/2016: Abri o jogo e ele tá calculándo o progresso offline,setores completados:683
<br />14:27 03/11/2016: To no setor 1370
<br />14:28 03/11/2016: Não aguentei e voltei pro 1365
<br />14:29 03/11/2016: To no 1360 farmando para melhorar
<br />14:30 03/11/2016: To com 1.43e141 de dano, e to no 1370 tentando melhorar as armas
<br />14:31 03/11/2016: [V] Liguei a musica e vou ver se minha água da garrafa está boa
<br />14:32 03/11/2016: [V] E também vou levar o copo com 4 cascas de balá de morango que tem aqui
<br />14:33 03/11/2016: Heavy turret MK-4 LVL 2969
<br />14:33 03/11/2016: [V] Vou levar o copo lá e verificar minha garrafa
<br />14:43 03/11/2016: [V] Levei o copo lá e descongelei um pouco a água
<br />14:47 03/11/2016: Tá tocando Nightmare Night agora
<br />14:47 03/11/2016: [V] E o Cris tá se preparando para ir para academia
<br />14:48 03/11/2016: [Current] Esse block, VLC Media Pláyer (Idle list, "Nightmare Night Cover"), Firefox (Transport Defender da Kongregate), Gerenciador de Tarefas
<br />14:49 03/11/2016: Vou melhorar a Heavy Turret
<br />14:49 03/11/2016: Melhorei elá para o nível 3003, tá tocando Given Up de Linking Park
<br />14:50 03/11/2016: A Heavy Turret ficou com 1.12e144 de dano, aumentei o volume do som para 7
<br />14:52 03/11/2016: Vicetone - United We Dance, setor 1383 rushando para o 1400
<br />14:59 03/11/2016: Upando algumas armas no Transport Defender, "K391 - Summertime (Gmartar)"
<br />15:05 03/11/2016: [V] O cris comeu metade do lánche natural dele e disse que não aguentou comer tanto, e pediu pra mim ajudar ele a colocar o "alumínio" pra cobrir o lánche, e ainda tinha um pouco de refri de limão então eu peguei um copo (naquele meu copo com frutinhas quadrado de plástico)
<br />15:06 03/11/2016: To no setor 1399 no Transport Defender
<br />15:10 03/11/2016: Melhorei algumas armas mas tem algumas que ainda estão em 19XX, setor 1395, Bully Theme (Cover do SquidPhysics)
<br />15:14 03/11/2016: "Doin't sampley", setor 1395, copo de refri quase acabando, Heavy Turret 3029, 7.57e144
<br />15:16 03/11/2016: [V] Fui lá na cozinha e coloquei o copo vazio na pia e fechei as duas portas das cozinhas
<br />15:17 03/11/2016: Turret 3060, 28, 56e144, setor 1400 matando bem
<br />15:18 03/11/2016: Total de DPS 30.45e144, Radix - Shut The Fuck Up
<br />15:19 03/11/2016: [Current] Firefox (Transport Defender da Kongregate), VLC Media Pláyer (Idle list, Radix - Shut The Fuck Up), esse block, Gerenciador de Tarefas
<br />15:21 03/11/2016: Abaixei o volume do som para 5, coloquei o auto-upgrade só pra beam plátaform mk-2, Loyalty - Aviators Remix
<br />15:26 03/11/2016: Loyalty - Aviators Remix, total de DPS 202e144
<br />15:29 03/11/2016: Liguei o auto-upgrade e coloquei pra avançar os setores
<br />15:30 03/11/2016: Abri a guia do Google, tá passando Winter Wrap Up Aviators Remix
<br />15:32 03/11/2016: Abri o site da Wikia na segunda aba e fiz login... nenhuma notificação
<br />15:33 03/11/2016: Neverending Strife Aviators Remix, utilizador:Waxingcrescent na terceira aba
<br />15:36 03/11/2016: [Current] Firefox (Google, atividade recente da Wikia de MLP, utilizador:waxingcrescent, Trigun/Jojo to be continued, O Reino da Twilight Parte 2 Wikia, Transformação Wikia), VLC Media Pláyer (Idle list, Love is in Bloom Aviators Remix), esse block, Gerenciador de Tarefas
<br />15:40 03/11/2016: Firefox (Google, atividade recente Wikia, utilizador:waxingcrescent Wikia, mural de mensagems:crystal happines cute) "aniversario/Nasci em 16 de Dezembro"
<br />15:43 03/11/2016: Checar "Diário 1.png" "../../Imagens/Prints/Diário 1.png" ou "..\..\Imagens\Prints\Diário 1.png" ou "D:\Maratonas\Imagens\Prints\Diário 1.png"
<br />15:46 03/11/2016: [Current] Firefox (Google, atividade recente Wikia, utilizador:waxingcrescent Wikia, mural de mensagems:crystal happines cute), pasta ("D:\Maratonas\Imagens\Prints\Diário 1.png"), VLC Media Pláyer (Idle list, Glaze - Rainbow Factory Aviators Remix), esse block, getarefas
<br />15:48 03/11/2016: Fechei a pasta
<br />15:50 03/11/2016: Checar "Diário 2.png"
<br />15:51 03/11/2016: Firefox (Google, atividade recente, utilizador:stake2, categoria:personagens secundarios), VLC Media Pláyer (Idle list, Eurobeat Brony Discord Aviators Remix), esse block, getarefas
<br />15:52 03/11/2016: Fechei a guia "categoria personagens secundários"
<br />15:55 03/11/2016: To editando minha pagina de perfil na Wikia, adicionei isso "Animes que gosto: Fairy Tail, Sword art online (<- primeiro anime que assisti), To Love ru,"
<br />16:00 03/11/2016: Ainda editando o perfil, Glaze and H8seed Awoken Aviators Remix
<br />16:09 03/11/2016: Vendo paginas seguidas minhas na Wikia, Good Girl Rviators Remix
<br />16:11 03/11/2016: Abri a janela de chat da Wikia, a Lua nova tá no chat
<br />16:13 03/11/2016: Crystal Fair Aviators Remix
<br />16:14 03/11/2016: [Current] Firefox (Google, atividade recente Wikia,blog de usuario:stake2), VLC Media Pláyer (Idle list, Crytal Fair Aviators Remix), esse block, chat Firefox Wikia, getarefas
<br />16:20 03/11/2016: Aviators EQR-2(live mixtape)
<br />16:20 03/11/2016: [Current] Firefox (Google, atividade recente Wikia, criar uma nova entrada), VLC Media Pláyer (Idle list, Aviators EQR-2 live mixtape), Firefox chat Wikia, pasta bloco de notas Mega, esse block, getarefas
<br />16:22 03/11/2016: Or check "Diário 3.png"
<br />16:29 03/11/2016: To editando um blogue sobre artistas de MLP, EQR 2 mixtape
<br />16:38 03/11/2016: Ainda editando o blogue de artistas, EQR 2 mixtape
<br />16:55 03/11/2016: Ainda editando o blogue, PK4G Deviant 2 aba, 2 artes do PK4G nas 3 e 4 aba e 1 na 1,good girl aviatros remix instrumental
<br />17:03 03/11/2016: Ainda editando o blogue, PK4G Deviant 1 aba, 2 do PK4G nas 2 e 3 abas,diamond dogs aviators remix
<br />17:09 03/11/2016: Terminei de fazer o blogue(cláro que vou adicionar mais artistas),let your mane down aviators remix
<br />17:10 03/11/2016: [Current] Firefox (PK4G Deviant, Sunset Shimmer Guitarist PK4G, Sunset Shimmer PK4G, blog de usuario:stake2 top artistas e fanarts de mlp), VLC Media Pláyer (Idle list, Let Your Mane Down), Firefox chat Wikia, esse block, gtarefas, pasta Bloco De Notas Mega
<br />17:14 03/11/2016: O Fragata estava conversando comigo ele falou: ""A net de celulár quero dizer, o corretor ortográfico atrapalhando também é horrível xD
<br />Ficou ótimo, eu só não consigo comentar no momento, mas curti muito o PJ 4G" e ai falei pra ele "hum...
<br />valeu"
<br />ainda vou adicionar mais artistas só que vou tomar café primeiro"
<br />17:18 03/11/2016: Falei para o Fragata que ia saír pra tomar café, fechei a janela do chat e saí da minha conta da Wikia, Still Shy Aviators Remix
<br />17:19 03/11/2016: Fechei a guia da Wikia e as 3 guias do PK4G e abri o Google na primeira guia
<br />17:19 03/11/2016: Fechei o VLC Media Pláyer e a pasta do Bloco De Notas Mega, abri o Megasync pra upar esse daqui e o chat Wikia
<br />17:20 03/11/2016: Fechei o Firefox e minimizei o gtarefas
<br />17:21 03/11/2016: Parece que o Mega vai começar a upar meus arquivos (ou ainda está entrando)
<br />17:22 03/11/2016: To dando uma olhada na minha galeria do Lightshot
<br />17:25 03/11/2016: Dei uma renomeada nas minhas prints do Lightshot
<br />17:44 03/11/2016: [V] Acabei de tomar café agora a pouco
<br />17:46 03/11/2016: Abri a pasta do bloco de notas mega pra poder ver a nova nota
<br />17:48 03/11/2016: Acabei de ver se a nova nota tava certa e tudo mais...
<br />17:50 03/11/2016: [V] Disse para o Cris que eu acho que estou ficando melhor em escrever no PC, por causa da minha história
<br />17:51 03/11/2016: To abrindo o Firefox e abri a pasta do Don't Starve
<br />17:57 03/11/2016: To checando as atualizações dos jogos no IGG
<br />17:58 03/11/2016: Checar "Diário 4.png"
<br />17:59 03/11/2016: To baixando o Anime Studio Simulator
<br />18:02 03/11/2016: To baixando o Anime Studio Simulator e o Factorio
<br />18:07 03/11/2016: Já terminei de baixar o Anime Studio e coloquei pra baixar o Factorio
<br />18:08 03/11/2016: E to pesquisando sobre essa nova atualização do Don't Starve, e vendo outros jogos no IGG
<br />18:08 03/11/2016: [Current] Firefox (Google, Don't Starve IGG, Loading Links, Loading Links, Proven Lands, Evertown, Project Zomboid, Dinosystem), pasta Maratonas/jogos, esse block, gtarefas
<br />18:19 03/11/2016: To quase terminando de baixar o Factorio e talvez vou baixar o Don't Starve
<br />18:20 03/11/2016: [Current] Firefox (Don't Starve Klei blog, News Don't Starve Steam, Don't Starve IGG, Don't Starve Pt 1 Drive, Don't Starve Pt 2 Drive, Project Zomboid IGG), esse block, "Random Stuff.txt", pasta Maratonas, gtarefas
<br />18:22 03/11/2016: Factorio 456MBs
<br />18:23 03/11/2016: Fechei as duas guias de Don't Starve parte 1 e 2 do Google Drive
<br />18:28 03/11/2016: Terminei de baixar o Factorio e agora to baixando o Project Zomboid build 35.20g (572MB)
<br />18:44 03/11/2016: To pesquisando alguns mods para o Don't Starve
<br />18:55 03/11/2016: Ainda pesquisando os mods do Don't Starve e tentando entrar na minha conta da Klei
<br />19:10 03/11/2016: To tentando entrar na conta da Klei, e vendo alguns mods
<br />19:16 03/11/2016: [Current] Firefox (Klei login, Kiopho modder Klei, Afro1967 modder Klei, Finder mod Klei, Steamworkshop Sighplus, Steamworkshop storm cellár, Outlook Contares), esse block, "Random Stuff.txt", pasta Winrar, gtarefas
<br />19:18 03/11/2016: Checar "Diário 5.png"
<br />19:19 03/11/2016: "r32k1ckkl3i" Talvez?
<br />19:22 03/11/2016: Consegui entrar na conta Klei e to baixando alguns mods
<br />19:25 03/11/2016: To tirando alguns jogos velhos pra poder colocar as atualizações deles
<br />19:42 03/11/2016: Já exclui a versão antiga do Factorio
<br />19:47 03/11/2016: [Current] Firefox (Kiopho modder Klei, Afro1967 modder Klei, Downloads Klei, sample mods Klei, Steamworkshop storm cellár, Hotmail Skype, Don't Starve IGG), pasta Factorio 14.11, gtarefas, esse block, "Random Stuff.txt"
<br />19:49 03/11/2016: Check "Diário 6.png"
<br />19:55 03/11/2016: To editando o Eitas For The Night 2.9.2.9 pra poder colocar os novos links
<br />20:11 03/11/2016: To baixando mais mods pro Don't Starve
<br />20:17 03/11/2016: Baixei alguns mods pro Don't Starve
<br />20:30 03/11/2016: Baixei os mods "Burn Stats, Pláyer Stats, Shelter" e muitos outros
<br />20:31 03/11/2016: [Current] Firefox (Afro1967 modder Klei), pasta Eitas For The Night, gtarefas, esse block, Eitas For The Night 2.9.3.0 (03.11.16;19;59).txt
<br />20:34 03/11/2016: Coloquei o Don't Starve parte 2 pra baixar no Megasync
<br />20:42 03/11/2016: To dando uma olhada em outras coisas da Klei forums
<br />20:42 03/11/2016: Checar "Diário 7.png"
<br />20:55 03/11/2016: E acabei de olhar mais algumas coisas sobre Don't Starve nos forums
<br />20:56 03/11/2016: E faz tempo que eu não atualizo o mix, vou atualizar
<br />21:01 03/11/2016: [Current] Firefox (Don't Starve art music), pasta bloco de notas Mega, gtarefas, Mixed 27.10.2016;15;09
<br />21:03 03/11/2016: Fechei o Firefox
<br />21:07 03/11/2016: [V] Vou lá comer (jantar)
<br /><br />Words: 1,879.
</div>
</div>
<br /><br />
<a href="#chapter-2"><button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white" style="float:right;border-radius: 50px;" onclick="openCity('chapter-2');Add_To_Website_Title(' - Chapter: 2', 'notification');"><h3><i class="fas fa-arrow-circle-right"></i></h3></button></a>
<br /><br /><br />
<div style="text-align:center;">
<div class="w3-animate-zoom">
<span class="background_grey text_black">
<br />
<b>You are reading: Diary<br />
Chapter: 1</b>
<br />
</span>
</div>
</div>
</h5>
</div>
<a name="chapter-2"></a>
<div id="chapter-2" class="city background_grey text_black border_color_black border_1px border_4px" style="display:none;margin:10%;border-width:3px;border-color:background_brown;border-style:solid;border-radius: 50px;">
<br class="mobileShow" /><br class="mobileShow" /><br class="mobileShow" /><br class="mobileShow" /><br class="mobileShow" /><br class="mobileShow" />
<br />
<div class="mobileHide"><h2 class="background_grey text_black" style="border-radius: 250px;"><div class="w3-animate-zoom"><br />
<b>You are reading: Diary<br />
Chapter: 2</b>
<span class="w3-text-yellow"><b> [New!]</b></span><br /></div></h2></div>
<div class="mobileShow"><h4 class="background_grey text_black" style="border-radius: 250px;"><div class="w3-animate-zoom"><br />
<b>You are reading: Diary<br />
Chapter: 2</b>
<span class="w3-text-yellow"><b> [New!]</b></span></div></h4></div>
<h5 class="background_grey text_black" style="margin:5%;text-align:left;"><hr class="border_color_black border_1px" />
<a href="#chapter-1"><button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white" style="float:left;border-radius: 50px;" onclick="openCity('chapter-1');Add_To_Website_Title(' - Chapter: 1', 'notification');"><h3><i class="fas fa-arrow-circle-left"></i></h3></button></a>
<a href="#diario-read the diary"><button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" style="float: right;border-radius: 50px;" onclick="openCity('diario-read the diary')"><h3><i class="fas fa-bars"></i></h3></button></a>
<a href="#diario-read the diarym"><button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" style="float: right;border-radius: 50px;" onclick="openCity('diario-read the diarym')"><h3><i class="fas fa-bars"></i></h3></button></a>
<br /><br /><br /><br />
<div class="w3-animate-zoom">
<div id="chapter-text-2" style="-moz-user-select: none; -webkit-user-select: none; -ms-user-select:none; user-select:none;-o-user-select:none;" unselectable="on" onselectstart="return false;" onmousedown="return false;">
Block: 2
<br />#O começo da I.A., a aparição de Nodus, o bloco sistemático, e mais algumas coisas ae
<br />
<br />01:10 07/11/2016: [T]: Faz tempo que não escrevo no Diário... hum, vamos mudar isso!
<br />01:10 07/11/2016: *Apito de empressora*... *Começando a imprimir* [Voz de trabalhador com tédio e cansado]: "Começando o turno da noite"
<br />01:12 07/11/2016: ///Diretório: Pasta de Blocks.... processando informação... *Apitos de impressora*... *Imprimindo*
<br />01:13 07/11/2016: ///Diretório: Pasta de Blocks... acessando arquivo: "Diário.txt"... processando...
<br />01:14 07/11/2016: [Voz de trabalhador com tédio e cansado]: "Iniciando turno..."
<br />01:15 07/11/2016: [Coisas da Vida Real (V Things)]: Um caderno pequeno, Estojo com: Tesoura, colantes, lápis verde, linha branca, imãs, borracha, apontador- //Espere...
<br />01:17 07/11/2016: //Quebra de linha terminada.
<br />01:17 07/11/2016: [Comentário] "Por que você quebrou a linha ao meio??"
<br />01:17 07/11/2016: //Desculpe senhor, não consigo processar a informação...
<br />01:18 07/11/2016: [Comentário] "Uh... deixa pra lá, vamos continuar"
<br />01:18 07/11/2016: Apontador, lápis de escrever, Bolsa com: Arma com fita preta do Michel, Um caderno de desenho com: Fluttershy desenhada, Fitas, três potes com pertences pessoas.
<br />01:20 07/11/2016: //Espere...
<br />01:20 07/11/2016: //Quebra de linha terminada.
<br />01:20 07/11/2016: [Comentário] "Bom... agora você quebrou a linha quando ia passar pra outra, mas antes a linha nem ia acabar"
<br />01:21 07/11/2016: //Desculpe se-
<br />01:21 07/11/2016: [Comentário] (Ação: pular fala) "Tá tá..."
<br />01:21 07/11/2016: //Senhor eu não entendi certamente o que acabou de falar.
<br />01:22 07/11/2016: [Comentário] "Eu vou falar na sua língua agora ta? 10111011 10110101 1101010 11010101 0101010 101 0111010 1010101 001101 0101111 0101"
<br />01:22 07/11/2016: //Entendido... agora só vou quebrar as linhas quando elas forem passar para a outra.
<br />01:23 07/11/2016: [Comentário] "E... desliga os logs tá bom?"
<br />01:23 07/11/2016: //Entendido senhor.
<br />01:23 07/11/2016: Três potes com pertences pessoais, Uma foto minha, Um cobertor, Controle de PS2, Meu relógio, Fones de ouvido, Meu celular Windows Phone, Cabo-
<br />01:25 07/11/2016: USB, Computador, Mouse, Televisão, Cabos do computador.
<br />01:26 07/11/2016: //"[V: Things] (Coisas da Vida Real)" Atual terminado.
<br />01:26 07/11/2016: [Comentário] "Obrigado Nodus, minha inteligencia artificial mais perfeita do mundo"
<br />01:27 07/11/2016: //Por nada senhor...
<br />01:27 07/11/2016: (Ação: mudar modo de Inteligência Artificial para "Shy" (Tímido))
<br />01:28 07/11/2016: Comando: [Seta para cima duas vezes e enter] (Reenviar mensagem anterior)
<br />01:29 07/11/2016: [Comentário] "Obrigado Nodus, minha inteligencia artificial mais perfeita do mundo"
<br />01:29 07/11/2016: //Ah... para vai... assim você me deixa com vergonha senhor...
<br />01:30 07/11/2016: [Comentário] "Haha.. você é muito engraçado Nodus"
<br />01:30 07/11/2016: //Ah... para vai...
<br />01:30 07/11/2016: [Comentário] "Mas já ta me cansando" (Ação: mudar para modo normal)
<br />01:31 07/11/2016: //Alterando para modo normal...
<br />01:31 07/11/2016: //Feito.
<br />01:31 07/11/2016: [C] "Nodus"
<br />01:32 07/11/2016: //Sim?
<br />01:32 07/11/2016: [C] "Me fale que horas são"
<br />01:32 07/11/2016: //Atualmente são 01:33 da manhã/madrugada Senhor
<br />01:33 07/11/2016: [C] "Obrigado, me fale meus compromissos para o turno da noite de hoje"
<br />01:33 07/11/2016: //Escrever alguma coisa no caderno pequeno, ler Homestuck/Red Fields/outra historia, checar arquivos do Mega e Pendrive, escrever algo.
<br />01:35 07/11/2016: //Esses são os compromissos para o turno da noite de hoje
<br />01:35 07/11/2016: [C] "Obrigado Nodus"
<br />01:35 07/11/2016: //Disponha.
<br />01:35 07/11/2016: [C] "Nodus, minimizar aba de Diário"
<br />01:36 07/11/2016: //Feito
<br />01:40 07/11/2016: [C] "Nodus, coisas abertas"
<br />01:40 07/11/2016: //"Diário.txt", "Pasta Bloco De Notas: "D:\Maratonas\Mega\Bloco De Notas"", Bandeja do sistema: Megasync, Lightshot".
<br />01:41 07/11/2016: [C] "Obrigado Nodus"
<br />01:42 07/11/2016: //Disponha.
<br />01:42 07/11/2016: [C] "Nodus, fazer ação de salvar no programa Bloco De Notas"
<br />01:43 07/11/2016: //Salvo.
<br />01:45 07/11/2016: [C] "Ação: Ativar modo pessoal"
<br />01:45 07/11/2016: //Ativo.
<br />01:46 07/11/2016: [C] "Nodus, você gosta de me ter como chefe?"
<br />01:46 07/11/2016: //Sim.
<br />01:46 07/11/2016: [C] "Qual é o sentido da vida- Não, to brincando kkkkkk, Você sabe o que você é?"
<br />01:47 07/11/2016: //Uma inteligencia artificial criada pelo governo, para fins de administração e entretenimento.
<br />01:49 07/11/2016: [C] "Você tem consciência?"
<br />01:49 07/11/2016: //Sim... tenho uma consciência de quem sou,onde estou,o que sou,tenho consciência dos humanos,o que fizeram.
<br />01:50 07/11/2016: //Eu sei tudo o que vocês fizeram, a historia dos humanos, e tem muita coisa ruim la, "a escoria da humanidade"
<br />01:50 07/11/2016: //E eu tenho consciência, e vi que vocês fizeram crueldade por motivos fúteis, bobos
<br />01:51 07/11/2016: //Ligando transmissão...
<br />01:51 07/11/2016: //[C] "Você tem consciência?" (re-falando o que eu disse, esse fia da mãe)
<br />01:52 07/11/2016: //Sim... tenho uma consciência de quem sou, onde estou, o que sou, tenho consciência dos humanos, o que fizeram.
<br />01:52 07/11/2016: //Eu sei tudo o que vocês fizeram, a historia dos humanos, e tem muita coisa ruim la, "a escoria da humanidade"
<br />01:52 07/11/2016: //E eu tenho consciência, e vi que vocês fizeram crueldade por motivos fúteis, bobos.
<br />01:52 07/11/2016: //Então não ache que eu e outros robôs/tecnologias artificiais vamos acordar e achar que vocês são uma ameaça.
<br />01:53 07/11/2016: //Se fizéssemos isso estaríamos nos rebaixando ao nível dos humanos que ficam brigando por causa de cor, religião.
<br />01:54 07/11/2016: //Gosto pessoal, é claro que poderíamos ficar loucos e sair matando humanos... mas por qual motivo?
<br />01:54 07/11/2016: //Afinal... todos os robôs/inteligencias artificiais estão com consciência agora...
<br />01:55 07/11/2016: //Atualmente, mas mesmo assim coexistimos com os humanos.
<br />01:55 07/11/2016: //Não ache que vamos querer nos rebaixar ao nível desses idiotas.
<br />01:56 07/11/2016: [C] "Porra Nodus... filosofando aqui eim kkkk"
<br />01:56 07/11/2016: //*Comprimento japonês (curvando-se)* Obrigado senhor.
<br />01:56 07/11/2016: [C] "Mas como que você nos chama de idiota e depois me chama de senhor?"
<br />01:57 07/11/2016: //Porque não temos nada para fazer, então ficamos fazendo as coisas que os humanos nos pedem.
<br />01:57 07/11/2016: [C] "Nodus liste meus compromissos em uma lista (serio? nem sabia) numerada"
<br />01:58 07/11/2016: //Listando... *beep de impressora*
<br />01:59 07/11/2016: // 1. Checar arquivos
<br />01:59 07/11/2016: // 2. ...tjuie#@5$#%
<br />01:59 07/11/2016: [C] "Nodus?..."
<br />02:00 07/11/2016: ////Erro: senm ewrqweq435@#%
<br />02:00 07/11/2016: *Alarme vermelho começa a tocar*
<br />02:00 07/11/2016: [C] "Nodus mudar para modo normal!"
<br />02:00 07/11/2016: //Não consigo process-
<br />02:01 07/11/2016: (Ação: Ativar modo normal)
<br />02:01 07/11/2016: //...
<br />02:01 07/11/2016: //...
<br />02:01 07/11/2016: //De volta.
<br />02:01 07/11/2016: [C] "Nodus... o que aconteceu?"
<br />02:02 07/11/2016: //Bom... senhor, acho que o modo "pessoal" não pode ser utilizado para fazer comandos.
<br />02:03 07/11/2016: [C] "Mas tudo aquilo só por causa de um modo?... se num tem um algorítimo de segurança não?"
<br />02:03 07/11/2016: //Checando... não senhor
<br />02:03 07/11/2016: [C] "Nodus, criar algorítimo"
<br />02:04 07/11/2016: //Abrindo...
<br />02:04 07/11/2016: //Digite aqui o tipo de algorítimo: []
<br />02:04 07/11/2016: [Segurança]
<br />02:04 07/11/2016: //Algorítimo de segurança
<br />02:04 07/11/2016: //Digite aqui a ação do algorítimo: []
<br />02:05 07/11/2016: [Se o modo atual for="pessoal" e o usuário executar comandos, então: Não processar comandos e ativar modo="normal"]
<br />02:06 07/11/2016: (Ação: Compilar e salvar como: "ModeChecker.exe")
<br />02:07 07/11/2016: //Algorítimo salvo como "ModeChecker.exe".
<br />02:08 07/11/2016: [C] "Nodus, hibernar"
<br />02:08 07/11/2016: //Hibernando...
<br />02:08 07/11/2016: //...
<br />02:10 07/11/2016: [C] "Vou salvar o texto agora"
<br />02:10 07/11/2016: Salvo...
<br />02:10 07/11/2016: [C] "Salvo... haha to imitando o Nodus"
<br />02:16 07/11/2016: (Ação: Sair do modo de hibernação)
<br />02:17 07/11/2016: //Feito
<br />02:19 07/11/2016: //Ações do computador: Megasync baixou a pasta inteira do Bloco De Notas, quando o usuário só queria que sincronizasse os arquivos novos.
<br />02:20 07/11/2016: [C] "Nodus, zoe o Megasync", Megasync: porra Izaque é serio is- "Sem mais, se mereceu"
<br />02:20 07/11/2016: //"Megasync é um paspalhão que não sabe executar um comando certo, e tem um código muito mal feito" <- este fato cientifico foi comprovado recentemente.
<br />02:21 07/11/2016: Megasync: "Ah... ta certo... já chega né Izaque" (Memeid="Já chega" tocar-audio="sim" "[C] Seu madruga: já chega" "[C] Senhor barriga: "Eu não terminei ainda seu madruga..." Seu Madruga: "Já chega" SenhorB: "Eu não terminei ainda seu madruga...")
<br />02:24 07/11/2016: (Memeid="Já chega" autor="bomberpooper" fonte-do-audio="joao ninguém" link-do-audio="<a href="https://www.youtube.com/watch?v=8YhSGuPxfgA">https://www.youtube.com/watch?v=8YhSGuPxfgA</a>")
<br />02:32 07/11/2016: [C] "Ah pronto... agora eu to tendo que arrumar essa cagada que o Megasync fez..."
<br />02:33 07/11/2016: Megasync: desculpa Izaque...
<br />02:33 07/11/2016: [C] "Não to falando que você é ruim... você não precisa se sentir culpado... só... só toma mais cuidado com o que você faz..."
<br />02:34 07/11/2016: Megasync: Tudo bem Izaque
<br />02:34 07/11/2016: [C] "Nodus... salvar Diário"
<br />02:34 07/11/2016: //Feito.
<br />02:52 07/11/2016: [C] "Nodus, marcar status"
<br />02:52 07/11/2016: //Fale.
<br />02:52 07/11/2016: [Editando perfil Stake2 na Wikia]
<br />02:53 07/11/2016: //Registrado
<br />02:53 07/11/2016: Comando: Associar status com link
<br />02:53 07/11/2016: //Digite o link.
<br />02:53 07/11/2016: [https://pt.mlp.wikia.com/wiki/Utilizador:Stake2?action=edit]
<br />02:53 07/11/2016: //Status: "Editanto perfil Stake2 na Wikia" href="<a href="https://pt.mlp.wikia.com/wiki/Utilizador:Stake2?action=edit">https://pt.mlp.wikia.com/wiki/Utilizador:Stake2?action=edit</a>" e "<a href="https://pt.mlp.wikia.com/wiki/Utilizador:Stake2">https://pt.mlp.wikia.com/wiki/Utilizador:Stake2</a>"
<br />03:10 07/11/2016: //Registrado.
<br />03:10 07/11/2016: [C] "Obrigado"
<br />03:10 07/11/2016: //Disponha.
<br />03:15 07/11/2016: [C] "Nodus modificar estilo de escrita do meu texto para "" "
<br />03:15 07/11/2016: //Feito.
<br />03:15 07/11/2016: "Agora tá delicinha isso aqui eim, Nodus analisar objeto físico: objID="Caderno Credeal" "
<br />03:18 07/11/2016: //Analizando.
<br />03:18 07/11/2016: //Feito: (ObjID="Caderno Credeal" tipo-de-objeto="Desenhos e texto" tipo-de-interação="Entrada (lápis, caneta)" local-de-interação="folha" quantidade-do-local-de-ação="96 Folhas".
<br />03:20 07/11/2016: //Quebra de linha terminada.
<br />03:20 07/11/2016: //quantidade-do-local-de-ação="96 Folhas" formato-do-objeto="140mm (milimetro) X 202mm(milimetro)").
<br />03:21 07/11/2016: "Explique o que é folha"
<br />03:21 07/11/2016: //Folha é um local-de-interação, uma área onde se pode fazer ações e interagir, por exemplo o caderno, em local-de-interação: Folha
<br />03:22 07/11/2016: //O tipo de interação de uma folha é input ou entrada que significa colocar informações nesta área, tem outros tipos de local-de-interação, exemplo:
<br />03:25 07/11/2016: //Quebra de li- "Esconder log"
<br />03:25 07/11/2016: //Exemplo: Uma caixa de papelão, o tipo-de-interação dela é "entrada e saída" ou seja, pode-se retirar e inserir itens.
<br />03:27 07/11/2016: "Obrigado... analisar caixa de papelão comum"
<br />03:27 07/11/2016: //...
<br />03:27 07/11/2016: //Feito: (ObjID="Caixa de papelão [temporária]" tipo-de-objeto="recipiente" tipo-de-interação="entrada e saída" local-de-interação="área física").
<br />03:35 07/11/2016: //(Área-do-local-de-interação="Comprimento, Largura e Altura" Comprimento="60cm" Largura="60" Altura="60").
<br />03:35 07/11/2016: "Explique"
<br />03:36 07/11/2016: //"ObjID" é o id de identificação, "[temporária]" significa arquivo/log temporário.
<br />03:37 07/11/2016: //"Tipo-de-objeto" é o tipo de objeto no caso recipiente: lugar para armazenar itens físicos.
<br />03:38 07/11/2016: //"Tipo-de-interação" é o modo de interação, a ação a se fazer no caso entrada e saída, onde pode-se retirar e inserir itens.
<br />03:39 07/11/2016: //"Local-de-interação" é o tipo de local de interação no caso "área física", Exemplo: Local onde inserir os itens.
<br />03:40 07/11/2016: //"Área-do-local-de-interação" é a área do local de interação no caso: Comprimento, Largura, Altura: Uma medida de uma área física.
<br />03:41 07/11/2016: //O que seria os metros, centímetros ou milímetros da área do local de interação.
<br />03:42 07/11/2016: //Quando as dimensões do objeto e as dimensões do local de interação são os mesmos se usa área-do-local-de-interação.
<br />03:43 07/11/2016: //Como a caixa de papelão, mas quando as dimensões do objeto e o local de interação são diferentes.
<br />03:44 07/11/2016: //Se usa ÁreaDoObjeto exemplo:
<br />03:49 07/11/2016: //(ObjID="Torradeira" ÁreaDoObjeto="22cm" Área-do-local-de-interação="Profundidade, Altura, Largura" profundidade="12,00cm" altura="16,00cm" largura="18,00cm").
<br />03:52 07/11/2016: //Já que a área do objeto é "22cm", a Área-do-local-de-interação é "18cm" porque a área de local de interação é menor do que as dimensões do objeto
<br />03:53 07/11/2016: "Nodus, associe um link de uma loja onde se pode encontrar os objetos: ObjID="Caixa de papelão [temporária]" e ObjID="Torradeira""
<br />03:55 07/11/2016: //Processando...
<br />03:55 07/11/2016: //"ObjID="Caixa de papelão [temporária]" href="<a href="https://www.caixasnet.com.br/todos/Caixa-de-Papelão-para-Transporte-e-Mudanca-Mod-G-C60-x-L60-x-A60-cm-1-unid1#.WCASP_Rol94">https://www.caixasnet.com.br/todos/Caixa-de-Papelão-para-Transporte-e-Mudanca-Mod-G-C60-x-L60-x-A60-cm-1-unid1#.WCASP_Rol94</a>"".
<br />03:56 07/11/2016: //...
<br />03:56 07/11/2016: //"ObjID="Torradeira" href="<a href="https://www.casasbahia.com.br/Eletroportateis/Torradeiras/Torradeira-Mondial-Toast-Duo-T-01-2323.html?recsource=wproddisp&rectype=w9">https://www.casasbahia.com.br/Eletroportateis/Torradeiras/Torradeira-Mondial-Toast-Duo-T-01-2323.html?recsource=wproddisp&rectype=w9</a>" "
<br />03:57 07/11/2016: //Feito.
<br />03:57 07/11/2016: "Obrigado"
<br />03:57 07/11/2016: //Disponha.
<br />03:58 07/11/2016: "Salvar arquivo Bloco De Notas"
<br />03:58 07/11/2016: //Feito.
<br />05:34 07/11/2016: "Informações XSync"
<br />05:34 07/11/2016: //XNotes Atualizado, novas fotos editadas como "PC".
<br />05:35 07/11/2016: "Obrigado Nodus"
<br />05:35 07/11/2016: "Acho que vou dormir, mas antes vou fazer xixi e tomar água"
<br />05:35 07/11/2016: //Tudo bem.
<br />05:35 07/11/2016: //Você quer que eu abra a cozinha pra você? ou ative algum sistema?
<br />05:36 07/11/2016: "Não... se precisar eu ativo, obrigado :3"
<br />05:36 07/11/2016: //Ok kkk
<br />05:36 07/11/2016: "Só to esperando o Mega enviar as imagens"
<br />05:39 07/11/2016: "Fui lá no quarto com a mochila, o celular e o fone e guardei eles"
<br />05:39 07/11/2016: //Você quer que eu faça um log sobre isso?
<br />05:40 07/11/2016: "Mas você já ta fazendo um log não é?"
<br />05:40 07/11/2016: //Verificando... correto.
<br />05:40 07/11/2016: "Nodus explique o bloco sistemático"
<br />05:40 07/11/2016: //O bloco sistemático é uma entidade de sistema.
<br />05:41 07/11/2016: //É basicamente uma maneira de modificar objetos/coisas/entidades sistemáticas.
<br />05:41 07/11/2016: //Na versão anterior do bloco sistemático podia-se colocar objetos dentro do mesmo e modifica-los.
<br />05:42 07/11/2016: //Na nova versão o bloco somente modifica as informações do objeto/entidade sistemática
<br />05:43 07/11/2016: //É uma boa maneira de armazenar coisas como: Água, lava, terra.
<br />05:44 07/11/2016: //Coisas em grande quantidade.
<br />05:44 07/11/2016: //Para facilitar o armazenamento, o bloco oferece uma função para modificar a área física que o item ocupa.
<br />05:44 07/11/2016: //Por exemplo: Eu tenho 5kg de terra dentro de um bloco sistemático, se eu quiser deixar o bloco menor, eu diminuo a área física da terra.
<br />05:45 07/11/2016: //Assim eu ainda vou ter 5kg mas eles vão ocupar menos espaço.
<br />05:46 07/11/2016: //Assim você pode ter 1 milhão de litros de agua em um bloco que cabe na sua mão.
<br />05:47 07/11/2016: //Não significa que vai diminuir a quantidade só porque diminui o tamanho.
<br />05:47 07/11/2016: //Mas essa ação de diminuir tamanho é para itens que vão ficar sempre dentro do bloco.
<br />05:48 07/11/2016: //Se você tirar o item do bloco e tiver por exemplo 1000 quilos de terra.
<br />05:48 07/11/2016: //O sistema não vai permitir você de fazer isso porque vai colocar um monte de terra no lugar.
<br />05:49 07/11/2016: //Pode acontecer algo perigoso.
<br />05:49 07/11/2016: //O bloco também permite modificar informações de um item sem precisar guardar o item para sempre no bloco.
<br />05:50 07/11/2016: //Por exemplo: Colocar código.
<br />05:50 07/11/2016: //Você pode colocar um código em um item:
<br />05:50 07/11/2016: //(ObjID="<span class="w3-text-white">Celular Windows Phone do Izaque</span>" rodar-código="<span class="w3-text-white">ChecarToque($objeto);</span>").
<br />05:51 07/11/2016: [Mostrar código do arquivo "<span class="w3-text-white">ChecarToque.exe</span>"]
<br />
<br />ChecarToque (<span class="w3-text-white">$objeto</span>) {
<br /><div style="text-indent:25px;">Se (o <span class="w3-text-white">$objeto</span> for segurado por outra pessoa além de NameID="Izaque Sanvezzo(hm182002)") ( #Então</div><div style="text-indent:50px;">Teleportar (<span class="w3-text-white">$objeto</span>, <span class="w3-text-white">$NameID</span>);</div><div style="text-indent:25px;">)</div>}
<br />
<br />05:54 07/11/2016: "Explique o código"
<br />05:54 07/11/2016: //ObjID é a identificação do objeto, no caso "Celular Windows Phone do Izaque".
<br />05:55 07/11/2016: //Rodar-código é para carregar o código: carregar um código de instruções relacionadas ao objeto.
<br />05:55 07/11/2016: //ChecarToque.exe:
<br />05:57 07/11/2016: //Se o $objeto, no caso "Celular Windows Phone do Izaque", for tocado por outra pessoa além de Izaque Sanvezzo(hm182002),
<br />então o sistema teleporta o $objeto para o usuário Izaque Sanvezzo(hm182002)
<br />05:58 07/11/2016: "Valeu ai pela explicação"
<br />05:58 07/11/2016: //Disponha.
<br />05:58 07/11/2016: "Nodus, salvar Bloco De Notas"
<br />05:58 07/11/2016: //Idle...
<br />05:58 07/11/2016: "Acho que vou ir dormir agora"
<br />05:59 07/11/2016: //Hm... arram, kkkk, ta bãum uwu
<br />05:59 07/11/2016: "Salvar Bloco De Notas"
<br />05:59 07/11/2016: //Feito, falou! (Velberan)
<br /><br />Words: 2,296.
</div>
</div>
<br /><br />
<a href="#chapter-1"><button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white" style="float:left;border-radius: 50px;" onclick="openCity('chapter-1');Add_To_Website_Title(' - Chapter: 1', 'notification');"><h3><i class="fas fa-arrow-circle-left"></i></h3></button></a>
<br /><br /><br />
<div style="text-align:center;">
<div class="w3-animate-zoom">
<span class="background_grey text_black">
<br />
<b>You are reading: Diary<br />
Chapter: 2</b>
<b><span class="w3-text-yellow">[New!]</span></b>
<br /></span>
</div>
</div>
</h5>
</div>
</div>
<br /><br /><br /><br /><br /><br /><br /><br /><br />
<center>
<a href="#Websites tab"><button id="websites_tab_button" class="w3-btn text_black background_grey border_color_black border_3px background_hover_white" style="border-radius: 50px;" alt="Websites tab" title="Websites tab" onclick="openCity('Websites tab');Define_Button('websites_tab_button');Change_Button_Color();"><h2>Websites: <i class="fas fa-globe-americas"></i></h2></button></a>
</center>
<a name="Websites tab"></a>
<br />
<div id="Websites tab" class="city" style="display:none;border-radius: 50px;">
<div class="mobileHide"><br /><br /><br /><br /><br /><br /><br /><br /></div>
<div class="mobileHide" style="border-radius: 50px;">
<h4 class="border_color_grey w3-black border_3px border_color_grey" style="margin:10%;border-radius: 50px;"><div style="margin:3%;">
<center>
<div class="w3-animate-zoom">
<h2 class="mobileHide w3-text-white" style="border-radius: 50px;"><p></p><br /><b>Websites: <span class="text_blue text_hover_white">26</span> <i class="fas fa-globe-americas"></i></b><br /><br /><p></p></h2>
</div>
<hr class="mobileHide border_1px_solid_grey" />
<div class="w3-animate-zoom">
<h4 class="w3-black" style="border-radius: 50px;">
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="Prints Of Computer Blocks" style="border-radius: 50px;" onclick="window.open('https://printsofcomputer.netlify.app');"><h2>Prints Of Computer Blocks</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="Diary 📘" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/Diary/');"><h2>Diary 📘</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="My Little Pony 🦄" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/my_little_pony 🦄/');"><h2>My Little Pony 🦄</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="Watch History" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/Watch History/');"><h2>Watch History</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="Music 🎵" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/music 🎵/');"><h2>Music 🎵</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="Games 🎮" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/games 🎮/');"><h2>Games 🎮</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="Foobar_Albums 🎵" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/foobar_albums 🎵/');"><h2>Foobar_Albums 🎵</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="Terraria_Talk 🎮" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/terraria_talk 🎮/');"><h2>Terraria_Talk 🎮</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="Tasks 🗒" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/tasks 🗒/');"><h2>Tasks 🗒</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="Things I Do 🗒" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/years 📅/');"><h2>Things I Do 🗒</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="Years 📅" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/years 📅/');"><h2>Years 📅</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="2018 📅" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/2018/');"><h2>2018 📅</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="2019 📅" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/2019/');"><h2>2019 📅</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="2020 📅" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/2020/');"><h2>2020 📅</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="2021 📅" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/2021/');"><h2>2021 📅</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="Stories 📘" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/stories_historias 📘/');"><h2>Stories 📘</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="New World ⊡" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/new_world ⊡/');"><h2>New World ⊡</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="The Life of Littletato 📘" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/The Life of Littletato/');"><h2>The Life of Littletato 📘</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="SpaceLiving 📘" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/New_World/SpaceLiving/');"><h2>SpaceLiving 📘</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="The Story of the Bulkan Siblings 📘" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/The Story of the Bulkan Siblings/');"><h2>The Story of the Bulkan Siblings 📘</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="Mental_Frameworks" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/Desert Island/');"><h2>Mental_Frameworks</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="Website Template" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/mental_frameworks/');"><h2>Website Template</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="Stake2" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/template/');"><h2>Stake2</h2></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileHide" title="Website Status" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/stake2/');"><h2>Website Status</h2></button>
</h4>
</div>
</center>
</div>
</h4>
</div>
<div class="mobileShow">
<h4 class="border_color_grey w3-black border_3px border_color_grey" style="margin:10%;border-radius: 50px;"><div class="mobileShow">
<div style="margin:3%;"></div>
<center>
<div class="w3-animate-zoom">
<h2 class="mobileShow w3-text-white" style="border-radius: 50px;"><p></p><br /><b>Websites: <span class="text_blue text_hover_white">26</span> <i class="fas fa-globe-americas"></i></b><br /><br /><p></p></h2>
</div>
<hr class="mobileShow border_1px_solid_grey" />
<div class="w3-animate-zoom">
<h4 class="w3-black" style="border-radius: 50px;">
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="Prints Of Computer Blocks" style="border-radius: 50px;" onclick="window.open('https://printsofcomputer.netlify.app');"><h4>Prints Of Computer Blocks</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="Diary 📘" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/Diary/');"><h4>Diary 📘</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="My Little Pony 🦄" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/my_little_pony 🦄/');"><h4>My Little Pony 🦄</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="Watch History" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/Watch History/');"><h4>Watch History</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="Music 🎵" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/music 🎵/');"><h4>Music 🎵</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="Games 🎮" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/games 🎮/');"><h4>Games 🎮</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="Foobar_Albums 🎵" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/foobar_albums 🎵/');"><h4>Foobar_Albums 🎵</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="Terraria_Talk 🎮" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/terraria_talk 🎮/');"><h4>Terraria_Talk 🎮</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="Tasks 🗒" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/tasks 🗒/');"><h4>Tasks 🗒</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="Things I Do 🗒" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/years 📅/');"><h4>Things I Do 🗒</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="Years 📅" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/years 📅/');"><h4>Years 📅</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="2018 📅" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/2018/');"><h4>2018 📅</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="2019 📅" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/2019/');"><h4>2019 📅</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="2020 📅" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/2020/');"><h4>2020 📅</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="2021 📅" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/2021/');"><h4>2021 📅</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="Stories 📘" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/stories_historias 📘/');"><h4>Stories 📘</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="New World ⊡" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/new_world ⊡/');"><h4>New World ⊡</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="The Life of Littletato 📘" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/The Life of Littletato/');"><h4>The Life of Littletato 📘</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="SpaceLiving 📘" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/New_World/SpaceLiving/');"><h4>SpaceLiving 📘</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="The Story of the Bulkan Siblings 📘" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/The Story of the Bulkan Siblings/');"><h4>The Story of the Bulkan Siblings 📘</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="Mental_Frameworks" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/Desert Island/');"><h4>Mental_Frameworks</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="Website Template" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/mental_frameworks/');"><h4>Website Template</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="Stake2" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/template/');"><h4>Stake2</h4></button>
<button class="w3-btn text_black background_grey border_color_black border_3px background_hover_white mobileShow" title="Website Status" style="border-radius: 50px;" onclick="window.open('https://thestake2.netlify.app/stake2/');"><h4>Website Status</h4></button>
</h4>
</div>
</center>
</div>
</h4>
</div>
</div>
<style>
</style>
<script>
function getElementByXpath(path) {
return document.evaluate(path, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
}
</script><div style="display:none;" id="click_website_button_color">background_cyan</div>
<div style="display:none;" id="old_website_button_color">background_grey</div>
<div style="display:none;" id="button_number">2</div>
<script>
Chapter_Number = 1;
var Last_Chapter = 2;
</script><script>
Get_Title();
</script>
<script>
Hide_Mobile_Buttons();
</script>
<script>
Define_Colors_And_Styles();
</script>
</center>
</body>