-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhollywood1.sql
3785 lines (3270 loc) · 518 KB
/
hollywood1.sql
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
-- MySQL dump 10.13 Distrib 5.5.31, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: ez_hollywood
-- ------------------------------------------------------
-- Server version 5.5.31-0+wheezy1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `ezapprove_items`
--
DROP TABLE IF EXISTS `ezapprove_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezapprove_items` (
`collaboration_id` int(11) NOT NULL DEFAULT '0',
`id` int(11) NOT NULL AUTO_INCREMENT,
`workflow_process_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezapprove_items`
--
LOCK TABLES `ezapprove_items` WRITE;
/*!40000 ALTER TABLE `ezapprove_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `ezapprove_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezbasket`
--
DROP TABLE IF EXISTS `ezbasket`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezbasket` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL DEFAULT '0',
`productcollection_id` int(11) NOT NULL DEFAULT '0',
`session_id` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `ezbasket_session_id` (`session_id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezbasket`
--
LOCK TABLES `ezbasket` WRITE;
/*!40000 ALTER TABLE `ezbasket` DISABLE KEYS */;
INSERT INTO `ezbasket` VALUES (15,0,18,'sbk5k40ooe1935qdgsdblmgm37');
/*!40000 ALTER TABLE `ezbasket` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezbinaryfile`
--
DROP TABLE IF EXISTS `ezbinaryfile`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezbinaryfile` (
`contentobject_attribute_id` int(11) NOT NULL DEFAULT '0',
`download_count` int(11) NOT NULL DEFAULT '0',
`filename` varchar(255) NOT NULL DEFAULT '',
`mime_type` varchar(255) NOT NULL DEFAULT '',
`original_filename` varchar(255) NOT NULL DEFAULT '',
`version` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`contentobject_attribute_id`,`version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezbinaryfile`
--
LOCK TABLES `ezbinaryfile` WRITE;
/*!40000 ALTER TABLE `ezbinaryfile` DISABLE KEYS */;
INSERT INTO `ezbinaryfile` VALUES (357,55,'64307460b6a67acf6efdb942dc5e315f.m4v','application/octet-stream','Piraya small – Mobilnett.m4v',1),(465,0,'bd59a6da79a53021aedd5d57c607e6fb.png','image/png','eZ_logo_color_black_RGB_150dpi.png',1),(471,0,'14baa48f299479bfadf67a166c05829b.png','image/png','eZ_logo_color_white_RGB_150dpi.png',1);
/*!40000 ALTER TABLE `ezbinaryfile` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcobj_state`
--
DROP TABLE IF EXISTS `ezcobj_state`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcobj_state` (
`default_language_id` int(11) NOT NULL DEFAULT '0',
`group_id` int(11) NOT NULL DEFAULT '0',
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(45) NOT NULL DEFAULT '',
`language_mask` int(11) NOT NULL DEFAULT '0',
`priority` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `ezcobj_state_identifier` (`group_id`,`identifier`),
KEY `ezcobj_state_lmask` (`language_mask`),
KEY `ezcobj_state_priority` (`priority`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcobj_state`
--
LOCK TABLES `ezcobj_state` WRITE;
/*!40000 ALTER TABLE `ezcobj_state` DISABLE KEYS */;
INSERT INTO `ezcobj_state` VALUES (2,2,1,'not_locked',3,0),(2,2,2,'locked',3,1);
/*!40000 ALTER TABLE `ezcobj_state` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcobj_state_group`
--
DROP TABLE IF EXISTS `ezcobj_state_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcobj_state_group` (
`default_language_id` int(11) NOT NULL DEFAULT '0',
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(45) NOT NULL DEFAULT '',
`language_mask` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `ezcobj_state_group_identifier` (`identifier`),
KEY `ezcobj_state_group_lmask` (`language_mask`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcobj_state_group`
--
LOCK TABLES `ezcobj_state_group` WRITE;
/*!40000 ALTER TABLE `ezcobj_state_group` DISABLE KEYS */;
INSERT INTO `ezcobj_state_group` VALUES (2,2,'ez_lock',3);
/*!40000 ALTER TABLE `ezcobj_state_group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcobj_state_group_language`
--
DROP TABLE IF EXISTS `ezcobj_state_group_language`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcobj_state_group_language` (
`contentobject_state_group_id` int(11) NOT NULL DEFAULT '0',
`description` longtext NOT NULL,
`language_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(45) NOT NULL DEFAULT '',
`real_language_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`contentobject_state_group_id`,`real_language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcobj_state_group_language`
--
LOCK TABLES `ezcobj_state_group_language` WRITE;
/*!40000 ALTER TABLE `ezcobj_state_group_language` DISABLE KEYS */;
INSERT INTO `ezcobj_state_group_language` VALUES (2,'',3,'Lock',0);
/*!40000 ALTER TABLE `ezcobj_state_group_language` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcobj_state_language`
--
DROP TABLE IF EXISTS `ezcobj_state_language`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcobj_state_language` (
`contentobject_state_id` int(11) NOT NULL DEFAULT '0',
`description` longtext NOT NULL,
`language_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(45) NOT NULL DEFAULT '',
PRIMARY KEY (`contentobject_state_id`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcobj_state_language`
--
LOCK TABLES `ezcobj_state_language` WRITE;
/*!40000 ALTER TABLE `ezcobj_state_language` DISABLE KEYS */;
INSERT INTO `ezcobj_state_language` VALUES (1,'',3,'Not locked'),(2,'',3,'Locked');
/*!40000 ALTER TABLE `ezcobj_state_language` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcobj_state_link`
--
DROP TABLE IF EXISTS `ezcobj_state_link`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcobj_state_link` (
`contentobject_id` int(11) NOT NULL DEFAULT '0',
`contentobject_state_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`contentobject_id`,`contentobject_state_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcobj_state_link`
--
LOCK TABLES `ezcobj_state_link` WRITE;
/*!40000 ALTER TABLE `ezcobj_state_link` DISABLE KEYS */;
INSERT INTO `ezcobj_state_link` VALUES (4,1),(10,1),(11,1),(12,1),(13,1),(14,1),(41,1),(42,1),(45,1),(49,1),(50,1),(51,1),(52,1),(54,1),(56,1),(57,1),(58,1),(59,1),(60,1),(61,1),(62,1),(63,1),(64,1),(65,1),(66,1),(67,1),(68,1),(69,1),(70,1),(71,1),(72,1),(73,1),(74,1),(75,1),(76,1),(77,1),(78,1),(79,1),(80,1),(81,1),(82,1),(83,1),(84,1),(85,1),(86,1),(87,1),(88,1),(89,1),(90,1),(91,1),(92,1),(93,1),(94,1),(95,1),(96,1),(97,1),(98,1),(99,1),(100,1),(101,1),(122,1),(123,1),(124,1),(125,1),(126,1),(127,1),(128,1),(129,1),(130,1),(131,1),(132,1),(133,1),(134,1),(135,1),(136,1),(137,1),(138,1),(140,1),(142,1),(145,1),(146,1),(147,1),(148,1),(149,1),(150,1),(151,1),(152,1),(153,1);
/*!40000 ALTER TABLE `ezcobj_state_link` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcollab_group`
--
DROP TABLE IF EXISTS `ezcollab_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcollab_group` (
`created` int(11) NOT NULL DEFAULT '0',
`depth` int(11) NOT NULL DEFAULT '0',
`id` int(11) NOT NULL AUTO_INCREMENT,
`is_open` int(11) NOT NULL DEFAULT '1',
`modified` int(11) NOT NULL DEFAULT '0',
`parent_group_id` int(11) NOT NULL DEFAULT '0',
`path_string` varchar(255) NOT NULL DEFAULT '',
`priority` int(11) NOT NULL DEFAULT '0',
`title` varchar(255) NOT NULL DEFAULT '',
`user_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `ezcollab_group_depth` (`depth`),
KEY `ezcollab_group_path` (`path_string`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcollab_group`
--
LOCK TABLES `ezcollab_group` WRITE;
/*!40000 ALTER TABLE `ezcollab_group` DISABLE KEYS */;
/*!40000 ALTER TABLE `ezcollab_group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcollab_item`
--
DROP TABLE IF EXISTS `ezcollab_item`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcollab_item` (
`created` int(11) NOT NULL DEFAULT '0',
`creator_id` int(11) NOT NULL DEFAULT '0',
`data_float1` float NOT NULL DEFAULT '0',
`data_float2` float NOT NULL DEFAULT '0',
`data_float3` float NOT NULL DEFAULT '0',
`data_int1` int(11) NOT NULL DEFAULT '0',
`data_int2` int(11) NOT NULL DEFAULT '0',
`data_int3` int(11) NOT NULL DEFAULT '0',
`data_text1` longtext NOT NULL,
`data_text2` longtext NOT NULL,
`data_text3` longtext NOT NULL,
`id` int(11) NOT NULL AUTO_INCREMENT,
`modified` int(11) NOT NULL DEFAULT '0',
`status` int(11) NOT NULL DEFAULT '1',
`type_identifier` varchar(40) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcollab_item`
--
LOCK TABLES `ezcollab_item` WRITE;
/*!40000 ALTER TABLE `ezcollab_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `ezcollab_item` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcollab_item_group_link`
--
DROP TABLE IF EXISTS `ezcollab_item_group_link`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcollab_item_group_link` (
`collaboration_id` int(11) NOT NULL DEFAULT '0',
`created` int(11) NOT NULL DEFAULT '0',
`group_id` int(11) NOT NULL DEFAULT '0',
`is_active` int(11) NOT NULL DEFAULT '1',
`is_read` int(11) NOT NULL DEFAULT '0',
`last_read` int(11) NOT NULL DEFAULT '0',
`modified` int(11) NOT NULL DEFAULT '0',
`user_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`collaboration_id`,`group_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcollab_item_group_link`
--
LOCK TABLES `ezcollab_item_group_link` WRITE;
/*!40000 ALTER TABLE `ezcollab_item_group_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `ezcollab_item_group_link` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcollab_item_message_link`
--
DROP TABLE IF EXISTS `ezcollab_item_message_link`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcollab_item_message_link` (
`collaboration_id` int(11) NOT NULL DEFAULT '0',
`created` int(11) NOT NULL DEFAULT '0',
`id` int(11) NOT NULL AUTO_INCREMENT,
`message_id` int(11) NOT NULL DEFAULT '0',
`message_type` int(11) NOT NULL DEFAULT '0',
`modified` int(11) NOT NULL DEFAULT '0',
`participant_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcollab_item_message_link`
--
LOCK TABLES `ezcollab_item_message_link` WRITE;
/*!40000 ALTER TABLE `ezcollab_item_message_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `ezcollab_item_message_link` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcollab_item_participant_link`
--
DROP TABLE IF EXISTS `ezcollab_item_participant_link`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcollab_item_participant_link` (
`collaboration_id` int(11) NOT NULL DEFAULT '0',
`created` int(11) NOT NULL DEFAULT '0',
`is_active` int(11) NOT NULL DEFAULT '1',
`is_read` int(11) NOT NULL DEFAULT '0',
`last_read` int(11) NOT NULL DEFAULT '0',
`modified` int(11) NOT NULL DEFAULT '0',
`participant_id` int(11) NOT NULL DEFAULT '0',
`participant_role` int(11) NOT NULL DEFAULT '1',
`participant_type` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`collaboration_id`,`participant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcollab_item_participant_link`
--
LOCK TABLES `ezcollab_item_participant_link` WRITE;
/*!40000 ALTER TABLE `ezcollab_item_participant_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `ezcollab_item_participant_link` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcollab_item_status`
--
DROP TABLE IF EXISTS `ezcollab_item_status`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcollab_item_status` (
`collaboration_id` int(11) NOT NULL DEFAULT '0',
`is_active` int(11) NOT NULL DEFAULT '1',
`is_read` int(11) NOT NULL DEFAULT '0',
`last_read` int(11) NOT NULL DEFAULT '0',
`user_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`collaboration_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcollab_item_status`
--
LOCK TABLES `ezcollab_item_status` WRITE;
/*!40000 ALTER TABLE `ezcollab_item_status` DISABLE KEYS */;
/*!40000 ALTER TABLE `ezcollab_item_status` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcollab_notification_rule`
--
DROP TABLE IF EXISTS `ezcollab_notification_rule`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcollab_notification_rule` (
`collab_identifier` varchar(255) NOT NULL DEFAULT '',
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcollab_notification_rule`
--
LOCK TABLES `ezcollab_notification_rule` WRITE;
/*!40000 ALTER TABLE `ezcollab_notification_rule` DISABLE KEYS */;
/*!40000 ALTER TABLE `ezcollab_notification_rule` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcollab_profile`
--
DROP TABLE IF EXISTS `ezcollab_profile`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcollab_profile` (
`created` int(11) NOT NULL DEFAULT '0',
`data_text1` longtext NOT NULL,
`id` int(11) NOT NULL AUTO_INCREMENT,
`main_group` int(11) NOT NULL DEFAULT '0',
`modified` int(11) NOT NULL DEFAULT '0',
`user_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcollab_profile`
--
LOCK TABLES `ezcollab_profile` WRITE;
/*!40000 ALTER TABLE `ezcollab_profile` DISABLE KEYS */;
/*!40000 ALTER TABLE `ezcollab_profile` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcollab_simple_message`
--
DROP TABLE IF EXISTS `ezcollab_simple_message`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcollab_simple_message` (
`created` int(11) NOT NULL DEFAULT '0',
`creator_id` int(11) NOT NULL DEFAULT '0',
`data_float1` float NOT NULL DEFAULT '0',
`data_float2` float NOT NULL DEFAULT '0',
`data_float3` float NOT NULL DEFAULT '0',
`data_int1` int(11) NOT NULL DEFAULT '0',
`data_int2` int(11) NOT NULL DEFAULT '0',
`data_int3` int(11) NOT NULL DEFAULT '0',
`data_text1` longtext NOT NULL,
`data_text2` longtext NOT NULL,
`data_text3` longtext NOT NULL,
`id` int(11) NOT NULL AUTO_INCREMENT,
`message_type` varchar(40) NOT NULL DEFAULT '',
`modified` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcollab_simple_message`
--
LOCK TABLES `ezcollab_simple_message` WRITE;
/*!40000 ALTER TABLE `ezcollab_simple_message` DISABLE KEYS */;
/*!40000 ALTER TABLE `ezcollab_simple_message` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcomment`
--
DROP TABLE IF EXISTS `ezcomment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcomment` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL,
`created` int(11) NOT NULL,
`modified` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`session_key` varchar(32) NOT NULL,
`ip` varchar(100) NOT NULL,
`contentobject_id` int(11) NOT NULL,
`parent_comment_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL,
`email` varchar(75) NOT NULL,
`url` varchar(255) DEFAULT NULL,
`text` text NOT NULL,
`status` int(11) NOT NULL,
`title` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `user_id_session_key_ip` (`user_id`,`session_key`,`ip`),
KEY `content_parentcomment` (`contentobject_id`,`language_id`,`parent_comment_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcomment`
--
LOCK TABLES `ezcomment` WRITE;
/*!40000 ALTER TABLE `ezcomment` DISABLE KEYS */;
/*!40000 ALTER TABLE `ezcomment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcomment_notification`
--
DROP TABLE IF EXISTS `ezcomment_notification`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcomment_notification` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`contentobject_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`send_time` int(11) NOT NULL DEFAULT '0',
`status` int(11) NOT NULL DEFAULT '1',
`comment_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcomment_notification`
--
LOCK TABLES `ezcomment_notification` WRITE;
/*!40000 ALTER TABLE `ezcomment_notification` DISABLE KEYS */;
/*!40000 ALTER TABLE `ezcomment_notification` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcomment_subscriber`
--
DROP TABLE IF EXISTS `ezcomment_subscriber`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcomment_subscriber` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`email` varchar(50) NOT NULL,
`enabled` int(11) NOT NULL DEFAULT '1',
`hash_string` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcomment_subscriber`
--
LOCK TABLES `ezcomment_subscriber` WRITE;
/*!40000 ALTER TABLE `ezcomment_subscriber` DISABLE KEYS */;
/*!40000 ALTER TABLE `ezcomment_subscriber` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcomment_subscription`
--
DROP TABLE IF EXISTS `ezcomment_subscription`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcomment_subscription` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`subscriber_id` int(11) NOT NULL,
`subscription_type` varchar(30) NOT NULL,
`content_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL DEFAULT '0',
`subscription_time` int(11) NOT NULL,
`enabled` int(11) NOT NULL DEFAULT '1',
`hash_string` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcomment_subscription`
--
LOCK TABLES `ezcomment_subscription` WRITE;
/*!40000 ALTER TABLE `ezcomment_subscription` DISABLE KEYS */;
/*!40000 ALTER TABLE `ezcomment_subscription` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcontent_language`
--
DROP TABLE IF EXISTS `ezcontent_language`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcontent_language` (
`disabled` int(11) NOT NULL DEFAULT '0',
`id` int(11) NOT NULL DEFAULT '0',
`locale` varchar(20) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `ezcontent_language_name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcontent_language`
--
LOCK TABLES `ezcontent_language` WRITE;
/*!40000 ALTER TABLE `ezcontent_language` DISABLE KEYS */;
INSERT INTO `ezcontent_language` VALUES (0,2,'ger-DE','Deutsch (Deutschland)'),(0,4,'eng-GB','English (United Kingdom)');
/*!40000 ALTER TABLE `ezcontent_language` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcontentbrowsebookmark`
--
DROP TABLE IF EXISTS `ezcontentbrowsebookmark`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcontentbrowsebookmark` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '',
`node_id` int(11) NOT NULL DEFAULT '0',
`user_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `ezcontentbrowsebookmark_user` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcontentbrowsebookmark`
--
LOCK TABLES `ezcontentbrowsebookmark` WRITE;
/*!40000 ALTER TABLE `ezcontentbrowsebookmark` DISABLE KEYS */;
/*!40000 ALTER TABLE `ezcontentbrowsebookmark` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcontentbrowserecent`
--
DROP TABLE IF EXISTS `ezcontentbrowserecent`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcontentbrowserecent` (
`created` int(11) NOT NULL DEFAULT '0',
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '',
`node_id` int(11) NOT NULL DEFAULT '0',
`user_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `ezcontentbrowserecent_user` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcontentbrowserecent`
--
LOCK TABLES `ezcontentbrowserecent` WRITE;
/*!40000 ALTER TABLE `ezcontentbrowserecent` DISABLE KEYS */;
INSERT INTO `ezcontentbrowserecent` VALUES (1382621828,1,'eZ Publish',2,14),(1381794991,13,'Users',5,14),(1382070975,19,'Footer',134,14),(1382743456,20,'Pizza',124,14),(1382613863,21,'Pizza L.A.',137,14),(1382751527,22,'Banner',142,14),(1382950781,23,'Burger',128,14),(1382950931,24,'Hamburger',152,14);
/*!40000 ALTER TABLE `ezcontentbrowserecent` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcontentclass`
--
DROP TABLE IF EXISTS `ezcontentclass`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcontentclass` (
`always_available` int(11) NOT NULL DEFAULT '0',
`contentobject_name` varchar(255) DEFAULT NULL,
`created` int(11) NOT NULL DEFAULT '0',
`creator_id` int(11) NOT NULL DEFAULT '0',
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(50) NOT NULL DEFAULT '',
`initial_language_id` int(11) NOT NULL DEFAULT '0',
`is_container` int(11) NOT NULL DEFAULT '0',
`language_mask` int(11) NOT NULL DEFAULT '0',
`modified` int(11) NOT NULL DEFAULT '0',
`modifier_id` int(11) NOT NULL DEFAULT '0',
`remote_id` varchar(100) NOT NULL DEFAULT '',
`serialized_description_list` longtext,
`serialized_name_list` longtext,
`sort_field` int(11) NOT NULL DEFAULT '1',
`sort_order` int(11) NOT NULL DEFAULT '1',
`url_alias_name` varchar(255) DEFAULT NULL,
`version` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`,`version`),
KEY `ezcontentclass_version` (`version`)
) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcontentclass`
--
LOCK TABLES `ezcontentclass` WRITE;
/*!40000 ALTER TABLE `ezcontentclass` DISABLE KEYS */;
INSERT INTO `ezcontentclass` VALUES (1,'<short_name|name>',1024392098,14,1,'folder',2,1,3,1082454875,14,'a3d405b81be900468eb153d774f4f0d2','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:6:\"Folder\";}',1,1,'',0),(1,'<name>',1024392098,14,3,'user_group',2,1,3,1048494743,14,'25b4268cdcd01921b808a0d854b877ef','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:10:\"User group\";}',1,1,'',0),(1,'<first_name> <last_name>',1024392098,14,4,'user',2,0,3,1082018364,14,'40faa822edc579b02c25f6bb7beec3ad','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:4:\"User\";}',1,1,'',0),(0,'<subject>',1052385685,14,13,'comment',2,0,3,1082455144,14,'000c14f4f475e9f2955dedab72799941','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:7:\"Comment\";}',1,1,'',0),(1,'<name>',1081858024,14,14,'common_ini_settings',2,0,3,1081858024,14,'ffedf2e73b1ea0c3e630e42e2db9c900','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:19:\"Common ini settings\";}',1,1,'',0),(1,'<title>',1081858045,14,15,'template_look',2,0,3,1081858045,14,'59b43cd9feaaf0e45ac974fb4bbd3f92','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:13:\"Template look\";}',1,1,'',0),(0,'<short_title|title>',1381794973,14,16,'article',4,1,5,1381794973,14,'c15b600eb9198b1924063b5a68758232','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:7:\"Article\";s:16:\"always-available\";s:6:\"eng-GB\";}',1,1,'',0),(0,'<name>',1381794973,14,17,'blog',4,1,5,1381794973,14,'3a6f9c1f075b3bf49d7345576b196fe8','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:4:\"Blog\";s:16:\"always-available\";s:6:\"eng-GB\";}',1,1,'',0),(0,'<title>',1381794973,14,18,'blog_post',4,1,5,1381794973,14,'7ecb961056b7cbb30f22a91357e0a007','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:9:\"Blog post\";s:16:\"always-available\";s:6:\"eng-GB\";}',1,1,'',0),(0,'<name>',1381794973,14,19,'product',4,0,5,1382076994,14,'77f3ede996a3a39c7159cc69189c5307','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:7:\"Product\";s:16:\"always-available\";s:6:\"eng-GB\";}',1,1,'',0),(0,'<name>',1381794973,14,20,'feedback_form',4,1,5,1381794973,14,'df0257b8fc55f6b8ab179d6fb915455e','a:0:{}','a:2:{s:6:\"eng-GB\";s:13:\"Feedback form\";s:16:\"always-available\";s:6:\"eng-GB\";}',1,1,'',0),(0,'<name>',1381794974,14,21,'landing_page',4,1,5,1381794974,14,'e36c458e3e4a81298a0945f53a2c81f4','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:12:\"Landing Page\";s:16:\"always-available\";s:6:\"eng-GB\";}',1,1,'',0),(0,'<title>',1381794974,14,22,'wiki_page',4,1,5,1381794974,14,'d4a05eed0402e4d70fedfda2023f1aa2','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:9:\"Wiki Page\";s:16:\"always-available\";s:6:\"eng-GB\";}',1,1,'',0),(0,'<name>',1381794974,14,23,'poll',4,0,5,1381794974,14,'232937a3a2eacbbf24e2601aebe16522','a:0:{}','a:2:{s:6:\"eng-GB\";s:4:\"Poll\";s:16:\"always-available\";s:6:\"eng-GB\";}',1,1,'',0),(0,'<name>',1381794974,14,24,'file',4,0,5,1381794974,14,'637d58bfddf164627bdfd265733280a0','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:4:\"File\";s:16:\"always-available\";s:6:\"eng-GB\";}',1,1,'',0),(0,'<name>',1381794974,14,25,'image',4,0,5,1381794974,14,'f6df12aa74e36230eb675f364fccd25a','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:5:\"Image\";s:16:\"always-available\";s:6:\"eng-GB\";}',1,1,'',0),(0,'<name>',1381794974,14,26,'link',4,0,5,1381794974,14,'74ec6507063150bc813549b22534ad48','a:0:{}','a:2:{s:6:\"eng-GB\";s:4:\"Link\";s:16:\"always-available\";s:6:\"eng-GB\";}',1,1,'',0),(0,'<name>',1381794974,14,27,'gallery',4,1,5,1381794974,14,'6a320cdc3e274841b82fcd63a86f80d1','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:7:\"Gallery\";s:16:\"always-available\";s:6:\"eng-GB\";}',1,1,'',0),(0,'<name>',1381794974,14,28,'forum',4,1,5,1381794974,14,'b241f924b96b267153f5f55904e0675a','a:0:{}','a:2:{s:6:\"eng-GB\";s:5:\"Forum\";s:16:\"always-available\";s:6:\"eng-GB\";}',1,1,'',0),(0,'<subject>',1381794975,14,29,'forum_topic',4,1,5,1381794975,14,'71f99c516743a33562c3893ef98c9b60','a:0:{}','a:2:{s:6:\"eng-GB\";s:11:\"Forum topic\";s:16:\"always-available\";s:6:\"eng-GB\";}',1,1,'',0),(0,'<subject>',1381794975,14,30,'forum_reply',4,0,5,1381794975,14,'80ee42a66b2b8b6ee15f5c5f4b361562','a:0:{}','a:2:{s:6:\"eng-GB\";s:11:\"Forum reply\";s:16:\"always-available\";s:6:\"eng-GB\";}',1,1,'',0),(0,'<short_title|title>',1381794975,14,31,'event',4,0,5,1381794975,14,'563cb5edc2adfd2b240efa456c81525f','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:5:\"Event\";s:16:\"always-available\";s:6:\"eng-GB\";}',1,1,'',0),(0,'<title>',1381794975,14,32,'event_calendar',4,1,5,1381794975,14,'020cbeb6382c8c89dcec2cd406fb47a8','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:14:\"Event calendar\";s:16:\"always-available\";s:6:\"eng-GB\";}',1,1,'',0),(0,'<name>',1381794975,14,33,'banner',4,0,5,1381794975,14,'9cb558e25fd946246bbb32950c00228e','a:0:{}','a:2:{s:6:\"eng-GB\";s:6:\"Banner\";s:16:\"always-available\";s:6:\"eng-GB\";}',1,1,'',0),(0,'<title>',1381794975,14,34,'forums',4,1,5,1381794975,14,'60a921e54c1efbb9456bd2283d9e66cb','a:0:{}','a:2:{s:6:\"eng-GB\";s:6:\"Forums\";s:16:\"always-available\";s:6:\"eng-GB\";}',1,1,'',0),(0,'<name>',1381794975,14,35,'video',4,0,5,1381794975,14,'b38417e8194fb8f893ca918d297b4fa8','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:5:\"Video\";s:16:\"always-available\";s:6:\"eng-GB\";}',1,1,'',0),(0,'<name>',1382028269,14,38,'section',2,1,3,1382948028,14,'81be5f0e604aa047addfe2ba8819e941','a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:7:\"Section\";s:16:\"always-available\";s:6:\"ger-DE\";}',1,1,'',0),(0,'<name>',1382076279,14,39,'food',2,1,3,1382076724,14,'c8bbe4b689e93519261b9fe84a3a52f6','a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:4:\"Food\";s:16:\"always-available\";s:6:\"ger-DE\";}',1,1,'',0);
/*!40000 ALTER TABLE `ezcontentclass` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcontentclass_attribute`
--
DROP TABLE IF EXISTS `ezcontentclass_attribute`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcontentclass_attribute` (
`can_translate` int(11) DEFAULT '1',
`category` varchar(25) NOT NULL DEFAULT '',
`contentclass_id` int(11) NOT NULL DEFAULT '0',
`data_float1` double DEFAULT NULL,
`data_float2` double DEFAULT NULL,
`data_float3` double DEFAULT NULL,
`data_float4` double DEFAULT NULL,
`data_int1` int(11) DEFAULT NULL,
`data_int2` int(11) DEFAULT NULL,
`data_int3` int(11) DEFAULT NULL,
`data_int4` int(11) DEFAULT NULL,
`data_text1` varchar(50) DEFAULT NULL,
`data_text2` varchar(50) DEFAULT NULL,
`data_text3` varchar(50) DEFAULT NULL,
`data_text4` varchar(255) DEFAULT NULL,
`data_text5` longtext,
`data_type_string` varchar(50) NOT NULL DEFAULT '',
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(50) NOT NULL DEFAULT '',
`is_information_collector` int(11) NOT NULL DEFAULT '0',
`is_required` int(11) NOT NULL DEFAULT '0',
`is_searchable` int(11) NOT NULL DEFAULT '0',
`placement` int(11) NOT NULL DEFAULT '0',
`serialized_data_text` longtext,
`serialized_description_list` longtext,
`serialized_name_list` longtext NOT NULL,
`version` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`,`version`),
KEY `ezcontentclass_attr_ccid` (`contentclass_id`)
) ENGINE=InnoDB AUTO_INCREMENT=306 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcontentclass_attribute`
--
LOCK TABLES `ezcontentclass_attribute` WRITE;
/*!40000 ALTER TABLE `ezcontentclass_attribute` DISABLE KEYS */;
INSERT INTO `ezcontentclass_attribute` VALUES (1,'',1,0,0,0,0,255,0,0,0,'Folder','','','','','ezstring',4,'name',0,1,1,1,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:4:\"Name\";}',0),(1,'',3,0,0,0,0,255,0,0,0,'','','','','','ezstring',6,'name',0,1,1,1,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:4:\"Name\";}',0),(1,'',3,0,0,0,0,255,0,0,0,'','','','','','ezstring',7,'description',0,0,1,2,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:11:\"Description\";}',0),(1,'',4,0,0,0,0,255,0,0,0,'','','','','','ezstring',8,'first_name',0,1,1,1,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:10:\"First name\";}',0),(1,'',4,0,0,0,0,255,0,0,0,'','','','','','ezstring',9,'last_name',0,1,1,2,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:9:\"Last name\";}',0),(0,'',4,0,0,0,0,0,0,0,0,'','','','','','ezuser',12,'user_account',0,1,1,3,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:12:\"User account\";}',0),(1,'',1,0,0,0,0,5,0,0,0,'','','','','','ezxmltext',119,'short_description',0,0,1,3,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:7:\"Summary\";}',0),(1,'',13,0,0,0,0,100,0,0,0,'','','','','','ezstring',149,'subject',0,1,1,1,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:7:\"Subject\";}',0),(1,'',13,0,0,0,0,0,0,0,0,'','','','','','ezstring',150,'author',0,1,1,2,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:6:\"Author\";}',0),(1,'',13,0,0,0,0,20,0,0,0,'','','','','','eztext',151,'message',0,1,1,3,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:7:\"Message\";}',0),(1,'',1,0,0,0,0,100,0,0,0,'','','','','','ezstring',155,'short_name',0,0,1,2,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:10:\"Short name\";}',0),(1,'',1,0,0,0,0,20,0,0,0,'','','','','','ezxmltext',156,'description',0,0,1,4,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:11:\"Description\";}',0),(0,'',1,0,0,0,0,0,0,1,0,'','','','','','ezboolean',158,'show_children',0,0,0,5,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:17:\"Display sub items\";}',0),(1,'',14,0,0,0,0,0,0,0,0,'','','','','','ezstring',159,'name',0,0,1,1,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:4:\"Name\";}',0),(0,'',14,0,0,0,0,1,0,0,0,'site.ini','SiteSettings','IndexPage','','override;user;admin;demo','ezinisetting',160,'indexpage',0,0,0,2,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:10:\"Index Page\";}',0),(0,'',14,0,0,0,0,1,0,0,0,'site.ini','SiteSettings','DefaultPage','','override;user;admin;demo','ezinisetting',161,'defaultpage',0,0,0,3,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:12:\"Default Page\";}',0),(0,'',14,0,0,0,0,2,0,0,0,'site.ini','DebugSettings','DebugOutput','','override;user;admin;demo','ezinisetting',162,'debugoutput',0,0,0,4,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:12:\"Debug Output\";}',0),(0,'',14,0,0,0,0,2,0,0,0,'site.ini','DebugSettings','DebugByIP','','override;user;admin;demo','ezinisetting',163,'debugbyip',0,0,0,5,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:11:\"Debug By IP\";}',0),(0,'',14,0,0,0,0,6,0,0,0,'site.ini','DebugSettings','DebugIPList','','override;user;admin;demo','ezinisetting',164,'debugiplist',0,0,0,6,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:13:\"Debug IP List\";}',0),(0,'',14,0,0,0,0,2,0,0,0,'site.ini','DebugSettings','DebugRedirection','','override;user;admin;demo','ezinisetting',165,'debugredirection',0,0,0,7,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:17:\"Debug Redirection\";}',0),(0,'',14,0,0,0,0,2,0,0,0,'site.ini','ContentSettings','ViewCaching','','override;user;admin;demo','ezinisetting',166,'viewcaching',0,0,0,8,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:12:\"View Caching\";}',0),(0,'',14,0,0,0,0,2,0,0,0,'site.ini','TemplateSettings','TemplateCache','','override;user;admin;demo','ezinisetting',167,'templatecache',0,0,0,9,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:14:\"Template Cache\";}',0),(0,'',14,0,0,0,0,2,0,0,0,'site.ini','TemplateSettings','TemplateCompile','','override;user;admin;demo','ezinisetting',168,'templatecompile',0,0,0,10,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:16:\"Template Compile\";}',0),(0,'',14,0,0,0,0,6,0,0,0,'image.ini','small','Filters','','override;user;admin;demo','ezinisetting',169,'imagesmall',0,0,0,11,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:16:\"Image Small Size\";}',0),(0,'',14,0,0,0,0,6,0,0,0,'image.ini','medium','Filters','','override;user;admin;demo','ezinisetting',170,'imagemedium',0,0,0,12,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:17:\"Image Medium Size\";}',0),(0,'',14,0,0,0,0,6,0,0,0,'image.ini','large','Filters','','override;user;admin;demo','ezinisetting',171,'imagelarge',0,0,0,13,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:16:\"Image Large Size\";}',0),(0,'',15,0,0,0,0,1,0,0,0,'site.ini','SiteSettings','SiteName','','override;user;admin;demo','ezinisetting',172,'title',0,0,0,1,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:5:\"Title\";}',0),(0,'',15,0,0,0,0,6,0,0,0,'site.ini','SiteSettings','MetaDataArray','','override;user;admin;demo','ezinisetting',173,'meta_data',0,0,0,2,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:9:\"Meta data\";}',0),(1,'',15,0,0,0,0,0,0,0,0,'','','','','','ezimage',174,'image',0,0,0,3,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:5:\"Image\";}',0),(1,'',15,0,0,0,0,0,0,0,0,'sitestyle','','','','','ezpackage',175,'sitestyle',0,0,0,4,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:9:\"Sitestyle\";}',0),(0,'',15,0,0,0,0,1,0,0,0,'site.ini','MailSettings','AdminEmail','','override;user;admin;demo','ezinisetting',177,'email',0,0,0,6,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:5:\"Email\";}',0),(0,'',15,0,0,0,0,1,0,0,0,'site.ini','SiteSettings','SiteURL','','override;user;admin;demo','ezinisetting',178,'siteurl',0,0,0,7,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:8:\"Site URL\";}',0),(1,'',4,0,0,0,0,10,0,0,0,'','','','','','eztext',179,'signature',0,0,1,4,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:9:\"Signature\";}',0),(1,'',4,0,0,0,0,1,0,0,0,'','','','','','ezimage',180,'image',0,0,0,5,'a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{i:0;s:0:\"\";s:16:\"always-available\";b:0;}','a:2:{s:16:\"always-available\";s:6:\"ger-DE\";s:6:\"ger-DE\";s:5:\"Image\";}',0),(1,'',16,0,0,0,0,255,0,0,0,'New article','','','','','ezstring',181,'title',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:5:\"Title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',16,0,0,0,0,255,0,0,0,'','','','','','ezstring',182,'short_title',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:11:\"Short title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',16,0,0,0,0,0,0,0,0,'','','','','','ezauthor',183,'author',0,0,0,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:6:\"Author\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',16,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',184,'intro',0,1,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:7:\"Summary\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',16,0,0,0,0,20,0,0,0,'','','','','','ezxmltext',185,'body',0,0,1,5,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:4:\"Body\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',16,0,0,0,0,0,0,0,0,'','','','','','ezimage',186,'image',0,0,0,6,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:5:\"Image\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',16,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',187,'caption',0,0,1,7,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:15:\"Caption (Image)\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',16,0,0,0,0,0,0,0,0,'','','','','','ezdatetime',188,'publish_date',0,0,1,8,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:12:\"Publish date\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',16,0,0,0,0,0,0,0,0,'','','','','','ezsrrating',189,'star_rating',0,0,0,9,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:11:\"Star Rating\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',16,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',190,'tags',0,0,1,10,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',16,0,0,0,0,0,0,0,0,'','','','','','ezgmaplocation',191,'location',0,0,1,11,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:8:\"Location\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',16,0,0,0,0,0,0,0,0,'','','','','','ezcomcomments',192,'comments',0,0,1,12,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:8:\"Comments\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',17,0,0,0,0,0,0,0,0,'','','','','','ezstring',193,'name',0,0,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',17,0,0,0,0,5,0,0,0,'','','','','','ezxmltext',194,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',17,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',195,'tags',0,0,1,3,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',18,0,0,0,0,0,0,0,0,'','','','','','ezstring',196,'title',0,0,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:5:\"Title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',18,0,0,0,0,25,0,0,0,'','','','','','ezxmltext',197,'body',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:4:\"Body\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',18,0,0,0,0,1,0,0,0,'','','','','','ezdatetime',198,'publication_date',0,0,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:16:\"Publication date\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',18,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',199,'tags',0,0,1,5,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',18,0,0,0,0,0,0,0,0,'','','','','','ezcomcomments',200,'comments',0,0,1,6,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:8:\"Comments\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',19,0,0,0,0,0,0,0,0,'','','','','','ezstring',201,'name',0,0,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',19,0,0,0,0,0,0,0,0,'','','','','','ezstring',202,'product_number',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:14:\"Product number\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',19,0,0,0,0,5,0,0,0,'','','','','','ezxmltext',203,'short_description',0,0,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:17:\"Short description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',19,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',204,'description',0,0,1,5,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',19,1,0,0,0,1,0,0,0,'','','','','','ezprice',205,'price',0,0,0,6,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:5:\"Price\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',19,0,0,0,0,0,0,0,0,'','','','','','ezimage',206,'image',0,0,0,7,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:5:\"Image\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',19,0,0,0,0,5,0,0,0,'','','','','','ezxmltext',207,'caption',0,0,1,8,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:15:\"Caption (Image)\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',19,0,0,0,0,0,0,0,0,'','','','','','ezmultioption',208,'additional_options',0,0,1,9,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:18:\"Additional options\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',19,0,0,0,0,0,0,0,0,'','','','','','ezsrrating',209,'star_rating',0,0,1,10,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Star Rating\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',19,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',210,'tags',0,0,1,11,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',19,0,0,0,0,0,0,0,0,'','','','','','ezcomcomments',211,'comments',0,0,1,12,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:8:\"Comments\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',20,0,0,0,0,0,0,0,0,'','','','','','ezstring',212,'name',0,1,1,1,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',20,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',213,'description',0,0,1,2,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(0,'',20,0,0,0,0,0,0,0,0,'','','','','','ezstring',214,'sender_name',1,1,0,3,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:11:\"Sender name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',20,0,0,0,0,0,0,0,0,'','','','','','ezstring',215,'subject',1,1,1,4,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:7:\"Subject\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',20,0,0,0,0,10,0,0,0,'','','','','','eztext',216,'message',1,1,1,5,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:7:\"Message\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(0,'',20,0,0,0,0,0,0,0,0,'','','','','','ezemail',217,'email',1,1,0,6,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:5:\"Email\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(0,'',20,0,0,0,0,0,0,0,0,'','','','','','ezemail',218,'recipient',0,0,0,7,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:9:\"Recipient\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',21,0,0,0,0,0,0,0,0,'','','','','','ezstring',219,'name',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',21,0,0,0,0,0,0,0,0,'','','','','','ezpage',220,'page',0,0,0,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:6:\"Layout\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',22,0,0,0,0,0,0,0,0,'','','','','','ezstring',221,'title',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:5:\"Title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',22,0,0,0,0,20,0,0,0,'','','','','','ezxmltext',222,'body',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:4:\"Body\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',22,0,0,0,0,0,0,0,0,'','','','','','ezsrrating',223,'star_rating',0,0,1,3,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Star Rating\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',22,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',224,'tags',0,0,1,4,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',22,0,0,0,0,0,0,0,0,'','','','','','ezcomcomments',225,'comments',0,0,1,5,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:8:\"Comments\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',22,0,0,0,0,0,0,0,0,'','','','','','ezboolean',226,'show_children',0,0,0,6,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:17:\"Display sub items\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',23,0,0,0,0,0,0,0,0,'','','','','','ezstring',227,'name',0,1,1,1,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',23,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',228,'description',0,0,1,2,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',23,0,0,0,0,0,0,0,0,'','','','','','ezoption',229,'question',1,1,0,3,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:8:\"Question\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',24,0,0,0,0,0,0,0,0,'New file','','','','','ezstring',230,'name',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',24,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',231,'description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',24,0,0,0,0,0,0,0,0,'','','','','','ezbinaryfile',232,'file',0,1,0,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:4:\"File\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',24,0,0,0,0,0,0,0,0,'','','','','','ezsrrating',233,'star_rating',0,0,1,4,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Star Rating\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',24,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',234,'tags',0,0,1,5,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',24,0,0,0,0,0,0,0,0,'','','','','','ezcomcomments',235,'comments',0,0,1,6,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:8:\"Comments\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',25,0,0,0,0,150,0,0,0,'','','','','','ezstring',236,'name',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',25,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',237,'caption',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:7:\"Caption\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',25,0,0,0,0,2,0,0,0,'','','','','','ezimage',238,'image',0,0,0,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:5:\"Image\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',25,0,0,0,0,0,0,0,0,'','','','','','ezsrrating',239,'star_rating',0,0,1,4,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Star Rating\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',25,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',240,'tags',0,0,1,5,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',26,0,0,0,0,255,0,0,0,'','','','','','ezstring',241,'name',0,1,1,1,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',26,0,0,0,0,20,0,0,0,'','','','','','ezxmltext',242,'description',0,0,1,2,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',26,0,0,0,0,0,0,0,0,'','','','','','ezurl',243,'location',0,0,0,3,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:8:\"Location\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',26,0,0,0,0,0,0,1,0,'','','','','','ezboolean',244,'open_in_new_window',0,0,1,4,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:18:\"Open in new window\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',27,0,0,0,0,0,0,0,0,'','','','','','ezstring',245,'name',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',27,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',246,'short_description',0,0,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:17:\"Short description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',27,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',247,'description',0,0,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',27,0,0,0,0,0,0,0,0,'','','','','','ezobjectrelation',248,'image',0,0,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:5:\"Image\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',27,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',249,'tags',0,0,1,5,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',28,0,0,0,0,0,0,0,0,'','','','','','ezstring',250,'name',0,1,1,1,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',28,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',251,'description',0,0,1,2,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',29,0,0,0,0,0,0,0,0,'','','','','','ezstring',252,'subject',0,1,1,1,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:7:\"Subject\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',29,0,0,0,0,10,0,0,0,'','','','','','eztext',253,'message',0,1,1,2,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:7:\"Message\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',29,0,0,0,0,0,0,0,0,'','','','','','ezboolean',254,'sticky',0,0,1,3,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:6:\"Sticky\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',29,0,0,0,0,0,0,0,0,'','','','','','ezsubtreesubscription',255,'notify_me',0,0,0,4,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:23:\"Notify me about updates\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',30,0,0,0,0,0,0,0,0,'','','','','','ezstring',256,'subject',0,1,1,1,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:7:\"Subject\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',30,0,0,0,0,10,0,0,0,'','','','','','eztext',257,'message',0,1,1,2,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:7:\"Message\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',31,0,0,0,0,55,0,0,0,'','','','','','ezstring',258,'title',0,0,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:10:\"Full title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',31,0,0,0,0,19,0,0,0,'','','','','','ezstring',259,'short_title',0,1,1,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:11:\"Short title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',31,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',260,'text',0,0,1,3,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:4:\"Text\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',31,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',261,'category',0,0,1,4,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:8:\"Category\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(0,'',31,0,0,0,0,1,0,0,0,'','','','','','ezdatetime',262,'from_time',0,1,0,5,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:9:\"From Time\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(0,'',31,0,0,0,0,0,0,0,0,'','','','','','ezdatetime',263,'to_time',0,0,0,6,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:7:\"To Time\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',31,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',264,'tags',0,0,1,7,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',32,0,0,0,0,65,0,0,0,'','','','','','ezstring',265,'title',0,1,1,1,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:5:\"Title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(0,'',32,0,0,0,0,0,0,0,0,'','','','','<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezselection><options><option id=\"0\" name=\"Calendar\"/><option id=\"1\" name=\"Program\"/></options></ezselection>\n','ezselection',266,'view',0,1,0,2,'a:0:{}','a:1:{s:6:\"eng-GB\";s:0:\"\";}','a:2:{s:6:\"eng-GB\";s:4:\"View\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',33,0,0,0,0,0,0,0,0,'','','','','','ezstring',267,'name',0,1,0,1,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',33,0,0,0,0,0,0,0,0,'','','','','','ezstring',268,'url',0,0,0,2,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:3:\"URL\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',33,0,0,0,0,0,0,0,0,'','','','','','ezimage',269,'image',0,1,0,3,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:5:\"Image\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',33,0,0,0,0,10,0,0,0,'','','','','','eztext',270,'image_map',0,0,0,4,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:9:\"Image map\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',33,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',271,'tags',0,0,1,5,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',34,0,0,0,0,0,0,0,0,'','','','','','ezstring',272,'title',0,0,1,1,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:5:\"Title\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',34,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',273,'description',0,0,1,2,'a:0:{}','a:0:{}','a:2:{s:6:\"eng-GB\";s:11:\"Description\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',35,0,0,0,0,0,0,0,0,'','','','','','ezstring',274,'name',0,0,1,1,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"Name\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',35,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',275,'caption',0,0,1,2,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:7:\"Caption\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',35,0,0,0,0,0,0,0,0,'','','','','','ezbinaryfile',276,'file',0,0,1,3,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:4:\"File\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',35,0,0,0,0,0,0,0,0,'','','','','','ezsrrating',277,'star_rating',0,0,1,4,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:11:\"Star Rating\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',35,0,0,0,0,0,0,0,0,'','','','','','ezcomcomments',278,'comments',0,0,1,5,'a:0:{}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:8:\"Comments\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',15,0,0,0,0,0,0,0,0,'','','','','','ezurl',279,'site_map_url',0,0,0,8,'a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:12:\"Site map URL\";s:16:\"always-available\";s:6:\"ger-DE\";}',0),(1,'',15,0,0,0,0,0,0,0,0,'','','','','','ezurl',280,'tag_cloud_url',0,0,0,9,'a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:13:\"Tag Cloud URL\";s:16:\"always-available\";s:6:\"ger-DE\";}',0),(1,'',15,0,0,0,0,0,0,0,0,'','','','','','ezstring',281,'login_label',0,0,0,10,'a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:13:\"Login (label)\";s:16:\"always-available\";s:6:\"ger-DE\";}',0),(1,'',15,0,0,0,0,0,0,0,0,'','','','','','ezstring',282,'logout_label',0,0,0,11,'a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:14:\"Logout (label)\";s:16:\"always-available\";s:6:\"ger-DE\";}',0),(1,'',15,0,0,0,0,0,0,0,0,'','','','','','ezstring',283,'my_profile_label',0,0,0,12,'a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:18:\"My profile (label)\";s:16:\"always-available\";s:6:\"ger-DE\";}',0),(1,'',15,0,0,0,0,0,0,0,0,'','','','','','ezstring',284,'register_user_label',0,0,0,13,'a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:25:\"Register new user (label)\";s:16:\"always-available\";s:6:\"ger-DE\";}',0),(1,'',15,0,0,0,0,0,0,0,0,'','','','','','ezstring',285,'rss_feed',0,0,0,14,'a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:8:\"RSS feed\";s:16:\"always-available\";s:6:\"ger-DE\";}',0),(1,'',15,0,0,0,0,0,0,0,0,'','','','','','ezstring',286,'shopping_basket_label',0,0,0,15,'a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:23:\"Shopping basket (label)\";s:16:\"always-available\";s:6:\"ger-DE\";}',0),(1,'',15,0,0,0,0,0,0,0,0,'','','','','','ezstring',287,'site_settings_label',0,0,0,16,'a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:21:\"Site settings (label)\";s:16:\"always-available\";s:6:\"ger-DE\";}',0),(1,'',15,0,0,0,0,10,0,0,0,'','','','','','eztext',288,'footer_text',0,0,0,17,'a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:11:\"Footer text\";s:16:\"always-available\";s:6:\"ger-DE\";}',0),(1,'',15,0,0,0,0,0,0,0,0,'','','','','','ezboolean',289,'hide_powered_by',0,0,0,18,'a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:17:\"Hide \"Powered by\"\";s:16:\"always-available\";s:6:\"ger-DE\";}',0),(1,'',15,0,0,0,0,10,0,0,0,'','','','','','eztext',290,'footer_script',0,0,0,19,'a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:17:\"Footer Javascript\";s:16:\"always-available\";s:6:\"ger-DE\";}',0),(1,'',1,0,0,0,0,0,0,0,0,'','','','','','ezpage',291,'call_for_action',0,0,0,6,'a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:15:\"Call For Action\";s:16:\"always-available\";s:6:\"ger-DE\";}',0),(1,'',1,0,0,0,0,0,0,0,0,'','','','','','ezkeyword',292,'tags',0,0,0,7,'a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:4:\"Tags\";s:16:\"always-available\";s:6:\"ger-DE\";}',0),(1,'',38,0,0,0,0,0,0,0,0,'','','','','','ezstring',300,'name',0,0,1,1,'a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:4:\"Name\";s:16:\"always-available\";s:6:\"ger-DE\";}',0),(1,'',39,0,0,0,0,0,0,0,0,'','','','','','ezstring',301,'name',0,0,1,1,'a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:4:\"Name\";s:16:\"always-available\";s:6:\"ger-DE\";}',0),(1,'',39,0,0,0,0,0,0,0,0,'','','','','','ezimage',302,'image',0,0,0,2,'a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:5:\"Image\";s:16:\"always-available\";s:6:\"ger-DE\";}',0),(1,'',39,0,0,0,0,10,0,0,0,'','','','','','ezxmltext',303,'description',0,0,1,3,'a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:12:\"Beschreibung\";s:16:\"always-available\";s:6:\"ger-DE\";}',0),(1,'',19,0,0,0,0,0,0,0,0,'','','','','','ezstring',304,'type',0,0,1,3,'a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"eng-GB\";s:0:\"\";s:16:\"always-available\";s:6:\"eng-GB\";}','a:2:{s:6:\"eng-GB\";s:3:\"Typ\";s:16:\"always-available\";s:6:\"eng-GB\";}',0),(1,'',38,0,0,0,0,0,0,0,0,'','','','','','ezimage',305,'image',0,0,0,2,'a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:0:\"\";s:16:\"always-available\";s:6:\"ger-DE\";}','a:2:{s:6:\"ger-DE\";s:4:\"Bild\";s:16:\"always-available\";s:6:\"ger-DE\";}',0);
/*!40000 ALTER TABLE `ezcontentclass_attribute` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcontentclass_classgroup`
--
DROP TABLE IF EXISTS `ezcontentclass_classgroup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcontentclass_classgroup` (
`contentclass_id` int(11) NOT NULL DEFAULT '0',
`contentclass_version` int(11) NOT NULL DEFAULT '0',
`group_id` int(11) NOT NULL DEFAULT '0',
`group_name` varchar(255) DEFAULT NULL,
PRIMARY KEY (`contentclass_id`,`contentclass_version`,`group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcontentclass_classgroup`
--
LOCK TABLES `ezcontentclass_classgroup` WRITE;
/*!40000 ALTER TABLE `ezcontentclass_classgroup` DISABLE KEYS */;
INSERT INTO `ezcontentclass_classgroup` VALUES (1,0,1,'Content'),(3,0,2,'Users'),(4,0,2,'Users'),(13,0,1,'Content'),(14,0,4,'Setup'),(15,0,4,'Setup'),(16,0,1,'Content'),(17,0,1,'Content'),(18,0,1,'Content'),(19,0,1,'Content'),(20,0,1,'Content'),(21,0,1,'Content'),(22,0,1,'Content'),(23,0,1,'Content'),(24,0,3,'Media'),(25,0,3,'Media'),(26,0,1,'Content'),(27,0,1,'Content'),(28,0,1,'Content'),(29,0,1,'Content'),(30,0,1,'Content'),(31,0,1,'Content'),(32,0,1,'Content'),(33,0,1,'Content'),(34,0,1,'Content'),(35,0,3,'Media'),(38,0,1,'Content'),(39,0,1,'Content');
/*!40000 ALTER TABLE `ezcontentclass_classgroup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcontentclass_name`
--
DROP TABLE IF EXISTS `ezcontentclass_name`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcontentclass_name` (
`contentclass_id` int(11) NOT NULL DEFAULT '0',
`contentclass_version` int(11) NOT NULL DEFAULT '0',
`language_id` int(11) NOT NULL DEFAULT '0',
`language_locale` varchar(20) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`contentclass_id`,`contentclass_version`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcontentclass_name`
--
LOCK TABLES `ezcontentclass_name` WRITE;
/*!40000 ALTER TABLE `ezcontentclass_name` DISABLE KEYS */;
INSERT INTO `ezcontentclass_name` VALUES (1,0,3,'ger-DE','Folder'),(3,0,3,'ger-DE','User group'),(4,0,3,'ger-DE','User'),(13,0,3,'ger-DE','Comment'),(14,0,3,'ger-DE','Common ini settings'),(15,0,3,'ger-DE','Template look'),(16,0,5,'eng-GB','Article'),(17,0,5,'eng-GB','Blog'),(18,0,5,'eng-GB','Blog post'),(19,0,5,'eng-GB','Product'),(20,0,5,'eng-GB','Feedback form'),(21,0,5,'eng-GB','Landing Page'),(22,0,5,'eng-GB','Wiki Page'),(23,0,5,'eng-GB','Poll'),(24,0,5,'eng-GB','File'),(25,0,5,'eng-GB','Image'),(26,0,5,'eng-GB','Link'),(27,0,5,'eng-GB','Gallery'),(28,0,5,'eng-GB','Forum'),(29,0,5,'eng-GB','Forum topic'),(30,0,5,'eng-GB','Forum reply'),(31,0,5,'eng-GB','Event'),(32,0,5,'eng-GB','Event calendar'),(33,0,5,'eng-GB','Banner'),(34,0,5,'eng-GB','Forums'),(35,0,5,'eng-GB','Video'),(38,0,3,'ger-DE','Section'),(39,0,3,'ger-DE','Food');
/*!40000 ALTER TABLE `ezcontentclass_name` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcontentclassgroup`
--
DROP TABLE IF EXISTS `ezcontentclassgroup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcontentclassgroup` (
`created` int(11) NOT NULL DEFAULT '0',
`creator_id` int(11) NOT NULL DEFAULT '0',
`id` int(11) NOT NULL AUTO_INCREMENT,
`modified` int(11) NOT NULL DEFAULT '0',
`modifier_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcontentclassgroup`
--
LOCK TABLES `ezcontentclassgroup` WRITE;
/*!40000 ALTER TABLE `ezcontentclassgroup` DISABLE KEYS */;
INSERT INTO `ezcontentclassgroup` VALUES (1031216928,14,1,1033922106,14,'Content'),(1031216941,14,2,1033922113,14,'Users'),(1032009743,14,3,1033922120,14,'Media'),(1081858024,14,4,1081858024,14,'Setup');
/*!40000 ALTER TABLE `ezcontentclassgroup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcontentobject`
--
DROP TABLE IF EXISTS `ezcontentobject`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcontentobject` (
`contentclass_id` int(11) NOT NULL DEFAULT '0',
`current_version` int(11) DEFAULT NULL,
`id` int(11) NOT NULL AUTO_INCREMENT,
`initial_language_id` int(11) NOT NULL DEFAULT '0',
`language_mask` int(11) NOT NULL DEFAULT '0',
`modified` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) DEFAULT NULL,
`owner_id` int(11) NOT NULL DEFAULT '0',
`published` int(11) NOT NULL DEFAULT '0',
`remote_id` varchar(100) DEFAULT NULL,
`section_id` int(11) NOT NULL DEFAULT '0',
`status` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `ezcontentobject_remote_id` (`remote_id`),
KEY `ezcontentobject_classid` (`contentclass_id`),
KEY `ezcontentobject_currentversion` (`current_version`),
KEY `ezcontentobject_lmask` (`language_mask`),
KEY `ezcontentobject_owner` (`owner_id`),
KEY `ezcontentobject_pub` (`published`),
KEY `ezcontentobject_status` (`status`)
) ENGINE=InnoDB AUTO_INCREMENT=154 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcontentobject`
--
LOCK TABLES `ezcontentobject` WRITE;
/*!40000 ALTER TABLE `ezcontentobject` DISABLE KEYS */;
INSERT INTO `ezcontentobject` VALUES (3,1,4,2,3,1033917596,'Users',14,1033917596,'f5c88a2209584891056f987fd965b0ba',2,1),(4,2,10,2,3,1072180405,'Anonymous User',14,1033920665,'faaeb9be3bd98ed09f606fc16d144eca',2,1),(3,2,11,2,3,1381794991,'Members',14,1033920746,'5f7f0bdb3381d6a461d8c29ff53d908f',2,1),(3,1,12,2,3,1033920775,'Administrator users',14,1033920775,'9b47a45624b023b1a76c73b74d704acf',2,1),(3,1,13,2,3,1033920794,'Editors',14,1033920794,'3c160cca19fb135f83bd02d911f04db2',2,1),(4,4,14,2,3,1381794990,'Amir Koklan',14,1033920830,'1bb4fe25487f05527efa8bfd394cecc7',2,1),(1,1,41,2,3,1060695457,'Media',14,1060695457,'a6e35cbcb7cd6ae4b691f3eee30cd262',3,1),(3,1,42,2,3,1072180330,'Anonymous Users',14,1072180330,'15b256dbea2ae72418ff5facc999e8f9',2,1),(1,1,45,2,3,1079684190,'Setup',14,1079684190,'241d538ce310074e602f29f49e44e938',4,1),(1,1,49,2,3,1080220197,'Images',14,1080220197,'e7ff633c6b8e0fd3531e74c6e712bead',3,1),(1,1,50,2,3,1080220220,'Files',14,1080220220,'732a5acd01b51a6fe6eab448ad4138a9',3,1),(1,1,51,2,3,1080220233,'Multimedia',14,1080220233,'09082deb98662a104f325aaa8c4933d3',3,1),(14,1,52,2,2,1082016591,'Common INI settings',14,1082016591,'27437f3547db19cf81a33c92578b2c89',4,1),(15,2,54,2,2,1301062376,'eZ Publish Demo Design',14,1082016652,'8b8b22fe3c6061ed500fbd2b377b885f',5,1),(1,1,56,2,3,1103023132,'Design',14,1103023132,'08799e609893f7aba22f10cb466d9cc8',5,1),(21,1,57,2,3,1284454019,'Home',14,1195480486,'8a9c9c761004866fb458d89910f52bee',1,2),(21,1,58,2,2,1332939802,'Getting Started',14,1332927190,'7c013ad2b5221a74704c3d8313c4936a',1,2),(1,1,59,2,3,1332936697,'Resources',14,1332936697,'90cf3af65240904b2e8ededf5a80aa52',1,2),(16,1,60,2,2,1332939216,'eZ Publish Tutorials',14,1332938805,'93db70ffc8003c01f03cf81fa622d456',1,2),(16,1,61,2,2,1332939113,'eZ User Documentation',14,1332938824,'dc55dac3352b47cdf54646d9cb6200e5',1,2),(16,1,62,2,2,1332939505,'Technical Documentation',14,1332939505,'45d1f7e22c1ddbaeaae72505341e854d',1,2),(16,1,63,2,2,1332939663,'Demos and Videos',14,1332939663,'94b224233ef4b2d8660824ad1bf27bc4',1,2),(1,1,64,2,3,1332937412,'Selected Features',14,1332932074,'b26079e84486ed2368778c2a2ff3be15',1,2),(16,1,65,2,2,1332936299,'Search Result Clustering with eZ Find',14,1332932904,'c8fa6ace2c8b3cdd30941c89470b9213',1,2),(16,1,66,2,2,1332933837,'Autosave in Editorial Editing Process',14,1332933216,'141f8143f9b2e740eb1541aa44cccdda',1,2),(16,1,67,2,2,1332938654,'Multivariate Testing',14,1332933539,'db01949a286c60127a496daf7343591c',1,2),(16,1,68,2,2,1332938008,'Improved Online Analytics',14,1332933792,'16923c9da5bf2dc970e7c802ae434f8e',1,2),(16,1,69,2,2,1332939761,'Getting Started with eZ Publish Etna',14,1332934074,'699c5b72347666a663adf84f5410ea18',1,2),(21,2,70,2,2,1381796527,'Travel',14,1332922372,'da2fff8ce1d176a6b109b58dc399b441',1,2),(27,1,71,2,2,1332922399,'Peruvian Amazon',14,1332922399,'c995a5cff3a86e483fa0affde17ea562',1,2),(25,1,72,2,2,1332923876,'Amazon Side River',14,1332923876,'591c4c5232934dc019c32557cd919aba',1,2),(25,1,73,2,2,1332923912,'River Boat',14,1332923912,'ae6a4339b92614cb2f43a515f4cf5a1d',1,2),(25,1,74,2,2,1332923987,'Flying Bird',14,1332923987,'c9f16079a6fc0316c9a3c432c1ca0813',1,2),(25,1,75,2,2,1332924014,'Turtles',14,1332924014,'9336fbd1f7a91ae0eb831d9f3e7856d3',1,2),(25,1,76,2,2,1332924042,'Hat on a Stick',14,1332924042,'3fffa16022ba5d62a4f5166780dc6fad',1,2),(25,1,77,2,2,1332924104,'Heron in the Water',14,1332924104,'4ebf1c6f8affa7450433f217a19474d3',1,2),(25,1,78,2,2,1332924130,'Bird Island',14,1332924130,'2d9839a2f0afa38ea22394ac883c51fb',1,2),(25,1,79,2,2,1332924185,'Aligator',14,1332924185,'15afd328fad196528c8752dd318338d5',1,2),(35,1,80,2,2,1332929023,'Piranha Fishing',14,1332928969,'955a8335666b76426497ed397bd60224',1,2),(1,1,81,2,3,1332924346,'Information',14,1332924346,'d8f7773cbfb1d877deb524b58eacc822',1,2),(16,1,82,2,2,1332929154,'Largest City Without Road Connection',14,1332924325,'e1f4777db6743dc2d4bff7f046866c44',1,2),(16,1,83,2,2,1332935545,'Amazon Jungle',14,1332925062,'789fb4ebd973179859a9843d802d4cb7',1,2),(16,1,84,2,2,1332929120,'Floating Village in Iquitos, Loreto',14,1332926147,'7339e1532bf2f29acc606760125f5b9a',1,2),(21,1,85,2,2,1332931812,'City Shopping',14,1332929528,'fdfad0d10118eda1334a1aa8ee117ca6',1,2),(1,1,86,2,3,1332935044,'Products',14,1332929541,'88ebdebc4d5e55ebe841c50a92882961',1,2),(19,1,87,2,2,1332930150,'New York Cab',14,1332930102,'36e4d2c8185dd4216b15c2ce950dec9d',1,2),(19,1,88,2,2,1332930878,'City View',14,1332930586,'ffb82f7e0eac83ca50fbef0b65ff0823',1,2),(19,1,89,2,2,1332930865,'Street Crossing',14,1332930788,'3d33faf4810668ffc1b8290198ac67a5',1,2),(1,1,90,2,3,1332930952,'Locations',14,1332930904,'3d8a1028538c7c1d019cb39890b7d64a',1,2),(16,1,91,2,2,1332934427,'New York City',14,1332930989,'87eb8bb6f1839c4c2b5a63c08240a0e3',1,2),(1,1,92,2,3,1332935082,'Partner Section',14,1332927318,'d58a80698adb4e2fc8841ba07a5d4a3b',6,2),(24,1,93,2,2,1332931967,'eZ Logo Black',14,1332931967,'dea1fa921d0240f266116fecf9e1d94d',6,2),(24,1,94,2,2,1332932005,'eZ Logo White',14,1332932005,'9c75ceb69a9eeb2fb4285c427fc81022',6,2),(1,1,95,2,3,1332932020,'Logos',14,1332932020,'aff81f1aaca7d418e748bfc3a98e5caf',6,2),(22,1,96,2,2,1332932333,'Partner Wiki',14,1332932333,'8611401d0e6198c8c10c2526e4af6f6a',6,2),(17,1,97,2,2,1332932403,'Blog',14,1332932403,'c62cbc4be226d3c7c7379e0cd9ef7ba7',1,2),(18,1,98,2,2,1332932488,'Example Blog Post',14,1332932449,'f6fdb5ffc10c01f8ba1093c206e9dc6a',1,2),(20,1,99,2,2,1332927282,'Contact Us',14,1332927205,'f8cc7a4cf8a964a1a0ea6666f5da7d0d',1,1),(3,1,100,2,3,1381794991,'Partners',14,1381794991,'76832ffc1ae635bd80d49787e5a54471',2,1),(1,2,101,2,3,1382071267,'Pizza Hollywood',14,1381869839,'9c99a49ee26febf70bfa35d451e95030',1,1),(38,3,122,2,2,1382683099,'Pizza',14,1382028737,'ee63c8482e8a7c250afe69d4797f533b',1,1),(38,1,123,2,2,1382028778,'From Italy',14,1382028778,'f14074f913f56f8f4e4630cd2d92f9c6',1,1),(38,1,124,2,2,1382028827,'Baguette',14,1382028827,'f6c2402f4ec6649afae51ac53ae2c6cd',1,1),(38,1,125,2,2,1382028858,'Salate',14,1382028858,'d31f43a01cfa9d428a28aa0e99227558',1,1),(38,3,126,2,2,1382950633,'Burger',14,1382029414,'0062b111a702493d7eed2a2f15b895c2',1,1),(38,1,127,2,2,1382029436,'Wrap',14,1382029436,'8b3826f393645aa9bd30ff1424f88b6e',1,1),(38,1,128,2,2,1382029457,'Spezial',14,1382029457,'7e0df07a48453391e5fd7041c5c83805',1,1),(38,1,129,2,2,1382029556,'Dessert',14,1382029556,'e757577b97d9584881bc9ca55e7f21cb',1,1),(38,1,130,2,2,1382029594,'Getränke',14,1382029594,'9d3f40eed78e3fb23527519759cad296',1,1),(38,1,131,2,2,1382029660,'Extras',14,1382029660,'f8a9847c8f5703da2faeec61cc563039',1,1),(1,1,132,2,3,1382070235,'Footer',14,1382070235,'23a8bd5cd968d51dfcacfead56c2e3f4',1,1),(16,2,133,2,2,1382731379,'Impressum',14,1382070975,'d5b09c35aa54ff5650e03d8139c9167c',1,1),(1,1,134,2,3,1382071289,'Foods',14,1382071289,'90ace9e98722fddb4ee3d1c883c92202',1,1),(39,2,135,2,2,1382602944,'Pizza L.A.',14,1382076566,'6034930fbb0c74de14e635b8c0a52c7e',1,1),(19,3,136,2,2,1382729849,'Pizza L.A CL',14,1382076895,'b274fc4e2ff610a2f4809e1e9eeb6918',1,1),(19,2,137,2,2,1382729874,'Pizza L.A American',14,1382613725,'ef3cc3618909d0109110816b849e8c54',1,1),(19,2,138,2,2,1382729896,'Pizza L.A Jumbo',14,1382613863,'582c5283db2a8aa747e35a8e7e18e7dc',1,1),(1,1,140,2,3,1382621828,'Banner',14,1382621828,'c431bff8b12a7eb2becde90148ba8af4',1,1),(25,1,142,2,2,1382622191,'banner',14,1382622191,'dd0f94af2745a98f6e020165e37f40b0',1,1),(25,1,145,2,2,1382742363,'banner',14,1382742363,'92300ddbf8b3efa2868bd4243b5ca67c',1,1),(25,1,146,2,2,1382742386,'banner',14,1382742386,'27a5109932bea691fa412904b34299c3',1,1),(39,3,147,2,2,1382751407,'Pizza California',14,1382743416,'7e128176777efe19866336566454df96',1,1),(39,2,148,2,2,1382743436,'Pizza L.A.',14,1382743436,'8917fbf09681e9812c9b910264c43055',1,1),(39,2,149,2,2,1382743456,'Pizza L.A.',14,1382743456,'57fdb322d7f31d1ca25500f0067ffd26',1,1),(25,1,150,2,2,1382751527,'Somer',14,1382751527,'50beb4bec3c977b668c2c4b35d5a1a24',1,1),(39,2,151,2,2,1382951383,'Hamburger',14,1382950781,'0b9f40338ecc445546e5277d32af8914',1,1),(19,2,152,2,2,1382950964,'Hamburger',14,1382950931,'28dabb837bf23fd4efad25e71e10c755',1,1),(4,1,153,2,3,0,'Neue/er/es User',14,0,'745f8fcec5945992a0a6aac2a943a653',2,0);
/*!40000 ALTER TABLE `ezcontentobject` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcontentobject_attribute`
--
DROP TABLE IF EXISTS `ezcontentobject_attribute`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcontentobject_attribute` (
`attribute_original_id` int(11) DEFAULT '0',
`contentclassattribute_id` int(11) NOT NULL DEFAULT '0',
`contentobject_id` int(11) NOT NULL DEFAULT '0',
`data_float` double DEFAULT NULL,
`data_int` int(11) DEFAULT NULL,
`data_text` longtext,
`data_type_string` varchar(50) DEFAULT '',
`id` int(11) NOT NULL AUTO_INCREMENT,
`language_code` varchar(20) NOT NULL DEFAULT '',
`language_id` int(11) NOT NULL DEFAULT '0',
`sort_key_int` int(11) NOT NULL DEFAULT '0',
`sort_key_string` varchar(255) NOT NULL DEFAULT '',
`version` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`,`version`),
KEY `ezcontentobject_attr_id` (`id`),
KEY `ezcontentobject_attribute_co_id_ver_lang_code` (`contentobject_id`,`version`,`language_code`),
KEY `ezcontentobject_attribute_contentobject_id` (`contentobject_id`),
KEY `ezcontentobject_attribute_language_code` (`language_code`),
KEY `sort_key_int` (`sort_key_int`),
KEY `sort_key_string` (`sort_key_string`)
) ENGINE=InnoDB AUTO_INCREMENT=900 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcontentobject_attribute`
--
LOCK TABLES `ezcontentobject_attribute` WRITE;
/*!40000 ALTER TABLE `ezcontentobject_attribute` DISABLE KEYS */;
INSERT INTO `ezcontentobject_attribute` VALUES (0,7,4,NULL,NULL,'Main group','ezstring',7,'ger-DE',3,0,'',1),(0,6,4,NULL,NULL,'Users','ezstring',8,'ger-DE',3,0,'',1),(0,8,10,0,0,'Anonymous','ezstring',19,'ger-DE',3,0,'anonymous',2),(0,9,10,0,0,'User','ezstring',20,'ger-DE',3,0,'user',2),(0,12,10,0,0,'','ezuser',21,'ger-DE',3,0,'',2),(0,6,11,0,0,'Guest accounts','ezstring',22,'ger-DE',3,0,'',1),(0,6,11,0,0,'Members','ezstring',22,'ger-DE',3,0,'members',2),(0,7,11,0,0,'','ezstring',23,'ger-DE',3,0,'',1),(0,7,11,0,0,'','ezstring',23,'ger-DE',3,0,'',2),(0,6,12,0,0,'Administrator users','ezstring',24,'ger-DE',3,0,'',1),(0,7,12,0,0,'','ezstring',25,'ger-DE',3,0,'',1),(0,6,13,0,0,'Editors','ezstring',26,'ger-DE',3,0,'',1),(0,7,13,0,0,'','ezstring',27,'ger-DE',3,0,'',1),(0,8,14,0,0,'Administrator','ezstring',28,'ger-DE',3,0,'administrator',3),(0,8,14,0,0,'Amir','ezstring',28,'ger-DE',3,0,'amir',4),(0,9,14,0,0,'User','ezstring',29,'ger-DE',3,0,'user',3),(0,9,14,0,0,'Koklan','ezstring',29,'ger-DE',3,0,'koklan',4),(30,12,14,0,0,'','ezuser',30,'ger-DE',3,0,'',3),(30,12,14,0,0,'','ezuser',30,'ger-DE',3,0,'',4),(0,4,41,0,0,'Media','ezstring',98,'ger-DE',3,0,'',1),(0,119,41,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\"\n xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\"\n xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\" />','ezxmltext',99,'ger-DE',3,0,'',1),(0,6,42,0,0,'Anonymous Users','ezstring',100,'ger-DE',3,0,'anonymous users',1),(0,7,42,0,0,'User group for the anonymous user','ezstring',101,'ger-DE',3,0,'user group for the anonymous user',1),(0,155,41,0,0,'','ezstring',103,'ger-DE',3,0,'',1),(0,156,41,0,1045487555,'','ezxmltext',105,'ger-DE',3,0,'',1),(0,158,41,0,0,'','ezboolean',109,'ger-DE',3,0,'',1),(0,4,45,0,0,'Setup','ezstring',123,'ger-DE',3,0,'setup',1),(0,155,45,0,0,'','ezstring',124,'ger-DE',3,0,'',1),(0,119,45,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\"\n xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\"\n xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\" />','ezxmltext',125,'ger-DE',3,0,'',1),(0,156,45,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\"\n xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\"\n xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\" />','ezxmltext',126,'ger-DE',3,0,'',1),(0,158,45,0,0,'','ezboolean',128,'ger-DE',3,0,'',1),(0,4,49,0,0,'Images','ezstring',142,'ger-DE',3,0,'images',1),(0,155,49,0,0,'','ezstring',143,'ger-DE',3,0,'',1),(0,119,49,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\"\n xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\"\n xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\" />','ezxmltext',144,'ger-DE',3,0,'',1),(0,156,49,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\"\n xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\"\n xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\" />','ezxmltext',145,'ger-DE',3,0,'',1),(0,158,49,0,1,'','ezboolean',146,'ger-DE',3,1,'',1),(0,4,50,0,0,'Files','ezstring',147,'ger-DE',3,0,'files',1),(0,155,50,0,0,'','ezstring',148,'ger-DE',3,0,'',1),(0,119,50,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\"\n xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\"\n xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\" />','ezxmltext',149,'ger-DE',3,0,'',1),(0,156,50,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\"\n xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\"\n xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\" />','ezxmltext',150,'ger-DE',3,0,'',1),(0,158,50,0,1,'','ezboolean',151,'ger-DE',3,1,'',1),(0,4,51,0,0,'Multimedia','ezstring',152,'ger-DE',3,0,'multimedia',1),(0,155,51,0,0,'','ezstring',153,'ger-DE',3,0,'',1),(0,119,51,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\"\n xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\"\n xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\" />','ezxmltext',154,'ger-DE',3,0,'',1),(0,156,51,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\"\n xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\"\n xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\" />','ezxmltext',155,'ger-DE',3,0,'',1),(0,158,51,0,1,'','ezboolean',156,'ger-DE',3,1,'',1),(0,159,52,0,0,'Common INI settings','ezstring',157,'ger-DE',2,0,'common ini settings',1),(0,160,52,0,0,'/content/view/full/2/','ezinisetting',158,'ger-DE',2,0,'',1),(0,161,52,0,0,'/content/view/full/2','ezinisetting',159,'ger-DE',2,0,'',1),(0,162,52,0,0,'disabled','ezinisetting',160,'ger-DE',2,0,'',1),(0,163,52,0,0,'disabled','ezinisetting',161,'ger-DE',2,0,'',1),(0,164,52,0,0,'','ezinisetting',162,'ger-DE',2,0,'',1),(0,165,52,0,0,'enabled','ezinisetting',163,'ger-DE',2,0,'',1),(0,166,52,0,0,'disabled','ezinisetting',164,'ger-DE',2,0,'',1),(0,167,52,0,0,'enabled','ezinisetting',165,'ger-DE',2,0,'',1),(0,168,52,0,0,'enabled','ezinisetting',166,'ger-DE',2,0,'',1),(0,169,52,0,0,'=geometry/scale=100;100','ezinisetting',167,'ger-DE',2,0,'',1),(0,170,52,0,0,'=geometry/scale=200;200','ezinisetting',168,'ger-DE',2,0,'',1),(0,171,52,0,0,'=geometry/scale=300;300','ezinisetting',169,'ger-DE',2,0,'',1),(0,172,54,0,0,'eZ Publish Demo Design','ezinisetting',170,'ger-DE',2,0,'',2),(0,173,54,0,0,'author=eZ Systems\ncopyright=eZ Systems\ndescription=Content Management System\nkeywords=cms, publish, e-commerce, content management, development framework','ezinisetting',171,'ger-DE',2,0,'',2),(0,174,54,0,0,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"eZ-Publish-Demo-Design1.png\" suffix=\"png\" basename=\"eZ-Publish-Demo-Design1\" dirpath=\"var/ezdemo_site/storage/images/design/plain-site/172-2-ger-DE\" url=\"var/ezdemo_site/storage/images/design/plain-site/172-2-ger-DE/eZ-Publish-Demo-Design1.png\" original_filename=\"logo.png\" mime_type=\"image/png\" width=\"138\" height=\"46\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1381794991\"><original attribute_id=\"172\" attribute_version=\"2\" attribute_language=\"ger-DE\"/><alias name=\"reference\" filename=\"eZ-Publish-Demo-Design1_reference.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/design/plain-site/172-2-ger-DE\" url=\"var/ezdemo_site/storage/images/design/plain-site/172-2-ger-DE/eZ-Publish-Demo-Design1_reference.png\" mime_type=\"image/png\" width=\"138\" height=\"46\" alias_key=\"2605465115\" timestamp=\"1381919078\" is_valid=\"1\"/><alias name=\"large\" filename=\"eZ-Publish-Demo-Design1_large.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/design/plain-site/172-2-ger-DE\" url=\"var/ezdemo_site/storage/images/design/plain-site/172-2-ger-DE/eZ-Publish-Demo-Design1_large.png\" mime_type=\"image/png\" width=\"138\" height=\"46\" alias_key=\"1592566908\" timestamp=\"1381919078\" is_valid=\"1\"/></ezimage>\n','ezimage',172,'ger-DE',2,0,'',2),(0,175,54,0,0,'0','ezpackage',173,'ger-DE',2,0,'0',2),(0,177,54,0,0,'[email protected]','ezinisetting',175,'ger-DE',2,0,'',2),(0,178,54,0,0,'localhost:8080/hollywood/index.php','ezinisetting',176,'ger-DE',2,0,'',2),(0,179,10,0,0,'','eztext',177,'ger-DE',3,0,'',2),(0,179,14,0,0,'','eztext',178,'ger-DE',3,0,'',3),(0,179,14,0,0,'','eztext',178,'ger-DE',3,0,'',4),(0,180,10,0,0,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382749467\"/>\n','ezimage',179,'ger-DE',3,0,'',2),(0,180,14,0,0,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1301057722\"><original attribute_id=\"180\" attribute_version=\"3\" attribute_language=\"eng-GB\"/></ezimage>\n','ezimage',180,'ger-DE',3,0,'',3),(0,180,14,0,0,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1301057722\"><original attribute_id=\"180\" attribute_version=\"3\" attribute_language=\"eng-GB\"/></ezimage>\n','ezimage',180,'ger-DE',3,0,'',4),(0,4,56,0,NULL,'Design','ezstring',181,'ger-DE',3,0,'design',1),(0,155,56,0,NULL,'','ezstring',182,'ger-DE',3,0,'',1),(0,119,56,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\"\n xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\"\n xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\" />','ezxmltext',183,'ger-DE',3,0,'',1),(0,156,56,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\"\n xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\"\n xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\" />','ezxmltext',184,'ger-DE',3,0,'',1),(0,158,56,0,1,'','ezboolean',185,'ger-DE',3,1,'',1),(0,219,57,0,NULL,'Home','ezstring',186,'ger-DE',3,0,'home',1),(0,220,57,0,NULL,'<?xml version=\"1.0\"?>\n<page>\n <zone_layout>2ZonesLayout1</zone_layout>\n <zone id=\"id_865346aabbcc48a9839274cc554868be\">\n <zone_identifier>left</zone_identifier>\n <block id=\"id_4efd68496edd8184aade729b4d2ee17b\">\n <name>Main Story</name>\n <zone_id>865346aabbcc48a9839274cc554868be</zone_id>\n <type>Campaign</type>\n <view>default</view>\n <overflow_id></overflow_id>\n </block>\n <block id=\"id_bffec84af43985679e30e6ff6d79c19b\">\n <name>Mixed Content</name>\n <zone_id>865346aabbcc48a9839274cc554868be</zone_id>\n <type>ContentGrid</type>\n <view>2_columns_2_rows</view>\n <overflow_id></overflow_id>\n </block>\n <block id=\"id_d769ae69f693b76429a731a8ce475e23\">\n <name>Gallery</name>\n <zone_id>865346aabbcc48a9839274cc554868be</zone_id>\n <type>Gallery</type>\n <view>default</view>\n <overflow_id></overflow_id>\n </block>\n </zone>\n <zone id=\"id_f742abffba08fc849b6e80dec769a74c\">\n <zone_identifier>right</zone_identifier>\n <block id=\"id_cd58c813f7463484f22a2168a44cdcc4\">\n <name>Highlighted Feature</name>\n <zone_id>f742abffba08fc849b6e80dec769a74c</zone_id>\n <type>HighlightedItem</type>\n <view>default</view>\n <overflow_id></overflow_id>\n </block>\n <block id=\"id_9481d2b1810c928ded55e94b0ae13647\">\n <name>Main Items</name>\n <zone_id>f742abffba08fc849b6e80dec769a74c</zone_id>\n <type>ContentGrid</type>\n <view>default</view>\n <overflow_id></overflow_id>\n </block>\n <block id=\"id_b0d7b1fae15381576e13e5bd1480f555\">\n <name>News</name>\n <zone_id>f742abffba08fc849b6e80dec769a74c</zone_id>\n <type>FeedReader</type>\n <custom_attributes>\n <source>http://ez.no/rss/feed/news</source>\n <limit>5</limit>\n <offset>0</offset>\n </custom_attributes>\n <view>default</view>\n </block>\n <block id=\"id_530f34a56860389349bd37e74bc095a7\">\n <name>Selected Video</name>\n <zone_id>f742abffba08fc849b6e80dec769a74c</zone_id>\n <type>Video</type>\n <view>default</view>\n <overflow_id></overflow_id>\n </block>\n <block id=\"id_27d176fb3baf2ab9dea2b1f98270e701\">\n <name>Tags</name>\n <zone_id>f742abffba08fc849b6e80dec769a74c</zone_id>\n <type>TagCloud</type>\n <view>default</view>\n <custom_attributes>\n <subtree_node_id>2</subtree_node_id>\n </custom_attributes>\n </block>\n </zone>\n</page>\n','ezpage',187,'ger-DE',3,0,'',1),(0,219,58,0,NULL,'Getting Started','ezstring',188,'ger-DE',2,0,'getting started',1),(0,220,58,0,NULL,'<?xml version=\"1.0\"?>\n<page>\n <zone_layout>2ZonesLayout2</zone_layout>\n <zone id=\"id_c5ce576877ab71afb7c143ea3276db4f\">\n <zone_identifier>left</zone_identifier>\n <block id=\"id_74f7a63a2c079e279c8669f660ded478\">\n <name>Highlighted Feature</name>\n <zone_id>c5ce576877ab71afb7c143ea3276db4f</zone_id>\n <type>HighlightedItem</type>\n <view>default</view>\n <overflow_id></overflow_id>\n </block>\n <block id=\"id_a577b33f9a9ec054e0c2171288056be9\">\n <name>Main Features</name>\n <zone_id>c5ce576877ab71afb7c143ea3276db4f</zone_id>\n <type>ContentGrid</type>\n <view>1_column_4_rows</view>\n <overflow_id></overflow_id>\n </block>\n </zone>\n <zone id=\"id_fe8088a104581ea7faa6c00fe743f072\">\n <zone_identifier>right</zone_identifier>\n <block id=\"id_c0ef745972ce2d55057c70d157eb7b96\">\n <name></name>\n <zone_id>fe8088a104581ea7faa6c00fe743f072</zone_id>\n <type>Campaign</type>\n <view>default</view>\n <overflow_id></overflow_id>\n </block>\n <block id=\"id_594491ab539125dc271807a83724e608\">\n <name></name>\n <zone_id>fe8088a104581ea7faa6c00fe743f072</zone_id>\n <type>ContentGrid</type>\n <view>2_columns_2_rows</view>\n <overflow_id></overflow_id>\n </block>\n </zone>\n</page>\n','ezpage',189,'ger-DE',2,0,'',1),(0,4,59,0,NULL,'Resources','ezstring',190,'ger-DE',3,0,'resources',1),(0,155,59,0,NULL,'','ezstring',191,'ger-DE',3,0,'',1),(0,119,59,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',192,'ger-DE',3,0,'',1),(0,156,59,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',193,'ger-DE',3,0,'',1),(194,158,59,0,1,'','ezboolean',194,'ger-DE',3,1,'',1),(0,181,60,0,NULL,'eZ Publish Tutorials','ezstring',195,'ger-DE',2,0,'ez publish tutorials',1),(0,182,60,0,NULL,'','ezstring',196,'ger-DE',2,0,'',1),(0,183,60,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezauthor><authors><author id=\"0\" name=\"Administrator User\" email=\"[email protected]\"/></authors></ezauthor>\n','ezauthor',197,'ger-DE',2,0,'',1),(0,184,60,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\"><ul><li><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\"><link url_id=\"23\">Developing eZ Publish Extensions</link></paragraph></li><li><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\"><link url_id=\"24\">Building mobile browser and hybrid applications with eZ Publish</link></paragraph></li></ul></paragraph></section>','ezxmltext',198,'ger-DE',2,0,'',1),(0,185,60,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',199,'ger-DE',2,0,'',1),(0,186,60,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1381794977\"><original attribute_id=\"200\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',200,'ger-DE',2,0,'',1),(0,187,60,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',201,'ger-DE',2,0,'',1),(0,188,60,0,0,'','ezdatetime',202,'ger-DE',2,0,'',1),(0,189,60,0,0,'','ezsrrating',203,'ger-DE',2,0,'',1),(0,190,60,0,NULL,'','ezkeyword',204,'ger-DE',2,0,'',1),(0,191,60,0,0,'','ezgmaplocation',205,'ger-DE',2,0,'',1),(0,192,60,1,1,'','ezcomcomments',206,'ger-DE',2,0,'',1),(0,181,61,0,NULL,'eZ User Documentation','ezstring',207,'ger-DE',2,0,'ez user documentation',1),(0,182,61,0,NULL,'','ezstring',208,'ger-DE',2,0,'',1),(0,183,61,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezauthor><authors><author id=\"0\" name=\"Administrator User\" email=\"[email protected]\"/></authors></ezauthor>\n','ezauthor',209,'ger-DE',2,0,'',1),(0,184,61,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\"><ul><li><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\"><link url_id=\"25\">Administration Interface</link></paragraph></li><li><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\"><link url_id=\"26\">Daily Tasks</link></paragraph></li><li><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\"><link url_id=\"27\">Website Interface User Documentation</link></paragraph></li></ul></paragraph></section>','ezxmltext',210,'ger-DE',2,0,'',1),(0,185,61,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',211,'ger-DE',2,0,'',1),(0,186,61,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"Documentation\" alias_key=\"1293033771\" timestamp=\"1381794977\"><original attribute_id=\"212\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',212,'ger-DE',2,0,'',1),(0,187,61,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',213,'ger-DE',2,0,'',1),(0,188,61,0,0,'','ezdatetime',214,'ger-DE',2,0,'',1),(0,189,61,0,0,'','ezsrrating',215,'ger-DE',2,0,'',1),(0,190,61,0,NULL,'','ezkeyword',216,'ger-DE',2,0,'',1),(0,191,61,0,0,'','ezgmaplocation',217,'ger-DE',2,0,'',1),(0,192,61,1,1,'','ezcomcomments',218,'ger-DE',2,0,'',1),(0,181,62,0,NULL,'Technical Documentation','ezstring',219,'ger-DE',2,0,'technical documentation',1),(0,182,62,0,NULL,'','ezstring',220,'ger-DE',2,0,'',1),(0,183,62,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezauthor><authors><author id=\"0\" name=\"Administrator User\" email=\"[email protected]\"/></authors></ezauthor>\n','ezauthor',221,'ger-DE',2,0,'',1),(0,184,62,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\"><ul><li><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\"><link url_id=\"28\">Concepts and basics</link></paragraph></li><li><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\"><link url_id=\"29\">Template language</link></paragraph></li><li><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\"><link url_id=\"30\">REST API</link></paragraph></li></ul></paragraph></section>','ezxmltext',222,'ger-DE',2,0,'',1),(0,185,62,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',223,'ger-DE',2,0,'',1),(0,186,62,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1381794977\"><original attribute_id=\"224\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',224,'ger-DE',2,0,'',1),(0,187,62,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',225,'ger-DE',2,0,'',1),(0,188,62,0,0,'','ezdatetime',226,'ger-DE',2,0,'',1),(0,189,62,0,0,'','ezsrrating',227,'ger-DE',2,0,'',1),(0,190,62,0,NULL,'','ezkeyword',228,'ger-DE',2,0,'',1),(0,191,62,0,0,'','ezgmaplocation',229,'ger-DE',2,0,'',1),(0,192,62,1,1,'','ezcomcomments',230,'ger-DE',2,0,'',1),(0,181,63,0,NULL,'Demos and Videos','ezstring',231,'ger-DE',2,0,'demos and videos',1),(0,182,63,0,NULL,'','ezstring',232,'ger-DE',2,0,'',1),(0,183,63,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezauthor><authors><author id=\"0\" name=\"Administrator User\" email=\"[email protected]\"/></authors></ezauthor>\n','ezauthor',233,'ger-DE',2,0,'',1),(0,184,63,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\"><ul><li><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\"><link url_id=\"31\">Multichannel Content Management</link></paragraph></li><li><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\"><link url_id=\"32\">Landingpage Management with eZ Flow</link></paragraph></li><li><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\"><link url_id=\"33\">More Demos and Videos</link></paragraph></li></ul></paragraph></section>','ezxmltext',234,'ger-DE',2,0,'',1),(0,185,63,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',235,'ger-DE',2,0,'',1),(0,186,63,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1381794978\"><original attribute_id=\"236\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',236,'ger-DE',2,0,'',1),(0,187,63,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',237,'ger-DE',2,0,'',1),(0,188,63,0,0,'','ezdatetime',238,'ger-DE',2,0,'',1),(0,189,63,0,0,'','ezsrrating',239,'ger-DE',2,0,'',1),(0,190,63,0,NULL,'','ezkeyword',240,'ger-DE',2,0,'',1),(0,191,63,0,0,'','ezgmaplocation',241,'ger-DE',2,0,'',1),(0,192,63,1,1,'','ezcomcomments',242,'ger-DE',2,0,'',1),(0,4,64,0,NULL,'Selected Features','ezstring',243,'ger-DE',3,0,'selected features',1),(0,155,64,0,NULL,'','ezstring',244,'ger-DE',3,0,'',1),(0,119,64,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',245,'ger-DE',3,0,'',1),(0,156,64,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',246,'ger-DE',3,0,'',1),(247,158,64,0,1,'','ezboolean',247,'ger-DE',3,1,'',1),(0,181,65,0,NULL,'Search Result Clustering with eZ Find','ezstring',248,'ger-DE',2,0,'search result clustering with ez find',1),(0,182,65,0,NULL,'','ezstring',249,'ger-DE',2,0,'',1),(0,183,65,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezauthor><authors><author id=\"0\" name=\"Administrator User\" email=\"[email protected]\"/></authors></ezauthor>\n','ezauthor',250,'ger-DE',2,0,'',1),(0,184,65,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>In eZ Publish 4.7 Etna you have the possibility to generate search result clustering. </paragraph></section>','ezxmltext',251,'ger-DE',2,0,'',1),(0,185,65,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>This is an algorithm to automatically categorize search results based on the content enabling an automatic facet like navigation interface.</paragraph><paragraph>For more information please visit <link url_id=\"34\">www.ez.no.</link></paragraph></section>','ezxmltext',252,'ger-DE',2,0,'',1),(0,186,65,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"c81119e9f40047f343202d901cf37236.png\" suffix=\"png\" basename=\"c81119e9f40047f343202d901cf37236\" dirpath=\"var/ezdemo_site/storage/images/getting-started/selected-features/search-result-clustering-with-ez-find/253-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/getting-started/selected-features/search-result-clustering-with-ez-find/253-1-ger-DE/trashed/c81119e9f40047f343202d901cf37236.png\" original_filename=\"274b087e.png\" mime_type=\"image/png\" width=\"770\" height=\"333\" alternative_text=\"Content Clustering with eZ Find\" alias_key=\"1293033771\" timestamp=\"1381794978\"><original attribute_id=\"253\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><alias name=\"contentgrid\" filename=\"c81119e9f40047f343202d901cf37236_contentgrid.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/getting-started/selected-features/search-result-clustering-with-ez-find/253-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/getting-started/selected-features/search-result-clustering-with-ez-find/253-1-ger-DE/trashed/c81119e9f40047f343202d901cf37236_contentgrid.png\" mime_type=\"image/png\" width=\"370\" height=\"160\" alias_key=\"4192414807\" timestamp=\"1382071020\" is_valid=\"1\"/></ezimage>\n','ezimage',253,'ger-DE',2,0,'',1),(0,187,65,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',254,'ger-DE',2,0,'',1),(0,188,65,0,0,'','ezdatetime',255,'ger-DE',2,0,'',1),(0,189,65,0,0,'','ezsrrating',256,'ger-DE',2,0,'',1),(0,190,65,0,NULL,'','ezkeyword',257,'ger-DE',2,0,'',1),(0,191,65,0,1,'','ezgmaplocation',258,'ger-DE',2,0,'Skien, Norway',1),(0,192,65,1,1,'','ezcomcomments',259,'ger-DE',2,0,'',1),(0,181,66,0,NULL,'Autosave in Editorial Editing Process','ezstring',260,'ger-DE',2,0,'autosave in editorial editing process',1),(0,182,66,0,NULL,'','ezstring',261,'ger-DE',2,0,'',1),(0,183,66,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezauthor><authors><author id=\"0\" name=\"Administrator User\" email=\"[email protected]\"/></authors></ezauthor>\n','ezauthor',262,'ger-DE',2,0,'',1),(0,184,66,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>In eZ Publish 4.7 you have now automatic saving of content during editing. This feature will automatically save the content you are working on regularly and whenever you shift focus from for example title to introduction. </paragraph></section>','ezxmltext',263,'ger-DE',2,0,'',1),(0,185,66,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>The editor gets an notification whenever the content is saved and can see how long since last automatic save. This enables the editors to focus on the content editing and not worrying about content being lost due to issues with the browser, closed window or expired session.</paragraph><paragraph>For more information please visit <link target=\"_self\" url_id=\"35\">www.ez.no.</link></paragraph></section>','ezxmltext',264,'ger-DE',2,0,'',1),(0,186,66,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"6ab3fed97980e0c706db92a41129f2d6.png\" suffix=\"png\" basename=\"6ab3fed97980e0c706db92a41129f2d6\" dirpath=\"var/ezdemo_site/storage/images/getting-started/selected-features/autosave-in-editorial-editing-process/265-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/getting-started/selected-features/autosave-in-editorial-editing-process/265-1-ger-DE/trashed/6ab3fed97980e0c706db92a41129f2d6.png\" original_filename=\"c7cfa9d3.png\" mime_type=\"image/png\" width=\"784\" height=\"445\" alternative_text=\"Automatic saving of content during editing.\" alias_key=\"1293033771\" timestamp=\"1381794979\"><original attribute_id=\"265\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',265,'ger-DE',2,0,'',1),(0,187,66,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',266,'ger-DE',2,0,'',1),(0,188,66,0,0,'','ezdatetime',267,'ger-DE',2,0,'',1),(0,189,66,0,0,'','ezsrrating',268,'ger-DE',2,0,'',1),(0,190,66,0,NULL,'','ezkeyword',269,'ger-DE',2,0,'',1),(0,191,66,0,1,'','ezgmaplocation',270,'ger-DE',2,0,'Skien, Norway',1),(0,192,66,1,1,'','ezcomcomments',271,'ger-DE',2,0,'',1),(0,181,67,0,NULL,'Multivariate Testing','ezstring',272,'ger-DE',2,0,'multivariate testing',1),(0,182,67,0,NULL,'','ezstring',273,'ger-DE',2,0,'',1),(0,183,67,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezauthor><authors><author id=\"0\" name=\"Administrator User\" email=\"[email protected]\"/></authors></ezauthor>\n','ezauthor',274,'ger-DE',2,0,'',1),(0,184,67,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>eZ Publish 4.7 brings multivariate testing as an additional tool to the editorial team to provide a more goal oriented website. </paragraph></section>','ezxmltext',275,'ger-DE',2,0,'',1),(0,185,67,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>The multi variant testing lets you define different landing pages that are served to the visitors, often referred to as A/B Testing. Based on analytics tracking with Odoscope of which page converts the best you have decision support in order to build a KPI focussed website for better Customer Experience.</paragraph><paragraph>For more information please visit <link target=\"_self\" url_id=\"35\">www.ez.no.</link></paragraph></section>','ezxmltext',276,'ger-DE',2,0,'',1),(0,186,67,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"2dfc2002e21795cc66b5b51be2964065.png\" suffix=\"png\" basename=\"2dfc2002e21795cc66b5b51be2964065\" dirpath=\"var/ezdemo_site/storage/images/getting-started/selected-features/multivariate-testing/277-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/getting-started/selected-features/multivariate-testing/277-1-ger-DE/trashed/2dfc2002e21795cc66b5b51be2964065.png\" original_filename=\"b0839e1d.png\" mime_type=\"image/png\" width=\"770\" height=\"333\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1381794979\"><original attribute_id=\"277\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><alias name=\"contentgrid\" filename=\"2dfc2002e21795cc66b5b51be2964065_contentgrid.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/getting-started/selected-features/multivariate-testing/277-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/getting-started/selected-features/multivariate-testing/277-1-ger-DE/trashed/2dfc2002e21795cc66b5b51be2964065_contentgrid.png\" mime_type=\"image/png\" width=\"370\" height=\"160\" alias_key=\"4192414807\" timestamp=\"1382071020\" is_valid=\"1\"/></ezimage>\n','ezimage',277,'ger-DE',2,0,'',1),(0,187,67,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',278,'ger-DE',2,0,'',1),(0,188,67,0,0,'','ezdatetime',279,'ger-DE',2,0,'',1),(0,189,67,0,0,'','ezsrrating',280,'ger-DE',2,0,'',1),(0,190,67,0,NULL,'','ezkeyword',281,'ger-DE',2,0,'',1),(0,191,67,0,1,'','ezgmaplocation',282,'ger-DE',2,0,'Skien, Norway',1),(0,192,67,1,1,'','ezcomcomments',283,'ger-DE',2,0,'',1),(0,181,68,0,NULL,'Improved Online Analytics','ezstring',284,'ger-DE',2,0,'improved online analytics',1),(0,182,68,0,NULL,'','ezstring',285,'ger-DE',2,0,'',1),(0,183,68,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezauthor><authors><author id=\"0\" name=\"Administrator User\" email=\"[email protected]\"/></authors></ezauthor>\n','ezauthor',286,'ger-DE',2,0,'',1),(0,184,68,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>With a tighter and improved integration with Odoscope you get better analysis of differentiated user behavior.</paragraph></section>','ezxmltext',287,'ger-DE',2,0,'',1),(0,185,68,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>This is specially efficient when combined with the A/B testing features that also were added to eZ Publish 4.7.</paragraph><paragraph>For more information please visit <link url_id=\"34\">www.ez.no.</link></paragraph></section>','ezxmltext',288,'ger-DE',2,0,'',1),(0,186,68,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"45b211711c1c8b86ef0d77c31fa4e385.png\" suffix=\"png\" basename=\"45b211711c1c8b86ef0d77c31fa4e385\" dirpath=\"var/ezdemo_site/storage/images/getting-started/selected-features/improved-online-analytics/289-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/getting-started/selected-features/improved-online-analytics/289-1-ger-DE/trashed/45b211711c1c8b86ef0d77c31fa4e385.png\" original_filename=\"7a3d11eb.png\" mime_type=\"image/png\" width=\"770\" height=\"456\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1381794979\"><original attribute_id=\"289\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><alias name=\"contentgrid\" filename=\"45b211711c1c8b86ef0d77c31fa4e385_contentgrid.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/getting-started/selected-features/improved-online-analytics/289-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/getting-started/selected-features/improved-online-analytics/289-1-ger-DE/trashed/45b211711c1c8b86ef0d77c31fa4e385_contentgrid.png\" mime_type=\"image/png\" width=\"370\" height=\"160\" alias_key=\"4192414807\" timestamp=\"1382071025\" is_valid=\"1\"/></ezimage>\n','ezimage',289,'ger-DE',2,0,'',1),(0,187,68,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',290,'ger-DE',2,0,'',1),(0,188,68,0,0,'','ezdatetime',291,'ger-DE',2,0,'',1),(0,189,68,0,0,'','ezsrrating',292,'ger-DE',2,0,'',1),(0,190,68,0,NULL,'','ezkeyword',293,'ger-DE',2,0,'',1),(0,191,68,0,1,'','ezgmaplocation',294,'ger-DE',2,0,'Skien, Norway',1),(0,192,68,1,1,'','ezcomcomments',295,'ger-DE',2,0,'',1),(0,181,69,0,NULL,'Getting Started with eZ Publish Etna','ezstring',296,'ger-DE',2,0,'getting started with ez publish etna',1),(0,182,69,0,NULL,'','ezstring',297,'ger-DE',2,0,'',1),(0,183,69,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezauthor><authors><author id=\"0\" name=\"Administrator User\" email=\"[email protected]\"/></authors></ezauthor>\n','ezauthor',298,'ger-DE',2,0,'',1),(0,184,69,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>Welcome to eZ Publish 4.7 Etna. This release brings several new features and general improvements.</paragraph></section>','ezxmltext',299,'ger-DE',2,0,'',1),(0,185,69,0,1045487555,'<?xml version=\"1.0\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><section><header>Key Selected New Features in Etna</header><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\"><ul><li><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\">Autosave of content</paragraph></li><li><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\">A/B Testing</paragraph></li><li><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\">Automatic Content Clustering of Search Results</paragraph></li><li><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\">Improved Online Analytics with Integrated Odoscope</paragraph></li><li><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\">New adaptive design templates and content (You are viewing that right now)</paragraph></li></ul><line><embed view=\"embed\" size=\"medium\" custom:offset=\"0\" custom:limit=\"5\" object_id=\"65\"/><embed view=\"embed\" size=\"medium\" custom:offset=\"0\" custom:limit=\"5\" object_id=\"66\"/><embed view=\"embed\" size=\"medium\" custom:offset=\"0\" custom:limit=\"5\" object_id=\"67\"/><embed view=\"embed\" size=\"medium\" custom:offset=\"0\" custom:limit=\"5\" object_id=\"68\"/></line></paragraph><paragraph>For further information visit <link url_id=\"36\">www.ez.no,</link> the documentation: <link url_id=\"37\">doc.ez.no</link> and the <link url_id=\"38\">share.ez.no</link> community.</paragraph></section></section>\n','ezxmltext',300,'ger-DE',2,0,'',1),(0,186,69,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"51845c0dc34fb57f09d59d8869753c6c.jpg\" suffix=\"jpg\" basename=\"51845c0dc34fb57f09d59d8869753c6c\" dirpath=\"var/ezdemo_site/storage/images/getting-started/selected-features/getting-started-with-ez-publish-etna/301-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/getting-started/selected-features/getting-started-with-ez-publish-etna/301-1-ger-DE/trashed/51845c0dc34fb57f09d59d8869753c6c.jpg\" original_filename=\"a16f7354.jpg\" mime_type=\"image/jpeg\" width=\"1008\" height=\"502\" alternative_text=\"Etna\" alias_key=\"1293033771\" timestamp=\"1381794980\"><original attribute_id=\"301\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><information Height=\"502\" Width=\"1008\" IsColor=\"1\"/><alias name=\"campaign\" filename=\"51845c0dc34fb57f09d59d8869753c6c_campaign.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/getting-started/selected-features/getting-started-with-ez-publish-etna/301-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/getting-started/selected-features/getting-started-with-ez-publish-etna/301-1-ger-DE/trashed/51845c0dc34fb57f09d59d8869753c6c_campaign.jpg\" mime_type=\"image/jpeg\" width=\"770\" height=\"383\" alias_key=\"3158711315\" timestamp=\"1382071020\" is_valid=\"1\"/></ezimage>\n','ezimage',301,'ger-DE',2,0,'',1),(0,187,69,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>Mount Etna photographed by <link url_id=\"39\">Arend Vermazeren</link> / Flickr, CC License.</paragraph></section>','ezxmltext',302,'ger-DE',2,0,'',1),(0,188,69,0,0,'','ezdatetime',303,'ger-DE',2,0,'',1),(0,189,69,0,0,'','ezsrrating',304,'ger-DE',2,0,'',1),(0,190,69,0,NULL,'','ezkeyword',305,'ger-DE',2,0,'',1),(0,191,69,0,1,'','ezgmaplocation',306,'ger-DE',2,0,'Skien, Norway',1),(0,192,69,1,1,'','ezcomcomments',307,'ger-DE',2,0,'',1),(0,219,70,0,NULL,'Travel','ezstring',308,'ger-DE',2,0,'travel',1),(0,219,70,0,NULL,'Travel','ezstring',308,'ger-DE',2,0,'travel',2),(0,220,70,0,NULL,'<?xml version=\"1.0\"?>\n<page>\n <zone_layout>2ZonesLayout1</zone_layout>\n <zone id=\"id_6c7f907b831a819ed8562e3ddce5b264\">\n <zone_identifier>left</zone_identifier>\n <block id=\"id_1e1e355c8da3c92e80354f243c6dd37b\">\n <name>Campaign</name>\n <zone_id>6c7f907b831a819ed8562e3ddce5b264</zone_id>\n <type>Campaign</type>\n <view>default</view>\n <overflow_id></overflow_id>\n </block>\n <block id=\"id_250bcab3ea2929edbf72ece096dcdb7a\">\n <name>Amazon Gallery</name>\n <zone_id>6c7f907b831a819ed8562e3ddce5b264</zone_id>\n <type>Gallery</type>\n <view>default</view>\n <overflow_id></overflow_id>\n </block>\n </zone>\n <zone id=\"id_656b2182b4be70f18ca7b44b3fbb6dbe\">\n <zone_identifier>right</zone_identifier>\n <block id=\"id_4d2f5e57d2a2528b276cd9e776a62e42\">\n <name>Featured Video</name>\n <zone_id>656b2182b4be70f18ca7b44b3fbb6dbe</zone_id>\n <type>Video</type>\n <view>default</view>\n <overflow_id></overflow_id>\n </block>\n <block id=\"id_f36743396b8c36f10b467aa52f133e58\">\n <name>Travel Information</name>\n <zone_id>656b2182b4be70f18ca7b44b3fbb6dbe</zone_id>\n <type>ContentGrid</type>\n <view>default</view>\n <overflow_id></overflow_id>\n </block>\n </zone>\n</page>\n','ezpage',309,'ger-DE',2,0,'',1),(0,220,70,0,NULL,'<?xml version=\"1.0\"?>\n<page>\n <zone_layout>2ZonesLayout1</zone_layout>\n <zone id=\"id_6c7f907b831a819ed8562e3ddce5b264\">\n <zone_identifier>left</zone_identifier>\n <block id=\"id_1e1e355c8da3c92e80354f243c6dd37b\">\n <name>Campaign</name>\n <zone_id>6c7f907b831a819ed8562e3ddce5b264</zone_id>\n <type>Campaign</type>\n <view>default</view>\n <overflow_id></overflow_id>\n </block>\n <block id=\"id_250bcab3ea2929edbf72ece096dcdb7a\">\n <name>Amazon Gallery</name>\n <zone_id>6c7f907b831a819ed8562e3ddce5b264</zone_id>\n <type>Gallery</type>\n <view>default</view>\n <overflow_id></overflow_id>\n </block>\n </zone>\n <zone id=\"id_656b2182b4be70f18ca7b44b3fbb6dbe\">\n <zone_identifier>right</zone_identifier>\n <block id=\"id_4d2f5e57d2a2528b276cd9e776a62e42\">\n <name>Featured Video</name>\n <zone_id>656b2182b4be70f18ca7b44b3fbb6dbe</zone_id>\n <type>Video</type>\n <view>default</view>\n <overflow_id></overflow_id>\n </block>\n <block id=\"id_f36743396b8c36f10b467aa52f133e58\">\n <name>Travel Information</name>\n <zone_id>656b2182b4be70f18ca7b44b3fbb6dbe</zone_id>\n <type>ContentGrid</type>\n <view>default</view>\n <overflow_id></overflow_id>\n </block>\n </zone>\n</page>\n','ezpage',309,'ger-DE',2,0,'',2),(0,245,71,0,NULL,'Peruvian Amazon','ezstring',310,'ger-DE',2,0,'peruvian amazon',1),(0,246,71,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',311,'ger-DE',2,0,'',1),(0,247,71,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',312,'ger-DE',2,0,'',1),(0,248,71,0,NULL,'','ezobjectrelation',313,'ger-DE',2,0,'',1),(0,249,71,0,NULL,'','ezkeyword',314,'ger-DE',2,0,'',1),(0,236,72,0,NULL,'Amazon Side River','ezstring',315,'ger-DE',2,0,'amazon side river',1),(0,237,72,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',316,'ger-DE',2,0,'',1),(0,238,72,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"c077460b33068b0188a9dd5140d186d7.jpg\" suffix=\"jpg\" basename=\"c077460b33068b0188a9dd5140d186d7\" dirpath=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/amazon-side-river/317-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/amazon-side-river/317-1-ger-DE/trashed/c077460b33068b0188a9dd5140d186d7.jpg\" original_filename=\"7d1afcb4.jpg\" mime_type=\"image/jpeg\" width=\"770\" height=\"512\" alternative_text=\"Amazon Side River\" alias_key=\"1293033771\" timestamp=\"1381794981\"><original attribute_id=\"317\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><information Height=\"512\" Width=\"770\" IsColor=\"1\"/><alias name=\"gallery\" filename=\"c077460b33068b0188a9dd5140d186d7_gallery.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/amazon-side-river/317-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/amazon-side-river/317-1-ger-DE/trashed/c077460b33068b0188a9dd5140d186d7_gallery.jpg\" mime_type=\"image/jpeg\" width=\"770\" height=\"390\" alias_key=\"935385201\" timestamp=\"1382071022\" is_valid=\"1\"/></ezimage>\n','ezimage',317,'ger-DE',2,0,'',1),(0,239,72,0,0,'','ezsrrating',318,'ger-DE',2,0,'',1),(0,240,72,0,NULL,'','ezkeyword',319,'ger-DE',2,0,'',1),(0,236,73,0,NULL,'River Boat','ezstring',320,'ger-DE',2,0,'river boat',1),(0,237,73,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',321,'ger-DE',2,0,'',1),(0,238,73,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"57e32bab4ae215aa42766fa34edc1d3d.jpg\" suffix=\"jpg\" basename=\"57e32bab4ae215aa42766fa34edc1d3d\" dirpath=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/river-boat/322-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/river-boat/322-1-ger-DE/trashed/57e32bab4ae215aa42766fa34edc1d3d.jpg\" original_filename=\"bbbbc2fe.jpg\" mime_type=\"image/jpeg\" width=\"770\" height=\"512\" alternative_text=\"Old River Boat\" alias_key=\"1293033771\" timestamp=\"1381794982\"><original attribute_id=\"322\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><information Height=\"512\" Width=\"770\" IsColor=\"1\"/><alias name=\"gallery\" filename=\"57e32bab4ae215aa42766fa34edc1d3d_gallery.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/river-boat/322-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/river-boat/322-1-ger-DE/trashed/57e32bab4ae215aa42766fa34edc1d3d_gallery.jpg\" mime_type=\"image/jpeg\" width=\"770\" height=\"390\" alias_key=\"935385201\" timestamp=\"1382071021\" is_valid=\"1\"/></ezimage>\n','ezimage',322,'ger-DE',2,0,'',1),(0,239,73,0,0,'','ezsrrating',323,'ger-DE',2,0,'',1),(0,240,73,0,NULL,'','ezkeyword',324,'ger-DE',2,0,'',1),(0,236,74,0,NULL,'Flying Bird','ezstring',325,'ger-DE',2,0,'flying bird',1),(0,237,74,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',326,'ger-DE',2,0,'',1),(0,238,74,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"fd136a686eec1dbdf7a712c26683513e.jpg\" suffix=\"jpg\" basename=\"fd136a686eec1dbdf7a712c26683513e\" dirpath=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/flying-bird/327-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/flying-bird/327-1-ger-DE/trashed/fd136a686eec1dbdf7a712c26683513e.jpg\" original_filename=\"9675a24a.jpg\" mime_type=\"image/jpeg\" width=\"770\" height=\"512\" alternative_text=\"Flying Bird\" alias_key=\"1293033771\" timestamp=\"1381794982\"><original attribute_id=\"327\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><information Height=\"512\" Width=\"770\" IsColor=\"1\"/><alias name=\"gallery\" filename=\"fd136a686eec1dbdf7a712c26683513e_gallery.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/flying-bird/327-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/flying-bird/327-1-ger-DE/trashed/fd136a686eec1dbdf7a712c26683513e_gallery.jpg\" mime_type=\"image/jpeg\" width=\"770\" height=\"390\" alias_key=\"935385201\" timestamp=\"1382071024\" is_valid=\"1\"/></ezimage>\n','ezimage',327,'ger-DE',2,0,'',1),(0,239,74,0,0,'','ezsrrating',328,'ger-DE',2,0,'',1),(0,240,74,0,NULL,'','ezkeyword',329,'ger-DE',2,0,'',1),(0,236,75,0,NULL,'Turtles','ezstring',330,'ger-DE',2,0,'turtles',1),(0,237,75,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',331,'ger-DE',2,0,'',1),(0,238,75,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"4d8da5de9fcaeb1ddb5f5ec72770942a.jpg\" suffix=\"jpg\" basename=\"4d8da5de9fcaeb1ddb5f5ec72770942a\" dirpath=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/turtles/332-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/turtles/332-1-ger-DE/trashed/4d8da5de9fcaeb1ddb5f5ec72770942a.jpg\" original_filename=\"236e8a89.jpg\" mime_type=\"image/jpeg\" width=\"770\" height=\"512\" alternative_text=\"Turtles\" alias_key=\"1293033771\" timestamp=\"1381794982\"><original attribute_id=\"332\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><information Height=\"512\" Width=\"770\" IsColor=\"1\"/><alias name=\"gallery\" filename=\"4d8da5de9fcaeb1ddb5f5ec72770942a_gallery.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/turtles/332-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/turtles/332-1-ger-DE/trashed/4d8da5de9fcaeb1ddb5f5ec72770942a_gallery.jpg\" mime_type=\"image/jpeg\" width=\"770\" height=\"390\" alias_key=\"935385201\" timestamp=\"1382071024\" is_valid=\"1\"/></ezimage>\n','ezimage',332,'ger-DE',2,0,'',1),(0,239,75,0,0,'','ezsrrating',333,'ger-DE',2,0,'',1),(0,240,75,0,NULL,'','ezkeyword',334,'ger-DE',2,0,'',1),(0,236,76,0,NULL,'Hat on a Stick','ezstring',335,'ger-DE',2,0,'hat on a stick',1),(0,237,76,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',336,'ger-DE',2,0,'',1),(0,238,76,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"922cf4c2e88efe4cdc5457f34a8ac9cb.jpg\" suffix=\"jpg\" basename=\"922cf4c2e88efe4cdc5457f34a8ac9cb\" dirpath=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/hat-on-a-stick/337-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/hat-on-a-stick/337-1-ger-DE/trashed/922cf4c2e88efe4cdc5457f34a8ac9cb.jpg\" original_filename=\"2233e737.jpg\" mime_type=\"image/jpeg\" width=\"770\" height=\"512\" alternative_text=\"Hat on a stick\" alias_key=\"1293033771\" timestamp=\"1381794982\"><original attribute_id=\"337\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><information Height=\"512\" Width=\"770\" IsColor=\"1\"/><alias name=\"gallery\" filename=\"922cf4c2e88efe4cdc5457f34a8ac9cb_gallery.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/hat-on-a-stick/337-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/hat-on-a-stick/337-1-ger-DE/trashed/922cf4c2e88efe4cdc5457f34a8ac9cb_gallery.jpg\" mime_type=\"image/jpeg\" width=\"770\" height=\"390\" alias_key=\"935385201\" timestamp=\"1382071024\" is_valid=\"1\"/></ezimage>\n','ezimage',337,'ger-DE',2,0,'',1),(0,239,76,0,0,'','ezsrrating',338,'ger-DE',2,0,'',1),(0,240,76,0,NULL,'','ezkeyword',339,'ger-DE',2,0,'',1),(0,236,77,0,NULL,'Heron in the Water','ezstring',340,'ger-DE',2,0,'heron in the water',1),(0,237,77,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',341,'ger-DE',2,0,'',1),(0,238,77,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"fde2b25e52d32b80b4e8e82a9e2ace42.jpg\" suffix=\"jpg\" basename=\"fde2b25e52d32b80b4e8e82a9e2ace42\" dirpath=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/heron-in-the-water/342-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/heron-in-the-water/342-1-ger-DE/trashed/fde2b25e52d32b80b4e8e82a9e2ace42.jpg\" original_filename=\"347b47f7.jpg\" mime_type=\"image/jpeg\" width=\"770\" height=\"478\" alternative_text=\"Heron\" alias_key=\"1293033771\" timestamp=\"1381794983\"><original attribute_id=\"342\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><information Height=\"478\" Width=\"770\" IsColor=\"1\"/><alias name=\"gallery\" filename=\"fde2b25e52d32b80b4e8e82a9e2ace42_gallery.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/heron-in-the-water/342-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/heron-in-the-water/342-1-ger-DE/trashed/fde2b25e52d32b80b4e8e82a9e2ace42_gallery.jpg\" mime_type=\"image/jpeg\" width=\"770\" height=\"390\" alias_key=\"935385201\" timestamp=\"1382071023\" is_valid=\"1\"/></ezimage>\n','ezimage',342,'ger-DE',2,0,'',1),(0,239,77,0,0,'','ezsrrating',343,'ger-DE',2,0,'',1),(0,240,77,0,NULL,'','ezkeyword',344,'ger-DE',2,0,'',1),(0,236,78,0,NULL,'Bird Island','ezstring',345,'ger-DE',2,0,'bird island',1),(0,237,78,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',346,'ger-DE',2,0,'',1),(0,238,78,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"acbb1752127ab5759c1629dea776ac42.jpg\" suffix=\"jpg\" basename=\"acbb1752127ab5759c1629dea776ac42\" dirpath=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/bird-island/347-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/bird-island/347-1-ger-DE/trashed/acbb1752127ab5759c1629dea776ac42.jpg\" original_filename=\"1c936c89.jpg\" mime_type=\"image/jpeg\" width=\"770\" height=\"512\" alternative_text=\"Lots of birds\" alias_key=\"1293033771\" timestamp=\"1381794983\"><original attribute_id=\"347\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><information Height=\"512\" Width=\"770\" IsColor=\"1\"/><alias name=\"gallery\" filename=\"acbb1752127ab5759c1629dea776ac42_gallery.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/bird-island/347-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/bird-island/347-1-ger-DE/trashed/acbb1752127ab5759c1629dea776ac42_gallery.jpg\" mime_type=\"image/jpeg\" width=\"770\" height=\"390\" alias_key=\"935385201\" timestamp=\"1382071023\" is_valid=\"1\"/></ezimage>\n','ezimage',347,'ger-DE',2,0,'',1),(0,239,78,0,0,'','ezsrrating',348,'ger-DE',2,0,'',1),(0,240,78,0,NULL,'','ezkeyword',349,'ger-DE',2,0,'',1),(0,236,79,0,NULL,'Aligator','ezstring',350,'ger-DE',2,0,'aligator',1),(0,237,79,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',351,'ger-DE',2,0,'',1),(0,238,79,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"914980befc15af2e0746ef34a44a64fe.jpg\" suffix=\"jpg\" basename=\"914980befc15af2e0746ef34a44a64fe\" dirpath=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/aligator/352-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/aligator/352-1-ger-DE/trashed/914980befc15af2e0746ef34a44a64fe.jpg\" original_filename=\"81b898d7.jpg\" mime_type=\"image/jpeg\" width=\"770\" height=\"512\" alternative_text=\"Aligator\" alias_key=\"1293033771\" timestamp=\"1381794983\"><original attribute_id=\"352\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><information Height=\"512\" Width=\"770\" IsColor=\"1\"/><alias name=\"gallery\" filename=\"914980befc15af2e0746ef34a44a64fe_gallery.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/aligator/352-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/travel/peruvian-amazon/aligator/352-1-ger-DE/trashed/914980befc15af2e0746ef34a44a64fe_gallery.jpg\" mime_type=\"image/jpeg\" width=\"770\" height=\"390\" alias_key=\"935385201\" timestamp=\"1382071022\" is_valid=\"1\"/></ezimage>\n','ezimage',352,'ger-DE',2,0,'',1),(0,239,79,0,0,'','ezsrrating',353,'ger-DE',2,0,'',1),(0,240,79,0,NULL,'','ezkeyword',354,'ger-DE',2,0,'',1),(0,274,80,0,NULL,'Piranha Fishing','ezstring',355,'ger-DE',2,0,'piranha fishing',1),(0,275,80,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',356,'ger-DE',2,0,'',1),(0,276,80,0,NULL,'','ezbinaryfile',357,'ger-DE',2,0,'',1),(0,277,80,0,0,'','ezsrrating',358,'ger-DE',2,0,'',1),(0,278,80,1,1,'','ezcomcomments',359,'ger-DE',2,0,'',1),(0,4,81,0,NULL,'Information','ezstring',360,'ger-DE',3,0,'information',1),(0,155,81,0,NULL,'','ezstring',361,'ger-DE',3,0,'',1),(0,119,81,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',362,'ger-DE',3,0,'',1),(0,156,81,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',363,'ger-DE',3,0,'',1),(364,158,81,0,1,'','ezboolean',364,'ger-DE',3,1,'',1),(0,181,82,0,NULL,'Largest City Without Road Connection','ezstring',365,'ger-DE',2,0,'largest city without road connection',1),(0,182,82,0,NULL,'','ezstring',366,'ger-DE',2,0,'',1),(0,183,82,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezauthor><authors><author id=\"0\" name=\"Administrator User\" email=\"[email protected]\"/></authors></ezauthor>\n','ezauthor',367,'ger-DE',2,0,'',1),(0,184,82,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>Iquitos is the largest city in the <link xhtml:title=\"Peruvian rainforest\" url_id=\"40\">Peruvian rainforest</link>, with a population of 406,340. It is the capital of <link xhtml:title=\"Loreto Region\" url_id=\"41\">Loreto Region</link> and <link xhtml:title=\"Maynas Province\" url_id=\"42\">Maynas Province</link>.</paragraph></section>','ezxmltext',368,'ger-DE',2,0,'',1),(0,185,82,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>Located on the <link xhtml:title=\"Amazon River\" url_id=\"43\">Amazon River</link>, it is only 106 m (348 ft) above sea level, although it is more than 3,000 km (1,864 mi) from the mouth of the Amazon at <link xhtml:title=\"Belém\" url_id=\"44\">Belém</link> (Brazil) on the Atlantic Ocean. It is situated 125 km (78 mi) downstream of the confluence of the <link xhtml:title=\"Ucayali River\" url_id=\"45\">Ucayali</link> and <link xhtml:title=\"Marañón River (Peru)\" url_id=\"46\">Marañón</link> rivers, the two main headwaters of the Amazon River. Iquitos has long been a major port in the <link xhtml:title=\"Amazon Basin\" url_id=\"47\">Amazon Basin</link>. It is surrounded by three rivers: the <link xhtml:title=\"Nanay\" url_id=\"48\">Nanay</link>, the <link xhtml:title=\"Itaya (river) (page does not exist)\" url_id=\"49\">Itaya</link>, and the Amazon.</paragraph><paragraph>The city can be reached only by airplane or boat, with the exception of a road to <link xhtml:title=\"Nauta\" url_id=\"50\">Nauta</link>, a small town roughly 100 km (62 mi) south. It is the largest city in the world which cannot be reached by road. Ocean vessels of 3,000 tons or 9,000 tons<custom name=\"sup\"><link anchor_name=\"cite_note-0\" url_id=\"51\">[1]</link></custom> and 5.5 metres (18 ft) <link xhtml:title=\"Draft (hull)\" url_id=\"52\">draft</link> can reach Iquitos from the Atlantic ocean, 3600 km away.</paragraph><paragraph>Most travel within the city is via bus, motorcycle, or the ubiquitous <link xhtml:title=\"Auto rickshaw\" url_id=\"53\">auto rickshaw</link> (mototaxi, motocarro or motokar), which is essentially a modified motorcycle with a cabin behind supported by two wheels, seating three. Transportation to nearby towns often requires a river trip via peque-peque, a small public motorized boat.</paragraph><paragraph>The climate is hot and humid, with an average relative humidity of 85%. The wet season lasts from around November to May, with the river reaching its highest point in May. The river is at its lowest in October.</paragraph><paragraph>For complete text visit Wikipedia: <link url_id=\"51\">http://en.wikipedia.org/wiki/Iquitos</link>This text is available under the <link url_id=\"54\">Creative Commons Attribution-ShareAlike License</link>; additional terms may apply. See <link url_id=\"55\">Terms of use</link> for details.</paragraph></section>','ezxmltext',369,'ger-DE',2,0,'',1),(0,186,82,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"4e1df6115c63b1ea36a79a9a478130d2.jpg\" suffix=\"jpg\" basename=\"4e1df6115c63b1ea36a79a9a478130d2\" dirpath=\"var/ezdemo_site/storage/images/travel/information/largest-city-without-road-connection/370-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/travel/information/largest-city-without-road-connection/370-1-ger-DE/trashed/4e1df6115c63b1ea36a79a9a478130d2.jpg\" original_filename=\"e410cf0a.jpg\" mime_type=\"image/jpeg\" width=\"770\" height=\"512\" alternative_text=\"Kids in Iquitos\" alias_key=\"1293033771\" timestamp=\"1381794984\"><original attribute_id=\"370\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><information Height=\"512\" Width=\"770\" IsColor=\"1\"/></ezimage>\n','ezimage',370,'ger-DE',2,0,'',1),(0,187,82,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>Kids in Iquitos</paragraph></section>','ezxmltext',371,'ger-DE',2,0,'',1),(0,188,82,0,0,'','ezdatetime',372,'ger-DE',2,0,'',1),(0,189,82,0,0,'','ezsrrating',373,'ger-DE',2,0,'',1),(0,190,82,0,NULL,'','ezkeyword',374,'ger-DE',2,0,'',1),(0,191,82,0,1,'','ezgmaplocation',375,'ger-DE',2,0,'Iquitos, Peru',1),(0,192,82,1,1,'','ezcomcomments',376,'ger-DE',2,0,'',1),(0,181,83,0,NULL,'Amazon Jungle','ezstring',377,'ger-DE',2,0,'amazon jungle',1),(0,182,83,0,NULL,'','ezstring',378,'ger-DE',2,0,'',1),(0,183,83,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezauthor><authors><author id=\"0\" name=\"Administrator User\" email=\"[email protected]\"/></authors></ezauthor>\n','ezauthor',379,'ger-DE',2,0,'',1),(0,184,83,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>The Amazon Rainforest, also known in English as Amazoniaor the Amazon Jungle, is a <link xhtml:title=\"Tropical and subtropical moist broadleaf forests\" url_id=\"56\">moist broadleaf forest</link> that covers most of the <link xhtml:title=\"Amazon Basin\" url_id=\"47\">Amazon Basin</link> of South America.</paragraph></section>','ezxmltext',380,'ger-DE',2,0,'',1),(0,185,83,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>This basin encompasses seven million square kilometers (1.7 billion acres), of which five and a half million square kilometers (1.4 billion acres) are covered by the rainforest. This region includes territory belonging to nine nations. The majority of the forest is contained <link xhtml:title=\"Brazilian Amazon\" url_id=\"57\">within Brazil</link>, with 60% of the rainforest, followed by <link xhtml:title=\"Peruvian Amazon\" url_id=\"58\">Peru</link> with 13%, <link xhtml:title=\"Amazon Region of Colombia\" url_id=\"59\">Colombia</link> with 10%, and with minor amounts in, <link xhtml:title=\"Venezuela\" url_id=\"60\">Venezuela</link>, <link xhtml:title=\"Ecuador\" url_id=\"61\">Ecuador</link>,<link xhtml:title=\"Bolivia\" url_id=\"62\">Bolivia</link>, <link xhtml:title=\"Guyana\" url_id=\"63\">Guyana</link>, <link xhtml:title=\"Suriname\" url_id=\"64\">Suriname</link> and <link xhtml:title=\"French Guiana\" url_id=\"65\">French Guiana</link>. States or departments in four nations contain \"<link xhtml:title=\"Amazonas (disambiguation)\" url_id=\"66\">Amazonas</link>\" in their names. The Amazon represents over half of the planet\'s remaining <link xhtml:title=\"Rainforest\" url_id=\"67\">rainforests</link>, and it comprises the largest and most species-rich tract of <link xhtml:title=\"Tropical rainforest\" url_id=\"68\">tropical rainforest</link> in the world.</paragraph><paragraph><line xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\">For complete text visit Wikipedia: <link url_id=\"69\">http://en.wikipedia.org/wiki/Amazon_jungle</link></line><line xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\">This text is available under the <link target=\"_self\" url_id=\"54\">Creative Commons Attribution-ShareAlike License</link>; additional terms may apply. See <link target=\"_self\" url_id=\"55\">Terms of use</link> for details.</line></paragraph></section>','ezxmltext',381,'ger-DE',2,0,'',1),(0,186,83,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"413285ceedee2abf49334374d8ec149f.jpg\" suffix=\"jpg\" basename=\"413285ceedee2abf49334374d8ec149f\" dirpath=\"var/ezdemo_site/storage/images/travel/information/amazon-jungle/382-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/travel/information/amazon-jungle/382-1-ger-DE/trashed/413285ceedee2abf49334374d8ec149f.jpg\" original_filename=\"44525552.jpg\" mime_type=\"image/jpeg\" width=\"770\" height=\"512\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1381794985\"><original attribute_id=\"382\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><information Height=\"512\" Width=\"770\" IsColor=\"1\"/><alias name=\"contentgrid\" filename=\"413285ceedee2abf49334374d8ec149f_contentgrid.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/travel/information/amazon-jungle/382-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/travel/information/amazon-jungle/382-1-ger-DE/trashed/413285ceedee2abf49334374d8ec149f_contentgrid.jpg\" mime_type=\"image/jpeg\" width=\"370\" height=\"160\" alias_key=\"4192414807\" timestamp=\"1382071021\" is_valid=\"1\"/></ezimage>\n','ezimage',382,'ger-DE',2,0,'',1),(0,187,83,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',383,'ger-DE',2,0,'',1),(0,188,83,0,0,'','ezdatetime',384,'ger-DE',2,0,'',1),(0,189,83,0,0,'','ezsrrating',385,'ger-DE',2,0,'',1),(0,190,83,0,NULL,'','ezkeyword',386,'ger-DE',2,0,'',1),(0,191,83,0,1,'','ezgmaplocation',387,'ger-DE',2,0,'Iquitos, Peru',1),(0,192,83,1,1,'','ezcomcomments',388,'ger-DE',2,0,'',1),(0,181,84,0,NULL,'Floating Village in Iquitos, Loreto','ezstring',389,'ger-DE',2,0,'floating village in iquitos, loreto',1),(0,182,84,0,NULL,'','ezstring',390,'ger-DE',2,0,'',1),(0,183,84,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezauthor><authors><author id=\"0\" name=\"Administrator User\" email=\"[email protected]\"/></authors></ezauthor>\n','ezauthor',391,'ger-DE',2,0,'',1),(0,184,84,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>You find floating villages around Iquitos in the Loreto region in Peru. </paragraph></section>','ezxmltext',392,'ger-DE',2,0,'',1),(0,185,84,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>Loreto is <link xhtml:title=\"Peru\" url_id=\"70\">Peru</link>\'s northernmost <link xhtml:title=\"Regions of Peru\" url_id=\"71\">region</link>. Covering almost one-third of Peru\'s territory, Loreto is by far the nation\'s largest region and also one of the most sparsely populated ones, due to its remote location in the <link xhtml:title=\"Amazon Rainforest\" url_id=\"72\">Amazon Rainforest</link>. Its capital is the city of <link xhtml:title=\"Iquitos\" url_id=\"51\">Iquitos</link>.</paragraph><section><header>Geography</header><paragraph>Loreto\'s large territory comprises parts of the High and Low Jungle, and all of its surface is covered with thick <link xhtml:title=\"Vegetation\" url_id=\"73\">vegetation</link>.</paragraph><paragraph>This territory has wide river flood plains, which are covered with rainwater and usually are swamped in summer. In these flood areas there are elevated sectors calledrestingas, which always remain above water, even in times of the greatest swellings. There are numerous <link xhtml:title=\"Lagoon\" url_id=\"74\">lagoons</link> known as cochas and tipishcas, surrounded by marshy areas with abundant grass vegetation.</paragraph><paragraph>Numerous rivers cross Loreto\'s territory, all of which are part of the Amazonian Hydrographical System. Most of them are navigable. The main river crossing the region is the<link xhtml:title=\"Amazon River\" url_id=\"43\">Amazon</link>, one of the world\'s most important rivers. Its numerous curves are always changing and sometimes make for a difficult journey. The width between banks of the Amazon sometimes measures a staggering 4 km. The <link xhtml:title=\"Yavari River\" url_id=\"75\">Yavari River</link> runs from Peru to Brazil, the <link xhtml:title=\"Içá River\" url_id=\"76\">Putumayo</link> River serves as part of the border with Colombia, and the <link xhtml:title=\"Ucayali\" url_id=\"77\">Ucayali</link>and <link xhtml:title=\"Marañón River\" url_id=\"78\">Marañón</link> rivers penetrate Loreto after going through the <link xhtml:title=\"Pongo de Manseriche\" url_id=\"79\">Pongo de Manseriche</link>.</paragraph><paragraph><line xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\">For complete text visit Wikipedia: <link url_id=\"41\">http://en.wikipedia.org/wiki/Loreto_Region</link></line><line xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\">This text is available under the <link target=\"_self\" url_id=\"54\">Creative Commons Attribution-ShareAlike License</link>; additional terms may apply. See <link target=\"_self\" url_id=\"55\">Terms of use</link> for details.</line></paragraph></section></section>','ezxmltext',393,'ger-DE',2,0,'',1),(0,186,84,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"6a00dde5cbe5b09c17daaee7c245311f.jpg\" suffix=\"jpg\" basename=\"6a00dde5cbe5b09c17daaee7c245311f\" dirpath=\"var/ezdemo_site/storage/images/travel/information/floating-village-in-iquitos-loreto/394-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/travel/information/floating-village-in-iquitos-loreto/394-1-ger-DE/trashed/6a00dde5cbe5b09c17daaee7c245311f.jpg\" original_filename=\"1adcd08a.jpg\" mime_type=\"image/jpeg\" width=\"770\" height=\"476\" alternative_text=\"Floating Village in Iquitos\" alias_key=\"1293033771\" timestamp=\"1381794985\"><original attribute_id=\"394\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><information Height=\"476\" Width=\"770\" IsColor=\"1\"/></ezimage>\n','ezimage',394,'ger-DE',2,0,'',1),(0,187,84,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>Floating Village in Iquitos</paragraph></section>','ezxmltext',395,'ger-DE',2,0,'',1),(0,188,84,0,0,'','ezdatetime',396,'ger-DE',2,0,'',1),(0,189,84,0,0,'','ezsrrating',397,'ger-DE',2,0,'',1),(0,190,84,0,NULL,'','ezkeyword',398,'ger-DE',2,0,'',1),(0,191,84,0,1,'','ezgmaplocation',399,'ger-DE',2,0,'Iquitos, Peru',1),(0,192,84,1,1,'','ezcomcomments',400,'ger-DE',2,0,'',1),(0,219,85,0,NULL,'City Shopping','ezstring',401,'ger-DE',2,0,'city shopping',1),(0,220,85,0,NULL,'<?xml version=\"1.0\"?>\n<page>\n <zone_layout>2ZonesLayout1</zone_layout>\n <zone id=\"id_1b6149311bf4ece4717e6fff905e148c\">\n <zone_identifier>left</zone_identifier>\n <block id=\"id_70150fb6cf7608e841868b3fe925b58c\">\n <name></name>\n <zone_id>1b6149311bf4ece4717e6fff905e148c</zone_id>\n <type>Campaign</type>\n <view>default</view>\n <overflow_id></overflow_id>\n </block>\n </zone>\n <zone id=\"id_6669bce3079221f326d4eb4121447fd9\">\n <zone_identifier>right</zone_identifier>\n <block id=\"id_4f1c2e8abfb4f163fbf256a29af0a24e\">\n <name>Products</name>\n <zone_id>6669bce3079221f326d4eb4121447fd9</zone_id>\n <type>ContentGrid</type>\n <view>default</view>\n <overflow_id></overflow_id>\n </block>\n </zone>\n</page>\n','ezpage',402,'ger-DE',2,0,'',1),(0,4,86,0,NULL,'Products','ezstring',403,'ger-DE',3,0,'products',1),(0,155,86,0,NULL,'','ezstring',404,'ger-DE',3,0,'',1),(0,119,86,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',405,'ger-DE',3,0,'',1),(0,156,86,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',406,'ger-DE',3,0,'',1),(407,158,86,0,1,'','ezboolean',407,'ger-DE',3,1,'',1),(0,201,87,0,NULL,'New York Cab','ezstring',408,'ger-DE',2,0,'new york cab',1),(0,202,87,0,NULL,'NYC101','ezstring',409,'ger-DE',2,0,'nyc101',1),(0,203,87,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>This is a sample product showing how you can use e-commerce in eZ Publish.</paragraph></section>','ezxmltext',410,'ger-DE',2,0,'',1),(0,204,87,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',411,'ger-DE',2,0,'',1),(0,205,87,142,NULL,'','ezprice',412,'ger-DE',2,14200,'',1),(0,206,87,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"f73dfd4da5acdd84bea5ad26efc90de5.jpg\" suffix=\"jpg\" basename=\"f73dfd4da5acdd84bea5ad26efc90de5\" dirpath=\"var/ezdemo_site/storage/images/city-shopping/products/new-york-cab/413-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/city-shopping/products/new-york-cab/413-1-ger-DE/trashed/f73dfd4da5acdd84bea5ad26efc90de5.jpg\" original_filename=\"e627f43d.jpg\" mime_type=\"image/jpeg\" width=\"500\" height=\"375\" alternative_text=\"NYC Cab\" alias_key=\"1293033771\" timestamp=\"1381794986\"><original attribute_id=\"413\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><information Height=\"375\" Width=\"500\" IsColor=\"1\" ByteOrderMotorola=\"1\" ApertureFNumber=\"f/2.8\" UserComment=\"Camera+ recipe? ? effect: Cross Process\" UserCommentEncoding=\"ASCII\"><array name=\"ifd0\"><item key=\"Make\" base64=\"1\">QXBwbGU=</item><item key=\"Model\" base64=\"1\">aVBob25l</item><item key=\"Orientation\" base64=\"1\">MQ==</item><item key=\"XResolution\" base64=\"1\">NzIvMQ==</item><item key=\"YResolution\" base64=\"1\">NzIvMQ==</item><item key=\"ResolutionUnit\" base64=\"1\">Mg==</item><item key=\"Software\" base64=\"1\">Q2FtZXJhKyAyLjMuMw==</item><item key=\"DateTime\" base64=\"1\">MjAxMjowMzoyOCAxMjoxNzowMQ==</item><item key=\"HostComputer\" base64=\"1\">aVBob25lIChpUGhvbmUgT1MgNS4xKQ==</item><item key=\"Exif_IFD_Pointer\" base64=\"1\">MjIy</item></array><array name=\"exif\"><item key=\"FNumber\" base64=\"1\">MTQvNQ==</item><item key=\"ExifVersion\" base64=\"1\">MDIyMA==</item><item key=\"DateTimeOriginal\" base64=\"1\">MjAxMjowMzoyOCAxMjoxNzowMQ==</item><item key=\"DateTimeDigitized\" base64=\"1\">MjAxMjowMzoyOCAxMjoxNzowMQ==</item><item key=\"UserComment\" base64=\"1\">QVNDSUkAAABDYW1lcmErIHJlY2lwZT8KPyBlZmZlY3Q6IENyb3NzIFByb2Nlc3M=</item><item key=\"ColorSpace\" base64=\"1\">MQ==</item><item key=\"ExifImageWidth\" base64=\"1\">NTAw</item><item key=\"ExifImageLength\" base64=\"1\">Mzc1</item></array></information></ezimage>\n','ezimage',413,'ger-DE',2,0,'',1),(0,207,87,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>NYC Fast Cab</paragraph></section>','ezxmltext',414,'ger-DE',2,0,'',1),(0,208,87,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezmultioption option_counter=\"2\"><name>Distance</name><multioptions><multioption id=\"1\" name=\"\" priority=\"1\" default_option_id=\"\"><option id=\"1\" option_id=\"1\" value=\"In City\" additional_price=\"10\"/><option id=\"2\" option_id=\"2\" value=\"To Airport\" additional_price=\"50\"/></multioption></multioptions></ezmultioption>\n','ezmultioption',415,'ger-DE',2,0,'',1),(0,209,87,0,0,'','ezsrrating',416,'ger-DE',2,0,'',1),(0,210,87,0,NULL,'','ezkeyword',417,'ger-DE',2,0,'',1),(0,211,87,1,1,'','ezcomcomments',418,'ger-DE',2,0,'',1),(0,201,88,0,NULL,'City View','ezstring',419,'ger-DE',2,0,'city view',1),(0,202,88,0,NULL,'NYC103','ezstring',420,'ger-DE',2,0,'nyc103',1),(0,203,88,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>Manhattan city view for sale.</paragraph></section>','ezxmltext',421,'ger-DE',2,0,'',1),(0,204,88,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',422,'ger-DE',2,0,'',1),(0,205,88,256,NULL,'','ezprice',423,'ger-DE',2,25600,'',1),(0,206,88,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"83e77dce7ef558f292e534d67591414b.jpg\" suffix=\"jpg\" basename=\"83e77dce7ef558f292e534d67591414b\" dirpath=\"var/ezdemo_site/storage/images/city-shopping/products/city-view/424-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/city-shopping/products/city-view/424-1-ger-DE/trashed/83e77dce7ef558f292e534d67591414b.jpg\" original_filename=\"5b3249df.jpg\" mime_type=\"image/jpeg\" width=\"450\" height=\"338\" alternative_text=\"City View\" alias_key=\"1293033771\" timestamp=\"1381794986\"><original attribute_id=\"424\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><information Height=\"338\" Width=\"450\" IsColor=\"1\" ByteOrderMotorola=\"1\" ApertureFNumber=\"f/7.4\"><array name=\"ifd0\"><item key=\"Make\" base64=\"1\">TklLT04=</item><item key=\"Model\" base64=\"1\">RTk1MA==</item><item key=\"Orientation\" base64=\"1\">MQ==</item><item key=\"XResolution\" base64=\"1\">MzAwLzE=</item><item key=\"YResolution\" base64=\"1\">MzAwLzE=</item><item key=\"ResolutionUnit\" base64=\"1\">Mg==</item><item key=\"Software\" base64=\"1\">djk4MXAtNzk=</item><item key=\"DateTime\" base64=\"1\">MjAwMToxMjowMyAyMDo1MTowNQ==</item><item key=\"Exif_IFD_Pointer\" base64=\"1\">MTgw</item></array><array name=\"exif\"><item key=\"ExposureTime\" base64=\"1\">MS8yNzY=</item><item key=\"FNumber\" base64=\"1\">MzcvNQ==</item><item key=\"ExposureProgram\" base64=\"1\">Mg==</item><item key=\"ISOSpeedRatings\" base64=\"1\">ODA=</item><item key=\"ExifVersion\" base64=\"1\">MDIxMA==</item><item key=\"DateTimeOriginal\" base64=\"1\">MjAwMToxMjowMyAyMDo1MTowNQ==</item><item key=\"DateTimeDigitized\" base64=\"1\">MjAwMToxMjowMyAyMDo1MTowNQ==</item><item key=\"ComponentsConfiguration\" base64=\"1\">AAAAAQ==</item><item key=\"CompressedBitsPerPixel\" base64=\"1\">Mi8x</item><item key=\"ExposureBiasValue\" base64=\"1\">MC8x</item><item key=\"MaxApertureValue\" base64=\"1\">MTMvNQ==</item><item key=\"MeteringMode\" base64=\"1\">Mg==</item><item key=\"LightSource\" base64=\"1\">MA==</item><item key=\"Flash\" base64=\"1\">MA==</item><item key=\"FocalLength\" base64=\"1\">MzYvNQ==</item><item key=\"FlashPixVersion\" base64=\"1\">MDEwMA==</item><item key=\"ColorSpace\" base64=\"1\">MQ==</item><item key=\"ExifImageWidth\" base64=\"1\">NDUw</item><item key=\"ExifImageLength\" base64=\"1\">MzM4</item></array></information></ezimage>\n','ezimage',424,'ger-DE',2,0,'',1),(0,207,88,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',425,'ger-DE',2,0,'',1),(0,208,88,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezmultioption option_counter=\"2\"><name>Direction</name><multioptions><multioption id=\"1\" name=\"\" priority=\"1\" default_option_id=\"\"><option id=\"1\" option_id=\"1\" value=\"North\" additional_price=\"10\"/><option id=\"2\" option_id=\"2\" value=\"South\" additional_price=\"5\"/></multioption></multioptions></ezmultioption>\n','ezmultioption',426,'ger-DE',2,0,'',1),(0,209,88,0,0,'','ezsrrating',427,'ger-DE',2,0,'',1),(0,210,88,0,NULL,'','ezkeyword',428,'ger-DE',2,0,'',1),(0,211,88,1,1,'','ezcomcomments',429,'ger-DE',2,0,'',1),(0,201,89,0,NULL,'Street Crossing','ezstring',430,'ger-DE',2,0,'street crossing',1),(0,202,89,0,NULL,'NYC102','ezstring',431,'ger-DE',2,0,'nyc102',1),(0,203,89,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>Old street crossing for sale. Paint is a bit faded, but still quite visible.</paragraph></section>','ezxmltext',432,'ger-DE',2,0,'',1),(0,204,89,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',433,'ger-DE',2,0,'',1),(0,205,89,79,NULL,'','ezprice',434,'ger-DE',2,7900,'',1),(0,206,89,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"341aeb018f1ce2928367c3274deb72c2.jpg\" suffix=\"jpg\" basename=\"341aeb018f1ce2928367c3274deb72c2\" dirpath=\"var/ezdemo_site/storage/images/city-shopping/products/street-crossing/435-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/city-shopping/products/street-crossing/435-1-ger-DE/trashed/341aeb018f1ce2928367c3274deb72c2.jpg\" original_filename=\"01a8f40b.jpg\" mime_type=\"image/jpeg\" width=\"400\" height=\"242\" alternative_text=\"Old street crossing.\" alias_key=\"1293033771\" timestamp=\"1381794986\"><original attribute_id=\"435\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><information Height=\"242\" Width=\"400\" IsColor=\"1\" ByteOrderMotorola=\"1\" ApertureFNumber=\"f/2.8\" UserComment=\"Camera+ recipe? ? scene: Clarity ? crop: Freeform ? effect: Tailfins (98%)\" UserCommentEncoding=\"ASCII\"><array name=\"ifd0\"><item key=\"Make\" base64=\"1\">QXBwbGU=</item><item key=\"Model\" base64=\"1\">aVBob25l</item><item key=\"Orientation\" base64=\"1\">MQ==</item><item key=\"XResolution\" base64=\"1\">NzIvMQ==</item><item key=\"YResolution\" base64=\"1\">NzIvMQ==</item><item key=\"ResolutionUnit\" base64=\"1\">Mg==</item><item key=\"Software\" base64=\"1\">Q2FtZXJhKyAyLjMuMw==</item><item key=\"DateTime\" base64=\"1\">MjAxMjowMzoxMSAyMjoxNDoxOQ==</item><item key=\"HostComputer\" base64=\"1\">aVBob25lIChpUGhvbmUgT1MgNS4wLjEp</item><item key=\"Exif_IFD_Pointer\" base64=\"1\">MjI0</item></array><array name=\"exif\"><item key=\"FNumber\" base64=\"1\">MTQvNQ==</item><item key=\"ExifVersion\" base64=\"1\">MDIyMA==</item><item key=\"DateTimeOriginal\" base64=\"1\">MjAxMjowMzoxMSAyMjoxNDoxOQ==</item><item key=\"DateTimeDigitized\" base64=\"1\">MjAxMjowMzoxMSAyMjoxNDoxOQ==</item><item key=\"ComponentsConfiguration\" base64=\"1\">AAAAAQ==</item><item key=\"UserComment\" base64=\"1\">QVNDSUkAAABDYW1lcmErIHJlY2lwZT8KPyBzY2VuZTogQ2xhcml0eQo/IGNyb3A6IEZyZWVmb3JtCj8gZWZmZWN0OiBUYWlsZmlucyAoOTglKQ==</item><item key=\"FlashPixVersion\" base64=\"1\">MDEwMA==</item><item key=\"ColorSpace\" base64=\"1\">MQ==</item><item key=\"ExifImageWidth\" base64=\"1\">NDAw</item><item key=\"ExifImageLength\" base64=\"1\">MjQy</item><item key=\"SceneCaptureType\" base64=\"1\">MA==</item></array></information></ezimage>\n','ezimage',435,'ger-DE',2,0,'',1),(0,207,89,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',436,'ger-DE',2,0,'',1),(0,208,89,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezmultioption option_counter=\"2\"><name>Number</name><multioptions><multioption id=\"1\" name=\"\" priority=\"1\" default_option_id=\"\"><option id=\"1\" option_id=\"1\" value=\"North South\" additional_price=\"10\"/><option id=\"2\" option_id=\"2\" value=\"East West\" additional_price=\"20\"/></multioption></multioptions></ezmultioption>\n','ezmultioption',437,'ger-DE',2,0,'',1),(0,209,89,0,0,'','ezsrrating',438,'ger-DE',2,0,'',1),(0,210,89,0,NULL,'','ezkeyword',439,'ger-DE',2,0,'',1),(0,211,89,1,1,'','ezcomcomments',440,'ger-DE',2,0,'',1),(0,4,90,0,NULL,'Locations','ezstring',441,'ger-DE',3,0,'locations',1),(0,155,90,0,NULL,'','ezstring',442,'ger-DE',3,0,'',1),(0,119,90,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',443,'ger-DE',3,0,'',1),(0,156,90,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',444,'ger-DE',3,0,'',1),(445,158,90,0,1,'','ezboolean',445,'ger-DE',3,1,'',1),(0,181,91,0,NULL,'New York City','ezstring',446,'ger-DE',2,0,'new york city',1),(0,182,91,0,NULL,'','ezstring',447,'ger-DE',2,0,'',1),(0,183,91,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezauthor><authors><author id=\"0\" name=\"Administrator User\" email=\"[email protected]\"/></authors></ezauthor>\n','ezauthor',448,'ger-DE',2,0,'',1),(0,184,91,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>New York is the <link xhtml:title=\"List of United States cities by population\" url_id=\"80\">most populous city</link> in the <link xhtml:title=\"United States\" url_id=\"81\">United States</link> and the center of the <link xhtml:title=\"New York Metropolitan Area\" url_id=\"82\">New York Metropolitan Area</link>, one of the <link xhtml:title=\"List of metropolitan areas by population\" url_id=\"83\">most populous metropolitan areas</link> in the world.</paragraph></section>','ezxmltext',449,'ger-DE',2,0,'',1),(0,185,91,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>New York exerts a significant impact upon global commerce, finance, media, art, fashion, research, technology, education, and entertainment. The home of the <link xhtml:title=\"United Nations Headquarters\" url_id=\"84\">United Nations Headquarters</link>, New York is an important center for <link xhtml:title=\"Diplomacy\" url_id=\"85\">international diplomacy</link> and has been described as the cultural capital of the world. The city is also referred to as New York City or The City of New York to distinguish it from the <link xhtml:title=\"New York\" url_id=\"86\">State of New York</link>, of which it is a part.</paragraph><paragraph><line xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\">For complete text visit Wikipedia: <link url_id=\"87\">http://en.wikipedia.org/wiki/New_York_City</link></line><line xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\">This text is available under the <link target=\"_self\" url_id=\"54\">Creative Commons Attribution-ShareAlike License</link>; additional terms may apply. See <link target=\"_self\" url_id=\"55\">Terms of use</link> for details.</line></paragraph></section>','ezxmltext',450,'ger-DE',2,0,'',1),(0,186,91,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"0a69cc3132e3fbfad7a2ee1d37ba7eb5.jpg\" suffix=\"jpg\" basename=\"0a69cc3132e3fbfad7a2ee1d37ba7eb5\" dirpath=\"var/ezdemo_site/storage/images/city-shopping/locations/new-york-city/451-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/city-shopping/locations/new-york-city/451-1-ger-DE/trashed/0a69cc3132e3fbfad7a2ee1d37ba7eb5.jpg\" original_filename=\"90bbe723.jpg\" mime_type=\"image/jpeg\" width=\"771\" height=\"578\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1381794987\"><original attribute_id=\"451\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><information Height=\"578\" Width=\"771\" IsColor=\"1\"/><alias name=\"contentgrid\" filename=\"0a69cc3132e3fbfad7a2ee1d37ba7eb5_contentgrid.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/city-shopping/locations/new-york-city/451-1-ger-DE/trashed\" url=\"var/ezdemo_site/storage/images/city-shopping/locations/new-york-city/451-1-ger-DE/trashed/0a69cc3132e3fbfad7a2ee1d37ba7eb5_contentgrid.jpg\" mime_type=\"image/jpeg\" width=\"370\" height=\"160\" alias_key=\"4192414807\" timestamp=\"1382071021\" is_valid=\"1\"/></ezimage>\n','ezimage',451,'ger-DE',2,0,'',1),(0,187,91,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',452,'ger-DE',2,0,'',1),(0,188,91,0,0,'','ezdatetime',453,'ger-DE',2,0,'',1),(0,189,91,0,0,'','ezsrrating',454,'ger-DE',2,0,'',1),(0,190,91,0,NULL,'','ezkeyword',455,'ger-DE',2,0,'',1),(0,191,91,0,1,'','ezgmaplocation',456,'ger-DE',2,0,'Manhattan New York',1),(0,192,91,1,1,'','ezcomcomments',457,'ger-DE',2,0,'',1),(0,4,92,0,NULL,'Partner Section','ezstring',458,'ger-DE',3,0,'partner section',1),(0,155,92,0,NULL,'','ezstring',459,'ger-DE',3,0,'',1),(0,119,92,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>In this section you find information that is restricted based on login privileges. This is done by assigning a non-public section to the content, in this case \"Restricted\" is used.</paragraph></section>','ezxmltext',460,'ger-DE',3,0,'',1),(0,156,92,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',461,'ger-DE',3,0,'',1),(462,158,92,0,1,'','ezboolean',462,'ger-DE',3,1,'',1),(0,230,93,0,NULL,'eZ Logo Black','ezstring',463,'ger-DE',2,0,'ez logo black',1),(0,231,93,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>150 DPI PNG version of the eZ Logo.</paragraph></section>','ezxmltext',464,'ger-DE',2,0,'',1),(0,232,93,0,NULL,'','ezbinaryfile',465,'ger-DE',2,0,'',1),(0,233,93,0,0,'','ezsrrating',466,'ger-DE',2,0,'',1),(0,234,93,0,NULL,'','ezkeyword',467,'ger-DE',2,0,'',1),(0,235,93,1,1,'','ezcomcomments',468,'ger-DE',2,0,'',1),(0,230,94,0,NULL,'eZ Logo White','ezstring',469,'ger-DE',2,0,'ez logo white',1),(0,231,94,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>eZ Logo 150DPI in PNG format.</paragraph></section>','ezxmltext',470,'ger-DE',2,0,'',1),(0,232,94,0,NULL,'','ezbinaryfile',471,'ger-DE',2,0,'',1),(0,233,94,0,0,'','ezsrrating',472,'ger-DE',2,0,'',1),(0,234,94,0,NULL,'','ezkeyword',473,'ger-DE',2,0,'',1),(0,235,94,1,1,'','ezcomcomments',474,'ger-DE',2,0,'',1),(0,4,95,0,NULL,'Logos','ezstring',475,'ger-DE',3,0,'logos',1),(0,155,95,0,NULL,'','ezstring',476,'ger-DE',3,0,'',1),(0,119,95,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',477,'ger-DE',3,0,'',1),(0,156,95,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',478,'ger-DE',3,0,'',1),(479,158,95,0,1,'','ezboolean',479,'ger-DE',3,1,'',1),(0,221,96,0,NULL,'Partner Wiki','ezstring',480,'ger-DE',2,0,'partner wiki',1),(0,222,96,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>This is an example of Wiki content in the restricted partner section.</paragraph><section><header>Heading</header><paragraph>Headings are automatically used to generate a table of contents for simpler navigation in larger pieces of content.</paragraph></section></section>','ezxmltext',481,'ger-DE',2,0,'',1),(0,223,96,0,0,'','ezsrrating',482,'ger-DE',2,0,'',1),(0,224,96,0,NULL,'','ezkeyword',483,'ger-DE',2,0,'',1),(0,225,96,1,1,'','ezcomcomments',484,'ger-DE',2,0,'',1),(0,226,96,0,0,'','ezboolean',485,'ger-DE',2,0,'',1),(0,193,97,0,NULL,'Blog','ezstring',486,'ger-DE',2,0,'blog',1),(0,194,97,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>','ezxmltext',487,'ger-DE',2,0,'',1),(0,195,97,0,NULL,'','ezkeyword',488,'ger-DE',2,0,'',1),(0,196,98,0,NULL,'Example Blog Post','ezstring',489,'ger-DE',2,0,'example blog post',1),(0,197,98,0,1045487555,'<?xml version=\"1.0\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>This is a sample post for showing how a corporate blog can be integrated into your eZ Publish site.</paragraph><paragraph>You can also refer to other content on the site as the gallery below:</paragraph><paragraph xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\"><embed view=\"embed\" size=\"medium\" custom:offset=\"0\" custom:limit=\"5\" object_id=\"71\"/></paragraph></section>\n','ezxmltext',490,'ger-DE',2,0,'',1),(0,198,98,0,1332932400,'','ezdatetime',491,'ger-DE',2,1332932400,'',1),(0,199,98,0,NULL,'','ezkeyword',492,'ger-DE',2,0,'',1),(0,200,98,1,1,'','ezcomcomments',493,'ger-DE',2,0,'',1),(0,212,99,0,NULL,'Contact Us','ezstring',494,'ger-DE',2,0,'contact us',1),(0,213,99,0,1045487555,'<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>Please fill in the form below to contact us.</paragraph><paragraph>You can also reach us at:</paragraph><paragraph><line xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\"><strong>Company Name</strong></line><line xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\">Address</line><line xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\">City</line><line xmlns:tmp=\"http://ez.no/namespaces/ezpublish3/temporary/\">Country </line></paragraph></section>','ezxmltext',495,'ger-DE',2,0,'',1),(0,214,99,0,NULL,'','ezstring',496,'ger-DE',2,0,'',1),(0,215,99,0,NULL,'','ezstring',497,'ger-DE',2,0,'',1),(0,216,99,0,NULL,'','eztext',498,'ger-DE',2,0,'',1),(0,217,99,0,NULL,'','ezemail',499,'ger-DE',2,0,'',1),(0,218,99,0,NULL,'','ezemail',500,'ger-DE',2,0,'',1),(0,279,54,0,88,'Site map','ezurl',501,'ger-DE',2,0,'',2),(0,280,54,0,89,'Tag cloud','ezurl',502,'ger-DE',2,0,'',2),(0,281,54,0,NULL,'Login','ezstring',503,'ger-DE',2,0,'login',2),(0,282,54,0,NULL,'Logout','ezstring',504,'ger-DE',2,0,'logout',2),(0,283,54,0,NULL,'My profile','ezstring',505,'ger-DE',2,0,'my profile',2),(0,284,54,0,NULL,'Register','ezstring',506,'ger-DE',2,0,'register',2),(0,285,54,0,NULL,'/rss/feed/my_feed','ezstring',507,'ger-DE',2,0,'/rss/feed/my_feed',2),(0,286,54,0,NULL,'Shopping basket','ezstring',508,'ger-DE',2,0,'shopping basket',2),(0,287,54,0,NULL,'Site settings','ezstring',509,'ger-DE',2,0,'site settings',2),(0,288,54,0,NULL,'Copyright © 2013 <a href=\"http://ez.no\" title=\"eZ Systems\">eZ Systems AS</a> (except where otherwise noted). All rights reserved.','eztext',510,'ger-DE',2,0,'',2),(0,289,54,0,0,'','ezboolean',511,'ger-DE',2,0,'',2),(0,290,54,0,NULL,'','eztext',512,'ger-DE',2,0,'',2),(0,6,100,0,NULL,'Partners','ezstring',513,'ger-DE',3,0,'partners',1),(0,7,100,0,NULL,'','ezstring',514,'ger-DE',3,0,'',1),(0,291,41,0,NULL,'<?xml version=\"1.0\"?>\n<page/>\n','ezpage',515,'ger-DE',2,0,'',1),(0,291,45,0,NULL,'<?xml version=\"1.0\"?>\n<page/>\n','ezpage',516,'ger-DE',2,0,'',1),(0,291,49,0,NULL,'<?xml version=\"1.0\"?>\n<page/>\n','ezpage',517,'ger-DE',2,0,'',1),(0,291,50,0,NULL,'<?xml version=\"1.0\"?>\n<page/>\n','ezpage',518,'ger-DE',2,0,'',1),(0,291,51,0,NULL,'<?xml version=\"1.0\"?>\n<page/>\n','ezpage',519,'ger-DE',2,0,'',1),(0,291,56,0,NULL,'<?xml version=\"1.0\"?>\n<page/>\n','ezpage',520,'ger-DE',2,0,'',1),(0,291,59,0,NULL,'<?xml version=\"1.0\"?>\n<page/>\n','ezpage',521,'ger-DE',2,0,'',1),(0,291,64,0,NULL,'<?xml version=\"1.0\"?>\n<page/>\n','ezpage',522,'ger-DE',2,0,'',1),(0,291,81,0,NULL,'<?xml version=\"1.0\"?>\n<page/>\n','ezpage',523,'ger-DE',2,0,'',1),(0,291,86,0,NULL,'<?xml version=\"1.0\"?>\n<page/>\n','ezpage',524,'ger-DE',2,0,'',1),(0,291,90,0,NULL,'<?xml version=\"1.0\"?>\n<page/>\n','ezpage',525,'ger-DE',2,0,'',1),(0,291,92,0,NULL,'<?xml version=\"1.0\"?>\n<page/>\n','ezpage',526,'ger-DE',2,0,'',1),(0,291,95,0,NULL,'<?xml version=\"1.0\"?>\n<page/>\n','ezpage',527,'ger-DE',2,0,'',1),(0,292,41,0,NULL,'','ezkeyword',528,'ger-DE',2,0,'',1),(0,292,45,0,NULL,'','ezkeyword',529,'ger-DE',2,0,'',1),(0,292,49,0,NULL,'','ezkeyword',530,'ger-DE',2,0,'',1),(0,292,50,0,NULL,'','ezkeyword',531,'ger-DE',2,0,'',1),(0,292,51,0,NULL,'','ezkeyword',532,'ger-DE',2,0,'',1),(0,292,56,0,NULL,'','ezkeyword',533,'ger-DE',2,0,'',1),(0,292,59,0,NULL,'','ezkeyword',534,'ger-DE',2,0,'',1),(0,292,64,0,NULL,'','ezkeyword',535,'ger-DE',2,0,'',1),(0,292,81,0,NULL,'','ezkeyword',536,'ger-DE',2,0,'',1),(0,292,86,0,NULL,'','ezkeyword',537,'ger-DE',2,0,'',1),(0,292,90,0,NULL,'','ezkeyword',538,'ger-DE',2,0,'',1),(0,292,92,0,NULL,'','ezkeyword',539,'ger-DE',2,0,'',1),(0,292,95,0,NULL,'','ezkeyword',540,'ger-DE',2,0,'',1),(0,4,101,0,NULL,'Foods','ezstring',541,'ger-DE',3,0,'foods',1),(0,4,101,0,NULL,'Pizza Hollywood','ezstring',541,'ger-DE',3,0,'pizza hollywood',2),(0,155,101,0,NULL,'','ezstring',542,'ger-DE',3,0,'',1),(0,155,101,0,NULL,'','ezstring',542,'ger-DE',3,0,'',2),(0,119,101,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',543,'ger-DE',3,0,'',1),(0,119,101,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',543,'ger-DE',3,0,'',2),(0,156,101,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',544,'ger-DE',3,0,'',1),(0,156,101,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',544,'ger-DE',3,0,'',2),(545,158,101,0,1,'','ezboolean',545,'ger-DE',3,1,'',1),(545,158,101,0,1,'','ezboolean',545,'ger-DE',3,1,'',2),(0,291,101,0,NULL,'<?xml version=\"1.0\"?>\n<page>\n <zone_layout>CallForActionLayout</zone_layout>\n <zone id=\"id_b496199cac215518b134c1afe190879a\">\n <zone_identifier>main</zone_identifier>\n </zone>\n</page>\n','ezpage',546,'ger-DE',3,0,'',1),(0,291,101,0,NULL,'<?xml version=\"1.0\"?>\n<page>\n <zone_layout>CallForActionLayout</zone_layout>\n <zone id=\"id_b496199cac215518b134c1afe190879a\">\n <zone_identifier>main</zone_identifier>\n </zone>\n</page>\n','ezpage',546,'ger-DE',3,0,'',2),(0,292,101,0,NULL,'','ezkeyword',547,'ger-DE',3,0,'',1),(0,292,101,0,NULL,'','ezkeyword',547,'ger-DE',3,0,'',2),(0,300,122,0,NULL,'Pizza','ezstring',730,'ger-DE',2,0,'pizza',1),(0,300,122,0,NULL,'Pizza Klassiker','ezstring',730,'ger-DE',2,0,'pizza klassiker',2),(0,300,122,0,NULL,'Pizza','ezstring',730,'ger-DE',2,0,'pizza',3),(0,300,123,0,NULL,'From Italy','ezstring',731,'ger-DE',2,0,'from italy',1),(0,300,124,0,NULL,'Baguette','ezstring',732,'ger-DE',2,0,'baguette',1),(0,300,125,0,NULL,'Salate','ezstring',733,'ger-DE',2,0,'salate',1),(0,300,126,0,NULL,'Burger','ezstring',734,'ger-DE',2,0,'burger',1),(0,300,126,0,NULL,'Burger','ezstring',734,'ger-DE',2,0,'burger',2),(0,300,126,0,NULL,'Burger','ezstring',734,'ger-DE',2,0,'burger',3),(0,300,127,0,NULL,'Wrap','ezstring',735,'ger-DE',2,0,'wrap',1),(0,300,128,0,NULL,'Spezial','ezstring',736,'ger-DE',2,0,'spezial',1),(0,300,129,0,NULL,'Dessert','ezstring',737,'ger-DE',2,0,'dessert',1),(0,300,130,0,NULL,'Getränke','ezstring',738,'ger-DE',2,0,'getränke',1),(0,300,131,0,NULL,'Extras','ezstring',739,'ger-DE',2,0,'extras',1),(0,4,132,0,NULL,'Footer','ezstring',740,'ger-DE',3,0,'footer',1),(0,155,132,0,NULL,'','ezstring',741,'ger-DE',3,0,'',1),(0,119,132,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',742,'ger-DE',3,0,'',1),(0,156,132,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',743,'ger-DE',3,0,'',1),(744,158,132,0,1,'','ezboolean',744,'ger-DE',3,1,'',1),(0,291,132,0,NULL,'<?xml version=\"1.0\"?>\n<page>\n <zone_layout>CallForActionLayout</zone_layout>\n <zone id=\"id_e17585fedb095eb03f4a0454b91b3981\">\n <zone_identifier>main</zone_identifier>\n </zone>\n</page>\n','ezpage',745,'ger-DE',3,0,'',1),(0,292,132,0,NULL,'','ezkeyword',746,'ger-DE',3,0,'',1),(0,181,133,0,NULL,'Impressum','ezstring',747,'ger-DE',2,0,'impressum',1),(0,181,133,0,NULL,'Impressum','ezstring',747,'ger-DE',2,0,'impressum',2),(0,182,133,0,NULL,'','ezstring',748,'ger-DE',2,0,'',1),(0,182,133,0,NULL,'','ezstring',748,'ger-DE',2,0,'',2),(0,183,133,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezauthor><authors><author id=\"0\" name=\"Amir Koklan\" email=\"[email protected]\"/></authors></ezauthor>\n','ezauthor',749,'ger-DE',2,0,'',1),(0,183,133,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezauthor><authors><author id=\"0\" name=\"Amir Koklan\" email=\"[email protected]\"/></authors></ezauthor>\n','ezauthor',749,'ger-DE',2,0,'',2),(0,184,133,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>Impressum</paragraph></section>\n','ezxmltext',750,'ger-DE',2,0,'',1),(0,184,133,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>Impressum</paragraph></section>\n','ezxmltext',750,'ger-DE',2,0,'',2),(0,185,133,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',751,'ger-DE',2,0,'',1),(0,185,133,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',751,'ger-DE',2,0,'',2),(0,186,133,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382070944\"><original attribute_id=\"752\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',752,'ger-DE',2,0,'',1),(0,186,133,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382070944\"><original attribute_id=\"752\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',752,'ger-DE',2,0,'',2),(0,187,133,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',753,'ger-DE',2,0,'',1),(0,187,133,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',753,'ger-DE',2,0,'',2),(0,188,133,0,0,'','ezdatetime',754,'ger-DE',2,0,'',1),(0,188,133,0,0,'','ezdatetime',754,'ger-DE',2,0,'',2),(0,189,133,0,NULL,'','ezsrrating',755,'ger-DE',2,0,'',1),(0,189,133,0,1,'','ezsrrating',755,'ger-DE',2,0,'',2),(0,190,133,0,NULL,'','ezkeyword',756,'ger-DE',2,0,'',1),(0,190,133,0,NULL,'','ezkeyword',756,'ger-DE',2,0,'',2),(0,191,133,0,0,'','ezgmaplocation',757,'ger-DE',2,0,'',1),(0,191,133,0,0,'','ezgmaplocation',757,'ger-DE',2,0,'',2),(0,192,133,1,1,'','ezcomcomments',758,'ger-DE',2,0,'',1),(0,192,133,-1,-1,'','ezcomcomments',758,'ger-DE',2,0,'',2),(0,4,134,0,NULL,'Foods','ezstring',759,'ger-DE',3,0,'foods',1),(0,155,134,0,NULL,'','ezstring',760,'ger-DE',3,0,'',1),(0,119,134,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',761,'ger-DE',3,0,'',1),(0,156,134,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',762,'ger-DE',3,0,'',1),(763,158,134,0,1,'','ezboolean',763,'ger-DE',3,1,'',1),(0,291,134,0,NULL,'<?xml version=\"1.0\"?>\n<page>\n <zone_layout>CallForActionLayout</zone_layout>\n <zone id=\"id_b11a524121804d3efa1873e753a9d1eb\">\n <zone_identifier>main</zone_identifier>\n </zone>\n</page>\n','ezpage',764,'ger-DE',3,0,'',1),(0,292,134,0,NULL,'','ezkeyword',765,'ger-DE',3,0,'',1),(0,301,135,0,NULL,'Pizza L.A.','ezstring',766,'ger-DE',2,0,'pizza l.a.',1),(0,301,135,0,NULL,'Pizza L.A.','ezstring',766,'ger-DE',2,0,'pizza l.a.',2),(0,302,135,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382076464\"><original attribute_id=\"767\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',767,'ger-DE',2,0,'',1),(0,302,135,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"Pizza-L.A.png\" suffix=\"png\" basename=\"Pizza-L.A\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a/767-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a/767-2-ger-DE/Pizza-L.A.png\" original_filename=\"pizza la.png\" mime_type=\"image/png\" width=\"355\" height=\"365\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382602943\"><original attribute_id=\"767\" attribute_version=\"2\" attribute_language=\"ger-DE\"/><alias name=\"reference\" filename=\"Pizza-L.A_reference.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a/767-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a/767-2-ger-DE/Pizza-L.A_reference.png\" mime_type=\"image/png\" width=\"355\" height=\"365\" alias_key=\"2605465115\" timestamp=\"1382606833\" is_valid=\"1\"/><alias name=\"small\" filename=\"Pizza-L.A_small.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a/767-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a/767-2-ger-DE/Pizza-L.A_small.png\" mime_type=\"image/png\" width=\"97\" height=\"100\" alias_key=\"2343348577\" timestamp=\"1382602948\" is_valid=\"1\"/><alias name=\"productthumbnail\" filename=\"Pizza-L.A_productthumbnail.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a/767-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a/767-2-ger-DE/Pizza-L.A_productthumbnail.png\" mime_type=\"image/png\" width=\"170\" height=\"174\" alias_key=\"1108033634\" timestamp=\"1382603265\" is_valid=\"1\"/><alias name=\"large\" filename=\"Pizza-L.A_large.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a/767-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a/767-2-ger-DE/Pizza-L.A_large.png\" mime_type=\"image/png\" width=\"291\" height=\"300\" alias_key=\"1592566908\" timestamp=\"1382606833\" is_valid=\"1\"/><alias name=\"product_view\" filename=\"Pizza-L.A_product_view.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a/767-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a/767-2-ger-DE/Pizza-L.A_product_view.png\" mime_type=\"image/png\" width=\"355\" height=\"365\" alias_key=\"1177252184\" timestamp=\"1382755153\" is_valid=\"1\"/></ezimage>\n','ezimage',767,'ger-DE',2,0,'',2),(0,303,135,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>frischen Tomaten, Mozzarella, Basilikum</paragraph></section>\n','ezxmltext',768,'ger-DE',2,0,'',1),(0,303,135,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>frischen Tomaten, Mozzarella, Basilikum</paragraph></section>\n','ezxmltext',768,'ger-DE',2,0,'',2),(0,201,136,0,NULL,'Classic','ezstring',769,'ger-DE',2,0,'classic',1),(0,201,136,0,NULL,'Pizza L.A','ezstring',769,'ger-DE',2,0,'pizza l.a',2),(0,201,136,0,NULL,'Pizza L.A CL','ezstring',769,'ger-DE',2,0,'pizza l.a cl',3),(0,202,136,0,NULL,'100','ezstring',770,'ger-DE',2,0,'100',1),(0,202,136,0,NULL,'100','ezstring',770,'ger-DE',2,0,'100',2),(0,202,136,0,NULL,'100','ezstring',770,'ger-DE',2,0,'100',3),(0,203,136,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',771,'ger-DE',2,0,'',1),(0,203,136,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',771,'ger-DE',2,0,'',2),(0,203,136,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',771,'ger-DE',2,0,'',3),(0,204,136,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',772,'ger-DE',2,0,'',1),(0,204,136,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',772,'ger-DE',2,0,'',2),(0,204,136,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',772,'ger-DE',2,0,'',3),(0,205,136,6.9,NULL,'1,1','ezprice',773,'ger-DE',2,690,'',1),(0,205,136,6.9,NULL,'1,1','ezprice',773,'ger-DE',2,690,'',2),(0,205,136,6.9,NULL,'1,1','ezprice',773,'ger-DE',2,690,'',3),(0,206,136,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382076783\"><original attribute_id=\"774\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',774,'ger-DE',2,0,'',1),(0,206,136,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382076783\"><original attribute_id=\"774\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',774,'ger-DE',2,0,'',2),(0,206,136,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382076783\"><original attribute_id=\"774\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',774,'ger-DE',2,0,'',3),(0,207,136,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',775,'ger-DE',2,0,'',1),(0,207,136,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',775,'ger-DE',2,0,'',2),(0,207,136,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',775,'ger-DE',2,0,'',3),(0,208,136,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezmultioption option_counter=\"3\"><name>Zusätze</name><multioptions><multioption id=\"1\" name=\"Zusätze\" priority=\"1\" default_option_id=\"\"><option id=\"1\" option_id=\"1\" value=\"Käse\" additional_price=\"0.8\"/><option id=\"2\" option_id=\"2\" value=\"Tomaten\" additional_price=\"0.8\"/><option id=\"3\" option_id=\"3\" value=\"Mais\" additional_price=\"0.8\"/></multioption></multioptions></ezmultioption>\n','ezmultioption',776,'ger-DE',2,0,'',1),(0,208,136,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezmultioption option_counter=\"3\"><name>Zusätze</name><multioptions><multioption id=\"1\" name=\"Zusätze\" priority=\"1\" default_option_id=\"\"><option id=\"1\" option_id=\"1\" value=\"Käse\" additional_price=\"0.8\"/><option id=\"2\" option_id=\"2\" value=\"Tomaten\" additional_price=\"0.8\"/><option id=\"3\" option_id=\"3\" value=\"Mais\" additional_price=\"0.8\"/></multioption></multioptions></ezmultioption>\n','ezmultioption',776,'ger-DE',2,0,'',2),(0,208,136,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezmultioption option_counter=\"3\"><name>Zusätze</name><multioptions><multioption id=\"1\" name=\"Zusätze\" priority=\"1\" default_option_id=\"\"><option id=\"1\" option_id=\"1\" value=\"Käse\" additional_price=\"0.8\"/><option id=\"2\" option_id=\"2\" value=\"Tomaten\" additional_price=\"0.8\"/><option id=\"3\" option_id=\"3\" value=\"Mais\" additional_price=\"0.8\"/></multioption></multioptions></ezmultioption>\n','ezmultioption',776,'ger-DE',2,0,'',3),(0,209,136,0,NULL,'','ezsrrating',777,'ger-DE',2,0,'',1),(0,209,136,0,NULL,'','ezsrrating',777,'ger-DE',2,0,'',2),(0,209,136,0,NULL,'','ezsrrating',777,'ger-DE',2,0,'',3),(0,210,136,0,NULL,'','ezkeyword',778,'ger-DE',2,0,'',1),(0,210,136,0,NULL,'','ezkeyword',778,'ger-DE',2,0,'',2),(0,210,136,0,NULL,'','ezkeyword',778,'ger-DE',2,0,'',3),(0,211,136,1,1,'','ezcomcomments',779,'ger-DE',2,0,'',1),(0,211,136,1,1,'','ezcomcomments',779,'ger-DE',2,0,'',2),(0,211,136,1,1,'','ezcomcomments',779,'ger-DE',2,0,'',3),(0,304,87,NULL,NULL,NULL,'ezstring',781,'ger-DE',2,0,'',1),(0,304,88,NULL,NULL,NULL,'ezstring',782,'ger-DE',2,0,'',1),(0,304,89,NULL,NULL,NULL,'ezstring',783,'ger-DE',2,0,'',1),(0,304,136,NULL,NULL,NULL,'ezstring',784,'ger-DE',2,0,'',1),(0,304,136,0,NULL,'Classic','ezstring',784,'ger-DE',2,0,'classic',2),(0,304,136,0,NULL,'Classic','ezstring',784,'ger-DE',2,0,'classic',3),(0,201,137,0,NULL,'Pizza L.A','ezstring',785,'ger-DE',2,0,'pizza l.a',1),(0,201,137,0,NULL,'Pizza L.A American','ezstring',785,'ger-DE',2,0,'pizza l.a american',2),(0,202,137,0,NULL,'','ezstring',786,'ger-DE',2,0,'',1),(0,202,137,0,NULL,'','ezstring',786,'ger-DE',2,0,'',2),(0,304,137,0,NULL,'American','ezstring',787,'ger-DE',2,0,'american',1),(0,304,137,0,NULL,'American','ezstring',787,'ger-DE',2,0,'american',2),(0,203,137,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',788,'ger-DE',2,0,'',1),(0,203,137,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',788,'ger-DE',2,0,'',2),(0,204,137,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',789,'ger-DE',2,0,'',1),(0,204,137,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',789,'ger-DE',2,0,'',2),(0,205,137,7.9,NULL,'1,1','ezprice',790,'ger-DE',2,790,'',1),(0,205,137,7.9,NULL,'1,1','ezprice',790,'ger-DE',2,790,'',2),(0,206,137,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382613598\"><original attribute_id=\"791\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',791,'ger-DE',2,0,'',1),(0,206,137,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382613598\"><original attribute_id=\"791\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',791,'ger-DE',2,0,'',2),(0,207,137,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',792,'ger-DE',2,0,'',1),(0,207,137,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',792,'ger-DE',2,0,'',2),(0,208,137,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezmultioption option_counter=\"2\"><name>Zutaten</name><multioptions><multioption id=\"1\" name=\"Zutaten\" priority=\"1\" default_option_id=\"\"><option id=\"1\" option_id=\"1\" value=\"Käse\" additional_price=\"0.8\"/><option id=\"2\" option_id=\"2\" value=\"Tomaten\" additional_price=\"0.8\"/></multioption></multioptions></ezmultioption>\n','ezmultioption',793,'ger-DE',2,0,'',1),(0,208,137,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezmultioption option_counter=\"2\"><name>Zutaten</name><multioptions><multioption id=\"1\" name=\"Zutaten\" priority=\"1\" default_option_id=\"\"><option id=\"1\" option_id=\"1\" value=\"Käse\" additional_price=\"0.8\"/><option id=\"2\" option_id=\"2\" value=\"Tomaten\" additional_price=\"0.8\"/></multioption></multioptions></ezmultioption>\n','ezmultioption',793,'ger-DE',2,0,'',2),(0,209,137,0,1,'','ezsrrating',794,'ger-DE',2,0,'',1),(0,209,137,0,1,'','ezsrrating',794,'ger-DE',2,0,'',2),(0,210,137,0,NULL,'','ezkeyword',795,'ger-DE',2,0,'',1),(0,210,137,0,NULL,'','ezkeyword',795,'ger-DE',2,0,'',2),(0,211,137,1,1,'','ezcomcomments',796,'ger-DE',2,0,'',1),(0,211,137,1,1,'','ezcomcomments',796,'ger-DE',2,0,'',2),(0,201,138,0,NULL,'Pizza L.A','ezstring',797,'ger-DE',2,0,'pizza l.a',1),(0,201,138,0,NULL,'Pizza L.A Jumbo','ezstring',797,'ger-DE',2,0,'pizza l.a jumbo',2),(0,202,138,0,NULL,'','ezstring',798,'ger-DE',2,0,'',1),(0,202,138,0,NULL,'','ezstring',798,'ger-DE',2,0,'',2),(0,304,138,0,NULL,'Jumbo','ezstring',799,'ger-DE',2,0,'jumbo',1),(0,304,138,0,NULL,'Jumbo','ezstring',799,'ger-DE',2,0,'jumbo',2),(0,203,138,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',800,'ger-DE',2,0,'',1),(0,203,138,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',800,'ger-DE',2,0,'',2),(0,204,138,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',801,'ger-DE',2,0,'',1),(0,204,138,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',801,'ger-DE',2,0,'',2),(0,205,138,13.9,NULL,'1,1','ezprice',802,'ger-DE',2,1390,'',1),(0,205,138,13.9,NULL,'1,1','ezprice',802,'ger-DE',2,1390,'',2),(0,206,138,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382613783\"><original attribute_id=\"803\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',803,'ger-DE',2,0,'',1),(0,206,138,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382613783\"><original attribute_id=\"803\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',803,'ger-DE',2,0,'',2),(0,207,138,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',804,'ger-DE',2,0,'',1),(0,207,138,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',804,'ger-DE',2,0,'',2),(0,208,138,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezmultioption option_counter=\"2\"><name>Zutaten</name><multioptions><multioption id=\"1\" name=\"Zutaten\" priority=\"1\" default_option_id=\"\"><option id=\"1\" option_id=\"1\" value=\"Käse\" additional_price=\"1.60\"/><option id=\"2\" option_id=\"2\" value=\"Tomaten\" additional_price=\"1.60\"/></multioption></multioptions></ezmultioption>\n','ezmultioption',805,'ger-DE',2,0,'',1),(0,208,138,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezmultioption option_counter=\"2\"><name>Zutaten</name><multioptions><multioption id=\"1\" name=\"Zutaten\" priority=\"1\" default_option_id=\"\"><option id=\"1\" option_id=\"1\" value=\"Käse\" additional_price=\"1.60\"/><option id=\"2\" option_id=\"2\" value=\"Tomaten\" additional_price=\"1.60\"/></multioption></multioptions></ezmultioption>\n','ezmultioption',805,'ger-DE',2,0,'',2),(0,209,138,0,1,'','ezsrrating',806,'ger-DE',2,0,'',1),(0,209,138,0,1,'','ezsrrating',806,'ger-DE',2,0,'',2),(0,210,138,0,NULL,'','ezkeyword',807,'ger-DE',2,0,'',1),(0,210,138,0,NULL,'','ezkeyword',807,'ger-DE',2,0,'',2),(0,211,138,1,1,'','ezcomcomments',808,'ger-DE',2,0,'',1),(0,211,138,1,1,'','ezcomcomments',808,'ger-DE',2,0,'',2),(0,4,140,0,NULL,'Banner','ezstring',814,'ger-DE',3,0,'banner',1),(0,155,140,0,NULL,'','ezstring',815,'ger-DE',3,0,'',1),(0,119,140,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',816,'ger-DE',3,0,'',1),(0,156,140,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',817,'ger-DE',3,0,'',1),(818,158,140,0,1,'','ezboolean',818,'ger-DE',3,1,'',1),(0,291,140,0,NULL,'<?xml version=\"1.0\"?>\n<page>\n <zone_layout>CallForActionLayout</zone_layout>\n <zone id=\"id_8c4533e56ad914248565f81a7b65b792\">\n <zone_identifier>main</zone_identifier>\n </zone>\n</page>\n','ezpage',819,'ger-DE',3,0,'',1),(0,292,140,0,NULL,'','ezkeyword',820,'ger-DE',3,0,'',1),(0,236,142,0,NULL,'banner','ezstring',826,'ger-DE',2,0,'banner',1),(0,237,142,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>banner</paragraph></section>\n','ezxmltext',827,'ger-DE',2,0,'',1),(0,238,142,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"banner.png\" suffix=\"png\" basename=\"banner\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner.png\" original_filename=\"banner.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382622191\"><original attribute_id=\"828\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><alias name=\"reference\" filename=\"banner_reference.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_reference.png\" mime_type=\"image/png\" width=\"600\" height=\"222\" alias_key=\"2605465115\" timestamp=\"1382652618\" is_valid=\"1\"/><alias name=\"small\" filename=\"banner_small.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_small.png\" mime_type=\"image/png\" width=\"100\" height=\"37\" alias_key=\"2343348577\" timestamp=\"1382666286\" is_valid=\"1\"/><alias name=\"medium\" filename=\"banner_medium.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_medium.png\" mime_type=\"image/png\" width=\"200\" height=\"74\" alias_key=\"3736024005\" timestamp=\"1382622385\" is_valid=\"1\"/><alias name=\"listitem\" filename=\"banner_listitem.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_listitem.png\" mime_type=\"image/png\" width=\"130\" height=\"48\" alias_key=\"379714049\" timestamp=\"1382622385\" is_valid=\"1\"/><alias name=\"articleimage\" filename=\"banner_articleimage.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_articleimage.png\" mime_type=\"image/png\" width=\"770\" height=\"286\" alias_key=\"2384827203\" timestamp=\"1382622386\" is_valid=\"1\"/><alias name=\"articlethumbnail\" filename=\"banner_articlethumbnail.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_articlethumbnail.png\" mime_type=\"image/png\" width=\"170\" height=\"63\" alias_key=\"3605056846\" timestamp=\"1382622386\" is_valid=\"1\"/><alias name=\"gallerythumbnail\" filename=\"banner_gallerythumbnail.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_gallerythumbnail.png\" mime_type=\"image/png\" width=\"105\" height=\"39\" alias_key=\"4103440102\" timestamp=\"1382622386\" is_valid=\"1\"/><alias name=\"galleryline\" filename=\"banner_galleryline.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_galleryline.png\" mime_type=\"image/png\" width=\"70\" height=\"26\" alias_key=\"913981729\" timestamp=\"1382622386\" is_valid=\"1\"/><alias name=\"imagelarge\" filename=\"banner_imagelarge.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_imagelarge.png\" mime_type=\"image/png\" width=\"448\" height=\"166\" alias_key=\"2602985738\" timestamp=\"1382622386\" is_valid=\"1\"/><alias name=\"large\" filename=\"banner_large.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_large.png\" mime_type=\"image/png\" width=\"360\" height=\"133\" alias_key=\"3448122496\" timestamp=\"1382652622\" is_valid=\"1\"/><alias name=\"rss\" filename=\"banner_rss.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_rss.png\" mime_type=\"image/png\" width=\"83\" height=\"31\" alias_key=\"3240742506\" timestamp=\"1382622386\" is_valid=\"1\"/><alias name=\"logo\" filename=\"banner_logo.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_logo.png\" mime_type=\"image/png\" width=\"96\" height=\"36\" alias_key=\"2290415655\" timestamp=\"1382622386\" is_valid=\"1\"/><alias name=\"infoboximage\" filename=\"banner_infoboximage.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_infoboximage.png\" mime_type=\"image/png\" width=\"75\" height=\"27\" alias_key=\"2355174995\" timestamp=\"1382622386\" is_valid=\"1\"/><alias name=\"billboard\" filename=\"banner_billboard.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_billboard.png\" mime_type=\"image/png\" width=\"764\" height=\"283\" alias_key=\"3500035376\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"productthumbnail\" filename=\"banner_productthumbnail.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_productthumbnail.png\" mime_type=\"image/png\" width=\"170\" height=\"63\" alias_key=\"1108033634\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"productimage\" filename=\"banner_productimage.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_productimage.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alias_key=\"1857621694\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"mainstory1\" filename=\"banner_mainstory1.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_mainstory1.png\" mime_type=\"image/png\" width=\"468\" height=\"173\" alias_key=\"4189723086\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"mainstory2\" filename=\"banner_mainstory2.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_mainstory2.png\" mime_type=\"image/png\" width=\"439\" height=\"163\" alias_key=\"761504640\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"mainstory3\" filename=\"banner_mainstory3.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_mainstory3.png\" mime_type=\"image/png\" width=\"201\" height=\"74\" alias_key=\"4033665292\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"block2items1\" filename=\"banner_block2items1.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_block2items1.png\" mime_type=\"image/png\" width=\"195\" height=\"72\" alias_key=\"3162376705\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"block2items2\" filename=\"banner_block2items2.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_block2items2.png\" mime_type=\"image/png\" width=\"195\" height=\"72\" alias_key=\"103484950\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"block3items3\" filename=\"banner_block3items3.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_block3items3.png\" mime_type=\"image/png\" width=\"195\" height=\"72\" alias_key=\"622919048\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"blockgallery1\" filename=\"banner_blockgallery1.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_blockgallery1.png\" mime_type=\"image/png\" width=\"126\" height=\"46\" alias_key=\"3313202540\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"campaign\" filename=\"banner_campaign.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_campaign.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alias_key=\"3158711315\" timestamp=\"1382622388\" is_valid=\"1\"/><alias name=\"backgroundimage\" filename=\"banner_backgroundimage.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_backgroundimage.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alias_key=\"1870438127\" timestamp=\"1382622388\" is_valid=\"1\"/><alias name=\"highlighted\" filename=\"banner_highlighted.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_highlighted.png\" mime_type=\"image/png\" width=\"300\" height=\"111\" alias_key=\"3917877274\" timestamp=\"1382622388\" is_valid=\"1\"/><alias name=\"contentgrid\" filename=\"banner_contentgrid.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_contentgrid.png\" mime_type=\"image/png\" width=\"370\" height=\"137\" alias_key=\"4192414807\" timestamp=\"1382622388\" is_valid=\"1\"/><alias name=\"gallery\" filename=\"banner_gallery.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_gallery.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alias_key=\"935385201\" timestamp=\"1382622388\" is_valid=\"1\"/><alias name=\"galleryfull\" filename=\"banner_galleryfull.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_galleryfull.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alias_key=\"2921359933\" timestamp=\"1382622389\" is_valid=\"1\"/><alias name=\"imagefull\" filename=\"banner_imagefull.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_imagefull.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alias_key=\"2826031810\" timestamp=\"1382622389\" is_valid=\"1\"/><alias name=\"multiuploadthumbnail\" filename=\"banner_multiuploadthumbnail.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_multiuploadthumbnail.png\" mime_type=\"image/png\" width=\"100\" height=\"37\" alias_key=\"63312607\" timestamp=\"1382622389\" is_valid=\"1\"/><alias name=\"banner\" filename=\"banner_banner.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner/828-1-ger-DE/banner_banner.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alias_key=\"1102548784\" timestamp=\"1382949105\" is_valid=\"1\"/></ezimage>\n','ezimage',828,'ger-DE',2,0,'',1),(0,239,142,0,NULL,'','ezsrrating',829,'ger-DE',2,0,'',1),(0,240,142,0,NULL,'','ezkeyword',830,'ger-DE',2,0,'',1),(0,236,145,0,NULL,'banner','ezstring',841,'ger-DE',2,0,'banner',1),(0,237,145,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>banner</paragraph></section>\n','ezxmltext',842,'ger-DE',2,0,'',1),(0,238,145,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"banner.png\" suffix=\"png\" basename=\"banner\" dirpath=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE/banner.png\" original_filename=\"banner.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382622191\"><original attribute_id=\"828\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><alias name=\"reference\" filename=\"banner_reference.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE/banner_reference.png\" mime_type=\"image/png\" width=\"600\" height=\"222\" alias_key=\"2605465115\" timestamp=\"1382652618\" is_valid=\"1\"/><alias name=\"small\" filename=\"banner_small.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE/banner_small.png\" mime_type=\"image/png\" width=\"100\" height=\"37\" alias_key=\"2343348577\" timestamp=\"1382666286\" is_valid=\"1\"/><alias name=\"imagelarge\" filename=\"banner_imagelarge.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE/banner_imagelarge.png\" mime_type=\"image/png\" width=\"448\" height=\"166\" alias_key=\"2602985738\" timestamp=\"1382622386\" is_valid=\"1\"/><alias name=\"mainstory1\" filename=\"banner_mainstory1.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE/banner_mainstory1.png\" mime_type=\"image/png\" width=\"468\" height=\"173\" alias_key=\"4189723086\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"mainstory2\" filename=\"banner_mainstory2.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE/banner_mainstory2.png\" mime_type=\"image/png\" width=\"439\" height=\"163\" alias_key=\"761504640\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"mainstory3\" filename=\"banner_mainstory3.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE/banner_mainstory3.png\" mime_type=\"image/png\" width=\"201\" height=\"74\" alias_key=\"4033665292\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"block2items1\" filename=\"banner_block2items1.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE/banner_block2items1.png\" mime_type=\"image/png\" width=\"195\" height=\"72\" alias_key=\"3162376705\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"block2items2\" filename=\"banner_block2items2.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE/banner_block2items2.png\" mime_type=\"image/png\" width=\"195\" height=\"72\" alias_key=\"103484950\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"block3items3\" filename=\"banner_block3items3.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE/banner_block3items3.png\" mime_type=\"image/png\" width=\"195\" height=\"72\" alias_key=\"622919048\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"blockgallery1\" filename=\"banner_blockgallery1.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE/banner_blockgallery1.png\" mime_type=\"image/png\" width=\"126\" height=\"46\" alias_key=\"3313202540\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"campaign\" filename=\"banner_campaign.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE/banner_campaign.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alias_key=\"3158711315\" timestamp=\"1382622388\" is_valid=\"1\"/><alias name=\"backgroundimage\" filename=\"banner_backgroundimage.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE/banner_backgroundimage.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alias_key=\"1870438127\" timestamp=\"1382622388\" is_valid=\"1\"/><alias name=\"highlighted\" filename=\"banner_highlighted.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE/banner_highlighted.png\" mime_type=\"image/png\" width=\"300\" height=\"111\" alias_key=\"3917877274\" timestamp=\"1382622388\" is_valid=\"1\"/><alias name=\"contentgrid\" filename=\"banner_contentgrid.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE/banner_contentgrid.png\" mime_type=\"image/png\" width=\"370\" height=\"137\" alias_key=\"4192414807\" timestamp=\"1382622388\" is_valid=\"1\"/><alias name=\"gallery\" filename=\"banner_gallery.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE/banner_gallery.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alias_key=\"935385201\" timestamp=\"1382622388\" is_valid=\"1\"/><alias name=\"galleryfull\" filename=\"banner_galleryfull.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE/banner_galleryfull.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alias_key=\"2921359933\" timestamp=\"1382622389\" is_valid=\"1\"/><alias name=\"imagefull\" filename=\"banner_imagefull.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE/banner_imagefull.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alias_key=\"2826031810\" timestamp=\"1382622389\" is_valid=\"1\"/><alias name=\"multiuploadthumbnail\" filename=\"banner_multiuploadthumbnail.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE/banner_multiuploadthumbnail.png\" mime_type=\"image/png\" width=\"100\" height=\"37\" alias_key=\"63312607\" timestamp=\"1382622389\" is_valid=\"1\"/><alias name=\"banner\" filename=\"banner_banner.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner2/828-1-ger-DE/banner_banner.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alias_key=\"1102548784\" timestamp=\"1382949105\" is_valid=\"1\"/></ezimage>\n','ezimage',843,'ger-DE',2,0,'',1),(0,239,145,0,NULL,'','ezsrrating',844,'ger-DE',2,0,'',1),(0,240,145,0,NULL,'','ezkeyword',845,'ger-DE',2,0,'',1),(0,236,146,0,NULL,'banner','ezstring',846,'ger-DE',2,0,'banner',1),(0,237,146,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>banner</paragraph></section>\n','ezxmltext',847,'ger-DE',2,0,'',1),(0,238,146,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"banner.png\" suffix=\"png\" basename=\"banner\" dirpath=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE/banner.png\" original_filename=\"banner.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382622191\"><original attribute_id=\"828\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><alias name=\"reference\" filename=\"banner_reference.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE/banner_reference.png\" mime_type=\"image/png\" width=\"600\" height=\"222\" alias_key=\"2605465115\" timestamp=\"1382652618\" is_valid=\"1\"/><alias name=\"small\" filename=\"banner_small.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE/banner_small.png\" mime_type=\"image/png\" width=\"100\" height=\"37\" alias_key=\"2343348577\" timestamp=\"1382666286\" is_valid=\"1\"/><alias name=\"imagelarge\" filename=\"banner_imagelarge.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE/banner_imagelarge.png\" mime_type=\"image/png\" width=\"448\" height=\"166\" alias_key=\"2602985738\" timestamp=\"1382622386\" is_valid=\"1\"/><alias name=\"mainstory1\" filename=\"banner_mainstory1.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE/banner_mainstory1.png\" mime_type=\"image/png\" width=\"468\" height=\"173\" alias_key=\"4189723086\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"mainstory2\" filename=\"banner_mainstory2.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE/banner_mainstory2.png\" mime_type=\"image/png\" width=\"439\" height=\"163\" alias_key=\"761504640\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"mainstory3\" filename=\"banner_mainstory3.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE/banner_mainstory3.png\" mime_type=\"image/png\" width=\"201\" height=\"74\" alias_key=\"4033665292\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"block2items1\" filename=\"banner_block2items1.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE/banner_block2items1.png\" mime_type=\"image/png\" width=\"195\" height=\"72\" alias_key=\"3162376705\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"block2items2\" filename=\"banner_block2items2.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE/banner_block2items2.png\" mime_type=\"image/png\" width=\"195\" height=\"72\" alias_key=\"103484950\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"block3items3\" filename=\"banner_block3items3.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE/banner_block3items3.png\" mime_type=\"image/png\" width=\"195\" height=\"72\" alias_key=\"622919048\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"blockgallery1\" filename=\"banner_blockgallery1.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE/banner_blockgallery1.png\" mime_type=\"image/png\" width=\"126\" height=\"46\" alias_key=\"3313202540\" timestamp=\"1382622387\" is_valid=\"1\"/><alias name=\"campaign\" filename=\"banner_campaign.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE/banner_campaign.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alias_key=\"3158711315\" timestamp=\"1382622388\" is_valid=\"1\"/><alias name=\"backgroundimage\" filename=\"banner_backgroundimage.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE/banner_backgroundimage.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alias_key=\"1870438127\" timestamp=\"1382622388\" is_valid=\"1\"/><alias name=\"highlighted\" filename=\"banner_highlighted.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE/banner_highlighted.png\" mime_type=\"image/png\" width=\"300\" height=\"111\" alias_key=\"3917877274\" timestamp=\"1382622388\" is_valid=\"1\"/><alias name=\"contentgrid\" filename=\"banner_contentgrid.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE/banner_contentgrid.png\" mime_type=\"image/png\" width=\"370\" height=\"137\" alias_key=\"4192414807\" timestamp=\"1382622388\" is_valid=\"1\"/><alias name=\"gallery\" filename=\"banner_gallery.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE/banner_gallery.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alias_key=\"935385201\" timestamp=\"1382622388\" is_valid=\"1\"/><alias name=\"galleryfull\" filename=\"banner_galleryfull.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE/banner_galleryfull.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alias_key=\"2921359933\" timestamp=\"1382622389\" is_valid=\"1\"/><alias name=\"imagefull\" filename=\"banner_imagefull.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE/banner_imagefull.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alias_key=\"2826031810\" timestamp=\"1382622389\" is_valid=\"1\"/><alias name=\"multiuploadthumbnail\" filename=\"banner_multiuploadthumbnail.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE/banner_multiuploadthumbnail.png\" mime_type=\"image/png\" width=\"100\" height=\"37\" alias_key=\"63312607\" timestamp=\"1382622389\" is_valid=\"1\"/><alias name=\"banner\" filename=\"banner_banner.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/banner3/828-1-ger-DE/banner_banner.png\" mime_type=\"image/png\" width=\"735\" height=\"273\" alias_key=\"1102548784\" timestamp=\"1382949106\" is_valid=\"1\"/></ezimage>\n','ezimage',848,'ger-DE',2,0,'',1),(0,239,146,0,NULL,'','ezsrrating',849,'ger-DE',2,0,'',1),(0,240,146,0,NULL,'','ezkeyword',850,'ger-DE',2,0,'',1),(0,301,147,0,NULL,'Pizza L.A.','ezstring',851,'ger-DE',2,0,'pizza l.a.',1),(0,301,147,0,NULL,'Pizza L.A.','ezstring',851,'ger-DE',2,0,'pizza l.a.',2),(0,301,147,0,NULL,'Pizza California','ezstring',851,'ger-DE',2,0,'pizza california',3),(0,302,147,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382076464\"><original attribute_id=\"767\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',852,'ger-DE',2,0,'',1),(0,302,147,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"Pizza-L.A.png\" suffix=\"png\" basename=\"Pizza-L.A\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a2/767-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a2/767-2-ger-DE/Pizza-L.A.png\" original_filename=\"pizza la.png\" mime_type=\"image/png\" width=\"355\" height=\"365\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382602943\"><original attribute_id=\"767\" attribute_version=\"2\" attribute_language=\"ger-DE\"/><alias name=\"reference\" filename=\"Pizza-L.A_reference.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a2/767-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a2/767-2-ger-DE/Pizza-L.A_reference.png\" mime_type=\"image/png\" width=\"355\" height=\"365\" alias_key=\"2605465115\" timestamp=\"1382606833\" is_valid=\"1\"/><alias name=\"small\" filename=\"Pizza-L.A_small.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a2/767-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a2/767-2-ger-DE/Pizza-L.A_small.png\" mime_type=\"image/png\" width=\"97\" height=\"100\" alias_key=\"2343348577\" timestamp=\"1382602948\" is_valid=\"1\"/><alias name=\"large\" filename=\"Pizza-L.A_large.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a2/767-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a2/767-2-ger-DE/Pizza-L.A_large.png\" mime_type=\"image/png\" width=\"291\" height=\"300\" alias_key=\"1592566908\" timestamp=\"1382606833\" is_valid=\"1\"/></ezimage>\n','ezimage',852,'ger-DE',2,0,'',2),(0,302,147,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"Pizza-California.png\" suffix=\"png\" basename=\"Pizza-California\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-california/852-3-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-california/852-3-ger-DE/Pizza-California.png\" original_filename=\"pizza la.png\" mime_type=\"image/png\" width=\"355\" height=\"365\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382751407\"><original attribute_id=\"852\" attribute_version=\"3\" attribute_language=\"ger-DE\"/><alias name=\"reference\" filename=\"Pizza-California_reference.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-california/852-3-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-california/852-3-ger-DE/Pizza-California_reference.png\" mime_type=\"image/png\" width=\"355\" height=\"365\" alias_key=\"2605465115\" timestamp=\"1382751410\" is_valid=\"1\"/><alias name=\"small\" filename=\"Pizza-California_small.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-california/852-3-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-california/852-3-ger-DE/Pizza-California_small.png\" mime_type=\"image/png\" width=\"97\" height=\"100\" alias_key=\"2343348577\" timestamp=\"1382751410\" is_valid=\"1\"/><alias name=\"product_view\" filename=\"Pizza-California_product_view.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-california/852-3-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-california/852-3-ger-DE/Pizza-California_product_view.png\" mime_type=\"image/png\" width=\"355\" height=\"365\" alias_key=\"1177252184\" timestamp=\"1382755154\" is_valid=\"1\"/></ezimage>\n','ezimage',852,'ger-DE',2,0,'',3),(0,303,147,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>frischen Tomaten, Mozzarella, Basilikum</paragraph></section>\n','ezxmltext',853,'ger-DE',2,0,'',1),(0,303,147,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>frischen Tomaten, Mozzarella, Basilikum</paragraph></section>\n','ezxmltext',853,'ger-DE',2,0,'',2),(0,303,147,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>Creme Fraiche, Schinken, Broccoli,Knoblauch</paragraph></section>\n','ezxmltext',853,'ger-DE',2,0,'',3),(0,301,148,0,NULL,'Pizza L.A.','ezstring',854,'ger-DE',2,0,'pizza l.a.',1),(0,301,148,0,NULL,'Pizza L.A.','ezstring',854,'ger-DE',2,0,'pizza l.a.',2),(0,302,148,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382076464\"><original attribute_id=\"767\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',855,'ger-DE',2,0,'',1),(0,302,148,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"Pizza-L.A.png\" suffix=\"png\" basename=\"Pizza-L.A\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a3/767-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a3/767-2-ger-DE/Pizza-L.A.png\" original_filename=\"pizza la.png\" mime_type=\"image/png\" width=\"355\" height=\"365\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382602943\"><original attribute_id=\"767\" attribute_version=\"2\" attribute_language=\"ger-DE\"/><alias name=\"reference\" filename=\"Pizza-L.A_reference.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a3/767-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a3/767-2-ger-DE/Pizza-L.A_reference.png\" mime_type=\"image/png\" width=\"355\" height=\"365\" alias_key=\"2605465115\" timestamp=\"1382606833\" is_valid=\"1\"/><alias name=\"small\" filename=\"Pizza-L.A_small.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a3/767-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a3/767-2-ger-DE/Pizza-L.A_small.png\" mime_type=\"image/png\" width=\"97\" height=\"100\" alias_key=\"2343348577\" timestamp=\"1382602948\" is_valid=\"1\"/><alias name=\"large\" filename=\"Pizza-L.A_large.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a3/767-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a3/767-2-ger-DE/Pizza-L.A_large.png\" mime_type=\"image/png\" width=\"291\" height=\"300\" alias_key=\"1592566908\" timestamp=\"1382606833\" is_valid=\"1\"/><alias name=\"product_view\" filename=\"Pizza-L.A_product_view.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a3/767-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a3/767-2-ger-DE/Pizza-L.A_product_view.png\" mime_type=\"image/png\" width=\"355\" height=\"365\" alias_key=\"1177252184\" timestamp=\"1382755154\" is_valid=\"1\"/></ezimage>\n','ezimage',855,'ger-DE',2,0,'',2),(0,303,148,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>frischen Tomaten, Mozzarella, Basilikum</paragraph></section>\n','ezxmltext',856,'ger-DE',2,0,'',1),(0,303,148,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>frischen Tomaten, Mozzarella, Basilikum</paragraph></section>\n','ezxmltext',856,'ger-DE',2,0,'',2),(0,301,149,0,NULL,'Pizza L.A.','ezstring',857,'ger-DE',2,0,'pizza l.a.',1),(0,301,149,0,NULL,'Pizza L.A.','ezstring',857,'ger-DE',2,0,'pizza l.a.',2),(0,302,149,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382076464\"><original attribute_id=\"767\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',858,'ger-DE',2,0,'',1),(0,302,149,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"Pizza-L.A.png\" suffix=\"png\" basename=\"Pizza-L.A\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a4/767-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a4/767-2-ger-DE/Pizza-L.A.png\" original_filename=\"pizza la.png\" mime_type=\"image/png\" width=\"355\" height=\"365\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382602943\"><original attribute_id=\"767\" attribute_version=\"2\" attribute_language=\"ger-DE\"/><alias name=\"reference\" filename=\"Pizza-L.A_reference.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a4/767-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a4/767-2-ger-DE/Pizza-L.A_reference.png\" mime_type=\"image/png\" width=\"355\" height=\"365\" alias_key=\"2605465115\" timestamp=\"1382606833\" is_valid=\"1\"/><alias name=\"small\" filename=\"Pizza-L.A_small.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a4/767-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a4/767-2-ger-DE/Pizza-L.A_small.png\" mime_type=\"image/png\" width=\"97\" height=\"100\" alias_key=\"2343348577\" timestamp=\"1382602948\" is_valid=\"1\"/><alias name=\"large\" filename=\"Pizza-L.A_large.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a4/767-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a4/767-2-ger-DE/Pizza-L.A_large.png\" mime_type=\"image/png\" width=\"291\" height=\"300\" alias_key=\"1592566908\" timestamp=\"1382606833\" is_valid=\"1\"/><alias name=\"product_view\" filename=\"Pizza-L.A_product_view.png\" suffix=\"png\" dirpath=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a4/767-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/pizza/pizza-l.a4/767-2-ger-DE/Pizza-L.A_product_view.png\" mime_type=\"image/png\" width=\"355\" height=\"365\" alias_key=\"1177252184\" timestamp=\"1382755154\" is_valid=\"1\"/></ezimage>\n','ezimage',858,'ger-DE',2,0,'',2),(0,303,149,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>frischen Tomaten, Mozzarella, Basilikum</paragraph></section>\n','ezxmltext',859,'ger-DE',2,0,'',1),(0,303,149,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>frischen Tomaten, Mozzarella, Basilikum</paragraph></section>\n','ezxmltext',859,'ger-DE',2,0,'',2),(0,236,150,0,NULL,'Somer','ezstring',860,'ger-DE',2,0,'somer',1),(0,237,150,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',861,'ger-DE',2,0,'',1),(0,238,150,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"Somer.jpg\" suffix=\"jpg\" basename=\"Somer\" dirpath=\"var/ezdemo_site/storage/images/banner/somer/862-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/somer/862-1-ger-DE/Somer.jpg\" original_filename=\"n00009053-b.jpg\" mime_type=\"image/jpeg\" width=\"500\" height=\"356\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382751527\"><original attribute_id=\"862\" attribute_version=\"1\" attribute_language=\"ger-DE\"/><information Height=\"356\" Width=\"500\" IsColor=\"1\"/><alias name=\"reference\" filename=\"Somer_reference.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/banner/somer/862-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/somer/862-1-ger-DE/Somer_reference.jpg\" mime_type=\"image/jpeg\" width=\"500\" height=\"356\" alias_key=\"2605465115\" timestamp=\"1382751530\" is_valid=\"1\"/><alias name=\"small\" filename=\"Somer_small.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/banner/somer/862-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/somer/862-1-ger-DE/Somer_small.jpg\" mime_type=\"image/jpeg\" width=\"100\" height=\"71\" alias_key=\"2343348577\" timestamp=\"1382751530\" is_valid=\"1\"/><alias name=\"banner\" filename=\"Somer_banner.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/banner/somer/862-1-ger-DE\" url=\"var/ezdemo_site/storage/images/banner/somer/862-1-ger-DE/Somer_banner.jpg\" mime_type=\"image/jpeg\" width=\"735\" height=\"273\" alias_key=\"1102548784\" timestamp=\"1382949106\" is_valid=\"1\"/></ezimage>\n','ezimage',862,'ger-DE',2,0,'',1),(0,239,150,0,NULL,'','ezsrrating',863,'ger-DE',2,0,'',1),(0,240,150,0,NULL,'','ezkeyword',864,'ger-DE',2,0,'',1),(0,305,122,NULL,NULL,NULL,'ezimage',865,'ger-DE',2,0,'',1),(0,305,122,NULL,NULL,NULL,'ezimage',865,'ger-DE',2,0,'',2),(0,305,122,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382948561\"/>\n','ezimage',865,'ger-DE',2,0,'',3),(0,305,123,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382948561\"/>\n','ezimage',868,'ger-DE',2,0,'',1),(0,305,124,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382948561\"/>\n','ezimage',869,'ger-DE',2,0,'',1),(0,305,125,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382948561\"/>\n','ezimage',870,'ger-DE',2,0,'',1),(0,305,126,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382948561\"/>\n','ezimage',871,'ger-DE',2,0,'',1),(0,305,126,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"Burger.jpg\" suffix=\"jpg\" basename=\"Burger\" dirpath=\"var/ezdemo_site/storage/images/foods/burger/871-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/burger/871-2-ger-DE/Burger.jpg\" original_filename=\"Fotolia_49852886_L.jpg\" mime_type=\"image/jpeg\" width=\"2221\" height=\"1666\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382948601\"><original attribute_id=\"871\" attribute_version=\"2\" attribute_language=\"ger-DE\"/><information Height=\"1666\" Width=\"2221\" IsColor=\"1\" ByteOrderMotorola=\"0\" ApertureFNumber=\"f/22.0\" UserComment=\" \" UserCommentEncoding=\"ASCII\" Thumbnail.FileType=\"2\" Thumbnail.MimeType=\"image/jpeg\"><array name=\"ifd0\"><item key=\"ImageDescription\" base64=\"1\">T0xZTVBVUyBESUdJVEFMIENBTUVSQSAgICAgICAgIA==</item><item key=\"Make\" base64=\"1\">T0xZTVBVUyBJTUFHSU5HIENPUlAu</item><item key=\"Model\" base64=\"1\">RS01MTA=</item><item key=\"Orientation\" base64=\"1\">MQ==</item><item key=\"XResolution\" base64=\"1\">MzAwLzE=</item><item key=\"YResolution\" base64=\"1\">MzAwLzE=</item><item key=\"ResolutionUnit\" base64=\"1\">Mg==</item><item key=\"Software\" base64=\"1\">QWRvYmUgUGhvdG9zaG9wIENTMyBXaW5kb3dz</item><item key=\"DateTime\" base64=\"1\">MjAxMzowMjoyNSAyMTo0NzoyOA==</item><item key=\"YCbCrPositioning\" base64=\"1\">MQ==</item><item key=\"Exif_IFD_Pointer\" base64=\"1\">ODEw</item><item key=\"UndefinedTag:0xC4A5\" base64=\"1\">UHJpbnRJTQAwMzAwAAAlAAEAFAAUAAIAAQAAAAMA8AAAAAcAAAAAAAgAAAAAAAkAAAAAAAoAAAAAAAsAOAEAAAwAAAAAAA0AAAAAAA4AUAEAABAAYAEAACAAtAEAAAABAwAAAAEB/wAAAAIBgwAAAAMBgwAAAAQBgAAAAAUBgwAAAAYBgwAAAAcBgICAABABgAAAAAACAAAAAAcCAAAAAAgCAAAAAAkCAAAAAAoCAAAAAAsC+AEAAA0CAAAAACAC1gEAAAADAwAAAAED/wAAAAIDgwAAAAMDgwAAAAYDgwAAABADgAAAAAAEAAAAAAAACREAABAnAAALDwAAECcAAJcFAAAQJwAAsAgAABAnAAABHAAAECcAAF4CAAAQJwAAiwAAABAnAADLAwAAECcAAOUbAAAQJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUFBQAAAEBAgIDAwP//AABAQICAwMD//wAAQECAgMDA//8FBQUAAABAQICAwMD//wAAQECAgMDA//8AAEBAgIDAwP//AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA</item></array><array name=\"exif\"><item key=\"ExposureTime\" base64=\"1\">My81</item><item key=\"FNumber\" base64=\"1\">MjIvMQ==</item><item key=\"ExposureProgram\" base64=\"1\">MQ==</item><item key=\"ISOSpeedRatings\" base64=\"1\">MTAw</item><item key=\"ExifVersion\" base64=\"1\">MDIyMQ==</item><item key=\"DateTimeOriginal\" base64=\"1\">MjAxMzowMToxMSAxOTozNjo0Ng==</item><item key=\"DateTimeDigitized\" base64=\"1\">MjAxMzowMToxMSAxOTozNjo0Ng==</item><item key=\"ComponentsConfiguration\" base64=\"1\">AQIDAA==</item><item key=\"ExposureBiasValue\" base64=\"1\">MC8x</item><item key=\"MaxApertureValue\" base64=\"1\">Mi8x</item><item key=\"MeteringMode\" base64=\"1\">NQ==</item><item key=\"LightSource\" base64=\"1\">MjU1</item><item key=\"Flash\" base64=\"1\">OA==</item><item key=\"FocalLength\" base64=\"1\">NTAvMQ==</item><item key=\"UserComment\" base64=\"1\">QVNDSUkAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=</item><item key=\"FlashPixVersion\" base64=\"1\">MDEwMA==</item><item key=\"ColorSpace\" base64=\"1\">MQ==</item><item key=\"ExifImageWidth\" base64=\"1\">MzY0OA==</item><item key=\"ExifImageLength\" base64=\"1\">MjczNg==</item><item key=\"FileSource\" base64=\"1\">Aw==</item><item key=\"CustomRendered\" base64=\"1\">MA==</item><item key=\"ExposureMode\" base64=\"1\">MQ==</item><item key=\"WhiteBalance\" base64=\"1\">MQ==</item><item key=\"DigitalZoomRatio\" base64=\"1\">MS8x</item><item key=\"SceneCaptureType\" base64=\"1\">MA==</item><item key=\"GainControl\" base64=\"1\">MA==</item><item key=\"Contrast\" base64=\"1\">MA==</item><item key=\"Saturation\" base64=\"1\">Mg==</item><item key=\"Sharpness\" base64=\"1\">Mg==</item></array></information><alias name=\"reference\" filename=\"Burger_reference.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/foods/burger/871-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/burger/871-2-ger-DE/Burger_reference.jpg\" mime_type=\"image/jpeg\" width=\"600\" height=\"450\" alias_key=\"2605465115\" timestamp=\"1382949103\" is_valid=\"1\"/><alias name=\"small\" filename=\"Burger_small.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/foods/burger/871-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/burger/871-2-ger-DE/Burger_small.jpg\" mime_type=\"image/jpeg\" width=\"100\" height=\"75\" alias_key=\"2343348577\" timestamp=\"1382948613\" is_valid=\"1\"/><alias name=\"large\" filename=\"Burger_large.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/foods/burger/871-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/burger/871-2-ger-DE/Burger_large.jpg\" mime_type=\"image/jpeg\" width=\"300\" height=\"225\" alias_key=\"1592566908\" timestamp=\"1382949104\" is_valid=\"1\"/><alias name=\"section_view\" filename=\"Burger_section_view.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/foods/burger/871-2-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/burger/871-2-ger-DE/Burger_section_view.jpg\" mime_type=\"image/jpeg\" width=\"940\" height=\"705\" alias_key=\"3660755065\" timestamp=\"1382950287\" is_valid=\"1\"/></ezimage>\n','ezimage',871,'ger-DE',2,0,'',2),(0,305,126,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"1\" filename=\"Burger.jpg\" suffix=\"jpg\" basename=\"Burger\" dirpath=\"var/ezdemo_site/storage/images/foods/burger/871-3-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/burger/871-3-ger-DE/Burger.jpg\" original_filename=\"burger.jpg\" mime_type=\"image/jpeg\" width=\"2221\" height=\"857\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382950633\"><original attribute_id=\"871\" attribute_version=\"3\" attribute_language=\"ger-DE\"/><information Height=\"857\" Width=\"2221\" IsColor=\"1\" ByteOrderMotorola=\"1\" ApertureFNumber=\"f/22.0\" Copyright=\"ExQuisine - Fotolia\"><array name=\"ifd0\"><item key=\"ImageDescription\" base64=\"1\">T0xZTVBVUyBESUdJVEFMIENBTUVSQSAgICAgICAgIA==</item><item key=\"Make\" base64=\"1\">T0xZTVBVUyBJTUFHSU5HIENPUlAu</item><item key=\"Model\" base64=\"1\">RS01MTA=</item><item key=\"Orientation\" base64=\"1\">MQ==</item><item key=\"Software\" base64=\"1\">QWRvYmUgUGhvdG9zaG9wIENTMyBXaW5kb3dz</item><item key=\"DateTime\" base64=\"1\">MjAxMzowMjoyNSAyMTo0NzoyOA==</item><item key=\"YCbCrPositioning\" base64=\"1\">MQ==</item><item key=\"Copyright\" base64=\"1\">RXhRdWlzaW5lIC0gRm90b2xpYQ==</item><item key=\"Exif_IFD_Pointer\" base64=\"1\">MjM4Mg==</item><item key=\"Title\" base64=\"1\">TwBMAFkATQBQAFUAUwAgAEQASQBHAEkAVABBAEwAIABDAEEATQBFAFIAQQAgACAAIAAgACAAIAAgACAAIAAAAA==</item><item key=\"Comments\" base64=\"1\">IAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAAAA=</item><item key=\"Keywords\" base64=\"1\">YwBoAGUAZQBzAGUAYgB1AHIAZwBlAHIAOwBlAHMAcwBlAG4AOwBrAGUAdABjAGgAdQBwADsAYgBsAGEAdAB0AHMAYQBsAGEAdAA7AGIAcgD2AHQAYwBoAGUAbgA7AGIAdQByAGcAZQByADsAZgBhAHMAdAAgAGYAbwBvAGQAOwBzAGEAbABhAHQAOwBzAGEAbgBkAHcAaQBjAGgAOwB0AG8AbQBhAHQAZQA7AGgAYQBtAGIAdQByAGcAZQByADsAZwBlAGcAZQByAGkAbABsAHQAOwBzAGUAcwBhAG0AOwBpAG0AYgBpAHMAcwA7AHcAZQBpAHMAcwBiAHIAbwB0ADsAcwBlAHMAYQBtAGIAcgD2AHQAYwBoAGUAbgA7AHQAbwBtAGEAdABlAG4AOwBnAHIAaQBsAGwAOwBnAHIAaQBsAGwAZQBuADsAaQBzAG8AbABpAGUAcgB0ADsAegB3AGkAZQBiAGUAbABuADsAZgBsAGUAaQBzAGMAaAA7AGcAZQBtAPwAcwBlADsAaABhAGMAawBmAGwAZQBpAHMAYwBoADsAaABvAGwAegA7AHAAbwBtAG0AZQBzADsAZgByAGkAdABlAHMAOwBoAGkAbgB0AGUAcgBnAHIAdQBuAGQAOwBrAOQAcwBlADsAcwBjAGgAZQBpAGIAZQBuAGsA5ABzAGUAOwB6AHcAaQBlAGIAZQBsAAAA</item><item key=\"Subject\" base64=\"1\">TwBMAFkATQBQAFUAUwAgAEQASQBHAEkAVABBAEwAIABDAEEATQBFAFIAQQAgACAAIAAgACAAIAAgACAAIAAAAA==</item><item key=\"UndefinedTag:0xC4A5\" base64=\"1\">UHJpbnRJTQAwMzAwAAAlAAEAFAAUAAIAAQAAAAMA8AAAAAcAAAAAAAgAAAAAAAkAAAAAAAoAAAAAAAsAOAEAAAwAAAAAAA0AAAAAAA4AUAEAABAAYAEAACAAtAEAAAABAwAAAAEB/wAAAAIBgwAAAAMBgwAAAAQBgAAAAAUBgwAAAAYBgwAAAAcBgICAABABgAAAAAACAAAAAAcCAAAAAAgCAAAAAAkCAAAAAAoCAAAAAAsC+AEAAA0CAAAAACAC1gEAAAADAwAAAAED/wAAAAIDgwAAAAMDgwAAAAYDgwAAABADgAAAAAAEAAAAAAAACREAABAnAAALDwAAECcAAJcFAAAQJwAAsAgAABAnAAABHAAAECcAAF4CAAAQJwAAiwAAABAnAADLAwAAECcAAOUbAAAQJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUFBQAAAEBAgIDAwP//AABAQICAwMD//wAAQECAgMDA//8FBQUAAABAQICAwMD//wAAQECAgMDA//8AAEBAgIDAwP//AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA</item><item key=\"UndefinedTag:0xEA1C\" base64=\"1\">HOoAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=</item></array><array name=\"exif\"><item key=\"ExposureTime\" base64=\"1\">My81</item><item key=\"FNumber\" base64=\"1\">MjIvMQ==</item><item key=\"ExposureProgram\" base64=\"1\">MQ==</item><item key=\"ISOSpeedRatings\" base64=\"1\">MTAw</item><item key=\"ExifVersion\" base64=\"1\">MDIyMQ==</item><item key=\"DateTimeOriginal\" base64=\"1\">MjAxMzowMToxMSAxOTozNjo0Ng==</item><item key=\"DateTimeDigitized\" base64=\"1\">MjAxMzowMToxMSAxOTozNjo0Ng==</item><item key=\"ComponentsConfiguration\" base64=\"1\">AQIDAA==</item><item key=\"ExposureBiasValue\" base64=\"1\">MC8x</item><item key=\"MaxApertureValue\" base64=\"1\">Mi8x</item><item key=\"MeteringMode\" base64=\"1\">NQ==</item><item key=\"LightSource\" base64=\"1\">MjU1</item><item key=\"Flash\" base64=\"1\">OA==</item><item key=\"FocalLength\" base64=\"1\">NTAvMQ==</item><item key=\"SubSecTimeOriginal\" base64=\"1\">MDA=</item><item key=\"SubSecTimeDigitized\" base64=\"1\">MDA=</item><item key=\"FlashPixVersion\" base64=\"1\">MDEwMA==</item><item key=\"ColorSpace\" base64=\"1\">MQ==</item><item key=\"ExifImageWidth\" base64=\"1\">MzY0OA==</item><item key=\"ExifImageLength\" base64=\"1\">MjczNg==</item><item key=\"FileSource\" base64=\"1\">Aw==</item><item key=\"CustomRendered\" base64=\"1\">MA==</item><item key=\"ExposureMode\" base64=\"1\">MQ==</item><item key=\"WhiteBalance\" base64=\"1\">MQ==</item><item key=\"DigitalZoomRatio\" base64=\"1\">MS8x</item><item key=\"SceneCaptureType\" base64=\"1\">MA==</item><item key=\"GainControl\" base64=\"1\">MA==</item><item key=\"Contrast\" base64=\"1\">MA==</item><item key=\"Saturation\" base64=\"1\">Mg==</item><item key=\"Sharpness\" base64=\"1\">Mg==</item><item key=\"UndefinedTag:0xEA1C\" base64=\"1\">HOoAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=</item></array></information><alias name=\"section_view\" filename=\"Burger_section_view.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/foods/burger/871-3-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/burger/871-3-ger-DE/Burger_section_view.jpg\" mime_type=\"image/jpeg\" width=\"940\" height=\"362\" alias_key=\"3660755065\" timestamp=\"1382950636\" is_valid=\"1\"/><alias name=\"reference\" filename=\"Burger_reference.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/foods/burger/871-3-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/burger/871-3-ger-DE/Burger_reference.jpg\" mime_type=\"image/jpeg\" width=\"600\" height=\"231\" alias_key=\"2605465115\" timestamp=\"1382950648\" is_valid=\"1\"/><alias name=\"small\" filename=\"Burger_small.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/foods/burger/871-3-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/burger/871-3-ger-DE/Burger_small.jpg\" mime_type=\"image/jpeg\" width=\"100\" height=\"38\" alias_key=\"2343348577\" timestamp=\"1382950648\" is_valid=\"1\"/><alias name=\"large\" filename=\"Burger_large.jpg\" suffix=\"jpg\" dirpath=\"var/ezdemo_site/storage/images/foods/burger/871-3-ger-DE\" url=\"var/ezdemo_site/storage/images/foods/burger/871-3-ger-DE/Burger_large.jpg\" mime_type=\"image/jpeg\" width=\"300\" height=\"115\" alias_key=\"1592566908\" timestamp=\"1382950660\" is_valid=\"1\"/></ezimage>\n','ezimage',871,'ger-DE',2,0,'',3),(0,305,127,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382948561\"/>\n','ezimage',872,'ger-DE',2,0,'',1),(0,305,128,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382948561\"/>\n','ezimage',873,'ger-DE',2,0,'',1),(0,305,129,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382948562\"/>\n','ezimage',874,'ger-DE',2,0,'',1),(0,305,130,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382948562\"/>\n','ezimage',875,'ger-DE',2,0,'',1),(0,305,131,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382948562\"/>\n','ezimage',876,'ger-DE',2,0,'',1),(0,301,151,0,NULL,'Hamburger','ezstring',880,'ger-DE',2,0,'hamburger',1),(0,301,151,0,NULL,'Hamburger','ezstring',880,'ger-DE',2,0,'hamburger',2),(0,302,151,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382950698\"><original attribute_id=\"881\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',881,'ger-DE',2,0,'',1),(0,302,151,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382950698\"><original attribute_id=\"881\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',881,'ger-DE',2,0,'',2),(0,303,151,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',882,'ger-DE',2,0,'',1),(0,303,151,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"><paragraph>Salat, Gurken, Zwiebeln, Tomaten</paragraph></section>\n','ezxmltext',882,'ger-DE',2,0,'',2),(0,201,152,0,NULL,'Hamburger','ezstring',883,'ger-DE',2,0,'hamburger',1),(0,201,152,0,NULL,'Hamburger','ezstring',883,'ger-DE',2,0,'hamburger',2),(0,202,152,0,NULL,'501','ezstring',884,'ger-DE',2,0,'501',1),(0,202,152,0,NULL,'501','ezstring',884,'ger-DE',2,0,'501',2),(0,304,152,0,NULL,'Hamburger','ezstring',885,'ger-DE',2,0,'hamburger',1),(0,304,152,0,NULL,'Hamburger','ezstring',885,'ger-DE',2,0,'hamburger',2),(0,203,152,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',886,'ger-DE',2,0,'',1),(0,203,152,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',886,'ger-DE',2,0,'',2),(0,204,152,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',887,'ger-DE',2,0,'',1),(0,204,152,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',887,'ger-DE',2,0,'',2),(0,205,152,0,NULL,'1,1','ezprice',888,'ger-DE',2,0,'',1),(0,205,152,5,NULL,'1,1','ezprice',888,'ger-DE',2,500,'',2),(0,206,152,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382950874\"><original attribute_id=\"889\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',889,'ger-DE',2,0,'',1),(0,206,152,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"1\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382950874\"><original attribute_id=\"889\" attribute_version=\"1\" attribute_language=\"ger-DE\"/></ezimage>\n','ezimage',889,'ger-DE',2,0,'',2),(0,207,152,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',890,'ger-DE',2,0,'',1),(0,207,152,0,1045487555,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<section xmlns:image=\"http://ez.no/namespaces/ezpublish3/image/\" xmlns:xhtml=\"http://ez.no/namespaces/ezpublish3/xhtml/\" xmlns:custom=\"http://ez.no/namespaces/ezpublish3/custom/\"/>\n','ezxmltext',890,'ger-DE',2,0,'',2),(0,208,152,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezmultioption option_counter=\"0\"><name></name><multioptions/></ezmultioption>\n','ezmultioption',891,'ger-DE',2,0,'',1),(0,208,152,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezmultioption option_counter=\"0\"><name></name><multioptions/></ezmultioption>\n','ezmultioption',891,'ger-DE',2,0,'',2),(0,209,152,0,NULL,'','ezsrrating',892,'ger-DE',2,0,'',1),(0,209,152,0,NULL,'','ezsrrating',892,'ger-DE',2,0,'',2),(0,210,152,0,NULL,'','ezkeyword',893,'ger-DE',2,0,'',1),(0,210,152,0,NULL,'','ezkeyword',893,'ger-DE',2,0,'',2),(0,211,152,1,1,'','ezcomcomments',894,'ger-DE',2,0,'',1),(0,211,152,1,1,'','ezcomcomments',894,'ger-DE',2,0,'',2),(0,8,153,0,NULL,'','ezstring',895,'ger-DE',2,0,'',1),(0,9,153,0,NULL,'','ezstring',896,'ger-DE',2,0,'',1),(0,12,153,0,NULL,'','ezuser',897,'ger-DE',2,0,'',1),(0,179,153,0,NULL,'','eztext',898,'ger-DE',2,0,'',1),(0,180,153,0,NULL,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ezimage serial_number=\"\" is_valid=\"\" filename=\"\" suffix=\"\" basename=\"\" dirpath=\"\" url=\"\" original_filename=\"\" mime_type=\"\" width=\"\" height=\"\" alternative_text=\"\" alias_key=\"1293033771\" timestamp=\"1382961337\"/>\n','ezimage',899,'ger-DE',2,0,'',1);
/*!40000 ALTER TABLE `ezcontentobject_attribute` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcontentobject_link`
--
DROP TABLE IF EXISTS `ezcontentobject_link`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcontentobject_link` (
`contentclassattribute_id` int(11) NOT NULL DEFAULT '0',
`from_contentobject_id` int(11) NOT NULL DEFAULT '0',
`from_contentobject_version` int(11) NOT NULL DEFAULT '0',
`id` int(11) NOT NULL AUTO_INCREMENT,
`op_code` int(11) NOT NULL DEFAULT '0',
`relation_type` int(11) NOT NULL DEFAULT '1',
`to_contentobject_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `ezco_link_from` (`from_contentobject_id`,`from_contentobject_version`,`contentclassattribute_id`),
KEY `ezco_link_to_co_id` (`to_contentobject_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ezcontentobject_link`
--
LOCK TABLES `ezcontentobject_link` WRITE;
/*!40000 ALTER TABLE `ezcontentobject_link` DISABLE KEYS */;
INSERT INTO `ezcontentobject_link` VALUES (0,69,1,1,0,2,65),(0,69,1,2,0,2,66),(0,69,1,3,0,2,67),(0,69,1,4,0,2,68),(0,98,1,5,0,2,71);
/*!40000 ALTER TABLE `ezcontentobject_link` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ezcontentobject_name`
--
DROP TABLE IF EXISTS `ezcontentobject_name`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezcontentobject_name` (
`content_translation` varchar(20) NOT NULL DEFAULT '',
`content_version` int(11) NOT NULL DEFAULT '0',
`contentobject_id` int(11) NOT NULL DEFAULT '0',
`language_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) DEFAULT NULL,