lingo 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. data/.rspec +1 -0
  2. data/COPYING +663 -0
  3. data/ChangeLog +754 -0
  4. data/README +322 -0
  5. data/Rakefile +100 -0
  6. data/TODO +28 -0
  7. data/bin/lingo +5 -0
  8. data/bin/lingoctl +6 -0
  9. data/de.lang +121 -0
  10. data/de/lingo-abk.txt +74 -0
  11. data/de/lingo-dic.txt +56822 -0
  12. data/de/lingo-mul.txt +3209 -0
  13. data/de/lingo-syn.txt +14841 -0
  14. data/de/test_dic.txt +24 -0
  15. data/de/test_mul.txt +17 -0
  16. data/de/test_mul2.txt +2 -0
  17. data/de/test_singleword.txt +2 -0
  18. data/de/test_syn.txt +4 -0
  19. data/de/test_syn2.txt +1 -0
  20. data/de/user-dic.txt +10 -0
  21. data/en.lang +113 -0
  22. data/en/lingo-dic.txt +55434 -0
  23. data/en/lingo-mul.txt +456 -0
  24. data/en/user-dic.txt +5 -0
  25. data/info/Objekte.png +0 -0
  26. data/info/Typen.png +0 -0
  27. data/info/database.png +0 -0
  28. data/info/db_small.png +0 -0
  29. data/info/download.png +0 -0
  30. data/info/gpl-hdr.txt +27 -0
  31. data/info/kerze.png +0 -0
  32. data/info/language.png +0 -0
  33. data/info/lingo.png +0 -0
  34. data/info/logo.png +0 -0
  35. data/info/meeting.png +0 -0
  36. data/info/types.png +0 -0
  37. data/lib/lingo.rb +321 -0
  38. data/lib/lingo/attendee/abbreviator.rb +119 -0
  39. data/lib/lingo/attendee/debugger.rb +111 -0
  40. data/lib/lingo/attendee/decomposer.rb +101 -0
  41. data/lib/lingo/attendee/dehyphenizer.rb +167 -0
  42. data/lib/lingo/attendee/multiworder.rb +301 -0
  43. data/lib/lingo/attendee/noneword_filter.rb +103 -0
  44. data/lib/lingo/attendee/objectfilter.rb +86 -0
  45. data/lib/lingo/attendee/sequencer.rb +190 -0
  46. data/lib/lingo/attendee/synonymer.rb +105 -0
  47. data/lib/lingo/attendee/textreader.rb +237 -0
  48. data/lib/lingo/attendee/textwriter.rb +196 -0
  49. data/lib/lingo/attendee/tokenizer.rb +218 -0
  50. data/lib/lingo/attendee/variator.rb +185 -0
  51. data/lib/lingo/attendee/vector_filter.rb +158 -0
  52. data/lib/lingo/attendee/wordsearcher.rb +96 -0
  53. data/lib/lingo/attendees.rb +289 -0
  54. data/lib/lingo/cli.rb +62 -0
  55. data/lib/lingo/config.rb +104 -0
  56. data/lib/lingo/const.rb +131 -0
  57. data/lib/lingo/ctl.rb +173 -0
  58. data/lib/lingo/database.rb +587 -0
  59. data/lib/lingo/language.rb +530 -0
  60. data/lib/lingo/modules.rb +98 -0
  61. data/lib/lingo/types.rb +285 -0
  62. data/lib/lingo/utilities.rb +40 -0
  63. data/lib/lingo/version.rb +27 -0
  64. data/lingo-all.cfg +85 -0
  65. data/lingo-call.cfg +15 -0
  66. data/lingo.cfg +78 -0
  67. data/lingo.rb +3 -0
  68. data/lir.cfg +72 -0
  69. data/porter/stem.cfg +311 -0
  70. data/porter/stem.rb +150 -0
  71. data/spec/spec_helper.rb +0 -0
  72. data/test.cfg +79 -0
  73. data/test/attendee/ts_abbreviator.rb +35 -0
  74. data/test/attendee/ts_decomposer.rb +31 -0
  75. data/test/attendee/ts_multiworder.rb +390 -0
  76. data/test/attendee/ts_noneword_filter.rb +19 -0
  77. data/test/attendee/ts_objectfilter.rb +19 -0
  78. data/test/attendee/ts_sequencer.rb +43 -0
  79. data/test/attendee/ts_synonymer.rb +33 -0
  80. data/test/attendee/ts_textreader.rb +58 -0
  81. data/test/attendee/ts_textwriter.rb +98 -0
  82. data/test/attendee/ts_tokenizer.rb +32 -0
  83. data/test/attendee/ts_variator.rb +24 -0
  84. data/test/attendee/ts_vector_filter.rb +62 -0
  85. data/test/attendee/ts_wordsearcher.rb +119 -0
  86. data/test/lir.csv +3 -0
  87. data/test/lir.txt +12 -0
  88. data/test/lir2.txt +12 -0
  89. data/test/mul.txt +1 -0
  90. data/test/ref/artikel.mul +1 -0
  91. data/test/ref/artikel.non +159 -0
  92. data/test/ref/artikel.seq +270 -0
  93. data/test/ref/artikel.syn +16 -0
  94. data/test/ref/artikel.vec +928 -0
  95. data/test/ref/artikel.ven +928 -0
  96. data/test/ref/artikel.ver +928 -0
  97. data/test/ref/lir.csv +328 -0
  98. data/test/ref/lir.mul +1 -0
  99. data/test/ref/lir.non +274 -0
  100. data/test/ref/lir.seq +249 -0
  101. data/test/ref/lir.syn +94 -0
  102. data/test/test_helper.rb +113 -0
  103. data/test/ts_database.rb +269 -0
  104. data/test/ts_language.rb +396 -0
  105. data/txt/artikel-en.txt +157 -0
  106. data/txt/artikel.txt +170 -0
  107. data/txt/lir.txt +1317 -0
  108. metadata +211 -0
