-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1672 lines (1470 loc) · 113 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!--
THE SACRED IS FREE FROM ALL deficiencies!
-->
<!DOCTYPE html>
<html>
<head>
<title>c = 10⁻⁹ × 3.34 s/m ≈ 299,401,197.6047904191616766 m/s</title>
<link href='pic/favicon.ico' rel='icon' type='image/x-icon'/>
<meta name="google-site-verification" content="QLUvodzBw24KKAtw4OlXbor1aDjaDrhioVWDY1bQ2YE" />
<meta name="description" content="Miracle 19 & True Clock of Resurrection">
<meta name="keywords" content="muqatta,letter,counter,abjad,value,calculator,miracle,19,machine,english">
<meta name="viewport" content="width=device-width"/>
<meta name="format-detection" content="telephone=no"> <!-- disables automatic phone number linking in Mobile Safari so line breakings fixed in BISMILLAHIRRAHMANIRRAHIM TABLE WITH PERMISSION OF 1 -->
<meta content='http://19x334.com' property='og:url'/>
<meta content='MIRACLE 19' property='og:title'/>
<meta content='Miracle 19 & True Clock of Resurrection' property='og:description'/>
<link rel="manifest" href="/manifest.json">
<link rel="stylesheet" href="css/jquery.highlight-within-textarea.css">
<link rel="stylesheet" type="text/css" href="css/ebced.css">
<link rel="stylesheet" type="text/css" href="css/sweetalert2.min.css">
<link rel="stylesheet" type="text/css" href="css/colors.css">
</head>
<body id="vücut" onload="randombg()">
<div id="bg"></div>
<audio hidden id="player">
<source src="74.mp3" type="audio/mpeg"/>
</audio>
<div id="play-pause-button" class="fa fa-play"></div>
<div class="text">
<p id="baslik" style="font-size: 38px; text-shadow: -1px -1px 7.4px black, 1px -1px 7.4px black, -1px 1px 7.4px black, 1px 1px 7.4px black;"><a id="bism2698" style="color: white;">بسم الله الرحمن الرحيم</a></p>
<p id="baslik">
<a style="display: inline-block; color: yellow;" target='_blank' href='https://github.com/TANRIninResulu/QURAN-VISUAL-PRESENTATION-OF-THE-MIRACLE/blob/main/English.pdf'>Miracle</a> <a style="display: inline-block; color: yellow;" target='_blank' href='https://raw.githubusercontent.com/TANRIninResulu/QURAN-VISUAL-PRESENTATION-OF-THE-MIRACLE/main/Türkçe/Kuran%20Görülen%20Mucize%20-%20Reşad%20Halife.pdf'>19</a> &
<a style="display: inline-block; color: yellow;" target='_blank' href="/True_Clock_of_Resurrection/">True Clock of Resurrection</a>
</p>
<br>
<div id="sv">
<div id="sv1">
<input class="ayetbox inputs" id="sure" list="sureler" onblur="bckgrndclrchanger(this.id)" onfocus="bckgrndclrchangr(this.id)" placeholder="Sura" size="3" title="Sura No"> :
<input class="ayetbox inputs" id="ayet" maxlength="3" onblur="bckgrndclrchanger(this.id)" onfocus="bckgrndclrchangr(this.id)" placeholder="Verse" size="3" title="Verse No" type="number">
-
<input class="ayetbox inputs" id="sure2" list="sureler" onblur="bckgrndclrchanger(this.id)" onfocus="bckgrndclrchangr(this.id)" placeholder="Sura" size="3" title="Sura No"> :
<input class="ayetbox inputs" id="ayet2" maxlength="3" onblur="bckgrndclrchanger(this.id)" onfocus="bckgrndclrchangr(this.id)" placeholder="Verse" size="3" title="Verse No" type="number">
<p id="açıklama"></p>
<div id='sonradan'>
from <input class="ayetbox inputs2" id="sırano1" onblur="bckgrndclrchanger(this.id)" onfocus="bckgrndclrchangr(this.id)" placeholder="verse" size="4" title="the #th verse of the QURAN" type="number"> - to
<input class="ayetbox inputs2" id="sırano2" onblur="bckgrndclrchanger(this.id)" onfocus="bckgrndclrchangr(this.id)" placeholder="verse" size="4" title="the #th verse of the QURAN" type="number">
</div>
</div>
<datalist id="sureler">
<option value="1" label="al-fãtehah - the key">
<option value="2" label="الم * al-baqarah - the heifer * elm">
<option value="3" label="الم * ãli-’imrãn - the amramites * elm">
<option value="4" label="al-nesã’ - women">
<option value="5" label="al-mã’edah - the feast">
<option value="6" label="al-an‘ãm - livestock">
<option value="7" label="المص * al-a‘arãf - the purgatory * elmŝ">
<option value="8" label="al-anfãl - the spoils of war">
<option value="9" label="at-tawbah - repentance">
<option value="10" label="الر * younus - jonah * elr">
<option value="11" label="الر * hûd - hood * elr">
<option value="12" label="الر * yousuf - joseph * elr">
<option value="13" label="المر * al-ra‘ad - thunder * elmr">
<option value="14" label="الر * ibrahîm - abraham * elr">
<option value="15" label="الر * al-hijr - al-hijr valley * elr">
<option value="16" label="al-nahl - the bee">
<option value="17" label="isra - night walk">
<option value="18" label="al-kahf - the cave">
<option value="19" label="كهيعص * maryam - mary * ķhyaŝ">
<option value="20" label="طه * tãhã - t.h. * th">
<option value="21" label="al-anbyã’ - the nabis">
<option value="22" label="al-hajj - pilgrimage">
<option value="23" label="al-mu’minûn - the believers">
<option value="24" label="al-noor - light">
<option value="25" label="al-furqãn - the statute book">
<option value="26" label="طسم * al-shu‘arã’ - the poets * tsm">
<option value="27" label="طس * al-naml - the ant * ts">
<option value="28" label="طسم * al-qasas - history * tsm">
<option value="29" label="الم * al-‘ankaboot - the spider * elm">
<option value="30" label="الم * al-room - the romans * elm">
<option value="31" label="الم * luqmãn - luqmaan * elm">
<option value="32" label="الم * al-sajdah - prostration * elm">
<option value="33" label="al-ahzãb - the parties">
<option value="34" label="saba’ - sheba">
<option value="35" label="faater - initiator">
<option value="36" label="يس * yãsîn - y.s. * ys">
<option value="37" label="al-sãffãt - the arrangers">
<option value="38" label="ص * saad - ŝ. * ŝ">
<option value="39" label="al-zumar - the throngs">
<option value="40" label="حم * ghãfer - forgiver * ĥm">
<option value="41" label="حم * fussilat - detailed * ĥm">
<option value="42" label="حم * عسق * al-shoorã - consultation * ĥm * ask">
<option value="43" label="حم * al-zukhruf - ornaments * ĥm">
<option value="44" label="حم * al-dukhãn - smoke * ĥm">
<option value="45" label="حم * al-jãtheyah - kneeling * ĥm">
<option value="46" label="حم * al-ahqãf - the dunes * ĥm">
<option value="47" label="muhammad - muhammad">
<option value="48" label="al-fatt-h - victory">
<option value="49" label="al-hujurãt - the walls">
<option value="50" label="ق * qãf - q. * k">
<option value="51" label="dhãreyãt - drivers of the winds">
<option value="52" label="al-toor - mount sinai">
<option value="53" label="al-najm - the star">
<option value="54" label="al-qamar - the moon">
<option value="55" label="AL-RAHMAN - RAHMAN">
<option value="56" label="Al-Waaqe‘ah - The Inevitable">
<option value="57" label="al-hadeed - the iron">
<option value="58" label="al-mujaadalah - the debate">
<option value="59" label="al-hashr - exodus">
<option value="60" label="al-mumtahanah - the test">
<option value="61" label="al-suff - the column">
<option value="62" label="al-jumu‘ah - friday">
<option value="63" label="munaafeqoon - hypocrites">
<option value="64" label="taghaabun - mutual blaming">
<option value="65" label="al-talaaq - divorce">
<option value="66" label="al-tahreem - prohibition">
<option value="67" label="al-mulk - kingship">
<option value="68" label="ن * al-qalam - the pen * n">
<option value="69" label="al-haaqqah - incontestable">
<option value="70" label="al-ma‘aarej - the heights">
<option value="71" label="noah - noah">
<option value="72" label="al-jinn - jinns">
<option value="73" label="al-muzzammil - cloaked">
<option value="74" label="al-muddaththir - the forgotten">
<option value="75" label="al-qeyaamah - resurrection">
<option value="76" label="al-insaan - the human">
<option value="77" label="al-mursalaat - dispatched">
<option value="78" label="al-naba’ - the event">
<option value="79" label="al-naaze‘aat - the snatchers">
<option value="80" label="‘abasa - he frowned">
<option value="81" label="al-takweer - the rolling">
<option value="82" label="al-infitaar - the shattering">
<option value="83" label="mutaffifeen - the cheaters">
<option value="84" label="al-inshiqaaq - the rupture">
<option value="85" label="al-burooj - the galaxies">
<option value="86" label="al-taareq - pulsar">
<option value="87" label="AL ALA - THE MOST SUPREME">
<option value="88" label="ghaasheyah - overwhelming">
<option value="89" label="al-fajr - dawn">
<option value="90" label="al-balad - the town">
<option value="91" label="al-shams - the sun">
<option value="92" label="al-layl - the night">
<option value="93" label="al-duhaa - the forenoon">
<option value="94" label="sharh - cooling the temper">
<option value="95" label="al-teen - the fig">
<option value="96" label="al-‘alaq - the embryo">
<option value="97" label="al-qadr - destiny">
<option value="98" label="al-bayyinah - proof">
<option value="99" label="al-zalzalah - the quake">
<option value="100" label="al-‘aadeyaat - the gallopers">
<option value="101" label="al-qaare‘ah - the shocker">
<option value="102" label="al-takaathur - hoarding">
<option value="103" label="al-‘asr - time">
<option value="104" label="al-humazah - the backbiter">
<option value="105" label="al-feel - the elephant">
<option value="106" label="quraish - quraish tribe">
<option value="107" label="al-maa‘oon - charity">
<option value="108" label="al-kawthar - bounty">
<option value="109" label="kaaferoon - the disbelievers">
<option value="110" label="nasr - triumph">
<option value="111" label="al-masad - thorns">
<option value="112" label="al-ikhlaas - absoluteness">
<option value="113" label="al-falaq - daybreak">
<option value="114" label="al-naas - people">
</datalist>
<p id="versesOf74" class="antique first-tour"> </p>
<div class="tables" id="BISMILLAHIRRAHMANIRRAHIM-table">
<a id="start" class="tableLinks" href="/#ovpl=0&onv=1&sura=1&count=الله">
<div class="ondört flip-card">
<div class="flip-card-inner bism">
<div class="flip-card-front bism-text">
<span style="display: inline-block;">IN THE NAME OF ALLAH </span><span style="display: inline-block;">RAHMAN</span><span style="display: inline-block;"> RAHIM</span>
</div>
<div class="flip-card-back bism ondört">
بسم الله الرحمن الرحيم
</div>
</div>
</div>
</a>
</div>
<div id="tables-wrap">
<div class="tables" id="ELMRŜ-table">
<a class="tableLinks" href="/#ovpl=0&onv=0&sura=13&count=ا+ل+م+ر">
<div class="beş flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
elmrŝ
</div>
<div class="flip-card-back">
المرص
</div>
</div>
</div>
</a>
</div>
<div class="tables" id="KHYAŜ-table">
<a class="tableLinks" href="/#ovpl=0&onv=0&sura=19&count=ك+ه+ي+ع+ص">
<div class="beş flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
khyaŝ
</div>
<div class="flip-card-back">
كهيعص
</div>
</div>
</div>
</a>
</div>
<div class="tables" id="THSM-table">
<a class="tableLinks" href="/#ovpl=0&onv=0&sura=26&count=ط+س+م">
<div class="dört flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
thsm
</div>
<div class="flip-card-back">
طهسم
</div>
</div>
</div>
</a>
</div>
<div class="tables" id="YS-table">
<a class="tableLinks" href="/#ovpl=0&onv=0&sura=36&count=ي+س">
<div class="iki flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
ys
</div>
<div class="flip-card-back">
يس
</div>
</div>
</div>
</a>
</div>
<div class="tables" id="Ŝ-table">
<a class="tableLinks" href="/#ovpl=0&onv=0&sura=38&count=ص">
<div class="bir flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
ŝ
</div>
<div class="flip-card-back">
ص
</div>
</div>
</div>
</a>
</div>
<div class="tables" id="ĤM-table">
<a class="tableLinks" href="/#ovpl=0&onv=0&sura=42&count=ح+م">
<div class="ikibuçuk flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
ĥm
</div>
<div class="flip-card-back">
حم
</div>
</div>
</div>
</a>
</div>
<div class="tables" id="ASQ-table">
<a class="tableLinks" href="/#ovpl=0&onv=0&sura=42&count=ع+س+ق">
<div class="üç flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
asq
</div>
<div class="flip-card-back">
عسق
</div>
</div>
</div>
</a>
</div>
<div class="tables" id="Q-table">
<a class="tableLinks" href="/#ovpl=0&onv=0&sura=50&count=ق">
<div class="bir flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
q
</div>
<div class="flip-card-back">
ق
</div>
</div>
</div>
</a>
</div>
<div class="tables" id="N-table">
<a class="tableLinks" href="/#ovpl=0&onv=0&sura=68&count=ن">
<div class="bir flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
n
</div>
<div class="flip-card-back">
ن
</div>
</div>
</div>
</a>
</div>
<div class="tables" id="resurrection-table">
<a class="tableLinks" href="/True_Clock_of_Resurrection/">
<div class="yirmibeş flip-card">
<div class="flip-card-inner resurrection">
<div class="flip-card-front resurrection-text">
CLOCK OF THE RESSURRECTION DAY
</div>
<div class="flip-card-back resurrection yirmibeş">
CLOCK OF THE DOOMSDAY
</div>
</div>
</div>
</a>
</div>
<div class="tables HiddenSecret" id="saat-table">
<a class="tableLinks" href="/time">
<div class="onsekiz flip-card">
<div class="flip-card-inner saat">
<div class="flip-card-front saat-text">
The Knowledge Of The Clock
</div>
<div class="flip-card-back saat onsekiz">
لعلم للساعة
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
<div id="all-tables">
<p class="antique" id="v7429"><a target="_blank" class="antique-link" href="http://HonourableQURAN.com/p/74.html?m=1#29">74:29</a> (It shows) TABLETS to people:</p>
<div id="isim-table" class="back">
<div id="table19">
<table id="BISMILLAHIRRAHMANIRRAHIM">
<thead>
<tr>
<th class="ayraç" colspan="2" style="border-right: 0;">number of repetitions of </th>
</tr>
</thead>
<tbody>
<tr class="İSİM-19">
<td class="no-border-right" id="İSİM"><a class="counts lineHeight30" href="/#ovpl=0&onv=1&sura=1&count=اسم">اسم <> شهيد <br> SHAHEED <> ISIM* <br> WITNESS <> NAME </a></td>
<td class="no-border-left no-border-right" id="İSİM-link"><a class="tamkat repetitions counts" href="/#ovpl=0&onv=1&sura=1&count=اسم">19 = </a></td>
</tr>
<tr class="ALLAH-19">
<td class="no-border-right" id="ALLAH"><a class="counts lineHeight30" href="/#ovpl=0&onv=1&sura=1&count=الله">الله<br> ALLAH*<br>**THE GOD </a></td>
<td class="no-border-left no-border-right" id="ALLAH-link"><a class="tamkat repetitions counts" href="/#ovpl=0&onv=1&sura=1&count=الله"> 2698 = </a></td>
</tr>
<tr class="RAHMAN-19">
<td class="no-border-right" id="RAHMAN"><a class="counts lineHeight30" href="/#ovpl=0&onv=1&sura=1&count=الرحمن">الرحمن<br>AR RAHMAN<br>THE COMPASSIONATE</a></td>
<td class="no-border-left no-border-right" id="RAHMAN-link"><a class="tamkat repetitions counts" href="/#ovpl=0&onv=1&sura=1&count=الرحمن">57 = </a></td>
</tr>
<tr class="RAHİM-19">
<td class="no-border-right" id="RAHİM"><a style="padding-left: 70px; padding-right: 70px;" class="counts lineHeight30" href="/#ovpl=0&onv=1&sura=1&count=الرحيم">الرحيم<br>AR RAHIM<br>**THE MERCIFUL </a></td>
<td class="no-border-left no-border-right" id="RAHİM-link"><a class="tamkat repetitions counts" href="/#ovpl=0&onv=1&sura=1&count=الرحيم">114 = </a></td>
</tr>
<tr>
<td>sum of coefficients</td>
<td class="tamkat" id="coefficients-left">152 = </td>
</tr>
</tbody>
</table>
<table id="BISMILLAHIRRAHMANIRRAHIM-2">
<thead>
<tr>
<th class="ayraç" colspan="2"> abjad value of</th>
</tr>
</thead>
<tbody>
<tr class="İSİM-19">
<td class="no-border-left no-border-right"><a class="tamkat abjad counts" href="/#statement=واحد">19 x 1</a></td>
<td class="no-border-left" id="واحد"><a class="counts lineHeight30" href="/#statement=واحد">واحد<br>VAHID<br>ONE</a></td>
</tr>
<tr class="ALLAH-19">
<td class="no-border-left no-border-right"><a class="tamkat abjad counts" href="/#statement=ذوالفضل_العظیم">19 x 142</a></td>
<td class="no-border-left" id="ذوالفضل العظیم"><a class="counts lineHeight30" href="/#statement=ذوالفضل_العظیم">ذوالفضل العظیم<br>ZUL-FADL-IL AZIM<br> POSSESSOR OF GREAT BOUNTY </a></td>
</tr>
<tr class="RAHMAN-19">
<td class="no-border-left no-border-right"><a class="tamkat abjad counts" href="/#statement=مجید">19 x 3</a></td>
<td class="no-border-left" id="مجید"><a class="counts lineHeight30" href="/#statement=مجید">مجید<br>MAJID<br>GLORIOUS</a></td>
</tr>
<tr class="RAHİM-19">
<td class="no-border-left no-border-right"><a class="tamkat abjad counts" href="/#statement=جامع">19 x 6</a></td>
<td class="no-border-left" id="جامع"><a class="counts lineHeight30" href="/#statement=جامع">جامع<br>JAMI<br>GATHERER</a></td>
</tr>
<tr>
<td class="tamkat" id="coefficients-right">19 x 8</td>
<td>1 + 142 + 3 + 6</td>
</tr>
</tbody>
</table>
</div>
<div class="caption">* non-lean versions of "اسم" and "الله" has not counted as false positives.</div>
<div id="uyarı">** 9:128-129 are from satan! NOT FROM THE GOD!</div>
<a href="http://quranix.org/c/$hd" target="_blank" class="caption dip">WITNESS / "شهيد" Occurs In QURAN 19 Times As Active Noun.</a>
</div>
<div class="bismBack">
<table id="bismTable19">
<tbody>
<tr>
<td id="bismHead" class="till-19 ALLAH-19 lineHeight30" colspan="23"><a href="/#statement=بسم_الله_الرحمن_الرحيم">IN THE NAME OF ALLAH RAHMAN AND RAHIM!</a></td>
</tr>
<tr>
<td class="till-19 ALLAH-19 lineHeight30" colspan="23"><a href="/#statement=بسم_الله_الرحمن_الرحيم">بسم الله الرحمن الرحيم</a></td>
</tr>
<tr>
<td></td>
<td class="name-1 İSİM-19" colspan="3"><a href="/#statement=بسم">بسم</a></td>
<td></td>
<td class="name-2 ALLAH-19" colspan="4"><a href="/#statement=الله">الله</a></td>
<td></td>
<td class="name-3 RAHMAN-19" colspan="6"><a href="/#statement=الرحمن">الرحمن</a></td>
<td></td>
<td class="name-4 RAHİM-19" colspan="6"><a href="/#statement=الرحيم">الرحيم</a></td>
</tr>
<tr>
<td></td>
<td class="till-1 Be"><a href="/#statement=ب">1</a></td>
<td class="till-2 Sin"><a href="/#statement=بس">2</a></td>
<td class="till-3 Mim"><a href="/#statement=بسم">3</a></td>
<td></td>
<td class="till-4 Elif"><a href="/#statement=بسم_ا">4</a></td>
<td class="till-5 Lam"><a href="/#statement=بسم_ال">5</a></td>
<td class="till-6 Lam"><a href="/#statement=بسم_الل">6</a></td>
<td class="till-7 He"><a href="/#statement=بسم_الله">7</a></td>
<td></td>
<td class="till-8 Elif"><a href="/#statement=بسم_الله_ا">8</a></td>
<td class="till-9 Lam"><a href="/#statement=بسم_الله_ال">9</a></td>
<td class="till-10 Ra"><a href="/#statement=بسم_الله_الر">10</a></td>
<td class="till-11 Ha"><a href="/#statement=بسم_الله_الرح">11</a></td>
<td class="till-12 Mim"><a href="/#statement=بسم_الله_الرحم">12</a></td>
<td class="till-13 Nun"><a href="/#statement=بسم_الله_الرحمن">13</a></td>
<td></td>
<td class="till-14 Elif"><a href="/#statement=بسم_الله_الرحمن_ا">14</a></td>
<td class="till-15 Lam"><a href="/#statement=بسم_الله_الرحمن_ال">15</a></td>
<td class="till-16 Ra"><a href="/#statement=بسم_الله_الرحمن_الر">16</a></td>
<td class="till-17 Ha"><a href="/#statement=بسم_الله_الرحمن_الرح">17</a></td>
<td class="till-18 Ye"><a href="/#statement=بسم_الله_الرحمن_الرحي">18</a></td>
<td class="till-19 Mim"><a class="tamkat" href="/#statement=بسم_الله_الرحمن_الرحيم">19</a></td>
</tr>
<tr>
<td></td>
<td class="letter Be"><a href="/#statement=ب">ب</a></td>
<td class="letter Sin"><a href="/#statement=س">س</a></td>
<td class="letter Mim"><a href="/#statement=م">م</a></td>
<td></td>
<td class="letter Elif"><a href="/#statement=ا">ا</a></td>
<td class="letter Lam"><a href="/#statement=ل">ل</a></td>
<td class="letter Lam"><a href="/#statement=ل">ل</a></td>
<td class="letter He"><a href="/#statement=ه">ه</a></td>
<td></td>
<td class="letter Elif"><a href="/#statement=ا">ا</a></td>
<td class="letter Lam"><a href="/#statement=ل">ل</a></td>
<td class="letter Ra"><a href="/#statement=ر">ر</a></td>
<td class="letter Ha"><a href="/#statement=ح">ح</a></td>
<td class="letter Mim"><a href="/#statement=م">م</a></td>
<td class="letter Nun"><a href="/#statement=ن">ن</a></td>
<td></td>
<td class="letter Elif"><a href="/#statement=ا">ا</a></td>
<td class="letter Lam"><a href="/#statement=ل">ل</a></td>
<td class="letter Ra"><a href="/#statement=ر">ر</a></td>
<td class="letter Ha"><a href="/#statement=ح">ح</a></td>
<td class="letter Ye"><a href="/#statement=ي">ي</a></td>
<td class="letter Mim"><a href="/#statement=م">م</a></td>
</tr>
<tr>
<td class="nameOrder">1</td>
<td class="letter Be"><a href="/#statement=ب">2</a></td>
<td class="letter Sin"><a href="/#statement=س">60</a></td>
<td class="letter Mim"><a href="/#statement=م">40</a></td>
<td class="nameOrder">2</td>
<td class="letter Elif"><a href="/#statement=ا">1</a></td>
<td class="letter Lam"><a href="/#statement=ل">30</a></td>
<td class="letter Lam"><a href="/#statement=ل">30</a></td>
<td class="letter He"><a href="/#statement=ه">5</a></td>
<td class="nameOrder">3</td>
<td class="letter Elif"><a href="/#statement=ا">1</a></td>
<td class="letter Lam"><a href="/#statement=ل">30</a></td>
<td class="letter Ra"><a href="/#statement=ر">200</a></td>
<td class="letter Ha"><a href="/#statement=ح">8</a></td>
<td class="letter Mim"><a href="/#statement=م">40</a></td>
<td class="letter Nun"><a href="/#statement=ن">50</a></td>
<td class="nameOrder">4</td>
<td class="letter Elif"><a href="/#statement=ا">1</a></td>
<td class="letter Lam"><a href="/#statement=ل">30</a></td>
<td class="letter Ra"><a href="/#statement=ر">200</a></td>
<td class="letter Ha"><a href="/#statement=ح">8</a></td>
<td class="letter Ye"><a href="/#statement=ي">10</a></td>
<td class="letter Mim"><a href="/#statement=م">40</a></td>
</tr>
<tr>
<td class="nameOrder">1</td>
<td class="till-1 Be"><a href="/#statement=ب">2</a></td>
<td class="till-2 Sin"><a href="/#statement=بس">62</a></td>
<td class="till-3 Mim"><a href="/#statement=بسم">102</a></td>
<td class="nameOrder">2</td>
<td class="till-4 Elif"><a href="/#statement=بسم_ا">103</a></td>
<td class="till-5 Lam"><a href="/#statement=بسم_ال">133</a></td>
<td class="till-6 Lam"><a href="/#statement=بسم_الل">163</a></td>
<td class="till-7 He"><a href="/#statement=بسم_الله">168</a></td>
<td class="nameOrder">3</td>
<td class="till-8 Elif"><a href="/#statement=بسم_الله_ا">169</a></td>
<td class="till-9 Lam"><a href="/#statement=بسم_الله_ال">199</a></td>
<td class="till-10 Ra"><a href="/#statement=بسم_الله_الر">399</a></td>
<td class="till-11 Ha"><a href="/#statement=بسم_الله_الرح">407</a></td>
<td class="till-12 Mim"><a href="/#statement=بسم_الله_الرحم">447</a></td>
<td class="till-13 Nun"><a href="/#statement=بسم_الله_الرحمن">497</a></td>
<td class="nameOrder">4</td>
<td class="till-14 Elif"><a href="/#statement=بسم_الله_الرحمن_ا">498</a></td>
<td class="till-15 Lam"><a href="/#statement=بسم_الله_الرحمن_ال">528</a></td>
<td class="till-16 Ra"><a href="/#statement=بسم_الله_الرحمن_الر">728</a></td>
<td class="till-17 Ha"><a href="/#statement=بسم_الله_الرحمن_الرح">736</a></td>
<td class="till-18 Ye"><a href="/#statement=بسم_الله_الرحمن_الرحي">746</a></td>
<td class="till-19 Mim"><a href="/#statement=بسم_الله_الرحمن_الرحيم">786</a></td>
</tr>
<tr>
<td class="nameOrder">1</td>
<td class="name-1 İSİM-19" colspan="3"><a href="/#statement=بسم">3</a></td>
<td class="nameOrder">2</td>
<td class="name-2 ALLAH-19" colspan="4"><a href="/#statement=الله">4</a></td>
<td class="nameOrder">3</td>
<td class="name-3 RAHMAN-19" colspan="6"><a href="/#statement=الرحمن">6</a></td>
<td class="nameOrder">4</td>
<td class="name-4 RAHİM-19" colspan="6"><a href="/#statement=الرحيم">6</a></td>
</tr>
<tr>
<td class="nameOrder">1</td>
<td class="till-3 İSİM-19" colspan="3"><a href="/#statement=بسم">3</a></td>
<td class="nameOrder">2</td>
<td class="till-7 ALLAH-19" colspan="4"><a href="/#statement=بسم_الله">7</a></td>
<td class="nameOrder">3</td>
<td class="till-13 RAHMAN-19" colspan="6"><a href="/#statement=بسم_الله_الرحمن">13</a></td>
<td class="nameOrder">4</td>
<td class="till-19 RAHİM-19" colspan="6"><a class="tamkat" href="/#statement=بسم_الله_الرحمن_الرحيم">19</a></td>
</tr>
<tr>
<td class="nameOrder">1</td>
<td class="name-1 İSİM-19" colspan="3"><a href="/#statement=بسم">102</a></td>
<td class="nameOrder">2</td>
<td class="name-2 ALLAH-19" colspan="4"><a href="/#statement=الله">66</a></td>
<td class="nameOrder">3</td>
<td class="name-3 RAHMAN-19" colspan="6"><a href="/#statement=الرحمن">329</a></td>
<td class="nameOrder">4</td>
<td class="name-4 RAHİM-19" colspan="6"><a href="/#statement=الرحيم">289</a></td>
</tr>
<tr>
<td class="nameOrder">1</td>
<td class="till-3 İSİM-19" colspan="3"><a href="/#statement=بسم">102</a></td>
<td class="nameOrder">2</td>
<td class="till-7 ALLAH-19" colspan="4"><a href="/#statement=بسم_الله">168</a></td>
<td class="nameOrder">3</td>
<td class="till-13 RAHMAN-19" colspan="6"><a href="/#statement=بسم_الله_الرحمن">497</a></td>
<td class="nameOrder">4</td>
<td class="till-19 RAHİM-19" colspan="6"><a href="/#statement=بسم_الله_الرحمن_الرحيم">786</a></td>
</tr>
<tr class="kırma">
<td class="tamkat bismPadding kırma" colspan="23"><span id="beyaz">1 (</span>2 60 40<span id="beyaz">) 2 (</span>1 30 30 5<span id="beyaz">) 3 (</span>1 30 200 8 40 50<span id="beyaz">) 4 (</span>1 30 200 8 10 40<span id="beyaz">)</span> = 19 x 66...</td>
</tr>
<tr class="kırma">
<td class="tamkat bismPadding kırma" colspan="23"><span id="beyaz">1 (</span>2 62 102<span id="beyaz">) 2 (</span>103 133 163 168<span id="beyaz">) 3 (</span>169 199 399 407 447 497<span id="beyaz">) 4 (</span>498 528 728 736 746 786<span id="beyaz">)</span> = 19 x 66...</td>
</tr>
<tr class="kırma">
<td class="tamkat bismPadding kırma" colspan="23"><span id="beyaz">1 (</span>3<span id="beyaz">) 2 (</span>4<span id="beyaz">) 3 (</span>6<span id="beyaz">) 4 (</span>6<span id="beyaz">)</span> = 19 x 697034 </td>
</tr>
<tr class="kırma">
<td class="tamkat bismPadding kırma" colspan="23"><span id="beyaz">1 (</span>3<span id="beyaz">) 2 (</span>7<span id="beyaz">) 3 (</span>13<span id="beyaz">) 4 (</span>19<span id="beyaz">)</span> = 19 x 69858601 </td>
</tr>
<tr class="kırma">
<td class="tamkat bismPadding kırma" colspan="23"><span id="beyaz">1 (</span>102<span id="beyaz">) 2 (</span>66<span id="beyaz">) 3 (</span>329<span id="beyaz">) 4 (</span>289<span id="beyaz">)</span> = 19 x 5801401752331 </td>
</tr>
<tr class="kırma">
<td class="tamkat bismPadding kırma" colspan="23"><span id="beyaz">1 (</span>102<span id="beyaz">) 2 (</span>168<span id="beyaz">) 3 (</span>497<span id="beyaz">) 4 (</span>786<span id="beyaz">)</span> = 19 x 58011412367094</td>
</tr>
</tbody>
<caption><a id="captionLink" target="_blank" href="https://www.masjidtucson.org/quran/miracle/div19.php">you can divide long numbers to 19 with this online tool or by pen and paper IF GOD WILLS</a></caption>
</table>
</div>
<div class="back">
<table id = "ELMRŜ">
<thead>
<tr>
<th>sura</th>
<th>e ا</th>
<th>l ل</th>
<th>m م</th>
<th>r ر</th>
<th>ŝ ص</th>
<th>total</th>
</tr>
</thead>
<tbody>
<tr class="suraRow" id="r2">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=2&count=ا+ل+م">2. the heifer البقرة</a></td>
<td><a class="Elif counts" href="/#ovpl=0&onv=0&sura=2&count=ا">4504</a></td>
<td><a class="Lam counts" href="/#ovpl=0&onv=0&sura=2&count=ل">3202</a></td>
<td><a class="Mim counts" href="/#ovpl=0&onv=0&sura=2&count=م">2195</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=2&count=ا+ل+م"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=2&count=ا+ل+م"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=2&count=ا+ل+م">9901</a></td>
</tr>
<tr class="suraRow" id="r3">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=3&count=ا+ل+م">3. the amramites آل عمران</a></td>
<td><a class="Elif counts" href="/#ovpl=0&onv=0&sura=3&count=ا">2511</a></td>
<td><a class="Lam counts" href="/#ovpl=0&onv=0&sura=3&count=ل">1892</a></td>
<td><a class="Mim counts" href="/#ovpl=0&onv=0&sura=3&count=م">1249</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=3&count=ا+ل+م"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=3&count=ا+ل+م"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=3&count=ا+ل+م">5652</a></td>
</tr>
<tr class="suraRow" id="r7">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=7&count=ا+ل+م+ص">7. the purgatory الأعراف</a></td>
<td><a class="Elif counts" href="/#ovpl=0&onv=0&sura=7&count=ا">2521</a></td>
<td><a class="Lam counts" href="/#ovpl=0&onv=0&sura=7&count=ل">1530</a></td>
<td><a class="Mim counts" href="/#ovpl=0&onv=0&sura=7&count=م">1164</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=7&count=ا+ل+م+ص"> </a></td>
<td><a class="Sad counts" href="/#ovpl=0&onv=0&sura=7&count=ص">97*</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=7&count=ا+ل+م+ص">5312</a></td>
</tr>
<tr class="suraRow" id="r10">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=10&count=ا+ل+ر">10. jonah يونس</a></td>
<td><a class="Elif counts" href="/#ovpl=0&onv=0&sura=10&count=ا">1323</a></td>
<td><a class="Lam counts" href="/#ovpl=0&onv=0&sura=10&count=ل">913</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=10&count=ا+ل+ر"> </a></td>
<td><a class="Ra counts" href="/#ovpl=0&onv=0&sura=10&count=ر">257</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=10&count=ا+ل+ر"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=10&count=ا+ل+ر">2493</a></td>
</tr>
<tr class="suraRow" id="r11">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=11&count=ا+ل+ر">11. hood هود</a></td>
<td><a class="Elif counts" href="/#ovpl=0&onv=0&sura=11&count=ا">1373</a></td>
<td><a class="Lam counts" href="/#ovpl=0&onv=0&sura=11&count=ل">795</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=11&count=ا+ل+ر"> </a></td>
<td><a class="Ra counts" href="/#ovpl=0&onv=0&sura=11&count=ر">325</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=11&count=ا+ل+ر"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=11&count=ا+ل+ر">2493</a></td>
</tr>
<tr class="suraRow" id="r12">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=12&count=ا+ل+ر">12. joseph يوسف</a></td>
<td><a class="Elif counts" href="/#ovpl=0&onv=0&sura=12&count=ا">1315</a></td>
<td><a class="Lam counts" href="/#ovpl=0&onv=0&sura=12&count=ل">812</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=12&count=ا+ل+ر"> </a></td>
<td><a class="Ra counts" href="/#ovpl=0&onv=0&sura=12&count=ر">257</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=12&count=ا+ل+ر"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=12&count=ا+ل+ر">2384</a></td>
</tr>
<tr class="suraRow" id="r13">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=13&count=ا+ل+م+ر">13. thunder الرعد</a></td>
<td><a class="Elif counts" href="/#ovpl=0&onv=0&sura=13&count=ا">610</a></td>
<td><a class="Lam counts" href="/#ovpl=0&onv=0&sura=13&count=ل">480</a></td>
<td><a class="Mim counts" href="/#ovpl=0&onv=0&sura=13&count=م">260</a></td>
<td><a class="Ra counts" href="/#ovpl=0&onv=0&sura=13&count=ر">137</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=13&count=ا+ل+م+ر"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=13&count=ا+ل+م+ر">1487</a></td>
</tr>
<tr class="suraRow" id="r14">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=14&count=ا+ل+ر">14. abraham ابراهيم</a></td>
<td><a class="Elif counts" href="/#ovpl=0&onv=0&sura=14&count=ا">589</a></td>
<td><a class="Lam counts" href="/#ovpl=0&onv=0&sura=14&count=ل">452</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=14&count=ا+ل+ر"> </a></td>
<td><a class="Ra counts" href="/#ovpl=0&onv=0&sura=14&count=ر">160</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=14&count=ا+ل+ر"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=14&count=ا+ل+ر">1201</a></td>
</tr>
<tr class="suraRow" id="r15">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=15&count=ا+ل+ر">15. al-hijr valley الحجر</a></td>
<td><a class="Elif counts" href="/#ovpl=0&onv=0&sura=15&count=ا">493</a></td>
<td><a class="Lam counts" href="/#ovpl=0&onv=0&sura=15&count=ل">323</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=15&count=ا+ل+ر"> </a></td>
<td><a class="Ra counts" href="/#ovpl=0&onv=0&sura=15&count=ر">96</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=15&count=ا+ل+ر"> </a></td>
<td><a class="tamKat counts" href="/#ovpl=0&onv=0&sura=15&count=ا+ل+ر">912 = 19 x 48</a></td>
</tr>
<tr class="suraRow" id="r29">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=29&count=ا+ل+م">29. the spider العنكبوت</a></td>
<td><a class="Elif counts" href="/#ovpl=0&onv=0&sura=29&count=ا">771</a></td>
<td><a class="Lam counts" href="/#ovpl=0&onv=0&sura=29&count=ل">554</a></td>
<td><a class="Mim counts" href="/#ovpl=0&onv=0&sura=29&count=م">344</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=29&count=ا+ل+م"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=29&count=ا+ل+م"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=29&count=ا+ل+م">1669</a></td>
</tr>
<tr class="suraRow" id="r30">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=30&count=ا+ل+م">30. the romans الروم</a></td>
<td><a class="Elif counts" href="/#ovpl=0&onv=0&sura=30&count=ا">542</a></td>
<td><a class="Lam counts" href="/#ovpl=0&onv=0&sura=30&count=ل">394</a></td>
<td><a class="Mim counts" href="/#ovpl=0&onv=0&sura=30&count=م">317</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=30&count=ا+ل+م"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=30&count=ا+ل+م"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=30&count=ا+ل+م">1253</a></td>
</tr>
<tr class="suraRow" id="r31">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=31&count=ا+ل+م">31. luqmaan لقمان</a></td>
<td><a class="Elif counts" href="/#ovpl=0&onv=0&sura=31&count=ا">353</a></td>
<td><a class="Lam counts" href="/#ovpl=0&onv=0&sura=31&count=ل">297</a></td>
<td><a class="Mim counts" href="/#ovpl=0&onv=0&sura=31&count=م">173</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=31&count=ا+ل+م"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=31&count=ا+ل+م"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=31&count=ا+ل+م">823</a></td>
</tr>
<tr class="suraRow" id="r32">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=32&count=ا+ل+م">32. prostration السجدة</a></td>
<td><a class="Elif counts" href="/#ovpl=0&onv=0&sura=32&count=ا">264</a></td>
<td><a class="Lam counts" href="/#ovpl=0&onv=0&sura=32&count=ل">155</a></td>
<td><a class="Mim counts" href="/#ovpl=0&onv=0&sura=32&count=م">158</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=32&count=ا+ل+م"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=32&count=ا+ل+م"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=32&count=ا+ل+م">577</a></td>
</tr>
<tr>
<td class="totals">totals</td>
<td class="totals">17169</td>
<td class="totals">11799</td>
<td class="totals">5860</td>
<td class="totals">1232</td>
<td class="totals">97</td>
<td class="tamKat totals">36157 = 19 x 1903</td>
</tr>
</tbody>
<caption><a id="captionLink" target="_blank" href="/pic/bastatan.jpg">* in The Tashkent QURAN, word بسطة in verse 7:69 is written with س not with ص</a></caption>
</table>
</div>
<div class="back">
<table id="KHYAŜ">
<thead>
<tr>
<th>sura</th>
<th>k ك</th>
<th>h ه</th>
<th>y ي</th>
<th>a ع</th>
<th>ŝ ص</th>
<th>total</th>
</tr>
</thead>
<tbody>
<tr class="suraRow" id="r19">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=19&count=ك+ه+ي+ع+ص">19. mary مريم</a></td>
<td><a class="Kef counts" href="/#ovpl=0&onv=0&sura=19&count=ك">137</a></td>
<td><a class="He counts" href="/#ovpl=0&onv=0&sura=19&count=ه">175</a></td>
<td><a class="Ye counts" href="/#ovpl=0&onv=0&sura=19&count=ي">343</a></td>
<td><a class="Ayn counts" href="/#ovpl=0&onv=0&sura=19&count=ع">117</a></td>
<td><a class="Sad counts" href="/#ovpl=0&onv=0&sura=19&count=ص">26</a></td>
<td><a class="countsTotal" href="/#ovpl=0&onv=0&sura=19&count=ك+ه+ي+ع+ص">798 = 19 x 42</a></td>
</tr>
</tbody>
</table>
</div>
<div class="back">
<table id = "THSM">
<thead>
<tr>
<th>sura</th>
<th>t ط</th>
<th>h ه</th>
<th>s س</th>
<th>m م</th>
<th>total</th>
</tr>
</thead>
<tbody>
<tr class="suraRow" id="r19h">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=19&count=ه">19. mary مريم</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=19&count=ه"> </a></td>
<td><a class="He counts" href="/#ovpl=0&onv=0&sura=19&count=ه">175</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=19&count=ه"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=19&count=ه"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=19&count=ه">175</a></td>
</tr>
<tr class="suraRow" id="r20">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=20&count=ط+ه">20. t.h. طه</a></td>
<td><a class="Tı counts" href="/#ovpl=0&onv=0&sura=20&count=ط">28</a></td>
<td><a class="He counts" href="/#ovpl=0&onv=0&sura=20&count=ه">251</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=20&count=ط+ه"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=20&count=ط+ه"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=20&count=ط+ه">279</a></td>
</tr>
<tr class="suraRow" id="r26">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=26&count=ط+س+م">26. the poets الشعراء</a></td>
<td><a class="Tı counts" href="/#ovpl=0&onv=0&sura=26&count=ط">33</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=26&count=ط+س+م"> </a></td>
<td><a class="Sin counts" href="/#ovpl=0&onv=0&sura=26&count=س">94</a></td>
<td><a class="Mim counts" href="/#ovpl=0&onv=0&sura=26&count=م">484</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=26&count=ط+س+م">611</a></td>
</tr>
<tr class="suraRow" id="r27">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=27&count=ط+س">27. the ant النمل</a></td>
<td><a class="Tı counts" href="/#ovpl=0&onv=0&sura=27&count=ط">27</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=27&count=ط+س"> </a></td>
<td><a class="Sin counts" href="/#ovpl=0&onv=0&sura=27&count=س">94</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=27&count=ط+س"> </a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=27&count=ط+س">121</a></td>
</tr>
<tr class="suraRow" id="r28">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=28&count=ط+س+م">28. history القصص</a></td>
<td><a class="Tı counts" href="/#ovpl=0&onv=0&sura=28&count=ط">19</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=28&count=ط+س+م"> </a></td>
<td><a class="Sin counts" href="/#ovpl=0&onv=0&sura=28&count=س">102</a></td>
<td><a class="Mim counts" href="/#ovpl=0&onv=0&sura=28&count=م">460</a></td>
<td><a class="counts" href="/#ovpl=0&onv=0&sura=28&count=ط+س+م">581</a></td>
</tr>
<tr>
<td class="totals">totals</td>
<td class="totals">107</td>
<td class="totals">426</td>
<td class="totals">290</td>
<td class="totals">944</td>
<td class="tamKat totals">1767 = 19 x 93</td>
</tr>
</tbody>
</table>
</div>
<div class="back">
<table id="YS">
<thead>
<tr>
<th>sura</th>
<th>y ي</th>
<th>s س</th>
<th>total</th>
</tr>
</thead>
<tbody>
<tr class="suraRow" id="r36">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=36&count=ي+س">36. y.s. يس</a></td>
<td><a class="Ye counts" href="/#ovpl=0&onv=0&sura=36&count=ي">237</a></td>
<td><a class="Sin counts" href="/#ovpl=0&onv=0&sura=36&count=س">48</a></td>
<td><a class="countsTotal" href="/#ovpl=0&onv=0&sura=36&count=ي+س">285 = 19 x 15</a></td>
</tr>
</tbody>
</table>
</div>
<div class="back" id="Ŝ-back">
<table id="Ŝ">
<thead>
<tr>
<th>SURA</th>
<th>Ŝ ص</th>
</tr>
</thead>
<tbody>
<tr class="suraRow" id="r7Ŝ">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=7&count=ص">7. the purgatory الأعراف</a></td>
<td><a class="Sad counts" href="/#ovpl=0&onv=0&sura=7&count=ص">97*</a></td>
</tr>
<tr class="suraRow" id="r19Ŝ">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=19&count=ص">19. mary مريم</a></td>
<td><a class="Sad counts" href="/#ovpl=0&onv=0&sura=19&count=ص">26</a></td>
</tr>
<tr class="suraRow" id="r38">
<td class="suras"><a href="/#ovpl=0&onv=0&sura=38&count=ص">38. ŝ. ص</a></td>
<td><a class="Sad counts" href="/#ovpl=0&onv=0&sura=38&count=ص">29</a></td>
</tr>
<tr>
<td class="totals">total</td>
<td class="tamKat totals">152 = 19 x 8</td>
</tr>
</tbody>
</table>
</div>
<a id="Ŝ_caption" target="_blank" href="/pic/bastatan.jpg">* in The Tashkent QURAN, word بسطة in verse 7:69 is written with س not with ص</a>
<div id="ĤM-wrapper">
<div id="ĤM4046">
<div class="back" id="ĤM4042-wrapper">
<table class="ĤM" id="ĤM4042">
<thead>
<tr>
<th>sura</th>
<th>ĥ ح</th>
<th>m م</th>
<th>total</th>
</tr>
</thead>
<tbody>
<tr class="suraRow" id="r40">
<td class="suras"><a class="ĤMcell" href="/#ovpl=0&onv=0&sura=40&count=ح+م">40. forgiver غافر</a></td>
<td><a class="Ha ĤMcell counts" href="/#ovpl=0&onv=0&sura=40&count=ح">64</a></td>
<td><a class="Mim ĤMcell counts" href="/#ovpl=0&onv=0&sura=40&count=م">380</a></td>
<td><a class="ĤMcell counts" href="/#ovpl=0&onv=0&sura=40&count=ح+م">444</a></td>
</tr>
<tr class="suraRow r41">
<td class="suras"><a class="ĤMcell" href="/#ovpl=0&onv=0&sura=41&count=ح+م">41. detailed فصلت</a></td>
<td><a class="Ha ĤMcell counts" href="/#ovpl=0&onv=0&sura=41&count=ح">48</a></td>
<td><a class="Mim ĤMcell counts" href="/#ovpl=0&onv=0&sura=41&count=م">276</a></td>
<td><a class="ĤMcell counts" href="/#ovpl=0&onv=0&sura=41&count=ح+م">324</a></td>
</tr>
<tr class="suraRow r42">
<td class="suras"><a class="ĤMcell" href="/#ovpl=0&onv=0&sura=42&count=ح+م">42. consultation الشورى</a></td>
<td><a class="Ha ĤMcell counts" href="/#ovpl=0&onv=0&sura=42&count=ح">53</a></td>
<td><a class="Mim ĤMcell counts" href="/#ovpl=0&onv=0&sura=42&count=م">300</a></td>
<td><a class="ĤMcell counts" href="/#ovpl=0&onv=0&sura=42&count=ح+م">353</a></td>
</tr>
<tr>
<td class="totals">totals</td>
<td class="totals">165</td>
<td class="totals">956</td>
<td class="tamKat totals">1121 = 19 x 59</td>
</tr>
</tbody>
</table>
</div>
<div class="back">
<table class="ĤM" id="ĤM4346">
<thead>
<tr>
<th>sura</th>
<th>ĥ ح</th>
<th>m م</th>
<th>total</th>
</tr>
</thead>
<tbody>
<tr class="suraRow r43">
<td class="suras"><a class="ĤMcell" href="/#ovpl=0&onv=0&sura=43&count=ح+م">43. ornaments الزخرف</a></td>
<td><a class="Ha ĤMcell counts" href="/#ovpl=0&onv=0&sura=43&count=ح">44</a></td>
<td><a class="Mim ĤMcell counts" href="/#ovpl=0&onv=0&sura=43&count=م">324</a></td>
<td><a class="ĤMcell counts" href="/#ovpl=0&onv=0&sura=43&count=ح+م">368</a></td>
</tr>
<tr class="suraRow" id="r44">
<td class="suras"><a class="ĤMcell" href="/#ovpl=0&onv=0&sura=44&count=ح+م">44. smoke الدخان</a></td>
<td><a class="Ha ĤMcell counts" href="/#ovpl=0&onv=0&sura=44&count=ح">16</a></td>
<td><a class="Mim ĤMcell counts" href="/#ovpl=0&onv=0&sura=44&count=م">150</a></td>
<td><a class="ĤMcell counts" href="/#ovpl=0&onv=0&sura=44&count=ح+م">166</a></td>
</tr>
<tr class="suraRow" id="r45">
<td class="suras"><a class="ĤMcell" href="/#ovpl=0&onv=0&sura=45&count=ح+م">45. kneeling الجاثية</a></td>
<td><a class="Ha ĤMcell counts" href="/#ovpl=0&onv=0&sura=45&count=ح">31</a></td>
<td><a class="Mim ĤMcell counts" href="/#ovpl=0&onv=0&sura=45&count=م">200</a></td>
<td><a class="ĤMcell counts" href="/#ovpl=0&onv=0&sura=45&count=ح+م">231</a></td>
</tr>
<tr class="suraRow" id="r46">
<td class="suras"><a class="ĤMcell" href="/#ovpl=0&onv=0&sura=46&count=ح+م">46. the dunes الأحقاف</a></td>
<td><a class="Ha ĤMcell counts" href="/#ovpl=0&onv=0&sura=46&count=ح">36</a></td>
<td><a class="Mim ĤMcell counts" href="/#ovpl=0&onv=0&sura=46&count=م">225</a></td>
<td><a class="ĤMcell counts" href="/#ovpl=0&onv=0&sura=46&count=ح+م">261</a></td>
</tr>
<tr>
<td class="totals">totals</td>
<td class="totals">127</td>
<td class="totals">899</td>
<td class="tamKat totals">1026 = 19 x 54</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="back" id="ĤM4143-wrapper">
<table class="ĤM" id="ĤM4143">
<thead>
<tr>
<th>sura</th>
<th>ĥ ح</th>
<th>m م</th>
<th>total</th>
</tr>
</thead>
<tbody>
<tr class="suraRow r41">
<td class="suras"><a class="ĤMcell" href="/#ovpl=0&onv=0&sura=41&count=ح+م">41. detailed فصلت</a></td>
<td><a class="Ha ĤMcell counts" href="/#ovpl=0&onv=0&sura=41&count=ح">48</a></td>
<td><a class="Mim ĤMcell counts" href="/#ovpl=0&onv=0&sura=41&count=م">276</a></td>
<td><a class="ĤMcell counts" href="/#ovpl=0&onv=0&sura=41&count=ح+م">324</a></td>
</tr>
<tr class="suraRow r42">
<td class="suras"><a class="ĤMcell" href="/#ovpl=0&onv=0&sura=42&count=ح+م">42. consultation الشورى</a></td>
<td><a class="Ha ĤMcell counts" href="/#ovpl=0&onv=0&sura=42&count=ح">53</a></td>
<td><a class="Mim ĤMcell counts" href="/#ovpl=0&onv=0&sura=42&count=م">300</a></td>
<td><a class="ĤMcell counts" href="/#ovpl=0&onv=0&sura=42&count=ح+م">353</a></td>
</tr>
<tr class="suraRow r43">
<td class="suras"><a class="ĤMcell" href="/#ovpl=0&onv=0&sura=43&count=ح+م">43. ornaments الزخرف</a></td>
<td><a class="Ha ĤMcell counts" href="/#ovpl=0&onv=0&sura=43&count=ح">44</a></td>
<td><a class="Mim ĤMcell counts" href="/#ovpl=0&onv=0&sura=43&count=م">324</a></td>
<td><a class="ĤMcell counts" href="/#ovpl=0&onv=0&sura=43&count=ح+م">368</a></td>
</tr>
<tr>
<td class="totals">totals</td>
<td class="totals">145</td>
<td class="totals">900</td>
<td class="tamKat totals">1045 = 19 x 55</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="back">
<table id="ASQ">
<thead>
<tr>