pliable 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.bundle/install.log +1575 -0
- data/.document +3 -0
- data/.travis.yml +16 -0
- data/.yardopts +1 -0
- data/ChangeLog.md +4 -0
- data/Gemfile +7 -0
- data/Gemfile.lock +134 -0
- data/LICENSE.txt +20 -0
- data/README.md +287 -0
- data/Rakefile +39 -0
- data/lib/generators/pliable/model_generator.rb +40 -0
- data/lib/generators/pliable/templates/migration.rb +24 -0
- data/lib/pliable/configure.rb +12 -0
- data/lib/pliable/ply.rb +89 -0
- data/lib/pliable/ply_relation.rb +4 -0
- data/lib/pliable/text_helper.rb +3 -0
- data/lib/pliable/version.rb +4 -0
- data/lib/pliable.rb +17 -0
- data/pliable.gemspec +35 -0
- data/spec/.DS_Store +0 -0
- data/spec/dummy/README.rdoc +261 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/models/.gitkeep +0 -0
- data/spec/dummy/app/models/invoice.rb +6 -0
- data/spec/dummy/app/models/line_item.rb +5 -0
- data/spec/dummy/app/models/merchandise.rb +5 -0
- data/spec/dummy/app/models/ply.rb +7 -0
- data/spec/dummy/config/application.rb +65 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +19 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +37 -0
- data/spec/dummy/config/environments/production.rb +67 -0
- data/spec/dummy/config/environments/test.rb +37 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +15 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/pliable.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/routes.rb +58 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/db/migrate/.DS_Store +0 -0
- data/spec/dummy/db/migrate/20140117210156_create_plies_and_ply_relations.rb +23 -0
- data/spec/dummy/db/migration_helper.rb +42 -0
- data/spec/dummy/db/schema.rb +39 -0
- data/spec/dummy/db/seeds.rb +17 -0
- data/spec/dummy/db/static/bottles.csv +201 -0
- data/spec/dummy/db/static/varietal_aliases.csv +433 -0
- data/spec/dummy/db/static/varietals.csv +295 -0
- data/spec/dummy/lib/assets/.gitkeep +0 -0
- data/spec/dummy/log/.gitkeep +0 -0
- data/spec/dummy/log/development.log +63 -0
- data/spec/dummy/log/test.log +2339 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +25 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/dummy/spec/fixtures/varietals.yml +2135 -0
- data/spec/dummy/spec/models/.DS_Store +0 -0
- data/spec/dummy/spec/models/fake_ply_test.rb +12 -0
- data/spec/dummy/spec/models/ply_relation_spec.rb +12 -0
- data/spec/dummy/spec/pliable_integartion_spec.rb +48 -0
- data/spec/dummy/spec/tmp/app/models/foo_alias.rb +4 -0
- data/spec/spec_helper.rb +36 -0
- data/sub +4 -0
- metadata +389 -0
@@ -0,0 +1,2135 @@
|
|
1
|
+
Dolcetto0:
|
2
|
+
id: 1
|
3
|
+
grape_id: NULL
|
4
|
+
name: Dolcetto
|
5
|
+
|
6
|
+
Freisamer0:
|
7
|
+
id: 2
|
8
|
+
grape_id: NULL
|
9
|
+
name: Freisamer
|
10
|
+
|
11
|
+
Chardonnay0:
|
12
|
+
id: 3
|
13
|
+
grape_id: NULL
|
14
|
+
name: Chardonnay
|
15
|
+
|
16
|
+
Barbarossa0:
|
17
|
+
id: 4
|
18
|
+
grape_id: NULL
|
19
|
+
name: Barbarossa
|
20
|
+
|
21
|
+
Kékfrankos 1:
|
22
|
+
id: 5
|
23
|
+
grape_id: 69
|
24
|
+
name: Kékfrankos
|
25
|
+
|
26
|
+
Leànyka1:
|
27
|
+
id: 6
|
28
|
+
grape_id: 308
|
29
|
+
name: Leànyka
|
30
|
+
|
31
|
+
Muscat Ottonel1:
|
32
|
+
id: 7
|
33
|
+
grape_id: 322
|
34
|
+
name: Muscat Ottonel
|
35
|
+
|
36
|
+
Grk0:
|
37
|
+
id: 8
|
38
|
+
grape_id: NULL
|
39
|
+
name: Grk
|
40
|
+
|
41
|
+
Nuragus0:
|
42
|
+
id: 9
|
43
|
+
grape_id: NULL
|
44
|
+
name: Nuragus
|
45
|
+
|
46
|
+
Riesling 0:
|
47
|
+
id: 10
|
48
|
+
grape_id: NULL
|
49
|
+
name: Riesling
|
50
|
+
|
51
|
+
Viura 0:
|
52
|
+
id: 11
|
53
|
+
grape_id: NULL
|
54
|
+
name: Viura
|
55
|
+
|
56
|
+
Monbadon1:
|
57
|
+
id: 12
|
58
|
+
grape_id: 227
|
59
|
+
name: Monbadon
|
60
|
+
|
61
|
+
Favorita0:
|
62
|
+
id: 13
|
63
|
+
grape_id: NULL
|
64
|
+
name: Favorita
|
65
|
+
|
66
|
+
Tamîioasa0:
|
67
|
+
id: 14
|
68
|
+
grape_id: NULL
|
69
|
+
name: Tamîioasa
|
70
|
+
|
71
|
+
Emir Karasi0:
|
72
|
+
id: 15
|
73
|
+
grape_id: NULL
|
74
|
+
name: Emir Karasi
|
75
|
+
|
76
|
+
Zeusz0:
|
77
|
+
id: 16
|
78
|
+
grape_id: NULL
|
79
|
+
name: Zeusz
|
80
|
+
|
81
|
+
Vernaccia0:
|
82
|
+
id: 17
|
83
|
+
grape_id: NULL
|
84
|
+
name: Vernaccia
|
85
|
+
|
86
|
+
Alarije0:
|
87
|
+
id: 18
|
88
|
+
grape_id: NULL
|
89
|
+
name: Alarije
|
90
|
+
|
91
|
+
Alicante Bouschet0:
|
92
|
+
id: 19
|
93
|
+
grape_id: NULL
|
94
|
+
name: Alicante Bouschet
|
95
|
+
|
96
|
+
Schwarzriesling 1:
|
97
|
+
id: 20
|
98
|
+
grape_id: 211
|
99
|
+
name: Schwarzriesling
|
100
|
+
|
101
|
+
Viura1:
|
102
|
+
id: 21
|
103
|
+
grape_id: 257
|
104
|
+
name: Viura
|
105
|
+
|
106
|
+
Guarnaccia Bianca0:
|
107
|
+
id: 22
|
108
|
+
grape_id: NULL
|
109
|
+
name: Guarnaccia Bianca
|
110
|
+
|
111
|
+
Ondenc0:
|
112
|
+
id: 23
|
113
|
+
grape_id: NULL
|
114
|
+
name: Ondenc
|
115
|
+
|
116
|
+
Corvina0:
|
117
|
+
id: 24
|
118
|
+
grape_id: NULL
|
119
|
+
name: Corvina
|
120
|
+
|
121
|
+
Fiano0:
|
122
|
+
id: 25
|
123
|
+
grape_id: NULL
|
124
|
+
name: Fiano
|
125
|
+
|
126
|
+
Touriga Nacional 0:
|
127
|
+
id: 26
|
128
|
+
grape_id: NULL
|
129
|
+
name: Touriga Nacional
|
130
|
+
|
131
|
+
Pinot Noir 0:
|
132
|
+
id: 27
|
133
|
+
grape_id: NULL
|
134
|
+
name: Pinot Noir
|
135
|
+
|
136
|
+
Graciano0:
|
137
|
+
id: 28
|
138
|
+
grape_id: NULL
|
139
|
+
name: Graciano
|
140
|
+
|
141
|
+
Neuburger0:
|
142
|
+
id: 29
|
143
|
+
grape_id: NULL
|
144
|
+
name: Neuburger
|
145
|
+
|
146
|
+
Cencibel 1:
|
147
|
+
id: 30
|
148
|
+
grape_id: 340
|
149
|
+
name: Cencibel
|
150
|
+
|
151
|
+
Gros Plant 1:
|
152
|
+
id: 31
|
153
|
+
grape_id: 345
|
154
|
+
name: Gros Plant
|
155
|
+
|
156
|
+
Blauer Wildbacher1:
|
157
|
+
id: 32
|
158
|
+
grape_id: 215
|
159
|
+
name: Blauer Wildbacher
|
160
|
+
|
161
|
+
Băbească Neagră0:
|
162
|
+
id: 33
|
163
|
+
grape_id: NULL
|
164
|
+
name: Băbească Neagră
|
165
|
+
|
166
|
+
Criolla Grande0:
|
167
|
+
id: 34
|
168
|
+
grape_id: NULL
|
169
|
+
name: Criolla Grande
|
170
|
+
|
171
|
+
Hondarribi Zuri0:
|
172
|
+
id: 35
|
173
|
+
grape_id: NULL
|
174
|
+
name: Hondarribi Zuri
|
175
|
+
|
176
|
+
Bovale Sardo0:
|
177
|
+
id: 36
|
178
|
+
grape_id: NULL
|
179
|
+
name: Bovale Sardo
|
180
|
+
|
181
|
+
Savagnin Blanc1:
|
182
|
+
id: 37
|
183
|
+
grape_id: 420
|
184
|
+
name: Savagnin Blanc
|
185
|
+
|
186
|
+
Ferral0:
|
187
|
+
id: 38
|
188
|
+
grape_id: NULL
|
189
|
+
name: Ferral
|
190
|
+
|
191
|
+
Terret Noir0:
|
192
|
+
id: 39
|
193
|
+
grape_id: NULL
|
194
|
+
name: Terret Noir
|
195
|
+
|
196
|
+
Mourvèdre 0:
|
197
|
+
id: 40
|
198
|
+
grape_id: NULL
|
199
|
+
name: Mourvèdre
|
200
|
+
|
201
|
+
Refosco 0:
|
202
|
+
id: 41
|
203
|
+
grape_id: NULL
|
204
|
+
name: Refosco
|
205
|
+
|
206
|
+
Gropello0:
|
207
|
+
id: 42
|
208
|
+
grape_id: NULL
|
209
|
+
name: Gropello
|
210
|
+
|
211
|
+
Mazuelo1:
|
212
|
+
id: 43
|
213
|
+
grape_id: 362
|
214
|
+
name: Mazuelo
|
215
|
+
|
216
|
+
Muscadet de Bourgogne 0:
|
217
|
+
id: 44
|
218
|
+
grape_id: NULL
|
219
|
+
name: Muscadet de Bourgogne
|
220
|
+
|
221
|
+
Blatina0:
|
222
|
+
id: 45
|
223
|
+
grape_id: NULL
|
224
|
+
name: Blatina
|
225
|
+
|
226
|
+
Canaiolo0:
|
227
|
+
id: 46
|
228
|
+
grape_id: NULL
|
229
|
+
name: Canaiolo
|
230
|
+
|
231
|
+
Muscadet de Bourgogne1:
|
232
|
+
id: 47
|
233
|
+
grape_id: 228
|
234
|
+
name: Muscadet de Bourgogne
|
235
|
+
|
236
|
+
Ugni Blanc1:
|
237
|
+
id: 48
|
238
|
+
grape_id: 126
|
239
|
+
name: Ugni Blanc
|
240
|
+
|
241
|
+
Ull de Llebre 1:
|
242
|
+
id: 49
|
243
|
+
grape_id: 340
|
244
|
+
name: Ull de Llebre
|
245
|
+
|
246
|
+
Xynomavro0:
|
247
|
+
id: 50
|
248
|
+
grape_id: NULL
|
249
|
+
name: Xynomavro
|
250
|
+
|
251
|
+
Gouveio 1:
|
252
|
+
id: 51
|
253
|
+
grape_id: 201
|
254
|
+
name: Gouveio
|
255
|
+
|
256
|
+
Assyrtiko0:
|
257
|
+
id: 52
|
258
|
+
grape_id: NULL
|
259
|
+
name: Assyrtiko
|
260
|
+
|
261
|
+
Weissburgunder1:
|
262
|
+
id: 53
|
263
|
+
grape_id: 88
|
264
|
+
name: Weissburgunder
|
265
|
+
|
266
|
+
Palomino Fino1:
|
267
|
+
id: 54
|
268
|
+
grape_id: 150
|
269
|
+
name: Palomino Fino
|
270
|
+
|
271
|
+
Drupeggio0:
|
272
|
+
id: 55
|
273
|
+
grape_id: NULL
|
274
|
+
name: Drupeggio
|
275
|
+
|
276
|
+
Xarel·lo 0:
|
277
|
+
id: 56
|
278
|
+
grape_id: NULL
|
279
|
+
name: Xarel·lo
|
280
|
+
|
281
|
+
Rufete 0:
|
282
|
+
id: 57
|
283
|
+
grape_id: NULL
|
284
|
+
name: Rufete
|
285
|
+
|
286
|
+
Grüner Veltliner0:
|
287
|
+
id: 58
|
288
|
+
grape_id: NULL
|
289
|
+
name: Grüner Veltliner
|
290
|
+
|
291
|
+
Bondola0:
|
292
|
+
id: 59
|
293
|
+
grape_id: NULL
|
294
|
+
name: Bondola
|
295
|
+
|
296
|
+
Trajadura1:
|
297
|
+
id: 60
|
298
|
+
grape_id: 229
|
299
|
+
name: Trajadura
|
300
|
+
|
301
|
+
Spätrot 0:
|
302
|
+
id: 61
|
303
|
+
grape_id: NULL
|
304
|
+
name: Spätrot
|
305
|
+
|
306
|
+
Poulsard0:
|
307
|
+
id: 62
|
308
|
+
grape_id: NULL
|
309
|
+
name: Poulsard
|
310
|
+
|
311
|
+
Gloria0:
|
312
|
+
id: 63
|
313
|
+
grape_id: NULL
|
314
|
+
name: Gloria
|
315
|
+
|
316
|
+
Darkenuša0:
|
317
|
+
id: 64
|
318
|
+
grape_id: NULL
|
319
|
+
name: Darkenuša
|
320
|
+
|
321
|
+
Gaglioppo0:
|
322
|
+
id: 65
|
323
|
+
grape_id: NULL
|
324
|
+
name: Gaglioppo
|
325
|
+
|
326
|
+
Maratheftiko0:
|
327
|
+
id: 66
|
328
|
+
grape_id: NULL
|
329
|
+
name: Maratheftiko
|
330
|
+
|
331
|
+
Carignane 1:
|
332
|
+
id: 67
|
333
|
+
grape_id: 362
|
334
|
+
name: Carignane
|
335
|
+
|
336
|
+
Izsáki Sarfehér0:
|
337
|
+
id: 68
|
338
|
+
grape_id: NULL
|
339
|
+
name: Izsáki Sarfehér
|
340
|
+
|
341
|
+
Blaufränkisch 0:
|
342
|
+
id: 69
|
343
|
+
grape_id: NULL
|
344
|
+
name: Blaufränkisch
|
345
|
+
|
346
|
+
Sipon1:
|
347
|
+
id: 70
|
348
|
+
grape_id: 167
|
349
|
+
name: Sipon
|
350
|
+
|
351
|
+
Garganega Bianca0:
|
352
|
+
id: 71
|
353
|
+
grape_id: NULL
|
354
|
+
name: Garganega Bianca
|
355
|
+
|
356
|
+
Madeleine Angevine0:
|
357
|
+
id: 72
|
358
|
+
grape_id: NULL
|
359
|
+
name: Madeleine Angevine
|
360
|
+
|
361
|
+
Refošk1:
|
362
|
+
id: 73
|
363
|
+
grape_id: 41
|
364
|
+
name: Refošk
|
365
|
+
|
366
|
+
Alexandrouli0:
|
367
|
+
id: 74
|
368
|
+
grape_id: NULL
|
369
|
+
name: Alexandrouli
|
370
|
+
|
371
|
+
Septiner0:
|
372
|
+
id: 75
|
373
|
+
grape_id: NULL
|
374
|
+
name: Septiner
|
375
|
+
|
376
|
+
Sylvaner 1:
|
377
|
+
id: 76
|
378
|
+
grape_id: 185
|
379
|
+
name: Sylvaner
|
380
|
+
|
381
|
+
Jacquère0:
|
382
|
+
id: 77
|
383
|
+
grape_id: NULL
|
384
|
+
name: Jacquère
|
385
|
+
|
386
|
+
Chasselas 0:
|
387
|
+
id: 78
|
388
|
+
grape_id: NULL
|
389
|
+
name: Chasselas
|
390
|
+
|
391
|
+
Sultana0:
|
392
|
+
id: 79
|
393
|
+
grape_id: NULL
|
394
|
+
name: Sultana
|
395
|
+
|
396
|
+
Rieslaner0:
|
397
|
+
id: 80
|
398
|
+
grape_id: NULL
|
399
|
+
name: Rieslaner
|
400
|
+
|
401
|
+
Cinsault1:
|
402
|
+
id: 81
|
403
|
+
grape_id: 132
|
404
|
+
name: Cinsault
|
405
|
+
|
406
|
+
Erbaluce0:
|
407
|
+
id: 82
|
408
|
+
grape_id: NULL
|
409
|
+
name: Erbaluce
|
410
|
+
|
411
|
+
Falanghina0:
|
412
|
+
id: 83
|
413
|
+
grape_id: NULL
|
414
|
+
name: Falanghina
|
415
|
+
|
416
|
+
Carignano1:
|
417
|
+
id: 84
|
418
|
+
grape_id: 362
|
419
|
+
name: Carignano
|
420
|
+
|
421
|
+
Francusa0:
|
422
|
+
id: 85
|
423
|
+
grape_id: NULL
|
424
|
+
name: Francusa
|
425
|
+
|
426
|
+
Muscat of Alexandria 1:
|
427
|
+
id: 86
|
428
|
+
grape_id: 322
|
429
|
+
name: Muscat of Alexandria
|
430
|
+
|
431
|
+
Albalonga0:
|
432
|
+
id: 87
|
433
|
+
grape_id: NULL
|
434
|
+
name: Albalonga
|
435
|
+
|
436
|
+
Pinot Blanc 0:
|
437
|
+
id: 88
|
438
|
+
grape_id: NULL
|
439
|
+
name: Pinot Blanc
|
440
|
+
|
441
|
+
Mission0:
|
442
|
+
id: 89
|
443
|
+
grape_id: NULL
|
444
|
+
name: Mission
|
445
|
+
|
446
|
+
Spätburgunder 1:
|
447
|
+
id: 90
|
448
|
+
grape_id: 27
|
449
|
+
name: Spätburgunder
|
450
|
+
|
451
|
+
Zweigelt 0:
|
452
|
+
id: 91
|
453
|
+
grape_id: NULL
|
454
|
+
name: Zweigelt
|
455
|
+
|
456
|
+
Braquet1:
|
457
|
+
id: 92
|
458
|
+
grape_id: 347
|
459
|
+
name: Braquet
|
460
|
+
|
461
|
+
Grey Riesling1:
|
462
|
+
id: 93
|
463
|
+
grape_id: 354
|
464
|
+
name: Grey Riesling
|
465
|
+
|
466
|
+
Dornfelder0:
|
467
|
+
id: 94
|
468
|
+
grape_id: NULL
|
469
|
+
name: Dornfelder
|
470
|
+
|
471
|
+
Fetească Regală0:
|
472
|
+
id: 95
|
473
|
+
grape_id: NULL
|
474
|
+
name: Fetească Regală
|
475
|
+
|
476
|
+
Millot0:
|
477
|
+
id: 96
|
478
|
+
grape_id: NULL
|
479
|
+
name: Millot
|
480
|
+
|
481
|
+
Mandolari0:
|
482
|
+
id: 97
|
483
|
+
grape_id: NULL
|
484
|
+
name: Mandolari
|
485
|
+
|
486
|
+
Colombard0:
|
487
|
+
id: 98
|
488
|
+
grape_id: NULL
|
489
|
+
name: Colombard
|
490
|
+
|
491
|
+
Goldriesling0:
|
492
|
+
id: 99
|
493
|
+
grape_id: NULL
|
494
|
+
name: Goldriesling
|
495
|
+
|
496
|
+
Petite Syrah1:
|
497
|
+
id: 100
|
498
|
+
grape_id: 115
|
499
|
+
name: Petite Syrah
|
500
|
+
|
501
|
+
Moscato1:
|
502
|
+
id: 101
|
503
|
+
grape_id: 322
|
504
|
+
name: Moscato
|
505
|
+
|
506
|
+
Guardavalle0:
|
507
|
+
id: 102
|
508
|
+
grape_id: NULL
|
509
|
+
name: Guardavalle
|
510
|
+
|
511
|
+
Courbu 0:
|
512
|
+
id: 103
|
513
|
+
grape_id: NULL
|
514
|
+
name: Courbu
|
515
|
+
|
516
|
+
Rotberger0:
|
517
|
+
id: 104
|
518
|
+
grape_id: NULL
|
519
|
+
name: Rotberger
|
520
|
+
|
521
|
+
Boal1:
|
522
|
+
id: 105
|
523
|
+
grape_id: 286
|
524
|
+
name: Boal
|
525
|
+
|
526
|
+
Klingelberger1:
|
527
|
+
id: 106
|
528
|
+
grape_id: 10
|
529
|
+
name: Klingelberger
|
530
|
+
|
531
|
+
Gamé1:
|
532
|
+
id: 107
|
533
|
+
grape_id: 69
|
534
|
+
name: Gamé
|
535
|
+
|
536
|
+
Tinta del Pais1:
|
537
|
+
id: 108
|
538
|
+
grape_id: 340
|
539
|
+
name: Tinta del Pais
|
540
|
+
|
541
|
+
Clare Riesling 1:
|
542
|
+
id: 109
|
543
|
+
grape_id: 151
|
544
|
+
name: Clare Riesling
|
545
|
+
|
546
|
+
Arvine0:
|
547
|
+
id: 110
|
548
|
+
grape_id: NULL
|
549
|
+
name: Arvine
|
550
|
+
|
551
|
+
Verduzzo Trevigiano0:
|
552
|
+
id: 111
|
553
|
+
grape_id: NULL
|
554
|
+
name: Verduzzo Trevigiano
|
555
|
+
|
556
|
+
Verdicchio0:
|
557
|
+
id: 112
|
558
|
+
grape_id: NULL
|
559
|
+
name: Verdicchio
|
560
|
+
|
561
|
+
Verdiso 0:
|
562
|
+
id: 113
|
563
|
+
grape_id: NULL
|
564
|
+
name: Verdiso
|
565
|
+
|
566
|
+
Sereine1:
|
567
|
+
id: 114
|
568
|
+
grape_id: 390
|
569
|
+
name: Sereine
|
570
|
+
|
571
|
+
Durif 0:
|
572
|
+
id: 115
|
573
|
+
grape_id: NULL
|
574
|
+
name: Durif
|
575
|
+
|
576
|
+
Syrac1:
|
577
|
+
id: 116
|
578
|
+
grape_id: 390
|
579
|
+
name: Syrac
|
580
|
+
|
581
|
+
Muscat Blanc 1:
|
582
|
+
id: 117
|
583
|
+
grape_id: 322
|
584
|
+
name: Muscat Blanc
|
585
|
+
|
586
|
+
Tinta Barroca0:
|
587
|
+
id: 118
|
588
|
+
grape_id: NULL
|
589
|
+
name: Tinta Barroca
|
590
|
+
|
591
|
+
Kadarka0:
|
592
|
+
id: 119
|
593
|
+
grape_id: NULL
|
594
|
+
name: Kadarka
|
595
|
+
|
596
|
+
Primitivo1:
|
597
|
+
id: 120
|
598
|
+
grape_id: 411
|
599
|
+
name: Primitivo
|
600
|
+
|
601
|
+
Piquepoult1:
|
602
|
+
id: 121
|
603
|
+
grape_id: 345
|
604
|
+
name: Piquepoult
|
605
|
+
|
606
|
+
Hignin Noir1:
|
607
|
+
id: 122
|
608
|
+
grape_id: 390
|
609
|
+
name: Hignin Noir
|
610
|
+
|
611
|
+
Syrah1:
|
612
|
+
id: 123
|
613
|
+
grape_id: 390
|
614
|
+
name: Syrah
|
615
|
+
|
616
|
+
Fromenteau0:
|
617
|
+
id: 124
|
618
|
+
grape_id: NULL
|
619
|
+
name: Fromenteau
|
620
|
+
|
621
|
+
Courtillier Musqué1:
|
622
|
+
id: 125
|
623
|
+
grape_id: 406
|
624
|
+
name: Courtillier Musqué
|
625
|
+
|
626
|
+
Trebbiano 0:
|
627
|
+
id: 126
|
628
|
+
grape_id: NULL
|
629
|
+
name: Trebbiano
|
630
|
+
|
631
|
+
Johannisberg Riesling 1:
|
632
|
+
id: 127
|
633
|
+
grape_id: 10
|
634
|
+
name: Johannisberg Riesling
|
635
|
+
|
636
|
+
Sauvignon Gris1:
|
637
|
+
id: 128
|
638
|
+
grape_id: 413
|
639
|
+
name: Sauvignon Gris
|
640
|
+
|
641
|
+
Alamís1:
|
642
|
+
id: 129
|
643
|
+
grape_id: 403
|
644
|
+
name: Alamís
|
645
|
+
|
646
|
+
Tinta Carvalha 1:
|
647
|
+
id: 130
|
648
|
+
grape_id: 57
|
649
|
+
name: Tinta Carvalha
|
650
|
+
|
651
|
+
Entournerein1:
|
652
|
+
id: 131
|
653
|
+
grape_id: 390
|
654
|
+
name: Entournerein
|
655
|
+
|
656
|
+
Cinsaut0:
|
657
|
+
id: 132
|
658
|
+
grape_id: NULL
|
659
|
+
name: Cinsaut
|
660
|
+
|
661
|
+
Schiava 0:
|
662
|
+
id: 133
|
663
|
+
grape_id: NULL
|
664
|
+
name: Schiava
|
665
|
+
|
666
|
+
Gros Manseng 0:
|
667
|
+
id: 134
|
668
|
+
grape_id: NULL
|
669
|
+
name: Gros Manseng
|
670
|
+
|
671
|
+
Nielluccio0:
|
672
|
+
id: 135
|
673
|
+
grape_id: NULL
|
674
|
+
name: Nielluccio
|
675
|
+
|
676
|
+
Carnelian0:
|
677
|
+
id: 136
|
678
|
+
grape_id: NULL
|
679
|
+
name: Carnelian
|
680
|
+
|
681
|
+
Mavrud0:
|
682
|
+
id: 137
|
683
|
+
grape_id: NULL
|
684
|
+
name: Mavrud
|
685
|
+
|
686
|
+
Monastrell 1:
|
687
|
+
id: 138
|
688
|
+
grape_id: 40
|
689
|
+
name: Monastrell
|
690
|
+
|
691
|
+
Altesse0:
|
692
|
+
id: 139
|
693
|
+
grape_id: NULL
|
694
|
+
name: Altesse
|
695
|
+
|
696
|
+
Verduzzo Friulano0:
|
697
|
+
id: 140
|
698
|
+
grape_id: NULL
|
699
|
+
name: Verduzzo Friulano
|
700
|
+
|
701
|
+
Pinot Grigio 0:
|
702
|
+
id: 141
|
703
|
+
grape_id: NULL
|
704
|
+
name: Pinot Grigio
|
705
|
+
|
706
|
+
Sangiovese 0:
|
707
|
+
id: 142
|
708
|
+
grape_id: NULL
|
709
|
+
name: Sangiovese
|
710
|
+
|
711
|
+
Pineau de la Loire1:
|
712
|
+
id: 143
|
713
|
+
grape_id: 301
|
714
|
+
name: Pineau de la Loire
|
715
|
+
|
716
|
+
Malvasia di Schierano0:
|
717
|
+
id: 144
|
718
|
+
grape_id: NULL
|
719
|
+
name: Malvasia di Schierano
|
720
|
+
|
721
|
+
Negroamaro0:
|
722
|
+
id: 145
|
723
|
+
grape_id: NULL
|
724
|
+
name: Negroamaro
|
725
|
+
|
726
|
+
Rotburger1:
|
727
|
+
id: 146
|
728
|
+
grape_id: 91
|
729
|
+
name: Rotburger
|
730
|
+
|
731
|
+
Moscatel de Málaga1:
|
732
|
+
id: 147
|
733
|
+
grape_id: 322
|
734
|
+
name: Moscatel de Málaga
|
735
|
+
|
736
|
+
Mantonico Bianco0:
|
737
|
+
id: 148
|
738
|
+
grape_id: NULL
|
739
|
+
name: Mantonico Bianco
|
740
|
+
|
741
|
+
Albana0:
|
742
|
+
id: 149
|
743
|
+
grape_id: NULL
|
744
|
+
name: Albana
|
745
|
+
|
746
|
+
Palomino 0:
|
747
|
+
id: 150
|
748
|
+
grape_id: NULL
|
749
|
+
name: Palomino
|
750
|
+
|
751
|
+
Crouchen 0:
|
752
|
+
id: 151
|
753
|
+
grape_id: NULL
|
754
|
+
name: Crouchen
|
755
|
+
|
756
|
+
Serine1:
|
757
|
+
id: 152
|
758
|
+
grape_id: 390
|
759
|
+
name: Serine
|
760
|
+
|
761
|
+
Balsamina1:
|
762
|
+
id: 153
|
763
|
+
grape_id: 390
|
764
|
+
name: Balsamina
|
765
|
+
|
766
|
+
Marzemino0:
|
767
|
+
id: 154
|
768
|
+
grape_id: NULL
|
769
|
+
name: Marzemino
|
770
|
+
|
771
|
+
Barbera0:
|
772
|
+
id: 155
|
773
|
+
grape_id: NULL
|
774
|
+
name: Barbera
|
775
|
+
|
776
|
+
Scheurebe0:
|
777
|
+
id: 156
|
778
|
+
grape_id: NULL
|
779
|
+
name: Scheurebe
|
780
|
+
|
781
|
+
Riesling Italico 1:
|
782
|
+
id: 157
|
783
|
+
grape_id: 226
|
784
|
+
name: Riesling Italico
|
785
|
+
|
786
|
+
Pinotage0:
|
787
|
+
id: 158
|
788
|
+
grape_id: NULL
|
789
|
+
name: Pinotage
|
790
|
+
|
791
|
+
Cape Riesling1:
|
792
|
+
id: 159
|
793
|
+
grape_id: 151
|
794
|
+
name: Cape Riesling
|
795
|
+
|
796
|
+
Malbec 0:
|
797
|
+
id: 160
|
798
|
+
grape_id: NULL
|
799
|
+
name: Malbec
|
800
|
+
|
801
|
+
Traminer 1:
|
802
|
+
id: 161
|
803
|
+
grape_id: 420
|
804
|
+
name: Traminer
|
805
|
+
|
806
|
+
Cariñena 1:
|
807
|
+
id: 162
|
808
|
+
grape_id: 362
|
809
|
+
name: Cariñena
|
810
|
+
|
811
|
+
Cainho Branco1:
|
812
|
+
id: 163
|
813
|
+
grape_id: 330
|
814
|
+
name: Cainho Branco
|
815
|
+
|
816
|
+
Athiri0:
|
817
|
+
id: 164
|
818
|
+
grape_id: NULL
|
819
|
+
name: Athiri
|
820
|
+
|
821
|
+
Kékoportó1:
|
822
|
+
id: 165
|
823
|
+
grape_id: 300
|
824
|
+
name: Kékoportó
|
825
|
+
|
826
|
+
Touriga Francesa1:
|
827
|
+
id: 166
|
828
|
+
grape_id: 334
|
829
|
+
name: Touriga Francesa
|
830
|
+
|
831
|
+
Furmint 0:
|
832
|
+
id: 167
|
833
|
+
grape_id: NULL
|
834
|
+
name: Furmint
|
835
|
+
|
836
|
+
Okuzgozu0:
|
837
|
+
id: 168
|
838
|
+
grape_id: NULL
|
839
|
+
name: Okuzgozu
|
840
|
+
|
841
|
+
Merseguera 0:
|
842
|
+
id: 169
|
843
|
+
grape_id: NULL
|
844
|
+
name: Merseguera
|
845
|
+
|
846
|
+
Ruby Cabernet0:
|
847
|
+
id: 170
|
848
|
+
grape_id: NULL
|
849
|
+
name: Ruby Cabernet
|
850
|
+
|
851
|
+
Izkiriota Ttipi1:
|
852
|
+
id: 171
|
853
|
+
grape_id: 336
|
854
|
+
name: Izkiriota Ttipi
|
855
|
+
|
856
|
+
Weisser Gutedel 1:
|
857
|
+
id: 172
|
858
|
+
grape_id: 406
|
859
|
+
name: Weisser Gutedel
|
860
|
+
|
861
|
+
Fetiaska 1:
|
862
|
+
id: 173
|
863
|
+
grape_id: 308
|
864
|
+
name: Fetiaska
|
865
|
+
|
866
|
+
Cannonau1:
|
867
|
+
id: 174
|
868
|
+
grape_id: 221
|
869
|
+
name: Cannonau
|
870
|
+
|
871
|
+
Pinot Bianco 1:
|
872
|
+
id: 175
|
873
|
+
grape_id: 88
|
874
|
+
name: Pinot Bianco
|
875
|
+
|
876
|
+
Bonarda0:
|
877
|
+
id: 176
|
878
|
+
grape_id: NULL
|
879
|
+
name: Bonarda
|
880
|
+
|
881
|
+
Parč0:
|
882
|
+
id: 177
|
883
|
+
grape_id: NULL
|
884
|
+
name: Parč
|
885
|
+
|
886
|
+
Grenache Gris0:
|
887
|
+
id: 178
|
888
|
+
grape_id: NULL
|
889
|
+
name: Grenache Gris
|
890
|
+
|
891
|
+
Agiorgitiko0:
|
892
|
+
id: 179
|
893
|
+
grape_id: NULL
|
894
|
+
name: Agiorgitiko
|
895
|
+
|
896
|
+
Muscadelle 1:
|
897
|
+
id: 180
|
898
|
+
grape_id: 322
|
899
|
+
name: Muscadelle
|
900
|
+
|
901
|
+
Clairette0:
|
902
|
+
id: 181
|
903
|
+
grape_id: NULL
|
904
|
+
name: Clairette
|
905
|
+
|
906
|
+
Aglianico0:
|
907
|
+
id: 182
|
908
|
+
grape_id: NULL
|
909
|
+
name: Aglianico
|
910
|
+
|
911
|
+
Greco Bianco0:
|
912
|
+
id: 183
|
913
|
+
grape_id: NULL
|
914
|
+
name: Greco Bianco
|
915
|
+
|
916
|
+
Moscatell 1:
|
917
|
+
id: 184
|
918
|
+
grape_id: 322
|
919
|
+
name: Moscatell
|
920
|
+
|
921
|
+
Silvaner 0:
|
922
|
+
id: 185
|
923
|
+
grape_id: NULL
|
924
|
+
name: Silvaner
|
925
|
+
|
926
|
+
Schiras1:
|
927
|
+
id: 186
|
928
|
+
grape_id: 390
|
929
|
+
name: Schiras
|
930
|
+
|
931
|
+
Müllerebe1:
|
932
|
+
id: 187
|
933
|
+
grape_id: 211
|
934
|
+
name: Müllerebe
|
935
|
+
|
936
|
+
Ansonica0:
|
937
|
+
id: 188
|
938
|
+
grape_id: NULL
|
939
|
+
name: Ansonica
|
940
|
+
|
941
|
+
Hárslevelű0:
|
942
|
+
id: 189
|
943
|
+
grape_id: NULL
|
944
|
+
name: Hárslevelű
|
945
|
+
|
946
|
+
Doradillo0:
|
947
|
+
id: 190
|
948
|
+
grape_id: NULL
|
949
|
+
name: Doradillo
|
950
|
+
|
951
|
+
Rubired0:
|
952
|
+
id: 191
|
953
|
+
grape_id: NULL
|
954
|
+
name: Rubired
|
955
|
+
|
956
|
+
Alcañón 1:
|
957
|
+
id: 192
|
958
|
+
grape_id: 257
|
959
|
+
name: Alcañón
|
960
|
+
|
961
|
+
Malagousia0:
|
962
|
+
id: 193
|
963
|
+
grape_id: NULL
|
964
|
+
name: Malagousia
|
965
|
+
|
966
|
+
Castiglione0:
|
967
|
+
id: 194
|
968
|
+
grape_id: NULL
|
969
|
+
name: Castiglione
|
970
|
+
|
971
|
+
Cabernet Franc0:
|
972
|
+
id: 195
|
973
|
+
grape_id: NULL
|
974
|
+
name: Cabernet Franc
|
975
|
+
|
976
|
+
Trollinger1:
|
977
|
+
id: 196
|
978
|
+
grape_id: 133
|
979
|
+
name: Trollinger
|
980
|
+
|
981
|
+
Grillo0:
|
982
|
+
id: 197
|
983
|
+
grape_id: NULL
|
984
|
+
name: Grillo
|
985
|
+
|
986
|
+
Sercial 0:
|
987
|
+
id: 198
|
988
|
+
grape_id: NULL
|
989
|
+
name: Sercial
|
990
|
+
|
991
|
+
Moscatel de Setúbal1:
|
992
|
+
id: 199
|
993
|
+
grape_id: 322
|
994
|
+
name: Moscatel de Setúbal
|
995
|
+
|
996
|
+
Arneis0:
|
997
|
+
id: 200
|
998
|
+
grape_id: NULL
|
999
|
+
name: Arneis
|
1000
|
+
|
1001
|
+
Verdelho 0:
|
1002
|
+
id: 201
|
1003
|
+
grape_id: NULL
|
1004
|
+
name: Verdelho
|
1005
|
+
|
1006
|
+
Candive1:
|
1007
|
+
id: 202
|
1008
|
+
grape_id: 390
|
1009
|
+
name: Candive
|
1010
|
+
|
1011
|
+
Malvar0:
|
1012
|
+
id: 203
|
1013
|
+
grape_id: NULL
|
1014
|
+
name: Malvar
|
1015
|
+
|
1016
|
+
Sirac1:
|
1017
|
+
id: 204
|
1018
|
+
grape_id: 390
|
1019
|
+
name: Sirac
|
1020
|
+
|
1021
|
+
Mujuretuli0:
|
1022
|
+
id: 205
|
1023
|
+
grape_id: NULL
|
1024
|
+
name: Mujuretuli
|
1025
|
+
|
1026
|
+
Maria Gomes 0:
|
1027
|
+
id: 206
|
1028
|
+
grape_id: NULL
|
1029
|
+
name: Maria Gomes
|
1030
|
+
|
1031
|
+
Mammolino0:
|
1032
|
+
id: 207
|
1033
|
+
grape_id: NULL
|
1034
|
+
name: Mammolino
|
1035
|
+
|
1036
|
+
Merlot0:
|
1037
|
+
id: 208
|
1038
|
+
grape_id: NULL
|
1039
|
+
name: Merlot
|
1040
|
+
|
1041
|
+
Vitovska0:
|
1042
|
+
id: 209
|
1043
|
+
grape_id: NULL
|
1044
|
+
name: Vitovska
|
1045
|
+
|
1046
|
+
Calitor0:
|
1047
|
+
id: 210
|
1048
|
+
grape_id: NULL
|
1049
|
+
name: Calitor
|
1050
|
+
|
1051
|
+
Pinot Meunier 0:
|
1052
|
+
id: 211
|
1053
|
+
grape_id: NULL
|
1054
|
+
name: Pinot Meunier
|
1055
|
+
|
1056
|
+
Bogdanuša0:
|
1057
|
+
id: 212
|
1058
|
+
grape_id: NULL
|
1059
|
+
name: Bogdanuša
|
1060
|
+
|
1061
|
+
Rivaner1:
|
1062
|
+
id: 213
|
1063
|
+
grape_id: 381
|
1064
|
+
name: Rivaner
|
1065
|
+
|
1066
|
+
Juhfark0:
|
1067
|
+
id: 214
|
1068
|
+
grape_id: NULL
|
1069
|
+
name: Juhfark
|
1070
|
+
|
1071
|
+
Wildbacher0:
|
1072
|
+
id: 215
|
1073
|
+
grape_id: NULL
|
1074
|
+
name: Wildbacher
|
1075
|
+
|
1076
|
+
Kalecik Karasi0:
|
1077
|
+
id: 216
|
1078
|
+
grape_id: NULL
|
1079
|
+
name: Kalecik Karasi
|
1080
|
+
|
1081
|
+
Lemberger 1:
|
1082
|
+
id: 217
|
1083
|
+
grape_id: 69
|
1084
|
+
name: Lemberger
|
1085
|
+
|
1086
|
+
Montepulciano0:
|
1087
|
+
id: 218
|
1088
|
+
grape_id: NULL
|
1089
|
+
name: Montepulciano
|
1090
|
+
|
1091
|
+
Molinara0:
|
1092
|
+
id: 219
|
1093
|
+
grape_id: NULL
|
1094
|
+
name: Molinara
|
1095
|
+
|
1096
|
+
Zierfandler1:
|
1097
|
+
id: 220
|
1098
|
+
grape_id: 61
|
1099
|
+
name: Zierfandler
|
1100
|
+
|
1101
|
+
Garnatxa 0:
|
1102
|
+
id: 221
|
1103
|
+
grape_id: NULL
|
1104
|
+
name: Garnatxa
|
1105
|
+
|
1106
|
+
Bouvier0:
|
1107
|
+
id: 222
|
1108
|
+
grape_id: NULL
|
1109
|
+
name: Bouvier
|
1110
|
+
|
1111
|
+
Vranac0:
|
1112
|
+
id: 223
|
1113
|
+
grape_id: NULL
|
1114
|
+
name: Vranac
|
1115
|
+
|
1116
|
+
Carménère0:
|
1117
|
+
id: 224
|
1118
|
+
grape_id: NULL
|
1119
|
+
name: Carménère
|
1120
|
+
|
1121
|
+
Knipperle 0:
|
1122
|
+
id: 225
|
1123
|
+
grape_id: NULL
|
1124
|
+
name: Knipperle
|
1125
|
+
|
1126
|
+
Welschriesling 0:
|
1127
|
+
id: 226
|
1128
|
+
grape_id: NULL
|
1129
|
+
name: Welschriesling
|
1130
|
+
|
1131
|
+
Burger 0:
|
1132
|
+
id: 227
|
1133
|
+
grape_id: NULL
|
1134
|
+
name: Burger
|
1135
|
+
|
1136
|
+
Melon de Bourgogne 0:
|
1137
|
+
id: 228
|
1138
|
+
grape_id: NULL
|
1139
|
+
name: Melon de Bourgogne
|
1140
|
+
|
1141
|
+
Treixadura 0:
|
1142
|
+
id: 229
|
1143
|
+
grape_id: NULL
|
1144
|
+
name: Treixadura
|
1145
|
+
|
1146
|
+
Melon de Bourgogne1:
|
1147
|
+
id: 230
|
1148
|
+
grape_id: 44
|
1149
|
+
name: Melon de Bourgogne
|
1150
|
+
|
1151
|
+
Moschofilero0:
|
1152
|
+
id: 231
|
1153
|
+
grape_id: NULL
|
1154
|
+
name: Moschofilero
|
1155
|
+
|
1156
|
+
Muscat Frontignan 1:
|
1157
|
+
id: 232
|
1158
|
+
grape_id: 322
|
1159
|
+
name: Muscat Frontignan
|
1160
|
+
|
1161
|
+
Loureira0:
|
1162
|
+
id: 233
|
1163
|
+
grape_id: NULL
|
1164
|
+
name: Loureira
|
1165
|
+
|
1166
|
+
Tannat0:
|
1167
|
+
id: 234
|
1168
|
+
grape_id: NULL
|
1169
|
+
name: Tannat
|
1170
|
+
|
1171
|
+
Arinto0:
|
1172
|
+
id: 235
|
1173
|
+
grape_id: NULL
|
1174
|
+
name: Arinto
|
1175
|
+
|
1176
|
+
Airén 0:
|
1177
|
+
id: 236
|
1178
|
+
grape_id: NULL
|
1179
|
+
name: Airén
|
1180
|
+
|
1181
|
+
Lambrusco0:
|
1182
|
+
id: 237
|
1183
|
+
grape_id: NULL
|
1184
|
+
name: Lambrusco
|
1185
|
+
|
1186
|
+
Nero d'Avola0:
|
1187
|
+
id: 238
|
1188
|
+
grape_id: NULL
|
1189
|
+
name: Nero d'Avola
|
1190
|
+
|
1191
|
+
Abouriou1:
|
1192
|
+
id: 239
|
1193
|
+
grape_id: 283
|
1194
|
+
name: Abouriou
|
1195
|
+
|
1196
|
+
Rufeta1:
|
1197
|
+
id: 240
|
1198
|
+
grape_id: 57
|
1199
|
+
name: Rufeta
|
1200
|
+
|
1201
|
+
Bobal0:
|
1202
|
+
id: 241
|
1203
|
+
grape_id: NULL
|
1204
|
+
name: Bobal
|
1205
|
+
|
1206
|
+
Croatina0:
|
1207
|
+
id: 242
|
1208
|
+
grape_id: NULL
|
1209
|
+
name: Croatina
|
1210
|
+
|
1211
|
+
Rondinella0:
|
1212
|
+
id: 243
|
1213
|
+
grape_id: NULL
|
1214
|
+
name: Rondinella
|
1215
|
+
|
1216
|
+
Bastardo 0:
|
1217
|
+
id: 244
|
1218
|
+
grape_id: NULL
|
1219
|
+
name: Bastardo
|
1220
|
+
|
1221
|
+
Grasă de Cotnari0:
|
1222
|
+
id: 245
|
1223
|
+
grape_id: NULL
|
1224
|
+
name: Grasă de Cotnari
|
1225
|
+
|
1226
|
+
Petit Meslier0:
|
1227
|
+
id: 246
|
1228
|
+
grape_id: NULL
|
1229
|
+
name: Petit Meslier
|
1230
|
+
|
1231
|
+
Gamay Noir1:
|
1232
|
+
id: 247
|
1233
|
+
grape_id: 401
|
1234
|
+
name: Gamay Noir
|
1235
|
+
|
1236
|
+
Xynisteri0:
|
1237
|
+
id: 248
|
1238
|
+
grape_id: NULL
|
1239
|
+
name: Xynisteri
|
1240
|
+
|
1241
|
+
Escanyavella1:
|
1242
|
+
id: 249
|
1243
|
+
grape_id: 169
|
1244
|
+
name: Escanyavella
|
1245
|
+
|
1246
|
+
Sauvignon Vert1:
|
1247
|
+
id: 250
|
1248
|
+
grape_id: 322
|
1249
|
+
name: Sauvignon Vert
|
1250
|
+
|
1251
|
+
Mtsvane0:
|
1252
|
+
id: 251
|
1253
|
+
grape_id: NULL
|
1254
|
+
name: Mtsvane
|
1255
|
+
|
1256
|
+
Lazki Rizling1:
|
1257
|
+
id: 252
|
1258
|
+
grape_id: 226
|
1259
|
+
name: Lazki Rizling
|
1260
|
+
|
1261
|
+
Cserszegi Fűszeres0:
|
1262
|
+
id: 253
|
1263
|
+
grape_id: NULL
|
1264
|
+
name: Cserszegi Fűszeres
|
1265
|
+
|
1266
|
+
Xarello1:
|
1267
|
+
id: 254
|
1268
|
+
grape_id: 56
|
1269
|
+
name: Xarello
|
1270
|
+
|
1271
|
+
Klein Rauschling1:
|
1272
|
+
id: 255
|
1273
|
+
grape_id: 225
|
1274
|
+
name: Klein Rauschling
|
1275
|
+
|
1276
|
+
Smederevka0:
|
1277
|
+
id: 256
|
1278
|
+
grape_id: NULL
|
1279
|
+
name: Smederevka
|
1280
|
+
|
1281
|
+
Macabeo 0:
|
1282
|
+
id: 257
|
1283
|
+
grape_id: NULL
|
1284
|
+
name: Macabeo
|
1285
|
+
|
1286
|
+
St. Laurent 0:
|
1287
|
+
id: 258
|
1288
|
+
grape_id: NULL
|
1289
|
+
name: St. Laurent
|
1290
|
+
|
1291
|
+
Barcelos0:
|
1292
|
+
id: 259
|
1293
|
+
grape_id: NULL
|
1294
|
+
name: Barcelos
|
1295
|
+
|
1296
|
+
Macabeo 1:
|
1297
|
+
id: 260
|
1298
|
+
grape_id: 11
|
1299
|
+
name: Macabeo
|
1300
|
+
|
1301
|
+
Sousão0:
|
1302
|
+
id: 261
|
1303
|
+
grape_id: NULL
|
1304
|
+
name: Sousão
|
1305
|
+
|
1306
|
+
Petit Verdot0:
|
1307
|
+
id: 262
|
1308
|
+
grape_id: NULL
|
1309
|
+
name: Petit Verdot
|
1310
|
+
|
1311
|
+
Pinot Gris1:
|
1312
|
+
id: 263
|
1313
|
+
grape_id: 141
|
1314
|
+
name: Pinot Gris
|
1315
|
+
|
1316
|
+
Mataro1:
|
1317
|
+
id: 264
|
1318
|
+
grape_id: 40
|
1319
|
+
name: Mataro
|
1320
|
+
|
1321
|
+
Ojaleshi0:
|
1322
|
+
id: 265
|
1323
|
+
grape_id: NULL
|
1324
|
+
name: Ojaleshi
|
1325
|
+
|
1326
|
+
Zéta0:
|
1327
|
+
id: 266
|
1328
|
+
grape_id: NULL
|
1329
|
+
name: Zéta
|
1330
|
+
|
1331
|
+
Blauburgunder 1:
|
1332
|
+
id: 267
|
1333
|
+
grape_id: 27
|
1334
|
+
name: Blauburgunder
|
1335
|
+
|
1336
|
+
Roussanne0:
|
1337
|
+
id: 268
|
1338
|
+
grape_id: NULL
|
1339
|
+
name: Roussanne
|
1340
|
+
|
1341
|
+
Rhoditis0:
|
1342
|
+
id: 269
|
1343
|
+
grape_id: NULL
|
1344
|
+
name: Rhoditis
|
1345
|
+
|
1346
|
+
Alvarelhão0:
|
1347
|
+
id: 270
|
1348
|
+
grape_id: NULL
|
1349
|
+
name: Alvarelhão
|
1350
|
+
|
1351
|
+
Grenache Blanc0:
|
1352
|
+
id: 271
|
1353
|
+
grape_id: NULL
|
1354
|
+
name: Grenache Blanc
|
1355
|
+
|
1356
|
+
Charbono0:
|
1357
|
+
id: 272
|
1358
|
+
grape_id: NULL
|
1359
|
+
name: Charbono
|
1360
|
+
|
1361
|
+
Ortega0:
|
1362
|
+
id: 273
|
1363
|
+
grape_id: NULL
|
1364
|
+
name: Ortega
|
1365
|
+
|
1366
|
+
Würzer0:
|
1367
|
+
id: 274
|
1368
|
+
grape_id: NULL
|
1369
|
+
name: Würzer
|
1370
|
+
|
1371
|
+
Sémillon0:
|
1372
|
+
id: 275
|
1373
|
+
grape_id: NULL
|
1374
|
+
name: Sémillon
|
1375
|
+
|
1376
|
+
Incrocio Manzoni0:
|
1377
|
+
id: 276
|
1378
|
+
grape_id: NULL
|
1379
|
+
name: Incrocio Manzoni
|
1380
|
+
|
1381
|
+
Tinta Roriz 1:
|
1382
|
+
id: 277
|
1383
|
+
grape_id: 340
|
1384
|
+
name: Tinta Roriz
|
1385
|
+
|
1386
|
+
Cot1:
|
1387
|
+
id: 278
|
1388
|
+
grape_id: 160
|
1389
|
+
name: Cot
|
1390
|
+
|
1391
|
+
Verdia1:
|
1392
|
+
id: 279
|
1393
|
+
grape_id: 113
|
1394
|
+
name: Verdia
|
1395
|
+
|
1396
|
+
Cerceal1:
|
1397
|
+
id: 280
|
1398
|
+
grape_id: 198
|
1399
|
+
name: Cerceal
|
1400
|
+
|
1401
|
+
Symphony0:
|
1402
|
+
id: 281
|
1403
|
+
grape_id: NULL
|
1404
|
+
name: Symphony
|
1405
|
+
|
1406
|
+
Len de l'El0:
|
1407
|
+
id: 282
|
1408
|
+
grape_id: NULL
|
1409
|
+
name: Len de l'El
|
1410
|
+
|
1411
|
+
Acolon0:
|
1412
|
+
id: 283
|
1413
|
+
grape_id: NULL
|
1414
|
+
name: Acolon
|
1415
|
+
|
1416
|
+
Marsanne Noir1:
|
1417
|
+
id: 284
|
1418
|
+
grape_id: 390
|
1419
|
+
name: Marsanne Noir
|
1420
|
+
|
1421
|
+
Vilana0:
|
1422
|
+
id: 285
|
1423
|
+
grape_id: NULL
|
1424
|
+
name: Vilana
|
1425
|
+
|
1426
|
+
Bual 0:
|
1427
|
+
id: 286
|
1428
|
+
grape_id: NULL
|
1429
|
+
name: Bual
|
1430
|
+
|
1431
|
+
Ezerjó0:
|
1432
|
+
id: 287
|
1433
|
+
grape_id: NULL
|
1434
|
+
name: Ezerjó
|
1435
|
+
|
1436
|
+
Négrette0:
|
1437
|
+
id: 288
|
1438
|
+
grape_id: NULL
|
1439
|
+
name: Négrette
|
1440
|
+
|
1441
|
+
Gouais blanc0:
|
1442
|
+
id: 289
|
1443
|
+
grape_id: NULL
|
1444
|
+
name: Gouais blanc
|
1445
|
+
|
1446
|
+
Pignerol0:
|
1447
|
+
id: 290
|
1448
|
+
grape_id: NULL
|
1449
|
+
name: Pignerol
|
1450
|
+
|
1451
|
+
Gellewza0:
|
1452
|
+
id: 291
|
1453
|
+
grape_id: NULL
|
1454
|
+
name: Gellewza
|
1455
|
+
|
1456
|
+
Rotgipfler0:
|
1457
|
+
id: 292
|
1458
|
+
grape_id: NULL
|
1459
|
+
name: Rotgipfler
|
1460
|
+
|
1461
|
+
Cabernet Sauvignon0:
|
1462
|
+
id: 293
|
1463
|
+
grape_id: NULL
|
1464
|
+
name: Cabernet Sauvignon
|
1465
|
+
|
1466
|
+
Tokay1:
|
1467
|
+
id: 294
|
1468
|
+
grape_id: 322
|
1469
|
+
name: Tokay
|
1470
|
+
|
1471
|
+
Castelão 0:
|
1472
|
+
id: 295
|
1473
|
+
grape_id: NULL
|
1474
|
+
name: Castelão
|
1475
|
+
|
1476
|
+
Amigne0:
|
1477
|
+
id: 296
|
1478
|
+
grape_id: NULL
|
1479
|
+
name: Amigne
|
1480
|
+
|
1481
|
+
Parellada0:
|
1482
|
+
id: 297
|
1483
|
+
grape_id: NULL
|
1484
|
+
name: Parellada
|
1485
|
+
|
1486
|
+
Nerello Cappuccio0:
|
1487
|
+
id: 298
|
1488
|
+
grape_id: NULL
|
1489
|
+
name: Nerello Cappuccio
|
1490
|
+
|
1491
|
+
Rheinriesling 1:
|
1492
|
+
id: 299
|
1493
|
+
grape_id: 10
|
1494
|
+
name: Rheinriesling
|
1495
|
+
|
1496
|
+
Blauer Portugieser 0:
|
1497
|
+
id: 300
|
1498
|
+
grape_id: NULL
|
1499
|
+
name: Blauer Portugieser
|
1500
|
+
|
1501
|
+
Chenin Blanc 0:
|
1502
|
+
id: 301
|
1503
|
+
grape_id: NULL
|
1504
|
+
name: Chenin Blanc
|
1505
|
+
|
1506
|
+
Azal Espanhol 1:
|
1507
|
+
id: 302
|
1508
|
+
grape_id: 26
|
1509
|
+
name: Azal Espanhol
|
1510
|
+
|
1511
|
+
Optima0:
|
1512
|
+
id: 303
|
1513
|
+
grape_id: NULL
|
1514
|
+
name: Optima
|
1515
|
+
|
1516
|
+
Kratosija0:
|
1517
|
+
id: 304
|
1518
|
+
grape_id: NULL
|
1519
|
+
name: Kratosija
|
1520
|
+
|
1521
|
+
Fernão Pires1:
|
1522
|
+
id: 305
|
1523
|
+
grape_id: 206
|
1524
|
+
name: Fernão Pires
|
1525
|
+
|
1526
|
+
Malvasia0:
|
1527
|
+
id: 306
|
1528
|
+
grape_id: NULL
|
1529
|
+
name: Malvasia
|
1530
|
+
|
1531
|
+
Plavac Mali0:
|
1532
|
+
id: 307
|
1533
|
+
grape_id: NULL
|
1534
|
+
name: Plavac Mali
|
1535
|
+
|
1536
|
+
Fetească Albă 0:
|
1537
|
+
id: 308
|
1538
|
+
grape_id: NULL
|
1539
|
+
name: Fetească Albă
|
1540
|
+
|
1541
|
+
Garnacha 1:
|
1542
|
+
id: 309
|
1543
|
+
grape_id: 221
|
1544
|
+
name: Garnacha
|
1545
|
+
|
1546
|
+
Marsigliana0:
|
1547
|
+
id: 310
|
1548
|
+
grape_id: NULL
|
1549
|
+
name: Marsigliana
|
1550
|
+
|
1551
|
+
Periquita1:
|
1552
|
+
id: 311
|
1553
|
+
grape_id: 295
|
1554
|
+
name: Periquita
|
1555
|
+
|
1556
|
+
Monica0:
|
1557
|
+
id: 312
|
1558
|
+
grape_id: NULL
|
1559
|
+
name: Monica
|
1560
|
+
|
1561
|
+
Perle0:
|
1562
|
+
id: 313
|
1563
|
+
grape_id: NULL
|
1564
|
+
name: Perle
|
1565
|
+
|
1566
|
+
Moscatel Branco1:
|
1567
|
+
id: 314
|
1568
|
+
grape_id: 322
|
1569
|
+
name: Moscatel Branco
|
1570
|
+
|
1571
|
+
Flora0:
|
1572
|
+
id: 315
|
1573
|
+
grape_id: NULL
|
1574
|
+
name: Flora
|
1575
|
+
|
1576
|
+
Tinta Pinheira 1:
|
1577
|
+
id: 316
|
1578
|
+
grape_id: 57
|
1579
|
+
name: Tinta Pinheira
|
1580
|
+
|
1581
|
+
Bordelesa Zuri1:
|
1582
|
+
id: 317
|
1583
|
+
grape_id: 103
|
1584
|
+
name: Bordelesa Zuri
|
1585
|
+
|
1586
|
+
Tinta Cão0:
|
1587
|
+
id: 318
|
1588
|
+
grape_id: NULL
|
1589
|
+
name: Tinta Cão
|
1590
|
+
|
1591
|
+
Roriz0:
|
1592
|
+
id: 319
|
1593
|
+
grape_id: NULL
|
1594
|
+
name: Roriz
|
1595
|
+
|
1596
|
+
Aragones0:
|
1597
|
+
id: 320
|
1598
|
+
grape_id: NULL
|
1599
|
+
name: Aragones
|
1600
|
+
|
1601
|
+
Brunello1:
|
1602
|
+
id: 321
|
1603
|
+
grape_id: 142
|
1604
|
+
name: Brunello
|
1605
|
+
|
1606
|
+
Muscat 0:
|
1607
|
+
id: 322
|
1608
|
+
grape_id: NULL
|
1609
|
+
name: Muscat
|
1610
|
+
|
1611
|
+
Nocera0:
|
1612
|
+
id: 323
|
1613
|
+
grape_id: NULL
|
1614
|
+
name: Nocera
|
1615
|
+
|
1616
|
+
Biancone0:
|
1617
|
+
id: 324
|
1618
|
+
grape_id: NULL
|
1619
|
+
name: Biancone
|
1620
|
+
|
1621
|
+
Faber0:
|
1622
|
+
id: 325
|
1623
|
+
grape_id: NULL
|
1624
|
+
name: Faber
|
1625
|
+
|
1626
|
+
Ehrenfelser0:
|
1627
|
+
id: 326
|
1628
|
+
grape_id: NULL
|
1629
|
+
name: Ehrenfelser
|
1630
|
+
|
1631
|
+
Savagnin Rosé1:
|
1632
|
+
id: 327
|
1633
|
+
grape_id: 420
|
1634
|
+
name: Savagnin Rosé
|
1635
|
+
|
1636
|
+
Sereksia0:
|
1637
|
+
id: 328
|
1638
|
+
grape_id: NULL
|
1639
|
+
name: Sereksia
|
1640
|
+
|
1641
|
+
Lagrein0:
|
1642
|
+
id: 329
|
1643
|
+
grape_id: NULL
|
1644
|
+
name: Lagrein
|
1645
|
+
|
1646
|
+
Albariño 0:
|
1647
|
+
id: 330
|
1648
|
+
grape_id: NULL
|
1649
|
+
name: Albariño
|
1650
|
+
|
1651
|
+
Sciacarello0:
|
1652
|
+
id: 331
|
1653
|
+
grape_id: NULL
|
1654
|
+
name: Sciacarello
|
1655
|
+
|
1656
|
+
Teroldego0:
|
1657
|
+
id: 332
|
1658
|
+
grape_id: NULL
|
1659
|
+
name: Teroldego
|
1660
|
+
|
1661
|
+
Kerner0:
|
1662
|
+
id: 333
|
1663
|
+
grape_id: NULL
|
1664
|
+
name: Kerner
|
1665
|
+
|
1666
|
+
Touriga Franca 0:
|
1667
|
+
id: 334
|
1668
|
+
grape_id: NULL
|
1669
|
+
name: Touriga Franca
|
1670
|
+
|
1671
|
+
Mayorquin0:
|
1672
|
+
id: 335
|
1673
|
+
grape_id: NULL
|
1674
|
+
name: Mayorquin
|
1675
|
+
|
1676
|
+
Petit Manseng 0:
|
1677
|
+
id: 336
|
1678
|
+
grape_id: NULL
|
1679
|
+
name: Petit Manseng
|
1680
|
+
|
1681
|
+
Freisa0:
|
1682
|
+
id: 337
|
1683
|
+
grape_id: NULL
|
1684
|
+
name: Freisa
|
1685
|
+
|
1686
|
+
Aligoté0:
|
1687
|
+
id: 338
|
1688
|
+
grape_id: NULL
|
1689
|
+
name: Aligoté
|
1690
|
+
|
1691
|
+
Fendant 1:
|
1692
|
+
id: 339
|
1693
|
+
grape_id: 78
|
1694
|
+
name: Fendant
|
1695
|
+
|
1696
|
+
Tempranillo 0:
|
1697
|
+
id: 340
|
1698
|
+
grape_id: NULL
|
1699
|
+
name: Tempranillo
|
1700
|
+
|
1701
|
+
Bacchus0:
|
1702
|
+
id: 341
|
1703
|
+
grape_id: NULL
|
1704
|
+
name: Bacchus
|
1705
|
+
|
1706
|
+
Pecorello0:
|
1707
|
+
id: 342
|
1708
|
+
grape_id: NULL
|
1709
|
+
name: Pecorello
|
1710
|
+
|
1711
|
+
Gutedel1:
|
1712
|
+
id: 343
|
1713
|
+
grape_id: 78
|
1714
|
+
name: Gutedel
|
1715
|
+
|
1716
|
+
Prosecco0:
|
1717
|
+
id: 344
|
1718
|
+
grape_id: NULL
|
1719
|
+
name: Prosecco
|
1720
|
+
|
1721
|
+
Folle Blanche 0:
|
1722
|
+
id: 345
|
1723
|
+
grape_id: NULL
|
1724
|
+
name: Folle Blanche
|
1725
|
+
|
1726
|
+
Godello1:
|
1727
|
+
id: 346
|
1728
|
+
grape_id: 201
|
1729
|
+
name: Godello
|
1730
|
+
|
1731
|
+
Brachetto0:
|
1732
|
+
id: 347
|
1733
|
+
grape_id: NULL
|
1734
|
+
name: Brachetto
|
1735
|
+
|
1736
|
+
Troia0:
|
1737
|
+
id: 348
|
1738
|
+
grape_id: NULL
|
1739
|
+
name: Troia
|
1740
|
+
|
1741
|
+
Preto de Mortágua1:
|
1742
|
+
id: 349
|
1743
|
+
grape_id: 26
|
1744
|
+
name: Preto de Mortágua
|
1745
|
+
|
1746
|
+
Ladikino0:
|
1747
|
+
id: 350
|
1748
|
+
grape_id: NULL
|
1749
|
+
name: Ladikino
|
1750
|
+
|
1751
|
+
Auxerrois 1:
|
1752
|
+
id: 351
|
1753
|
+
grape_id: 160
|
1754
|
+
name: Auxerrois
|
1755
|
+
|
1756
|
+
Savatiano0:
|
1757
|
+
id: 352
|
1758
|
+
grape_id: NULL
|
1759
|
+
name: Savatiano
|
1760
|
+
|
1761
|
+
Cortese0:
|
1762
|
+
id: 353
|
1763
|
+
grape_id: NULL
|
1764
|
+
name: Cortese
|
1765
|
+
|
1766
|
+
Trousseau Gris 0:
|
1767
|
+
id: 354
|
1768
|
+
grape_id: NULL
|
1769
|
+
name: Trousseau Gris
|
1770
|
+
|
1771
|
+
Rkatsiteli0:
|
1772
|
+
id: 355
|
1773
|
+
grape_id: NULL
|
1774
|
+
name: Rkatsiteli
|
1775
|
+
|
1776
|
+
Greco Nero0:
|
1777
|
+
id: 356
|
1778
|
+
grape_id: NULL
|
1779
|
+
name: Greco Nero
|
1780
|
+
|
1781
|
+
Nerello Mascalese0:
|
1782
|
+
id: 357
|
1783
|
+
grape_id: NULL
|
1784
|
+
name: Nerello Mascalese
|
1785
|
+
|
1786
|
+
Malvasia Nera0:
|
1787
|
+
id: 358
|
1788
|
+
grape_id: NULL
|
1789
|
+
name: Malvasia Nera
|
1790
|
+
|
1791
|
+
Izkiriota Handi1:
|
1792
|
+
id: 359
|
1793
|
+
grape_id: 134
|
1794
|
+
name: Izkiriota Handi
|
1795
|
+
|
1796
|
+
Tramini1:
|
1797
|
+
id: 360
|
1798
|
+
grape_id: 396
|
1799
|
+
name: Tramini
|
1800
|
+
|
1801
|
+
Szürkebarát1:
|
1802
|
+
id: 361
|
1803
|
+
grape_id: 141
|
1804
|
+
name: Szürkebarát
|
1805
|
+
|
1806
|
+
Carignan 0:
|
1807
|
+
id: 362
|
1808
|
+
grape_id: NULL
|
1809
|
+
name: Carignan
|
1810
|
+
|
1811
|
+
Mencia0:
|
1812
|
+
id: 363
|
1813
|
+
grape_id: NULL
|
1814
|
+
name: Mencia
|
1815
|
+
|
1816
|
+
Pecorino0:
|
1817
|
+
id: 364
|
1818
|
+
grape_id: NULL
|
1819
|
+
name: Pecorino
|
1820
|
+
|
1821
|
+
Mavro0:
|
1822
|
+
id: 365
|
1823
|
+
grape_id: NULL
|
1824
|
+
name: Mavro
|
1825
|
+
|
1826
|
+
Valdiguié0:
|
1827
|
+
id: 366
|
1828
|
+
grape_id: NULL
|
1829
|
+
name: Valdiguié
|
1830
|
+
|
1831
|
+
Grechetto0:
|
1832
|
+
id: 367
|
1833
|
+
grape_id: NULL
|
1834
|
+
name: Grechetto
|
1835
|
+
|
1836
|
+
Viognier0:
|
1837
|
+
id: 368
|
1838
|
+
grape_id: NULL
|
1839
|
+
name: Viognier
|
1840
|
+
|
1841
|
+
Crljenak Kaštelanski 1:
|
1842
|
+
id: 369
|
1843
|
+
grape_id: 411
|
1844
|
+
name: Crljenak Kaštelanski
|
1845
|
+
|
1846
|
+
Magliocco0:
|
1847
|
+
id: 370
|
1848
|
+
grape_id: NULL
|
1849
|
+
name: Magliocco
|
1850
|
+
|
1851
|
+
Morio-Muskat0:
|
1852
|
+
id: 371
|
1853
|
+
grape_id: NULL
|
1854
|
+
name: Morio-Muskat
|
1855
|
+
|
1856
|
+
Mavrodafni0:
|
1857
|
+
id: 372
|
1858
|
+
grape_id: NULL
|
1859
|
+
name: Mavrodafni
|
1860
|
+
|
1861
|
+
Grenache 1:
|
1862
|
+
id: 373
|
1863
|
+
grape_id: 221
|
1864
|
+
name: Grenache
|
1865
|
+
|
1866
|
+
Pais0:
|
1867
|
+
id: 374
|
1868
|
+
grape_id: NULL
|
1869
|
+
name: Pais
|
1870
|
+
|
1871
|
+
Tarrango0:
|
1872
|
+
id: 375
|
1873
|
+
grape_id: NULL
|
1874
|
+
name: Tarrango
|
1875
|
+
|
1876
|
+
Rabigato0:
|
1877
|
+
id: 376
|
1878
|
+
grape_id: NULL
|
1879
|
+
name: Rabigato
|
1880
|
+
|
1881
|
+
Sagrantino0:
|
1882
|
+
id: 377
|
1883
|
+
grape_id: NULL
|
1884
|
+
name: Sagrantino
|
1885
|
+
|
1886
|
+
Marsanne0:
|
1887
|
+
id: 378
|
1888
|
+
grape_id: NULL
|
1889
|
+
name: Marsanne
|
1890
|
+
|
1891
|
+
Grecanico0:
|
1892
|
+
id: 379
|
1893
|
+
grape_id: NULL
|
1894
|
+
name: Grecanico
|
1895
|
+
|
1896
|
+
Syra1:
|
1897
|
+
id: 380
|
1898
|
+
grape_id: 390
|
1899
|
+
name: Syra
|
1900
|
+
|
1901
|
+
Müller-Thurgau 0:
|
1902
|
+
id: 381
|
1903
|
+
grape_id: NULL
|
1904
|
+
name: Müller-Thurgau
|
1905
|
+
|
1906
|
+
Taminga0:
|
1907
|
+
id: 382
|
1908
|
+
grape_id: NULL
|
1909
|
+
name: Taminga
|
1910
|
+
|
1911
|
+
Oseleta0:
|
1912
|
+
id: 383
|
1913
|
+
grape_id: NULL
|
1914
|
+
name: Oseleta
|
1915
|
+
|
1916
|
+
Ancellotta0:
|
1917
|
+
id: 384
|
1918
|
+
grape_id: NULL
|
1919
|
+
name: Ancellotta
|
1920
|
+
|
1921
|
+
Antourenein Noir1:
|
1922
|
+
id: 385
|
1923
|
+
grape_id: 390
|
1924
|
+
name: Antourenein Noir
|
1925
|
+
|
1926
|
+
Catarratto0:
|
1927
|
+
id: 386
|
1928
|
+
grape_id: NULL
|
1929
|
+
name: Catarratto
|
1930
|
+
|
1931
|
+
Pinot Nero1:
|
1932
|
+
id: 387
|
1933
|
+
grape_id: 27
|
1934
|
+
name: Pinot Nero
|
1935
|
+
|
1936
|
+
Muskateller 1:
|
1937
|
+
id: 388
|
1938
|
+
grape_id: 322
|
1939
|
+
name: Muskateller
|
1940
|
+
|
1941
|
+
Ruché0:
|
1942
|
+
id: 389
|
1943
|
+
grape_id: NULL
|
1944
|
+
name: Ruché
|
1945
|
+
|
1946
|
+
Shiraz 0:
|
1947
|
+
id: 390
|
1948
|
+
grape_id: NULL
|
1949
|
+
name: Shiraz
|
1950
|
+
|
1951
|
+
Rolle1:
|
1952
|
+
id: 391
|
1953
|
+
grape_id: 421
|
1954
|
+
name: Rolle
|
1955
|
+
|
1956
|
+
Xuri Zerratua 1:
|
1957
|
+
id: 392
|
1958
|
+
grape_id: 103
|
1959
|
+
name: Xuri Zerratua
|
1960
|
+
|
1961
|
+
Reichensteiner0:
|
1962
|
+
id: 393
|
1963
|
+
grape_id: NULL
|
1964
|
+
name: Reichensteiner
|
1965
|
+
|
1966
|
+
Alvarinho 1:
|
1967
|
+
id: 394
|
1968
|
+
grape_id: 330
|
1969
|
+
name: Alvarinho
|
1970
|
+
|
1971
|
+
Torrontés0:
|
1972
|
+
id: 395
|
1973
|
+
grape_id: NULL
|
1974
|
+
name: Torrontés
|
1975
|
+
|
1976
|
+
Gewürztraminer 0:
|
1977
|
+
id: 396
|
1978
|
+
grape_id: NULL
|
1979
|
+
name: Gewürztraminer
|
1980
|
+
|
1981
|
+
Saperavi0:
|
1982
|
+
id: 397
|
1983
|
+
grape_id: NULL
|
1984
|
+
name: Saperavi
|
1985
|
+
|
1986
|
+
Zweigeltrebe 1:
|
1987
|
+
id: 398
|
1988
|
+
grape_id: 91
|
1989
|
+
name: Zweigeltrebe
|
1990
|
+
|
1991
|
+
Klevener de Heiligenstein 1:
|
1992
|
+
id: 399
|
1993
|
+
grape_id: 420
|
1994
|
+
name: Klevener de Heiligenstein
|
1995
|
+
|
1996
|
+
Dobričić0:
|
1997
|
+
id: 400
|
1998
|
+
grape_id: NULL
|
1999
|
+
name: Dobričić
|
2000
|
+
|
2001
|
+
Gamay 0:
|
2002
|
+
id: 401
|
2003
|
+
grape_id: NULL
|
2004
|
+
name: Gamay
|
2005
|
+
|
2006
|
+
Bical0:
|
2007
|
+
id: 402
|
2008
|
+
grape_id: NULL
|
2009
|
+
name: Bical
|
2010
|
+
|
2011
|
+
Pedro Ximénez 0:
|
2012
|
+
id: 403
|
2013
|
+
grape_id: NULL
|
2014
|
+
name: Pedro Ximénez
|
2015
|
+
|
2016
|
+
Auxerrois Blanc0:
|
2017
|
+
id: 404
|
2018
|
+
grape_id: NULL
|
2019
|
+
name: Auxerrois Blanc
|
2020
|
+
|
2021
|
+
Krstač0:
|
2022
|
+
id: 405
|
2023
|
+
grape_id: NULL
|
2024
|
+
name: Krstač
|
2025
|
+
|
2026
|
+
Huxelrebe 0:
|
2027
|
+
id: 406
|
2028
|
+
grape_id: NULL
|
2029
|
+
name: Huxelrebe
|
2030
|
+
|
2031
|
+
Fetească Neagră0:
|
2032
|
+
id: 407
|
2033
|
+
grape_id: NULL
|
2034
|
+
name: Fetească Neagră
|
2035
|
+
|
2036
|
+
Siegerrebe0:
|
2037
|
+
id: 408
|
2038
|
+
grape_id: NULL
|
2039
|
+
name: Siegerrebe
|
2040
|
+
|
2041
|
+
Klevner 1:
|
2042
|
+
id: 409
|
2043
|
+
grape_id: 88
|
2044
|
+
name: Klevner
|
2045
|
+
|
2046
|
+
Österreicher1:
|
2047
|
+
id: 410
|
2048
|
+
grape_id: 185
|
2049
|
+
name: Österreicher
|
2050
|
+
|
2051
|
+
Zinfandel 0:
|
2052
|
+
id: 411
|
2053
|
+
grape_id: NULL
|
2054
|
+
name: Zinfandel
|
2055
|
+
|
2056
|
+
Mosler 1:
|
2057
|
+
id: 412
|
2058
|
+
grape_id: 167
|
2059
|
+
name: Mosler
|
2060
|
+
|
2061
|
+
Sauvignon Blanc0:
|
2062
|
+
id: 413
|
2063
|
+
grape_id: NULL
|
2064
|
+
name: Sauvignon Blanc
|
2065
|
+
|
2066
|
+
Valdepeñas1:
|
2067
|
+
id: 414
|
2068
|
+
grape_id: 236
|
2069
|
+
name: Valdepeñas
|
2070
|
+
|
2071
|
+
Grignolino0:
|
2072
|
+
id: 415
|
2073
|
+
grape_id: NULL
|
2074
|
+
name: Grignolino
|
2075
|
+
|
2076
|
+
Olaszrizling 1:
|
2077
|
+
id: 416
|
2078
|
+
grape_id: 226
|
2079
|
+
name: Olaszrizling
|
2080
|
+
|
2081
|
+
Greco0:
|
2082
|
+
id: 417
|
2083
|
+
grape_id: NULL
|
2084
|
+
name: Greco
|
2085
|
+
|
2086
|
+
Mauzac0:
|
2087
|
+
id: 418
|
2088
|
+
grape_id: NULL
|
2089
|
+
name: Mauzac
|
2090
|
+
|
2091
|
+
Nebbiolo0:
|
2092
|
+
id: 419
|
2093
|
+
grape_id: NULL
|
2094
|
+
name: Nebbiolo
|
2095
|
+
|
2096
|
+
Savagnin 0:
|
2097
|
+
id: 420
|
2098
|
+
grape_id: NULL
|
2099
|
+
name: Savagnin
|
2100
|
+
|
2101
|
+
Vermentino 0:
|
2102
|
+
id: 421
|
2103
|
+
grape_id: NULL
|
2104
|
+
name: Vermentino
|
2105
|
+
|
2106
|
+
Friulano0:
|
2107
|
+
id: 422
|
2108
|
+
grape_id: NULL
|
2109
|
+
name: Friulano
|
2110
|
+
|
2111
|
+
Borgonja Crna0:
|
2112
|
+
id: 423
|
2113
|
+
grape_id: NULL
|
2114
|
+
name: Borgonja Crna
|
2115
|
+
|
2116
|
+
Schönburger0:
|
2117
|
+
id: 424
|
2118
|
+
grape_id: NULL
|
2119
|
+
name: Schönburger
|
2120
|
+
|
2121
|
+
Irsai Oliver0:
|
2122
|
+
id: 425
|
2123
|
+
grape_id: NULL
|
2124
|
+
name: Irsai Oliver
|
2125
|
+
|
2126
|
+
Trousseau1:
|
2127
|
+
id: 426
|
2128
|
+
grape_id: 244
|
2129
|
+
name: Trousseau
|
2130
|
+
|
2131
|
+
Macabeu 1:
|
2132
|
+
id: 427
|
2133
|
+
grape_id: 257
|
2134
|
+
name: Macabeu
|
2135
|
+
|