data/de/lingo-mul.txt ADDED
@@ -0,0 +1,3209 @@
1
+ #
2
+ # Mehrwort-Wörterbuch lingo-mul.txt
3
+ # enthält als Basis für eigene Erweiterungen
4
+ # exemplarisch Mehrwortbegriffe, die mit "a" beginnen
5
+ #
6
+ # Stand: 18.10.05 / Klaus Lepsky
7
+ #
8
+ #
9
+ albert einstein
10
+ albert ainshtain
11
+ einstein, albert
12
+ a data query language
13
+ a fresco
14
+ a part
15
+ a priori
16
+ abelsche transformation
17
+ abelsche umformung
18
+ a data query language
19
+ a fresco
20
+ a part
21
+ a priori
22
+ a programming language
23
+ a- 3-struktur
24
+ a- 4-struktur
25
+ a-10a thunderbolt ii
26
+ a-4 skyhawk
27
+ a-6 intruder
28
+ a-ice lha-mo
29
+ a6m zero-sen
30
+ aachener kongress
31
+ aalartige fische
32
+ abbild gottes
33
+ abbreviated clause
34
+ abc flowcharter 3.0
35
+ abdominal viscera
36
+ abdominale geschwulst
37
+ abdominales aortenaneurysma
38
+ abe's exoddus
39
+ abe's oddysee
40
+ abelian group
41
+ abelian schemes
42
+ abelmoschus esculentus
43
+ abelsche algebra
44
+ abelsche eichtheorie
45
+ abelsche erweiterung von körpern
46
+ abelsche gruppe
47
+ abelsche halbgruppe
48
+ abelsche hypergruppe
49
+ abelsche l-funktion
50
+ abelsche mannigfaltigkeit
51
+ abelsche partielle summation
52
+ abelsche transformation
53
+ abelsche umformung
54
+ abelsche untergruppe
55
+ abelsche varietät
56
+ abelscher gruppenring
57
+ abelscher krull-ring
58
+ abelscher körper
59
+ abelscher normalteiler
60
+ abelscher ring ohne nullteiler
61
+ abelscher ring
62
+ abelscher zahlkörper
63
+ abelsches gruppenschema
64
+ abelsches monoid
65
+ abelsches schema
66
+ abendländischer lebensbaum
67
+ abendländisches schisma
68
+ aberratio ictus
69
+ abessinische katze
70
+ abessinische zwerghirse
71
+ abessinischer kohl
72
+ abessinischer meerkohl
73
+ abessinischer senf
74
+ abessinischer steinbock
75
+ abfall vom glauben
76
+ abfallrelevante datenbank
77
+ abflussloser see
78
+ abfrage durch beispiel
79
+ abfrage mittels beispiel
80
+ abfrage per beispiel
81
+ abgabe zollgleicher wirkung
82
+ abgaben zollgleicher wirkung
83
+ abgeflachter lackporling
84
+ abgeleitete funktion
85
+ abgeleitete kategorie
86
+ abgeleitete menge
87
+ abgeleitetes wertpapier
88
+ abgereichertes uran
89
+ abgerundete form
90
+ abgeschlossene bibliographie
91
+ abgeschlossene elektronenschale
92
+ abgeschlossene nukleonenschale
93
+ abgeschlossene schale
94
+ abgeschlossener operator
95
+ abgesetzter aufruf
96
+ abgespannter mast
97
+ abgespanntes tragwerk
98
+ abgestimmte erwerbung
99
+ abgestimmte verhaltensweise
100
+ abgestimmtes verhalten
101
+ abgestufte vergeltung
102
+ abhanden gekommene sache
103
+ abhängige variable
104
+ abhängige zufallsvariable
105
+ abhängiger interrogativsatz
106
+ abhängiges unternehmen
107
+ abies alba
108
+ abies balsamea
109
+ abies cephalonica
110
+ abies cilicica
111
+ abies grandis
112
+ abies khutrov
113
+ abies morinda
114
+ abies nobilis
115
+ abies pendula
116
+ abies pinsapo
117
+ abies procera
118
+ abies smithiana
119
+ abies webbiana pindrow
120
+ abiogene evolution
121
+ abiogene synthese
122
+ abiotische synthese
123
+ abiu tree
124
+ abklingen der lokalen energie
125
+ ablatio mammae
126
+ ablatio placentae
127
+ ablatio retinae
128
+ ablativus absolutus
129
+ ablativus instrumentalis
130
+ ablativus instrumenti
131
+ ableitende harnwege
132
+ ableitende therapie
133
+ ableitung einer funktion
134
+ ableitung einer menge
135
+ ableitung gebrochener ordnung
136
+ ableitung nicht ganzzahliger ordnung
137
+ ableitung nicht-ganzer ordnung
138
+ abnehmende industrie
139
+ abnehmendes unternehmen
140
+ abnormal lie
141
+ abnormal system end
142
+ abnorme persönlichkeit
143
+ abnormer täter
144
+ abnormes verhalten
145
+ abortus artificialis
146
+ abortus bang
147
+ abramis ballerus
148
+ abramis brama
149
+ abrasio dentium
150
+ abrasio uteri
151
+ abrasive wear
152
+ abrasiver verschleiß
153
+ abraxas grossulariata
154
+ abri sous roche
155
+ abruptio placentae
156
+ abrus precatorius
157
+ abschaltbarer leistungshalbleiter
158
+ abschaltbarer thyristor
159
+ abschied von der literatur
160
+ abschmelzende elektrode
161
+ abschnittsweise chiffrierung
162
+ abschnittsweise verschlüsselung
163
+ abscisin ii
164
+ absetzbarer stoff
165
+ absetzung für abnutzung
166
+ abshagen, robert
167
+ absolter hilbertscher klassenkörper
168
+ absolute altersbestimmung
169
+ absolute chronologie
170
+ absolute class field
171
+ absolute datierung
172
+ absolute geometrie
173
+ absolute größe
174
+ absolute helligkeit
175
+ absolute konstruktion
176
+ absolute konzentration
177
+ absolute krümmung
178
+ absolute monarchie
179
+ absolute neighbourhood retract
180
+ absolute permeabilität
181
+ absolute temperatur
182
+ absolute temperaturskala
183
+ absoluter differentialkalkül
184
+ absoluter film
185
+ absoluter kasus
186
+ absoluter kasusgebrauch
187
+ absoluter klassenkörper
188
+ absoluter nullpunkt
189
+ absoluter umgebungsretrakt
190
+ absolutes urteil
191
+ absorbierte dosis
192
+ absteigende degeneration
193
+ abstimmbarer laser
194
+ abstract interpretation
195
+ abstract resource language
196
+ abstract state machine
197
+ abstract syntax notation one
198
+ abstract syntax tree
199
+ abstract windowing toolkit
200
+ abstrakte algebra
201
+ abstrakte interpretation
202
+ abstrakte kunst
203
+ abstrakte malerei
204
+ abstrakte maschine
205
+ abstrakte photographie
206
+ abstrakte zustandsmaschine
207
+ abstrakter automat
208
+ abstrakter film
209
+ abstrakter syntaxbaum
210
+ absurde dichtung
211
+ absurde literatur
212
+ absurdes drama
213
+ absurdes theater
214
+ abtast- und haltekreis
215
+ abteilung informations- und kommunikationssysteme
216
+ abteilung informationstechnik
217
+ abu markub
218
+ abutilon mosaic virus
219
+ abwanderung und widerspruch
220
+ abwassertechnische anlage
221
+ abwehr von gefahren
222
+ abweichende meinung
223
+ abweichende richtermeinung
224
+ abweichendes sexualverhalten
225
+ abweichendes verhalten
226
+ abwickelbare varietät
227
+ abzugsfähige ausgabe
228
+ abzugsfähige ausgaben
229
+ abzählende kombinatorik
230
+ abänderliches recht
231
+ acacia catechu
232
+ acacia farnesiana
233
+ acacia horrida
234
+ acacia karroo
235
+ acacia kirkii
236
+ acacia melanoxylon
237
+ acacia rupestris
238
+ acacia senegal
239
+ acacianisches schisma
240
+ academic learning time in physical education
241
+ academy award
242
+ académie des beaux-arts
243
+ académie goncourt
244
+ acalypha hom
245
+ acalypha indica
246
+ acanthaster planci
247
+ acanthias vulgaris
248
+ acanthis cannabina
249
+ acanthis flammea
250
+ acanthis flavirostris
251
+ acanthis hornemanni
252
+ acanthopanax senticosus
253
+ acanthoscelides obsoletus
254
+ acanthosicyos horridus
255
+ acanthosis nigricans
256
+ acanthostigma parasiticum
257
+ acarina parasitiformes
258
+ accademia clementina
259
+ accelerated solvent extraction
260
+ accelerator globulin
261
+ accelerator mass spectrometry
262
+ accent circonflexe
263
+ acceptable quality limit
264
+ access basic
265
+ access control
266
+ access method
267
+ access network
268
+ accessory cell
269
+ accidental arc
270
+ accipiter gentilis
271
+ accipiter nisus
272
+ account management
273
+ accounting management
274
+ accusativus absolutus
275
+ accusativus cum infinitivo
276
+ acer campestre
277
+ acer palmatum
278
+ acer platanoides
279
+ acer pseudoplatanus
280
+ acer saccharophorum
281
+ acer saccharum
282
+ aceria guerreronis
283
+ acetabularia acetabulum
284
+ acetabularia mediterranea
285
+ acetatbildende bakterien
286
+ aceto balsamico
287
+ acetogene bakterien
288
+ acetyl-coenzym a
289
+ acetylaktivierendes enzym
290
+ achaiischer bund
291
+ achatina fulica
292
+ acherontia atropos
293
+ acheta domestica
294
+ acheta domesticus
295
+ achillea asplenifolia
296
+ achillea atrata
297
+ achillea clavenae
298
+ achillea clavennae
299
+ achillea helenitis
300
+ achillea millefolium
301
+ achillea moschata
302
+ achillea nana
303
+ achillea pannonica
304
+ achillea ptarmica
305
+ achillea roseo-alba
306
+ achillea roseoalba
307
+ achillea tomentosa
308
+ achras caimito
309
+ achse des körpers
310
+ achsfolge 2'b1'
311
+ achsfolge 2'c1
312
+ achsfolge 2'd1'
313
+ acht banner
314
+ acht und bann
315
+ acht zeichen des schicksals
316
+ achtarmige tintenfische
317
+ achte dimension
318
+ achte hauptgruppe
319
+ achte nebengruppe
320
+ achtfacher pfad
321
+ achtgliedriger pfad
322
+ achtstrahlige blumentiere
323
+ achtstrahlige korallen
324
+ achtzigjähriger krieg
325
+ achtzähniger fichtenborkenkäfer
326
+ achtzähniger lärchenborkenkäfer
327
+ achtzähniger zirbenborkenkäfer
328
+ achylia pancreatica
329
+ achäischer bund
330
+ acid house culture
331
+ acid jazz
332
+ acid rock
333
+ acidianus ambivalens
334
+ acidithiobacillus ferrooxidans
335
+ acidophiler granulozyt
336
+ acidovorax delafieldii
337
+ acidum formicicum
338
+ acidum formicum
339
+ acidum iod-oxychinolin-sulfonicum
340
+ acidum jod-oxychinolin-sulfonicum
341
+ acidum lacticum
342
+ acidum sarcolacticum
343
+ acinetobacter lwoffii
344
+ acinonyx jubatus rex
345
+ acinonyx jubatus
346
+ acipencer ruthenus
347
+ acipenser baeri
348
+ acipenser fulvescens
349
+ acipenser gueldenstaedti
350
+ acipenser stellatus
351
+ acipenser sturio
352
+ aclacinomycin a
353
+ acne juvenilis
354
+ acne rosacea
355
+ acne vulgaris
356
+ acomys cahirinus
357
+ aconitum lycoctonum
358
+ aconitum napellus
359
+ aconitum vulparia
360
+ acorn archimedes
361
+ acorn b
362
+ acorn electron
363
+ acorn risc machine
364
+ acorus calamus
365
+ acoustic emission
366
+ acoustic neurinoma
367
+ acquired deafness
368
+ acquired immune deficiency syndrome
369
+ acquisitio originaria
370
+ acraea acerata
371
+ acremonium chrysogenum
372
+ acremonium uncinatum
373
+ acrocephalus arundinaceus
374
+ acrocephalus paludicola
375
+ acrocephalus palustris
376
+ acrocephalus schoenobaenus
377
+ acrocephalus scirpaceus
378
+ act of uniformity
379
+ acta general de chile
380
+ actin-bindende proteine
381
+ acting out
382
+ actinida arguta
383
+ actinidia chinensis
384
+ actinium 227
385
+ actinomyces erythraeus
386
+ actinomycin d
387
+ actio arbitraria
388
+ actio de eo quod certo loco
389
+ actio gleich reactio
390
+ actio iudicati
391
+ actio quod iussu
392
+ actio tributoria
393
+ actio utilis
394
+ action of a group
395
+ action research
396
+ action scheme for the mobility of university students
397
+ action semantics
398
+ actitis hypoleucos
399
+ activated protein c resistance
400
+ active and reflective teaching in secondary mathematics
401
+ active directory services
402
+ active directory
403
+ active galactic nucleus
404
+ active noise control
405
+ active server pages
406
+ active template library 3.0
407
+ active template library
408
+ active vision
409
+ activex controls
410
+ activex data objects
411
+ activex data objects.net
412
+ activex steuerelement
413
+ activity based costing
414
+ actor's studio
415
+ acts of uniformity
416
+ actuosa participatio
417
+ actus fidei
418
+ acute bee paralysis virus
419
+ acute bee paralysis
420
+ acute physiology and chronic health evaluation
421
+ acute respiratory distress syndrome
422
+ acyclische bewegung
423
+ acyl carrier protein
424
+ acyl-coenzym a-dehydrogenase
425
+ acyl-coenzym a-desaturase
426
+ acylaktivierendes enzym
427
+ acylase i
428
+ ada system for embedded real-time industrial execution
429
+ adam kadmon
430
+ adam qadmôn
431
+ adams-novikov spectral sequence
432
+ adamssche operation
433
+ adamssche spektralfolge
434
+ adansonia digitata
435
+ adaptierendes system
436
+ adaptiertes datenbanksystem
437
+ adaptive dilatation
438
+ adaptive enzyme
439
+ adaptive erwartung
440
+ adaptive erwartungsbildung
441
+ adaptive filters
442
+ adaptive methods
443
+ adaptive regelung
444
+ adaptive resonance theory neural networks
445
+ adaptive schrittweite
446
+ adaptives enzym
447
+ adaptives filter
448
+ adaptives system
449
+ adaptives verfahren
450
+ add in
451
+ add on
452
+ addax nasomaculatus
453
+ address resolution protocol
454
+ adele group
455
+ adelges tsugae
456
+ adeliges wappen
457
+ adeno-assoziierte viren
458
+ adenoid cystic cancer
459
+ adenoma hepatocellulare
460
+ adenoma sebaceum
461
+ adenoma toxicum
462
+ adenomatosis coli
463
+ adenota kob
464
+ adhatoda vasica
465
+ adiabatische entmagnetisierung
466
+ adiabatische näherung
467
+ adiabatischer grenzwert
468
+ adiabatischer limes
469
+ adipositas dolorosa
470
+ adipositas hepatis
471
+ adjektivisches attribut
472
+ adjungierte darstellung
473
+ adjuvante therapie
474
+ adlige familie
475
+ adlige frau
476
+ adlige stadt
477
+ administrative informatics
478
+ administrative wertanalyse
479
+ admiral tegetthoff
480
+ adnexa bulbi
481
+ adnexa oculi
482
+ adobe golive 4.0
483
+ adobe golive 4.x
484
+ adobe golive 5.0
485
+ adobe golive 6.0
486
+ adobe indesign 1.0
487
+ adobe indesign 1.5
488
+ adobe indesign 2.0
489
+ adobe indesign
490
+ adobe livemotion
491
+ adobe premiere 4.0
492
+ adobe premiere 4.2
493
+ adobe premiere 5.0
494
+ adobe premiere 6.0
495
+ adobe premiere 6.5
496
+ adobe type 1 font
497
+ adolf würth gmbh und co. kg
498
+ adonis aestivalis
499
+ adonis vernalis
500
+ adorno, theodor w.
501
+ adorno-preis der stadt frankfurt am main
502
+ adoxa moschatellina
503
+ adoxophyes orana
504
+ adoxophyes reticulana
505
+ adrenerger rezeptor
506
+ adrenerges system
507
+ adrenergischer betarezeptor
508
+ adrenergisches system
509
+ adrenocorticotropes hormon
510
+ adrenogenitales syndrom
511
+ adrenokortikotropes hormon
512
+ adress plus 8.0
513
+ adresse von objekten in rechnernetzen
514
+ adriatische frage
515
+ ads 257
516
+ adsorbierbare organisch gebundene halogenverbindungen
517
+ adsorbierbare organisch gebundene schwefelverbindungen
518
+ adult oriented rock
519
+ adult respiratory distress syndrome
520
+ adult t-cell leukemia
521
+ advaita vedanta
522
+ advanced 36
523
+ advanced continuous simulation language
524
+ advanced encryption standard
525
+ advanced glycosylation end products
526
+ advanced interactive executive
527
+ advanced interactive microcomputer
528
+ advanced material
529
+ advanced materials
530
+ advanced micro devices inc.
531
+ advanced photo system
532
+ advanced risc machine
533
+ advanced student hybrid challenge
534
+ advanced techniques into efficient scientific software
535
+ advanced technology bomber
536
+ advanced very high resolution radiometer
537
+ adventistische gemeinde
538
+ adventus principis
539
+ adventus regis
540
+ adverbiale bestimmung
541
+ adverse auslese
542
+ adverse selektion
543
+ advo 367
544
+ advoforderung 367
545
+ adygische harmonika
546
+ adygskaja garmonika
547
+ adynamia episodica hereditaria
548
+ adäquater kausalzusammenhang
549
+ ae phoenicis
550
+ aedemone mirabilis
551
+ aedes aegypti
552
+ aedes vexans
553
+ aegilops squarrosa
554
+ aegilops triuncialis
555
+ aegilops ventricosa
556
+ aegithalos caudatus
557
+ aegolius funereus
558
+ aegopodium pograria
559
+ aepyceros melampus
560
+ aequiforme geometrie
561
+ aerob thermophile stabilisierung
562
+ aerobe kapazität
563
+ aerobe leistungsfähigkeit
564
+ aerobe photosynthetische bakterien
565
+ aerobe phototrophe bakterien
566
+ aerobe schwelle
567
+ aerodynamischer widerstand
568
+ aerodynamisches profil
569
+ aerophytische algen
570
+ aeroxanthat 350
571
+ aes signatum
572
+ aeschna cyanea
573
+ aeschynomene americana
574
+ aeschynomene elaphroxylon
575
+ aesculus hippocastanum
576
+ aesopian language
577
+ aesthetic surgery
578
+ aethusa cynapium
579
+ affaire des fiches
580
+ affectio papalis
581
+ affektiv-antriebsmässiges rückfallsyndrom
582
+ affektive bindung
583
+ affektive entwicklung
584
+ affektive psychose
585
+ affektive störung
586
+ affektive zufuhr
587
+ affektlosigkeit gottes
588
+ afferente nervenfaser
589
+ affiche lacérée
590
+ affiches lacérées
591
+ affine abbildung
592
+ affine algebraic quotient
593
+ affine ebene geometrie
594
+ affine variety
595
+ affine varietät
596
+ affiner algebraischer quotient
597
+ affinity group
598
+ affirmative action
599
+ affirmative diskriminierung
600
+ affäre dutroux
601
+ afghanisch-britischer krieg
602
+ afghanischer windhund
603
+ african cassava mosaic virus
604
+ african catfish
605
+ african dance
606
+ african horse sickness
607
+ african instituted churches
608
+ african spiderflower
609
+ afrikanische baumwollraupe
610
+ afrikanische konferenz
611
+ afrikanische pferdepest
612
+ afrikanische pferdesterbe
613
+ afrikanische riesenschnecke
614
+ afrikanische schlafkrankheit
615
+ afrikanische schweinepest
616
+ afrikanische striemengrasmaus
617
+ afrikanische theologie
618
+ afrikanische unabhängige kirche
619
+ afrikanische wanderheuschrecke
620
+ afrikanische zwergziege
621
+ afrikanische Ölpalme
622
+ afrikanischer affenbrotbaum
623
+ afrikanischer baumwollwurm
624
+ afrikanischer buntbarsch
625
+ afrikanischer elefant
626
+ afrikanischer hamster
627
+ afrikanischer löwenhund
628
+ afrikanischer strauß
629
+ afrikanischer tanz
630
+ afrikanischer waldelefant
631
+ afrikanischer wildesel
632
+ afrikanischer wildhund
633
+ afrikanisches cassava-mosaik-virus
634
+ afrikanisches maniok-mosaik-virus
635
+ afrikanisches schwarzkehlchen
636
+ afro pop
637
+ afro rock
638
+ afro-asiatische bewegung
639
+ afro-brasilianischer kult
640
+ afro-cuban jazz
641
+ afroamerikanische religion
642
+ afroamerikanischer synkretismus
643
+ afroasiatische bewegung
644
+ afrobrasilianischer kult
645
+ afrokubanischer jazz
646
+ afropavo congensis
647
+ aga chan
648
+ aga khan
649
+ agama agama
650
+ agapetes galathea
651
+ agapornis roseicollis
652
+ agaricus bisporus
653
+ agaricus campestris
654
+ agaricus xanthoderma
655
+ agathis australis
656
+ agave fourcroydes
657
+ agave sisalana
658
+ age of aquarius
659
+ agelastica alni
660
+ agelena labyrinthica
661
+ agelorin a
662
+ agenda 21
663
+ agenda setting
664
+ agenesia ovarii
665
+ agent national
666
+ agent provocateur
667
+ ager publicus
668
+ ager vectigalis
669
+ ageratina adenophora
670
+ ageratina glandulosa
671
+ ageratina trapezoidea
672
+ agfa wildlife and environment photographical awards
673
+ agfa wildlife and environmental awards
674
+ agfa wildlife award
675
+ agglutinierende sprachen
676
+ agglutinierender sprachbau
677
+ aggregat 4
678
+ aggregation operator
679
+ aggregiertes system
680
+ aggressive fibromatose
681
+ aggressives verhalten
682
+ agitation und propaganda
683
+ aglais urticae
684
+ agnostos theos
685
+ agon capitolinus
686
+ agonum assimile
687
+ agonum dorsale
688
+ agostische bindung
689
+ agostische wechselwirkung
690
+ agouti paca
691
+ agrarischer großbetrieb
692
+ agrarstrukturelle planung
693
+ agrarwissenschaftliche forschung
694
+ agrarwissenschaftliches studium
695
+ agrilus aurichalceus
696
+ agrion puella
697
+ agrius convolvuli
698
+ agropyro-rumicion crispi
699
+ agropyron intermedium
700
+ agropyron repens
701
+ agrostemma githago
702
+ agrostion stoloniferae
703
+ agrostis alba
704
+ agrostis palustris
705
+ agrostis stolonifera
706
+ agrotis segetum
707
+ agrotis vestigialis
708
+ agrupación bases
709
+ agthe, arend
710
+ agusta bell 204
711
+ aguti paca
712
+ ahl al-sunna wa 'l-djamaa
713
+ ahl al-sunna
714
+ ahl as-sunna wa'l-gamaa
715
+ ahl-e hakk
716
+ ahl-i hakk
717
+ ahl-i haqq
718
+ ahrensburger kultur
719
+ ahrensburger rentierjäger
720
+ aids-kranke frau
721
+ aie d'avignon
722
+ ailuropoda melanoleuca
723
+ ailurus fulgens
724
+ aim 65
725
+ air data computer
726
+ air des bouffons
727
+ air separation
728
+ airborne early warning and control system
729
+ aircraft-pilot coupling
730
+ airline transport pilot
731
+ airysche funktion
732
+ aitiologische sage
733
+ ajuga reptans
734
+ akademie der bildenden künste
735
+ akademie der künste
736
+ akademie der wissenschaften
737
+ akademische bildung
738
+ akademische freiheit
739
+ akademische freizügigkeit
740
+ akademische gerichtsbarkeit
741
+ akademischer arbeiter-unterrichtskurs
742
+ akademischer grad
743
+ akademischer mittelbau
744
+ akademischer nachwuchs
745
+ akademisches gymnasium
746
+ akakianisches schisma
747
+ akanthosis nigricans
748
+ akazianisches schisma
749
+ akhila bharata krsaka sabha
750
+ akinetische motilitätspsychose
751
+ akinetischer mutismus
752
+ akkusativ mit infinitiv
753
+ akrodermatitis chronica atrophicans
754
+ akrodermatitis continua
755
+ akrodermatitis suppurativa continua
756
+ aktenarme verwaltung
757
+ aktie ohne stimmrecht
758
+ aktiebolaget volvo
759
+ aktien 2.0
760
+ aktin-bindende proteine
761
+ aktion 14 f 13
762
+ aktion postfach synode
763
+ aktionsprogramm zur förderung der mobilität von hochschulstudenten
764
+ aktiv-entdeckendes lernen
765
+ aktive analyse
766
+ aktive antenne
767
+ aktive chronische hepatitis
768
+ aktive galaxie
769
+ aktive immunisierung
770
+ aktive lautsprecherbox
771
+ aktive lohnveredelung
772
+ aktive platte
773
+ aktive psychoanalyse
774
+ aktive rayleigh-spektroskopie
775
+ aktive schalldämmung
776
+ aktive schalldämpfung
777
+ aktive schwingungsdämpfung
778
+ aktive sterbehilfe
779
+ aktive streuspektroskopie
780
+ aktive teilnahme
781
+ aktiver galaktischer kern
782
+ aktiver galaxienkern
783
+ aktiver kern
784
+ aktiver lohnveredelungsverkehr
785
+ aktiver privatinvestor
786
+ aktiver steuerwiderstand
787
+ aktives medium
788
+ aktives sehen
789
+ aktives sternsystem
790
+ aktives wahlrecht
791
+ aktives zentrum
792
+ aktivierte essigsäure
793
+ aktivierter komplex
794
+ aktivischer sprachtyp
795
+ aktuelle paläontologie
796
+ aktueller bezug
797
+ akustisch evoziertes potential
798
+ akustisch evoziertes potenzial
799
+ akustische dichtung
800
+ akustische emission
801
+ akustische führung
802
+ akustische impedanz
803
+ akustische kernresonanz
804
+ akustische medien
805
+ akustische methode
806
+ akustische mikroskopie
807
+ akustische oberflächenwelle
808
+ akustische paramagnetische resonanz
809
+ akustische rinde
810
+ akustische spektrographie
811
+ akustische telegrafie
812
+ akustische telegraphie
813
+ akustische wahrnehmung
814
+ akustische welle
815
+ akustischer filter
816
+ akustischer konvolver
817
+ akustischer kortex
818
+ akustischer nachton
819
+ akustischer reiz
820
+ akustisches filter
821
+ akustisches gitter
822
+ akustisches nahfeldmikroskop
823
+ akustisches oberflächenwellenbauelement
824
+ akustisches rastermikroskop
825
+ akustisches signal
826
+ akustisches spektrum
827
+ akustisches trauma
828
+ akustisches verfahren
829
+ akustoelektrischer oberflächenwellenwandler
830
+ akustoelektronisches bauelement
831
+ akutagawa, ryunosuke
832
+ akute bauchspeicheldrüsenentzündung
833
+ akute biliäre bauchspeicheldrüsenentzündung
834
+ akute biliäre pankreatitis
835
+ akute hämorrhagisch-nekrotisierende pankreatitis
836
+ akute hämorrhagische bindehautentzündung
837
+ akute hämorrhagische pankreatitis
838
+ akute hörschädigung
839
+ akute infektiöse lymphozytose
840
+ akute krankheit
841
+ akute leberinsuffizienz
842
+ akute leukämie
843
+ akute lymphatische leukämie
844
+ akute lymphoblastische leukämie
845
+ akute myeloische leukämie
846
+ akute niereninsuffizienz
847
+ akute pankreatitis
848
+ akute paralyse
849
+ akute phase
850
+ akute respiratorische insuffizienz
851
+ akute tubuläre nephrose
852
+ akute vergiftung
853
+ akuter bauch
854
+ akuter herztod
855
+ akuter hoden
856
+ akuter hörsturz
857
+ akuter schub
858
+ akutes abdomen
859
+ akutes leberversagen
860
+ akutes nierenversagen
861
+ akutes skrotum
862
+ akutes stadium
863
+ akzessorischer gemengteil
864
+ akzessorisches mineral
865
+ akzessorisches olfaktorisches organ
866
+ akzessorisches pigment
867
+ ala magna
868
+ ala major ossis sphenoidalis
869
+ ala temporalis
870
+ alabama bb 60
871
+ alabama claims
872
+ alaskan malamute
873
+ alauda arvensis
874
+ alba iulia
875
+ albanische frau
876
+ albanische liga
877
+ albanische philologie
878
+ albatrellus pes caprae
879
+ albatrellus pes-caprae
880
+ albizia falcata
881
+ albizia julibrissin
882
+ albizia moluccana
883
+ albizzia falcataria
884
+ album amicorum
885
+ alburnus alburnus
886
+ alburnus lucidus
887
+ alca lhamo
888
+ alca torda
889
+ alcalase novo
890
+ alcaligenes denitrificans xylosoxydans
891
+ alcaligenes eutrophus
892
+ alcaligenes xylosoxydans
893
+ alcea rosea
894
+ alcedo atthis
895
+ alcelaphus buselaphus
896
+ alces alces gigas
897
+ alces alces
898
+ alchemilla vulgaris
899
+ alchemilla xanthochlora
900
+ alcohol oxidase
901
+ alcoholics anonymous
902
+ aldabra giant tortoise
903
+ aldabra tortoise
904
+ aldabrachelys gigantea
905
+ aldehyd-reductase 1
906
+ aldrovandi, pompeo
907
+ aldus photostyler für windows
908
+ alectoris graeca
909
+ aleukia haemorrhagica
910
+ aleurodes brassicae
911
+ aleurodes citri
912
+ aleurodes proletella
913
+ alexander magnus
914
+ alexanders letzte tage
915
+ alexandrinische philosophenschule
916
+ alexandrinische schule
917
+ alexandrinische theologie
918
+ alexandrov space
919
+ alexej-jawlensky-preis für bildende kunst
920
+ aleyrodes brassicae
921
+ aleyrodes citri
922
+ aleyrodes proletella
923
+ alfa romeo spa
924
+ alfa romeo
925
+ alfalfa mosaic virus
926
+ alfred-müller-felsenburg-preis für aufrechte literatur
927
+ alfred-toepfer-stiftung fvs
928
+ algebra der logik
929
+ algebra mit glättungsgesetz
930
+ algebra mit involution
931
+ algebra mit polynomialen identitäten
932
+ algebra mit polynomidentität
933
+ algebra of functions
934
+ algebra with involution
935
+ algebra with straightening law
936
+ algebraic combinatorics
937
+ algebraic data type
938
+ algebraic field extension
939
+ algebraic independence
940
+ algebraic recursion theory
941
+ algebraic riccati equation
942
+ algebraic semigroups
943
+ algebraic variety
944
+ algebraische erweiterung
945
+ algebraische form
946
+ algebraische gleichung
947
+ algebraische gruppe
948
+ algebraische halbgruppe
949
+ algebraische invariantentheorie
950
+ algebraische kombinatorik
951
+ algebraische korrespondenz
952
+ algebraische körpererweiterung
953
+ algebraische logik
954
+ algebraische matrix-riccati-gleichung
955
+ algebraische methode
956
+ algebraische quantenfeldtheorie
957
+ algebraische rekursionstheorie
958
+ algebraische riccati-gleichung
959
+ algebraische spezifikation
960
+ algebraische struktur
961
+ algebraische unabhängigkeit
962
+ algebraische varietät
963
+ algebraischer datentyp
964
+ algebraischer erweiterungskörper
965
+ algebraischer homomorphismus
966
+ algebraischer oberkörper
967
+ algebraisches lineares monoid
968
+ algebraisches mehrgitterverfahren
969
+ algebraisches rechnen
970
+ algebraisches system
971
+ algebroide funktion
972
+ algerische frau
973
+ algorithm specification language
974
+ algorithmic differentiation
975
+ algorithmic language
976
+ algorithmic programming
977
+ algorithmic synthesis
978
+ algorithmische geometrie
979
+ algorithmische gruppentheorie
980
+ algorithmische lerntheorie
981
+ algorithmische programmiersprache
982
+ algorithmische programmierung
983
+ algorithmische sprache
984
+ algorithmische theorie
985
+ algorithmische zahlentheorie
986
+ algorithmisches lernen
987
+ algorithmus mit gruppenweiser behandlung der daten
988
+ alicyclische verbindungen
989
+ alicyclobacillus acidocaldarius
990
+ alimentäre allergie
991
+ alkalische drüse
992
+ alkalische leukozytenphosphatase
993
+ alkalische phosphatase
994
+ alkalische phosphomonoesterase
995
+ alkalische reaktion
996
+ alkalisches sulfitverfahren mit zusatz von anthrachinon und methanol
997
+ alkanna tinctoria
998
+ alke, detlev harald
999
+ alkoholbedingte krankheit
1000
+ alkoholbedingtes amnestisches syndrom
1001
+ alkoholfreies getränk
1002
+ alkoholische polyneuropathie
1003
+ alkoholisches getränk
1004
+ alkylierende substanz
1005
+ alkylierte aromatische kohlenwasserstoffe
1006
+ all hallows' eve
1007
+ all india kisan sabha
1008
+ all india kishan sabha
1009
+ all quiet on the western front
1010
+ all-india kisan sabha
1011
+ all-india kishan sabha
1012
+ alla prima
1013
+ allard pierson museum
1014
+ allegorische darstellung
1015
+ allegorische exegese
1016
+ allegorische schriftdeutung
1017
+ allein erziehende mutter
1018
+ allein erziehender vater
1019
+ allein erziehender
1020
+ allein lebender
1021
+ allein reisende frau
1022
+ allein reisender
1023
+ allein selig machende kirche
1024
+ allein stehende frau
1025
+ allein stehende mutter
1026
+ allein stehender mann
1027
+ allein stehender vater
1028
+ allein stehendes kind
1029
+ alleinerziehende mutter
1030
+ alleinerziehender vater
1031
+ alleinreisende frau
1032
+ alleinseligmachende kirche
1033
+ alleinstehende frau
1034
+ alleinstehende mutter
1035
+ alleinstehender mann
1036
+ alleinstehender vater
1037
+ alleinstehendes kind
1038
+ allele exclusion
1039
+ allele exklusion
1040
+ alleler ausschluss
1041
+ alleler erbfaktor
1042
+ allelic exclusion
1043
+ allergische diathese
1044
+ allergische encephalomyelitis
1045
+ allergische enteropathie
1046
+ allergische enzephalomyelitis
1047
+ allergische hautkrankheit
1048
+ allergische krankheit
1049
+ allergische neuritis
1050
+ allergische polyneuritis
1051
+ allergische reaktion
1052
+ allergische rhinitis
1053
+ allergische rhinokonjunktivitis
1054
+ allergische vaskulitis
1055
+ allergisches asthma
1056
+ allergisches bronchialasthma
1057
+ alley cropping
1058
+ allgegenwart gottes
1059
+ allgegenwärtige datenverarbeitung
1060
+ allgemein bildende höhere schule
1061
+ allgemein bildende polytechnische oberschule
1062
+ allgemein bildende schule
1063
+ allgemein bildender unterricht
1064
+ allgemein bildendes schulwesen
1065
+ allgemein bildendes unterrichtsfach
1066
+ allgemeinbildende bibliothek
1067
+ allgemeinbildende höhere schule
1068
+ allgemeinbildende polytechnische oberschule
1069
+ allgemeinbildende schule
1070
+ allgemeinbildender unterricht
1071
+ allgemeinbildendes schulwesen
1072
+ allgemeinbildendes unterrichtsfach
1073
+ allgemeine algebra
1074
+ allgemeine atmosphärische zirkulation
1075
+ allgemeine außenprüfung
1076
+ allgemeine bedingungen
1077
+ allgemeine benützungsordnung der bayerischen staatlichen bibliotheken
1078
+ allgemeine betriebswirtschaftslehre
1079
+ allgemeine bevölkerungsumfrage der sozialwissenschaften
1080
+ allgemeine biologie
1081
+ allgemeine chemie
1082
+ allgemeine entzündungsreaktion
1083
+ allgemeine genetik
1084
+ allgemeine geographie
1085
+ allgemeine geologie
1086
+ allgemeine geschäftsbedingungen
1087
+ allgemeine gleichgewichtstheorie
1088
+ allgemeine grammatik
1089
+ allgemeine innere verwaltung
1090
+ allgemeine lieferungsbedingungen
1091
+ allgemeine lineare gruppe
1092
+ allgemeine linguistik
1093
+ allgemeine musiklehre
1094
+ allgemeine ortskrankenkasse
1095
+ allgemeine pathologie
1096
+ allgemeine pädagogik
1097
+ allgemeine schule
1098
+ allgemeine schulordnung
1099
+ allgemeine semantik
1100
+ allgemeine soziologie
1101
+ allgemeine sprachwissenschaft
1102
+ allgemeine staatslehre
1103
+ allgemeine steuerlehre
1104
+ allgemeine versicherungsbedingungen
1105
+ allgemeine verwaltungsvorschrift für die betriebsprüfung
1106
+ allgemeine wasserversorgungsbedingungen
1107
+ allgemeine wehrpflicht
1108
+ allgemeine wiener musikzeitung
1109
+ allgemeine wirtschaftslehre
1110
+ allgemeine wirtschaftspolitik
1111
+ allgemeine zirkulation der atmosphäre
1112
+ allgemeine öffentliche bibliothek
1113
+ allgemeiner heilswille gottes
1114
+ allgemeiner rechtsgrundsatz
1115
+ allgemeiner sozialdienst
1116
+ allgemeiner sozialer dienst
1117
+ allgemeiner studentenausschuss
1118
+ allgemeiner teil
1119
+ allgemeines deutsches kommersbuch
1120
+ allgemeines gebet
1121
+ allgemeines gewaltverhältnis
1122
+ allgemeines gleichgewicht
1123
+ allgemeines gleichgewichtsmodell
1124
+ allgemeines kirchengebet
1125
+ allgemeines konzil
1126
+ allgemeines krankenhaus
1127
+ allgemeines lineares modell
1128
+ allgemeines luftfahrer-abzeichen
1129
+ allgemeines priestertum
1130
+ allgemeines präferenzzollsystem
1131
+ allgemeines raumgetriebe
1132
+ allgemeines schuldrecht
1133
+ allgemeines sprechfunkzeugnis
1134
+ allgemeines strafrecht
1135
+ allgemeines system der präferenzen
1136
+ allgemeines verwaltungsrecht
1137
+ alligator mississippiensis
1138
+ alliierte landung
1139
+ allium cepa
1140
+ allium fistulosum
1141
+ allium porrum
1142
+ allium sativum
1143
+ allium schoenoprasum
1144
+ allium sphaerocephalon
1145
+ allium ursinum
1146
+ allium victorialis
1147
+ allium vineale
1148
+ allmacht gottes
1149
+ allogene transplantation
1150
+ allogenes transplantat
1151
+ allogenetische transplantation
1152
+ allolobophora noctura
1153
+ allometrisches wachstum
1154
+ allosterische enzyme
1155
+ allosterische kontrolle
1156
+ allosterische regulation
1157
+ allosterische umwandlung
1158
+ allosterischer effektor
1159
+ allosterisches enzym
1160
+ alloxysta victrix
1161
+ allumfassende theorie der wechselwirkungen
1162
+ allwissenheit gottes
1163
+ allylische substitution
1164
+ alm, florian
1165
+ almost completely decomposable group
1166
+ almost free modul
1167
+ alnetea glutinosae
1168
+ alnus glutinosa
1169
+ alnus incana
1170
+ alnus viridis
1171
+ aloha shirt
1172
+ alopecia areata
1173
+ alopecia atrophicans
1174
+ alopecia praematura
1175
+ alopecia simplex
1176
+ alopecurus myosuroides
1177
+ alopecurus pratensis
1178
+ alopex lagopus
1179
+ alosa alosa
1180
+ aloë barbadensis
1181
+ aloë perfoliata
1182
+ aloë vera
1183
+ aloë vulgaris
1184
+ alpha axp
1185
+ alpha cir
1186
+ alpha circini
1187
+ alpha jet
1188
+ alpha movement
1189
+ alpha reaction
1190
+ alpha-adrenerger rezeptor
1191
+ alpha-beta-ungesättigte verbindungen
1192
+ alpha-substituierte verbindungen
1193
+ alphabet phonétique international
1194
+ alphabet stock
1195
+ alphabetische anordnung
1196
+ alphabetische katalogisierung
1197
+ alphabetische ordnung
1198
+ alphainduzierte kernreaktion
1199
+ alphamerischer text
1200
+ alphanumerischer text
1201
+ alphatronic pc
1202
+ alpidische faltungsära
1203
+ alpidische gebirgsbildung
1204
+ alpidische orogenese
1205
+ alpine tiere
1206
+ alpiner ski
1207
+ alpiner skilauf
1208
+ alpines klettern
1209
+ alpinia officinarum
1210
+ alpinistischer stützpunkt
1211
+ alpinistischer verein
1212
+ alsine friesiana
1213
+ alt-evangelische taufgesinnte
1214
+ alta capella
1215
+ altaische philologie
1216
+ altaische sprachen
1217
+ altare portatile
1218
+ altchristliche kunst
1219
+ altdeutsche genesis 1-231
1220
+ altdeutsche genesis
1221
+ altdeutsche kunst
1222
+ alte ansicht
1223
+ alte beringmeer-kultur
1224
+ alte geschichte
1225
+ alte haustierrasse
1226
+ alte jungfer
1227
+ alte karte
1228
+ alte kirche
1229
+ alte musik
1230
+ alte nutztierrasse
1231
+ alte pflanzensorte
1232
+ alte prosa
1233
+ alte rasse
1234
+ alte sorte
1235
+ alte sprachen
1236
+ alte stadtansicht
1237
+ altengerechtes bauen
1238
+ alter druck
1239
+ alter ego
1240
+ alter herr
1241
+ alter mensch
1242
+ alter stil
1243
+ alter zürichkrieg
1244
+ altern in der migration
1245
+ alternaria citri rough lemon toxin
1246
+ alternate history
1247
+ alternating direction implicit method
1248
+ alternativ erzeugtes lebensmittel
1249
+ alternative anknüpfung
1250
+ alternative architektur
1251
+ alternative bewegung
1252
+ alternative bewegungskultur
1253
+ alternative bildung
1254
+ alternative chemie
1255
+ alternative energiequelle
1256
+ alternative ernährung
1257
+ alternative erziehung
1258
+ alternative geburtshilfe
1259
+ alternative geschichte
1260
+ alternative history
1261
+ alternative kosten
1262
+ alternative kultur
1263
+ alternative landwirtschaft
1264
+ alternative literatur
1265
+ alternative medizin
1266
+ alternative presse
1267
+ alternative psychiatrie
1268
+ alternative schule
1269
+ alternative sportkultur
1270
+ alternative verurteilung
1271
+ alternative wirtschaft
1272
+ alternative Ökonomie
1273
+ alternativer büchnerpreis
1274
+ alternativer kraftstoff
1275
+ alternativer landbau
1276
+ alternativer nobelpreis
1277
+ alternativer sport
1278
+ alternativer urlaub
1279
+ alternativer vorsatz
1280
+ alternativer waldbau
1281
+ alternatives bauen
1282
+ alternatives leben
1283
+ alternatives projekt
1284
+ alternatives theater
1285
+ alternde frau
1286
+ alternder mann
1287
+ alternder mensch
1288
+ alternierende differentialform
1289
+ alternierende weiterbildung
1290
+ alterning current voltammetry
1291
+ alteromonas luteoviolacea
1292
+ alteromonas luteoviolaceus
1293
+ alteromonas putrefaciens
1294
+ alters- und hinterlassenenversicherung
1295
+ altersabhängige makuladegeneration
1296
+ altersgemischte gruppe
1297
+ altersgerechtes bauen
1298
+ altershilfe für landwirte
1299
+ altershomogene gruppe
1300
+ altersspezifische arbeitszeitverkürzung
1301
+ altersvorsorge 1.0
1302
+ altes buch
1303
+ altes stadthaus
1304
+ altes testament
1305
+ altes wertpapier
1306
+ altgallikanische liturgie
1307
+ altgallische liturgie
1308
+ althaea officinalis
1309
+ althea rosea
1310
+ altheimer gruppe
1311
+ altindustrielle region
1312
+ altindustrielles gebiet
1313
+ altkanaanäisch-sumerische bilingue
1314
+ altkatholische kirche
1315
+ altkretische schrift
1316
+ altman, robert
1317
+ altnordische philologie
1318
+ altonaer blutsonntag
1319
+ altorientalische kirche
1320
+ altprotestantische orthodoxie
1321
+ altprotestantische schulphilosophie
1322
+ altrömischer gesang
1323
+ altslawischer kirchengesang
1324
+ altspanische liturgie
1325
+ altsprachlicher unterricht
1326
+ altsprachliches gymnasium
1327
+ altweltliche schweine
1328
+ aluminiumlegierter stahl
1329
+ alveolaris inferior
1330
+ alveolus dentis
1331
+ alveolus pulmonis
1332
+ alveoläre echinococcose
1333
+ alveoläre echinokokkose
1334
+ alysia manducator
1335
+ alytes obstetricans
1336
+ alzheimersche krankheit
1337
+ amanita caesarea
1338
+ amanita citrina
1339
+ amanita muscaria
1340
+ amanita pantherina
1341
+ amanita phalloides
1342
+ amanita rubescens
1343
+ amaranthus caudatus caudatus
1344
+ amaranthus chlorostachys
1345
+ amaranthus cruentus paniculatus
1346
+ amaranthus cruentus
1347
+ amaranthus hybridus paniculatus
1348
+ amaranthus hybridus
1349
+ amaranthus hypochondriacus
1350
+ amaranthus paniculatus
1351
+ amaranthus retroflexus
1352
+ amaranthus tricolor
1353
+ amaurosis fugax
1354
+ amaurosis pastialis fugax
1355
+ amaurotische idiotie
1356
+ amazon molly
1357
+ amazona aestiva
1358
+ amazona autumnalis
1359
+ ambidente verbindungen
1360
+ ambifunktionelle verbindungen
1361
+ ambiphile creme
1362
+ ambliol a
1363
+ amblyornis macgregoriae
1364
+ amblypelta lutescens lutescens
1365
+ amblypelta lutescens
1366
+ amblyrhynchus cristatus
1367
+ amblystoma maculatum
1368
+ amblystoma mexicanum
1369
+ ambrosianische liturgie
1370
+ ambrosianischer choral
1371
+ ambrosianischer gesang
1372
+ ambulante altenhilfe
1373
+ ambulante behandlung
1374
+ ambulante behindertenhilfe
1375
+ ambulante chirurgie
1376
+ ambulante erziehungshilfe
1377
+ ambulante herzgruppe
1378
+ ambulante hilfe zur erziehung
1379
+ ambulante koronargruppe
1380
+ ambulante krankenpflege
1381
+ ambulante krankenversorgung
1382
+ ambulante maßnahme
1383
+ ambulante pflege
1384
+ ambulante psychiatrie
1385
+ ambulante psychiatrische versorgung
1386
+ ambulante sanktion
1387
+ ambulante sozialpsychiatrie
1388
+ ambulante therapie
1389
+ ambulante ärztliche versorgung
1390
+ ambulanter gewerbebetrieb
1391
+ ambulanter handel
1392
+ ambulanter hilfs- und pflegedienst
1393
+ ambulanter sozialdienst
1394
+ ambulanter sozialer dienst
1395
+ ambulanter sozialer hilfsdienst
1396
+ ambulantes gewerbe
1397
+ ambulantes operieren
1398
+ ambystoma maculatum
1399
+ ambystoma mexicanum
1400
+ ambystoma tigrinum
1401
+ amd x86-64
1402
+ amenable gruppe
1403
+ amenable lokal kompakte gruppe
1404
+ amenable lokal-kompakte gruppe
1405
+ amenable lokalkompakte gruppe
1406
+ america online
1407
+ american bulldog
1408
+ american cocker spaniel
1409
+ american cockerspaniel
1410
+ american dream
1411
+ american football
1412
+ american footballclub
1413
+ american footballverein
1414
+ american invasion
1415
+ american joint vetch
1416
+ american muslims mission
1417
+ american pitch pine
1418
+ american pool
1419
+ american renaissance
1420
+ american sign language
1421
+ american soccer league
1422
+ american standard code for information interchange
1423
+ american studies
1424
+ amerikanisch-japanischer krieg
1425
+ amerikanische bulldogge
1426
+ amerikanische bürokrankheit
1427
+ amerikanische forelle
1428
+ amerikanische frau
1429
+ amerikanische großschabe
1430
+ amerikanische kermesbeere
1431
+ amerikanische krähe
1432
+ amerikanische lebensbaumminiermotte
1433
+ amerikanische nuss
1434
+ amerikanische platane
1435
+ amerikanische roteiche
1436
+ amerikanische schabe
1437
+ amerikanische trypanosomiase
1438
+ amerikanische wasserpest
1439
+ amerikanischer brachvogel
1440
+ amerikanischer bürgerkrieg
1441
+ amerikanischer einwanderer
1442
+ amerikanischer flussaal
1443
+ amerikanischer flusskrebs
1444
+ amerikanischer ginseng
1445
+ amerikanischer graureiher
1446
+ amerikanischer hummer
1447
+ amerikanischer junge
1448
+ amerikanischer kriegsgefangener
1449
+ amerikanischer lorbeer
1450
+ amerikanischer nerz
1451
+ amerikanischer soldat
1452
+ amerikanischer traber
1453
+ amerikanischer traum
1454
+ amerikanischer uhu
1455
+ amerikanisches englisch
1456
+ amerikanisches kind
1457
+ amerikanisches mädchen
1458
+ amerikanisches rotholz
1459
+ amesa spenta
1460
+ amesa spentas
1461
+ amescha spenta
1462
+ amescha spentas
1463
+ amfebutamon hydrochlorid
1464
+ ami et amile
1465
+ ami pro 3.0 für os/2
1466
+ ami pro 3.0
1467
+ amicus und amelius
1468
+ aminerge nervenzelle
1469
+ aminerges neuron
1470
+ aminoacylase i
1471
+ aminopeptidase a
1472
+ aminopeptidase n
1473
+ aminopeptidase p
1474
+ amiotic infection syndrome
1475
+ amis et amiles
1476
+ amitotische zellteilung
1477
+ amlyn ac amig
1478
+ ammodorcas clarkei
1479
+ ammodytes tobianus
1480
+ ammoniakoxidierende bakterien
1481
+ ammonium sulfoichthyolicum
1482
+ ammophila arenaria
1483
+ ammotragus lervia
1484
+ amoeba buccalis
1485
+ amoeba proteus
1486
+ amoebic dysentery
1487
+ among the flowers
1488
+ amorphe legierung
1489
+ amorphe phase
1490
+ amorphe polymere
1491
+ amorphe zwischenzellschicht
1492
+ amorpher festkörper
1493
+ amorpher halbleiter
1494
+ amorpher metallfilm
1495
+ amorpher schwefel
1496
+ amorpher stoff
1497
+ amorpher zustand
1498
+ amorphes metall
1499
+ amorphes silicium
1500
+ amorphoidea lata
1501
+ amortisseur cage
1502
+ amortisseur winding
1503
+ amotio retinae
1504
+ amour courtois
1505
+ amphacanthus concatenatus
1506
+ amphacanthus firmamentum
1507
+ amphacanthus labyrinthoides
1508
+ amphacanthus lineatus
1509
+ amphibischer lebensraum
1510
+ amphibischer raum
1511
+ amphibolorus barbatus
1512
+ amphibolurus barbatus
1513
+ amphidiploider bastard
1514
+ amphioxus lanceolatus
1515
+ amphipatische helix
1516
+ amphiphile creme
1517
+ amphiphile helix
1518
+ amphiphile verbindungen
1519
+ amphiphiler stoff
1520
+ amphiphiles system
1521
+ amphiphiles verhalten
1522
+ amphiprion frenatus
1523
+ amphiprora kufferathii
1524
+ ampholytisches tensid
1525
+ amphotere elektrolyte
1526
+ amphoteres tensid
1527
+ amphotericin b
1528
+ ampullarius gigas
1529
+ ampullarius scalaris
1530
+ amstrad comsumer electronics plc
1531
+ amt christi
1532
+ amtlich anerkannte prüfstelle
1533
+ amtliche bekanntmachung
1534
+ amtliche druckschrift
1535
+ amtliche geodäsie
1536
+ amtliche karte
1537
+ amtliche werbemarke
1538
+ amtlicher sportbootführerschein
1539
+ amtliches führungszeugnis
1540
+ amtliches kennzeichen
1541
+ amtliches schreiben
1542
+ amtliches topographisch-kartographisches informationssystem
1543
+ amtssässige stadt
1544
+ amtstierärztlicher dienst
1545
+ amtswegige wahrnehmung
1546
+ amygdalus communis
1547
+ amygdalus persica
1548
+ amylopectin branching enzyme
1549
+ amyoplasia congenita
1550
+ amyotrophe lateralsklerose
1551
+ amyotrophe seitenstrangsklerose
1552
+ amyotrophische lateralsklerose
1553
+ amyotrophische seitenstrangsklerose
1554
+ amys et amelle
1555
+ an- und durchschneidungsschaden
1556
+ anabelian geometry
1557
+ anabelsche geometrie
1558
+ anabole steroide
1559
+ anacamptis pyramidalis
1560
+ anacardium occidentale
1561
+ anadara granosa
1562
+ anaemia oligosideraemica
1563
+ anaerobe fermentation
1564
+ anaerobe schwelle
1565
+ anagalaktische radioquelle
1566
+ anagalaktische röntgenquelle
1567
+ anagalaktisches magnetfeld
1568
+ anagalaktisches objekt
1569
+ anagasta kuehniella
1570
+ anale phase
1571
+ analeptisches mittel
1572
+ analoge integrierte schaltung
1573
+ analoge schaltung
1574
+ analoge simulation
1575
+ analoges signal
1576
+ analogia entis
1577
+ analogie des seins
1578
+ analogien der erfahrung
1579
+ analogische karte
1580
+ analsadistische phase
1581
+ analyse latenter strukturen
1582
+ analyse- und abwicklungshilfen für die entwicklung digitaler systeme
1583
+ analyses services
1584
+ analysis auf zeitskalen
1585
+ analysis situs
1586
+ analytic hierarchy process
1587
+ analytic space
1588
+ analytic war plan
1589
+ analytische anorganische chemie
1590
+ analytische chemie
1591
+ analytische erziehungswissenschaft
1592
+ analytische ethik
1593
+ analytische gruppentherapie
1594
+ analytische konjugation
1595
+ analytische mechanik
1596
+ analytische menge
1597
+ analytische metrik
1598
+ analytische moralphilosophie
1599
+ analytische organische chemie
1600
+ analytische philosophie
1601
+ analytische prüfungshandlung
1602
+ analytische psychologie
1603
+ analytische psychotherapie
1604
+ analytische pädagogik
1605
+ analytische religionsphilosophie
1606
+ analytische sprachphilosophie
1607
+ analytische statistik
1608
+ analytische therapie
1609
+ analytischer bau
1610
+ analytischer komparativ
1611
+ analytischer raum
1612
+ analytischer sprachbau
1613
+ analytisches drama
1614
+ analytisches futur
1615
+ analytisches imperfekt
1616
+ analytisches perfekt
1617
+ analytisches tempus
1618
+ analyzing power
1619
+ ananas comosus
1620
+ ananas lucidus
1621
+ anarchistische erziehung
1622
+ anarchistische pädagogik
1623
+ anas discors
1624
+ anas penelope
1625
+ anas platyrhynchos domestica
1626
+ anas platyrhynchos
1627
+ anas strepera
1628
+ anascospore hefen
1629
+ anationaler schiedsspruch
1630
+ anationaler vertrag
1631
+ anatomische pathologie
1632
+ anatomischer hörsaal
1633
+ anatomisches leberläppchen
1634
+ anatomisches schnittbild
1635
+ anbautechnischer versuch
1636
+ anchor hocking corporation
1637
+ ancien régime
1638
+ ancylostoma caninum
1639
+ ancylostoma canium
1640
+ ancylus fluviatilis
1641
+ andachtsbild mit zwölf szenen aus dem leben christi
1642
+ anderer zustand
1643
+ andersen, hans christian
1644
+ andhra pradesh
1645
+ andine hochkulturen
1646
+ andreas-gryphius-preis der künstlergilde e.v.
1647
+ andrews-curtis conjecture
1648
+ androctonus australis
1649
+ androctonus quinquestriatus aculeatus
1650
+ androctonus quinquestriatus brachycentrus
1651
+ androctonus troilus
1652
+ andrologische chirurgie
1653
+ andronicus commenus
1654
+ andronicus comnenus
1655
+ andronovskaja kul'tura
1656
+ andropogon binatus
1657
+ andropogon involutus
1658
+ andropogon ischaemum
1659
+ andropogon notopogon
1660
+ andropogon obvallatus
1661
+ andropogon sorghum sudanese
1662
+ androsace carnea
1663
+ androsace lactea
1664
+ androsace obtusifolia
1665
+ andré-gide-preis für deutsch-französische literaturübersetzungen
1666
+ anelastische deformation
1667
+ anellierte verbindungen
1668
+ anelliertes ringsystem
1669
+ anemone ranunculoides
1670
+ anemonia sulcata
1671
+ anerkannte regeln der baukunst
1672
+ anerkannte regeln der technik
1673
+ anesthesia iuduction phase
1674
+ anethum graveolens
1675
+ aneurinibacillus thermoaerophilus
1676
+ aneurysma cirsoideum
1677
+ aneurysma cordis
1678
+ aneurysma dissecans aortae
1679
+ anfallsartiger krankheitsverlauf
1680
+ anfallsweises hinken
1681
+ anfängliche unmöglichkeit der leistung
1682
+ anfängliche unmöglichkeit
1683
+ angebaute pilze
1684
+ angeborene fehlbildung
1685
+ angeborene gelenkstarre
1686
+ angeborene hüftdysplasie
1687
+ angeborene ideen
1688
+ angeborene krankheit
1689
+ angeborene missbildung
1690
+ angeborene patellaluxation
1691
+ angeborene wahrheiten
1692
+ angeborener defekt
1693
+ angeborener herzfehler
1694
+ angeborener hyperinsulinismus
1695
+ angeborenes neurofibroblastom
1696
+ angebotsorientierte wirtschaftspolitik
1697
+ angekleidete wechselwirkung
1698
+ angelica archangelica litoralis
1699
+ angelica archangelica
1700
+ angelsächsische schrift
1701
+ angelsächsisches recht
1702
+ angelus interpres
1703
+ angemessener barbetrag
1704
+ angeordnete gruppe
1705
+ angepasste technik
1706
+ angeregter atomzustand
1707
+ angeregter kernzustand
1708
+ angeregter zustand
1709
+ angeregtes atom
1710
+ angewandte bibliographie
1711
+ angewandte botanik
1712
+ angewandte chemie
1713
+ angewandte ethik
1714
+ angewandte forschung
1715
+ angewandte kinesiologie
1716
+ angewandte kunst
1717
+ angewandte literaturwissenschaft
1718
+ angewandte mechanik
1719
+ angewandte optik
1720
+ angewandte pflanzenkunde
1721
+ angewandte physik
1722
+ angewandte phytologie
1723
+ angewandte psychologie
1724
+ angewandte statistik
1725
+ angewandte wissenschaft
1726
+ angewandte wissenschaften
1727
+ angina pectoris
1728
+ angina tonsillaris
1729
+ angina with angiographically normal coronaries
1730
+ angioid streaks
1731
+ angioider netzhautstreifen
1732
+ angiokeratoma corporis diffusum
1733
+ angiologische krankheit
1734
+ angioma arteriale cirsoides
1735
+ angioma arteriale plexiforme
1736
+ angioma arteriale racemosum
1737
+ angioma pigmentosum et atrophicum
1738
+ angioma racemosum
1739
+ angiomatosis retinae cystica
1740
+ angiomatosis retinae
1741
+ angiomatosis retino-cerebellosa
1742
+ angiopathia diabetica
1743
+ angioreticuloma cerebelli
1744
+ angiotensin converting enzyme inhibitor
1745
+ angiotensin converting enzyme
1746
+ angiotensin-converting enzyme
1747
+ angiotensinase a
1748
+ anglican church
1749
+ anglikanische gemeinde
1750
+ anglikanische kirche
1751
+ anglikanische kirchengemeinde
1752
+ anglikanische kirchenmusik
1753
+ anglikanische theologie
1754
+ anglikanischer religionsunterricht
1755
+ anglikanisches kirchenlied
1756
+ anglo-afghanischer krieg
1757
+ angloamerikanisches recht
1758
+ angolanische frau
1759
+ angrenzender staat
1760
+ angry young men
1761
+ anguilla anguilla
1762
+ anguilla japonica
1763
+ anguilla rostrata
1764
+ anguis fragilis
1765
+ angular-motion transducer
1766
+ angulus iridocornealis
1767
+ angulus pontocerebellaris
1768
+ anhaltischer verdienstorden für wissenschaft und kunst
1769
+ anharmonic fourier series
1770
+ anharmonische fourier-reihe
1771
+ anharmonische schwingung
1772
+ anharmonischer oszillator
1773
+ animal farm
1774
+ animales nervensystem
1775
+ animistisches denken
1776
+ anionischer farbstoff
1777
+ anionisches tensid
1778
+ anionoide reaktion
1779
+ anisothermisches plasma
1780
+ anisotroper festkörper
1781
+ anisotroper stoff
1782
+ anisotropes gitter
1783
+ anisotropes system
1784
+ ankaufspreis der diözese graz-seckau für zeitgenössische bildende kunst
1785
+ ankaufspreis für zeitgenössische bildende kunst
1786
+ anker mit dem gewundenen delphin
1787
+ ankylosierende spondylitis
1788
+ anlage der öffentlichen hand
1789
+ annahme als kind
1790
+ annahme an kindesstatt
1791
+ annales bertiniani
1792
+ annales de saint-bertin
1793
+ annaud, jean-jacques
1794
+ annehmbare qualitätsgrenzlage
1795
+ annelliertes ringsystem
1796
+ annemarie- und will-grohmann-stipendium
1797
+ annexin ii
1798
+ annexin v
1799
+ annexin vii
1800
+ anneé géophysique internationale
1801
+ annona cherimola
1802
+ annona muricata
1803
+ annona squamosa
1804
+ annonin i
1805
+ annotated ada
1806
+ annulate lamellae
1807
+ annulierte lamellen
1808
+ annähernd zweijährige schwingung
1809
+ anodisch oxidiertes aluminium
1810
+ anodische oxidation
1811
+ anodisches polieren
1812
+ anodonta anatina
1813
+ anodonta cygnea
1814
+ anolis carolinensis
1815
+ anolis lineatopus
1816
+ anomale dispersion
1817
+ anomales maßstabgesetz
1818
+ anonyme alkoholiker
1819
+ anonyme bestattung
1820
+ anonyme christen
1821
+ anonymer autor
1822
+ anonymer christ
1823
+ anonymes begräbnis
1824
+ anonymes christentum
1825
+ anonymes werk
1826
+ anoptichthys jordani
1827
+ anorectale krankheit
1828
+ anorektale fehlbildung
1829
+ anorektale fistel
1830
+ anorektale krankheit
1831
+ anorektale missbildung
1832
+ anorektale plastik
1833
+ anorexia mentalis
1834
+ anorexia nervosa
1835
+ anorganisch-organische hybridpolymere
1836
+ anorganische analyse
1837
+ anorganische beschichtung
1838
+ anorganische biochemie
1839
+ anorganische chemie
1840
+ anorganische salze
1841
+ anorganische synthese
1842
+ anorganische säuren
1843
+ anorganische verbindung
1844
+ anorganische verbindungen
1845
+ anorganischer Überzug
1846
+ anorganisches glas
1847
+ anoxygen phototrophe bakterien
1848
+ anregendes mittel
1849
+ ansatrienin a
1850
+ ansatrienol a
1851
+ anschaffungsnahe aufwendung
1852
+ anschaffungsnaher aufwand
1853
+ anschaulicher unterricht
1854
+ anschauung gottes
1855
+ anschlagfreier drucker
1856
+ anschluss- und benutzungszwang
1857
+ anser albifrons
1858
+ anser anser domestica
1859
+ anser anser
1860
+ anser brachyrhynchus
1861
+ anser caerulescens
1862
+ anser fabalis
1863
+ anser indicus
1864
+ anser rosii
1865
+ ansi z39.50-1992
1866
+ ansoff, harry i.
1867
+ anspornender atemmesser
1868
+ anstalt des privatrechts
1869
+ anstalt des öffentlichen rechts
1870
+ ansteckende blutarmut
1871
+ ansteckende krankheit
1872
+ ansteckende tracheobronchitis der hühnerküken
1873
+ ansteckender scheidenkatarrh
1874
+ anstiftung der anstiftung
1875
+ ant colony optimization
1876
+ antarctic myon and neutrino detector array
1877
+ antarktokarbonische flora
1878
+ anteillose gmbh
1879
+ antelea azadirachta
1880
+ anthemis nobilis
1881
+ anthera assana
1882
+ anthocephalus cadamba
1883
+ anthocephalus chinensis
1884
+ anthomyia floralis
1885
+ anthonomus grandis
1886
+ anthrenus verbasci
1887
+ anthriscus silvestris
1888
+ anthriscus sylvestris
1889
+ anthropogene klimaänderung
1890
+ anthropogene wetterbeeinflussung
1891
+ anthropogener einfluss
1892
+ anthropogonischer mythos
1893
+ anthropoide darstellung
1894
+ anthropologische linguistik
1895
+ anthropologische psychologie
1896
+ anthropologische pädagogik
1897
+ anthurium scherzerianum
1898
+ anthus campestris
1899
+ anthus pratensis
1900
+ anthus spinoletta littoralis
1901
+ anthus spinoletta petrosus
1902
+ anthus spinoletta
1903
+ anthus trivialis
1904
+ anthyllis montana
1905
+ anthyllis vulneraria
1906
+ anti ballistic missile
1907
+ anti matter spectrometer
1908
+ anti-bleeding factor
1909
+ anti-cult movement
1910
+ anti-idiotypischer antikörper
1911
+ anti-stokessche linie
1912
+ anti-vant hoff-lebel-verbindungen
1913
+ anti-virenkit 5 le
1914
+ antiaris toxicaria
1915
+ antiarrhythmikum klasse i
1916
+ antiarrhythmikum klasse iii
1917
+ antiautoritäre bewegung
1918
+ antibiotikum 255e
1919
+ anticellulärer antikörper
1920
+ antidiphtheric serum
1921
+ antidiuretisches hormon
1922
+ antifaktor xa
1923
+ antifebriles mittel
1924
+ antiferromagnetic layer
1925
+ antiferromagnetische schicht
1926
+ antifibrinolytischer faktor viii
1927
+ antifriction bearing races
1928
+ antifriction bearing steel
1929
+ antifriction bearings
1930
+ antifungale verbindungen
1931
+ antigen cd41
1932
+ antigen h y
1933
+ antigen h-y
1934
+ antigen lfa-3
1935
+ antigen o
1936
+ antigen processing
1937
+ antigen theta
1938
+ antigen thy-1
1939
+ antigene determinante
1940
+ antigenhaltiges arzneimittel
1941
+ antigonish movement
1942
+ antihomotoxische medizin
1943
+ antihämophiles globulin a
1944
+ antiinflammatorisch wirkendes mittel
1945
+ antijapanische nationale einheitsfront
1946
+ antiker fünfkampf
1947
+ antiker zyklus
1948
+ antikörperhaltiges arzneimittel
1949
+ antillianischer jugendlicher
1950
+ antillianisches kind
1951
+ antillische frau
1952
+ antillischer jugendlicher
1953
+ antillisches kind
1954
+ antilocapra americana
1955
+ antilymphocyte serum
1956
+ antimikrobielle eigenschaft
1957
+ antimikrobieller wirkstoff
1958
+ antinukleoneninduzierte kernreaktion
1959
+ antinukleärer antikörper
1960
+ antinukleärer faktor
1961
+ antinutritional factor
1962
+ antinutritiver faktor
1963
+ antiochenische schule
1964
+ antiochenische theologie
1965
+ antiprotoneninduzierte kernreaktion
1966
+ antiprotoninduzierte kernreaktion
1967
+ antiprotonischer wasserstoff
1968
+ antiquarische school
1969
+ antique zierrathe
1970
+ antirrhinum majus
1971
+ antisoziale persönlichkeitsstörung
1972
+ antithamnion spirographidis
1973
+ antithamnionella spirographidis
1974
+ antithrombin ii
1975
+ antithrombin iii
1976
+ antiviraler wirkstoff
1977
+ antivirales agens
1978
+ antivirenkit 5
1979
+ antivirus 2.0
1980
+ antizellulärer antikörper
1981
+ antizipierte erbfolge
1982
+ antizyklische finanzpolitik
1983
+ antizyklische fiskalpolitik
1984
+ antoinette perry award
1985
+ anton faistauer-preis
1986
+ anton piller order
1987
+ anton-faistauer-preis für malerei des landes salzburg
1988
+ antriebstechnische industrie
1989
+ antrozous pallidus
1990
+ anuraphis roseus
1991
+ anus praeter
1992
+ anus praeternaturalis
1993
+ anwenderorientierte schaltung
1994
+ anwenderspezifische integrierte schaltung
1995
+ anwendungsspezifische integrierte schaltung
1996
+ anxietas tibiarum
1997
+ anzeigepflichtige entlassung
1998
+ anästhesiebedingte komplikation
1999
+ ao po tu
2000
+ aobo tu
2001
+ aoristus mixtus
2002
+ aorta abdominalis
2003
+ aorta thoracica
2004
+ aortointestinale fistel
2005
+ aortokoronarer bypass
2006
+ aortokoronarer shunt
2007
+ aortokoronarer venen-bypass
2008
+ aotes trivirgatus
2009
+ apache jakarta tomcat 3.x
2010
+ apache jakarta tomcat 4.x
2011
+ apache tomcat 3.x
2012
+ apache tomcat 4.x
2013
+ apallisches syndrom
2014
+ apanteles flavipes
2015
+ apanteles glomeratus
2016
+ apanteles rubecula
2017
+ apatheia gottes
2018
+ apathie gottes
2019
+ apatura iris
2020
+ apc resistance
2021
+ apenninische kultur
2022
+ apera spica-venti
2023
+ aphanius apodus
2024
+ aphanius iberus
2025
+ aphanizomenon flos-aquae
2026
+ aphelandra squarrosa
2027
+ aphelocoma coerulescens
2028
+ aphidula nasturtii
2029
+ aphis brassicae
2030
+ aphis cucumeris
2031
+ aphis fabae
2032
+ aphis floris-rapae
2033
+ aphis gossypii
2034
+ aphis maidis
2035
+ aphis nasturtii
2036
+ aphis pomi
2037
+ aphis rapae
2038
+ aphis raphani
2039
+ aphis zeae
2040
+ aphrastasia funitecta
2041
+ aphrodite in den gärten
2042
+ aphrodite louvre-neapel
2043
+ apiognomonia errabunda
2044
+ apiognomonia veneta
2045
+ apis cerana
2046
+ apis mellifera carnica
2047
+ apis mellifera fasciata
2048
+ apis mellifera lamarckii
2049
+ apis mellifera mellifica
2050
+ apis mellifera sicula
2051
+ apis mellifera
2052
+ apis mellifica fasciata
2053
+ apis mellifica lamarckii
2054
+ apis mellifica ligustica
2055
+ apis mellifica mellifica
2056
+ apis mellifica
2057
+ apium graveolens rapaceum
2058
+ apium graveolens
2059
+ apl 360
2060
+ aplanobacter anthracis
2061
+ aplasia moniliformis
2062
+ aplasia pilorum intermittens
2063
+ aplastic anemia in chickens
2064
+ aplastische anämie
2065
+ aplocheilus lineatus
2066
+ aplodontia rufa
2067
+ apo (a)
2068
+ apo koinu
2069
+ apocalypse now
2070
+ apodemus flavicollis
2071
+ apodemus sylvaticus
2072
+ apokalyptische literatur
2073
+ apokalyptische reiter
2074
+ apokrine akne
2075
+ apolare flüssigkeit
2076
+ apolare verbindungen
2077
+ apolipoprotein a
2078
+ apolipoprotein j
2079
+ apoll vom belvedere
2080
+ apollo society
2081
+ apollonius rex tyri
2082
+ apologisches sprichwort
2083
+ aponeurosis epicranialis
2084
+ aponeurosis temporalis
2085
+ apophatische theologie
2086
+ apoplektischer insult
2087
+ apoplexia cerebri
2088
+ apoplexia spinalis
2089
+ aporia crataegi
2090
+ aporrectodea nocturna
2091
+ aporrhais pespelecani
2092
+ aposematische tracht
2093
+ aposeris foetida
2094
+ aposteriorische wahrscheinlichkeit
2095
+ apostolic church
2096
+ apostolic faith church
2097
+ apostolische datarie
2098
+ apostolische kammer
2099
+ apostolische kirche
2100
+ apostolische kirche, urchristliche mission
2101
+ apostolische kleriker vom heiligen hieronymus
2102
+ apostolische sukzession
2103
+ apostolische und katholische kirche des ostens
2104
+ apostolischer delegat
2105
+ apostolisches amt
2106
+ apothekenpflichtiges arzneimittel
2107
+ apotropäischer zauber
2108
+ appalachian dulcimer
2109
+ apparatus digestorius
2110
+ apparatus respiratorius
2111
+ appearance potential spectroscopy
2112
+ appellation an ein allgemeines konzil
2113
+ appendix vermiformis
2114
+ appius and virginia
2115
+ apple ermine moth
2116
+ apple ibook
2117
+ apple ilife
2118
+ apple imac
2119
+ apple imovie 2
2120
+ apple imovie
2121
+ apple iphoto 1.1.1
2122
+ apple macintosh
2123
+ apple newton
2124
+ apple ressource editor 2.1.1
2125
+ apple ressource editor 2.1.3
2126
+ apple ressource editor
2127
+ apple system 7
2128
+ apple system 7.5
2129
+ apple system 7.6
2130
+ apple system 8
2131
+ apple system 8.5
2132
+ apple system 9
2133
+ apple system
2134
+ apple webobjects 5
2135
+ apple-ring acacia
2136
+ application development life cycle
2137
+ application layer
2138
+ application program
2139
+ application programming-interface
2140
+ application service provider
2141
+ application service providing
2142
+ application services
2143
+ application specific integrated circuit
2144
+ applied ethics
2145
+ applied kinesiology
2146
+ applied sciences
2147
+ applikationsspezifische schaltung
2148
+ appositiver relativsatz
2149
+ appropriated imagery
2150
+ appropriated images
2151
+ appropriation art
2152
+ approximate reasoning
2153
+ approximation algorithm
2154
+ approximation by rational functions
2155
+ approximationssatz von runge
2156
+ approximatives schließen
2157
+ apriorische erkenntnis
2158
+ aptenodytes forsteri
2159
+ aptenodytes patagonica
2160
+ apteryx australis
2161
+ aptierter stempel
2162
+ apulische tarantel
2163
+ apulische vase
2164
+ apulische vasenmalerei
2165
+ apus apus
2166
+ apus melba
2167
+ aqua noodle
2168
+ aquatische chemie
2169
+ aquatische pilze
2170
+ aquatisches system
2171
+ aquatisches Ökosystem
2172
+ aquila audax
2173
+ aquila chrysaëtos
2174
+ aquila clanga
2175
+ aquila rapax
2176
+ aquila verreauxi
2177
+ aquilegia vulgaris
2178
+ ar 196
2179
+ ar 234
2180
+ ar 240
2181
+ arabidetalia coeruleae
2182
+ arabidopsis thaliana
2183
+ arabis alpina
2184
+ arabisch-israelische kriege
2185
+ arabisch-israelischer konflikt
2186
+ arabisch-israelischer krieg
2187
+ arabische einheit
2188
+ arabische musik
2189
+ arabische philosophie
2190
+ arabische schrift
2191
+ arabische staaten
2192
+ arabischer kaffee
2193
+ arabischer punkt
2194
+ arabischer sozialismus
2195
+ arabisches gummi
2196
+ arabisches vollblut
2197
+ arachis hypogaea
2198
+ arado ar 196
2199
+ arado ar 234
2200
+ arado ar 240
2201
+ aradus cinnamomeus
2202
+ arakelovsche schnitttheorie
2203
+ aramidfaserverstärkter aluminium-hybridverbundwerkstoff
2204
+ araneus diadematus
2205
+ araschnia levana
2206
+ aratus latinus
2207
+ araucaria angustifolia
2208
+ arbeiter- und bauern-fakultät
2209
+ arbeiter- und soldatenräte
2210
+ arbeiter-turn- und sportbewegung
2211
+ arbeiterbildende akademie
2212
+ arbeitsbedingte krankheit
2213
+ arbeitsfreies wochenende
2214
+ arbeitsloser jugendlicher
2215
+ arbeitsmarktwirkungen moderner technologien
2216
+ arbeitsplatzorientierte computerleistung
2217
+ arbeitsstipendien für bildende künstler der hansestadt hamburg
2218
+ arbeitsstipendium für bildende kunst
2219
+ arbor vitae
2220
+ arbovirus- gruppe b
2221
+ arbuskuläre endomykorrhiza
2222
+ arbutus unedo
2223
+ arc furnaces
2224
+ arceuthobium oxycedri
2225
+ archaeale atpasen
2226
+ archaic stage
2227
+ archaische kunst
2228
+ arche noah
2229
+ archidiskodon meridionalis
2230
+ archilochus colubris
2231
+ archimedischer körper
2232
+ archips rosana
2233
+ architectuatal synthesis
2234
+ architektenkammer baden-württemberg
2235
+ architektenkammer hessen
2236
+ architektenkammer rheinland-pfalz
2237
+ architektonische bionik
2238
+ architektonische terrakotta
2239
+ architektonischer garten
2240
+ architektur integrierter informationssysteme
2241
+ architekturforum nordostschweiz
2242
+ archäologische gesellschaft
2243
+ archäologische karte
2244
+ archäologische landesaufnahme
2245
+ archäologische stätte
2246
+ archäologischer lehrpfad
2247
+ archäologischer verein
2248
+ archäologischer wanderpfad
2249
+ archäologischer wanderweg
2250
+ archäologisches denkmal
2251
+ archäologisches museum
2252
+ arcobacter cryaerophilus
2253
+ arctia caja
2254
+ arctica islandica
2255
+ arctocephalus galapagoensis
2256
+ arctostaphylos uva-ursi
2257
+ arcus palmaris
2258
+ arcus vertebralis
2259
+ ardea cinerea
2260
+ ardea herodias
2261
+ ardenne, manfred ¬von¬
2262
+ area chorioidea
2263
+ area parahippocampalis
2264
+ aregeneratorische panmyelopathie
2265
+ aremonia agrimonoides
2266
+ arendt, hannah
2267
+ arenemycin e
2268
+ arenicola marina
2269
+ argania sideroxylon
2270
+ argania spinosa
2271
+ argas reflexus
2272
+ argentinische dogge
2273
+ argentinische schlangenhalsschildkröte
2274
+ argentinischer teju
2275
+ argininosuccinat lyase
2276
+ argiope bruennichi
2277
+ argon 36
2278
+ argon 37
2279
+ argon 39
2280
+ argon oxygen decarburization process
2281
+ argulus foliaceus
2282
+ argumentum a fortiori ad minus
2283
+ argumentum a maiore ad minus
2284
+ argumentum a maiori ad minus
2285
+ argyresthia thuiella
2286
+ argyroneta aquatica
2287
+ ariadne software-entwicklungssystem
2288
+ arides gebiet
2289
+ arides klima
2290
+ arion ater
2291
+ arion empiricorum
2292
+ arion rufus
2293
+ aristolochia clematitis
2294
+ arithmetic and logic unit
2295
+ arithmetic group
2296
+ arithmetic logic unit
2297
+ arithmetic processor
2298
+ arithmetic unic
2299
+ arithmetisch-logische einheit
2300
+ arithmetische algebraische geometrie
2301
+ arithmetische folge
2302
+ arithmetische geometrie
2303
+ arithmetische gruppe
2304
+ arithmetische halbgruppe
2305
+ arithmetische progression
2306
+ arithmetischer ausdruck
2307
+ arithmetischer coprozessor
2308
+ arithmetischer körper
2309
+ arithmetischer prozessor
2310
+ arithmetisches mittel
2311
+ arithmetric semigroup
2312
+ arkadische dichtung
2313
+ arkadische poesie
2314
+ arm und reich
2315
+ arma christi
2316
+ arma et litterae
2317
+ armada invencible
2318
+ armadillidium vulgare
2319
+ arme leute
2320
+ armee im lande
2321
+ armeniaca vulgaris
2322
+ armenische philologie
2323
+ armenische schrift
2324
+ armeria elongata
2325
+ armeria maritima
2326
+ armeria purpurea
2327
+ armoracia lapathifolia
2328
+ armoracia rusticana
2329
+ arms control
2330
+ army group
2331
+ armée de condé
2332
+ armée des princes
2333
+ arnica montana
2334
+ arnis de mano
2335
+ arnold-chiari deformity
2336
+ arnsberger kurzgeschichten- und kurzprosawettbewerb
2337
+ aromatische acetylene
2338
+ aromatische alkine
2339
+ aromatische alkohole
2340
+ aromatische amine
2341
+ aromatische aminosäuredecarboxylase
2342
+ aromatische heterocyclen
2343
+ aromatische kohlenwasserstoffe
2344
+ aromatische nitroverbindungen
2345
+ aromatische polycyclen
2346
+ aromatische sulfonsäuren
2347
+ aromatisches Öl
2348
+ aron ha-kodesch
2349
+ aronia melanocarpa
2350
+ arousal reaction
2351
+ arretinische gefässe
2352
+ arretinische keramik
2353
+ arrhenatherum elatius
2354
+ arrival process
2355
+ ars dictaminis
2356
+ ars dictandi
2357
+ ars magna
2358
+ ars memorativa
2359
+ ars memoriae
2360
+ ars memorie
2361
+ ars moriendi
2362
+ ars musica
2363
+ ars notariae
2364
+ ars obligatoria
2365
+ ars praedicandi
2366
+ ars topiaria
2367
+ arste dyge boek
2368
+ art concret
2369
+ art gallery theorem
2370
+ art neural networks
2371
+ art nouveau
2372
+ art rock
2373
+ art-directors-club für deutschland
2374
+ artemia salina
2375
+ artemisia abrotanum
2376
+ artemisia absinthium
2377
+ artemisia annua
2378
+ artemisia campestris
2379
+ artemisia dracunculus
2380
+ artemisia vulgaris
2381
+ arteria carotis communis
2382
+ arteria carotis
2383
+ arteria femoralis
2384
+ arteria hypogastrica
2385
+ arteria iliaca communis
2386
+ arteria iliaca interna
2387
+ arteria ilica communis
2388
+ arteria ilica interna
2389
+ arteria lingualis
2390
+ arteria ophthalmica
2391
+ arteria profunda femoris
2392
+ arteria pulmonalis
2393
+ arteria radialis
2394
+ arteria renalis
2395
+ arteria temporalis
2396
+ arteria umbilicalis
2397
+ arteria uterina
2398
+ arteria vertebralis
2399
+ arteriae bronchiales
2400
+ arterielle applikation
2401
+ arterielle durchblutungsstörung
2402
+ arterielle hypertonie
2403
+ arterielle injektion
2404
+ arterielle switch-operation
2405
+ arterielle thrombose
2406
+ arterielle verschlusskrankheit
2407
+ arterieller hochdruck
2408
+ arterielles blut
2409
+ arteriitis cranialis
2410
+ arteriitis temporalis
2411
+ arteriosklerotische demenz
2412
+ arteriovenöse malformation
2413
+ arteriovenöse sauerstoffdifferenz
2414
+ arteriovenöses angiom
2415
+ artes grammaticae
2416
+ artes liberales
2417
+ artes magicae
2418
+ artes mechanicae
2419
+ artgemässe tierhaltung
2420
+ artgerechte haltung
2421
+ arthritis deformans
2422
+ arthritis psoriatica
2423
+ arthritis rheumatica
2424
+ arthritis sacroiliaca
2425
+ arthritis urica
2426
+ arthro-muskuläres gleichgewicht
2427
+ arthrobacter nicotinivorans
2428
+ arthrobacter nicotinovorans
2429
+ arthrobacter oxidans
2430
+ arthrobacter oxydans
2431
+ arthrobacter protophormiae
2432
+ arthrobacter simplex
2433
+ arthrocnemum glaucum
2434
+ arthrogryposis multiplex congenita
2435
+ arthromyodysplasia congenita
2436
+ arthronosis deformans
2437
+ arthropathia deformans
2438
+ arthropathia psoriatica
2439
+ arthrosis deformans
2440
+ arthrospira platensis
2441
+ articulatio acromioclavicularis
2442
+ articulatio atlantoaxialis
2443
+ articulatio atlantooccipitalis
2444
+ articulatio choparti
2445
+ articulatio coxae
2446
+ articulatio cubiti
2447
+ articulatio humeri
2448
+ articulatio mediotarsea
2449
+ articulatio metacarpophalangea
2450
+ articulatio metatarsophalangea
2451
+ articulatio pedis
2452
+ articulatio radio-carpalis
2453
+ articulatio radio-ulnaris distalis
2454
+ articulatio radio-ulnaris proximalis
2455
+ articulatio radio-ulnaris
2456
+ articulatio radiocarpea
2457
+ articulatio sacro-iliaca
2458
+ articulatio sellaris pollicis
2459
+ articulatio sternoclavicularis
2460
+ articulatio talocruralis
2461
+ articulatio tarsi transversa
2462
+ articulatio tarsi
2463
+ articulatio temporomandibularis
2464
+ articulus sacroilicus
2465
+ artificial chemistry
2466
+ artificial intelligence
2467
+ artificial life
2468
+ artificial neural network
2469
+ artificial reality
2470
+ artificial world
2471
+ artifizielle replikation
2472
+ artifizielle veränderung
2473
+ artifizieller samen
2474
+ artikulation des unterrichts
2475
+ artikulatorische dyspraxie
2476
+ artikulatorische phonetik
2477
+ artinsche zopfgruppe
2478
+ artocarpus altilis
2479
+ artocarpus communis
2480
+ artocarpus heterophyllus
2481
+ artocarpus incisus
2482
+ artogeia bryoniae
2483
+ arts and crafts movement
2484
+ arubanische frau
2485
+ arum maculatum
2486
+ arundo donax
2487
+ arvalische brüder
2488
+ arvicola amphibius
2489
+ arvicola sapidus
2490
+ arvicola terrestris
2491
+ arya samaj
2492
+ arylsulfatase a
2493
+ arylsulfatase b
2494
+ arzneimittel/ gebrauchsinformation
2495
+ arzt für allgemeinmedizin
2496
+ arzt im praktikum
2497
+ as 2.2
2498
+ as 400
2499
+ as/400 advanced 36
2500
+ ascaris lumbricoides suum
2501
+ ascaris lumbricoides
2502
+ ascaris megalocephala
2503
+ ascaris suum
2504
+ aschari, abul-hasan ¬al-¬
2505
+ aschnersche konstitutionstherapie
2506
+ asclepias cornuti
2507
+ asclepias syriaca
2508
+ ascocalyx abietina
2509
+ ascochyta citrullina
2510
+ ascochyta cucumis
2511
+ ascochyta imperfecta
2512
+ ascochyta melonis
2513
+ ascochyta piniperda
2514
+ ascochyta pinodella
2515
+ ascochyta ruborum
2516
+ ascochytes pinodes
2517
+ ascophaera apis
2518
+ ascophyllum nodosum
2519
+ aseität gottes
2520
+ asellus aquaticus
2521
+ asellus cavaticus
2522
+ aseptische lockerung
2523
+ aseptische mondbeinnekrose
2524
+ aseptische prothesenlockerung
2525
+ asexuelle fortpflanzung
2526
+ ashcan school
2527
+ asian survey on agrarian reform and rural development
2528
+ asiatische birne
2529
+ asiatische frau
2530
+ asiatische keiljungfer
2531
+ asiatischer baumwollwurm
2532
+ asiatischer elefant
2533
+ asiatischer löwe
2534
+ asiatischer maiszünsler
2535
+ asiatischer wildhund
2536
+ asio flammeus
2537
+ asio otus
2538
+ ask price
2539
+ askizer kultur
2540
+ asm 286
2541
+ asm 386
2542
+ asm 51
2543
+ asp.net web forms
2544
+ aspalathus linearis
2545
+ asparaginase ii
2546
+ asparagus officinalis
2547
+ aspektorientierte programmierung
2548
+ aspergillus fumigatus
2549
+ aspergillus oryzae ribonuclease
2550
+ asperugo procumbens
2551
+ asphyxia neonatorum
2552
+ aspidiotus ficus
2553
+ aspidium filix-mas
2554
+ asplenium scolopendrium
2555
+ aspore hefen
2556
+ aspro streber
2557
+ asseret jeme teschuwa
2558
+ assessment center
2559
+ asset approach
2560
+ asset backed securities
2561
+ asset backed security
2562
+ asset liability management
2563
+ asset market approach
2564
+ asset-backed securities
2565
+ asset-backed security
2566
+ assimilatorische nitratreduktase
2567
+ assimilatorische nitratreduktion
2568
+ assistent für konstruktions- und fertigungstechnik
2569
+ association de solidarité franco-arabe
2570
+ association scheme
2571
+ assoziative aktivierung
2572
+ assoziativer prozessor
2573
+ assoziativer speicher
2574
+ assoziatives gedächtnis
2575
+ assoziatives gruppoid
2576
+ assoziatives netz
2577
+ assumption based truth maintenance system
2578
+ assumption-based tms
2579
+ assyntische gebirgsbildung
2580
+ assyntische orogenese
2581
+ assyrische kirche
2582
+ astacus astacus
2583
+ astacus fluviatilis
2584
+ astacus leptodactylus
2585
+ astat 211
2586
+ astatisches gewässer
2587
+ aster bellidiastrum
2588
+ aster tripolium
2589
+ asterias rubens
2590
+ asteroidal triple-free graphs
2591
+ asthenia pygmaeana
2592
+ asthma bronchiale
2593
+ astra diesel
2594
+ astragalus membranaceus
2595
+ astro star
2596
+ astro-world für windows 2.1
2597
+ astrologie für windows 2.1
2598
+ astrologische deutung
2599
+ astrologische medizin
2600
+ astrologisches haus
2601
+ astrologisches zeitalter
2602
+ astronomische geodäsie
2603
+ astronomische koordinaten
2604
+ astronomische länge
2605
+ astronomische monumentaluhr
2606
+ astronomische navigation
2607
+ astronomische photometrie
2608
+ astronomische tafel
2609
+ astronomische uhr
2610
+ astronomische zeitbestimmung
2611
+ astronomische zeitmessung
2612
+ astronomischer atlas
2613
+ astronomisches fenster
2614
+ astronomisches koordinatensystem
2615
+ astronomisches objekt
2616
+ astronomisches observatorium
2617
+ astrup prize
2618
+ astyanax fasciatus mexicanus
2619
+ astyanax fasciatus
2620
+ astyanax hubbsi
2621
+ astyanax mexicanus
2622
+ asu-auszeichnung für umweltbewusste unternehmensführung
2623
+ asymetrix compel
2624
+ asymmetric defect
2625
+ asymmetric digital subscriber line
2626
+ asymmetric distribution
2627
+ asymmetrische analyse
2628
+ asymmetrische induktion
2629
+ asymmetrische information
2630
+ asymmetrische informationsverteilung
2631
+ asymmetrische katalyse
2632
+ asymmetrische last
2633
+ asymmetrische reaktion
2634
+ asymmetrische synthese
2635
+ asymmetrische verteilung
2636
+ asymmetrisches kryptosystem
2637
+ asymmetrisches verschlüsselungssystem
2638
+ asymptotic equidistribution
2639
+ asymptotic giant branch
2640
+ asymptotic giant
2641
+ asymptotic uniform distribution
2642
+ asymptotically uniform distribution
2643
+ asymptotische effizienz
2644
+ asymptotische entwicklung
2645
+ asymptotische expansion
2646
+ asymptotische gleichmäßige verteilung
2647
+ asymptotische gleichverteilung
2648
+ asymptotische theorie
2649
+ asymptotische wirksamkeit
2650
+ asymptotischer riesenast
2651
+ asymptotischer roter riese
2652
+ asymptotisches lösungsverhalten
2653
+ asymptotisches martingal
2654
+ asymptotisches verhalten von lösungen
2655
+ asymptotisches verhalten
2656
+ asynchrone breitbandübertragung
2657
+ asynchroner transfer-modus
2658
+ asynchronous machines
2659
+ asynchronous transfer mode
2660
+ asyntische faltungsphase
2661
+ asyntische phase
2662
+ aszetische und mystische theologie
2663
+ at iii
2664
+ at-free graphs
2665
+ at-freier graph
2666
+ atari (us) corporation
2667
+ atari mega st
2668
+ ataxia teleangiectatica
2669
+ ateles paniscus
2670
+ atelier d'écriture
2671
+ atelier zo
2672
+ atemzentrierte verhaltenstherapie
2673
+ athene noctua
2674
+ athetosis duplex
2675
+ atiyah-singersches indextheorem
2676
+ atl 3.0
2677
+ atlantischer heilbutt
2678
+ atlantischer hering
2679
+ atlantischer lachs
2680
+ atlantischer ozean
2681
+ atlantischer schwertschwanz
2682
+ atlantischer seeteufel
2683
+ atlantisches blumenhoroskop
2684
+ atlas minor
2685
+ atlas portatif
2686
+ atmel avr-risc-mikrocontroller
2687
+ atmel mikrocontroller-familie
2688
+ atmospheric pressure cvd
2689
+ atmosphärisch-optische erscheinung
2690
+ atmosphärische elektrizität
2691
+ atmosphärische grenzschicht
2692
+ atmosphärische optik
2693
+ atmosphärische störung
2694
+ atmosphärische turbulenz
2695
+ atmosphärische zirkulation
2696
+ atmosphärischer druck
2697
+ atmosphärischer eintritt
2698
+ atmosphärisches aerosol
2699
+ atmosphärisches fenster
2700
+ atmungsketten-komplex i
2701
+ atom location by channeling enhanced microanalysis
2702
+ atom probe
2703
+ atomare abrüstung
2704
+ atomare abschreckung
2705
+ atomare absorptionsanalyse
2706
+ atomare bedrohung
2707
+ atomare bewaffnung
2708
+ atomare bewegung
2709
+ atomare entsorgung
2710
+ atomare fehlstelle
2711
+ atomare kriegführung
2712
+ atomare kriegsführung
2713
+ atomare rüstung
2714
+ atomare schwelle
2715
+ atomare struktur
2716
+ atomare stufe
2717
+ atomare wirtschaft
2718
+ atomarer erstschlag
2719
+ atomarer photoeffekt
2720
+ atomarer stickstoff
2721
+ atomarer stoß
2722
+ atomaria linearis
2723
+ atomic force microscopy
2724
+ atomic layer epitaxy
2725
+ atomwaffenfreie zone
2726
+ atonia uteri
2727
+ atopische dermatitis
2728
+ atopisches ekzem
2729
+ atopisches palmoplantarekzem
2730
+ atp-abhängiger proteolysefaktor 1
2731
+ atresia auris
2732
+ atrial fibrillation
2733
+ atrial flutter
2734
+ atrialer natriuretischer faktor
2735
+ atrialer septumdefekt
2736
+ atriales natriuretisches hormon
2737
+ atriales natriuretisches peptid
2738
+ atrionatriuretischer faktor
2739
+ atrionatriuretisches peptid
2740
+ atrioventrikulärer block
2741
+ atrioventrikulärer defekt
2742
+ atriplex hortensis
2743
+ atriplex littoralis
2744
+ atrium cordis
2745
+ atropa belladonna
2746
+ atropa rhombodea
2747
+ atrophia cutis makulosa
2748
+ atrophia nervi optici
2749
+ atrophische leberzirrhose
2750
+ atrophische makularenitis
2751
+ atrophische myotonie
2752
+ atrophische zirrhose
2753
+ atrophischer haarausfall
2754
+ atrophoderma pigmentosum
2755
+ attached resource computer network
2756
+ attainable set
2757
+ attention deficit disorder with hyperactivity
2758
+ attention deficit disorder
2759
+ attention deficit hyperactivity disorder
2760
+ attenuated total reflection
2761
+ attisch-delischer seebund
2762
+ attische faltungsphase
2763
+ attische gebirgsbildung
2764
+ attische phase
2765
+ attischer seebund
2766
+ attribut gottes
2767
+ attributierte grammatik
2768
+ attributiver genitiv
2769
+ attributives adjektiv
2770
+ attributives partizip
2771
+ atya striolata
2772
+ atypische geflügelpest
2773
+ atypische mykobakterien
2774
+ atzenhofer gruppe
2775
+ au pair
2776
+ audi 80
2777
+ audi fox
2778
+ audiatur et altera pars
2779
+ audio winbench 99
2780
+ audio-frequency amplifiers
2781
+ audioguided tour
2782
+ audiovisuelle medien
2783
+ audiovisuelle selbstkonfrontation
2784
+ audiovisuelles lehrmittel
2785
+ audiovisuelles material
2786
+ audiovisuelles medium
2787
+ audiovisuelles unterrichtsmittel
2788
+ audit committee
2789
+ auditive medien
2790
+ auditive poesie
2791
+ auditive rückkopplung
2792
+ auditive wahrnehmung
2793
+ auditive wahrnehmungsförderung
2794
+ auditives signal
2795
+ auditorischer cortex
2796
+ auditorischer kortex
2797
+ auditory fatigue
2798
+ auf frischer tat
2799
+ auf wasser schreiben
2800
+ auferstehung der toten
2801
+ aufforderung zu straftaten
2802
+ auffälliges verhalten
2803
+ aufführungspraxis alter musik
2804
+ aufgeklärter absolutismus
2805
+ aufhebung der philosophie
2806
+ aufholende entwicklung
2807
+ aufholendes wachstum
2808
+ auflösbare lie-gruppe
2809
+ auflösung der philosophie
2810
+ auflösung der singularitäten
2811
+ auflösung einer gleichung
2812
+ auflösung von singularitäten
2813
+ aufmerksamkeits- und hyperaktivitätsstörung
2814
+ aufrechte trespe
2815
+ aufrechte waldrebe
2816
+ aufrechter sauerklee
2817
+ aufrechter ziest
2818
+ aufrechtes fingerkraut
2819
+ aufs wasser schreiben
2820
+ aufschiebende bedingung
2821
+ aufschiebende wirkung
2822
+ aufspannender teilgraph
2823
+ aufstacheln zum angriffskrieg
2824
+ aufstand 1921
2825
+ aufstand der comuneros
2826
+ aufstand des zebrzydowski
2827
+ aufsuchende arbeit
2828
+ aufwendung für die ingangsetzung und erweiterung des geschäftsbetriebes
2829
+ augen der angst
2830
+ augenanomalie des collie
2831
+ augenoptisches gerät
2832
+ augmented lagrange-methode
2833
+ augmented plane wave method
2834
+ augmented reality
2835
+ augmented spherical-wave method
2836
+ augmented transition network grammar
2837
+ augsburger friedensfest
2838
+ augsburger hohes friedensfest
2839
+ augsburger interim
2840
+ augsburger religionsfriede
2841
+ augsburger strukturorientierte rechnerarchitektur
2842
+ auktorialer erzähler
2843
+ auktoriales erzählen
2844
+ aunjetitzer kultur
2845
+ aurea catena homeri
2846
+ aurelia aurita
2847
+ aureobasidin a
2848
+ aureobasidium pullulans
2849
+ auris interna
2850
+ auris media
2851
+ aus- und ableitungsverfahren
2852
+ ausbeutung fremden rufs
2853
+ ausdauernde pflanzen
2854
+ ausdauernder lolch
2855
+ auserwähltes volk
2856
+ ausfallsicheres system
2857
+ ausführende gewalt
2858
+ ausgeartetes stefan-problem
2859
+ ausgebreitetes glaskraut
2860
+ ausgeglichene ernährung
2861
+ ausgeglichener baum
2862
+ ausgelöstes gehirnpotential
2863
+ ausgelöstes gehirnpotenzial
2864
+ ausgeschlossenes volumen
2865
+ ausgestopfte tiere
2866
+ ausgestorbene sprache
2867
+ ausgestorbenes volk
2868
+ ausgewogene ernährung
2869
+ ausgewählter rat
2870
+ ausgleichende erziehung
2871
+ auskunfts- und informationstätigkeit
2872
+ ausländische aktie
2873
+ ausländische arbeitnehmerin
2874
+ ausländische bank
2875
+ ausländische betriebsstätte
2876
+ ausländische direktinvestition
2877
+ ausländische eingriffsnorm
2878
+ ausländische einkünfte
2879
+ ausländische familie
2880
+ ausländische finanzierungsgesellschaft
2881
+ ausländische frau
2882
+ ausländische investition
2883
+ ausländische jugend
2884
+ ausländische streitkräfte
2885
+ ausländische tochtergesellschaft
2886
+ ausländische vertretung
2887
+ ausländische währung
2888
+ ausländischer arbeitgeber
2889
+ ausländischer arbeitnehmer
2890
+ ausländischer baum
2891
+ ausländischer erwachsener
2892
+ ausländischer jugendlicher
2893
+ ausländischer schüler
2894
+ ausländischer sportler
2895
+ ausländischer staat
2896
+ ausländisches geschäft
2897
+ ausländisches kind
2898
+ ausländisches militär
2899
+ ausländisches recht
2900
+ ausländisches studium
2901
+ ausländisches tochterunternehmen
2902
+ ausländisches unternehmen
2903
+ ausländisches urteil
2904
+ ausländisches vermögen
2905
+ ausmärkisches gebiet
2906
+ aussaat per hand
2907
+ ausschließliche wirtschaftszone
2908
+ ausschluss des rechtsweges
2909
+ aussereheliche beziehung
2910
+ aussereheliches kind
2911
+ aussetzung der strafe
2912
+ aussetzung der vollziehung
2913
+ aussetzung des haftbefehls
2914
+ aussetzung des haftvollzuges
2915
+ aussterbende pflanzen
2916
+ aussterbende sprache
2917
+ aussterbende tiere
2918
+ ausstieg aus der kernenergie
2919
+ austempered ductile iron
2920
+ austin mini
2921
+ australatya striolata
2922
+ australian blackwood
2923
+ australian quality award of business excellence
2924
+ australian quality award
2925
+ australian quality awards foundation
2926
+ australische frau
2927
+ australische silbereiche
2928
+ australischer kriegsgefangener
2929
+ australischer marienkäfer
2930
+ australischer teebaum
2931
+ australisches opossum
2932
+ australopithecus habilis
2933
+ australopithecus robustus
2934
+ austrian traded index
2935
+ austritt aus dem judentum
2936
+ austroasca alfalfa
2937
+ austroasca alfalfae
2938
+ austroasca viridigrisea
2939
+ austropotamobius torrentium
2940
+ auswahl mit ungleichen wahrscheinlichkeiten
2941
+ auswahl mit unterschiedlichen wahrscheinlichkeiten
2942
+ auswahl ohne zurücklegen
2943
+ auswärtige angelegenheiten
2944
+ auswärtige beziehungen
2945
+ auswärtige gewalt
2946
+ auswärtige kulturpolitik
2947
+ auswärtige politik
2948
+ auswärtiger dienst
2949
+ auswärtiger handel
2950
+ auswärtiger leihverkehr
2951
+ auszeichnung für umweltbewusste unternehmensführung
2952
+ auszeichnung gutes bauen
2953
+ authoring program
2954
+ authoring software
2955
+ authoring tool
2956
+ authority file
2957
+ auto sacramental
2958
+ autoaggressives kratzen
2959
+ autobiographischer gehalt
2960
+ autobiographischer roman
2961
+ autobiographisches element
2962
+ autobiographisches erzählen
2963
+ autodesk inventor 6
2964
+ autodesk mechanical desktop 3
2965
+ autodesk mechanical desktop 4
2966
+ autodesk mechanical desktop 5
2967
+ autodesk mechanical desktop 6
2968
+ autofahrer-rundfunk-informationen aufgrund aktueller messwerte
2969
+ autofreies leben
2970
+ autofreies verhalten
2971
+ autogene mahlung
2972
+ autogene transplantation
2973
+ autogenes schneiden
2974
+ autogenes training
2975
+ autologe transplantation
2976
+ autologous transfusion
2977
+ automated guided vehicle system
2978
+ automated learning
2979
+ automated theorem proving
2980
+ automatengerechte verpackung
2981
+ automatic differentiation
2982
+ automatic dynamic incremental nonlinear analysis
2983
+ automatic guided vehicle system
2984
+ automatic interaction detector
2985
+ automatic mode switching
2986
+ automatic repeat request
2987
+ automatic sequence
2988
+ automatic theorem proving
2989
+ automatic tools for designing office systems
2990
+ automatic train control
2991
+ automatic-control system
2992
+ automatische ableitung
2993
+ automatische analyse
2994
+ automatische bildverarbeitung
2995
+ automatische datenverarbeitung
2996
+ automatische differentiation
2997
+ automatische dokumentation
2998
+ automatische fahrtzielführung
2999
+ automatische fahrzeugführung
3000
+ automatische flugsteuerung
3001
+ automatische folge
3002
+ automatische handlungsplanung
3003
+ automatische inhaltsanalyse
3004
+ automatische justierung
3005
+ automatische lastabhängige bremskraftregelung
3006
+ automatische lauterkennung
3007
+ automatische lexikographie
3008
+ automatische literatur
3009
+ automatische logiksynthese
3010
+ automatische messung
3011
+ automatische modusumschaltung
3012
+ automatische montage
3013
+ automatische parallelisierung
3014
+ automatische prüfanlage
3015
+ automatische regelung
3016
+ automatische satzanalyse
3017
+ automatische schriftzeichenerkennung
3018
+ automatische skalenbildung für itemanalytische anwendungen
3019
+ automatische sprachanalyse
3020
+ automatische sprachenübersetzung
3021
+ automatische spracherkennung
3022
+ automatische sprachproduktion
3023
+ automatische sprachsynthese
3024
+ automatische sprachverarbeitung
3025
+ automatische syntaxanalyse
3026
+ automatische textverarbeitung
3027
+ automatische tür
3028
+ automatische uhr
3029
+ automatische waffe
3030
+ automatische wortproduktion
3031
+ automatische zugsteuerung
3032
+ automatische Übersetzung
3033
+ automatischer abgleich
3034
+ automatischer implantierbarer kardioverter-defibrillator
3035
+ automatischer interaktionsdetektor
3036
+ automatischer karabiner
3037
+ automatischer kassentresor
3038
+ automatischer moduswechsel
3039
+ automatisches beweisen
3040
+ automatisches beweisverfahren
3041
+ automatisches getriebe
3042
+ automatisches justieren
3043
+ automatisches kalibrieren
3044
+ automatisches kunstwerk
3045
+ automatisches leitungssystem
3046
+ automatisches melken
3047
+ automatisches melkverfahren
3048
+ automatisches messsystem
3049
+ automatisches prüfen
3050
+ automatisches prüfsystem
3051
+ automatisches schreiben
3052
+ automatisches spielzeug
3053
+ automatisches testen
3054
+ automatisches theorembeweisen
3055
+ automatisches zielführungssystem
3056
+ automatisches Übersetzen
3057
+ automatisierte datenverarbeitung
3058
+ automatisiertes grundbuch
3059
+ automatisiertes lagersystem
3060
+ automatisiertes leitungssystem
3061
+ automatized medical anamnesis dialog assistant
3062
+ automaton based modelling and task operating system
3063
+ automobiles citroën sa
3064
+ automobiles talbot sa
3065
+ automorphy factor
3066
+ automorphy summand
3067
+ automotive electronics
3068
+ autonom replizierende sequenz
3069
+ autonome arbeitsgruppe
3070
+ autonome differentialgleichung
3071
+ autonome fertigungszelle
3072
+ autonome gruppe
3073
+ autonome innervation
3074
+ autonome produktionszelle
3075
+ autonome provinz
3076
+ autonome provinzen
3077
+ autonome region
3078
+ autonome regionen
3079
+ autonome republik
3080
+ autonome satzung
3081
+ autonomer kreis
3082
+ autonomer mobiler roboter
3083
+ autonomer roboter
3084
+ autonomes adenom
3085
+ autonomes gebiet
3086
+ autonomes lernen
3087
+ autonomes nervensystem
3088
+ autonomes system
3089
+ autonomes territorium
3090
+ autonomia operaia organizzata
3091
+ autonomous differential equation
3092
+ autonomous territories
3093
+ autonomously replicating sequence
3094
+ autopolarer kegel
3095
+ autoprothrombin iia
3096
+ autoregressives differenziertes modell der gleitenden mittel
3097
+ autoregressives integriertes modell der gleitenden mittel
3098
+ autoregressives modell der gleitenden mittel
3099
+ autoregulative therapie
3100
+ autoritäre persönlichkeit
3101
+ autoritärer charakter
3102
+ autoritärer staat
3103
+ autoritäres regime
3104
+ autoritäres system
3105
+ autorität und familie
3106
+ autosomal-dominante zystenniere (erwachsenenform)
3107
+ autosomal-dominante zystenniere
3108
+ autothematischer film
3109
+ autusie gottes
3110
+ außerabendländische kultur
3111
+ außerabendländische kunst
3112
+ außerbetriebliche datenverarbeitung
3113
+ außerbiblische quelle
3114
+ außerbiblisches zeugnis
3115
+ außerbilanzielles geschäft
3116
+ außerbörslicher wertpapierhandel
3117
+ außerchristliche religion
3118
+ außerdienstliche verhaltenspflicht
3119
+ außerdienstliches verhalten
3120
+ außereuropäische kultur
3121
+ außereuropäische kunst
3122
+ außereuropäische literatur
3123
+ außereuropäische musik
3124
+ außereuropäische pflanzen
3125
+ außereuropäische tiere
3126
+ außerfachliche qualifikation
3127
+ außergalaktische radioquelle
3128
+ außergalaktische röntgenquelle
3129
+ außergalaktisches magnetfeld
3130
+ außergalaktisches objekt
3131
+ außergerichtliche streitbeilegung
3132
+ außergewöhnlicher bewusstseinszustand
3133
+ außerirdische intelligenz
3134
+ außerirdisches leben
3135
+ außerirdisches material
3136
+ außerkörperliche erfahrung
3137
+ außerordentliche befriedungsaktion
3138
+ außerordentliche beiträge
3139
+ außerordentliche bilanz
3140
+ außerordentliche ersitzung
3141
+ außerordentlicher güterstand
3142
+ außerordentlicher professor
3143
+ außerordentliches imperium
3144
+ außerparlamentarische opposition
3145
+ außerschulische berufstätigkeit
3146
+ außerschulische bildung
3147
+ außerschulische bildungsarbeit
3148
+ außerschulische erziehung
3149
+ außerschulische jugendarbeit
3150
+ außerschulische jugendbildung
3151
+ außerschulische medizin
3152
+ außersinnliche wahrnehmung
3153
+ außersprachliche kommunikation
3154
+ außersprachliche Äußerung
3155
+ außerstaatliche forschungsförderung
3156
+ außerstreitiges verfahren
3157
+ außertariflicher angestellter
3158
+ außeruniversitäre forschung
3159
+ außeruniversitäre forschungseinrichtung
3160
+ außeruniversitäre staatliche forschungseinrichtung
3161
+ außerunterrichtliche schulveranstaltung
3162
+ avantgardistische kunst
3163
+ avantgardistische literatur
3164
+ avena fatua
3165
+ avena sativa
3166
+ average case complexity
3167
+ averaged coupled pair functional
3168
+ averrhoa carambola
3169
+ aversive konditionierung
3170
+ aveu et dénombrement
3171
+ avian leucosis
3172
+ avicennia germinans
3173
+ avignonesisches exil
3174
+ aviäre leukose
3175
+ avocado sunblotch viroid
3176
+ avogadrosche hypothese
3177
+ avogadrosches gesetz
3178
+ avr single chip controller
3179
+ avro 694 lincoln b mk. i
3180
+ avro lancaster
3181
+ avro rj avroliner
3182
+ award for young european photographers
3183
+ axial field
3184
+ axiale belastung
3185
+ axiale dichtung
3186
+ axiale dispersion
3187
+ axiale druckbeanspruchung
3188
+ axialsymmetrisches divertor-experiment
3189
+ axiomatic semantics
3190
+ axiomatische algebra
3191
+ axiomatische quantenfeldtheorie
3192
+ axiomatische quantentheorie
3193
+ axiomatische semantik
3194
+ axiomatisches system
3195
+ axiome der mechanik
3196
+ axis axis
3197
+ axis porcinus
3198
+ axonale verletzung
3199
+ aye d'avignon
3200
+ aythya ferina
3201
+ aythya fuligula
3202
+ azadirachta excelsa
3203
+ azadirachta indica
3204
+ azalomycin b
3205
+ azeotrope destillation
3206
+ azidophiler trockenrasen
3207
+ azulfidine ra
3208
+ azumayasche algebra
3209
+ azyklische bewegung