-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
18120 lines (12551 loc) · 466 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<!-- Написано в FreeBSD, Midnight Commander. -->
<!-- Ukraine. (C) Demidov S.V. -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- Документ кэшируется во всех доступных кэшах -->
<!-- <meta http-equiv="Cache-Control" content="public"> -->
<!-- -->
<!-- Примечание: -->
<!-- -->
<!-- 86400 сек. - 1 сутки -->
<!-- 604800 сек. - 7 суток -->
<!-- 2678400 сек. - 31 суток -->
<!-- 8035200 сек. - 93 суток -->
<!-- 16070400 сек. - 186 суток -->
<!-- Указывает браузеру сколько секунд хранить документ в кэше (8035200 = 93 суток) -->
<!-- <meta http-equiv="Cache-Control" content="max-age=8035200, must-revalidate"> -->
<!-- -->
<meta name="keywords" content="hobby, hobby github, hobby github demidov, hobby github demidov s">
<meta name="keywords" content="hobby github demidov s.v, hobby github demidov s.v.">
<meta name="keywords" content="demidov github, demidov s github, demidov s.v github">
<meta name="keywords" content="demidov s.v. github, demidov stanislav github">
<meta name="keywords" content="demidov, demidov s, demidov s.v, demidov s.v., demidov stanislav">
<!-- -->
<meta name="keywords" content="модель игральной кости, игральная кость">
<meta name="keywords" content="игральная кость blender, игральная кость blender3d, игральная кость blender-3d">
<meta name="keywords" content="dice blender, dice blender3d, dice blender-3d">
<meta name="keywords" content="dice2 blender, dice2 blender3d, dice2 blender-3d">
<meta name="keywords" content="кубик blender, кубик blender3d, кубик blender-3d">
<meta name="keywords" content="анимированный кубик, анимированный dice, анимированный dice2">
<meta name="keywords" content="анимированная игральная кость">
<!-- -->
<meta name="keywords" content="модель мотора">
<meta name="keywords" content="мотор blender, мотор blender3d, мотор blender-3d">
<meta name="keywords" content="motor blender, motor blender3d, motor blender-3d">
<!-- -->
<meta name="keywords" content="государственная символика украины">
<meta name="keywords" content="флаг blender, флаг blender3d, флаг blender-3d">
<meta name="keywords" content="герб blender, герб blender3d, герб blender-3d">
<meta name="keywords" content="флаг украины, герб украины">
<!-- -->
<meta name="keywords" content="disabled person blender, disabled person blender3d, disabled person blender-3d">
<meta name="keywords" content="анимированная иконка, анимированная иконка blender">
<meta name="keywords" content="анимированная иконка blender3d, анимированная иконка blender-3d">
<meta name="keywords" content="инвалид blender, инвалид blender3d, инвалид blender-3d">
<!-- -->
<meta name="keywords" content="флоппи диск, флоппи диск 3.5">
<meta name="keywords" content="флоппи blender, флоппи blender3d, флоппи blender-3d">
<meta name="keywords" content="диск blender, диск blender3d, диск blender-3d">
<meta name="keywords" content="флоппи диск blender, флоппи диск blender3d, флоппи диск blender-3d">
<!-- -->
<meta name="keywords" content="логотип vrLE8, логотип vrLE16, logo vrle8, logo vrle16, логотип rle, logo rle">
<meta name="keywords" content="логотип vrLE8 blender, логотип vrLE16 blender, logo vrle8 blender, logo vrle16 blender, логотип rle blender, logo rle blender">
<meta name="keywords" content="логотип vrLE8 blender3d, логотип vrLE16 blender3d, logo vrle8 blender3d, logo vrle16 blender3d, логотип rle blender3d, logo rle blender3d">
<meta name="keywords" content="логотип vrLE8 blender-3d, логотип vrLE16 blender-3d, logo vrle8 blender-3d, logo vrle16 blender-3d, логотип rle blender-3d, logo rle blender-3d">
<!-- -->
<meta name="keywords" content="tea2025b, tea2025b blender, tea2025b blender3d, tea2025b blender-3d">
<meta name="keywords" content="tea2025b в 3d">
<!-- -->
<meta name="keywords" content="подписываем цифровые фотографии, скрипт цифровые фотографии">
<meta name="keywords" content="подписываем цифровые фото, скрипт цифровые фото">
<meta name="keywords" content="подписываем фотографии">
<meta name="keywords" content="подписываем фото">
<!-- -->
<meta name="keywords" content="вектор, вектор-06ц, вектор06ц, вектор06">
<meta name="keywords" content="вектор украина">
<meta name="keywords" content="вектор-06ц украина, вектор-06 украина">
<meta name="keywords" content="вектор06ц украина, вектор06 украина">
<!-- -->
<meta name="keywords" content="ожившее кино">
<meta name="keywords" content="вектор-06ц ожившее кино, вектор-06 ожившее кино, вектор ожившее кино">
<meta name="keywords" content="вектор06ц ожившее кино, вектор06 ожившее кино">
<meta name="keywords" content="вектор-06ц кино, вектор-06 кино, вектор кино">
<meta name="keywords" content="вектор06ц кино, вектор06 кино">
<!-- spr, grf -->
<meta name="keywords" content="coder spr, decoder spr, coder spr github, decoder spr github">
<meta name="keywords" content="spr вектор-06ц, spr вектор-06, spr вектор">
<meta name="keywords" content="spr вектор06ц, spr вектор06, spr вектор">
<meta name="keywords" content="spr vector-06c, spr vector-06, spr vector">
<meta name="keywords" content="spr, spr github, spr file, spr files">
<meta name="keywords" content="coder grf, decoder grf, coder grf github, decoder grf github">
<meta name="keywords" content="grf вектор-06ц, grf вектор-06, grf вектор">
<meta name="keywords" content="grf вектор06ц, grf вектор06, grf вектор">
<meta name="keywords" content="grf vector-06c, grf vector-06, grf vector">
<meta name="keywords" content="grf, grf github, grf file, grf files">
<!-- spr to bmp -->
<meta name="keywords" content="конвертер графических файлов spr в bmp, spr в bmp, spr2bmp, spr to bmp">
<meta name="keywords" content="github spr в bmp, github spr to bmp, github spr2bmp">
<meta name="keywords" content="spr в bmp вектор-06ц, spr в bmp вектор-06, spr в bmp вектор">
<meta name="keywords" content="spr to bmp вектор-06ц, spr to bmp вектор-06, spr to bmp вектор">
<meta name="keywords" content="spr2bmp вектор-06ц, spr2bmp вектор-06, spr2bmp вектор">
<meta name="keywords" content="spr to bmp vector-06c, spr to bmp vector-06, spr to bmp vector">
<meta name="keywords" content="spr2bmp vector-06c, spr2bmp vector-06, spr2bmp vector">
<!-- grf to bmp -->
<meta name="keywords" content="конвертер графических файлов grf в bmp, grf в bmp, grf2bmp, grf to bmp">
<meta name="keywords" content="github grf в bmp, github grf to bmp, github grf2bmp">
<meta name="keywords" content="grf в bmp вектор-06ц, grf в bmp вектор-06, grf в bmp вектор">
<meta name="keywords" content="grf to bmp вектор-06ц, grf to bmp вектор-06, grf to bmp вектор">
<meta name="keywords" content="grf2bmp вектор-06ц, grf2bmp вектор-06, grf2bmp вектор">
<meta name="keywords" content="grf to bmp vector-06c, grf to bmp vector-06, grf to bmp vector">
<meta name="keywords" content="grf2bmp vector-06c, grf2bmp vector-06, grf2bmp vector">
<!-- bmp to grf -->
<meta name="keywords" content="конвертер графических файлов bmp в grf, bmp в grf, bmp2grf, bmp to grf">
<meta name="keywords" content="github bmp в grf, github bmp2grf, github bmp to grf">
<meta name="keywords" content="bmp в grf вектор-06ц, bmp в grf вектор-06, bmp в grf вектор">
<meta name="keywords" content="bmp to grf вектор-06ц, bmp to grf вектор-06, bmp to grf вектор">
<meta name="keywords" content="bmp2grf вектор-06ц, bmp2grf вектор-06, bmp2grf вектор">
<meta name="keywords" content="bmp to grf vector-06c, bmp to grf vector-06, bmp to grf vector">
<meta name="keywords" content="bmp2grf vector-06c, bmp2grf vector-06, bmp2grf vector">
<!-- grf to spr -->
<meta name="keywords" content="конвертер графических файлов grf в spr, grf в spr, grf2spr, grf to spr">
<meta name="keywords" content="github grf в spr, github grf2spr, github grf to spr">
<meta name="keywords" content="grf в spr вектор-06ц, grf в spr вектор-06, grf в spr вектор">
<meta name="keywords" content="grf to spr вектор-06ц, grf to spr вектор-06, grf to spr вектор">
<meta name="keywords" content="grf2spr вектор-06ц, grf2spr вектор-06, grf2spr вектор">
<meta name="keywords" content="grf to spr vector-06c, grf to spr vector-06, grf to spr vector">
<meta name="keywords" content="grf2spr vector-06c, grf2spr vector-06, grf2spr vector">
<!-- spr to grf -->
<meta name="keywords" content="конвертер графических файлов spr в grf, spr в grf, spr2grf, spr to grf">
<meta name="keywords" content="github spr в grf, github spr2grf, github spr to grf">
<meta name="keywords" content="spr в grf вектор-06ц, spr в grf вектор-06, spr в grf вектор">
<meta name="keywords" content="spr to grf вектор-06ц, spr to grf вектор-06, spr to grf вектор">
<meta name="keywords" content="spr2grf вектор-06ц, spr2grf вектор-06, spr2grf вектор">
<meta name="keywords" content="spr to grf vector-06c, spr to grf vector-06, spr to grf vector">
<meta name="keywords" content="spr2grf vector-06c, spr2grf vector-06, spr2grf vector">
<!-- -->
<meta name="keywords" content="Скрипт, который показывает все цвета Вектор'а-06Ц">
<meta name="keywords" content="Скрипт, который показывает все цвета Вектор'а-06">
<meta name="keywords" content="Скрипт, который показывает все цвета Вектор'а">
<meta name="keywords" content="Скрипт, который показывает все цвета Вектор">
<meta name="keywords" content="perl фото, perl фотографии">
<meta name="keywords" content="perl скрипт фото, perl скрипт фотографии">
<meta name="keywords" content="perl photo, perl photos">
<meta name="keywords" content="perl script photo, perl script photos">
<!-- vrle8 -->
<meta name="keywords" content="vrle8 compression, vrle8 decompression, rle compression, rle decompression">
<meta name="keywords" content="vrle8 online coder, vrle8 online decoder, rle online coder, rle online decoder">
<meta name="keywords" content="vrle8 compression github, vrle8 decompression github, rle compression github, rle decompression github">
<meta name="keywords" content="vrle8 online coder github, vrle8 online decoder github, rle online coder github, rle online decoder github">
<meta name="keywords" content="rle кодирование/декодирование своими руками">
<meta name="keywords" content="rle кодирование своими руками">
<meta name="keywords" content="rle декодирование своими руками">
<meta name="keywords" content="rle кодирование">
<meta name="keywords" content="rle декодирование">
<meta name="keywords" content="rle сжатие, rle сжатие github, rle сжатие онлайн, rle сжатие онлайн github,">
<meta name="keywords" content="rle алгоритм, rle алгоритм github, rle-encoder, rle-encoder github">
<meta name="keywords" content="coder vrle8, decoder vrle8, coder rle, decoder rle">
<meta name="keywords" content="vrle8 github, vrle8 github info, vrle8 info github">
<meta name="keywords" content="rle github, rle github info, rle info github">
<meta name="keywords" content="vrle8, vrle8 info, rle, rle info">
<meta name="keywords" content="rle compression, rle compression github, rle-compression, rle-compression github">
<meta name="keywords" content="rle compression algorithm, rle compression algorithm github">
<meta name="keywords" content="rle-compression-algorithm, rle-compression-algorithm github">
<meta name="keywords" content="run-length-encoding, run-length-encoding github">
<!-- vrle8 new -->
<meta name="keywords" content="vrle8 new, vrle8 new coding, vrle8 две функции в одну">
<meta name="keywords" content="vrle8 быстрая конвертация, vrle8 быстрая конвертация File To VRLE8">
<meta name="keywords" content="vrle8 быстрая конвертация VRLE8 To File">
<!-- game-15 -->
<meta name="keywords" content="puzle15, puzzle 15, game15, game 15, game-15">
<meta name="keywords" content="puzle15 js, puzzle 15 js, game15 js, game 15 js, game-15 js">
<meta name="keywords" content="puzle15 javascript, puzzle 15 javascript, game15 javascript, game 15 javascript, game-15 javascript">
<meta name="keywords" content="puzle15 html js, puzzle 15 html js, game15 html js, game 15 html js, game-15 html js">
<meta name="keywords" content="puzle15 html javascript, puzzle 15 html javascript, game15 html javascript, game 15 html javascript, game-15 html javascript">
<meta name="keywords" content="пятнашки">
<meta name="keywords" content="пятнашки js, пятнашки javascript ">
<meta name="keywords" content="пятнашки html js, пятнашки html javascript ">
<meta name="keywords" content="пятнашки на js, пятнашки на javascript ">
<meta name="keywords" content="пятнашки на html js, пятнашки на html javascript ">
<!-- -->
<meta name="keywords" content="усилитель звука на микросхеме tea2025b">
<meta name="keywords" content="усилитель звука tea2025b">
<meta name="keywords" content="усилитель tea2025b">
<meta name="keywords" content="усилитель звука на микросхеме tea2025">
<meta name="keywords" content="усилитель звука tea2025">
<meta name="keywords" content="усилитель tea2025">
<meta name="keywords" content="схема tea2025b">
<meta name="keywords" content="печатная плата tea2025b">
<meta name="keywords" content="собранная плата tea2025b">
<meta name="keywords" content="схема tea2025">
<meta name="keywords" content="печатная плата tea2025">
<meta name="keywords" content="собранная плата tea2025">
<!-- -->
<meta name="keywords" content="Transistor key mode">
<meta name="keywords" content="Transistor key mode formulas">
<meta name="keywords" content="Transistor key mode formulas github">
<meta name="keywords" content="Transistor key mode pdf">
<meta name="keywords" content="Transistor key mode dithub">
<meta name="keywords" content="Transistor key mode pdf github">
<meta name="keywords" content="Биполярный транзистор в ключевом режиме">
<meta name="keywords" content="Биполярный транзистор в ключевом режиме github">
<meta name="keywords" content="Биполярный транзистор">
<meta name="keywords" content="Биполярный транзистор github">
<!-- -->
<meta name="keywords" content="ящик для экспонирования фоторезиста">
<meta name="keywords" content="ящик для экспонирования фоторезиста своими руками">
<meta name="keywords" content="коробка для экспонирования фоторезиста">
<meta name="keywords" content="коробка для экспонирования фоторезиста своими руками">
<!-- -->
<meta name="keywords" content="находим ближайшее стандартное сопротивление">
<meta name="keywords" content="находим стандартное сопротивление">
<meta name="keywords" content="стандартное сопротивление">
<meta name="keywords" content="алгоритм ближайшее стандартное сопротивление">
<meta name="keywords" content="ближайшее стандартное сопротивление">
<meta name="keywords" content="js ближайшее стандартное сопротивление">
<meta name="keywords" content="javascript ближайшее стандартное сопротивление">
<meta name="keywords" content="алгоритм бсс">
<meta name="keywords" content="js бсс">
<meta name="keywords" content="javascript бсс">
<meta name="keywords" content="алгоритм bss">
<meta name="keywords" content="js bss">
<meta name="keywords" content="javascript bss">
<!-- -->
<meta name="keywords" content="делитель напряжения">
<meta name="keywords" content="делитель напряжения на двух резисторах">
<meta name="keywords" content="делитель напряжения формулы расчёты">
<meta name="keywords" content="делитель напряжения формулы расчеты">
<meta name="keywords" content="делитель напряжения формулы">
<meta name="keywords" content="делитель напряжения расчёты">
<meta name="keywords" content="делитель напряжения расчеты">
<meta name="keywords" content="калькулятор на html + js">
<meta name="keywords" content="калькулятор на html + javascript">
<meta name="keywords" content="калькулятор на html+js">
<meta name="keywords" content="калькулятор на html+javascript">
<meta name="keywords" content="делитель напряжения калькулятор на html + javascript">
<meta name="keywords" content="делитель напряжения калькулятор на html+javascript">
<meta name="keywords" content="делитель напряжения калькулятор на html javascript">
<meta name="keywords" content="делитель напряжения калькулятор html javascript">
<!-- -->
<meta name="keywords" content="power supply">
<meta name="keywords" content="power supply 512">
<meta name="keywords" content="power supply +5v -5v +12v -12v">
<meta name="keywords" content="power supply +5v +12v -12v">
<meta name="keywords" content="power supply +5v, power supply -5v">
<meta name="keywords" content="power supply +12v, power supply -12v">
<meta name="keywords" content="power supply +5v +12v, power supply +12v -12v">
<meta name="keywords" content="power supply +5v -5v, power supply 5v 12v"
<meta name="keywords" content="power supply 5v, power supply 12v"
<meta name="keywords" content="+5v -5v +12v -12v">
<meta name="keywords" content="+5v +12v">
<meta name="keywords" content="+12v -12v">
<meta name="keywords" content="power supply +9v, power supply 9v, +9v">
<meta name="keywords" content="блок питания">
<meta name="keywords" content="блок питания 512">
<meta name="keywords" content="блок питания +5в -5в +12в -12в">
<meta name="keywords" content="блок питания +5в +12в -12в">
<meta name="keywords" content="блок питания +5в, блок питания -5в">
<meta name="keywords" content="блок питания +12в, блок питания -12в">
<meta name="keywords" content="блок питания +5в +12в, блок питания +12в -12в">
<meta name="keywords" content="блок питания +5в -5в, блок питания 5в 12в"
<meta name="keywords" content="блок питания 5в, блок питания 12в">
<meta name="keywords" content="блок питания 5 вольт">
<meta name="keywords" content="блок питания 12 вольт">
<meta name="keywords" content="+5в -5в +12в -12в">
<meta name="keywords" content="+5в +12в">
<meta name="keywords" content="+12в -12в">
<meta name="keywords" content="блок питания +9в, блок питания 9В, +9В">
<meta name="keywords" content="блок питания на +5в -5в +12в -12в">
<meta name="keywords" content="блок питания на +5в +12в -12в">
<meta name="keywords" content="блок питания на +5в, блок питания на -5в">
<meta name="keywords" content="блок питания на +12в, блок питания на -12в">
<meta name="keywords" content="блок питания на +5в +12в, блок питания на +12в -12в">
<meta name="keywords" content="блок питания на +5в -5в, блок питания на 5в 12в"
<meta name="keywords" content="блок питания на 5в, блок питания на 12в">
<meta name="keywords" content="блок питания на 5 вольт">
<meta name="keywords" content="блок питания на 12 вольт">
<meta name="keywords" content="блок питания на +9в. блок питания на 9в">
<meta name="keywords" content="блок питания на +9 вольт. блок питания на 9 вольт">
<meta name="keywords" content="источник питания">
<meta name="keywords" content="источник питания 512">
<meta name="keywords" content="источник питания +5в -5в +12в -12в">
<meta name="keywords" content="источник питания +5в +12в -12в">
<meta name="keywords" content="источник питания +5в, источник питания -5в">
<meta name="keywords" content="источник питания +12в, источник питания -12в">
<meta name="keywords" content="источник питания +5в +12в, источник питания +12в -12в">
<meta name="keywords" content="источник питания +5в -5в, источник питания 5в 12в"
<meta name="keywords" content="источник питания 5в, источник питания 12в">
<meta name="keywords" content="источник питания 5 вольт">
<meta name="keywords" content="источник питания 12 вольт">
<meta name="keywords" content="источник питания +9в, источник питания 9В">
<meta name="keywords" content="источник питания на +5в -5в +12в -12в">
<meta name="keywords" content="источник питания на +5в +12в -12в">
<meta name="keywords" content="источник питания на +5в, источник питания на -5в">
<meta name="keywords" content="источник питания на +12в, источник питания на -12в">
<meta name="keywords" content="источник питания на +5в +12в, источник питания на +12в -12в">
<meta name="keywords" content="источник питания на +5в -5в, источник питания на 5в 12в"
<meta name="keywords" content="источник питания на 5в, источник питания на 12в">
<meta name="keywords" content="источник питания на 5 вольт">
<meta name="keywords" content="источник питания на 12 вольт">
<meta name="keywords" content="источник питания на +9в. источник питания на 9в">
<meta name="keywords" content="стабилизированный блок питания">
<meta name="keywords" content="трансформаторный стабилизированный блок питания">
<meta name="keywords" content="трансформаторный блок питания">
<meta name="keywords" content="трансформаторный блок питания своими руками">
<meta name="keywords" content="блок питания своими руками">
<meta name="keywords" content="блок питания схема">
<meta name="keywords" content="блок питания схема печатная плата">
<meta name="keywords" content="трансформаторный блок питания схема">
<meta name="keywords" content="трансформаторный блок питания схема печатная плата">
<!-- -->
<meta name="keywords" content="genius">
<meta name="keywords" content="genius sp-g06">
<meta name="keywords" content="компьютерные колонки genius">
<meta name="keywords" content="компьютерные колонки genius sp-g06">
<meta name="keywords" content="ремонт компьютерных колонок genius">
<meta name="keywords" content="ремонт компьютерных колонок genius sp-g06">
<meta name="keywords" content="ремонт колонок genius">
<meta name="keywords" content="ремонт колонок genius sp-g06">
<meta name="keywords" content="ремонт genius sp-g06">
<meta name="keywords" content="genius sp-g06 что было и что стало">
<meta name="keywords" content="компьютерные колонки genius sp-g06 что было и что стало">
<meta name="keywords" content="ремонт компьютерных колонок genius sp-g06 что было и что стало">
<meta name="keywords" content="ремонт колонок genius sp-g06 что было и что стало">
<meta name="keywords" content="ремонт genius sp-g06 что было и что стало">
<!-- AY-3-8910 (LPT-порт) -->
<meta name="keywords" content="ay-3-8910, ay 3 8910">
<meta name="keywords" content="ay-3-8910 github, ay 3 8910 github">
<meta name="keywords" content="ay-3-8910 lpt-port, ay 3 8910 lpt port">
<meta name="keywords" content="ay-3-8910 lpt-порт, ay 3 8910 lpt порт">
<meta name="keywords" content="ay-3-8910 lpt-port github, ay 3 8910 lpt port github">
<meta name="keywords" content="ay-3-8910 lpt-порт github, ay 3 8910 lpt порт github">
<meta name="keywords" content="ym2149">
<meta name="keywords" content="ym2149 github">
<meta name="keywords" content="ym2149 lpt-port, ym2149 lpt port">
<meta name="keywords" content="ym2149 lpt-порт, ym2149 lpt порт">
<meta name="keywords" content="ym2149 lpt-port github, ym2149 lpt port github">
<meta name="keywords" content="ym2149 lpt-порт github, ym2149 lpt порт github">
<meta name="keywords" content="трехканальный музыкальный таймер, трехканальный музыкальный таймер AY-3-8910">
<meta name="keywords" content="таймер ay-3-8910, таймер ay 3 8910">
<!-- Торренты -->
<meta name="keywords" content="opensource torrent, opensource torrents">
<meta name="keywords" content="torrent, torrents, torrent github, torrents github">
<meta name="keywords" content="торрент, торренты, торрент github, торренты github">
<meta name="keywords" content="torrent drilnet, torrents drilnet">
<meta name="keywords" content="torrent drilnet github, torrents drilnet github">
<!-- Журналы BlenderArt -->
<meta name="keywords" content="blenderart, blenderart мagazines, blenderart мagazines download, blenderart download">
<meta name="keywords" content="blenderart журналы, blenderart журналы скачать, blenderart скачать">
<meta name="keywords" content="blenderart github, blenderart мagazines github, blenderart мagazines download github">
<meta name="keywords" content="blenderart журналы github, blenderart журналы скачать github, blenderart скачать github">
<!-- Журналы Владимира вычегжанина -->
<meta name="keywords" content="blender-empire, blender empire, blender-empire download, blender empire download">
<meta name="keywords" content="magazines blender-empire, magazines blender-empire download">
<meta name="keywords" content="magazines blenderempire, magazines blenderempire download">
<meta name="keywords" content="журналы blenderempire, журналы blenderempire скачать">
<meta name="keywords" content="vychegzhanin журналы blender-empire, vychegzhanin журналы blender-empire сачать">
<meta name="keywords" content="вычегжанин журналы blender-empire, вычегжанин журналы blender-empire скачать">
<meta name="keywords" content="vychegzhanin, vladimir vychegzhanin">
<meta name="keywords" content="вычегжанин, владимир вычегжанин">
<!-- Небольшая подборка бесплатных программ -->
<meta name="keywords" content="бесплатные программы, бесплатные программы торрент">
<meta name="keywords" content="free programs, free programs torrent">
<meta name="keywords" content="free programs github, free programs torrent github">
<!-- -->
<link rel="stylesheet" type="text/css" href="index.css">
<link rel="stylesheet" type="text/css" href="game-15/game-15.css">
<link rel="SHORTCUT ICON" href="favicon.ico" type="image/x-icon">
<!-- -->
<script language="javascript" src="js/javascript.js"></script>
<!-- Литература -->
<script language="javascript" src="js/javascript-literatura.js"></script>
<!-- Игра Пятнашки -->
<script language="javascript" src="game-15/js/game-15.js"></script>
<!-- Законы Кирхгофа -->
<script language="javascript" src="js/javascript-kirchhoff.js"></script>
<!-- Калькулято ближайшее стандартное сопротивление -->
<script language="javascript" src="js/javascript-bs.js"></script>
<!-- Номиналы стандартных сопротивлений -->
<script language="javascript" src="js/javascript-nss.js"></script>
<!-- Закон Ома -->
<script language="javascript" src="js/javascript-ohm.js"></script>
<!-- Показать/закрыть окно (не модальное) -->
<script language="javascript" src="js/javascript-pop-up.js"></script>
<!-- Номиналы стандартных электролитических конденсаторов -->
<script language="javascript" src="js/javascript-nsek.js"></script>
<!-- Калькулятор ближайшая стандартная электролитическая ёмкость -->
<script language="javascript" src="js/javascript-calc-bsee.js"></script>
<!-- VCSPR конвертер -->
<script language="javascript" src="js/javascript-vcspr.js"></script>
<!-- VCGRF конвертер -->
<script language="javascript" src="js/javascript-vcgrf.js"></script>
<!-- VCBMPtoGRF конвертер -->
<script language="javascript" src="js/javascript-vcbmptogrf.js"></script>
<!-- VCGRFtoSPR -->
<script language="javascript" src="js/javascript-vcgrftospr.js"></script>
<!-- VCSPRtoGRF -->
<script language="javascript" src="js/javascript-vcsprtogrf.js"></script>
<!-- VRLE8 -->
<script language="javascript" src="js/javascript-vrle8-coding.js"></script>
<script language="javascript" src="js/javascript-vrle8-decoding.js"></script>
<!-- VRLE8 NEW -->
<script language="javascript" src="js/javascript-vrle8-coding-new.js"></script>
<!-- Размещение программы JS на странице html -->
<script language="javascript" src="js/javascript-prgjs.js"></script>
<!-- Символ CP866 в символ UTF-8 -->
<script language="javascript" src="js/javascript-CP866toUTF8.js"></script>
<!-- Какие байты присутствуют в файле, плюс сколько раз они встречаются -->
<script language="javascript" src="js/javascript-bf.js"></script>
</head>
<!-- Подгружаем литературу -->
<!-- LoadBook(); -->
<!-- Для Game-15. Убрать clock.gif -->
<!-- G15_RemoveClock(); -->
<!-- Инициализация Game-15. -->
<!-- G15_Init(); -->
<!-- Сбросить input file (конвертер SPR to BMP) -->
<!-- VCSPRResetInputFile(); -->
<!-- Сбросить input file (конвертер GRF to BMP) -->
<!-- VCGRFResetInputFile(); -->
<!-- Сбросить input file (конвертер BMP to GRF) -->
<!-- VCBMPGRFResetInputFile(); -->
<!-- Сбросить input file (конвертер GRF to SPR) -->
<!-- VCGRFtoSPRResetInputFile_2(); -->
<!-- Сбросить input file (конвертер SPR to GRF) -->
<!-- VCSPRtoGRFResetInputFile_2(); -->
<!-- Сбросить input file (конвертер File To VRLE8 NEW) -->
<!-- VRLE8NewCodResetInputFile_2(); -->
<!-- Сбросить input file (конвертер VRLE8 NEW To File) -->
<!-- VRLE8NewDeCodResetInputFile_2(); -->
<!-- Пересчитать горизонталь для Структура данных (горизонталь для окна) -->
<!-- VRLE8WidthDataStructure(); -->
<!-- Установить ширину модальному окну -->
<!-- VCBMPGRFSetWidthModWin(); -->
<!-- Установить Radio Button (BMP to GRF) -->
<!-- VCBMPGRFResetRB(); -->
<!-- Вставить в страницу законы Кирхгофа -->
<!-- BuildKirchhoffLaws(); -->
<!-- Вставить в страницу номиналы стандартных сопротивлений (НСС) -->
<!-- BuildNSS('ModalWinNSS'); -->
<!-- Вставить в страницу калькулятор ближайшее стандартное сопротивление -->
<!-- BuildBS1('ModalWinBS'); -->
<!-- Вставить в сраницу закон Ома -->
<!-- BuildOhm(); -->
<!-- Вставить в страницу номиналы стандартных электролитических конденсаторов -->
<!-- BuildNSEK('ModalWinNSEK'); -->
<!-- Вставить в страницу калькулятор ближайшая стандартная электролитическая ёмкость -->
<!-- BuildBSEE('ModalWinCalcBSEE'); -->
<!-- Ширина окна для Торрент -->
<!-- TorrentsWidth(); -->
<!-- Изменить размер по высоте (окно с прокруткой) -->
<!-- Схема TEA2025B Ver. 5 -->
<!-- РЕПОЗИТОРИИ -->
<!-- SetHeightTEAVer5(); -->
<!-- Изменить размер по высоте (окно с прокруткой) -->
<!-- Схема Power Supply 7809 -->
<!-- РЕПОЗИТОРИИ -->
<!-- SetHeight7809(); -->
<!-- Подставить другие изображения (большие) -->
<!-- Колонки Genius -->
<!-- РЕПОЗИТОРИИ -->
<!-- SetBigImagesGenius(); -->
<!-- Страница загружена полностью, убрать анимированную иконку -->
<!-- RemoveIndexLoader(); -->
<!-- onload будет выполнен после загрузки страницы -->
<body
onload="
// Установить Ширину Украинскому Флагу (в зависимости от монитора).
BarFlagWidth();
// Установить Ширину окна для Bar.
BarWidth();
// Какие байты присутствуют в файле.
// Вставить таблицу 1.
BF_CreateInsertTable('id_bf_table_1', 'id_code_', 'id_sym_');
// Какие байты присутствуют в файле.
// Сброс inputfile.
BF_Reset_InputFile()
LoadBook(); G15_RemoveClock(); G15_Init();
VCSPRResetInputFile(); VCGRFResetInputFile(); VCBMPGRFResetInputFile();
// Используется в grf to spr
VCGRFtoSPRResetInputFile_2();
// Используется в spr to grf
VCSPRtoGRFResetInputFile_2();
// VRLE8 NEW - это две функции объединены в одну!
// Используется в File To VRLE8 NEW.
VRLE8NewCodResetInputFile_2();
// Используется в VRLE8 NEW To File.
VRLE8NewDeCodResetInputFile_2();
VRLE8WidthDataStructure();
VCBMPGRFSetWidthModWin(); VCBMPGRFResetRB();
BuildKirchhoffLaws(); BuildNSS('ModalWinNSS'); BuildBS1('ModalWinBS'); BuildOhm();
BuildNSEK('ModalWinNSEK'); BuildBSEE('ModalWinCalcBSEE');
// Передёрнуть ползунок (Scroll).
DistortScroll();
// Ширина окна для Торрент.
TorrentsWidth();
// Изменить размер по высоте (окно с прокруткой).
// Схема TEA2025B Ver. 5.
// РЕПОЗИТОРИИ.
SetHeightTEAVer5();
// Изменить размер по высоте (окно с прокруткой).
// Схема Power Supply 7809.
// РЕПОЗИТОРИИ.
SetHeight7809();
// Подставить другие изображения (большие).
// Колонки Genius.
// РЕПОЗИТОРИИ.
SetBigImagesGenius();
RemoveIndexLoader();
">
<table align="center" width="95%" cellspacing="0" cellpadding="0" border="0">
<tr> <!-- Шапка -->
<td>
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<!-- Герб Украины -->
<!--
<td width="1%" style="padding-right: 6px; color: #dcdcdc; border-right: 1px solid;">
<img class="icon" src="images/GerbUA_2.png"
title="Сделано в Blender 3D. Ukraine. (C) Демидов С.В. License: Free">
</td>
-->
<!-- Остальное (Герб Украины) -->
<!--
<td width="99%" style="padding-left: 6px;">
-->
<td>
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="1%" class="texthobby">
<b>Hobby</b>
</td>
<td width="1%" style="vertical-align: bottom; padding-left: 4px;">
<a class="smalltxthobby" href="https://drilnet.github.io" title="https://drilnet.github.io">https://drilnet.github.io</a>
</td>
<!-- Анимированная иконка идёт загрузка -->
<td width="1%" id="indexloader" style="vertical-align: bottom; padding-left: 4px;">
<img class="icon" src="icons/clock2_white.gif" title="Идёт загрузка страницы!">
</td>
<td align="right" class="smalltxthobby" style="vertical-align: bottom;">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td align="right" style="padding-left: 8px;">
<i><b>Благодарность</b> (флаги расположены в алфавитном порядке):</i>
</td>
<td style="padding-left: 4px;">
<!-- Флаги -->
<table class="USCNRU" cellspacing="0" cellpadding="0" border="0">
<tr>
<td>
<img class="icon" src="icons-flags/US_24x24.png"
title="Благодарность за GITHUB">
</td>
<td style="padding-left: 4px;">
<img class="icon" src="icons-flags/CN_24x24.png"
title="Благодарность за радиодетали и измерительные приборы">
</td>
<td style="padding-left: 4px;">
<img class="icon" src="icons-flags/RU_24x24.gif"
title="Благодарность за сайт https://zx-pk.ru и за другие ресурсы">
</td>
</tr>
</table>
</td>
<td>
<td style="padding-left: 4px;">
<i><b>Успехов Вам!</b></i>
</td>
</td>
</tr>
</table>
</td>
</tr>
</table>
<hr class="hrwhite">
<br>
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<!-- Иконка GITHUB'а -->
<td width="1%" style="padding-right: 6px;">
<img class="icon" src="icons/github-logo.png" title="Лицензия на иконку: CC 3.0 BY. Автор: Dave Gandy">
</td>
<td>
<a href="https://github.com" title="https://github.com">GITHUB</a>
- Моя записная книжка (наброски, заметки и т.д. и т.п.)!
</td>
<td style="padding-right: 16px;">
<table align="right" cellspacing="0" cellpadding="0" border="0">
<tr>
<td style="padding: 0px 8px 0px 8px;">
<!-- Google поиск -->
<table class="iconsearch" cellspacing="0" cellpadding="0" border="0">
<tr>
<td>
<a href="https://google.com" target="_blank">
<img class="icon" src="icons/googlesearch_20x20.png" title="Поисковая система Google">
</a>
</td>
</tr>
</table>
</td>
<td style="padding: 0px 8px 0px 0px">
<!-- Meta поиск -->
<table class="iconsearch" cellspacing="0" cellpadding="0" border="0">
<tr>
<td>
<a href="https://meta.ua" target="_blank">
<img class="icon" src="icons/metasearch_20x20.png" title="Украинская поисковая система Meta">
</a>
</td>
</tr>
</table>
</td>
<td style="padding: 0px 0px 0px 0px">
<!-- Yandex поиск -->
<table class="iconsearch" cellspacing="0" cellpadding="0" border="0">
<tr>
<td>
<a href="https://yandex.ru" target="_blank">
<img class="icon" src="icons/yandexsearch_20x20.png" title="Поисковая система Yandex">
</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr> <!-- Конец шапки -->
<!-- Горизонтальная линия -->
<tr>
<td>
<br>
<hr>
<br>
</td>
</tr>
<!-- Дорогая Украина! -->
<tr>
<td align="center">
<!-- Флаг Украины -->
<table id="id_flag_width" width="900px" cellspacing="0" cellpadding="0" border="0">
<tr>
<td height="20px" style="background: #1919fa; color: #ffffff;">
<b>Дорогая Украина! Храни тебя Господь!</b>
</td>
</tr>
<tr>
<td height="20px" style="background: #f5f516;">
</td>
</tr>
</table>
</td>
</tr>
<!-- Горизонтальная линия -->
<tr>
<td>
<br>
<hr>
<br>
</td>
</tr>
<!-- Прекратите Войну -->
<tr>
<td align="center">
<span style="color: #e00000; font-size: 14px;">Люди! Прекратите Войну!</span>
<br>
<span style="color: #e00000; font-size: 14px;">Нет Войне!</span>
<br>
<span style="color: #e00000; font-size: 14px;">Нет Обстрелам!</span>
</td>
</tr>
<!-- Горизонтальная линия -->
<tr>
<td>
<br>
<hr>
<br>
</td>
</tr>
<!-- Bar (полоса, рейка) -->
<tr>
<td align="center">
<span class="bar_size_title">Попробуйте хоть что-то сделать своими руками!</span>
<br>
<br>
<div id="id_bar_winscroll_1" style="">
<table id="id_bar_winscroll_2" style="padding-right: 0px; padding-left: 0px; padding-top: 0px; padding-bottom: 0px;" cellspacing="0" cellpadding="0" border="0">
<tr>
<td>
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td>
<table class="bar_frame" cellspacing="0" cellpadding="0" border="0">
<tr>
<td>
<a href="javascript:Bar_Sw_TEA2025B();">
<img id="id_bar_images_tea2025b" class="icon" src="images/bar/TEA2025B_2.png" title="Усилитель звука на м/c TEA2025B">
</a>
</td>
</tr>
</table>
</td>
<td style="padding-left: 6px;">
<table class="bar_frame" cellspacing="0" cellpadding="0" border="0">
<tr>
<td>
<a href="javascript:Bar_Sw_BOX();">
<img id="id_bar_images_box" class="icon" src="images/bar/BOX_2.png" title="Ящик для экспонирования фоторезиста">
</a>
</td>
</tr>
</table>
</td>
<td style="padding-left: 6px;">
<table class="bar_frame" cellspacing="0" cellpadding="0" border="0">
<tr>
<td>
<a href="javascript:Bar_Sw_PS();">
<img id="id_bar_images_ps" class="icon" src="images/bar/PS_2.png" title="Стабилизированный блок питания +5В/1А, -5В/0.3A, +12В/0.5А, -12В/0.5А">
</a>
</td>
</tr>
</table>
</td>
<td style="padding-left: 6px;">
<table class="bar_frame" cellspacing="0" cellpadding="0" border="0">
<tr>
<td>
<a href="javascript:Bar_Sw_Speaker();">
<img id="id_bar_images_speaker" class="icon" src="images/bar/Speaker_2.png" title="Компьютерные колонки после ремонта">
</a>
</td>
</tr>