-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.txt
1461 lines (1352 loc) · 139 KB
/
test.txt
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><html lang="en" ng-app="MainApp" ng-controller="MainCtrl as vm" ng-keyup="vm.GlobalKey($event.keyCode)" class="ng-scope"><head><style type="text/css">@charset "UTF-8";[ng\:cloak],[ng-cloak],[data-ng-cloak],[x-ng-cloak],.ng-cloak,.x-ng-cloak,.ng-hide:not(.ng-hide-animate){display:none !important;}ng\:form{display:block;}.ng-animate-shim{visibility:hidden;}.ng-anchor{position:absolute;}</style>
<title class="ng-binding">One-Punch Man Chapter 128</title>
<meta name="description" content="Read One-Punch Man Chapter 128 Online For Free">
<script async="" src="https://www.google-analytics.com/analytics.js"></script><script type="text/javascript" async="" src="https://www.gstatic.com/recaptcha/releases/2uoiJ4hP3NUoP9v_eBNfU6CR/recaptcha__en.js" crossorigin="anonymous" integrity="sha384-8b1fYxkBQ82746OBigUxbC75ucNg784PJgJ0M7I194sqo+sBA6g1aOEfgOgqMfJ5"></script><script src="https://cdn.jsdelivr.net/npm/vue"></script>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<!-- META OG -->
<meta property="og:type" content="article">
<meta property="og:title" content="One-Punch Man Chapter 128">
<meta property="og:description" content="Read One-Punch Man Chapter 128 Online For Free">
<meta property="og:site_name" content="">
<meta property="og:url" content="https://mangasee123.com/read-online/Onepunch-Man-chapter-128-index-2.html">
<meta property="og:image" content="https://cover.nep.li/cover/Onepunch-Man.jpg">
<meta property="fb:admins" content="100009420386052">
<meta property="fb:app_id" content="1609343042699696">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@animemangastuff">
<meta name="twitter:title" content="One-Punch Man Chapter 128">
<meta name="twitter:description" content="Read One-Punch Man Chapter 128 Online For Free">
<meta name="twitter:creator" content="@animemangastuff">
<meta name="twitter:image:src" content="https://cover.nep.li/cover/Onepunch-Man.jpg">
<meta name="twitter:domain" content="mangasee123.com">
<!-- Canonical Tag -->
<link rel="canonical" href="https://mangasee123.com/read-online/Onepunch-Man-chapter-128-index-2.html">
<!-- RSS -->
<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="https://mangasee123.com/rss/Onepunch-Man.xml">
<!-- favicon -->
<link rel="shortcut icon" href="/media/favicon.png">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css">
<!-- ANGULAR STUFF -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular-sanitize.min.js"></script><!-- Sanitize -->
<script>
var app = angular.module("MainApp", ['ngSanitize']);
</script>
<!-- Captcha -->
<script src="https://www.google.com/recaptcha/api.js?render=6Ld2-aMZAAAAAD9ESUQP8ijtHxtoWAwv2DOsJJ0n"></script>
<!-- Custom CSS -->
<style>body,html{background-color:#000000;}</style>
<!-- STANDARD CSS -->
<style>*{min-height:.01px}body,html{height:100%}.ng-cloak,[ng-cloak],[ng\:cloak]{display:none!important}a:active,a:focus{outline:0;-moz-outline-style:none}.back-to-top{position:fixed;bottom:3em;right:0;text-decoration:none;font-size:20px;padding:4px 10px 7px 12px;display:none;z-index:100000;border:1px solid #ccc;border-right:none;color:#ccc;background-color:#fff;opacity:.4}.back-to-top:hover{opacity:.8}.grecaptcha-badge{opacity:0!important}h1{font-size:30px}input::placeholder,textarea::placeholder{color:#ccc!important;opacity:1}input:-ms-input-placeholder,textarea::placeholder{color:#ccc!important}input::-ms-input-placeholder,textarea::placeholder{color:#ccc!important}.btn,input,select,textarea{box-shadow:none!important;-moz-box-shadow:none!important;-webkit-box-shadow:none!important}.required{color:red}.bg-dark{background-color:#444!important}.MainDiv{min-height:calc(100% - 156px);margin-bottom:-95px}.TopContainer{padding-top:20px;padding-bottom:20px}.footer,.push{height:95px}.footer{padding:20px 0;text-align:center;color:#ccc;font-size:18px}.footer a{margin:0 3px;font-size:14px;color:#fff}.top-20{margin-top:20px}.top-15{margin-top:15px}.top-10{margin-top:10px}.top-5{margin-top:5px}.bottom-20{margin-bottom:20px}.bottom-15{margin-bottom:15px}.bottom-10{margin-bottom:10px}.bottom-5{margin-bottom:5px}.navbar{padding:0!important;background-color:#4b72b4}.navbar-brand{margin:0!important;padding:10px 15px}.nav-item a{color:#ddd!important;padding:10px 15px!important}.NavBtnSm{color:#ccc!important;padding:12px 15px}.NavBtnSm:hover,.nav-item a:hover,.nav-item:hover,.navbar-brand:hover{color:#fff!important;text-decoration:none!important}.NavBtnSm.active,.nav-item.active{color:#fff}.navbar .dropdown-menu-right{border:none;margin:0;padding:0;border-radius:0;background-color:#202020}.navbar .dropdown-menu-right a:hover{background-color:#393939;color:#fff}.MenuSmall{margin-top:10px!important}.MenuSmall a{padding-left:10px;padding-right:10px;color:#fff}#TopBigLogo{max-height:80px;margin-top:10px;margin-bottom:10px}#TopSmallLogo{max-width:200px;margin-top:10px}.QuickSearch *{border-radius:0;border:none}.QuickSearch .form-control{border-right:none}.QuickSearch .input-group-text{background-color:#fff;padding-left:15px;padding-right:15px}.QuickSearch .mx-auto{background-color:#ff0;margin:10px;text-align:center}#Nav .LogoBox{text-align:left}@media(max-width:768px){#Nav .LogoBox{text-align:center}}.QuickSearch .SearchResult{position:absolute;top:42px;left:0;padding:15px;width:100%;z-index:1000}.QuickSearch .SearchResultLabel{display:inline-block;max-width:calc(100% - 60px);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.QuickSearch .SearchResultCover{background-color:#ddeaff}.SearchLink{display:block!important;color:#343a40}.SearchLink:hover{cursor:pointer;color:#fff;background-color:#4b72b4;text-decoration:none}.NoResults{padding:10px;color:#000}.QuickSearch .input-group *{border-color:#bbb}.navbar-toggler{border:none;box-shadow:none!important;-moz-box-shadow:none!important;-webkit-box-shadow:none!important;outline:0!important}.navbar-brand{font-size:16px;color:#999c9f!important}.navbar-brand:hover{color:#cccdcf!important}.navbar-brand.active{color:#fff!important}.phone-link{color:#fff!important}.phone-link:hover{color:#ccc!important}.MainContainer{min-height:calc(100vh - 144px);padding-top:15px;padding-bottom:15px}@media(max-width:768px){.MainContainer{padding-top:10px;padding-bottom:10px}}.Box{margin-top:15px;margin-bottom:15px}@media(max-width:768px){.Box{margin-top:5px;margin-bottom:5px}}.BoxHeader{background:#4b72b4;padding:10px 15px;color:#fff;font-size:18px}.BoxBody{background:#fff;padding:10px 15px}#Footer{text-align:center;background:#444;height:130px;padding-top:25px;color:#eee}#Footer a{margin:0 5px;color:#fff}</style>
<!-- Custom Styling -->
<style>.DesktopNav{background:#fff;padding:0}.DesktopNav .row{margin:0!important;padding:5px!important}.DesktopNav .Column{margin:0!important;padding:5px!important}.DesktopNav .btn{display:block!important;width:100%!important;margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.ImageGallery{text-align:center;cursor:pointer;min-height:50vh}.ImageGallery img{-khtml-user-select:none;-o-user-select:none;-moz-user-select:none;-webkit-user-select:none;user-select:none;margin-left:auto;margin-right:auto}#Preload{display:none;height:0;width:0}.ImageGallery .Fetching{opacity:.8}.ImageGallery .HasGap{margin-top:10px}.ImageGallery .NoGap{margin-top:0}.ChapterDescription{background:#fff;padding:10px}#ChapterModal .btn,#PageModal .btn{display:block!important;width:100%!important}.Bookmarked{color:red}.MainContainer{padding-top:8px}</style>
</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark fixed-top" style="background-color:#2B2B2B;">
<div class="container">
<a class="navbar-brand" href="/" style="padding:6px 10px;">
<img style="max-height:32px;" src="/media/navbar.brand.small3.png">
</a>
<div class="d-inline-block d-md-none ml-auto mr-auto">
<a href="#" onclick="DoNothing(event)" class="NavBtnSm ng-binding" ng-click="vm.Previous()" style="padding-right:6px;">
<i class="fas fa-step-backward"></i>
Chap
</a>
<span class="NavBtnSm ng-binding" style="padding-left:0px; padding-right:0px;">
128
</span>
<a href="#" onclick="DoNothing(event)" class="NavBtnSm ng-binding" ng-click="vm.Next()" style="padding-left:6px;">
Chap
<i class="fas fa-step-forward"></i>
</a>
</div>
<div class="d-inline-block d-md-none">
<a class="NavBtnSm" href="#" data-toggle="modal" data-target="#AuthModal">
<i class="fas fa-sign-in-alt"></i>
</a>
</div>
<div class="collapse navbar-collapse d-none d-md-flex">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a href="/search/" class="nav-link">
<i class="fas fa-search"></i>
Search
</a>
</li>
<li class="nav-item">
<a href="/manga/Koiiro-Devil" class="nav-link">
<i class="fas fa-sync-alt"></i>
Random
</a>
</li>
</ul>
<ul class="navbar-nav ml-auto">
<li class="nav-item d-none d-md-block">
<a class="nav-link ng-binding" href="#" onclick="DoNothing(event)" ng-click="vm.Previous()">
<i class="fas fa-step-backward"></i>
Chapter
</a>
</li>
<li class="nav-item d-none d-md-block" style="padding-left:0px; padding-right:0px;">
<a class="nav-link ng-binding" style="padding-left:0px; padding-right:0px;">
128
</a>
</li>
<li class="nav-item d-none d-md-block">
<a class="nav-link ng-binding" href="#" onclick="DoNothing(event)" ng-click="vm.Next()">
Chapter
<i class="fas fa-step-forward"></i>
</a>
</li>
<li class="nav-item d-none d-md-block">
<a href="#" class="nav-link" data-toggle="modal" data-target="#AuthModal">
<i class="fas fa-sign-in-alt"></i>
Login
</a>
</li>
</ul>
</div>
</div>
</nav>
<div style="height:45px;"></div>
<style>.AuthLink{color:gray}.AuthLink a{color:gray;margin-right:15px}.AuthLink a:active,.AuthLink a:focus,.AuthLink a:hover{text-decoration:none}</style>
<!-- Modal -->
<div class="modal fade" id="AuthModal" tabindex="-1" role="dialog" data-backdrop="static" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">
<!-- ngIf: vm.AuthType == 'Login' --><span ng-if="vm.AuthType == 'Login'" class="ng-scope">
<i class="fas fa-sign-in-alt"></i>
Login
</span><!-- end ngIf: vm.AuthType == 'Login' -->
<!-- ngIf: vm.AuthType == 'Register' -->
<!-- ngIf: vm.AuthType == 'Reset' -->
</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="bottom-10">
Email Address:
<input class="form-control ng-pristine ng-untouched ng-valid ng-empty ng-valid-email" type="email" ng-model="vm.AuthEmail" ng-disabled="vm.Authenticating" ng-keyup="$event.keyCode == 13 && vm.AuthToggle()">
</div>
<!-- ngIf: vm.AuthType == 'Register' -->
<!-- ngIf: vm.AuthType != 'Reset' --><div class="bottom-10 ng-scope" ng-if="vm.AuthType != 'Reset'">
Password:
<input class="form-control ng-pristine ng-untouched ng-valid ng-empty" type="password" ng-model="vm.AuthPassword" ng-disabled="vm.Authenticating" ng-keyup="$event.keyCode == 13 && vm.AuthToggle()">
</div><!-- end ngIf: vm.AuthType != 'Reset' -->
<!-- ngIf: vm.AuthType != 'Register' --><span class="AuthLink ng-scope" ng-if="vm.AuthType != 'Register'">
·
<!-- ngIf: !vm.Authenticating --><a href="#" onclick="DoNothing(event)" ng-if="!vm.Authenticating" ng-click="vm.ResetSuccess = ''; vm.AuthType = 'Register'" class="ng-scope">Register</a><!-- end ngIf: !vm.Authenticating -->
<!-- ngIf: vm.Authenticating -->
</span><!-- end ngIf: vm.AuthType != 'Register' -->
<!-- ngIf: vm.AuthType != 'Login' -->
<!-- ngIf: vm.AuthType != 'Reset' --><span class="AuthLink ng-scope" ng-if="vm.AuthType != 'Reset'">
·
<!-- ngIf: !vm.Authenticating --><a href="#" onclick="DoNothing(event)" ng-if="!vm.Authenticating" ng-click="vm.ResetSuccess = ''; vm.AuthType = 'Reset'" class="ng-scope">Forgot Password</a><!-- end ngIf: !vm.Authenticating -->
<!-- ngIf: vm.Authenticating -->
</span><!-- end ngIf: vm.AuthType != 'Reset' -->
<!-- ngIf: vm.AuthWarning != '' -->
<!-- ngIf: vm.ResetSuccess -->
</div>
<div class="modal-body" style="border-top:1px solid #DDDDDD;">
<button type="button" class="btn btn-outline-secondary" data-dismiss="modal">Close</button>
<span class="float-right">
<!-- ngIf: vm.AuthType == 'Login' --><button type="button" class="btn btn-primary ng-scope" ng-if="vm.AuthType == 'Login'" ng-disabled="vm.Authenticating" ng-click="vm.Login()">
<!-- ngIf: vm.Authenticating -->
Login
</button><!-- end ngIf: vm.AuthType == 'Login' -->
<!-- ngIf: vm.AuthType == 'Register' -->
<!-- ngIf: vm.AuthType == 'Reset' -->
</span>
</div>
</div>
</div>
</div>
<div class="MainContainer">
<div class="container DesktopNav">
<div class="row">
<div class="Column col-lg-4 col-12" style="text-align:center;">
<a href="/manga/Onepunch-Man" class="btn btn-sm btn-outline-secondary">
<i class="fas fa-book"></i>
One-Punch Man </a>
</div>
<div class="Column col-lg-2 col-6">
<button class="btn btn-sm btn-outline-secondary ng-binding" data-toggle="modal" data-target="#ChapterModal">
<i class="fas fa-stream"></i>
Official Scan 128
</button>
</div>
<div class="Column col-lg-2 col-6">
<!-- ngIf: vm.CurPage != 0 -->
<!-- ngIf: vm.CurPage == 0 --><button class="btn btn-sm btn-outline-secondary ng-scope" ng-if="vm.CurPage == 0" ng-click="vm.ToggleGap()">
<i class="fas fa-compress"></i>
Page Gap
</button><!-- end ngIf: vm.CurPage == 0 -->
</div>
<div class="Column col-lg-2 col-6">
<button class="btn btn-sm btn-outline-secondary ng-binding" ng-click="(vm.CurPage == 0 ? vm.CurPage = 1 : vm.CurPage = 0); vm.CheckBookmark(); vm.FullPageCookie(); vm.UpdateURL();">
<i class="fas fa-columns"></i>
Single Page
</button>
</div>
<div class="Column col-lg-2 col-6">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.Bookmark()" ng-disabled="vm.Bookmarking">
<i class="fas fa-thumbtack"></i>
Bookmark
</button>
</div>
</div>
</div>
<div class="ImageGallery" id="TopPage" style="min-height:150vh;" ng-click="vm.CurPage != 0 ? vm.CheckCordinate($event) : vm.ScrollScreenDown()">
<!-- Ads Top -->
<div style="max-width:800px; margin:0px auto;">
<script type="text/javascript" src="//closureevaporatefume.com/5d/f6/09/5df609a8041d3412c2cba82003aa31c5.js"></script>
</div>
<!-- ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-001.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-001.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-002.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-002.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-003.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-003.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-004.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-004.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-005.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-005.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-006.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-006.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-007.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-007.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-008.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-008.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-009.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-009.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-010.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-010.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-011.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-011.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-012.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-012.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-013.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-013.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-014.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-014.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-015.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-015.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-016.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-016.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-017.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-017.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-018.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-018.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-019.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-019.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-020.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-020.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-021.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-021.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-022.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-022.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-023.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-023.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages --><div ng-repeat="Page in vm.Pages" class="ng-scope">
<!-- ngIf: vm.Edd.Active -->
<!-- ngIf: !vm.Edd.Active --><div ng-if="!vm.Edd.Active" class="ng-scope">
<!-- ngIf: vm.CurPage == 0 || vm.CurPage == Page --><img class="img-fluid HasGap" ng-class="vm.HasGap || vm.CurPage != 0 ? 'HasGap' : 'NoGap'" ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-024.png" on-error-src="201280" ng-if="vm.CurPage == 0 || vm.CurPage == Page" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-024.png"><!-- end ngIf: vm.CurPage == 0 || vm.CurPage == Page -->
</div><!-- end ngIf: !vm.Edd.Active -->
</div><!-- end ngRepeat: Page in vm.Pages -->
<!-- Ads Bottom -->
<div style="max-width:800px; margin:0px auto;">
</div>
</div>
<!-- ngIf: vm.Preload --><div id="Preload" ng-if="vm.Preload" class="ng-scope">
<!-- ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><img ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-001.png" ng-repeat="Page in vm.Pages" ng-if="Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4)" class="ng-scope" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-001.png"><!-- end ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><img ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-002.png" ng-repeat="Page in vm.Pages" ng-if="Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4)" class="ng-scope" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-002.png"><!-- end ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><img ng-src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-003.png" ng-repeat="Page in vm.Pages" ng-if="Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4)" class="ng-scope" src="https://scans-hot.leanbox.us/manga/Onepunch-Man/Mag-Official/0128-003.png"><!-- end ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages --><!-- ngIf: Page > (vm.CurPage - 1) && Page < (vm.CurPage + 4) --><!-- end ngRepeat: Page in vm.Pages -->
</div><!-- end ngIf: vm.Preload -->
<div class="container DesktopNav top-10">
<div class="row">
<!-- ngIf: vm.CurPage != 0 -->
<!-- ngIf: vm.CurPage == 0 --><div class="Column col-lg-2 col-6 ng-scope" ng-if="vm.CurPage == 0">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.Previous()">
<i class="fas fa-step-backward"></i>
Prev Chapter
</button>
</div><!-- end ngIf: vm.CurPage == 0 -->
<!-- ngIf: vm.CurPage == 0 --><div class="Column col-lg-2 col-6 ng-scope" ng-if="vm.CurPage == 0">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.Next()">
Next Chapter
<i class="fas fa-step-forward"></i>
</button>
</div><!-- end ngIf: vm.CurPage == 0 -->
<div class="Column col-lg-4 col-12">
<button class="btn btn-sm btn-outline-secondary ng-binding" data-toggle="modal" data-target="#ChapterModal">
<i class="fas fa-stream"></i>
Official Scan 128
</button>
</div>
<!-- ngIf: vm.CurPage != 0 -->
<div class="Column col-lg-2 col-6">
<button class="btn btn-sm btn-outline-secondary ng-binding" ng-click="(vm.CurPage == 0 ? vm.CurPage = 1 : vm.CurPage = 0); vm.CheckBookmark(); vm.FullPageCookie(); vm.UpdateURL();">
<i class="fas fa-columns"></i>
Single Page
</button>
</div>
<div class="Column col-lg-2 col-6">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.Bookmark()" ng-disabled="vm.Bookmarking">
<i class="fas fa-thumbtack"></i>
Bookmark
</button>
</div>
</div>
<!--
<div id="disqus" class='row'>
<div id="disqus_thread" class="col-12"></div>
<button class='btn' v-on:click="click" v-if="hide==false">Disqus Comments (SPOILER Alert)</button>
</div>
<script>
new Vue({
el: '#disqus',
data() {
return {
hide: false
}
},
methods: {
click() {
this.hide = true
var d = document, s = d.createElement('script');
s.src = 'https://mangasee123-com.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
}
}
})
</script>
-->
</div>
</div>
<!-- Chapter Modal -->
<div class="modal fade" id="ChapterModal" tabindex="-1" role="dialog" aria-labelledby="ChapterModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ChapterModalLabel">Select Chapter</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="row">
<!-- ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Mag Version 159</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Mag Version 158</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scans 157</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scans 156</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scans 155</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scans 154</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scans 153</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scans 152</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scans 151</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scans 150</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scans 149</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scans 148</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scans 147</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 146</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 145</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 144</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 143</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 142</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 141</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 140</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 139</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 138</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 137</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 136</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 135</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 134</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 133</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 132.3</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 132.2</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 132</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 131</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 130</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 129</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-primary" ng-click="vm.GoToChapter(Chap)">Official Scan 128</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 127</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 126</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 125</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 124.2</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 124</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 123</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 122</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 121</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 120</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 119</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 118</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 117</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 116</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Redraw 115.5</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 115</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 114</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 113</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Redraw 112.5</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 112</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Redraw 111.5</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 111</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 110</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 109</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Redraw 108.5</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 108</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Redraw 107.5</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 107</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 106</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Official Scan 105</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 112.5</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 112</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 111</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 110</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 109</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 108</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 107</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 106</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 105</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 104</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 103</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 102</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 101</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 100</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 99</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 98</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 97</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 96</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 95</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 94</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 93</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 92</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 91</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 90</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 89</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 88</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 87</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 86</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 85</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 84</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 83</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 82</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 81</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 80.5</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 80</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 79</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 78</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 77</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 76</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 75</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 74</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 73</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 72</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 71.5</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 71</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 70</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 69</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 68</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 67.5</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 67</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 66</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 65</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 64</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 63</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 62</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 61.5</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 61</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 60</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 59</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 58</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 57</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 56</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 55.7</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 55.6</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 55.5</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 55</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 54</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 53</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 52</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 51</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 50</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 49</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 48</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 47</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 46</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 45</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 44</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 43</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 42</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 41</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 40.6</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 40.5</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 40</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 39</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 38</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 37.7</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 37.6</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 37.5</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 37</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 36</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 35</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 34.5</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 34</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 33</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 32</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 31</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 30</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 29</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 28</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 27</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 26</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 25</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 24.5</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 24</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 23</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 22</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 21</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 20.6</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 20.5</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 20</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 19</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 18</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 17</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 16</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 15.5</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 15</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 14</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 13</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 12</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 11</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 10</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 9</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 8.5</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 8</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 7</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 6</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 5</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 4</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 3</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 2</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true --><div class="col-md-4 col-6 top-5 bottom-5 ng-scope" ng-repeat="Chap in vm.CHAPTERS | orderBy:Chapter:true">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToChapter(Chap)">Punch 1</button>
</div><!-- end ngRepeat: Chap in vm.CHAPTERS | orderBy:Chapter:true -->
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Page Modal -->
<div class="modal fade" id="PageModal" tabindex="-1" role="dialog" aria-labelledby="PageModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="PageModalLabel">Select Page</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="row">
<!-- ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">1</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">2</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">3</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">4</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">5</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">6</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">7</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">8</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">9</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">10</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">11</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">12</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">13</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">14</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">15</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">16</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">17</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">18</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">19</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">20</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">21</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">22</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">23</button>
</div><!-- end ngRepeat: Page in vm.Pages --><div class="col-md-2 col-3 top-5 bottom-5 ng-scope" ng-repeat="Page in vm.Pages">
<button class="btn btn-sm btn-outline-secondary" ng-click="vm.GoToPage(Page)">24</button>
</div><!-- end ngRepeat: Page in vm.Pages -->
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
<a href="#" class="back-to-top"><span class="fa fa-chevron-up"></span></a>
<script>jQuery(document).ready(function(){var a=400,o=500;jQuery(window).scroll(function(){jQuery(this).scrollTop()>a?(jQuery(".back-to-top").fadeIn(o),$(".navbarRegular").hide(),$(".navbarNavTop").show()):(jQuery(".back-to-top").fadeOut(o),$(".navbarRegular").show(),$(".navbarNavTop").hide())}),jQuery(".back-to-top").click(function(a){return a.preventDefault(),jQuery("html, body").animate({scrollTop:0},o),!1})});</script>
<!-- DoNothing -->
<script>function DoNothing(t){t.preventDefault()}$("body").on("click","a",function(t){href=$(this).attr("href"),"#"==href&&t.preventDefault()});</script>
<div id="Footer">
<div class="bottom-10">
<!-- ngIf: !vm.Reported --><button class="btn btn-sm btn-outline-secondary ng-scope" ng-click="vm.Report()" ng-if="!vm.Reported">
<i class="fas fa-bug"></i>
Report Page
</button><!-- end ngIf: !vm.Reported -->
<!-- ngIf: vm.Reported -->
</div>
<a href="/">Home</a>
<a href="/contact/">Contact</a>
<a href="/privacy/">Privacy</a>
<div>Copyright © MangaSee 2022</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/js-cookie/2.2.1/js.cookie.min.js"></script>
<script>
!function(e,a,t,n,c,g,o){e.GoogleAnalyticsObject=c,e.ga=e.ga||function(){(e.ga.q=e.ga.q||[]).push(arguments)},e.ga.l=1*new Date,g=a.createElement(t),o=a.getElementsByTagName(t)[0],g.async=1,g.src="https://www.google-analytics.com/analytics.js",o.parentNode.insertBefore(g,o)}(window,document,"script",0,"ga"),ga("create","UA-92638121-5","auto");
ga('send', 'pageview');
ga('send', 'event', {
'eventCategory' : "Reading",
'eventAction' : "One-Punch Man",
'eventLabel' : "Chapter 128"
});
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebPage",
"breadcrumb":{
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"item": {
"@id" : "https://mangasee123.com",
"name": "MangaSee"
}
},{
"@type": "ListItem",
"position": 2,
"item": {
"@id" : "https://mangasee123.com/manga/Onepunch-Man",
"name": "One-Punch Man"
}
}]
},
"mainEntity":{
"@type": "CreativeWork",
"name": "One-Punch Man Chapter 128",
"about": "Read One-Punch Man Manga Chapter 128 Online For Free. You can read the latest chapters of One-Punch Man Manga on MangaSee.",
"alternateName": ["One Punch-Man"],
"author": ["MURATA Yuusuke"],
"genre": ["Action","Adventure","Comedy","Drama","Sci-fi","Seinen","Supernatural"],
"datePublished": "2020-10-12 07:27:29"
}
}
</script>
<script>