-
Notifications
You must be signed in to change notification settings - Fork 0
/
source.html
2673 lines (2574 loc) · 105 KB
/
source.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
<!-- Begining of The Occult Abjad Calculator -->
<!-- PART 1 BEGIN -->
<style id="abjadboard">
@font-face {
font-family: 'ScheherazadeNew';
src: url('//abdil.one/wp-includes/fonts/ScheherazadeNew-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
#keyboardInputMaster {
position: absolute;
display: block;
font-size: 11px;
font-family: 'ScheherazadeNew';
border: 0px solid rgba(15, 15, 15, .4);
-webkit-border-radius: 0.2em;
-moz-border-radius: 0.2em;
border-radius: 0.2em;
-webkit-box-shadow: 0px 2px 10px rgba(15, 15, 15, .0);
-moz-box-shadow: 0px 2px 10px rgba(15, 15, 15, .0);
box-shadow: 0px 2px 10px rgba(15, 15, 15, .0);
background-color: rgba(0, 0, 0, .0);
text-align: left;
z-index: 100000;
width: auto;
height: auto;
min-width: 0;
min-height: 0;
margin: 0px;
padding: 0px;
line-height: normal;
-moz-user-select: none;
cursor: url(//abdil.one/wp-content/themes/period/altinimlec.cur), auto;
}
#keyboardInputMaster * {
position: static;
color: rgba(10, 175, 10, 0.3);
background: transparent;
font-size: 11px;
font-family: 'ScheherazadeNew';
width: auto;
height: auto;
min-width: 0;
min-height: 0;
margin: 0px;
padding: 0px;
border: 0px none;
outline: 0px;
vertical-align: baseline;
line-height: 1.3em;
}
#keyboardInputMaster table {
table-layout: auto;
}
#keyboardInputMaster.keyboardInputSize4,
#keyboardInputMaster.keyboardInputSize4 * {
font-size: 3.4vw;
}
#keyboardInputMaster thead tr th {
padding: 0.3em 0.3em 0.1em 0.3em;
background-color: rgba(0, 0, 0, .4);
white-space: nowrap;
text-align: right;
-webkit-border-radius: 0.2em 0.2em 0px 0px;
-moz-border-radius: 0.2em 0.2em 0px 0px;
border-radius: 0.2em 0.2em 0px 0px;
}
#keyboardInputMaster thead tr th div {
float: left;
font-size: 130% !important;
height: 1.3em;
font-weight: bold;
position: relative;
z-index: 1;
margin-right: 0.5em;
cursor: url(//abdil.one/wp-content/themes/period/infinityeldiveni.cur), auto;
background-color: transparent;
}
#keyboardInputMaster thead tr th div ol {
-webkit-backdrop-filter: blur(3px);
backdrop-filter: blur(3px);
position: absolute;
left: 0px;
top: 90%;
list-style-type: none;
height: 9.4em;
overflow-y: auto;
overflow-x: hidden;
background-color: rgba(0, 0, 0, .4);
border: 1px solid rgba(15, 15, 15, .4);
display: none;
text-align: left;
width: 12em;
}
#keyboardInputMaster thead tr th div ol li {
padding: 0.2em 0.4em;
cursor: url(//abdil.one/wp-content/themes/period/infinityeldiveni.cur), auto;
white-space: nowrap;
width: 12em;
}
#keyboardInputMaster thead tr th div ol li.selected {
background-color: rgba(15, 15, 15, .4);
}
#keyboardInputMaster thead tr th div ol li:hover,
#keyboardInputMaster thead tr th div ol li.hover {
background-color: rgba(25, 25, 25, .4);
}
#keyboardInputMaster thead tr th span,
#keyboardInputMaster thead tr th strong,
#keyboardInputMaster thead tr th small,
#keyboardInputMaster thead tr th big {
display: inline-block;
padding: 0px 0.4em;
height: 1.4em;
line-height: 1.4em;
border-top: 1px solid rgba(25, 25, 25, .4);
border-right: 1px solid rgba(35, 35, 35, .4);
border-bottom: 1px solid rgba(35, 35, 35, .4);
border-left: 1px solid rgba(25, 25, 25, .4);
background-color: rgba(15, 15, 15, .4);
cursor: url(//abdil.one/wp-content/themes/period/infinityeldiveni.cur), auto;
margin: 0px 0px 0px 0.3em;
-webkit-border-radius: 0.3em;
-moz-border-radius: 0.3em;
border-radius: 0.3em;
vertical-align: middle;
-webkit-transition: background-color .15s ease-in-out;
-o-transition: background-color .15s ease-in-out;
transition: background-color .15s ease-in-out;
}
#keyboardInputMaster thead tr th strong {
font-weight: bold;
}
#keyboardInputMaster thead tr th small {
-webkit-border-radius: 0.3em 0px 0px 0.3em;
-moz-border-radius: 0.3em 0px 0px 0.3em;
border-radius: 0.3em 0px 0px 0.3em;
border-right: 1px solid rgba(25, 25, 25, .4);
padding: 0px 0.2em 0px 0.3em;
}
#keyboardInputMaster thead tr th big {
-webkit-border-radius: 0px 0.3em 0.3em 0px;
-moz-border-radius: 0px 0.3em 0.3em 0px;
border-radius: 0px 0.3em 0.3em 0px;
border-left: 0px none;
margin: 0px;
padding: 0px 0.3em 0px 0.2em;
}
#keyboardInputMaster thead tr th span:hover,
#keyboardInputMaster thead tr th span.hover,
#keyboardInputMaster thead tr th strong:hover,
#keyboardInputMaster thead tr th strong.hover,
#keyboardInputMaster thead tr th small:hover,
#keyboardInputMaster thead tr th small.hover,
#keyboardInputMaster thead tr th big:hover,
#keyboardInputMaster thead tr th big.hover {
background-color: rgba(25, 25, 25, .4);
}
#keyboardInputMaster tbody tr td {
text-align: left;
padding: 0.1em 0;
vertical-align: top;
}
#keyboardInputMaster tbody tr td div {
text-align: center;
position: relative;
zoom: 1;
}
#keyboardInputMaster tbody tr td table {
white-space: nowrap;
width: 100%;
border-collapse: separate;
border-spacing: 0px;
}
#keyboardInputMaster tbody tr td#keyboardInputNumpad table {
margin-left: 0.2em;
width: auto;
}
#keyboardInputMaster tbody tr td table.keyboardInputCenter {
width: auto;
margin: 0px auto;
}
#keyboardInputMaster tbody tr td table tbody tr td {
-webkit-backdrop-filter: blur(3px);
backdrop-filter: blur(3px);
vertical-align: middle;
padding: 0px 0.45em;
white-space: pre;
height: 1.8em;
font-family: 'ScheherazadeNew';
text-shadow: 0 0 5px rgba(15, 15, 15, .5);
border-top: 1px solid rgba(25, 25, 25, .4);
border-right: 1px solid rgba(35, 35, 35, .4);
border-bottom: 1px solid rgba(35, 35, 35, .4);
border-left: 1px solid rgba(25, 25, 25, .4);
background-color: rgba(15, 15, 15, .4);
cursor: url(//abdil.one/wp-content/themes/period/altinimlec.cur), auto;
min-width: 0.5em;
-webkit-border-radius: 0.2em;
-moz-border-radius: 0.2em;
border-radius: 0.2em;
-webkit-transition: background-color .15s ease-in-out;
-o-transition: background-color .15s ease-in-out;
transition: background-color .15s ease-in-out;
}
#keyboardInputMaster tbody tr td table tbody tr td.last {
width: 99%;
}
#keyboardInputMaster tbody tr td table tbody tr td.space {
padding: 0px 4em;
}
#keyboardInputMaster tbody tr td table tbody tr td.deadkey {
background-color: rgba(15, 15, 15, .4);
}
#keyboardInputMaster tbody tr td table tbody tr td.target {
background-color: rgba(25, 25, 25, .4);
}
#keyboardInputMaster tbody tr td table tbody tr td:hover,
#keyboardInputMaster tbody tr td table tbody tr td.hover {
border-top: 1px solid rgba(25, 25, 25, .4);
border-right: 1px solid rgba(15, 15, 15, .4);
border-bottom: 1px solid rgba(15, 15, 15, .4);
border-left: 1px solid rgba(25, 25, 25, .4);
background-color: rgba(15, 15, 15, .4);
}
#keyboardInputMaster thead tr th span:active,
#keyboardInputMaster thead tr th span.pressed,
#keyboardInputMaster tbody tr td table tbody tr td:active,
#keyboardInputMaster tbody tr td table tbody tr td.pressed {
border-top: 1px solid rgba(15, 15, 15, .5) !important;
border-right: 1px solid rgba(25, 25, 25, .4);
border-bottom: 1px solid rgba(25, 25, 25, .4);
border-left: 1px solid rgba(15, 15, 15, .4);
background-color: rgba(25, 25, 25, .4);
/*animation: bounceIn .6s;
animation-delay: .6s;*/
}
#keyboardInputMaster tbody tr td table tbody tr td small {
display: block;
text-align: center;
font-size: 0.6em !important;
line-height: 1.1em;
}
#keyboardInputMaster tbody tr td div label {
position: absolute;
bottom: 0.2em;
left: 0.3em;
}
#keyboardInputMaster tbody tr td div label input {
background-color: rgba(15, 15, 15, .4);
vertical-align: middle;
font-size: inherit;
width: 1.1em;
height: 1.1em;
}
#keyboardInputMaster tbody tr td div var {
position: absolute;
bottom: 0px;
right: 3px;
font-weight: bold;
font-style: italic;
color: rgba(15, 15, 15, .4);
}
.keyboardInputInitiator {
margin: 0px 3px;
vertical-align: middle;
cursor: url(//abdil.one/wp-content/themes/period/infinityeldiveni.cur), auto;
}
@media only screen and (min-width: 768px) {
#keyboardInputMaster.keyboardInputSize4,
#keyboardInputMaster.keyboardInputSize4 * {
font-size: 1.5vw;
}
}
</style>
<style id="abjadstyle">
@font-face {
font-family: 'MartianMono';
src: url('//abdil.one/wp-includes/fonts/MartianMono-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
#sidebar-primary {
display: none;
}
#allofthem {
margin: 0;
padding: 0;
width: 100%;
}
body, #period {
background-image: url('https://abdil.one/wp-content/uploads/2024/05/equations.png');
background-size: 100% 100%;
background-color: rgba(0, 33, 0, 1);
font-size: 1em;
}
.abdil-highlight-wrapper {
width: 100%;
text-align: center;
}
.main {
background: transparent;
width: 100%;
}
.site-header {
background-image: none;
background-color: rgba(0, 0, 17, 0.19);
font-family: 'MartianMono';
}
.post-title {
color: rgba(10, 175, 10, .3);
font-family: 'MartianMono';
text-align: right;
}
.post-container {
background-image: none;
background-color: RGBA(0,25,0,.9);
box-shadow: rgba(20, 51, 20, .7) 0 0 10px 10px, inset rgba(20, 51, 20, .7) 0 0 10px;
padding: 1em;
font-family: 'MartianMono';
text-align: center;
}
#abjad {
margin: auto;
}
label {
font-size: 1em;
}
input[type=checkbox] {
opacity: .4;
}
input[type=checkbox]:checked {
opacity: .9;
}
input[type=number]:focus {
background-color: rgba(0,0,0,.3);
border-radius: 5px;
}
::placeholder {
opacity:.2;
}
::-ms-input-placeholder {
opacity:.2;
}
select.abjadselect option {
font-family: 'MartianMono';
}
label,
select,
option,
input {
font-family: 'MartianMono';
cursor: url(//abdil.one/wp-content/themes/period/infinityeldiveni.cur), auto;
}
h2 {
margin: auto;
margin-top: 1em;
padding: .5em;
background-color: RGBA(60,155,60,.1);
color: rgba(10, 0, 10, .5);
box-shadow: RGBA(60,155,60,.1) 0 0 2px 2px, inset RGBA(60,155,60,.1) 0 0 2px;
border-radius: 12px;
text-align: left;
font-size: 1.2em;
font-family: 'MartianMono';
}
hr {
display: none;
}
.abjadselect, #abjadlanguage {
font-family: 'MartianMono';
line-height: 1.4em;
font-size: 1em;
}
textarea.keyboardInput {
font-family: 'ScheherazadeNew';
line-height: 1.6em;
font-size: 1.6em;
color: rgba(10, 175, 10, .5);
margin-left: .25em;
max-width: 100%;
max-height: 50vh;
width: calc(100% - .5em);
border: none;
background-color: RGBA(50,155,50,.1);
box-shadow: RGBA(50,155,50,.1) 0 0 5px 5px, inset RGBA(50,155,50,.1) 0 0 5px;
border-radius: .1em;
height: 25vh;
}
textarea.keyboardInput:focus {
box-shadow: rgba(20, 51, 20, .8) 0 0 5px 5px, inset rgba(20, 51, 20, .6) 0 0 5px;
background-color: RGBA(50,155,50,.15);
}
textarea#comment {
max-width: 100%;
width: calc(100% - 3em);
}
.abjadinline {
display: flex;
width: calc(100% - 1em);
margin: 9px;
padding: .1em;
vertical-align: middle;
background-color: RGBA(60,155,60,.1);
box-shadow: rgba(20, 51, 20, .7) 0 0 2px 2px, inset rgba(20, 51, 20, .7) 0 0 2px;
label, select option, select, input {
background: transparent;
line-height: 36px;
color: rgba(10, 175, 10, .5);
font-weight: normal;
padding-right: .5em;
}
label {
white-space: nowrap;
}
select {
height: 36px;
width: 100%;
padding-left: 0;
border: transparent;
option {
margin-left: .5em;
color: black;
background-color: white;
}
option:disabled {
color: gray;
}
}
input {
background-color: RGBA(100,255,100, 0);
border: transparent;
font-size: 1em;
height: 36px;
width: 100%;
padding-left: .5em;
font-family: 'MartianMono';
}
.elementcheckbox,
.huddamcheckbox {
nowrap {
white-space: nowrap;
}
}
}
.abjadinline:hover {
background-color: RGBA(20,70,20,.4);
box-shadow: rgba(20, 51, 20, .8) 0 0 2px 2px, inset rgba(20, 51, 20, .6) 0 0 2px;
}
span.elementcheckbox,
span.huddamcheckbox {
text-align: left;
text-align-last: left;
line-height: 36px;
nowrap {
input {
font-size: 1em;
white-space: inherit;
height: inherit;
width: inherit;
color: inherit;
font-weight: inherit;
border: inherit;
}
}
}
span.elementcheckbox {
width: 100%;
nowrap {
width: 5%;
label {
text-align: left;
min-width: 58px;
}
}
}
span.huddamcheckbox {
width: 100%;
nowrap {
width: 5%;
label,
#ownsuffix {
min-width: 34px;
}
#ownsuffix {
color: green;
max-width: 100px;
width: 100%;
margin-top: -.4em;
margin-bottom: -.4em;
font-size: 1.4em;
line-height: 1.4em;
border: 2px solid rgba(0,0,0,.2);
font-family: 'ScheherazadeNew';
}
#ownsuffix:focus {
background-color: rgba(0,0,0,.3);
}
}
}
.bastelemental span, .abjadelemental span, .dutytype span, {
display: inherit;
}
#entryseparators {
width: calc(100% - 1em);
margin: auto;
white-space: inherit;
border-bottom: 5px solid RGBA(100,255,100,.1);
text-align: left;
label.dataentry, nowrap{
line-height: 27px;
color: rgba(10, 175, 10, .3);
font-weight: normal;
padding: 0;
}
nowrap {
line-height: 2em;
}
}
#phrasespreview {
text-align: left;
.phrase {
display: inline-flex;
line-height: 1.6em;
white-space: normal;
overflow: none;
padding-left: .5em;
margin: .2em;
text-align: justify;
text-align-last: right;
vertical-align: baseline;
font-family: 'ScheherazadeNew';
font-size: 1.2em;
font-weight: normal;
color: green;
background-color: RGBA(100,255,100,.1);
border-top-left-radius: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
.metin {
margin: auto;
padding-top: .1em;
vertical-align: top;
font-family: 'ScheherazadeNew';
}
}
.porder {
line-height: 1.4em;
opacity: 1;
font-family: 'Verdana';
display: inline-block;
white-space: nowrap;
margin: 0;
padding: .3em;
margin-left: .5em;
float: right;
text-align: center;
vertical-align: middle;
font-weight: normal;
color: RGBA(100,255,100, 1);
background-color: rgba(10, 175, 10, .3);
border-top-left-radius: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
}
}
table.abjadresults {
width: calc(100% - 1em);
margin: .5em;
background-color: transparent;
box-shadow: rgba(20, 51, 20, .7) 0 0 2px 2px, inset rgba(20, 51, 20, .7) 0 0 2px;
font-family: 'ScheherazadeNew';
th,
td {
color: rgba(10, 175, 10, .5);
background-color: RGBA(100,200,100,.1);
box-shadow: rgba(20, 51, 20, .7) 2px 2px 0 0, inset rgba(20, 51, 20, .7) 2px 2px 0;
border: none;
padding: .2em;
margin: auto;
text-align: center;
font-size: 1.4em;
}
}
table.bastetdetails {
width: 100%;
margin: 0em;
background-color: transparent;
box-shadow: rgba(20, 51, 20, .7) 0 0 2px 2px, inset rgba(20, 51, 20, .7) 0 0 2px;
font-family: 'ScheherazadeNew';
th,
td {
color: rgba(10, 175, 10, .5);
background-color: RGBA(10,20,10,.2);
box-shadow: rgba(20, 51, 20, .7) 2px 2px 0 0, inset rgba(20, 51, 20, .7) 2px 2px 0;
border: none;
padding: .1em;
margin: 0;
text-align: center;
font-size: 1em;
}
}
</style>
<div id="abjad">
<div id="begining">
<h2 turkishcontent="Veri girişi" englishcontent="Data entry">Veri girişi</h2>
<hr>
<p>
<textarea id="abjadtextentry" placeholder="Ayraçlarla ayırarak; Arap, İbrani, Türk harfleriyle; Arap ve Hint rakamlarıyla; veri girilebilir" name="abjadtextentry" class="keyboardInput" autocorrect="off" autocapitalize="off" spellcheck="false" tabindex="0" wrap="off"></textarea>
</p>
<p id="entryseparators"> </p>
<p class="abjadinline">
<label for="abjaddatatype" turkishcontent="Veri tipi profili" englishcontent="Data type profile">Veri tipi profili</label>
<select id="abjaddatatype" name="abjaddatatype" class="abjadselect">
<option value="auto" selected turkishcontent="Karakter sayısı belirlesin" englishcontent="Let character quantity decide">Karakter sayısı belirlesin</option>
<option value=0 turkishcontent="Arapça" englishcontent="Arabic">Arapça</option>
<option value=1 turkishcontent="İbranice" englishcontent="Hebrew">İbranice</option>
<option value=2 turkishcontent="Türkçe" englishcontent="Turkish">Türkçe</option>
<option value=3 turkishcontent="Arap sayıları" englishcontent="Arabic numbers">Arap sayıları</option>
<option value=4 turkishcontent="Hint sayıları" englishcontent="Indian numbers">Hint sayıları</option>
</select>
</p>
<p class="abjadinline">
<label for="separators"><strong turkishcontent="Olası ifadeler" englishcontent="Possible phrases">Olası ifadeler</strong></label>
<input readonly id="separators" name="separators" class="abjadselect"> </p>
<p class="abjadinline">
<label for="separatorregex"><strong turkishcontent="Düzenli ifade" englishcontent="Regular expression">Düzenli ifade</strong></label>
<input readonly id="separatorregex" name="separatorregex" class="abjadselect"> </p>
<h2 turkishcontent="Girilen veriler" englishcontent="Datas entered">Girilen veriler</h2>
<hr>
<p class="phrasespreview" id="phrasespreview"></p>
<center>
<!-- PART 1 END -->
<!-- PART 2 BEGIN -->
</center>
<h2 turkishcontent="Program ayarları" englishcontent="Program settings">Program ayarları</h2>
<hr>
<p class="abjadinline">
<label for="abjadlanguage" turkishcontent="Görüntüleme dili" englishcontent="Interface language">Görüntüleme dili</label>
<select id="abjadlanguage" name="abjadlanguage" class="" identity="reload">
<option value="english" turkishcontent="English" englishcontent="English">English</option>
<option value="turkish" selected turkishcontent="Türkçe" englishcontent="Türkçe">Türkçe</option>
</select>
</p>
<p class="abjadinline">
<label for="autocalculate" turkishcontent="Veri girişi yapıldığında" englishcontent="When data is entered">Veri girişi yapıldığında</label>
<select id="autocalculate" name="autocalculate" class="abjadselect" identity="reload">
<option value="calculate" selected turkishcontent="derhal otomatik hesapla" englishcontent="auto calculate immediately">derhal otomatik hesapla</option>
<option value="wait" turkishcontent="ayarlamalar ve veri girişi için bekle" englishcontent="wait for settings and data entry">ayarlamalar ve veri girişi için bekle</option>
</select>
</p>
<p class="abjadinline">
<label for="forcerules" turkishcontent="abjad() fonksiyonu ayarlarını" englishcontent="abjad() functions settings">abjad() fonksiyonu ayarlarını</label>
<select id="forcerules" name="forcerules" class="abjadselect" identity="reload">
<option value="force" selected turkishcontent="diğer fonksiyonlara dayat" englishcontent="are forced to be used by other functions">diğer fonksiyonlara dayat</option>
<option value="allow" turkishcontent="diğer fonksiyonlara dayatma" englishcontent="are not forced to be used by other functions">diğer fonksiyonlara dayatma</option>
</select>
</p>
<p class="abjadinline">
<label for="purify" turkishcontent="Tanımlanmamış harflerden" englishcontent="Undefined characters">Tanımlanmamış harflerden</label>
<select id="purify" name="purify" class="abjadselect" identity="reload">
<option value="purify" selected turkishcontent="veriyi arındır" englishcontent="will be removed">veriyi arındır</option>
<option value="leave" turkishcontent="veriyi arındırma" englishcontent="will not be removed">veriyi arındırma</option>
</select>
</p>
<p class="abjadinline">
<label for="digits" turkishcontent="Sayısal bulgular" englishcontent="Numerical values">Sayısal bulgular</label>
<select id="digits" name="digits" class="abjadselect" identity="reload">
<option value="arnums" selected turkishcontent="Arap rakamlarıyla gösterilsin" englishcontent="will viewed by using Arabic numbers">Arap rakamlarıyla gösterilsin</option>
<option value="innums" turkishcontent="Hint rakamlarıyla gösterilsin" englishcontent="will viewed by using Indian numbers">Hint rakamlarıyla gösterilsin</option>
</select>
</p>
<p class="abjadinline" style="display: none;">
<label for="firstcell" turkishcontent="Metin veya sayı girilen hücre" englishcontent="Text or number entered cell">Metin veya sayı girilen hücre</label>
<input id="firstcell" name="firstcell" class="abjadselect" identity="reload" value="$A1">
</p>
<h2 turkishcontent="abjad() fonksiyonu ayarları" englishcontent="abjad() functions settings">abjad() fonksiyonu ayarları</h2>
<hr id="sourcetoabjad">
<p class="abjadinline">
<label for="calculateabjad" turkishcontent="Girilen veriler için" englishcontent="For the data entered ">Girilen veriler için</label>
<select id="calculateabjad" name="calculateabjad" class="abjadselect" identity="abjad">
<option value="calculate" selected turkishcontent="ebced değerlerini göster" englishcontent="view abjad sums">ebced değerlerini göster</option>
<option value="dont" turkishcontent="ebced değerlerini gösterme" englishcontent="do not view abjad sums">ebced değerlerini gösterme</option>
</select>
</p>
<p class="abjadinline abjadorder">
<label for="abjadorder" turkishcontent="Ebced sıralaması" englishcontent="Abjadî order">Ebced sıralaması</label>
<select id="abjadorder" name="abjadorder" class="abjadselect" identity="abjad">
<option value="0,arabic" selected turkishcontent="Hisab'el cumel" englishcontent="Hisab'al jumal">Hisab'el cumel</option>
<option value="0,hebrew" turkishcontent="Gematria" englishcontent="Gematria">Gematria</option>
<option value="0,turkish" turkishcontent="Türk Alfabe Ebceti" englishcontent="Turkish Alphabet Abjat">Türk Alfabe Ebceti</option>
<option value=6 turkishcontent="Mağribi ebced" englishcontent="Maghribian abjad">Mağribi ebced</option>
<option value=11 turkishcontent="Kuran'da sıklığı sıralaması" englishcontent="Frequency in Quran">Kuran'da sıklığı sıralaması</option>
<option value=16 turkishcontent="Hica sıralaması" englishcontent="Hija order">Hica sıralaması</option>
<option value=21 turkishcontent="Mağribî hica sıralaması" englishcontent="Maghribian hija order">Mağribî hica sıralaması</option>
<option value=26 turkishcontent="Akıllının sıralaması" englishcontent="Iklils order">Akıllının sıralaması</option>
<option value=31 turkishcontent="Şemsî ebced sıralaması" englishcontent="Shamsee abjad order">Şemsî ebced sıralaması</option>
</select>
</p>
<p class="abjadinline abjadtable">
<label for="abjadtable" turkishcontent="Ebced tablosu" englishcontent="Abjad table">Ebced tablosu</label>
<select id="abjadtable" name="abjadtable" class="abjadselect" identity="abjad">
<option value=0 turkishcontent="Asgarî" englishcontent="Minimum">Asgarî</option>
<option value=1 selected turkishcontent="Sağir" englishcontent="Small">Sağir</option>
<option value=2 turkishcontent="Kebir" englishcontent="Big">Kebir</option>
<option value=3 turkishcontent="Ekber" englishcontent="Bigger">Ekber</option>
<option value=4 turkishcontent="Sağir + harf adedi" englishcontent="Small + letter quantity">Sağir + harf adedi</option>
<option value=5 turkishcontent="Harf adedi" englishcontent="Letter quantitiy">Harf adedi</option>
</select>
</p>
<p class="abjadinline abjadshadda">
<label for="abjadshadda" turkishcontent="Şeddeli harfler" englishcontent="Letters with shadda">Şeddeli harfler</label>
<select id="abjadshadda" name="abjadshadda" class="abjadselect" identity="abjad">
<option value=1 selected turkishcontent="tek hesaplansın" englishcontent=" will be added once">tek hesaplansın</option>
<option value=2 turkishcontent="çift hesaplansın" englishcontent=" will be added twice">çift hesaplansın</option>
</select>
</p>
<p class="abjadinline abjaddetail">
<label for="abjaddetail" turkishcontent="Hesaplama ayrıntıları" englishcontent="Calculation details">Hesaplama ayrıntıları</label>
<select id="abjaddetail" name="abjaddetail" class="abjadselect" identity="abjad">
<option value=0 selected turkishcontent="gösterilmesin" englishcontent="will not be viewed">gösterilmesin</option>
<option value=1 turkishcontent="gösterilsin" englishcontent="will be viewed">gösterilsin</option>
</select>
</p>
<p class="abjadinline elementguide">
<label for="elementguide" turkishcontent="Element tasnif yöntemi" englishcontent="Element classification method">Element tasnif yöntemi</label>
<select id="elementguide" name="elementguide" class="abjadselect" identity="abjad">
<option value="TURKCE" turkishcontent="Türk alfabesi elementleri" englishcontent="Turkish alphabet elements">Türk alfabesi elementleri</option>
<option value="ARABI" turkishcontent="Muhiyyiddin İbni Arabî" englishcontent="Muhiyyiddin Ibni Arabi">Muhiyyiddin İbni Arabî</option>
<option value="BUNI" turkishcontent="Ahmed el Bunî" englishcontent="Ahmad al Bunî">Ahmed el Bunî</option>
<option value="HUSEYNI" turkishcontent="Süleyman el Hüseynî" englishcontent="Sulayman al Huseyni">Süleyman el Hüseynî</option>
<option value="HEBREW" turkishcontent="İbrani alfabesi elementleri" englishcontent="Hebrew alphabet elements">İbrani alfabesi elementleri</option>
<option value="REGULAR" selected turkishcontent="Yaygın tercih edilen tasnif" englishcontent="Regularly prefered classification">Yaygın tercih edilen tasnif</option>
</select>
</p>
<p class="abjadinline abjadelemental">
<label for="abjadelemental" turkishcontent="Elementin harflerini kat" englishcontent="Add letters of elements">Elementin harflerini kat</label> <span class="elementcheckbox">
<nowrap class="abjadall">
<input type="checkbox" identity="reload" id="abjadall" name="abjadall" value=0>
<label for="abjadall" turkishcontent="Tümü" englishcontent="All">Tümü</label>
</nowrap><space></space>
<nowrap class="abjadfire">
<input type="checkbox" identity="reload" id="abjadfire" name="abjadfire" value=0>
<label for="abjadfire" turkishcontent="Ateş" englishcontent="Fire">Ateş</label>
</nowrap><space></space>
<nowrap class="abjadair">
<input type="checkbox" identity="reload" id="abjadair" name="abjadair" value=1>
<label for="abjadair" turkishcontent="Hava" englishcontent="Air">Hava</label>
</nowrap><space></space>
<nowrap class="abjadwater">
<input type="checkbox" identity="reload" id="abjadwater" name="abjadwater" value=2>
<label for="abjadwater" turkishcontent="Su" englishcontent="Water">Su</label>
</nowrap><space></space>
<nowrap class="abjadearth">
<input type="checkbox" identity="reload" id="abjadearth" name="abjadearth" value=3>
<label for="abjadearth" turkishcontent="Toprak" englishcontent="Earth">Toprak</label>
</nowrap>
</span> </p>
<h2 turkishcontent="Ebced hesabı sonuçları" englishcontent="Abjad calculation results">Ebced hesabı sonuçları</h2>
<hr>
<p class="abjadresults" id="abjadresults"></p>
<center>
<!-- PART 2 END -->
<!-- PART 3 BEGIN -->
</center>
<h2 turkishcontent="bastet() ve nutket() fonksiyonları ayarları" englishcontent="bastet() and nutket() functions settings">bastet() fonksiyonu ayarları</h2>
<hr id="sourcetobastet">
<p class="abjadinline">
<label for="calculatebastet" turkishcontent="Girilen veriler için" englishcontent="For the data entered ">Girilen veriler için</label>
<select id="calculatebastet" name="calculatebastet" class="abjadselect" identity="reload">
<option value="calculate" selected turkishcontent="bast edilmiş değerleri göster" englishcontent="view bast operation results">bast edilmiş ebced değerleri göster</option>
<option value="dont" turkishcontent="bast edilmiş ebced değerleri gösterme" englishcontent="do not view bast operation results">bast edilmiş ebced değerleri gösterme</option>
</select>
</p>
<p class="abjadinline sourcebastet">
<label for="sourcebastet" turkishcontent="Operasyon verisi olarak" englishcontent="As data for operation">Operasyon verisi olarak</label>
<select id="sourcebastet" name="sourcebastet" class="abjadselect" identity="reload">
<option value="abjadresults" selected turkishcontent="hesaplanan ebced değerlerini kullan" englishcontent="use calculated abjad results">hesaplanan ebced değerlerini kullan</option>
<option value="abjadtotal" turkishcontent="hesaplanan ebced değerlerinin toplamını kullan" englishcontent="use calculated abjad results total">hesaplanan ebced değerlerinin toplamını kullan</option>
<option value="entereddatas" turkishcontent="girilen verileri doğrudan kullan" englishcontent="use entered data directly">girilen verileri doğrudan kullan</option>
<option value="datastotal" turkishcontent="girilen verilerin toplamını kullan" englishcontent="use entered datas total">girilen verileri toplamını kullan</option>
</select>
</p>
<p class="abjadinline languagebastet">
<label for="languagebastet" turkishcontent="Sayı istintak dili" englishcontent="Language to read numbers">Sayı istintak dili</label>
<select id="languagebastet" name="languagebastet" class="abjadselect" identity="reload">
<option value="arabic" selected turkishcontent="Arapça" englishcontent="Arabic">Arapça</option>
<option value="hebrew" turkishcontent="İbranice" englishcontent="Hebrew">İbranice</option>
<option value="turkce" turkishcontent="Türkçe" englishcontent="Turkish">Türkçe</option>
</select>
</p>
<p class="abjadinline bastetrepetation">
<label for="bastetrepetation" turkishcontent="Bast tekrar miktarı" englishcontent="Repeat bast operation">Bast tekrar miktarı</label>
<input id="bastetrepetation" name="bastetrepetation" class="abjadselect" identity="reload" value=5 type="number" min=0 step=1> </p>
<p class="abjadinline bastetorder">
<label for="bastetorder" turkishcontent="Ebced sıralaması" englishcontent="Abjadî order">Ebced sıralaması</label>
<select id="bastetorder" name="bastetorder" class="abjadselect" identity="reload">
<option value="0,arabic" selected turkishcontent="Hisab'el cumel" englishcontent="Hisab'al jumal">Hisab'el cumel</option>
<option value="0,hebrew" turkishcontent="Gematria" englishcontent="Gematria">Gematria</option>
<option value="0,turkish" turkishcontent="Türk Alfabe Ebceti" englishcontent="Turkish Alphabet Abjat">Türk Alfabe Ebceti</option>
<option value=6 turkishcontent="Mağribi ebced" englishcontent="Maghribian abjad">Mağribi ebced</option>
<option value=11 turkishcontent="Kuran'da sıklığı sıralaması" englishcontent="Frequency in Quran">Kuran'da sıklığı sıralaması</option>
<option value=16 turkishcontent="Hica sıralaması" englishcontent="Hija order">Hica sıralaması</option>
<option value=21 turkishcontent="Mağribî hica sıralaması" englishcontent="Maghribian hija order">Mağribî hica sıralaması</option>
<option value=26 turkishcontent="Akıllının sıralaması" englishcontent="Iklils order">Akıllının sıralaması</option>
<option value=31 turkishcontent="Şemsî ebced sıralaması" englishcontent="Shamsee abjad order">Şemsî ebced sıralaması</option>
</select>
</p>
<p class="abjadinline bastettable">
<label for="bastettable" turkishcontent="Ebced tablosu" englishcontent="Abjad table">Ebced tablosu</label>
<select id="bastettable" name="bastettable" class="abjadselect" identity="reload">
<option value=0 turkishcontent="Asgarî" englishcontent="Minimum">Asgarî</option>
<option value=1 selected turkishcontent="Sağir" englishcontent="Small">Sağir</option>
<option value=2 turkishcontent="Kebir" englishcontent="Big">Kebir</option>
<option value=3 turkishcontent="Ekber" englishcontent="Bigger">Ekber</option>
<option value=4 turkishcontent="Sağir + harf adedi" englishcontent="Small + letter quantity">Sağir + harf adedi</option>
<option value=5 turkishcontent="Harf adedi" englishcontent="Letter quantitiy">Harf adedi</option>
</select>
</p>
<p class="abjadinline bastetshadda">
<label for="bastetshadda" turkishcontent="Şeddeli harfler" englishcontent="Letters with shadda">Şeddeli harfler</label>
<select id="bastetshadda" name="bastetshadda" class="abjadselect" identity="reload">
<option value=1 selected turkishcontent="tek hesaplansın" englishcontent=" will be added once">tek hesaplansın</option>
<option value=2 turkishcontent="çift hesaplansın" englishcontent=" will be added twice">çift hesaplansın</option>
</select>
</p>
<p class="abjadinline bastetaddquantity">
<label for="bastetaddquantity" turkishcontent="Girdi harf miktarı" englishcontent="Quantitiy of entry letters">Girdi harf miktarını</label>
<select id="bastetaddquantity" name="bastetaddquantity" class="abjadselect" identity="reload">
<option value=0 selected turkishcontent="başlarken değerine eklenmesin" englishcontent="will not be added to sum">başlarken değerine eklenmesin</option>
<option value=1 turkishcontent="başlarken değerine eklensin" englishcontent="will be added to sum">başlarken değerine eklensin</option>
</select>
</p>
<p class="abjadinline bastetdetail">
<label for="bastetdetail" turkishcontent="Hesaplama ayrıntıları" englishcontent="Calculation details">Hesaplama ayrıntıları</label>
<select id="bastetdetail" name="bastetdetail" class="abjadselect" identity="reload">
<option value=0 selected turkishcontent="gösterilmesin" englishcontent="will not be viewed">gösterilmesin</option>
<option value=1 turkishcontent="gösterilsin" englishcontent="will be viewed">gösterilsin</option>
</select>
</p>
<p class="abjadinline usebastetelement">
<label for="usebastetelement" turkishcontent="Element sınıflandırmasını" englishcontent="Use element classification">Element sınıflandırmasını</label>
<select id="usebastetelement" name="usebastetelement" class="abjadselect" identity="reload">
<option value=0 selected turkishcontent="mümkünse sadece başlangıçta kullan" englishcontent="when possible only for begining operation">mümkünse sadece başlangıçta kullan</option>
<option value=1 turkishcontent="tüm bast tekrarlarında kullan" englishcontent="in all repetations of basts">tüm bast tekrarlarında kullan</option>
</select>
</p>
<p class="abjadinline bastelementguide">
<label for="bastelementguide" turkishcontent="Element tasnif yöntemi" englishcontent="Element classification method">Element tasnif yöntemi</label>
<select id="bastelementguide" name="bastelementguide" class="abjadselect" identity="reload">
<option value="TURKCE" turkishcontent="Türk alfabesi elementleri" englishcontent="Turkish alphabet elements">Türk alfabesi elementleri</option>
<option value="ARABI" turkishcontent="Muhiyyiddin İbni Arabî" englishcontent="Muhiyyiddin Ibni Arabi">Muhiyyiddin İbni Arabî</option>
<option value="BUNI" turkishcontent="Ahmed el Bunî" englishcontent="Ahmad al Bunî">Ahmed el Bunî</option>
<option value="HUSEYNI" turkishcontent="Süleyman el Hüseynî" englishcontent="Sulayman al Huseyni">Süleyman el Hüseynî</option>
<option value="HEBREW" turkishcontent="İbrani alfabesi elementleri" englishcontent="Hebrew alphabet elements">İbrani alfabesi elementleri</option>
<option value="REGULAR" selected turkishcontent="Yaygın tercih edilen tasnif" englishcontent="Regularly prefered classification">Yaygın tercih edilen tasnif</option>
</select>
</p>
<p class="abjadinline bastelemental">
<label for="bastelemental" turkishcontent="Elementin harflerini kat" englishcontent="Add letters of elements">Elementin harflerini kat</label> <span class="elementcheckbox">
<nowrap class="bastetall">
<input type="checkbox" identity="reload" id="bastetall" name="bastetall" value=0>
<label for="bastetall" turkishcontent="Tümü" englishcontent="All">Tümü</label>
</nowrap><space></space>
<nowrap class="bastetfire">
<input type="checkbox" identity="reload" id="bastetfire" name="bastetfire" value=0>
<label for="bastetfire" turkishcontent="Ateş" englishcontent="Fire">Ateş</label>
</nowrap><space></space>
<nowrap class="bastetair">
<input type="checkbox" identity="reload" id="bastetair" name="bastetair" value=1>
<label for="bastetair" turkishcontent="Hava" englishcontent="Air">Hava</label>
</nowrap><space></space>
<nowrap class="bastetwater">
<input type="checkbox" identity="reload" id="bastetwater" name="bastetwater" value=2>
<label for="bastetwater" turkishcontent="Su" englishcontent="Water">Su</label>
</nowrap><space></space>
<nowrap class="bastetearth">
<input type="checkbox" identity="reload" id="bastetearth" name="bastetearth" value=3>
<label for="bastetearth" turkishcontent="Toprak" englishcontent="Earth">Toprak</label>
</nowrap>
</span> </p>
<h2 turkishcontent="Bast döngüleri hesap sonuçları" englishcontent="Bast repetation calculation results">Bast döngüleri hesap sonuçları</h2>
<hr>
<p class="bastetresults" id="bastetresults"></p>
<center>
<!-- PART 3 END -->
<!-- PART 4 BEGIN -->
</center>
<h2 turkishcontent="huddam() fonksiyonu ayarları" englishcontent="huddam() functions settings">huddam() fonksiyonu ayarları</h2>
<hr id="sourcetohuddam">
<p class="abjadinline">
<label for="calculatehuddam" turkishcontent="Girilen veriler için" englishcontent="For the data entered ">Girilen veriler için</label>
<select id="calculatehuddam" name="calculatehuddam" class="abjadselect" identity="huddam">
<option value="calculate" selected turkishcontent="hadim isimlerini göster" englishcontent="view duty entity names">hadim isimlerini göster</option>
<option value="dont" turkishcontent="hadim isimlerini gösterme" englishcontent="do not view duty entity names">hadim isimlerini gösterme</option>
</select>
</p>
<p class="abjadinline sourcehuddam">
<label for="sourcehuddam" turkishcontent="Operasyon verisi olarak" englishcontent="As data for operation">Operasyon verisi olarak</label>
<select id="sourcehuddam" name="sourcehuddam" class="abjadselect" identity="huddam">
<option value="bastetresults" selected turkishcontent="hesaplanan bast sonuçlarını kullan" englishcontent="use calculated bast repetation results">hesaplanan bast sonuçlarını kullan</option>
<option value="abjadresults" turkishcontent="hesaplanan ebced değerlerini kullan" englishcontent="use calculated abjad results">hesaplanan ebced değerlerini kullan</option>
<option value="entereddatas" turkishcontent="girilen verileri doğrudan kullan" englishcontent="use entered data directly">girilen verileri doğrudan kullan</option>
</select>
</p>
<p class="abjadinline huddamorder">
<label for="huddamorder" turkishcontent="Ebced sıralaması" englishcontent="Abjadî order">Ebced sıralaması</label>
<select id="huddamorder" name="huddamorder" class="abjadselect" identity="huddam">
<option value=0 selected turkishcontent="Hisab'el cumel" englishcontent="Hisab'al jumal">Hisab'el cumel</option>
<option value=6 turkishcontent="Mağribi ebced" englishcontent="Maghribian abjad">Mağribi ebced</option>
<option value=11 turkishcontent="Kuran'da sıklığı sıralaması" englishcontent="Frequency in Quran">Kuran'da sıklığı sıralaması</option>
<option value=16 turkishcontent="Hica sıralaması" englishcontent="Hija order">Hica sıralaması</option>
<option value=21 turkishcontent="Mağribî hica sıralaması" englishcontent="Maghribian hija order">Mağribî hica sıralaması</option>
<option value=26 turkishcontent="Akıllının sıralaması" englishcontent="Iklils order">Akıllının sıralaması</option>
<option value=31 turkishcontent="Şemsî ebced sıralaması" englishcontent="Shamsee abjad order">Şemsî ebced sıralaması</option>
</select>
</p>
<p class="abjadinline dutytype">
<label for="dutytype" turkishcontent="Vazifeli hadim türü" englishcontent="Duty entity type">Vazifeli hadim türü</label> <span class="huddamcheckbox">
<nowrap class="ulvihadim">
<input type="checkbox" identity="huddam" id="ulvihadim" name="ulvihadim" value=0>
<label for="ulvihadim" turkishcontent="Ulvi" englishcontent="High">Ulvi</label>
</nowrap><space></space>
<nowrap class="suflihadim">
<input type="checkbox" identity="huddam" id="suflihadim" name="suflihadim" value=0>
<label for="suflihadim" turkishcontent="Sufli" englishcontent="Low">Sufli</label>
</nowrap><space></space>
<nowrap class="serhadim">
<input type="checkbox" identity="huddam" id="serhadim" name="serhadim" value=1>
<label for="serhadim" turkishcontent="Şer" englishcontent="Evil">Şer</label>
</nowrap><space></space>
<nowrap class="ownhadim">
<input type="checkbox" identity="huddam" id="ownhadim" name="ownhadim" value=2>
<input id="ownsuffix" name="ownsuffix" class="abjadselect keyboardInput" value=""><label for="ownhadim" turkishcontent="🢀 diğer son ek" englishcontent="🢀 other suffix">🢀 diğer son ek</label>
</nowrap>