-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.yml
12189 lines (12188 loc) · 293 KB
/
data.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Article:
Article_1:
name: Barbar
img: barbar.jpg
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '8'
created_at: '2013-08-28 21:05:37'
updated_at: '2013-11-25 14:44:16'
slug: barbar
Article_2:
name: 'Westmalle Triple'
img: westmalle.gif
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '6'
created_at: '2013-08-28 21:05:37'
updated_at: '2013-11-19 23:14:40'
slug: westmalle
Article_3:
name: 'Bush ambrée'
img: bush.jpg
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '4'
created_at: '2013-08-28 21:05:37'
updated_at: '2013-11-21 15:07:51'
slug: bush-ambree
Article_4:
name: 'Triple karmeliet'
img: karmeliet.jpg
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '12'
created_at: '2013-08-28 21:05:38'
updated_at: '2013-11-23 00:52:20'
slug: triple-karmeliet
Article_5:
name: Kwak
img: kwak.jpg
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '14'
created_at: '2013-08-28 21:05:38'
updated_at: '2013-11-22 23:28:03'
slug: kwak
Article_6:
name: Orval
img: orval.png
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '18'
created_at: '2013-08-28 21:05:38'
updated_at: '2013-11-22 23:28:03'
slug: orval
Article_7:
name: 'Coca Cola'
img: 2eabb63bd1cbb74fb238b44e77700c1b2cd539ea.png
is_publish: false
Category: Category_2
prix: '2.00'
description: '(non chargé)'
temps_prepa: null
count: '32'
created_at: '2013-08-31 10:51:22'
updated_at: '2013-11-25 15:13:28'
slug: coca-cola
Article_8:
name: 'Schweppes Tonic'
img: 2762d64c01705311d4487deb473e5ce333931a29.jpg
is_publish: false
Category: Category_2
prix: '2.00'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 13:43:34'
updated_at: '2013-11-13 19:41:02'
slug: shweppes-tonic
Article_9:
name: 'Schweppes Agrum'''
img: f511480ef47df8ed0dda4bef96a300f88bcbf9a7.jpg
is_publish: false
Category: Category_2
prix: '2.00'
description: '(non chargé)'
temps_prepa: null
count: '2'
created_at: '2013-08-31 13:44:33'
updated_at: '2013-11-21 23:16:17'
slug: shweppes-agrume
Article_10:
name: Gini
img: cc13a38f59af47796b61f754b4ad234c5c503d21.gif
is_publish: false
Category: Category_2
prix: '2.00'
description: '(non chargé)'
temps_prepa: null
count: '1'
created_at: '2013-08-31 13:44:58'
updated_at: '2013-11-21 13:24:53'
slug: gini
Article_11:
name: Fanta
img: 66728c98c5ef46fdd6884b9dfc747aa7a756332c.png
is_publish: false
Category: Category_2
prix: '2.00'
description: '(non chargé)'
temps_prepa: null
count: '2'
created_at: '2013-08-31 13:45:14'
updated_at: '2013-11-25 15:13:28'
slug: fanta
Article_12:
name: Sprite
img: 214a665b33bd8de4028e29f00f2b6f055a24d111.jpg
is_publish: false
Category: Category_2
prix: '2.00'
description: '(non chargé)'
temps_prepa: null
count: '1'
created_at: '2013-08-31 13:53:06'
updated_at: '2013-11-23 15:45:19'
slug: sprite
Article_13:
name: 'Canada Dry'
img: ab24cb65186d70b4c6e69ba8107b301ac0e582c4.jpg
is_publish: false
Category: Category_2
prix: '2.00'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 13:53:29'
updated_at: '2013-11-14 13:31:19'
slug: canada-dry
Article_14:
name: 'Coca Cola Light'
img: 730fe24b728989d7583f748f0545ec19ba630f8e.png
is_publish: false
Category: Category_2
prix: '2.00'
description: '(non chargé)'
temps_prepa: null
count: '6'
created_at: '2013-08-31 13:53:50'
updated_at: '2013-11-25 12:32:48'
slug: coca-cola-light
Article_15:
name: 'Ice Tea Green'
img: 3458fec5e810a6d7f634ff415c3f42695a6badca.jpg
is_publish: false
Category: Category_2
prix: '2.50'
description: '(non chargé)'
temps_prepa: null
count: '6'
created_at: '2013-08-31 13:54:38'
updated_at: '2013-11-25 15:01:48'
slug: ice-tea-green
Article_16:
name: 'Ice Tea'
img: d578829d260363b34f36dc6a76094bec5e7d5d13.gif
is_publish: false
Category: Category_2
prix: '2.50'
description: '(non chargé)'
temps_prepa: null
count: '10'
created_at: '2013-08-31 13:55:02'
updated_at: '2013-11-22 18:47:40'
slug: ice-tea
Article_17:
name: 'Ice Tea Pêche'
img: cd78a9b8636905a9cbb4e7294ace51d7227101aa.jpg
is_publish: false
Category: Category_2
prix: '2.50'
description: '(non chargé)'
temps_prepa: null
count: '1'
created_at: '2013-08-31 13:55:23'
updated_at: '2013-11-21 17:36:35'
slug: ice-tea-peche
Article_18:
name: 'Coca Cola Zero'
img: 04b12eda408c946956bb4462f38bb67457ad619c.jpg
is_publish: false
Category: Category_2
prix: '2.00'
description: '(non chargé)'
temps_prepa: null
count: '16'
created_at: '2013-08-31 13:55:49'
updated_at: '2013-11-23 00:35:21'
slug: coca-cola-zero
Article_19:
name: Oasis
img: a25d89cb47daf81519a9335ece0347003999201c.jpg
is_publish: false
Category: Category_2
prix: '2.00'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 13:56:21'
updated_at: '2013-11-13 13:23:58'
slug: oasis
Article_20:
name: 'Red Bull'
img: f800e94f9e426d92070b0ae9b87b44c15296248e.jpg
is_publish: false
Category: Category_2
prix: '3.00'
description: '(non chargé)'
temps_prepa: null
count: '3'
created_at: '2013-08-31 13:56:44'
updated_at: '2013-11-22 15:18:49'
slug: red-bull
Article_21:
name: 'Minute Maid Orange'
img: 79eb3f322d429ab03680952b73472cdfa473f511.jpg
is_publish: false
Category: Category_2
prix: '2.00'
description: '(non chargé)'
temps_prepa: null
count: '3'
created_at: '2013-08-31 20:51:19'
updated_at: '2013-11-24 21:55:33'
slug: minute-maid-orange
Article_22:
name: 'minute Maid Pomme'
img: da2778935a31b1a6ea1cccd5ac45e66d8411db32.jpg
is_publish: false
Category: Category_2
prix: '2.00'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 20:51:32'
updated_at: '2013-10-13 00:03:01'
slug: minute-maid-pomme
Article_23:
name: 'Minute Maid Pomme-Cerise'
img: e0c08ba87e814979ac8d01b7ee137eb57118426d.jpg
is_publish: false
Category: Category_2
prix: '2.00'
description: '(non chargé)'
temps_prepa: null
count: '4'
created_at: '2013-08-31 20:52:05'
updated_at: '2013-11-25 15:01:48'
slug: minute-maid-pomme-cerise
Article_24:
name: 'Minute Maid Tomate'
img: c0b8c1669dd25fb429f64823913af0e752c26ed9.jpg
is_publish: false
Category: Category_2
prix: '2.00'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 20:52:24'
updated_at: '2013-11-13 19:41:02'
slug: minute-maid-tomate
Article_25:
name: 'Minute Maid Multivitamines'
img: 02abeefe000c317f7b476d6c7817a1c0a75f2416.jpg
is_publish: false
Category: Category_2
prix: '2.00'
description: '(non chargé)'
temps_prepa: null
count: '1'
created_at: '2013-08-31 20:52:39'
updated_at: '2013-11-18 16:13:08'
slug: minute-maid-multivitamines
Article_26:
name: 'Minute Maid Ananas'
img: 1259df9ae4746ec2bb460a3e732710e8254e76d6.jpg
is_publish: false
Category: Category_2
prix: '2.00'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 20:52:55'
updated_at: '2013-11-04 22:36:37'
slug: minute-maid-ananas
Article_27:
name: 'Looza Fraise'
img: 58c6995eb4898e429a15524c7e20baf0a6fb6897.jpg
is_publish: false
Category: Category_2
prix: '2.00'
description: '(non chargé)'
temps_prepa: null
count: '1'
created_at: '2013-08-31 20:53:11'
updated_at: '2013-11-21 13:24:53'
slug: looza-fraise
Article_28:
name: 'Cécemel Chaud'
img: 85254903ea1ee42db045406e56be14682af85313.jpg
is_publish: false
Category: Category_4
prix: '2.50'
description: '(non chargé)'
temps_prepa: null
count: '16'
created_at: '2013-08-31 20:53:44'
updated_at: '2013-11-24 15:44:16'
slug: cecemel-chaud
Article_29:
name: Cappuccino
img: 893ec18944fa2f49679fc3824ff8a7ddce033634.jpg
is_publish: false
Category: Category_4
prix: '2.50'
description: '(non chargé)'
temps_prepa: null
count: '5'
created_at: '2013-08-31 20:54:04'
updated_at: '2013-11-21 23:28:32'
slug: cappuccino
Article_30:
name: 'Stella 25cl'
img: cfa4bfda998e190045896bc64d66f11c6226aaf9.jpg
is_publish: false
Category: Category_1
prix: '2.00'
description: '(non chargé)'
temps_prepa: null
count: '84'
created_at: '2013-08-31 20:54:54'
updated_at: '2013-11-24 15:34:01'
slug: stella-jupiler-25cl
Article_31:
name: 'Stella 33cl'
img: 94ddf258baa0e88bee33be7f1ff83824414406b0.jpg
is_publish: false
Category: Category_1
prix: '2.50'
description: '(non chargé)'
temps_prepa: null
count: '4'
created_at: '2013-08-31 20:55:07'
updated_at: '2013-11-18 14:34:27'
slug: stella-jupiler-33cl
Article_32:
name: 'Stella 50cl'
img: d153fbace39d2a7388ce67d51f3f5fdd471f32aa.jpg
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '8'
created_at: '2013-08-31 20:55:25'
updated_at: '2013-11-22 00:25:46'
slug: stella-jupiler-50cl
Article_33:
name: 'Kriek Belle-Vue'
img: 0777c42dd20035224e120e809aa907bb92f491e9.jpg
is_publish: false
Category: Category_1
prix: '2.50'
description: '(non chargé)'
temps_prepa: null
count: '6'
created_at: '2013-08-31 20:55:42'
updated_at: '2013-11-25 00:49:38'
slug: kriek-belle-vue
Article_34:
name: 'Hoegaarden Blanche'
img: dc7f01996dc0dd681a0547b1cb426fcde1c43a4a.jpg
is_publish: false
Category: Category_1
prix: '2.50'
description: '(non chargé)'
temps_prepa: null
count: '8'
created_at: '2013-08-31 20:55:55'
updated_at: '2013-11-25 14:00:10'
slug: hoegaarden-blanche
Article_35:
name: 'Hoegaarden Rosée'
img: c5f27dfc0bf0d14179b48c6a5880c279fbf23a51.jpg
is_publish: false
Category: Category_1
prix: '2.50'
description: '(non chargé)'
temps_prepa: null
count: '12'
created_at: '2013-08-31 20:56:10'
updated_at: '2013-11-25 00:49:38'
slug: hoegaarden-rosee
Article_36:
name: 'Leffe bl. 25cl'
img: e4e232cb8d6bc773a08c0b9f62839c303feb0c4a.jpg
is_publish: false
Category: Category_1
prix: '3.00'
description: '(non chargé)'
temps_prepa: null
count: '6'
created_at: '2013-08-31 20:56:30'
updated_at: '2013-11-22 18:33:34'
slug: leffe-blonde-25cl
Article_37:
name: 'Leffe bl. 33cl'
img: e4e232cb8d6bc773a08c0b9f62839c303feb0c4a.jpg
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '9'
created_at: '2013-08-31 20:56:57'
updated_at: '2013-11-24 00:17:59'
slug: leffe-blonde-33cl
Article_38:
name: 'Leffe bl. 50cl'
img: e4e232cb8d6bc773a08c0b9f62839c303feb0c4a.jpg
is_publish: false
Category: Category_1
prix: '4.50'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 20:57:16'
updated_at: '2013-11-11 18:45:00'
slug: leffe-blonde-50cl
Article_39:
name: 'Belle-Vue Framboise'
img: cb369f9ae902e7f467ef5a51b695ca9b9d7ae3bf.jpg
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '1'
created_at: '2013-08-31 20:58:42'
updated_at: '2013-11-25 11:58:02'
slug: belle-vue-framboise
Article_40:
name: 'Hoegaarden Citron'
img: a31a121853e7906725499e67a8b258d059eac281.jpg
is_publish: false
Category: Category_1
prix: '2.50'
description: '(non chargé)'
temps_prepa: null
count: '12'
created_at: '2013-08-31 20:59:03'
updated_at: '2013-11-24 21:00:36'
slug: hoegaarden-citron
Article_41:
name: 'Hoegaarden Rosée 0.0%'
img: default.jpg
is_publish: false
Category: Category_1
prix: '2.50'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 20:59:25'
updated_at: '2013-09-21 16:18:42'
slug: hoegaarden-rosee-0-0
Article_42:
name: 'Belle-Vue Gueuze'
img: 314b7b59beb8b356b25d429f22097d8041fbf7cc.jpg
is_publish: false
Category: Category_1
prix: '2.50'
description: '(non chargé)'
temps_prepa: null
count: '4'
created_at: '2013-08-31 20:59:42'
updated_at: '2013-11-17 18:07:55'
slug: belle-vue-gueuze
Article_43:
name: 'Lindemans Pêche'
img: 9c69224257eb76dc3f5a090d424d7866fd2c47ae.jpg
is_publish: false
Category: Category_1
prix: '2.50'
description: '(non chargé)'
temps_prepa: null
count: '15'
created_at: '2013-08-31 21:00:07'
updated_at: '2013-11-24 21:00:36'
slug: lindemans-peche
Article_44:
name: 'Gueuze mort subite bouchonnée'
img: 6778f50f7c3c4ed335cd6281e35f5a3ef43adb18.jpg
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 21:00:41'
updated_at: '2013-11-11 12:19:41'
slug: gueuze-mort-subite-bouchonnee
Article_45:
name: 'Hoegaarden Rosée OW 0,75l'
img: a5bcd18d854a48ec0b9a8d8a06ceb81d16d14e40.jpg
is_publish: false
Category: Category_1
prix: '4.00'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 21:01:13'
updated_at: '2013-11-01 21:38:02'
slug: hoegaarden-rosee-ow-0-75l
Article_46:
name: 'Gauloise Blonde'
img: 398ebaa473f80f37ed7cfbb7ded5378fd00417d5.png
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 21:02:14'
updated_at: '2013-11-07 23:53:23'
slug: gauloise-blonde
Article_47:
name: Duvel
img: 57f2715c9b91059a32e7e8c1381fe88d4a5fcbd0.jpg
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '6'
created_at: '2013-08-31 21:02:28'
updated_at: '2013-11-24 00:10:10'
slug: duvel
Article_48:
name: Julius
img: e9eaf9239087df26f326fecea68302ff61309205.gif
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '2'
created_at: '2013-08-31 21:04:28'
updated_at: '2013-11-24 00:10:09'
slug: julius
Article_49:
name: 'Cuvée des trolls'
img: 3c0eb7706064a82356727e68c4a2586f4e86f4b7.jpg
is_publish: false
Category: Category_1
prix: '3.00'
description: '(non chargé)'
temps_prepa: null
count: '5'
created_at: '2013-08-31 21:04:42'
updated_at: '2013-11-24 15:44:16'
slug: cuvee-des-trolls
Article_50:
name: 'Bass Pale Ale'
img: 4d4140aba1f00eca43e547965550ef2cbe27c27a.png
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '1'
created_at: '2013-08-31 21:05:06'
updated_at: '2013-11-22 23:19:39'
slug: bass-pale-ale
Article_51:
name: 'Hoegaarden Grand Cru'
img: 0ece1b6bbf6b9a43c7aeb4d1e2c15422f3fcd387.jpg
is_publish: false
Category: Category_1
prix: '4.00'
description: '(non chargé)'
temps_prepa: null
count: '1'
created_at: '2013-08-31 21:06:17'
updated_at: '2013-11-18 15:23:51'
slug: hoegaarden-grand-cru
Article_52:
name: 'Vieux Temps'
img: 7272f826b63d5238951cbace794ee21ecd4a0358.jpg
is_publish: false
Category: Category_1
prix: '2.50'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 21:06:43'
updated_at: '2013-11-07 23:53:24'
slug: vieux-temps
Article_53:
name: 'Horse Ale'
img: 18882780b0fec0fafc6dcbda3c15a00e8f6eaa08.jpg
is_publish: false
Category: Category_1
prix: '2.50'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 21:07:44'
updated_at: '2013-10-02 20:01:52'
slug: horse-ale
Article_54:
name: 'Gauloise Ambrée'
img: 0743e6d9191549160a38b0868e48e72ab9ad68d3.jpg
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 21:08:03'
updated_at: '2013-11-11 18:45:00'
slug: gauloise-ambree
Article_55:
name: 'Kasteel Brune'
img: 80ddd44736986b1513edd2496e12bd33b477d5c1.jpg
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 21:09:51'
updated_at: '2013-09-27 10:56:05'
slug: kasteel-brune
Article_56:
name: 'Gauloise Brune'
img: 59774b6e1224b047e3152b32ec7c544448f3d8d8.gif
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 21:10:43'
updated_at: '2013-10-02 20:02:42'
slug: gauloise-brune
Article_57:
name: 'Scotch CTS'
img: d0ffd73627f667aa9f02b4e455b1ae453d7ee7c4.jpg
is_publish: false
Category: Category_1
prix: '3.00'
description: '(non chargé)'
temps_prepa: null
count: '6'
created_at: '2013-08-31 21:11:27'
updated_at: '2013-11-24 21:55:33'
slug: scotch-cts
Article_58:
name: 'Leffe Brune'
img: 9d7c6bac096df20714366a79536133dc505198ec.jpg
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 21:11:49'
updated_at: '2013-11-08 18:28:32'
slug: leffe-brune
Article_59:
name: 'Leffe 9'
img: a38c848d066ec1fb4670c71a284185f8ee8724a8.jpg
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 21:12:10'
updated_at: '2013-11-08 13:13:52'
slug: leffe-9
Article_60:
name: 'Leffe Triple'
img: 7223f87c6e928eb9164d243a023b31a575ed1e04.jpg
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 21:12:26'
updated_at: '2013-11-10 18:13:06'
slug: leffe-triple
Article_61:
name: 'Leffe Radieuse'
img: a919dc62979e309ad745f1ff70b49c574efa9043.jpg
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '1'
created_at: '2013-08-31 21:13:00'
updated_at: '2013-11-24 20:03:16'
slug: leffe-radieuse
Article_62:
name: 'Chimay Blanche'
img: dcec4969bf7bb5f388c0fb213271c8e1e8106726.jpg
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '2'
created_at: '2013-08-31 21:13:14'
updated_at: '2013-11-21 20:40:45'
slug: chimay-blanche
Article_63:
name: 'Chimay Bleue'
img: 040992d5161dce7d6db898e7b190b4f90d5f5ed5.jpg
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '19'
created_at: '2013-08-31 21:14:02'
updated_at: '2013-11-25 15:01:48'
slug: chimay-bleue
Article_64:
name: Rodenbach
img: 96f4cad2d44bf9ccf3df53d541bb382fb8061d4f.jpg
is_publish: false
Category: Category_1
prix: '3.00'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 21:18:17'
updated_at: '2013-11-02 18:43:10'
slug: rodenbach
Article_65:
name: 'Kasteel Rouge'
img: 42f545404c903b06140576a0fc7ab065e0c4b96f.jpg
is_publish: false
Category: Category_1
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '7'
created_at: '2013-08-31 21:19:10'
updated_at: '2013-11-25 00:49:38'
slug: kasteel-rouge
Article_66:
name: Carlsbrg
img: c70ee5292e6dfa2a463b41344bf3c65c7b38ec21.jpg
is_publish: false
Category: Category_1
prix: '2.50'
description: '(non chargé)'
temps_prepa: null
count: '1'
created_at: '2013-08-31 21:19:53'
updated_at: '2013-11-23 00:35:20'
slug: carlsbrg
Article_67:
name: Corona
img: 6b4cce501cdb7840bea0e30855cd29ce1ef784a2.jpg
is_publish: false
Category: Category_1
prix: '4.00'
description: '(non chargé)'
temps_prepa: null
count: '9'
created_at: '2013-08-31 21:20:44'
updated_at: '2013-11-22 23:12:31'
slug: corona
Article_68:
name: Ricard
img: adf6875b4ee7518ed64b301f71ec09ddaca270a5.jpg
is_publish: false
Category: Category_3
prix: '2.50'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 21:21:08'
updated_at: '2013-10-02 20:13:12'
slug: ricard
Article_69:
name: 'Martini Bianco'
img: 91394e267787075923570cca5bb16b9d272eb16a.jpg
is_publish: false
Category: Category_3
prix: '2.50'
description: '(non chargé)'
temps_prepa: null
count: '8'
created_at: '2013-08-31 21:21:46'
updated_at: '2013-11-24 00:17:59'
slug: martini-bianco
Article_70:
name: Campari
img: 8ae5cd6ad18882469843ee5081774eac8472f02e.jpg
is_publish: false
Category: Category_3
prix: '4.00'
description: '(non chargé)'
temps_prepa: null
count: '1'
created_at: '2013-08-31 21:22:07'
updated_at: '2013-11-21 19:47:30'
slug: campari
Article_71:
name: 'Get 27'
img: 4ee3c8020bea447d4ac7290e1eecbd790d2139fc.png
is_publish: false
Category: Category_3
prix: '3.00'
description: '(non chargé)'
temps_prepa: null
count: '8'
created_at: '2013-08-31 21:22:42'
updated_at: '2013-11-23 00:35:20'
slug: get-27
Article_72:
name: Malibu
img: c591ef9ea4b52f36edecd541b8b6b32042b1bd9f.jpg
is_publish: false
Category: Category_3
prix: '4.00'
description: '(non chargé)'
temps_prepa: null
count: '1'
created_at: '2013-08-31 21:23:17'
updated_at: '2013-11-24 21:55:33'
slug: malibu
Article_73:
name: Batida
img: 2e5c76821e64f603a1c9c5126c7d04ffde540acf.jpg
is_publish: false
Category: Category_3
prix: '4.00'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 21:23:41'
updated_at: '2013-10-31 14:36:29'
slug: batida
Article_74:
name: Safari
img: 2328d6e9580d5aaf0283153e0d94c07b891372ad.jpg
is_publish: false
Category: Category_3
prix: '4.00'
description: '(non chargé)'
temps_prepa: null
count: '3'
created_at: '2013-08-31 21:24:13'
updated_at: '2013-11-25 00:49:38'
slug: safari
Article_75:
name: 'Porto blanc'
img: e086738ce8f19e7b43632eb73f2a084db2bc4761.jpg
is_publish: false
Category: Category_3
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '1'
created_at: '2013-08-31 21:24:37'
updated_at: '2013-11-25 11:58:02'
slug: porto-blanc
Article_76:
name: 'Porto rouge'
img: f18d20605848ded782c91ac4f5a749d65a29db60.jpg
is_publish: false
Category: Category_3
prix: '3.50'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 21:24:59'
updated_at: '2013-11-08 22:27:43'
slug: porto-rouge
Article_77:
name: 'Havana club 3ans (blanc)'
img: 32b41d75527159fa860c18fc12a569b96efa0cb1.jpg
is_publish: false
Category: Category_3
prix: '4.00'
description: '(non chargé)'
temps_prepa: null
count: '2'
created_at: '2013-08-31 21:25:50'
updated_at: '2013-11-21 23:22:19'
slug: havana-club-3ans-blanc
Article_78:
name: 'Havana Club Especial (brun)'
img: 5dbfd7bafbaa253890d4f776bfea85b1384e0cd1.png
is_publish: false
Category: Category_3
prix: '4.00'
description: '(non chargé)'
temps_prepa: null
count: '6'
created_at: '2013-08-31 21:26:21'
updated_at: '2013-11-21 23:07:18'
slug: havana-club-especial-brun
Article_79:
name: 'Havana Club 7ans (brun)'
img: 85bafbe9513a0ba90ec191d23c8144ef4668e78c.png
is_publish: false
Category: Category_3
prix: '5.00'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 21:26:47'
updated_at: '2013-11-04 12:59:54'
slug: havana-club-7ans-brun
Article_80:
name: 'Cayes Poire Cannelle'
img: 4e564cc93b56ac47bec3fb557547db2dec4f8305.jpg
is_publish: false
Category: Category_3
prix: '4.00'
description: '(non chargé)'
temps_prepa: null
count: '1'
created_at: '2013-08-31 21:27:25'
updated_at: '2013-11-21 22:44:29'
slug: cayes-poire-cannelle
Article_81:
name: 'Cayes Citron Gingembre'
img: 853d6d763ddf16a6b794c34c75f436e4ef373f93.jpg
is_publish: false
Category: Category_3
prix: '4.00'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 21:27:54'
updated_at: '2013-11-02 23:50:45'
slug: cayes-citron-gingembre
Article_82:
name: 'Dictador 12'
img: bb95ac21433cb970a7c4de0b89d99fec8a536cf0.jpg
is_publish: false
Category: Category_3
prix: '6.00'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 21:28:25'
updated_at: '2013-10-09 16:53:58'
slug: dictador-12
Article_83:
name: 'J.M. VSOP'
img: e8395b00e8c6a0c2671bf986c12e072a459e3820.jpg
is_publish: false
Category: Category_3
prix: '6.00'
description: '(non chargé)'
temps_prepa: null
count: '0'
created_at: '2013-08-31 21:29:10'
updated_at: '2013-10-09 16:54:34'
slug: j-m-vsop
Article_84:
name: 'J.M. XO'
img: 8e6004d06190fc39c4252cc9645cd85fea8ec212.jpg