-
Notifications
You must be signed in to change notification settings - Fork 2
/
insert.sql
12113 lines (12069 loc) · 628 KB
/
insert.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
INSERT INTO `lang`(`id`,`title`,`code`,`locale`,`url`,`date_format`,`time_format`,`datetime_format`,`decimal_separator`,`thousands_separator`,`decimals`,`active`,`visible`,`by_default`,`created_at`,`updated_at`)VALUES
(1, 'Français', 'fr', 'fr_FR', '', 'd/m/Y', 'H:i:s', 'd/m/Y H:i:s', ',', ' ', '2', '1', '1', '0', NOW(), NOW()),
(2, 'English', 'en', 'en_US', '', 'm-d-Y', 'h:i:s', 'm-d-Y h:i:s', '.', ' ', '2', '1', '1', '1', NOW(), NOW()),
(3, 'Castellano', 'es', 'es_ES', '', 'm-d-Y', 'h:i:s', 'm-d-Y h:i:s', ',', '.', '2', '1', '1', '0', NOW(), NOW()),
(4, 'Italiano', 'it', 'it_IT', '', 'd/m/Y', 'H:i:s', 'd/m/y H:i:s', ',', ' ', '2', '1', '1', '0', NOW(), NOW()),
(5, 'Russian', 'ru', 'ru_RU', '', 'j.n.Y', 'H:i:s', 'j.n.Y H:i:s', ',', ' ', '2', '0', '0', '0', NOW(), NOW()),
(6, 'Czech', 'cs', 'cs_CZ', '', 'j.n.Y', 'H:i:s', 'j.n.Y H:i:s', ',', ' ', '2', '0', '0', '0', NOW(), NOW()),
(7, 'Deutsch', 'de', 'de_DE', '', 'd-m-Y', 'H:i:s', 'd-m-Y H:i:s', ',', '.', '2', '0', '0', '0', NOW(), NOW());
INSERT INTO `config` (`id`, `name`, `value`, `secured`, `hidden`, `created_at`, `updated_at`) VALUES
(1, 'check-available-stock', '1', 0, 0, NOW(), NOW()),
(2, 'active-front-template', 'default', 0, 0, NOW(), NOW()),
(3, 'active-admin-template', 'default', 0, 0, NOW(), NOW()),
(4, 'active-pdf-template', 'default', 0, 0, NOW(), NOW()),
(5, 'active-mail-template', 'default', 0, 0, NOW(), NOW()),
(6, 'rewriting_enable', '1', 0, 0, NOW(), NOW()),
(7, 'imagine_graphic_driver', 'gd', 0, 0, NOW(), NOW()),
(8, 'default_images_quality_percent', '90', 0, 0, NOW(), NOW()),
(9, 'original_image_delivery_mode', 'symlink', 0, 0, NOW(), NOW()),
(10, 'original_document_delivery_mode', 'symlink', 0, 0, NOW(), NOW()),
(11, 'images_library_path', 'local/media/images', 0, 0, NOW(), NOW()),
(12, 'documents_library_path', 'local/media/documents', 0, 0, NOW(), NOW()),
(13, 'image_cache_dir_from_web_root', 'cache/images', 0, 0, NOW(), NOW()),
(14, 'document_cache_dir_from_web_root', 'cache/documents', 0, 0, NOW(), NOW()),
(15, 'page_not_found_view', '404.html', 0, 0, NOW(), NOW()),
(16, 'obsolete_rewriten_url_view', 'obsolete-rewritten-url', 0, 0, NOW(), NOW()),
(17, 'use_tax_free_amounts', 0, 0, 0, NOW(), NOW()),
(18, 'process_assets', '0', 0, 0, NOW(), NOW()),
(19, 'thelia_admin_remember_me_cookie_name', 'tarmcn', 0, 0, NOW(), NOW()),
(20, 'thelia_admin_remember_me_cookie_expiration', 2592000, 0, 0, NOW(), NOW()),
(21, 'thelia_customer_remember_me_cookie_name', 'tcrmcn', 0, 0, NOW(), NOW()),
(22, 'thelia_customer_remember_me_cookie_expiration', 31536000, 0, 0, NOW(), NOW()),
(23, 'url_site','', 0, 0, NOW(), NOW()),
(24, 'pdf_invoice_file', 'invoice', 0, 0, NOW(), NOW()),
(25, 'pdf_delivery_file', 'delivery', 0, 0, NOW(), NOW()),
(26, 'unknown-flag-path','assets/img/flags/unknown.png', 0, 0, NOW(), NOW()),
(27, 'html_output_trim_level','1', 0, 0, NOW(), NOW()),
(28, 'default_available_stock', '100', 0, 0, NOW(), NOW()),
(29, 'information_folder_id', '', 0, 0, NOW(), NOW()),
(30, 'terms_conditions_content_id', '', 0, 0, NOW(), NOW()),
(31, 'allow_negative_stock', '0', 0, 0, NOW(), NOW()),
(32, 'cart.use_persistent_cookie', '1', 0, 0, NOW(), NOW()),
(33, 'cart.cookie_name', 'thelia_cart', 0, 0, NOW(), NOW()),
(34, 'cart.cookie_lifetime', '31536060', 0, 0, NOW(), NOW()),
(35, 'session_config.lifetime', '0', 0, 0, NOW(), NOW()),
(36, 'session_config.default', '1', 1, 1, NOW(), NOW()),
(37, 'default_lang_without_translation', '1', 1, 1, NOW(), NOW()),
(38, 'store_name','', 0, 1, NOW(), NOW()),
(39, 'store_description','', 0, 1, NOW(), NOW()),
(40, 'store_email','', 0, 1, NOW(), NOW()),
(41, 'store_notification_emails','', 0, 1, NOW(), NOW()),
(42, 'one_domain_foreach_lang','0', 1, 1, NOW(), NOW()),
(43, 'thelia_version','2.5.4', 1, 1, NOW(), NOW()),
(44, 'thelia_major_version','2', 1, 1, NOW(), NOW()),
(45, 'thelia_minus_version','5', 1, 1, NOW(), NOW()),
(46, 'thelia_release_version','4', 1, 1, NOW(), NOW()),
(47, 'thelia_extra_version','', 1, 1, NOW(), NOW()),
(48, 'front_cart_country_cookie_name','fcccn', 1, 1, NOW(), NOW()),
(49, 'front_cart_country_cookie_expires','2592000', 1, 1, NOW(), NOW()),
(50, 'sitemap_ttl','7200', 1, 1, NOW(), NOW()),
(51, 'feed_ttl','7200', 1, 1, NOW(), NOW()),
(52, 'form_firewall_bruteforce_time_to_wait', '10', 0, 0, NOW(), NOW()),
(53, 'form_firewall_time_to_wait', '60', 0, 0, NOW(), NOW()),
(54, 'form_firewall_bruteforce_attempts', '10', 0, 0, NOW(), NOW()),
(55, 'form_firewall_attempts', '6', 0, 0, NOW(), NOW()),
(56, 'form_firewall_active', '1', 0, 0, NOW(), NOW()),
(57, 'allow_slash_ended_uri', '1', 0, 0, NOW(), NOW()),
(58, 'error_message.show', '1', 0, 0, NOW(), NOW()),
(59, 'error_message.page_name', 'error.html', 0, 0, NOW(), NOW()),
(60, 'customer_change_email', '0', 0, 0, NOW(), NOW()),
(61, 'customer_confirm_email', '1', 0, 0, NOW(), NOW()),
(62, 'form.secret', 'ThisIsNotASecret', 0, 0, NOW(), NOW()),
(63, 'minimum_admin_password_length', '4', 0, 0, NOW(), NOW()),
(64, 'enable_lost_admin_password_recovery', '1', 0, 0, NOW(), NOW()),
(65, 'notify_newsletter_subscription', '1', 0, 0, NOW(), NOW()),
(66, 'number_default_results_per_page.product_list', '20', 0, 0, NOW(), NOW()),
(67, 'number_default_results_per_page.order_list', '20', 0, 0, NOW(), NOW()),
(68, 'number_default_results_per_page.customer_list', '20', 0, 0, NOW(), NOW()),
(69, 'customer_email_confirmation', '0', 0, 0, NOW(), NOW()),
(70, 'number_default_results_per_page.coupon_list', '20', 0, 0, NOW(), NOW()),
(71, 'cdn.documents-base-url', '', 0, 0, NOW(), NOW()),
(72, 'cdn.assets-base-url', '', 0, 0, NOW(), NOW()),
(73, 'allow_module_zip_install', '1', 0, 0, NOW(), NOW());
INSERT INTO `module` (`id`, `code`, `version`, `type`, `activate`, `position`, `full_namespace`, `hidden`, `mandatory`, `created_at`, `updated_at`) VALUES
(1, 'Carousel', '2.5.4', 1, 0, 1, 'Carousel\\Carousel', 0, 0, NOW(), NOW()),
(3, 'Cheque', '2.5.4', 3, 0, 1, 'Cheque\\Cheque', 0, 0, NOW(), NOW()),
(4, 'Front', '2.5.4', 1, 1, 2, 'Front\\Front', 1, 0, NOW(), NOW()),
(5, 'Tinymce', '2.5.4', 1, 0, 16, 'Tinymce\\Tinymce', 0, 1, NOW(), NOW()),
(6, 'HookNavigation', '2.5.4', 1, 1, 11, 'HookNavigation\\HookNavigation', 0, 0, NOW(), NOW()),
(7, 'HookCurrency', '2.5.4', 1, 1, 3, 'HookCurrency\\HookCurrency', 0, 0, NOW(), NOW()),
(8, 'HookLang', '2.5.4', 1, 1, 4, 'HookLang\\HookLang', 0, 0, NOW(), NOW()),
(9, 'HookSearch', '2.5.4', 1, 1, 5, 'HookSearch\\HookSearch', 0, 0, NOW(), NOW()),
(10, 'HookCustomer', '2.5.4', 1, 1, 6, 'HookCustomer\\HookCustomer', 0, 0, NOW(), NOW()),
(11, 'HookCart', '2.5.4', 1, 1, 7, 'HookCart\\HookCart', 0, 0, NOW(), NOW()),
(12, 'HookAnalytics', '2.5.4', 1, 1, 8, 'HookAnalytics\\HookAnalytics', 0, 0, NOW(), NOW()),
(13, 'HookContact', '2.5.4', 1, 1, 9, 'HookContact\\HookContact', 0, 0, NOW(), NOW()),
(14, 'HookLinks', '2.5.4', 1, 1, 10, 'HookLinks\\HookLinks', 0, 0, NOW(), NOW()),
(15, 'HookNewsletter', '2.5.4', 1, 1, 12, 'HookNewsletter\\HookNewsletter', 0, 0, NOW(), NOW()),
(16, 'HookSocial', '2.5.4', 1, 1, 13, 'HookSocial\\HookSocial', 0, 0, NOW(), NOW()),
(17, 'HookProductsNew', '2.5.4', 1, 1, 14, 'HookProductsNew\\HookProductsNew', 0, 0, NOW(), NOW()),
(18, 'HookProductsOffer', '2.5.4', 1, 1, 15, 'HookProductsOffer\\HookProductsOffer', 0, 0, NOW(), NOW()),
(19, 'TheliaSmarty', '2.5.4', 1, 1, 16, 'TheliaSmarty\\TheliaSmarty', 0, 0, NOW(), NOW()),
(20, 'VirtualProductControl', '2.5.4', 1, 1, 17, 'VirtualProductControl\\VirtualProductControl', 0, 0, NOW(), NOW()),
(21, 'HookAdminHome', '2.5.4', 1, 1, 18, 'HookAdminHome\\HookAdminHome', 0, 0, NOW(), NOW()),
(22, 'WebProfiler', '2.5.4', 1, 1, 19, 'WebProfiler\\WebProfiler', 1, 0, NOW(), NOW())
;
-- Insert front hooks
INSERT INTO `hook` (`id`, `code`, `type`, `by_module`, `block`, `native`, `activate`, `position`, `created_at`, `updated_at`) VALUES
(1, 'order-invoice.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(2, 'order-invoice.delivery-address', 1, 1, 0, 1, 1, 1, NOW(), NOW()),
(3, 'order-invoice.payment-extra', 1, 1, 0, 1, 1, 1, NOW(), NOW()),
(4, 'order-invoice.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(5, 'order-invoice.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(6, 'order-invoice.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(7, 'order-invoice.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(8, 'order-payment-gateway.body', 1, 1, 0, 1, 1, 1, NOW(), NOW()),
(9, 'order-payment-gateway.javascript', 1, 1, 0, 1, 1, 1, NOW(), NOW()),
(10, 'order-payment-gateway.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(11, 'order-payment-gateway.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(12, 'order-payment-gateway.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(13, 'sitemap.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(14, 'currency.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(15, 'currency.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(16, 'currency.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(17, 'currency.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(18, 'currency.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(19, 'login.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(20, 'login.main-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(21, 'login.form-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(22, 'login.form-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(23, 'login.main-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(24, 'login.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(25, 'login.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(26, 'login.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(27, 'login.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(28, 'account-update.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(29, 'account-update.form-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(30, 'account-update.form-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(31, 'account-update.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(32, 'account-update.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(33, 'account-update.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(34, 'account-update.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(35, 'cart.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(36, 'cart.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(37, 'cart.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(38, 'cart.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(39, 'cart.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(40, 'contact.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(41, 'contact.form-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(42, 'contact.form-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(43, 'contact.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(44, 'contact.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(45, 'contact.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(46, 'contact.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(47, 'order-placed.body', 1, 1, 0, 1, 1, 1, NOW(), NOW()),
(48, 'order-placed.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(49, 'order-placed.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(50, 'order-placed.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(51, 'search.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(52, 'search.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(53, 'search.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(54, 'register.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(55, 'register.form-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(56, 'register.form-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(57, 'register.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(58, 'register.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(59, 'register.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(60, 'register.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(61, 'password.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(62, 'password.form-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(63, 'password.form-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(64, 'password.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(65, 'password.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(66, 'password.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(67, 'password.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(68, 'language.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(69, 'language.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(70, 'language.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(71, 'language.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(72, 'language.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(73, 'contact.success', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(74, 'newsletter.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(75, 'newsletter.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(76, 'newsletter.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(77, 'newsletter.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(78, 'newsletter.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(79, 'badresponseorder.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(80, 'badresponseorder.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(81, 'badresponseorder.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(82, 'content.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(83, 'content.main-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(84, 'content.main-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(85, 'content.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(86, 'content.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(87, 'content.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(88, 'content.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(89, 'main.head-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(90, 'main.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(91, 'main.head-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(92, 'main.body-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(93, 'main.header-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(94, 'main.navbar-secondary', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(95, 'main.navbar-primary', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(96, 'main.header-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(97, 'main.content-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(98, 'main.content-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(99, 'main.footer-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(100, 'main.footer-body', 1, 0, 1, 1, 1, 1, NOW(), NOW()),
(101, 'main.footer-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(102, 'main.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(103, 'main.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(104, 'main.body-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(105, '404.content', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(106, '404.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(107, '404.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(108, '404.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(109, 'order-delivery.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(110, 'order-delivery.form-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(111, 'order-delivery.form-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(112, 'order-delivery.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(113, 'order-delivery.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(114, 'order-delivery.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(115, 'order-delivery.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(116, 'address-create.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(117, 'address-create.form-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(118, 'address-create.form-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(119, 'address-create.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(120, 'address-create.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(121, 'address-create.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(122, 'address-create.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(123, 'folder.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(124, 'folder.main-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(125, 'folder.main-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(126, 'folder.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(127, 'folder.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(128, 'folder.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(129, 'folder.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(130, 'order-failed.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(131, 'order-failed.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(132, 'order-failed.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(133, 'order-failed.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(134, 'order-failed.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(135, 'category.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(136, 'category.main-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(137, 'category.main-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(138, 'category.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(139, 'category.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(140, 'category.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(141, 'category.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(142, 'address-update.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(143, 'address-update.form-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(144, 'address-update.form-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(145, 'address-update.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(146, 'address-update.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(147, 'address-update.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(148, 'address-update.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(149, 'home.body', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(150, 'home.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(151, 'home.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(152, 'home.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(153, 'account-password.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(154, 'account-password.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(155, 'account-password.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(156, 'account-password.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(157, 'account-password.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(158, 'product.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(159, 'product.gallery', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(160, 'product.details-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(161, 'product.details-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(162, 'product.additional', 1, 0, 1, 1, 1, 1, NOW(), NOW()),
(163, 'product.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(164, 'product.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(165, 'product.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(166, 'product.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(167, 'account.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(168, 'account.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(169, 'account.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(170, 'account.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(171, 'account.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(172, 'viewall.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(173, 'viewall.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(174, 'viewall.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(175, 'viewall.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(176, 'viewall.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(177, 'singleproduct.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(178, 'singleproduct.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(179, 'category.sidebar-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(180, 'category.sidebar-body', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(181, 'category.sidebar-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(182, 'content.sidebar-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(183, 'content.sidebar-body', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(184, 'content.sidebar-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(185, 'order-delivery.extra', 1, 1, 0, 1, 1, 1, NOW(), NOW()),
(186, 'order-delivery.javascript', 1, 1, 0, 1, 1, 1, NOW(), NOW()),
(187, 'category.content-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(188, 'category.content-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(189, 'content.content-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(190, 'content.content-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(191, 'folder.content-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(192, 'folder.content-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(193, 'brand.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(194, 'brand.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(195, 'brand.main-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(196, 'brand.main-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(197, 'brand.content-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(198, 'brand.content-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(199, 'brand.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(200, 'brand.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(201, 'brand.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(202, 'brand.sidebar-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(203, 'brand.sidebar-body', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(204, 'brand.sidebar-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(205, 'account-order.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(206, 'account-order.information', 1, 0, 1, 1, 1, 1, NOW(), NOW()),
(207, 'account-order.after-information', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(208, 'account-order.delivery-information', 1, 1, 0, 1, 1, 1, NOW(), NOW()),
(209, 'account-order.delivery-address', 1, 1, 0, 1, 1, 1, NOW(), NOW()),
(210, 'account-order.invoice-information', 1, 1, 0, 1, 1, 1, NOW(), NOW()),
(211, 'account-order.invoice-address', 1, 1, 0, 1, 1, 1, NOW(), NOW()),
(212, 'account-order.after-addresses', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(213, 'account-order.products-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(214, 'account-order.product-extra', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(215, 'account-order.products-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(216, 'account-order.after-products', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(217, 'account-order.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(218, 'account-order.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(219, 'account-order.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(220, 'account-order.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(221, 'account.additional', 1, 0, 1, 1, 1, 1, NOW(), NOW()),
(222, 'account-order.product', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(223, 'mini-cart', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(224, 'sale.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(225, 'sale.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(226, 'sale.main-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(227, 'sale.main-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(228, 'sale.content-top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(229, 'sale.content-bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(230, 'sale.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(231, 'sale.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(232, 'sale.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(233, 'account-order.invoice-address-bottom', 1, 1, 0, 1, 1, 1, NOW(), NOW()),
(234, 'account-order.delivery-address-bottom', 1, 1, 0, 1, 1, 1, NOW(), NOW()),
(235, 'newsletter-unsubscribe.top', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(236, 'newsletter-unsubscribe.bottom', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(237, 'newsletter-unsubscribe.stylesheet', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(238, 'newsletter-unsubscribe.after-javascript-include', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(239, 'newsletter-unsubscribe.javascript-initialization', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(240, 'order-invoice.coupon-form', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(241, 'order-invoice.payment-form', 1, 0, 0, 1, 1, 1, NOW(), NOW()),
(242, 'account-order.product-list', 1, 0, 0, 1, 1, 1, NOW(), NOW())
;
-- Insert admin hooks
INSERT INTO `hook` (`id`, `code`, `type`, `by_module`, `block`, `native`, `activate`, `position`, `created_at`, `updated_at`) VALUES
(1000, 'category.tab-content', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1001, 'content.tab-content', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1002, 'folder.tab-content', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1003, 'order.tab-content', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1004, 'product.tab-content', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1005, 'features-value.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1006, 'features-value.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1007, 'feature.value-create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1008, 'feature.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1009, 'product.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1010, 'coupon.create-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1011, 'taxes.update-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1012, 'tax-rule.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1013, 'tools.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1014, 'tools.col1-top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1015, 'tools.col1-bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1016, 'tools.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1017, 'tools.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1018, 'messages.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1019, 'messages.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1020, 'messages.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1021, 'messages.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1022, 'message.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1023, 'message.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1024, 'messages.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1025, 'taxes-rules.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1026, 'taxes-rules.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1027, 'tax.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1028, 'tax.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1029, 'tax-rule.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1030, 'tax-rule.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1031, 'taxes-rules.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1032, 'exports.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1033, 'exports.row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1034, 'exports.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1035, 'exports.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1036, 'export.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1037, 'product.folders-table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1038, 'product.folders-table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1039, 'product.details-pricing-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1040, 'product.details-details-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1041, 'product.details-promotion-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1042, 'product.before-combinations', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1043, 'product.combinations-list-caption', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1044, 'product.after-combinations', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1045, 'product.combination-delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1046, 'modules.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1047, 'modules.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1048, 'currency.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1049, 'category.contents-table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1050, 'category.contents-table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1051, 'category.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1052, 'document.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1053, 'customer.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1054, 'customers.caption', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1055, 'customers.header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1056, 'customers.row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1057, 'customer.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1058, 'customer.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1059, 'customer.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1060, 'customers.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1061, 'product.contents-table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1062, 'product.contents-table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1063, 'product.accessories-table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1064, 'product.accessories-table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1065, 'product.categories-table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1066, 'product.categories-table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1067, 'product.attributes-table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1068, 'product.attributes-table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1069, 'product.features-table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1070, 'product.features-table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1071, 'template.attributes-table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1072, 'template.attributes-table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1073, 'template.features-table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1074, 'template.features-table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1075, 'templates.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1076, 'templates.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1077, 'templates.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1078, 'templates.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1079, 'template.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1080, 'template.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1081, 'templates.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1082, 'configuration.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1083, 'configuration.catalog-top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1084, 'configuration.catalog-bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1085, 'configuration.shipping-top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1086, 'configuration.shipping-bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1087, 'configuration.system-top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1088, 'configuration.system-bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1089, 'configuration.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1090, 'configuration.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1091, 'index.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1092, 'index.middle', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1093, 'index.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1094, 'orders.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1095, 'orders.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1096, 'orders.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1097, 'orders.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1098, 'orders.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1099, 'shipping-zones.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1100, 'shipping-zones.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1101, 'shipping-zones.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1102, 'shipping-zones.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1103, 'shipping-zones.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1104, 'content.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1105, 'home.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1106, 'home.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1107, 'home.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1108, 'modules.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1109, 'modules.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1110, 'modules.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1111, 'languages.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1112, 'languages.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1113, 'language.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1114, 'languages.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1115, 'languages.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1116, 'zone.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1117, 'shipping-zones.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1118, 'system.logs-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1119, 'search.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1120, 'search.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1121, 'search.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1122, 'administrators.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1123, 'administrators.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1124, 'administrator.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1125, 'administrator.update-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1126, 'administrator.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1127, 'administrators.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1128, 'module-hook.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1129, 'shipping-configuration.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1130, 'shipping-configuration.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1131, 'shipping-configuration.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1132, 'shipping-configuration.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1133, 'shipping-configuration.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1134, 'shipping-configuration.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1135, 'shipping-configuration.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1136, 'features.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1137, 'features.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1138, 'features.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1139, 'features.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1140, 'feature.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1141, 'feature.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1142, 'feature.add-to-all-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1143, 'feature.remove-to-all-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1144, 'features.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1145, 'module.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1146, 'module-hook.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1147, 'module-hook.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1148, 'module-hook.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1149, 'shipping-configuration.edit', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1150, 'shipping-configuration.country-delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1151, 'shipping-configuration.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1152, 'mailing-system.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1153, 'mailing-system.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1154, 'mailing-system.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1155, 'categories.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1156, 'categories.caption', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1157, 'categories.header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1158, 'categories.row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1159, 'products.caption', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1160, 'products.header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1161, 'products.row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1162, 'categories.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1163, 'categories.catalog-bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1164, 'category.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1165, 'product.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1166, 'category.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1167, 'product.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1168, 'categories.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1169, 'variables.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1170, 'variables.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1171, 'variables.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1172, 'variables.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1173, 'variable.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1174, 'variable.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1175, 'variables.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1176, 'order.product-list', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1177, 'order.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1178, 'config-store.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1179, 'translations.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1180, 'folders.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1181, 'folders.caption', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1182, 'folders.header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1183, 'folders.row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1184, 'contents.caption', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1185, 'contents.header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1186, 'contents.row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1187, 'folders.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1188, 'folder.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1189, 'content.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1190, 'folder.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1191, 'content.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1192, 'folders.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1193, 'template.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1194, 'tax.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1195, 'hook.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1196, 'countries.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1197, 'countries.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1198, 'countries.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1199, 'countries.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1200, 'country.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1201, 'country.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1202, 'countries.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1203, 'currencies.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1204, 'currencies.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1205, 'currencies.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1206, 'currencies.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1207, 'currency.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1208, 'currency.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1209, 'currencies.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1210, 'customer.edit', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1211, 'customer.address-create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1212, 'customer.address-update-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1213, 'customer.address-delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1214, 'customer.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1215, 'attributes-value.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1216, 'attributes-value.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1217, 'attribute-value.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1218, 'attribute.id-delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1219, 'attribute.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1220, 'profiles.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1221, 'profiles.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1222, 'profile.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1223, 'profile.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1224, 'profiles.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1225, 'country.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1226, 'profile.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1227, 'variable.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1228, 'coupon.update-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1229, 'coupon.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1230, 'coupon.list-caption', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1231, 'coupon.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1232, 'coupon.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1233, 'coupon.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1234, 'coupon.list-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1235, 'module.configuration', 2, 1, 0, 1, 1, 1, NOW(), NOW()),
(1236, 'module.config-js', 2, 1, 0, 1, 1, 1, NOW(), NOW()),
(1237, 'message.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1238, 'image.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1239, 'attributes.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1240, 'attributes.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1241, 'attributes.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1242, 'attributes.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1243, 'attribute.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1244, 'attribute.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1245, 'attribute.add-to-all-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1246, 'attribute.remove-to-all-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1247, 'attributes.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1248, 'admin-logs.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1249, 'admin-logs.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1250, 'admin-logs.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1251, 'folder.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1252, 'hooks.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1253, 'hooks.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1254, 'hooks.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1255, 'hooks.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1256, 'hook.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1257, 'hook.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1258, 'hooks.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1259, 'main.head-css', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1260, 'main.before-topbar', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1261, 'main.inside-topbar', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1262, 'main.after-topbar', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1263, 'main.before-top-menu', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1264, 'main.in-top-menu-items', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1265, 'main.after-top-menu', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1266, 'main.before-footer', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1267, 'main.in-footer', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1268, 'main.after-footer', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1269, 'main.footer-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1270, 'main.topbar-top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1271, 'main.topbar-bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1272, 'main.top-menu-customer', 2, 0, 1, 1, 1, 1, NOW(), NOW()),
(1273, 'main.top-menu-order', 2, 0, 1, 1, 1, 1, NOW(), NOW()),
(1274, 'main.top-menu-catalog', 2, 0, 1, 1, 1, 1, NOW(), NOW()),
(1275, 'main.top-menu-content', 2, 0, 1, 1, 1, 1, NOW(), NOW()),
(1276, 'main.top-menu-tools', 2, 0, 1, 1, 1, 1, NOW(), NOW()),
(1277, 'main.top-menu-modules', 2, 0, 1, 1, 1, 1, NOW(), NOW()),
(1278, 'main.top-menu-configuration', 2, 0, 1, 1, 1, 1, NOW(), NOW()),
(1279, 'brand.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1280, 'home.block', 2, 0, 1, 1, 1, 1, NOW(), NOW()),
(1281, 'brands.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1282, 'brands.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1283, 'brands.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1284, 'brands.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1285, 'brand.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1286, 'brand.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1287, 'brand.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1288, 'imports.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1289, 'imports.row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1290, 'imports.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1291, 'imports.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1292, 'import.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1293, 'brand.tab-content', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1294, 'customer.orders-table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1295, 'customer.orders-table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1296, 'sales.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1297, 'sales.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1298, 'sales.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1299, 'sales.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1300, 'sale.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1301, 'sale.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1302, 'sales.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1303, 'product.combinations-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1304, 'main.before-content', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1305, 'main.after-content', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1306, 'category.tab', 2, 0, 1, 1, 1, 1, NOW(), NOW()),
(1307, 'product.tab', 2, 0, 1, 1, 1, 1, NOW(), NOW()),
(1308, 'folder.tab', 2, 0, 1, 1, 1, 1, NOW(), NOW()),
(1309, 'content.tab', 2, 0, 1, 1, 1, 1, NOW(), NOW()),
(1310, 'brand.tab', 2, 0, 1, 1, 1, 1, NOW(), NOW()),
(1311, 'order-edit.bill-delivery-address', 2, 1, 0, 1, 1, 1, NOW(), NOW()),
(1312, 'product.modification.form_top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1313, 'product.modification.form_bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1314, 'brand.update-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1315, 'sale.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1319, 'coupon.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1320, 'order.tab', 2, 0, 1, 1, 1, 1, NOW(), NOW()),
(1321, 'profile.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1322, 'profile.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1323, 'import.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1324, 'import.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1325, 'export.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1326, 'export.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1327, 'category-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1328, 'category-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1329, 'brand-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1330, 'brand-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1331, 'attribute-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1332, 'attribute-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1333, 'currency-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1334, 'currency-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1335, 'country-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1336, 'country-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1337, 'content-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1338, 'content-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1339, 'feature-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1340, 'feature-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1341, 'document-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1342, 'document-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1343, 'customer-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1344, 'customer-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1345, 'image-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1346, 'image-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1347, 'hook-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1348, 'hook-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1349, 'folder-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1350, 'folder-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1351, 'module-hook-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1352, 'module-hook-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1353, 'module-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1354, 'module-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1355, 'message-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1356, 'message-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1357, 'profile-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1358, 'profile-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1359, 'product-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1360, 'product-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1361, 'order-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1362, 'order-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1363, 'shipping-zones-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1364, 'shipping-zones-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1365, 'shipping-configuration-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1366, 'shipping-configuration-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1367, 'sale-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1368, 'sale-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1369, 'variables-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1370, 'variables-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1371, 'template-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1372, 'template-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1373, 'tax-rule-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1374, 'tax-rule-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1375, 'tax-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1376, 'tax-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1377, 'order-edit.product-list', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1378, 'tab-seo.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1379, 'tab-seo.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1380, 'tab-image.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1381, 'tab-image.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1382, 'tab-document.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1383, 'tab-document.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1384, 'export.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1385, 'export.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1386, 'order-edit.customer-information-bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1387, 'order-edit.payment-module-bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1388, 'order-edit.delivery-module-bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1389, 'tab-seo.update-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1390, 'order-edit.order-product-table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1391, 'order-edit.order-product-table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1392, 'administrators.header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1393, 'administrators.row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1394, 'advanced-configuration', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1395, 'advanced-configuration.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1396, 'brand.modification.form-right.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1397, 'brand.modification.form-right.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1398, 'category.modification.form-right.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1399, 'category.modification.form-right.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1400, 'content.modification.form-right.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1401, 'content.modification.form-right.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1402, 'folder.modification.form-right.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1403, 'folder.modification.form-right.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1404, 'product.modification.form-right.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1405, 'product.modification.form-right.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1406, 'state-edit.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1407, 'state-edit.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1408, 'state.edit-js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1409, 'states.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1410, 'states.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1411, 'states.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1412, 'states.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1413, 'state.create-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1414, 'state.delete-form', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1415, 'states.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1416, 'configuration.order-path.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1417, 'configuration.order-path.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1418, 'order-status.top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1419, 'order-status.table-header', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1420, 'order-status.table-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1421, 'order-status.bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1422, 'order-status.form.creation', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1423, 'order-status.form.modification', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1424, 'order-status.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(1425, 'item.edition.images', 2, 0, 0, 1, 1, 1, NOW(), NOW());
-- Insert pdf hooks
INSERT INTO `hook` (`id`, `code`, `type`, `by_module`, `block`, `native`, `activate`, `position`, `created_at`, `updated_at`) VALUES
(2001, 'invoice.css', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2002, 'invoice.header', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2003, 'invoice.footer-top', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2004, 'invoice.imprint', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2005, 'invoice.footer-bottom', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2006, 'invoice.information', 3, 0, 1, 1, 1, 1, NOW(), NOW()),
(2007, 'invoice.after-information', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2008, 'invoice.delivery-address', 3, 1, 0, 1, 1, 1, NOW(), NOW()),
(2009, 'invoice.after-addresses', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2010, 'invoice.after-products', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2011, 'invoice.after-summary', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2012, 'delivery.css', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2013, 'delivery.header', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2014, 'delivery.footer-top', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2015, 'delivery.imprint', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2016, 'delivery.footer-bottom', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2017, 'delivery.information', 3, 0, 1, 1, 1, 1, NOW(), NOW()),
(2018, 'delivery.after-information', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2019, 'delivery.delivery-address', 3, 1, 0, 1, 1, 1, NOW(), NOW()),
(2020, 'delivery.after-addresses', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2021, 'delivery.after-summary', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2022, 'order-placed.additional-payment-info', 1, 1, 0, 1, 1, 1, NOW(), NOW()),
(2023, 'wysiwyg.js', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(2024, 'order-edit.cart-top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(2025, 'order-edit.cart-bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(2026, 'order-edit.bill-top', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(2027, 'order-edit.bill-bottom', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(2028, 'order-edit.before-order-product-list', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(2029, 'order-edit.before-order-product-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(2030, 'order-edit.after-order-product-row', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(2031, 'order-edit.after-order-product-list', 2, 0, 0, 1, 1, 1, NOW(), NOW()),
(2032, 'invoice.after-payment-module', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2033, 'invoice.after-delivery-module', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2034, 'delivery.after-delivery-module', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2035, 'invoice.order-product', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2036, 'delivery.order-product', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2037, 'delivery.product-list', 3, 0, 0, 1, 1, 1, NOW(), NOW()),
(2038, 'invoice.product-list', 3, 0, 0, 1, 1, 1, NOW(), NOW())
;
-- Insert email hooks
INSERT INTO `hook` (`id`, `code`, `type`, `by_module`, `block`, `native`, `activate`, `position`, `created_at`, `updated_at`) VALUES
(3000, 'email-html.layout.css', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3001, 'email-html.layout.footer', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3002, 'email-html.order-confirmation.before-address', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3003, 'email-html.order-confirmation.delivery-address', 4, 1, 0, 1, 1, 1, NOW(), NOW()),
(3004, 'email-html.order-confirmation.after-address', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3005, 'email-html.order-confirmation.order-product', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3006, 'email-html.order-confirmation.before-products', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3007, 'email-html.order-confirmation.after-products', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3008, 'email-html.order-confirmation.footer', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3009, 'email-html.order-notification.before-address', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3010, 'email-html.order-notification.delivery-address', 4, 1, 0, 1, 1, 1, NOW(), NOW()),
(3011, 'email-html.order-notification.after-address', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3012, 'email-html.order-notification.order-product', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3013, 'email-html.order-notification.before-products', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3014, 'email-html.order-notification.after-products', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3015, 'email-txt.order-confirmation.before-address', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3016, 'email-txt.order-confirmation.delivery-address', 4, 1, 0, 1, 1, 1, NOW(), NOW()),
(3017, 'email-txt.order-confirmation.after-address', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3018, 'email-txt.order-confirmation.order-product', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3019, 'email-txt.order-confirmation.before-products', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3020, 'email-txt.order-confirmation.after-products', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3021, 'email-txt.order-notification.before-address', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3022, 'email-txt.order-notification.delivery-address', 4, 1, 0, 1, 1, 1, NOW(), NOW()),
(3023, 'email-txt.order-notification.after-address', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3024, 'email-txt.order-notification.order-product', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3025, 'email-txt.order-notification.before-products', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3026, 'email-txt.order-notification.after-products', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3027, 'email-html.order-confirmation.product-list', 4, 0, 0, 1, 1, 1, NOW(), NOW()),
(3028, 'email-txt.order-confirmation.product-list', 4, 0, 0, 1, 1, 1, NOW(), NOW())
;
INSERT INTO `customer_title`(`id`, `by_default`, `position`, `created_at`, `updated_at`) VALUES
(1, 1, 1, NOW(), NOW()),
(2, 0, 2, NOW(), NOW()),
(3, 0, 3, NOW(), NOW());
INSERT INTO `currency` (`id`, `code`, `symbol`, `format`, `rate`, `visible`, `position`, `by_default`, `created_at`, `updated_at`)
VALUES
(1, 'EUR', '€', '%n %s','1.00', 1, 1, '1', NOW(), NOW()),
(2, 'USD', '$', '%s%n', '1.26', 1, 2, '0', NOW(), NOW()),
(3, 'GBP', '£', '%s%n','0.89', 1, 3, '0', NOW(), NOW()),
(4, 'CHF', 'CHF', '%n %s', '1.34183', 0, 4, '0', NOW(), NOW()),
(5, 'MXN', '$', '%n %s', '17.1304', 0, 5, '0', NOW(), NOW()),
(6, 'PLN', 'zł', '%n %s', '3.84510', 0, 6, '0', NOW(), NOW()),
(7, 'CNY', '¥', '%s %n', '9.13916', 0, 7, '0', NOW(), NOW()),
(8, 'NOK', 'kr', '%n %s', '7.97791', 0, 8, '0', NOW(), NOW()),
(9, 'MDL', 'MDL', '%n %s', '16.1774', 0, 9, '0', NOW(), NOW()),
(10, 'PYG', 'Gs', '%n %s', '6547.98', 0, 10, '0', NOW(), NOW()),
(11, 'ARS', 'ARS', '%n %s', '5.39', 0, 11, '0', NOW(), NOW()),
(12, 'BYR', 'р.', '%n%s', '1.000000', 0, 12, '0', NOW(), NOW()),
(13, 'FJD', '$', '%s%n', '2.57483', 0, 13, '0', NOW(), NOW()),
(14, 'RSD', 'RSD', '%n %s', '115.680000', 0, 14, '0', NOW(), NOW()),
(15, 'SEK', 'kr', '%n %s', '9.14651', 0, 15, '0', NOW(), NOW()),
(16, 'HRK', 'kn', '%n %s', '1.000000', 0, 16, '0', NOW(), NOW()),
(17, 'DKK', 'kr', '%n %s', '7.45201', 0, 17, '0', NOW(), NOW()),
(18, 'NGN', '₦', '%s %n', '1.000000', 0, 18, '0', NOW(), NOW()),
(19, 'HKD', '$', '%n %s', '11.0512', 0, 19, '0', NOW(), NOW()),
(20, 'CAD', 'CAD$', '%s%n', '1.40054', 0, 20, '0', NOW(), NOW()),
(21, 'SAR', '﷼', '%n %s', '5.10682', 0, 21, '0', NOW(), NOW()),
(22, 'CZK', 'Kč', '%n %s', '1', 0, 22, '0', NOW(), NOW()),
(23, 'CRC', '₡', '%s %n', '560', 0, 23, '0', NOW(), NOW()),
(24, 'AZN', 'AZN', '%n %s', '1.09237', 0, 24, '0', NOW(), NOW()),
(25, 'IDR', 'Rp', '%n %s', '12177.63', 0, 25, '0', NOW(), NOW()),
(26, 'PKR', '₨', '%n %s', '117.289', 0, 26, '0', NOW(), NOW()),
(27, 'BRL', 'R$', '%s %n', '2.31583', 0, 27, '0', NOW(), NOW()),
(28, 'VND', '₫', '%n %s', '26505.85', 0, 28, '0', NOW(), NOW()),
(29, 'PHP', 'PHP', '%s %n', '1.000000', 0, 29, '0', NOW(), NOW()),
(30, 'GTQ', 'Q', '%n %s', '11.0988', 0, 30, '0', NOW(), NOW()),
(31, 'TRY', 'TL', '%n %s', '1.97638', 0, 31, '0', NOW(), NOW()),
(32, 'JPY', '¥', '%s %n', '113.786', 0, 32, '0', NOW(), NOW()),
(33, 'RUB', 'руб', '%n %s', '41.7632', 0, 33, '0', NOW(), NOW()),
(34, 'PEN', 'S/.', '%s %n', '2.784499', 0, 34, '0', NOW(), NOW()),
(35, 'EGP', '£', '%s %n', '7.77518', 0, 35, '0', NOW(), NOW()),
(36, 'GEL', 'ლ', '%n %s', '2.46684', 0, 36, '0', NOW(), NOW()),
(37, 'BOB', '$b', '%n %s', '9.57620', 0, 37, '0', NOW(), NOW()),
(38, 'AED', 'AED', '%s %n', '1.000000', 0, 38, '0', NOW(), NOW()),
(39, 'THB', '฿', '%n %s', '41.4441', 0, 39, '0', NOW(), NOW()),
(40, 'ILS', '₪', '%n%s', '4.97713', 0, 40, '0', NOW(), NOW()),
(41, 'MYR', 'RM', '%s%n', '1.000000', 0, 41, '0', NOW(), NOW()),
(42, 'VEF', 'Bs', '%n %s', '5.84819', 0, 42, '0', NOW(), NOW()),
(43, 'HUF', 'Ft', '%n %s', '276.334', 0, 43, '0', NOW(), NOW()),
(44, 'KES', 'KSh', '%s %n', '1.000000', 0, 44, '0', NOW(), NOW()),
(45, 'UAH', '₴', '%n %s', '1', 0, 45, '0', NOW(), NOW()),
(46, 'TND', 'DT', '%n%s', '1.000000', 0, 46, '0', NOW(), NOW()),
(47, 'BGN', 'лв', '%n %s', '1.95580', 0, 47, '0', NOW(), NOW()),
(48, 'INR', '₹', '%s %n', '60.748205', 0, 48, '0', NOW(), NOW());
INSERT INTO `area` (`id`, `name`, `postage`, `created_at`, `updated_at`) VALUES
(1, 'France', NULL, NOW(), NOW()),
(2, 'A Zone', NULL, NOW(), NOW()),
(3, 'B Zone', NULL, NOW(), NOW()),
(4, 'C Zone', NULL, NOW(), NOW()),
(5, 'France OM1', NULL, NOW(), NOW()),
(6, 'France OM2', NULL, NOW(), NOW()),
(7, 'Europe', NULL, NOW(), NOW()),
(8, 'North America', NULL, NOW(), NOW()),
(9, 'Asia', NULL, NOW(), NOW()),
(10, 'Africa', NULL, NOW(), NOW()),
(11, 'Oceania', NULL, NOW(), NOW()),
(12, 'South America', NULL, NOW(), NOW()),
(13, 'Europe (non-EU)', NULL, NOW(), NOW()),
(14, 'Central America/Antilla', NULL, NOW(), NOW());
INSERT INTO `country` (`id`, `visible`, `isocode`, `isoalpha2`, `isoalpha3`, `by_default`, `shop_country`, `has_states`, `need_zip_code`, `zip_code_format`, `created_at`, `updated_at`) VALUES
(1, 1, '4', 'AF', 'AFG', 0, 0, '0', '0', '', NOW(), NOW()),
(2, 1, '710', 'ZA', 'ZAF', 0, 0, '0', '1', 'NNNN', NOW(), NOW()),
(3, 1, '8', 'AL', 'ALB', 0, 0, '0', '1', 'NNNN', NOW(), NOW()),
(4, 1, '12', 'DZ', 'DZA', 0, 0, '0', '1', 'NNNNN', NOW(), NOW()),
(5, 1, '276', 'DE', 'DEU', 0, 0, '0', '1', '', NOW(), NOW()),
(6, 1, '20', 'AD', 'AND', 0, 0, '0', '1', 'CNNN', NOW(), NOW()),
(7, 1, '24', 'AO', 'AGO', 0, 0, '0', '0', '', NOW(), NOW()),
(8, 1, '28', 'AG', 'ATG', 0, 0, '0', '1', '', NOW(), NOW()),
(9, 1, '682', 'SA', 'SAU', 0, 0, '0', '1', '', NOW(), NOW()),
(10, 1, '32', 'AR', 'ARG', 0, 0, '1', '1', 'LNNNN', NOW(), NOW()),
(11, 1, '51', 'AM', 'ARM', 0, 0, '0', '1', 'NNNN', NOW(), NOW()),
(12, 1, '36', 'AU', 'AUS', 0, 0, '0', '1', 'NNNN', NOW(), NOW()),
(13, 1, '40', 'AT', 'AUT', 0, 0, '0', '1', 'NNNN', NOW(), NOW()),
(14, 1, '31', 'AZ', 'AZE', 0, 0, '0', '1', 'CNNNN', NOW(), NOW()),
(15, 1, '44', 'BS', 'BHS', 0, 0, '0', '1', '', NOW(), NOW()),
(16, 1, '48', 'BH', 'BHR', 0, 0, '0', '1', '', NOW(), NOW()),
(17, 1, '50', 'BD', 'BGD', 0, 0, '0', '1', 'NNNN', NOW(), NOW()),
(18, 1, '52', 'BB', 'BRB', 0, 0, '0', '1', 'CNNNNN', NOW(), NOW()),
(19, 1, '585', 'PW', 'PLW', 0, 0, '0', '1', '', NOW(), NOW()),
(20, 1, '56', 'BE', 'BEL', 0, 0, '0', '1', 'NNNN', NOW(), NOW()),
(21, 1, '84', 'BL', 'BLZ', 0, 0, '0', '1', '', NOW(), NOW()),
(22, 1, '204', 'BJ', 'BEN', 0, 0, '0', '0', '', NOW(), NOW()),
(23, 1, '64', 'BT', 'BTN', 0, 0, '0', '1', '', NOW(), NOW()),
(24, 1, '112', 'BY', 'BLR', 0, 0, '0', '1', 'NNNNNN', NOW(), NOW()),
(25, 1, '104', 'MM', 'MMR', 0, 0, '0', '1', '', NOW(), NOW()),
(26, 1, '68', 'BO', 'BOL', 0, 0, '0', '1', '', NOW(), NOW()),
(27, 1, '70', 'BA', 'BIH', 0, 0, '0', '1', '', NOW(), NOW()),
(28, 1, '72', 'BW', 'BWA', 0, 0, '0', '1', '', NOW(), NOW()),
(29, 1, '76', 'BR', 'BRA', 0, 0, '0', '1', 'NNNNN-NNN', NOW(), NOW()),
(30, 1, '96', 'BN', 'BRN', 0, 0, '0', '1', 'LLNNNN', NOW(), NOW()),
(31, 1, '100', 'BG', 'BGR', 0, 0, '0', '1', 'NNNN', NOW(), NOW()),
(32, 1, '854', 'BF', 'BFA', 0, 0, '0', '1', '', NOW(), NOW()),
(33, 1, '108', 'BI', 'BDI', 0, 0, '0', '1', '', NOW(), NOW()),
(34, 1, '116', 'KH', 'KHM', 0, 0, '0', '1', 'NNNNN', NOW(), NOW()),
(35, 1, '120', 'CM', 'CMR', 0, 0, '0', '1', '', NOW(), NOW()),
(37, 1, '132', 'CV', 'CPV', 0, 0, '0', '1', 'NNNN', NOW(), NOW()),
(38, 1, '152', 'CL', 'CHL', 0, 0, '0', '1', 'NNN-NNNN', NOW(), NOW()),
(39, 1, '156', 'CN', 'CHN', 0, 0, '0', '1', 'NNNNNN', NOW(), NOW()),
(40, 1, '196', 'CY', 'CYP', 0, 0, '0', '1', 'NNNN', NOW(), NOW()),
(41, 1, '170', 'CO', 'COL', 0, 0, '0', '1', 'NNNNNN', NOW(), NOW()),
(42, 1, '174', 'KM', 'COM', 0, 0, '0', '1', '', NOW(), NOW()),
(43, 1, '178', 'CG', 'COG', 0, 0, '0', '1', '', NOW(), NOW()),
(44, 1, '184', 'CK', 'COK', 0, 0, '0', '1', '', NOW(), NOW()),
(45, 1, '408', 'KP', 'PRK', 0, 0, '0', '1', '', NOW(), NOW()),
(46, 1, '410', 'KR', 'KOR', 0, 0, '0', '1', 'NNN-NNN', NOW(), NOW()),
(47, 1, '188', 'CR', 'CRI', 0, 0, '0', '1', 'NNNNN', NOW(), NOW()),
(48, 1, '384', 'CI', 'CIV', 0, 0, '0', '1', '', NOW(), NOW()),
(49, 1, '191', 'HR', 'HRV', 0, 0, '0', '1', 'NNNNN', NOW(), NOW()),
(50, 1, '192', 'CU', 'CUB', 0, 0, '0', '1', '', NOW(), NOW()),
(51, 1, '208', 'DK', 'DNK', 0, 0, '0', '1', 'NNNN', NOW(), NOW()),
(52, 1, '262', 'DJ', 'DJI', 0, 0, '0', '1', '', NOW(), NOW()),
(53, 1, '212', 'DM', 'DMA', 0, 0, '0', '1', '', NOW(), NOW()),
(54, 1, '818', 'EG', 'EGY', 0, 0, '0', '0', '', NOW(), NOW()),
(55, 1, '784', 'AE', 'ARE', 0, 0, '0', '1', '', NOW(), NOW()),
(56, 1, '218', 'EC', 'ECU', 0, 0, '0', '1', 'CNNNNNN', NOW(), NOW()),
(57, 1, '232', 'ER', 'ERI', 0, 0, '0', '1', '', NOW(), NOW()),
(58, 1, '724', 'ES', 'ESP', 0, 0, '0', '1', 'NNNNN', NOW(), NOW()),
(59, 1, '233', 'EE', 'EST', 0, 0, '0', '1', 'NNNNN', NOW(), NOW()),
(61, 1, '231', 'ET', 'ETH', 0, 0, '0', '1', '', NOW(), NOW()),
(62, 1, '242', 'FJ', 'FJI', 0, 0, '0', '1', '', NOW(), NOW()),
(63, 1, '246', 'FI', 'FIN', 0, 0, '0', '1', 'NNNNN', NOW(), NOW()),
(64, 1, '250', 'FR', 'FRA', 1, 1, '0', '1', 'NNNNN', NOW(), NOW()),
(65, 1, '266', 'GA', 'GAB', 0, 0, '0', '1', '', NOW(), NOW()),
(66, 1, '270', 'GM', 'GMB', 0, 0, '0', '1', '', NOW(), NOW()),
(67, 1, '268', 'GE', 'GEO', 0, 0, '0', '1', 'NNNN', NOW(), NOW()),
(68, 1, '288', 'GH', 'GHA', 0, 0, '0', '1', '', NOW(), NOW()),
(69, 1, '300', 'GR', 'GRC', 0, 0, '0', '1', 'NNNNN', NOW(), NOW()),
(70, 1, '308', 'GD', 'GRD', 0, 0, '0', '1', '', NOW(), NOW()),
(71, 1, '320', 'GT', 'GTM', 0, 0, '0', '1', '', NOW(), NOW()),
(72, 1, '324', 'GN', 'GIN', 0, 0, '0', '1', '', NOW(), NOW()),
(73, 1, '624', 'GW', 'GNB', 0, 0, '0', '1', '', NOW(), NOW()),
(74, 1, '226', 'GQ', 'GNQ', 0, 0, '0', '1', '', NOW(), NOW()),