-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathres.txt
More file actions
1019 lines (1019 loc) · 60.8 KB
/
res.txt
File metadata and controls
1019 lines (1019 loc) · 60.8 KB
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
http://www.warheroes.ru/hero/hero.asp?Hero_id=14802
http://www.animenewsnetwork.com/encyclopedia/anime.php?id=450
https://anidb.net/perl-bin/animedb.pl?show=anime&aid=1177
https://www.animenewsnetwork.com/encyclopedia/anime.php?id=450
https://www.imdb.com/title/tt0156204
https://www.animenewsnetwork.cc/encyclopedia/anime.php?id=450
https://anidb.net/perl-bin/animedb.pl?show=anime&aid=1177
https://www.imdb.com/title/tt0302585/
http://www.fubar-themovie.com
http://goodcinema.ru/?q=node/5511/
https://www.imdb.com/title/tt0302585/trivia
https://www.imdb.com/title/tt0302585/awards
https://www.imdb.com/title/tt0302585/releaseinfo
http://www.fubar-themovie.com
https://www.allmovie.com/movie/v261743
https://www.allocine.fr/film/fichefilm_gen_cfilm=118172.html
https://www.csfd.cz/film/82315
https://www.filmaffinity.com/en/film171188.html
https://www.imdb.com/title/tt0302585
https://www.rottentomatoes.com/m/fubar
http://www.gdk-research.de/db/apsisa.dll/ete
https://d-nb.info/gnd/507844-1
https://viaf.org/viaf/138826370
https://www.worldcat.org/identities/containsVIAFID/138826370
http://museovetro.visitmuve.it/en/il-museo/layout-and-collections/glass-crisis-18th-19th-century/
https://web.archive.org/web/20151222145225/http://museovetro.visitmuve.it/en/il-museo/layout-and-collections/glass-crisis-18th-19th-century/
http://museovetro.visitmuve.it/en/il-museo/layout-and-collections/sections/
http://www.promovetro.com/en/the-mark/
https://web.archive.org/web/20170610151643/http://www.promovetro.com/en/the-mark/
http://www.larousse.fr/encyclopedie/autre-region/for%C3%AAt_domaniale_de_Fontainebleau/119844
http://originalmuranoglass.com/how-it-is-made-murano-glass-and-history.html
https://books.google.ru/books?id=pF9VAAAAcAAJ&pg=PA69&lpg=PA69&dq=nobiltà+di+murano&source=bl&ots=NOliDvpCH-&sig=i60VOmqDcpfGTVnw1q4LVu3IWKA&hl=ru&sa=X&ved=0ahUKEwjF3OC6r-LJAhVBnHIKHc7KAeAQ6AEIUDAI#v=onepage&q=nobiltà%20di%20murano&f=false
http://www.muranoglass.com/en/#.VnGp0kqLRR0
http://museovetro.visitmuve.it/en/home/
http://originalmuranoglass.com//
https://web.archive.org/web/20151222105307/http://originalmuranoglass.com//
https://www.mademuranoglass.com/en/murano-made-murano-glass
http://www.polnaja-jenciklopedija.ru/planeta-zemlya/venetsianskoe-steklo.html
http://edu.hermitage.ru/catalogs/1262290432/themes/1262290509/article/1262290533
https://www.openstreetmap.org/?mlat=61.2822&mlon=47.0253&zoom=12
https://www.bing.com/maps/default.aspx?v=2&cp=61.2822~47.0253&style=h&lvl=11&sp=Point.61.2822_47.0253_1_
https://www.openstreetmap.org/?mlat=61.2822&mlon=47.0253&zoom=12
http://textual.ru/gvr/index.php?card=159996
https://web.archive.org/web/20131015092212/http://www.mnr.gov.ru/files/part/0306_perechen.rar
https://www.openstreetmap.org/?mlat=-21.44333&mlon=-65.71889&zoom=12
https://www.openstreetmap.org/?mlat=-21.44333&mlon=-65.71889&zoom=12
http://www.southamericaliving.com/border-crossing-la-quicaca-argentina-to-villazon-bolivia/
https://www.google.com/maps/d/viewer?hl=es&ie=UTF8&t=k&msa=0&source=embed&output=georss&mid=18t4m3EzTEndEmDhvcBSdxGFKhLc&ll=-21.444718527037317%2C-65.7200085&z=17
https://www.geonames.org/3902202/tupiza.html
http://www.southamericaliving.com/travel-guide-to-tupiza-bolivia/
https://recorriendoap.blogspot.com/2018/05/la-ciudad-de-tupiza.html
https://www.britannica.com/place/Tupiza
http://www.boliviaweb.com/tupiza.htm
https://weatherspark.com/y/27962/Average-Weather-in-Tupiza-Bolivia-Year-Round
http://tiempoytemperatura.es/bolivia/tupiza.html#por-horas
https://www.bolivia-travels.com/tupiza
https://www.sports-reference.com/olympics/countries/TPE/summer/1968/
https://web.archive.org/web/20200417045636/https://www.sports-reference.com/olympics/countries/TPE/summer/1968/
https://www.openstreetmap.org/?mlat=49.07694&mlon=8.84417&zoom=12
https://www.openstreetmap.org/?mlat=49.07694&mlon=8.84417&zoom=12
http://www.kuernbach.de/
http://www.statistik-bw.de/Veroeffentl/Statistische_Berichte/3126_10001.pdf
https://web.archive.org/web/20130501053941/http://www.statistik-bw.de/Veroeffentl/Statistische_Berichte/3126_10001.pdf
http://www.kuernbach.de/
https://www.openstreetmap.org/?mlat=58.138316&mlon=49.414752&zoom=12
https://www.openstreetmap.org/?mlat=58.138316&mlon=49.414752&zoom=12
https://classinform.ru/okato/search.php?str=33208836006
https://classinform.ru/oktmo/search.php?str=33608436121
https://kirovstat.gks.ru/storage/mediabank/tom12%5B1%5D.pdf
http://www.webcitation.org/6PF67Kxks
https://www.geonames.org/479744/tyutyuki.html
https://fgistp.economy.gov.ru/get_doc_atchive.php?uin=336080000201032011092801
https://www.imdb.com/name/nm0324790/
https://movies.yahoo.com/person/joanna-going/biography.html
https://www.webcitation.org/6DxnY8oMf?url=http://movies.yahoo.com/person/joanna-going/biography.html
http://www.people.com/people/article/0,,20449705,00.html
https://www.webcitation.org/6DxnYhQJ7?url=http://www.people.com/people/article/0,,20449705,00.html
https://www.allmovie.com/artist/p27400
https://www.allocine.fr/personne/fichepersonne_gen_cpersonne=40944.html
https://www.csfd.cz/tvurce/18867
https://www.imdb.com/name/nm0324790
https://www.kinopoisk.ru/name/33164/
https://nndb.com/people/106/000130713
https://catalogue.bnf.fr/ark:/12148/cb14182087x
https://d-nb.info/gnd/1174813660
http://isni-url.oclc.nl/isni/0000000119348179
https://id.loc.gov/authorities/no2001038831
https://viaf.org/processed/NUKAT%7Cn2019161654
https://viaf.org/viaf/268785326
https://www.worldcat.org/identities/containsVIAFID/268785326
https://www.transfermarkt.com/transfermarkt/profil/spieler/101255
https://fbref.com/en/players/a19cf6f1/
http://www.thesoccerworldcups.com/players/magdy_abedelghani.php
https://www.tcdb.com/Person.cfm/pid/191942/
https://fbref.com/en/players/a19cf6f1/
https://www.foradejogo.net/player.php?player=195907270001
https://www.national-football-teams.com/player/17664.html
https://www.olympedia.org/athletes/24710
https://www.thefinalball.com/player.php?id=15406
https://www.transfermarkt.com/transfermarkt/profil/spieler/101255
http://ratings.fide.com/card.phtml?event=4106180
http://chess-db.com/public/pinfo.jsp?id=4106180
http://www.ourbaku.com/index.php5/%D0%9B%D0%B8%D1%81%D1%82%D0%B5%D0%BD%D0%B3%D0%B0%D1%80%D1%82%D0%B5%D0%BD_%D0%91%D0%BE%D1%80%D0%B8%D1%81_%D0%9C%D0%BE%D0%B8%D1%81%D0%B5%D0%B5%D0%B2%D0%B8%D1%87_-_%D0%B8%D0%B7%D0%B2%D0%B5%D1%81%D1%82%D0%BD%D1%8B%D0%B9_%D0%B3%D0%B5%D0%BE%D0%BB%D0%BE%D0%B3-%D0%BD%D0%B5%D1%84%D1%82%D1%8F%D0%BD%D0%B8%D0%BA_%D0%90%D0%B7%D0%B5%D1%80%D0%B1%D0%B0%D0%B9%D0%B4%D0%B6%D0%B0%D0%BD%D0%B0_%D0%B8_%D0%B5%D0%B3%D0%BE_%D1%81%D0%B5%D0%BC%D1%8C%D1%8F
https://www.ourbaku.com/index.php/%D0%9B%D0%B5%D0%BE%D0%BD%D0%B8%D0%B4_%D0%9B%D0%B8%D1%81%D1%82%D0%B5%D0%BD%D0%B3%D0%B0%D1%80%D1%82%D0%B5%D0%BD_%22%D0%9C%D0%BE%D1%8F_%D0%BF%D0%B0%D0%BC%D1%8F%D1%82%D1%8C_%D0%BE_%D1%88%D0%B0%D1%85%D0%BC%D0%B0%D1%82%D0%BD%D1%8B%D1%85_%D0%B1%D0%B0%D1%82%D0%B0%D0%BB%D0%B8%D1%8F%D1%85_%D0%B2_%D0%91%D0%B0%D0%BA%D1%83%22.
http://www.ourbaku.com/index.php5/%D0%9B%D0%B8%D1%81%D1%82%D0%B5%D0%BD%D0%B3%D0%B0%D1%80%D1%82%D0%B5%D0%BD_%D0%9C%D0%BE%D0%B8%D1%81%D0%B5%D0%B9_%D0%98%D1%81%D0%B0%D0%B0%D0%BA%D0%BE%D0%B2%D0%B8%D1%87_-_%D1%80%D0%B0%D0%B1%D0%BE%D1%87%D0%B8%D0%B9-%D0%BC%D0%B5%D1%82%D0%B0%D0%BB%D0%BB%D0%B8%D1%81%D1%82
http://ratings.fide.com/card.phtml?event=4106180
https://www.365chess.com/players/Leonid_Listengarten
https://www.365chess.com/players/Leonid_Listengarten
https://chesstempo.com/gamedb/player/121175
https://ratings.fide.com/card.phtml?event=4106180
http://www.lgrach.ru/novosti/respublika-krym/2016/04/28/mustafa-chachi
http://old.iea.ras.ru/books/09_KRIM2/120220041404.htm
https://tashkentpamyat.ru/chachi-mustafa-khlopkorob-.html
http://www.warheroes.ru/hero/hero.asp?Hero_id=16387
https://newspaperarchive.com/obituary-clipping-feb-17-1970-2167110/
http://www.minsport.gov.ru/documents/awards/4490/
http://www.vcdynamo.ru/club/history/2006_2007/makarov/?view=player
https://web.archive.org/web/20160304193424/http://www.vcdynamo.ru/club/history/2006_2007/makarov/?view=player
http://sport-fact.ru/sport/other/news4635.php
http://www.sovsport.ru/gazeta/article-item/217442
https://www.webcitation.org/6H7Vv2xEm?url=http://www.sovsport.ru/gazeta/article-item/217442
http://www.sport-express.ru/newspaper/2010-09-17/14_2/
http://www.championat.com/volleyball/article-163900-makarov-tochno-znaem-v-chjom-neobkhodimo-pribavit.html
https://www.webcitation.org/6H7W27oYO?url=http://www.championat.com/volleyball/article-163900-makarov-tochno-znaem-v-chjom-neobkhodimo-pribavit.html
http://gazprom-ugra.ru/2017-18/index.php?option=com_k2&view=item&id=1366:sergej-makarov-v-surgute&Itemid=101
https://www.championat.com/volleyball/news-3745875-denis-birjukov-i-sergej-makarov-stanut-igrokami-urala.html
http://www.volleyservice.ru/index.php?option=com_volleyplayers&task=showplayer&pid=226&Itemid=61
http://www.fivb.org/EN/Volleyball/Competitions/WorldChampionships/2010/Men/Players.asp?Tourn=MWCH2010&Team=RUS&No=113345
http://www.allmovie.com/movie/v202984
https://apiv3.iucnredlist.org/api/v3/taxonredirect/22697323
https://www.itis.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&search_value=174853
https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=188380
https://www.worldbirdnames.org/bow/pelicans/
https://dx.doi.org/10.14344/IOC.ML.11.2
http://www.sevin.ru/vertebrates/index.html?birds/44.html
https://www.itis.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&search_value=500213
https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=395100
https://eol.org/pages/2508221
https://npgsweb.ars-grin.gov/gringlobal/taxonomygenus.aspx?id=19782
http://www.ipni.org/ipni/idPlantNameSearch.do?id=33729-1
http://herba.msu.ru/shipunov/school/books/flora_sssr1941_10.djvu
https://bigenc.ru/text/3526578
https://eol.org/pages/2508221
https://www.gbif.org/species/3020531
https://www.inaturalist.org/taxa/62215
https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=395100
https://www.irmng.org/aphia.php?p=taxdetails&id=1365303
https://www.itis.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&search_value=500213
https://www.marinespecies.org/aphia.php?p=taxdetails&id=1435894
https://academic.microsoft.com/#/detail/2780119082
http://esu.com.ua/search_articles.php?id=18630
http://repository.kpi.kharkov.ua/bitstream/KhPI-Press/4290/1/Kharkov_entsikloped_sl_2014.pdf
http://shron1.chtyvo.org.ua/Kudrytskyi_Anatolii/Myttsi_Ukrainy.pdf
http://esu.com.ua/search_articles.php?id=18630
https://www.leconcertdastree.fr
http://www.telegraph.co.uk/culture/3619044/Out-of-the-niche.html
http://articles.latimes.com/2011/nov/13/entertainment/la-ca-emmanuelle-haim-20111113
http://www.kommersant.ru/doc.aspx?DocsID=769359
http://os.colta.ru/music_classic/projects/82/details/1344/
http://www.leconcertdastree.fr/
https://open.spotify.com/artist/4JUj55lGkJf3yhYqSJo1dH
https://www.allmusic.com/artist/mn0001722355
https://www.csfd.cz/tvurce/270868
https://www.discogs.com/artist/960948
https://www.imdb.com/name/nm0372071
https://musicbrainz.org/artist/c1fcdde9-4208-47c9-8929-f8c8432e108c
https://www.universalis.fr/encyclopedie/emmanuelle-haim/
https://catalogue.bnf.fr/ark:/12148/cb141861039
https://d-nb.info/gnd/135308399
http://data.beeldengeluid.nl/gtaa/259762
http://isni-url.oclc.nl/isni/0000000120371595
https://id.loc.gov/authorities/no2003057085
http://aut.nkp.cz/xx0138281
https://viaf.org/processed/NUKAT%7Cn2013060646
https://www.idref.fr/080138268
https://viaf.org/viaf/66675804
https://www.worldcat.org/identities/containsVIAFID/66675804
https://www.openstreetmap.org/?mlat=55.54167&mlon=37.70000&zoom=11
https://www.openstreetmap.org/?mlat=55.54167&mlon=37.70000&zoom=11
https://classinform.ru/okato/search.php?str=46228
https://classinform.ru/oktmo/search.php?str=46628
http://www.adm-vidnoe.ru
http://docs.cntd.ru/document/5810633
https://rosstat.gov.ru/storage/mediabank/CcG8qBhP/mun_obr2020.rar
https://web.archive.org/web/20200822004543/https://rosstat.gov.ru/storage/mediabank/CcG8qBhP/mun_obr2020.rar
http://www.mosoblduma.ru/Zakoni/Zakoni_Moskovskoj_oblasti/item/294509/
http://www.mosoblduma.ru/Zakoni/Zakoni_Moskovskoj_oblasti/item/288025/
http://mosobl.elcode.ru/page.aspx?124186
http://mosobl.elcode.ru/page.aspx?28515
http://vidnoe24.ru/news/2012/07/1406/
http://lingvarium.org/russia/settlem-database.shtml
https://web.archive.org/web/20201117084918/http://lingvarium.org/russia/settlem-database.shtml
http://www.perepis2002.ru/ct/doc/1_TOM_01_04.xls
http://www.webcitation.org/65AdCU0q3
http://www.gks.ru/dbscripts/munst/munst46/DBInet.cgi?pl=8006001
http://istmat.info/files/uploads/17630/sssr_ad-ter_delenie_1931_rsfsr.pdf
http://www.webcitation.org/6Iz5FTXL2
http://demoscope.ru/weekly/ssp/rus_pop_39_2.php
http://www.webcitation.org/6LMjRU3mE
http://demoscope.ru/weekly/ssp/rus59_reg1.php
http://www.webcitation.org/6KGKkaTbE
http://demoscope.ru/weekly/ssp/rus70_reg1.php
http://www.webcitation.org/6KMMUrFSL
http://demoscope.ru/weekly/ssp/rus79_reg1.php
http://demoscope.ru/weekly/ssp/rus89_reg1.php
http://www.webcitation.org/618gmeGGB
http://msu-mo.ru/userdata/docs/abc_np_03_08_06.zip
http://www.webcitation.org/64cNVl25K
http://www.gks.ru/bgd/regl/B09_109/IssWWW.exe/Stg/d01/tabl-21-09.xls
http://www.webcitation.org/6MJmu0z1u
http://www.gks.ru/free_doc/new_site/perepis2010/croc/Documents/Vol1/pub-01-11.xlsx
http://www.webcitation.org/6GDBk0rPa
http://www.gks.ru/dbscripts/munst/munst46/DBInet.cgi?pl=8112027
http://www.gks.ru/free_doc/doc_2012/bul_dr/mun_obr2012.rar
http://www.webcitation.org/6PyOWbdMc
http://www.gks.ru/free_doc/doc_2013/bul_dr/mun_obr2013.rar
http://www.webcitation.org/6LAdCWSxH
http://www.gks.ru/free_doc/doc_2014/bul_dr/mun_obr2014.rar
http://www.webcitation.org/6RWqP50QK
http://www.gks.ru/free_doc/doc_2015/bul_dr/mun_obr2015.rar
http://www.webcitation.org/6aaNzOlFO
http://www.gks.ru/free_doc/doc_2016/bul_dr/mun_obr2016.rar
http://web.archive.org/web/20210508043701/http://www.gks.ru/free_doc/doc_2016/bul_dr/mun_obr2016.rar
http://www.gks.ru/free_doc/doc_2017/bul_dr/mun_obr2017.rar
http://web.archive.org/web/20170731141731/http://www.gks.ru/free_doc/doc_2017/bul_dr/mun_obr2017.rar
http://www.gks.ru/free_doc/doc_2018/bul_dr/mun_obr2018.rar
http://web.archive.org/web/20180726010024/http://www.gks.ru/free_doc/doc_2018/bul_dr/mun_obr2018.rar
http://www.gks.ru/free_doc/doc_2019/bul_dr/mun_obr2019.rar
https://web.archive.org/web/20210502132133/http://www.gks.ru/free_doc/doc_2019/bul_dr/mun_obr2019.rar
https://mosreg.ru/download/document/1004949
http://vidnoe24.ru/news/2017/03/2267/
https://www.novostroy.ru/buildings/rayon-leninskiy-mo/
http://www.adm-vidnoe.ru
https://web.archive.org/web/20070927213208/http://mosobl.elcode.ru/doc.asp?ID=3326
https://archive.is/20130417061442/adm-vidnoe.ru/uploads/50/map_sait_big.jpg
http://www.isles.ru/depository/region_50/region_50_013_db.html
http://www.temples.ru/tree.php?ID=90
http://www.biblio-vidnoe.ru/local_history/article/
http://stepanov01.narod.ru/library/denikin01/chapt19.htm
http://istmat.info/node/28647
https://books.google.pl/books?id=97PesXqhNdAC&lpg=PA660&dq=Bertrand%20Russell%20Ignatious%20Yourin&pg=PA228#v=onepage&q=Bertrand%20Russell%20Ignatious%20Yourin&f=false
http://metryki.genealodzy.pl/metryka.php?ar=8&zs=9179d&sy=611&kt=1&plik=322-327.jpg#zoom=2&x=986&y=1076=false
https://podwarszawskie-zycie-pruszkowa.pl/ukrywana-skrzetnie-historia-czesc-trzecia/
https://gintowtdzewaltowski.blogspot.com/p/blog-page_27.html
http://www.niv.ru/doc/ballet/encyclopedia/031.htm
http://www.niv.ru/doc/theatre/encyclopedia/257.htm#ab5358
http://www.az-customs.net/rus/arxlaw/he191.htm
http://www.krugosvet.ru/enc/kultura_i_obrazovanie/teatr_i_kino/NOVERR_ZHAN_ZHORZH.html
http://rusmilestones.ru/day/show/?id=25236
https://web.archive.org/web/20120507061133/http://rusmilestones.ru/day/show/?id=25236
http://enc-dic.com/enc_music/Le-Pik-SH-4046.html
http://www.knigisosklada.ru/book/2163960/Pisma-o-tance/
http://in-past.ru/istoriya-russkogo-baleta/245-razvitie-syuzhetnogo-baleta-v-rossii-vo-vtoroj-polovine-xviii-veka.html
http://www.kodges.ru/library/view/20288/page/116.htm
http://www.iatp.md/moldmusicpress/poclitaru.htm
https://web.archive.org/web/20090603095338/http://www.iatp.md/moldmusicpress/poclitaru.htm
http://www.mosconsv.ru/publications/aref/maximova-okt.pdf
https://www.musiklexikon.ac.at/ml/musik_L/Le_Picq_Charles.xml
https://bigenc.ru/text/2140959
https://d-nb.info/gnd/141755725
https://id.loc.gov/authorities/nr00037125
https://viaf.org/viaf/73695928
https://www.worldcat.org/identities/containsVIAFID/73695928
http://www.apsnet.org/publications/apsnetfeatures/Documents/1998/ZaitlinDiscoveryCausalAgentTobaccoMosaicVirus.pdf
https://web.archive.org/web/20120204055328/http://www.apsnet.org/publications/apsnetfeatures/Documents/1998/ZaitlinDiscoveryCausalAgentTobaccoMosaicVirus.pdf
https://www.cobiss.si/scripts/cobiss?command=DISPLAY&base=CONOR&rid=184485475
https://d-nb.info/gnd/117542210
http://isni-url.oclc.nl/isni/0000000118722229
http://isni-url.oclc.nl/isni/0000000019632586
https://id.loc.gov/authorities/n91037423
http://aut.nkp.cz/kv2009520774
https://nla.gov.au/anbd.aut-an35739882
http://mak.bn.org.pl/cgi-bin/KHW/makwww.exe?BM=01&IM=04&NU=01&WI=A27193391
https://data.bibliotheken.nl/id/thes/p07137163X
https://viaf.org/processed/NUKAT%7Cn01010848
https://www.idref.fr/148021638
https://viaf.org/viaf/792592
https://www.worldcat.org/identities/containsVIAFID/792592
https://www.openstreetmap.org/?mlat=50.52250&mlon=30.50833&zoom=17
http://www.weborama.fm/
http://artgorbunov.ru/portfolio/weborama-2/
https://www.webcitation.org/66xIp4U8T?url=http://artgorbunov.ru/projects/weborama-2/
https://www.ferra.ru/news/techlife/weborama-sitesoftheday-01-10-2012.htm
https://web.archive.org/web/20180903133012/http://www.weborama.fm/
https://web.archive.org/web/20120615010050/http://www.weborama.fm/
https://web.archive.org/web/20090830062742/http://www.computerbild.ru/audio/5476
http://pln-pskov.ru/culture/172377.html
http://www.pskov.ru/press/21.07.14/46964
http://pskov.kp.ru/online/news/1765735/
http://afishapskov.ru/others/festival-helga-2014.html
https://vk.com/helga_pskov
http://www.gtrkpskov.ru/news-feed/news/7242-istoricheskij-festival-khelga-vernul-pskovichej-na-10-vekov-nazad.html
http://www.gtrkpskov.ru/news-feed/news/7242-istoricheskij-festival-khelga-vernul-pskovichej-na-10-vekov-nazad.html
https://helga-fest.tk
https://vk.com/helga_pskov
http://tourism.pln24.ru/tourism/ptourism/sobtour/175629.html
http://pln-pskov.ru/culture/172377.html
http://www.pskov.ru/press/21.07.14/46964
http://pskov.kp.ru/online/news/1765735/
http://afishapskov.ru/others/festival-helga-2014.html
http://ratings.fide.com/card.phtml?event=14900483
http://chess-db.com/public/pinfo.jsp?id=14900483
http://ratings.fide.com/download.phtml
http://www.olimpbase.org
http://ratings.fide.com/id.phtml?event=14900483
https://ratings.fide.com/download.phtml
http://www.benoni.de/schach/elo/qry_elo_de.html
http://www.olimpbase.org/Elo/
http://ratings.fide.com/card.phtml?event=14900483
http://www.chessgames.com/perl/chessplayer?pid=66401
https://www.365chess.com/players/Tomas_Likavsky
http://www.olimpbase.org/players/yamo8emf.html
https://www.openstreetmap.org/?mlat=54.6448747&mlon=41.2646609&zoom=13
https://www.openstreetmap.org/?mlat=54.6448747&mlon=41.2646609&zoom=13
https://classinform.ru/okato/search.php?str=61258845010
https://classinform.ru/oktmo/search.php?str=61658445161
http://ryazan.gks.ru/wps/wcm/connect/rosstat_ts/ryazan/resources/209013804fa389e391bf99ca6ff6f188/05.+Численность+населения+сельских+населенных+пунктов+Рязанской+области.htm
http://www.webcitation.org/6LkxDXqQX
http://62info.ru/history/node/11173
http://rodnoe-selo.ru/index/0-8
https://www.imdb.com/name/nm3467289/
http://photograf.rider.com.ua/kh_photo.htm
https://web.archive.org/web/20100918023921/http://photograf.rider.com.ua/kh_photo.htm
http://caucasus-documentary.ru/ru/region/azerbaijan/memo.php://caucasus-documentary.ru/ru/region/azerbaijan/memo.php
http://photograf.rider.com.ua/table2.htm
https://web.archive.org/web/20181007182828/http://photograf.rider.com.ua/table2.htm
https://kharkivoda.gov.ua/ru/news/65844
http://www.echo-az.com/archive/2007_06/1583/istoriya01.shtml
https://www.youtube.com/watch?v=W9IA9BmLV-U
http://fm-ok.pro/Spravochnik_Popova_tom_2/index.html
https://www.openstreetmap.org/?mlat=49.9167&mlon=88.5&zoom=10
https://www.openstreetmap.org/?mlat=49.9167&mlon=88.5&zoom=10
http://meteo.ru/it/178-aisori
http://www.vtourisme.com/altaj/geografiya-i-klimat/269-klimat
https://megabook.ru/article/Чуйская%20степь
https://camp-altai.ru/%d1%87%d1%83%d0%b9%d1%81%d0%ba%d0%b0%d1%8f-%d1%81%d1%82%d0%b5%d0%bf%d1%8c/
http://sibexpeditions.ru/altai-chuiskayasteppe/
http://www.lib.ru/NEKRASOW_A/
http://obd-memorial.ru/html/info.htm?id=4185601
http://feb-web.ru/feb/kle/kle-abc/ke5/ke5-1743.htm
http://www.lib.ru/NEKRASOW_A/
http://bibliogid.ru/pisateli/o-pisatelyakh/484-nekrasov-andrej-sergeevich
http://obd-memorial.ru/html/info.htm?id=4185601
http://feb-web.ru/feb/kle/KLE-abc/ke5/ke5-1743.htm
https://d-nb.info/gnd/1076374093
http://isni-url.oclc.nl/isni/0000000400172320
https://id.loc.gov/authorities/n82254173
http://id.ndl.go.jp/auth/ndlna/00451096
http://aut.nkp.cz/jx20050721020
https://viaf.org/processed/NUKAT%7Cn2005096288
https://viaf.org/viaf/12805048
https://viaf.org/viaf/68796485
https://www.worldcat.org/identities/containsVIAFID/12805048
https://www.worldcat.org/identities/containsVIAFID/68796485
http://www.sports.ru/tags/3046563.html?type=dossier
https://spartak.com/news/2019-11-30-sostoyalsya_kubok_yuriya_gavrilova/
https://www.youtube.com/watch?v=PekzXL_hemk
https://www.gavrilov.fund/
https://www.youtube.com/watch?v=nVMqeXJTjlk
https://web.archive.org/web/20110723091033/http://www.klisf.info/inter/ek/gamer278.htm
https://www.youtube.com/c/GavrilovFund
https://russiainphoto.ru/sources/361/
https://eu-football.info/_player.php?id=6608
https://fbref.com/en/players/24814fc5/
https://footballfacts.ru/person/462
https://www.kooora.com/default.aspx?player=40935
https://www.national-football-teams.com/player/19070.html
https://www.olympedia.org/athletes/27574
https://www.transfermarkt.com/transfermarkt/profil/spieler/131533
https://www.worldfootball.net/player_summary/yuriy-gavrilov/
http://www.rusteam.permian.ru/players/gavrilov.html
https://bigenc.ru/text/4613085
https://www.openstreetmap.org/?mlat=25.0521&mlon=121.544&zoom=17
https://web.archive.org/web/20100121012309/http://english.trtc.com.tw/ct.asp?xItem=1056373&CtNode=27496&mp=122032
https://web.archive.org/web/20100420092616/http://english.dorts.taipei.gov.tw/
https://web.archive.org/web/20100522232604/http://english.trtc.com.tw/ct.asp?xItem=1056403&CtNode=11778&mp=122032
https://pamyat-naroda.ru/documents/view/?id=114297825//
http://www.teatrskazka.com/Raznoe/Perechni_voisk/Perechen_13_02.html
https://pamyat-naroda.ru/documents/view/?id=132347668//
https://pamyat-naroda.ru/documents/view/?id=451008649
http://docplayer.ru/32282855-Voenno-istoricheskiy-ocherk-boevogo-puti-36-y-gvardeyskoy-strelkovoy-verhnedneprovskoy-krasnoznamennoy-ordenov-suvorova-i-kutuzova-ii-stepeni-divizii.html
https://velolive.com/velo_news/20508-uci-vvodit-novye-mery-bezopasnosti-v-velogonkah.html
http://bikes.ironhorse.ru/varieties/racing-bicycle/
https://archive.org/details/claremonttales00lupo
http://www.haostemple.org/publ/3-1-0-23
https://www.openstreetmap.org/?mlat=38.65750&mlon=-27.23056&zoom=12
https://www.openstreetmap.org/?mlat=38.65750&mlon=-27.23056&zoom=12
http://www.jfsaopedro.pt/
https://www.openstreetmap.org/?mlat=58.0033&mlon=56.1957&zoom=12
https://www.bing.com/maps/default.aspx?v=2&cp=58.0033~56.1957&style=h&lvl=11&sp=Point.58.0033_56.1957_1_
https://www.openstreetmap.org/?mlat=58.0033&mlon=56.1957&zoom=12
https://cyberleninka.ru/article/n/14418969
http://os.x-pdf.ru/20raznoe/750474-1-publichniy-pasport-ohranyaemogo-prirodnogo-landshafta-chernyaevskiy-l.php
http://new.prpc.ru/paper/nad-podzemnymi-pritokami.html
http://www.etomesto.ru/map-perm_1914-okrestnost/?x=56.195372&y=58.001843
http://www.etomesto.ru/map-perm_1917/?x=56.195372&y=58.001843
https://pastvu.com/p/533500
https://pastvu.com/p/485875
http://www.etomesto.ru/map-perm_1926/?x=56.193348&y=58.001260
http://www.svetlyi-perm.ru/index.php?do=static&page=history
https://web.archive.org/web/20071008172927/http://www.svetlyi-perm.ru/index.php?do=static&page=history
http://perm.aif.ru/gorod/news/32367
https://newdaynews.ru/perm/139902.html
https://perm.mk.ru/article/2013/12/04/954502-zoozad.html
https://www.gorodperm.ru/news/2021/06/16%2010:30:00+05/55728-id/
http://new.prpc.ru/paper/svetlushka-kotoruyu-u-nas-ukrali.html
https://www.openstreetmap.org/?mlat=5.2936&mlon=-52.5831&zoom=15
https://www.openstreetmap.org/?mlat=5.2936&mlon=-52.5831&zoom=15
http://www.berlinthema.de/NDL_EZ_20130125.pdf
http://www.warheroes.ru/hero/hero.asp?Hero_id=7211
http://blokada.otrok.ru/library/burov/burov.php?t=183
http://www.az-libr.ru/Persons/LH5/37bbabf9/index.shtml
http://blokada.otrok.ru/library/burov/burov.php?t=183
http://www.warheroes.ru/hero/hero.asp?Hero_id=7211
http://www.idmedina.ru/books/regions/?1095
https://www.webcitation.org/6Tbtxj4hC?url=http://www.idmedina.ru/books/regions/?1095
http://www.vostlit.info/Texts/Dokumenty/Russ/XVI/1580-1600/Desjatni_Wladimir_Mesera/text.htm
https://нэб.рф/catalog/000199_000009_003552540
http://gerbovnik.ru/arms/712.html
http://files.tambovlib.ru/f1/pdf/dubasov/dubasov3.pdf
https://web.archive.org/web/20141013122220/http://files.tambovlib.ru/f1/pdf/dubasov/dubasov3.pdf
http://static.my-shop.ru/product/pdf/89/881732.pdf
http://feb-web.ru/feb/litnas/texts/l45/l45-661-.htm
https://www.webcitation.org/6TbtdzwB0?url=http://feb-web.ru/feb/litnas/texts/l45/l45-661-.htm
http://lermontov.info/remember/charikov.shtml
https://www.webcitation.org/6Tbt42gvb?url=http://lermontov.info/remember/charikov.shtml
http://pravoslavie58region.ru/index.php?loc=e_mokshan.htm
http://reviewgc.ru/toefamu-deo12/Кавалеры_ордена_Святого_Георгия_IV_класса_Ч
https://www.openstreetmap.org/?mlat=57.95167&mlon=52.36528&zoom=12
https://www.openstreetmap.org/?mlat=57.95167&mlon=52.36528&zoom=12
https://classinform.ru/okato/search.php?str=94248833001
https://classinform.ru/oktmo/search.php?str=94648433101
http://foto-planeta.com/np/54311/palagay.html
http://indexp.ru/18024000051.html
http://www.udmgossovet.ru/samoupravlenie/regions/ukamenskiy/5.html
http://www.janakkalanseurakunta.fi/tilat/pyhan_laurin_kirkko/historia/
http://web.archive.org/web/20150518075319/http://www.janakkalanseurakunta.fi/tilat/pyhan_laurin_kirkko/historia/
http://www.janakkala.fi/vapaa-aika_ja_matkailu/nahtavyydet_ja_museot/pyhan_laurin_kirkko
http://web.archive.org/web/20140915223224/http://www.janakkala.fi/vapaa-aika_ja_matkailu/nahtavyydet_ja_museot/pyhan_laurin_kirkko
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115678/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115679/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115680/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115681/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115682/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115683/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115684/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115685/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115679/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115687/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115688/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115689/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115690/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115691/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115692/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115693/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115694/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115695/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115696/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115697/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115698/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115699/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115700/
http://ffu.org.ua/ukr/tournaments/arch/tprotocol/115701/
https://footpass.ffu.ua/uk/protocol/115702
https://footpass.ffu.ua/uk/protocol/115703
https://footpass.ffu.ua/uk/protocol/115704
https://footpass.ffu.ua/uk/protocol/115705
https://footpass.ffu.ua/uk/protocol/115706
http://ffu.org.ua/ukr/tournaments/arch/?sezon_id=1992
http://ukranianfootball.narod.ru/1992/1992_cup.html
http://www.uafootball.net.ua/kubok_1992.htm
http://wildstat.ru/p/2102/ch/UKR_CUP_1992/stg/all/tour/all
http://www.ukrsoccerhistory.com/index.aspx?page=cu1
http://www.ras.ru/win/db/show_per.asp?P=.id-50784.ln-ru
http://www.ibch.ru/about/history/personalia/743
http://www.ibch.ru/users/743
http://isaran.ru/?q=ru/person&guid=6CDADE75-B025-7ABF-AC5B-987C41D7B217
https://bigenc.ru/text/2082212
https://viaf.org/processed/NUKAT%7Cn2006104169
https://viaf.org/viaf/30349209
https://www.worldcat.org/identities/containsVIAFID/30349209
https://www.openstreetmap.org/?mlat=42.6333&mlon=130.8667&zoom=12
https://www.openstreetmap.org/?mlat=42.6333&mlon=130.8667&zoom=12
http://www.orion-travel.ru/page/Krabbe/
http://ginner.ru/places/krabbe/
http://www.cosmosportal.org/articles/view/137561/
https://www.webcitation.org/6Bd9V8ixV?url=http://www.cosmosportal.org/articles/view/137561/
http://laserstars.org/spectra/Coronium.html
http://www.rusrep.ru/2008/45/gipotezy/
https://www.openstreetmap.org/?mlat=55.4565639&mlon=39.4624944&zoom=12
https://www.openstreetmap.org/?mlat=55.4565639&mlon=39.4624944&zoom=12
https://classinform.ru/okato/search.php?str=46212843041
https://classinform.ru/oktmo/search.php?str=46722000693
http://www.msko.gks.ru/wps/wcm/connect/rosstat_ts/msko/resources/e40105804129853eb81eff367ccd0f13/3+%D1%82%D0%BE%D0%BC.rar
http://www.webcitation.org/6KVSB8BfU
http://foto-planeta.com/np/157563/sabanino.html
http://mosobl.elcode.ru/page.aspx?22259
http://dlib.rsl.ru/viewer/01003091360#?page=1
http://lingvarium.org/russia/settlem-database.shtml
https://web.archive.org/web/20201117084918/http://lingvarium.org/russia/settlem-database.shtml
http://msu-mo.ru/userdata/docs/abc_np_03_08_06.zip
http://www.webcitation.org/64cNVl25K
http://etomesto.ru/tut13617/
http://savvinoadm.ru/
https://web.archive.org/web/20140323151402/http://savvinoadm.ru/
http://www.nbghaiem.blogfa.com/
http://www.nbghaiem.blogfa.com/
https://www.facebook.com/nbghaiem
http://elib.shpl.ru/ru/nodes/13831#mode/inspect/page/294/zoom/5
https://gwar.mil.ru/documents/view/?id=88008223
http://www.runivers.ru/bookreader/book58687/#page/1/mode/1up
http://www.prlib.ru/Lib/pages/item.aspx?itemid=391
http://demoscope.ru/weekly/ssp/rus_gub_97.php?reg=81
https://www.openstreetmap.org/?mlat=52.102001&mlon=49.532347&zoom=11
https://www.openstreetmap.org/?mlat=52.102001&mlon=49.532347&zoom=11
http://elib.shpl.ru/ru/nodes/8858#page/401/mode/inspect/zoom/5
http://www.etomesto.ru/map-samara_1912/?x=49.408066&y=52.074697
http://samaragdo.ru/biblioteka/item/5122-spisok-naselennykh-mest-samarskoj-gubernii-1910-g
http://elib.shpl.ru/nodes/8973#page/223/mode/inspect/zoom/6
https://www.openstreetmap.org/?mlat=51.93759806&mlon=86.34859083&zoom=14
https://www.openstreetmap.org/?mlat=51.93759806&mlon=86.34859083&zoom=14
https://classinform.ru/okato/search.php?str=84245840001
https://classinform.ru/oktmo/search.php?str=84645440101
https://dimastbkbot.toolforge.org/gkgn/?gkgn_id=0154492
http://паспаул.рф/
http://statra.gks.ru/wps/wcm/connect/rosstat_ts/statra/resources/f42c57004c34285a8f63efb4bce00d93/Оценка+численности+постоянного+населения+по+населенным+пунктам+за+2011-2015+годы.docx
http://www.webcitation.org/6gvsIweG5
http://statra.gks.ru/wps/wcm/connect/rosstat_ts/statra/resources/a84e2d0040fb79dd9957ff367ccd0f13/1+том+Численность+и+размещение+населения.pdf
http://www.webcitation.org6Or057Y4e/
http://statra.gks.ru/wps/wcm/connect/rosstat_ts/statra/resources/93d31d00404ca3e98ddcdf0fa8517bb1/расчет+числ+по+селам.xls
http://www.webcitation.org/6JnvDS3aR
http://statra.gks.ru/wps/wcm/connect/rosstat_ts/statra/resources/7a14c50043a20cb2b169b5d06954faf7/Оценка+численности+постоянного+населения+по+населенным+пунктам+за+2011-2013+годы.docx
http://www.webcitation.org/6QFoOfT9q
http://statra.gks.ru/wps/wcm/connect/rosstat_ts/statra/resources/3ca23d0047a96a31be4fbeed3bc4492f/Оценка+численности+постоянного+населения+по+населенным+пунктам+за+2011-2014+годы.docx
http://www.webcitation.org/6XpJ5O4fd
http://www.vtourisme.com/index.php?option=com_content&view=article&id=901
http://www.surf4wine.co.uk
http://www.jackfm.co.uk
https://web.archive.org/web/20060308220420/http://www.bbc.co.uk/oxford/content/articles/2006/01/10/alison_booker.shtml
https://www.mozetich.com/
https://id.loc.gov/authorities/n88609544
http://www.mozetich.com
https://web.archive.org/web/20080209133116/http://www.classicalarchives.com/articles/edwards030.html
https://web.archive.org/web/20080118081342/http://www.queensu.ca/music/people/biographies/mozetich.shtml
https://open.spotify.com/artist/4gV2sJGkviSLAJY1ojI4Ps
https://www.discogs.com/artist/355039
https://www.imdb.com/name/nm2377252
https://musicbrainz.org/artist/e7e1088f-cfd1-4ed8-b98a-21958d1f6070
https://catalogue.bnf.fr/ark:/12148/cb16631359c
https://www.cobiss.si/scripts/cobiss?command=DISPLAY&base=CONOR&rid=9657443
http://isni-url.oclc.nl/isni/0000000084749035
https://id.loc.gov/authorities/n88609544
https://data.bibliotheken.nl/id/thes/p097052639
https://www.idref.fr/175090858
https://viaf.org/viaf/114510088
https://www.worldcat.org/identities/containsVIAFID/114510088
https://www.openstreetmap.org/?mlat=65.4255&mlon=54.3627&zoom=12
https://www.bing.com/maps/default.aspx?v=2&cp=65.3477~54.2161&style=h&lvl=11&sp=Point.65.3477_54.2161_1_
https://www.openstreetmap.org/?mlat=65.3477&mlon=54.2161&zoom=15
https://www.bing.com/maps/default.aspx?v=2&cp=65.4255~54.3627&style=h&lvl=11&sp=Point.65.4255_54.3627_1_
https://www.openstreetmap.org/?mlat=65.4255&mlon=54.3627&zoom=12
https://uisrussia.msu.ru/regsearch.php?q=%D0%9F%D0%BE%D0%BD%D1%8A%D1%8E
https://cgkipd.ru/science/names/reestry-gkgn.php
http://textual.ru/gvr/index.php?card=166821
https://web.archive.org/web/20131015092212/http://www.mnr.gov.ru/files/part/0306_perechen.rar
https://www.openstreetmap.org/?mlat=40.762526&mlon=-73.967967&zoom=15
https://www.openstreetmap.org/?mlat=40.76266&mlon=-73.967258&zoom=15
https://new.mta.info/document/16136
http://www.nycsubway.org/perl/caption.pl?/img/trackmap/detail-qbp.png
http://www.nycsubway.org/perl/stations?5:3106
http://www.nycsubway.org/perl/stations?202:1825
http://www.nycsubway.org/perl/artwork_show?8
https://web.archive.org/web/20070315000028/http://www.stationreporter.net/59lex.htm
http://web.mta.info/mta/aft/permanentart/permart.html?agency=nyct&line=4&station=15&xdev=1572
http://maps.google.com/?ie=UTF8&ll=40.762365,-73.96849&spn=0,0.013314&z=17&layer=c&cbll=40.762405,-73.968602&panoid=nMrht8n4QCtiomr0v6aKQQ&cbp=12,195.3,,0,4.56
http://maps.google.com/?ie=UTF8&ll=40.762853,-73.967729&spn=0,0.013314&z=17&layer=c&cbll=40.762895,-73.967828&panoid=yTYNzb_UCLkaPMllj7RTJA&cbp=12,349.39,,0,10
http://maps.google.com/?ie=UTF8&ll=40.762089,-73.966194&spn=0,0.013314&z=17&layer=c&cbll=40.762183,-73.966127&panoid=RJ4DaWB7Xccli9FgE44edw&cbp=12,173.94,,0,4.95
https://www.imdb.com/title/tt0087123/
https://www.allmovie.com/movie/v153032
https://www.csfd.cz/film/140195
https://www.filmaffinity.com/en/film352661.html
https://www.imdb.com/title/tt0087123
https://www.rottentomatoes.com/m/davitelj_protiv_davitelja_1985
https://www.mk.ru/incident/2020/08/18/izvestnyy-sovetskiy-poetpesennik-boris-purgalin-pogib-v-moskve.html
http://rao.ru/index.php/pravoobladatelyam/informatsiya/reestry/reestr-proizvedenij-rossijskikh-pravoobladatelej?author=%D0%BF%D0%B0%D1%81%D1%82%D0%B5%D1%80%D0%BD%D0%B0%D0%BA%20%D0%B1%D0%BE%D1%80%D0%B8%D1%81%20%D0%BB%D0%B0%D0%B7%D0%B0%D1%80%D0%B5%D0%B2%D0%B8%D1%87&search_type=registerofworks&isRAO=1&typereeestr=rao&searchphrase=all&limit=5&start=10
https://web.archive.org/web/20160306011733/http://rao.ru/index.php/pravoobladatelyam/informatsiya/reestry/reestr-proizvedenij-rossijskikh-pravoobladatelej?author=%D0%BF%D0%B0%D1%81%D1%82%D0%B5%D1%80%D0%BD%D0%B0%D0%BA%20%D0%B1%D0%BE%D1%80%D0%B8%D1%81%20%D0%BB%D0%B0%D0%B7%D0%B0%D1%80%D0%B5%D0%B2%D0%B8%D1%87&search_type=registerofworks&isRAO=1&typereeestr=rao&searchphrase=all&limit=5&start=10
https://web.archive.org/web/20170324035014/http://1000plastinok.net/Nikolai_Karachentsov/Davai_pogovorim_2011/06-Samovar.html
http://www.c-cafe.ru/days/bio/58/018_58.php
http://www.kino-teatr.ru/kino/screenwriter/sov/236269/bio
https://web.archive.org/web/20120510152256/http://1000plastinok.net/Boris_Purgalin
https://www.kinopoisk.ru/name/330056/
https://musicbrainz.org/artist/6d5351d7-e4a8-4c2a-ab15-746b11c69712
http://www.geokhi.ru/Obituary/2016/%D0%9D%D0%B5%D0%BA%D1%80%D0%BE%D0%BB%D0%BE%D0%B3%20%D0%9C.%D0%90.%D0%9D%D0%B0%D0%B7%D0%B0%D1%80%D0%BE%D0%B2%D0%B0.pdf
http://geo.web.ru/druza/a-Nazar.htm
https://www.meteorites.ru/MANazarov.html
https://www.openstreetmap.org/?mlat=49.287222222222219&mlon=35.223888888888887&zoom=13
https://www.openstreetmap.org/?mlat=49.287222222222219&mlon=35.223888888888887&zoom=13
http://gska2.rada.gov.ua/pls/z7503/A005?rdat1=09.06.2009&rf7571=33044
https://www.openstreetmap.org/?mlat=56.02917&mlon=30.21028&zoom=12
https://www.openstreetmap.org/?mlat=56.02917&mlon=30.21028&zoom=12
https://classinform.ru/okato/search.php?str=58220810008
https://classinform.ru/oktmo/search.php?str=58620410166
http://pop-stat.mashke.org/russia-census-2010/pskovskaja.htm
https://www.geonames.org/7598410/golodnitsa.html
https://fgistp.economy.gov.ru/?show_document=true&doc_type=npa&uin=5862041002010304202007172
http://www.consultant.ru/document/cons_doc_LAW_114656/b2707989c276b5a188e63bc41e7bcbcc18723de8/
https://web.archive.org/web/20141006075356/http://www.derjavapskov.ru/files/materials/819/del%201.djvu
http://lingvarium.org/russia/settlem-database.shtml
http://lingvarium.org/russia/BD/02c_Pskovskaja.xls
https://www.openstreetmap.org/?mlat=59.874323&mlon=30.355771&zoom=17
https://www.openstreetmap.org/?mlat=59.874323&mlon=30.355771&zoom=17
https://mostotrest-spb.ru/bridges/belgradskij
http://www.jakubhrusa.com/
https://aleph.nkp.cz/F/?func=find-c&local_base=aut&ccl_term=ica=mzk2005294980
https://www.ceskyhudebnislovnik.cz/slovnik/index.php?option=com_mdictionary&task=record.record_detail&id=1002429
https://cs.isabart.org/person/30489
https://www.gramophone.co.uk/classical-music-news/warner-and-hrusa-quit-royal-danish-opera
http://www.jakubhrusa.com/
https://open.spotify.com/artist/5IZZX6hJg21YUMg1XBXPdr
https://www.csfd.cz/tvurce/215930
https://www.discogs.com/artist/2071912
https://musicbrainz.org/artist/262a8cc5-a5f3-4f32-a45e-cd86668696fc
http://ask.bibsys.no/ask/action/result?cmd=&kilde=biblio&cql=bs.autid+%3D+9030775&feltselect=bs.autid
https://catalogue.bnf.fr/ark:/12148/cb15546524c
https://d-nb.info/gnd/133785750
http://isni-url.oclc.nl/isni/0000000107806646
https://id.loc.gov/authorities/n2008019626
http://aut.nkp.cz/mzk2005294980
https://viaf.org/viaf/46230445
https://www.worldcat.org/identities/containsVIAFID/46230445
http://www.nlr.ru/poisk/
http://litinstitut.ru/node/376
https://web.archive.org/web/20161203174340/http://litinstitut.ru/node/376
http://imli.ru/structure/show/Otdel-drevneslavyanskih-literatur/
https://web.archive.org/web/20161125175339/http://imli.ru/structure/show/Otdel-drevneslavyanskih-literatur/
http://feb-web.ru/feb/slovenc/es/es5/es5-3041.htm
http://rujen.ru/index.php/%D0%94%D0%95%D0%9C%D0%98%D0%9D_%D0%90%D0%BD%D0%B0%D1%82%D0%BE%D0%BB%D0%B8%D0%B9_%D0%A1%D0%B5%D1%80%D0%B3%D0%B5%D0%B5%D0%B2%D0%B8%D1%87
https://litinstitut.ru/content/dyomin-anatoliy-sergeevich
https://www.openstreetmap.org/?mlat=51.59694&mlon=10.55222&zoom=12
https://www.openstreetmap.org/?mlat=51.59694&mlon=10.55222&zoom=12
http://www.bad-sachsa.de
http://www.bad-sachsa.de
https://web.archive.org/web/20161204000000/https://www.sports-reference.com/olympics/athletes/sa/dejan-savic-1.html
https://www.olympedia.org/athletes/55049
https://web.archive.org/web/20120921092942/http://www.fibt.com/index.php?id=109
http://www.sports-reference.com/olympics/athletes/ja/marco-jakobs-1.html
http://web.archive.org/web/20100201084741/http://www.sports-reference.com/olympics/athletes/ja/marco-jakobs-1.html
https://www.olympedia.org/athletes/99884
https://www.the-sports.org/t-spf92645.html
http://trackfield.brinkster.net/Profile.asp?ID=12268&Gender=M
https://www.worldathletics.org/athletes/-/131024
https://d-nb.info/gnd/142848050
https://viaf.org/viaf/160468409
https://www.worldcat.org/identities/containsVIAFID/160468409
http://www.iaaf.org/results/iaaf-world-athletics-final/2008/6th-iaafvtb-bank-world-athletics-final-3741
https://www.openstreetmap.org/?mlat=42.30278&mlon=0.53972&zoom=12
https://www.openstreetmap.org/?mlat=42.30278&mlon=0.53972&zoom=12
http://www.isabena.es/
https://datos.gob.es/es/catalogo/a02002834-nomenclator-ano-20147
https://www.ine.es/dynt3/inebase/index.htm?padre=525
https://www.worldcat.org/issn/0212-033X
http://www.ine.es/pob_xls/pobmun01.xls
https://www.worldcat.org/issn/0212-033X
http://www.ine.es/pob_xls/pobmun02.xls
https://www.worldcat.org/issn/0212-033X
http://www.ine.es/pob_xls/pobmun03.xls
https://www.worldcat.org/issn/0212-033X
http://www.ine.es/pob_xls/pobmun04.xls
https://www.worldcat.org/issn/0212-033X
http://www.ine.es/pob_xls/pobmun05.xls
https://www.worldcat.org/issn/0212-033X
http://www.ine.es/pob_xls/pobmun06.xls
https://www.worldcat.org/issn/0212-033X
https://www.worldcat.org/issn/0212-033X
http://www.ine.es/pob_xls/pobmun08.xls
https://www.worldcat.org/issn/0212-033X
http://www.ine.es/pob_xls/pobmun09.xls
https://www.worldcat.org/issn/0212-033X
http://www.ine.es/pob_xls/pobmun10.xls
https://www.worldcat.org/issn/0212-033X
http://www.ine.es/pob_xls/pobmun11.xls
https://www.worldcat.org/issn/0212-033X
http://www.ine.es/pob_xls/pobmun12.xls
https://www.worldcat.org/issn/0212-033X
http://www.ine.es/pob_xls/pobmun13.xls
https://www.worldcat.org/issn/0212-033X
http://www.ine.es/pob_xls/pobmun14.xlsx
https://www.worldcat.org/issn/0212-033X
http://www.ine.es/pob_xls/pobmun15.xlsx
https://www.worldcat.org/issn/0212-033X
http://www.ine.es/pob_xls/pobmun16.xlsx
https://www.worldcat.org/issn/0212-033X
https://www.boe.es/eli/es/rd/2018/12/14/1458
https://www.worldcat.org/issn/0212-033X
https://www.ine.es/daco/inebase_mensual/enero_2019/cifras_padron.zip
https://www.worldcat.org/issn/0212-033X
http://www.ine.es/dynt3/inebase/index.htm?padre=525
https://www.boe.es/eli/es/rd/2019/12/20/743
https://www.worldcat.org/issn/0212-033X
https://www.enciclopedia.cat/enciclopèdies/gran-enciclopèdia-catalana/EC-GEC-0033961.xml
http://www.chessgames.com/perl/chessplayer?pid=48129
https://www.365chess.com/players/Thorkild_Haahr
https://www.imdb.com/name/nm0005563/
https://www.jweekly.com/2003/10/17/celebrity-jews/
http://projects.latimes.com/hollywood/star-walk/irwin-wi
https://www.latimes.com/archives/la-xpm-1986-01-11-ca-26975-story.html
https://www.allmovie.com/artist/p117063
https://www.allocine.fr/personne/fichepersonne_gen_cpersonne=8751.html
https://www.csfd.cz/tvurce/3586
https://www.dfi.dk/viden-om-film/filmdatabasen/person/8370
https://www.imdb.com/name/nm0005563
https://www.kinopoisk.ru/name/9853/
https://www.moviemeter.nl/director/5282
https://www.britannica.com/biography/Irwin-Winkler
https://nndb.com/people/693/000205078
http://cantic.bnc.cat/registres/CUCId/a10925168
http://catalogo.bne.es/uhtbin/authoritybrowse.cgi?action=display&authority_id=XX1261964
https://catalogue.bnf.fr/ark:/12148/cb13901239z
https://d-nb.info/gnd/129614440
http://isni-url.oclc.nl/isni/0000000078238749
https://id.loc.gov/authorities/n77006077
http://aut.nkp.cz/xx0025209
https://data.bibliotheken.nl/id/thes/p071442626
https://viaf.org/processed/NUKAT%7Cn2009115044
https://www.idref.fr/122091930
https://viaf.org/viaf/85457952
https://www.worldcat.org/identities/containsVIAFID/85457952
http://daten.digitale-sammlungen.de/0001/bsb00016409/images/index.html?seite=715
https://uboat.net/wwi/men/commanders/123.html
http://dubm.de/en/
https://web.archive.org/web/20180101112648/http://dubm.de/en/
http://www.novacon.com.br/odditycameras/wrayflex.htm
http://www.zenitcamera.com/mans/instr-M39-M42/instr-M39-M42.html
http://www.graphics.cornell.edu/~westin/misc/mounts-alphabetical.html
http://www.hasselbladaerial.com/media/2808270/image_plane_h_digital.pdf
http://www.zenitcamera.com/qa/qa-gost10332-63.html
http://www.zenitcamera.com/archive/misc/report-goi-uniform-bayonet.html
http://docload.spb.ru/Pages_gost/37075.htm
http://www.zenitcamera.com/qa/qa-gost10332-72.html
http://sony-club.ru/showthread.php?t=7997&s=39c57e98b82be5f922053deda573109d
http://www.dantestella.com/technical/compat.html#
https://web.archive.org/web/20111014025234/http://www.dantestella.com/technical/compat.html#
http://www.rangefinderforum.com/forums/showthread.php?t=105330
https://www.cameraquest.com/NRFOne.htm
http://www.photoethnography.com/ClassicCameras/index-frameset.html?Lens-CS.html~mainFrame
http://www.zenitcamera.com/archive/history/mounts.html
http://www.zenitcamera.com/qa/qa-gost10332-72.html
http://www.zenitcamera.com/qa/qa-gost10332-63.html
http://www.bestofsicily.com/mag/art58.htm
http://www.gamespot.com/ps2/action/pandoratomorrow/news_6027718.html
http://www.1up.com/reviews/splinter-cell-pandora-tomorrow-review
https://www.webcitation.org/6G10gaSOV?url=http://www.1up.com/reviews/splinter-cell-pandora-tomorrow-review
http://www.1up.com/reviews/splinter-cell-pandora-tomorrow_2
https://www.webcitation.org/6G11ZBidv?url=http://www.1up.com/reviews/splinter-cell-pandora-tomorrow_2
http://www.1up.com/reviews/splinter-cell-pandora-tomorrow_6
https://www.webcitation.org/6G12KoK2b?url=http://www.1up.com/reviews/splinter-cell-pandora-tomorrow_6
http://www.1up.com/reviews/splinter-cell-pandora-tomorrow
https://www.webcitation.org/6G12AoozO?url=http://www.1up.com/reviews/splinter-cell-pandora-tomorrow
http://www.1up.com/reviews/splinter-cell-pandora-tomorrow_7
https://www.webcitation.org/6G12WlHeb?url=http://www.1up.com/reviews/splinter-cell-pandora-tomorrow_7
http://www.allgame.com/game.php?id=44756
http://www.peeep.us/c458d765
http://www.allgame.com/game.php?id=44528
http://www.peeep.us/6c2baf6e
http://www.allgame.com/game.php?id=44526
http://www.peeep.us/17e0fa6d
http://www.allgame.com/game.php?id=44527
http://www.peeep.us/6859b21a
http://www.allgame.com/game.php?id=43156
http://www.peeep.us/377453f3
http://www.computerandvideogames.com/102970/reviews/splinter-cell-pandora-tomorrow-review/
http://www.peeep.us/97116554
http://www.computerandvideogames.com/103017/reviews/splinter-cell-pandora-tomorrow-review/
http://www.peeep.us/e8fc9357
http://www.computerandvideogames.com/107030/reviews/splinter-cell-pandora-tomorrow-review/
http://www.peeep.us/e89e045a
http://www.computerandvideogames.com/102966/reviews/splinter-cell-pandora-tomorrow-review/
http://www.peeep.us/910c608c
http://gba.gamespy.com/gameboy-advance/tom-clancys-splinter-cell-pandora-tomorrow-/501055p1.html
https://web.archive.org/web/20060101102610/http://gba.gamespy.com/gameboy-advance/tom-clancys-splinter-cell-pandora-tomorrow-/501055p1.html
http://cube.gamespy.com/gamecube/tom-clancys-splinter-cell-pandora-tomorrow/534518p1.html
http://www.peeep.us/338790e3
http://pc.gamespy.com/pc/tom-clancys-splinter-cell-pandora-tomorrow/504768p1.html
http://www.peeep.us/9b09c07d
http://ps2.gamespy.com/playstation-2/tom-clancys-splinter-cell-pandora-tomorrow/524257p1.html
http://www.peeep.us/87fa526e
http://xbox.gamespy.com/xbox/tom-clancys-splinter-cell-pandora-tomorrow/501149p1.html
http://www.peeep.us/5df6818a
http://www.ign.com/articles/2004/04/01/splinter-cell-pandora-tomorrow-9
http://www.peeep.us/7893d614
http://www.ign.com/articles/2004/07/23/tom-clancys-splinter-cell-pandora-tomorrow
http://www.peeep.us/acb06954
http://www.ign.com/articles/2004/03/26/splinter-cell-pandora-tomorrow-review
http://www.peeep.us/2434ec1d
http://www.ign.com/articles/2004/06/15/tom-clancys-splinter-cell-pandora-tomorrow-2
http://www.peeep.us/c290738a
http://www.ign.com/articles/2004/03/25/splinter-cell-pandora-tomorrow-10
http://www.peeep.us/9f50df5c
http://www.gamerankings.com/gba/919789-tom-clancys-splinter-cell-pandora-tomorrow/index.html
http://www.peeep.us/60ef58f0
http://www.gamerankings.com/gamecube/915075-tom-clancys-splinter-cell-pandora-tomorrow/index.html
http://www.peeep.us/ce820da5
http://www.gamerankings.com/pc/915072-tom-clancys-splinter-cell-pandora-tomorrow/index.html
http://www.peeep.us/19bc47ce
http://www.gamerankings.com/ps2/915073-tom-clancys-splinter-cell-pandora-tomorrow/index.html
http://www.peeep.us/4b3a6c50
http://www.gamerankings.com/xbox/915074-tom-clancys-splinter-cell-pandora-tomorrow/index.html
http://www.peeep.us/52f9beed
http://www.gamestats.com/objects/654/654816/
https://web.archive.org/web/20091204152627/http://www.gamestats.com/objects/654/654816/
http://www.gamestats.com/objects/567/567319/
https://web.archive.org/web/20120125031521/http://www.gamestats.com/objects/567/567319/
http://www.gamestats.com/objects/567/567314/
https://web.archive.org/web/20110114160202/http://www.gamestats.com/objects/567/567314/
http://www.gamestats.com/objects/567/567304/
https://web.archive.org/web/20120414134317/http://www.gamestats.com/objects/567/567304/
http://www.gamestats.com/objects/552/552407/
https://web.archive.org/web/20101231143728/http://www.gamestats.com/objects/552/552407/
http://www.metacritic.com/game/game-boy-advance/tom-clancys-splinter-cell-pandora-tomorrow
http://www.peeep.us/82a2b2eb
http://www.metacritic.com/game/gamecube/tom-clancys-splinter-cell-pandora-tomorrow
http://www.peeep.us/2677ec54
http://www.metacritic.com/game/pc/tom-clancys-splinter-cell-pandora-tomorrow
http://www.peeep.us/e89a0898
http://www.metacritic.com/game/playstation-2/tom-clancys-splinter-cell-pandora-tomorrow
http://www.peeep.us/3d776b46
http://www.metacritic.com/game/xbox/tom-clancys-splinter-cell-pandora-tomorrow
http://www.peeep.us/23260ffd
http://www.mobygames.com/game/gameboy-advance/tom-clancys-splinter-cell-pandora-tomorrow_
http://www.peeep.us/c4f3ed69
http://www.mobygames.com/game/gamecube/tom-clancys-splinter-cell-pandora-tomorrow
http://www.peeep.us/76111ae2
http://www.mobygames.com/game/windows/tom-clancys-splinter-cell-pandora-tomorrow
http://www.peeep.us/3bcd8c00
http://www.mobygames.com/game/ps2/tom-clancys-splinter-cell-pandora-tomorrow
http://www.peeep.us/118bf4bc
http://www.mobygames.com/game/xbox/tom-clancys-splinter-cell-pandora-tomorrow
http://www.peeep.us/85dc0a6c
http://www.eurogamer.net/articles/r_splintercellpt_x
http://www.peeep.us/dc96dbcf
http://www.gamesradar.com/splinter-cell-pandora-tomorrow-review/
http://www.peeep.us/c1104a4c
http://www.gamerevolution.com/review/splinter-cell-pandora-tomorrow
http://www.peeep.us/effe6c89
http://www.gamespot.com/tom-clancys-splinter-cell-pandora-tomorrow/reviews/tom-clancys-splinter-cell-pandora-tomorrow-review-6092205/
http://www.peeep.us/49262d1e
http://xboxaddict.com/game-profile/697/Tom-Clancy%27s-Splinter-Cell:-Pandora-Tomorrow.html
http://www.peeep.us/18a01099
http://www.ag.ru/games/tom-clancys-splinter-cell-pandora-tomorrow/review
http://www.peeep.us/5b916141
http://www.gameland.ru/pc/tom-clancys-splinter-cell-pandora-tomorrow/
https://web.archive.org/web/20120726202742/http://www.gameland.ru/pc/tom-clancys-splinter-cell-pandora-tomorrow/
http://www.russobit-m.ru/catalogue/item/tom_clancys_ghos_recon_pandora_tomorrow_gold/
https://web.archive.org/web/20161116073703/http://www.russobit-m.ru/catalogue/item/tom_clancys_ghos_recon_pandora_tomorrow_gold/
http://www.igromania.ru/articles/46574/Splinter_Cell_Pandora_Tomorrow.htm
https://ag.ru/games/tom_clancys_splinter_cell_pandora_tomorrow
https://www.imdb.com/title/tt0368983
https://www.behindthevoiceactors.com/video-games/Splinter-Cell-Pandora-Tomorrow
https://gamefaqs.gamespot.com/-/915073-
https://gamefaqs.gamespot.com/-/915072-
https://gamefaqs.gamespot.com/-/915074-
https://gamefaqs.gamespot.com/-/915075-
https://gamefaqs.gamespot.com/-/919789-
https://www.mobygames.com/game/tom-clancys-splinter-cell-pandora-tomorrow
https://www.mobygames.com/game/tom-clancys-splinter-cell-pandora-tomorrow_
http://redump.org/disc/6152/
https://www.openstreetmap.org/?mlat=52.2304444&mlon=21.0124167&zoom=12
https://www.openstreetmap.org/?mlat=42.13013806&mlon=14.41478111&zoom=17
https://www.openstreetmap.org/?mlat=42.13013806&mlon=14.41478111&zoom=17
https://www.parrocchiasanvincenzo.it/la-chiesa-di-s-benedetto/
http://www.madonnadellavalle.it/san_benedetto.asp
https://web.archive.org/web/20160730215036/http://parrocchiasanleucio.it/le-chiese/zona-valliva/33-san-benedetto.html
https://www.transfermarkt.com/transfermarkt/profil/spieler/185820
https://www.national-football-teams.com/player/21020.html
http://footballfacts.ru/players/447054
http://www.fc-dynamo.ru/cup/prot.php?id=394300
http://wildstat.ru/p/2002/ch/URS_CUP_1978/stg/all/tour/all
https://web.archive.org/web/20131003044537/http://talks.klisf.ru/index.app?cmd=tomatch&lang=ru&id=248303996260039924780752292478
http://www.fc-dynamo.ru/cup/rezult.php?gd=1978
http://www.rsssf.com/tabless/su78.html#78c
https://www.transfermarkt.com/transfermarkt/profil/spieler/45662
http://www.soccer.ru/news/244389.shtml
http://fcaugsburg.de/cms/website.php?id=%2Findex%2Fnews%2Fallenews%2Fdata13310.htm
https://web.archive.org/web/20160921002209/http://fcaugsburg.de/cms/website.php?id=%2Findex%2Fnews%2Fallenews%2Fdata13310.htm
http://www.fcn.de/news/artikel/alexander-esswein-wechselt-nach-augsburg/
http://www.bz-berlin.de/berlin-sport/hertha-bsc/alexander-esswein-zum-medizincheck-bei-hertha
https://www.vfb.de/de/vfb/aktuell/neues/profis/2018/leihe-alexander-esswein/
https://www.tcdb.com/Person.cfm/pid/47843/
https://resultados.as.com/resultados/ficha/deportista/esswein/20541
https://www.footballdatabase.eu/en/player/details/34801
https://www.fussballdaten.de/person/essweinalexander/
https://www.kicker.de/alexander-esswein/spieler
https://www.kooora.com/default.aspx?player=34131
https://int.soccerway.com/players/alexander-esswein/39650/
https://www.transfermarkt.com/transfermarkt/profil/spieler/45662
https://www.worldfootball.net/player_summary/alexander-esswein/
https://wfc-naftokhimik.at.ua/news/legioneri_v_istoriji_naftokhimika/2012-12-11-505
https://newsroom.fit.edu/2007/10/30/hernandez-starring-for-puerto-rican-national-team/
https://artuathletics.com/sports/womens-soccer/roster/coaches/ro-hernandez/115
https://starcasm.net/meet-below-deck-star-kate-chastains-girlfriend-rocio-ro-hernandez/
https://int.soccerway.com/players/-/122886/
https://web.archive.org/web/20060901160159/http://gopanthers.fit.edu/profiles.php?sport_id=14003&year=2006&id=1323
http://wfpl.com.ua/team/player/?id=2823&id_team=44
https://www.openstreetmap.org/?mlat=44.19833&mlon=43.09778&zoom=12
https://www.openstreetmap.org/?mlat=44.19833&mlon=43.09778&zoom=12
https://classinform.ru/okato/search.php?str=07239807005
https://classinform.ru/oktmo/search.php?str=07721000186
http://stavstat.gks.ru/wps/wcm/connect/rosstat_ts/stavstat/resources/637137804cdc73498baa8b49c24a3eb2/07_wpn_2010_cisl_mo_np.zip
http://www.webcitation.org/6XYoIx2h8
http://pda.rosreestr.ru/upload/www/files/26_F_202%D0%BD%D0%BF.pdf
http://www.dumask.ru/component/k2/item/10950-news16601
http://peeep.us/7be584ab
http://www.dumask.ru/law/zakony-stavropolskogo-kraya-postanovleniya-dumy/zakony-stavropolskogo-kraya/item/14509-%D0%B7%D0%B0%D0%BA%D0%BE%D0%BD-%D1%81%D1%82%D0%B0%D0%B2%D1%80.html
http://peeep.us/8fc56c6a
https://regnum.ru/news/accidents/2146447.html
http://stavrop.gks.ru/perepis/vpn2002/informaciya/Cis89_02.zip
http://www.webcitation.org/6VWEeLJjO
http://lingvarium.org/russia/settlem-database.shtml
http://www.obrmv.ru/article.php?id_page=1
http://www.stapravda.ru/20131128/v_khutore_krasnyy_pakhar_postroyat_khram_v_chest_ikony_bozhiey_m_72840.html
http://www.olympic.li
http://www.sports-reference.com/olympics/countries/LIE/
http://web.archive.org/web/20200114073806/http://www.sports-reference.com/olympics/countries/LIE/
https://news.google.com/newspapers?id=RaQyAAAAIBAJ&sjid=P-8FAAAAIBAJ&pg=2860%2C3088475
http://akazantsev.ru/main.html
http://lossnews.ru/node/20
http://lib.ru/RUFANT/KAZANCEW/punktir.txt
http://www.rusf.ru/abs/ludeni/publ-15.htm
http://noogen.su/kazantsev
http://shkolazhizni.ru/archive/0/n-8823/
http://books.rusf.ru/unzip/add-2003/xussr_gk/kazan101.htm?1/2
http://www.rg.ru/2012/07/05/hlebnikov.html
http://www.rusf.ru/abs/int0132.htm#06
http://feb-web.ru/feb/kle/kle-abc/ke3/ke3-2951.htm
http://www.lib.ru/RUFANT/KAZANCEW/
http://www.akazantsev.ru/main.html
http://m-necropol.narod.ru/kazancev.html
http://pdb.dieschwalbe.de/search.jsp?expression=A=%27Kasanzew%27%20and%20FIRSTNAME=%27Alexander%27
https://www.imdb.com/name/nm0443610
http://www.isfdb.org/cgi-bin/ea.cgi?20280
https://fantlab.ru/autor531
https://www.findagrave.com/cgi-bin/fg.cgi?page=gr&GRid=93915101
http://catalogo.bne.es/uhtbin/authoritybrowse.cgi?action=display&authority_id=XX1126527
https://catalogue.bnf.fr/ark:/12148/cb16830086j
https://d-nb.info/gnd/118721410
http://isni-url.oclc.nl/isni/0000000068113037
https://id.loc.gov/authorities/n82063445
https://viaf.org/processed/LNB%7CLNC10-000096854
http://aut.nkp.cz/ola2003169645
https://data.bibliotheken.nl/id/thes/p070920192
https://viaf.org/processed/NUKAT%7Cn2006152564
https://libris.kb.se/katalogisering/dbqst2hx2x5ch5h
https://www.idref.fr/140185658
https://viaf.org/viaf/84979666
https://www.worldcat.org/identities/containsVIAFID/84979666
http://age-of-mammals.ucoz.ru/index/penetrigonias/0-192
http://d-nb.info/gnd/123978130/
https://catalogue.bnf.fr/ark:/12148/cb17789521h
http://www.hls-dhs-dss.ch/textes/d/D28890.php
https://portal.dnb.de/opac.htm?method=simpleSearch&query=123978130
http://www.procyclingstats.com/rider.php?id=127058
http://www.cqranking.com/men/asp/gen/rider.asp?riderid=298
http://www.procyclingstats.com/rider.php?id=127058
http://www.cyclingarchives.com/coureurfiche.php?coureurid=2572
http://www.cyclebase.nl/?lang=en&news=en&pc=normal&page=renner&id=3551
http://www.memoire-du-cyclisme.eu/pelotons/coureurs.php?c=2796
https://cqranking.com/men/asp/gen/rider.asp?riderid=298
https://www.cyclebase.nl/?lang=en&page=renner&id=3551
http://www.cyclingarchives.com/coureurfiche.php?coureurid=2572
http://www.memoire-du-cyclisme.eu/pelotons/coureurs.php?c=2796
https://www.procyclingstats.com/rider/127058
https://www.the-sports.org/t-spf628.html
http://www.allmusic.com/album/orgasmatron-mw0000650524
http://www.robertchristgau.com/get_artist.php?id=969&name=Motorhead
http://www.allmusic.com/album/orgasmatron-mw0000650524/awards
http://www.allmusic.com
http://chartarchive.org/r/43802
http://dutchcharts.nl/showitem.asp?interpret=Mot%F6rhead&titel=Orgasmatron&cat=a
http://www.imotorhead.com
https://web.archive.org/web/20100923112241/http://kalinovmost.ru/albums/spring/
http://www.zvuki.ru/M/P/164/
http://www.discogs.com/%D0%9A%D0%B0%D0%BB%D0%B8%D0%BD%D0%BE%D0%B2-%D0%9C%D0%BE%D1%81%D1%82-%D0%9F%D0%BE%D0%BA%D0%BE%D1%80%D0%B8%D1%82%D1%8C%D1%81%D1%8F-%D0%92%D0%B5%D1%81%D0%BD%D0%B5/release/2024737
http://www.kalinovmost.ru
https://www.openstreetmap.org/?mlat=45.05861&mlon=-93.07778&zoom=12
https://www.openstreetmap.org/?mlat=45.05861&mlon=-93.07778&zoom=12
https://edits.nationalmap.gov/apps/gaz-domestic/public/summary/653581
https://edits.nationalmap.gov/apps/gaz-domestic/public/summary/2397106
http://www.ci.vadnais-heights.mn.us
http://factfinder.census.gov
https://www.webcitation.org/65jESGrbU?url=http://factfinder2.census.gov/legacy/aff_sunset.html
http://geonames.usgs.gov
https://www.webcitation.org/65jET5cdV?url=http://geonames.usgs.gov/
https://web.archive.org/web/20100601015006/http://www.ci.vadnais-heights.mn.us/
https://web.archive.org/web/20080510142531/http://www.rchs.com/index.htm
https://www.openstreetmap.org/?mlat=49.73444&mlon=7.72472&zoom=12
https://www.openstreetmap.org/?mlat=49.73444&mlon=7.72472&zoom=12
http://www.meisenheim.de/lettweiler.htm
http://www.statistik.rlp.de/fileadmin/dokumente/berichte/A1033_201022_hj_G.pdf
https://web.archive.org/web/20120131082852/http://www.statistik.rlp.de/fileadmin/dokumente/berichte/A1033_201022_hj_G.pdf
https://web.archive.org/web/20061214132857/http://www.meisenheim.de/lettweiler.htm