-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathu341139949_autoatelier.sql
776 lines (692 loc) · 220 KB
/
u341139949_autoatelier.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
-- phpMyAdmin SQL Dump
-- version 4.9.5
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1:3306
-- Generation Time: Dec 27, 2021 at 07:27 AM
-- Server version: 10.5.12-MariaDB-cll-lve
-- PHP Version: 7.2.34
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!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 utf8mb4 */;
--
-- Database: `u341139949_autoatelier`
--
-- --------------------------------------------------------
--
-- Table structure for table `wp_commentmeta`
--
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`comment_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_comments`
--
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) UNSIGNED NOT NULL,
`comment_post_ID` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT 0,
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'comment',
`comment_parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_comments`
--
INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'A WordPress Commenter', '[email protected]', 'https://wordpress.org/', '', '2021-12-24 16:49:08', '2021-12-24 16:49:08', 'Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.', 0, '1', '', 'comment', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_links`
--
CREATE TABLE `wp_links` (
`link_id` bigint(20) UNSIGNED NOT NULL,
`link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) UNSIGNED NOT NULL DEFAULT 1,
`link_rating` int(11) NOT NULL DEFAULT 0,
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_options`
--
CREATE TABLE `wp_options` (
`option_id` bigint(20) UNSIGNED NOT NULL,
`option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'https://adstechnolab.com/dev/autoatelier', 'yes'),
(2, 'home', 'https://adstechnolab.com/dev/autoatelier', 'yes'),
(3, 'blogname', 'Auto Atelier', 'yes'),
(4, 'blogdescription', 'Just another WordPress site', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', '[email protected]', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', '[email protected]', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'open', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '1', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'F j, Y', 'yes'),
(24, 'time_format', 'g:i a', 'yes'),
(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 'comment_moderation', '0', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '/%year%/%monthnum%/%day%/%postname%/', 'yes'),
(29, 'rewrite_rules', 'a:134:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:40:\"vc_grid_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"vc_grid_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"vc_grid_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"vc_grid_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"vc_grid_item/([^/]+)/embed/?$\";s:45:\"index.php?vc_grid_item=$matches[1]&embed=true\";s:33:\"vc_grid_item/([^/]+)/trackback/?$\";s:39:\"index.php?vc_grid_item=$matches[1]&tb=1\";s:41:\"vc_grid_item/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&paged=$matches[2]\";s:48:\"vc_grid_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&cpage=$matches[2]\";s:37:\"vc_grid_item/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?vc_grid_item=$matches[1]&page=$matches[2]\";s:29:\"vc_grid_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"vc_grid_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"vc_grid_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"vc_grid_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"portfolio/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"portfolio/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"portfolio/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"portfolio/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"portfolio/([^/]+)/embed/?$\";s:43:\"index.php?portfolios=$matches[1]&embed=true\";s:30:\"portfolio/([^/]+)/trackback/?$\";s:37:\"index.php?portfolios=$matches[1]&tb=1\";s:38:\"portfolio/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?portfolios=$matches[1]&paged=$matches[2]\";s:45:\"portfolio/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?portfolios=$matches[1]&cpage=$matches[2]\";s:34:\"portfolio/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?portfolios=$matches[1]&page=$matches[2]\";s:26:\"portfolio/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"portfolio/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"portfolio/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"portfolio/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:59:\"portfolio-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:54:\"portfolio-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:35:\"portfolio-category/([^/]+)/embed/?$\";s:51:\"index.php?portfolio-category=$matches[1]&embed=true\";s:47:\"portfolio-category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?portfolio-category=$matches[1]&paged=$matches[2]\";s:29:\"portfolio-category/([^/]+)/?$\";s:40:\"index.php?portfolio-category=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=7&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:4:{i:0;s:35:\"redux-framework/redux-framework.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:27:\"js_composer/js_composer.php\";i:3;s:35:\"keydesign-addon/keydesign-addon.php\";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(36, 'comment_max_links', '2', 'yes'),
(37, 'gmt_offset', '0', 'yes'),
(38, 'default_email_category', '1', 'yes'),
(39, 'recently_edited', '', 'no'),
(40, 'template', 'sway', 'yes'),
(41, 'stylesheet', 'sway-child', 'yes'),
(42, 'comment_registration', '0', 'yes'),
(43, 'html_type', 'text/html', 'yes'),
(44, 'use_trackback', '0', 'yes'),
(45, 'default_role', 'subscriber', 'yes'),
(46, 'db_version', '49752', 'yes'),
(47, 'uploads_use_yearmonth_folders', '1', 'yes'),
(48, 'upload_path', '', 'yes'),
(49, 'blog_public', '1', 'yes'),
(50, 'default_link_category', '2', 'yes'),
(51, 'show_on_front', 'page', 'yes'),
(52, 'tag_base', '', 'yes'),
(53, 'show_avatars', '1', 'yes'),
(54, 'avatar_rating', 'G', 'yes'),
(55, 'upload_url_path', '', 'yes'),
(56, 'thumbnail_size_w', '150', 'yes'),
(57, 'thumbnail_size_h', '150', 'yes'),
(58, 'thumbnail_crop', '1', 'yes'),
(59, 'medium_size_w', '300', 'yes'),
(60, 'medium_size_h', '300', 'yes'),
(61, 'avatar_default', 'mystery', 'yes'),
(62, 'large_size_w', '1024', 'yes'),
(63, 'large_size_h', '1024', 'yes'),
(64, 'image_default_link_type', 'none', 'yes'),
(65, 'image_default_size', '', 'yes'),
(66, 'image_default_align', '', 'yes'),
(67, 'close_comments_for_old_posts', '0', 'yes'),
(68, 'close_comments_days_old', '14', 'yes'),
(69, 'thread_comments', '1', 'yes'),
(70, 'thread_comments_depth', '5', 'yes'),
(71, 'page_comments', '0', 'yes'),
(72, 'comments_per_page', '50', 'yes'),
(73, 'default_comments_page', 'newest', 'yes'),
(74, 'comment_order', 'asc', 'yes'),
(75, 'sticky_posts', 'a:0:{}', 'yes'),
(76, 'widget_categories', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(77, 'widget_text', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(78, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(79, 'uninstall_plugins', 'a:0:{}', 'no'),
(80, 'timezone_string', '', 'yes'),
(81, 'page_for_posts', '0', 'yes'),
(82, 'page_on_front', '7', 'yes'),
(83, 'default_post_format', '0', 'yes'),
(84, 'link_manager_enabled', '0', 'yes'),
(85, 'finished_splitting_shared_terms', '1', 'yes'),
(86, 'site_icon', '0', 'yes'),
(87, 'medium_large_size_w', '768', 'yes'),
(88, 'medium_large_size_h', '0', 'yes'),
(89, 'wp_page_for_privacy_policy', '3', 'yes'),
(90, 'show_comments_cookies_opt_in', '1', 'yes'),
(91, 'admin_email_lifespan', '1655916547', 'yes'),
(92, 'disallowed_keys', '', 'no'),
(93, 'comment_previously_approved', '1', 'yes'),
(94, 'auto_plugin_theme_update_emails', 'a:0:{}', 'no'),
(95, 'auto_update_core_dev', 'enabled', 'yes'),
(96, 'auto_update_core_minor', 'enabled', 'yes'),
(97, 'auto_update_core_major', 'enabled', 'yes'),
(98, 'wp_force_deactivated_plugins', 'a:0:{}', 'yes'),
(99, 'initial_db_version', '49752', 'yes'),
(100, 'wp_user_roles', 'a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:65:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:26:\"vc_access_rules_post_types\";s:6:\"custom\";s:31:\"vc_access_rules_post_types/page\";b:1;s:31:\"vc_access_rules_post_types/post\";b:1;s:36:\"vc_access_rules_post_types/portfolio\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:38:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:26:\"vc_access_rules_post_types\";s:6:\"custom\";s:31:\"vc_access_rules_post_types/page\";b:1;s:31:\"vc_access_rules_post_types/post\";b:1;s:36:\"vc_access_rules_post_types/portfolio\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:14:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:26:\"vc_access_rules_post_types\";s:6:\"custom\";s:31:\"vc_access_rules_post_types/page\";b:1;s:31:\"vc_access_rules_post_types/post\";b:1;s:36:\"vc_access_rules_post_types/portfolio\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:9:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:26:\"vc_access_rules_post_types\";s:6:\"custom\";s:31:\"vc_access_rules_post_types/page\";b:1;s:31:\"vc_access_rules_post_types/post\";b:1;s:36:\"vc_access_rules_post_types/portfolio\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:6:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;s:26:\"vc_access_rules_post_types\";s:6:\"custom\";s:31:\"vc_access_rules_post_types/page\";b:1;s:31:\"vc_access_rules_post_types/post\";b:1;s:36:\"vc_access_rules_post_types/portfolio\";b:1;}}}', 'yes'),
(101, 'fresh_site', '0', 'yes'),
(102, 'widget_block', 'a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(103, 'sidebars_widgets', 'a:11:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"blog-sidebar\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:12:\"shop-sidebar\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:12:\"page-sidebar\";a:0:{}s:24:\"footer-first-widget-area\";a:1:{i:0;s:13:\"media_image-2\";}s:25:\"footer-second-widget-area\";a:0:{}s:24:\"footer-third-widget-area\";a:0:{}s:25:\"footer-fourth-widget-area\";a:0:{}s:24:\"footer-fifth-widget-area\";a:0:{}s:24:\"footer-sixth-widget-area\";a:0:{}s:13:\"array_version\";i:3;}', 'yes'),
(104, 'cron', 'a:7:{i:1640591348;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1640623748;a:5:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1640623769;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1640623770;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1640971292;a:1:{s:34:\"redux-framework_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1641055748;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}', 'yes'),
(105, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(106, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(107, 'widget_archives', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(108, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(109, 'widget_media_image', 'a:2:{i:2;a:15:{s:4:\"size\";s:4:\"full\";s:5:\"width\";i:120;s:6:\"height\";i:124;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:41:\"https://adstechnolab.com/dev/autoatelier/\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:39;s:3:\"url\";s:115:\"https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Auto-Atelier_Icon_Transparenter-Hintergrund.png\";s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(110, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(111, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(112, 'widget_meta', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(113, 'widget_search', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(114, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(115, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(116, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(118, 'recovery_keys', 'a:0:{}', 'yes'),
(119, 'theme_mods_twentytwentyone', 'a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1640365195;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}', 'yes'),
(120, 'https_detection_errors', 'a:0:{}', 'yes'),
(121, '_site_transient_update_core', 'O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.8.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.8.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.8.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.8.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.8.2\";s:7:\"version\";s:5:\"5.8.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1640589559;s:15:\"version_checked\";s:5:\"5.8.2\";s:12:\"translations\";a:0:{}}', 'no'),
(128, '_site_transient_timeout_browser_d44bfba7ec2b67d9eb9e6c1eea55c253', '1640969370', 'no'),
(129, '_site_transient_browser_d44bfba7ec2b67d9eb9e6c1eea55c253', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"96.0.4664.110\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}', 'no'),
(130, '_site_transient_timeout_php_check_0260183cef5829810c63d4ec9ff87fd1', '1640969370', 'no'),
(131, '_site_transient_php_check_0260183cef5829810c63d4ec9ff87fd1', 'a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}', 'no'),
(133, 'can_compress_scripts', '1', 'no'),
(148, 'finished_updating_comment_type', '1', 'yes'),
(151, 'current_theme', 'Sway Child', 'yes'),
(152, 'theme_mods_sway', 'a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1640365566;s:4:\"data\";a:10:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"blog-sidebar\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:12:\"shop-sidebar\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:12:\"page-sidebar\";a:0:{}s:24:\"footer-first-widget-area\";a:0:{}s:25:\"footer-second-widget-area\";a:0:{}s:24:\"footer-third-widget-area\";a:0:{}s:25:\"footer-fourth-widget-area\";a:0:{}s:24:\"footer-fifth-widget-area\";a:0:{}s:24:\"footer-sixth-widget-area\";a:0:{}}}}', 'yes'),
(153, 'theme_switched', '', 'yes'),
(154, 'keydesign-verify', 'no', 'no'),
(155, 'envato_purchase_code_sway', '', 'no'),
(157, 'wpcf7', 'a:2:{s:7:\"version\";s:5:\"5.5.3\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1640365304;s:7:\"version\";s:5:\"5.5.3\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}', 'yes'),
(160, 'recently_activated', 'a:0:{}', 'yes'),
(161, 'widget_redux-social-icons-display', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(162, 'vc_version', '6.7.0', 'yes'),
(163, 'kd-default-post-types', 'yes', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(165, 'redux_ThemeTek', 'a:259:{s:8:\"last_tab\";s:0:\"\";s:18:\"tek-business-phone\";s:13:\"(222) 400-630\";s:28:\"tek-secondary-business-phone\";s:0:\"\";s:18:\"tek-business-email\";s:20:\"[email protected]\";s:26:\"tek-business-opening-hours\";s:24:\"Mon - Fri: 10:00 - 22:00\";s:19:\"tek-social-profiles\";a:95:{i:0;a:9:{s:2:\"id\";s:3:\"adn\";s:4:\"icon\";s:6:\"fa-adn\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:0;s:4:\"name\";s:3:\"ADN\";s:5:\"label\";s:8:\"Link URL\";}i:1;a:9:{s:2:\"id\";s:7:\"android\";s:4:\"icon\";s:10:\"fa-android\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#A4C639\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:1;s:4:\"name\";s:7:\"Android\";s:5:\"label\";s:8:\"Link URL\";}i:2;a:9:{s:2:\"id\";s:5:\"apple\";s:4:\"icon\";s:8:\"fa-apple\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#e4e4e5\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:2;s:4:\"name\";s:5:\"Apple\";s:5:\"label\";s:8:\"Link URL\";}i:3;a:9:{s:2:\"id\";s:7:\"behance\";s:4:\"icon\";s:10:\"fa-behance\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#1769ff\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:3;s:4:\"name\";s:7:\"behance\";s:5:\"label\";s:8:\"Link URL\";}i:4;a:9:{s:2:\"id\";s:14:\"behance-square\";s:4:\"icon\";s:17:\"fa-behance-square\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#1769ff\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:4;s:4:\"name\";s:14:\"behance square\";s:5:\"label\";s:8:\"Link URL\";}i:5;a:9:{s:2:\"id\";s:7:\"bitcoin\";s:4:\"icon\";s:6:\"fa-btc\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:5;s:4:\"name\";s:7:\"Bitcoin\";s:5:\"label\";s:8:\"Link URL\";}i:6;a:9:{s:2:\"id\";s:7:\"codepen\";s:4:\"icon\";s:10:\"fa-codepen\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:6;s:4:\"name\";s:7:\"CodePen\";s:5:\"label\";s:8:\"Link URL\";}i:7;a:9:{s:2:\"id\";s:4:\"css3\";s:4:\"icon\";s:7:\"fa-css3\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:7;s:4:\"name\";s:4:\"CSS3\";s:5:\"label\";s:8:\"Link URL\";}i:8;a:9:{s:2:\"id\";s:9:\"delicious\";s:4:\"icon\";s:12:\"fa-delicious\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#3399ff\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:8;s:4:\"name\";s:9:\"Delicious\";s:5:\"label\";s:8:\"Link URL\";}i:9;a:9:{s:2:\"id\";s:10:\"deviantart\";s:4:\"icon\";s:13:\"fa-deviantart\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#4e6252\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:9;s:4:\"name\";s:10:\"Deviantart\";s:5:\"label\";s:8:\"Link URL\";}i:10;a:9:{s:2:\"id\";s:4:\"digg\";s:4:\"icon\";s:7:\"fa-digg\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:10;s:4:\"name\";s:4:\"Digg\";s:5:\"label\";s:8:\"Link URL\";}i:11;a:9:{s:2:\"id\";s:8:\"dribbble\";s:4:\"icon\";s:11:\"fa-dribbble\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#444444\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:11;s:4:\"name\";s:8:\"Dribbble\";s:5:\"label\";s:8:\"Link URL\";}i:12;a:9:{s:2:\"id\";s:7:\"dropbox\";s:4:\"icon\";s:10:\"fa-dropbox\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#007ee5\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:12;s:4:\"name\";s:7:\"Dropbox\";s:5:\"label\";s:8:\"Link URL\";}i:13;a:9:{s:2:\"id\";s:6:\"drupal\";s:4:\"icon\";s:9:\"fa-drupal\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#0077c0\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:13;s:4:\"name\";s:6:\"Drupal\";s:5:\"label\";s:8:\"Link URL\";}i:14;a:9:{s:2:\"id\";s:6:\"empire\";s:4:\"icon\";s:9:\"fa-empire\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:14;s:4:\"name\";s:6:\"Empire\";s:5:\"label\";s:8:\"Link URL\";}i:15;a:9:{s:2:\"id\";s:10:\"facebook-f\";s:4:\"icon\";s:13:\"fa-facebook-f\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#3b5998\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:15;s:4:\"name\";s:8:\"Facebook\";s:5:\"label\";s:8:\"Link URL\";}i:16;a:9:{s:2:\"id\";s:15:\"facebook-square\";s:4:\"icon\";s:18:\"fa-facebook-square\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#3b5998\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:16;s:4:\"name\";s:15:\"Facebook square\";s:5:\"label\";s:8:\"Link URL\";}i:17;a:9:{s:2:\"id\";s:6:\"flickr\";s:4:\"icon\";s:9:\"fa-flickr\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#0063dc\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:17;s:4:\"name\";s:6:\"Flickr\";s:5:\"label\";s:8:\"Link URL\";}i:18;a:9:{s:2:\"id\";s:10:\"foursquare\";s:4:\"icon\";s:13:\"fa-foursquare\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#0072b1\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:18;s:4:\"name\";s:10:\"FourSquare\";s:5:\"label\";s:8:\"Link URL\";}i:19;a:9:{s:2:\"id\";s:3:\"git\";s:4:\"icon\";s:6:\"fa-git\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:19;s:4:\"name\";s:3:\"git\";s:5:\"label\";s:8:\"Link URL\";}i:20;a:9:{s:2:\"id\";s:10:\"git-square\";s:4:\"icon\";s:13:\"fa-git-square\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:20;s:4:\"name\";s:10:\"git square\";s:5:\"label\";s:8:\"Link URL\";}i:21;a:9:{s:2:\"id\";s:6:\"github\";s:4:\"icon\";s:9:\"fa-github\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#4183c4\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:21;s:4:\"name\";s:6:\"github\";s:5:\"label\";s:8:\"Link URL\";}i:22;a:9:{s:2:\"id\";s:10:\"github-alt\";s:4:\"icon\";s:13:\"fa-github-alt\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#4183c4\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:22;s:4:\"name\";s:10:\"github alt\";s:5:\"label\";s:8:\"Link URL\";}i:23;a:9:{s:2:\"id\";s:8:\"gratipay\";s:4:\"icon\";s:11:\"fa-gratipay\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:24;s:4:\"name\";s:8:\"gratipay\";s:5:\"label\";s:8:\"Link URL\";}i:24;a:9:{s:2:\"id\";s:6:\"google\";s:4:\"icon\";s:9:\"fa-google\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#dd4b39\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:25;s:4:\"name\";s:6:\"Google\";s:5:\"label\";s:8:\"Link URL\";}i:25;a:9:{s:2:\"id\";s:18:\"google-plus-square\";s:4:\"icon\";s:21:\"fa-google-plus-square\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#dd4b39\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:26;s:4:\"name\";s:18:\"Google Plus square\";s:5:\"label\";s:8:\"Link URL\";}i:26;a:9:{s:2:\"id\";s:11:\"hacker-news\";s:4:\"icon\";s:14:\"fa-hacker-news\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#ff6600\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:27;s:4:\"name\";s:11:\"Hacker News\";s:5:\"label\";s:8:\"Link URL\";}i:27;a:9:{s:2:\"id\";s:5:\"html5\";s:4:\"icon\";s:8:\"fa-html5\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#e34f26\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:28;s:4:\"name\";s:5:\"HTML5\";s:5:\"label\";s:8:\"Link URL\";}i:28;a:9:{s:2:\"id\";s:9:\"instagram\";s:4:\"icon\";s:12:\"fa-instagram\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#3f729b\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:29;s:4:\"name\";s:9:\"Instagram\";s:5:\"label\";s:8:\"Link URL\";}i:29;a:9:{s:2:\"id\";s:6:\"joomla\";s:4:\"icon\";s:9:\"fa-joomla\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:30;s:4:\"name\";s:6:\"Joomla\";s:5:\"label\";s:8:\"Link URL\";}i:30;a:9:{s:2:\"id\";s:8:\"jsfiddle\";s:4:\"icon\";s:11:\"fa-jsfiddle\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:31;s:4:\"name\";s:9:\"JS Fiddle\";s:5:\"label\";s:8:\"Link URL\";}i:31;a:9:{s:2:\"id\";s:11:\"linkedin-in\";s:4:\"icon\";s:14:\"fa-linkedin-in\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#0976b4\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:32;s:4:\"name\";s:8:\"LinkedIn\";s:5:\"label\";s:8:\"Link URL\";}i:32;a:9:{s:2:\"id\";s:8:\"linkedin\";s:4:\"icon\";s:11:\"fa-linkedin\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#0976b4\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:33;s:4:\"name\";s:15:\"LinkedIn square\";s:5:\"label\";s:8:\"Link URL\";}i:33;a:9:{s:2:\"id\";s:5:\"linux\";s:4:\"icon\";s:8:\"fa-linux\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#333333\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:34;s:4:\"name\";s:5:\"Linux\";s:5:\"label\";s:8:\"Link URL\";}i:34;a:9:{s:2:\"id\";s:6:\"maxcdn\";s:4:\"icon\";s:9:\"fa-maxcdn\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#f8711e\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:35;s:4:\"name\";s:6:\"MaxCDN\";s:5:\"label\";s:8:\"Link URL\";}i:35;a:9:{s:2:\"id\";s:6:\"openid\";s:4:\"icon\";s:9:\"fa-openid\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:36;s:4:\"name\";s:6:\"OpenID\";s:5:\"label\";s:8:\"Link URL\";}i:36;a:9:{s:2:\"id\";s:9:\"pagelines\";s:4:\"icon\";s:12:\"fa-pagelines\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:37;s:4:\"name\";s:10:\"Page Lines\";s:5:\"label\";s:8:\"Link URL\";}i:37;a:9:{s:2:\"id\";s:10:\"pied-piper\";s:4:\"icon\";s:13:\"fa-pied-piper\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:38;s:4:\"name\";s:10:\"Pied Piper\";s:5:\"label\";s:8:\"Link URL\";}i:38;a:9:{s:2:\"id\";s:14:\"pied-piper-alt\";s:4:\"icon\";s:17:\"fa-pied-piper-alt\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:39;s:4:\"name\";s:14:\"Pied Piper alt\";s:5:\"label\";s:8:\"Link URL\";}i:39;a:9:{s:2:\"id\";s:9:\"pinterest\";s:4:\"icon\";s:12:\"fa-pinterest\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#1769ff\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:40;s:4:\"name\";s:9:\"Pinterest\";s:5:\"label\";s:8:\"Link URL\";}i:40;a:9:{s:2:\"id\";s:16:\"pinterest-square\";s:4:\"icon\";s:19:\"fa-pinterest-square\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#1769ff\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:41;s:4:\"name\";s:16:\"Pinterest square\";s:5:\"label\";s:8:\"Link URL\";}i:41;a:9:{s:2:\"id\";s:2:\"qq\";s:4:\"icon\";s:5:\"fa-qq\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:42;s:4:\"name\";s:2:\"QQ\";s:5:\"label\";s:8:\"Link URL\";}i:42;a:9:{s:2:\"id\";s:5:\"rebel\";s:4:\"icon\";s:8:\"fa-rebel\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#517fa4\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:43;s:4:\"name\";s:5:\"Rebel\";s:5:\"label\";s:8:\"Link URL\";}i:43;a:9:{s:2:\"id\";s:6:\"reddit\";s:4:\"icon\";s:9:\"fa-reddit\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#ff4500\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:44;s:4:\"name\";s:6:\"Reddit\";s:5:\"label\";s:8:\"Link URL\";}i:44;a:9:{s:2:\"id\";s:13:\"reddit-square\";s:4:\"icon\";s:16:\"fa-reddit-square\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#ff4500\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:45;s:4:\"name\";s:13:\"Reddit square\";s:5:\"label\";s:8:\"Link URL\";}i:45;a:9:{s:2:\"id\";s:6:\"renren\";s:4:\"icon\";s:9:\"fa-renren\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#007bb6\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:46;s:4:\"name\";s:7:\"Ren Ren\";s:5:\"label\";s:8:\"Link URL\";}i:46;a:9:{s:2:\"id\";s:5:\"skype\";s:4:\"icon\";s:8:\"fa-skype\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#00aff0\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:47;s:4:\"name\";s:5:\"Skype\";s:5:\"label\";s:8:\"Link URL\";}i:47;a:9:{s:2:\"id\";s:5:\"slack\";s:4:\"icon\";s:8:\"fa-slack\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:48;s:4:\"name\";s:5:\"Slack\";s:5:\"label\";s:8:\"Link URL\";}i:48;a:9:{s:2:\"id\";s:10:\"soundcloud\";s:4:\"icon\";s:13:\"fa-soundcloud\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:4:\"#f80\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:49;s:4:\"name\";s:11:\"Sound Cloud\";s:5:\"label\";s:8:\"Link URL\";}i:49;a:9:{s:2:\"id\";s:7:\"spotify\";s:4:\"icon\";s:10:\"fa-spotify\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7ab800\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:50;s:4:\"name\";s:7:\"Spotify\";s:5:\"label\";s:8:\"Link URL\";}i:50;a:9:{s:2:\"id\";s:14:\"stack-exchange\";s:4:\"icon\";s:17:\"fa-stack-exchange\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:51;s:4:\"name\";s:14:\"Stack Exchange\";s:5:\"label\";s:8:\"Link URL\";}i:51;a:9:{s:2:\"id\";s:14:\"stack-overflow\";s:4:\"icon\";s:17:\"fa-stack-overflow\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#fe7a15\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:52;s:4:\"name\";s:14:\"Stack Overflow\";s:5:\"label\";s:8:\"Link URL\";}i:52;a:9:{s:2:\"id\";s:5:\"steam\";s:4:\"icon\";s:8:\"fa-steam\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:53;s:4:\"name\";s:5:\"Steam\";s:5:\"label\";s:8:\"Link URL\";}i:53;a:9:{s:2:\"id\";s:12:\"steam-square\";s:4:\"icon\";s:15:\"fa-steam-square\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:54;s:4:\"name\";s:12:\"Steam square\";s:5:\"label\";s:8:\"Link URL\";}i:54;a:9:{s:2:\"id\";s:11:\"stumbleupon\";s:4:\"icon\";s:14:\"fa-stumbleupon\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#eb4924\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:55;s:4:\"name\";s:12:\"Stumble Upon\";s:5:\"label\";s:8:\"Link URL\";}i:55;a:9:{s:2:\"id\";s:18:\"stumbleupon-circle\";s:4:\"icon\";s:21:\"fa-stumbleupon-circle\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#eb4924\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:56;s:4:\"name\";s:19:\"Stumble Upon circle\";s:5:\"label\";s:8:\"Link URL\";}i:56;a:9:{s:2:\"id\";s:13:\"tencent-weibo\";s:4:\"icon\";s:16:\"fa-tencent-weibo\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:57;s:4:\"name\";s:13:\"Tencent Weibo\";s:5:\"label\";s:8:\"Link URL\";}i:57;a:9:{s:2:\"id\";s:6:\"trello\";s:4:\"icon\";s:9:\"fa-trello\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#256a92\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:58;s:4:\"name\";s:6:\"Trello\";s:5:\"label\";s:8:\"Link URL\";}i:58;a:9:{s:2:\"id\";s:7:\"twitter\";s:4:\"icon\";s:10:\"fa-twitter\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#55acee\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:59;s:4:\"name\";s:7:\"Twitter\";s:5:\"label\";s:8:\"Link URL\";}i:59;a:9:{s:2:\"id\";s:14:\"twitter-square\";s:4:\"icon\";s:17:\"fa-twitter-square\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#55acee\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:60;s:4:\"name\";s:14:\"Twitter square\";s:5:\"label\";s:8:\"Link URL\";}i:60;a:9:{s:2:\"id\";s:12:\"vimeo-square\";s:4:\"icon\";s:15:\"fa-vimeo-square\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#1ab7ea\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:61;s:4:\"name\";s:12:\"Vimeo square\";s:5:\"label\";s:8:\"Link URL\";}i:61;a:9:{s:2:\"id\";s:4:\"vine\";s:4:\"icon\";s:7:\"fa-vine\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#00b488\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:62;s:4:\"name\";s:4:\"Vine\";s:5:\"label\";s:8:\"Link URL\";}i:62;a:9:{s:2:\"id\";s:2:\"vk\";s:4:\"icon\";s:5:\"fa-vk\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:63;s:4:\"name\";s:2:\"VK\";s:5:\"label\";s:8:\"Link URL\";}i:63;a:9:{s:2:\"id\";s:5:\"weibo\";s:4:\"icon\";s:8:\"fa-weibo\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:64;s:4:\"name\";s:5:\"Weibo\";s:5:\"label\";s:8:\"Link URL\";}i:64;a:9:{s:2:\"id\";s:6:\"weixin\";s:4:\"icon\";s:9:\"fa-weixin\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:65;s:4:\"name\";s:6:\"Weixin\";s:5:\"label\";s:8:\"Link URL\";}i:65;a:9:{s:2:\"id\";s:7:\"windows\";s:4:\"icon\";s:10:\"fa-windows\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#00bcf2\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:66;s:4:\"name\";s:7:\"Windows\";s:5:\"label\";s:8:\"Link URL\";}i:66;a:9:{s:2:\"id\";s:9:\"wordpress\";s:4:\"icon\";s:12:\"fa-wordpress\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#21759b\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:67;s:4:\"name\";s:9:\"WordPress\";s:5:\"label\";s:8:\"Link URL\";}i:67;a:9:{s:2:\"id\";s:4:\"xing\";s:4:\"icon\";s:7:\"fa-xing\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#026466\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:68;s:4:\"name\";s:4:\"Xing\";s:5:\"label\";s:8:\"Link URL\";}i:68;a:9:{s:2:\"id\";s:11:\"xing-square\";s:4:\"icon\";s:14:\"fa-xing-square\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#026466\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:69;s:4:\"name\";s:11:\"Xing square\";s:5:\"label\";s:8:\"Link URL\";}i:69;a:9:{s:2:\"id\";s:5:\"yahoo\";s:4:\"icon\";s:8:\"fa-yahoo\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#400191\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:70;s:4:\"name\";s:5:\"Yahoo\";s:5:\"label\";s:8:\"Link URL\";}i:70;a:9:{s:2:\"id\";s:4:\"yelp\";s:4:\"icon\";s:7:\"fa-yelp\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#C93C27\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:71;s:4:\"name\";s:4:\"Yelp\";s:5:\"label\";s:8:\"Link URL\";}i:71;a:9:{s:2:\"id\";s:7:\"youtube\";s:4:\"icon\";s:10:\"fa-youtube\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#e52d27\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:72;s:4:\"name\";s:7:\"YouTube\";s:5:\"label\";s:8:\"Link URL\";}i:72;a:9:{s:2:\"id\";s:14:\"youtube-square\";s:4:\"icon\";s:17:\"fa-youtube-square\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#e52d27\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:73;s:4:\"name\";s:14:\"YouTube square\";s:5:\"label\";s:8:\"Link URL\";}i:73;a:9:{s:2:\"id\";s:8:\"whatsapp\";s:4:\"icon\";s:11:\"fa-whatsapp\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#25D366\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:74;s:4:\"name\";s:8:\"WhatsApp\";s:5:\"label\";s:8:\"Link URL\";}i:74;a:9:{s:2:\"id\";s:8:\"telegram\";s:4:\"icon\";s:11:\"fa-telegram\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#0088cc\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:75;s:4:\"name\";s:8:\"Telegram\";s:5:\"label\";s:8:\"Link URL\";}i:75;a:9:{s:2:\"id\";s:11:\"tripadvisor\";s:4:\"icon\";s:14:\"fa-tripadvisor\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#00af87\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:76;s:4:\"name\";s:11:\"TripAdvisor\";s:5:\"label\";s:8:\"Link URL\";}i:76;a:9:{s:2:\"id\";s:6:\"medium\";s:4:\"icon\";s:9:\"fa-medium\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#00ab6c\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:77;s:4:\"name\";s:13:\"Medium Square\";s:5:\"label\";s:8:\"Link URL\";}i:77;a:9:{s:2:\"id\";s:5:\"viber\";s:4:\"icon\";s:8:\"fa-viber\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7360f2\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:78;s:4:\"name\";s:5:\"Viber\";s:5:\"label\";s:8:\"Link URL\";}i:78;a:9:{s:2:\"id\";s:6:\"tiktok\";s:4:\"icon\";s:9:\"fa-tiktok\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:79;s:4:\"name\";s:6:\"Tiktok\";s:5:\"label\";s:8:\"Link URL\";}i:79;a:9:{s:2:\"id\";s:6:\"airbnb\";s:4:\"icon\";s:9:\"fa-airbnb\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:80;s:4:\"name\";s:6:\"Airbnb\";s:5:\"label\";s:8:\"Link URL\";}i:80;a:9:{s:2:\"id\";s:6:\"amazon\";s:4:\"icon\";s:9:\"fa-amazon\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:81;s:4:\"name\";s:6:\"Amazon\";s:5:\"label\";s:8:\"Link URL\";}i:81;a:9:{s:2:\"id\";s:8:\"bandcamp\";s:4:\"icon\";s:11:\"fa-bandcamp\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:82;s:4:\"name\";s:8:\"Bandcamp\";s:5:\"label\";s:8:\"Link URL\";}i:82;a:9:{s:2:\"id\";s:7:\"blogger\";s:4:\"icon\";s:10:\"fa-blogger\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:83;s:4:\"name\";s:7:\"Blogger\";s:5:\"label\";s:8:\"Link URL\";}i:83;a:9:{s:2:\"id\";s:7:\"discord\";s:4:\"icon\";s:10:\"fa-discord\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:84;s:4:\"name\";s:7:\"Discord\";s:5:\"label\";s:8:\"Link URL\";}i:84;a:9:{s:2:\"id\";s:9:\"goodreads\";s:4:\"icon\";s:12:\"fa-goodreads\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:85;s:4:\"name\";s:9:\"Goodreads\";s:5:\"label\";s:8:\"Link URL\";}i:85;a:9:{s:2:\"id\";s:11:\"google-play\";s:4:\"icon\";s:14:\"fa-google-play\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:86;s:4:\"name\";s:11:\"Google Play\";s:5:\"label\";s:8:\"Link URL\";}i:86;a:9:{s:2:\"id\";s:5:\"houzz\";s:4:\"icon\";s:8:\"fa-houzz\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:87;s:4:\"name\";s:5:\"Houzz\";s:5:\"label\";s:8:\"Link URL\";}i:87;a:9:{s:2:\"id\";s:11:\"kickstarter\";s:4:\"icon\";s:14:\"fa-kickstarter\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:88;s:4:\"name\";s:11:\"Kickstarter\";s:5:\"label\";s:8:\"Link URL\";}i:88;a:9:{s:2:\"id\";s:7:\"patreon\";s:4:\"icon\";s:10:\"fa-patreon\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:89;s:4:\"name\";s:7:\"Patreon\";s:5:\"label\";s:8:\"Link URL\";}i:89;a:9:{s:2:\"id\";s:5:\"quora\";s:4:\"icon\";s:8:\"fa-quora\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:90;s:4:\"name\";s:5:\"Quora\";s:5:\"label\";s:8:\"Link URL\";}i:90;a:9:{s:2:\"id\";s:8:\"snapchat\";s:4:\"icon\";s:11:\"fa-snapchat\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:91;s:4:\"name\";s:8:\"Snapchat\";s:5:\"label\";s:8:\"Link URL\";}i:91;a:9:{s:2:\"id\";s:6:\"tumblr\";s:4:\"icon\";s:9:\"fa-tumblr\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:92;s:4:\"name\";s:6:\"Tumblr\";s:5:\"label\";s:8:\"Link URL\";}i:92;a:9:{s:2:\"id\";s:6:\"twitch\";s:4:\"icon\";s:9:\"fa-twitch\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:93;s:4:\"name\";s:6:\"Twitch\";s:5:\"label\";s:8:\"Link URL\";}i:93;a:9:{s:2:\"id\";s:9:\"app-store\";s:4:\"icon\";s:12:\"fa-app-store\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:94;s:4:\"name\";s:9:\"App Store\";s:5:\"label\";s:8:\"Link URL\";}i:94;a:9:{s:2:\"id\";s:7:\"map-pin\";s:4:\"icon\";s:17:\"fa-map-marker-alt\";s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:0:\"\";s:5:\"order\";i:95;s:4:\"name\";s:7:\"Map Pin\";s:5:\"label\";s:8:\"Link URL\";}}s:17:\"tek-smooth-scroll\";s:1:\"1\";s:14:\"tek-google-api\";s:0:\"\";s:22:\"tek-disable-animations\";s:1:\"1\";s:11:\"tek-favicon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"tek-main-color\";s:7:\"#E0BE79\";s:19:\"tek-secondary-color\";s:7:\"#FFFFFF\";s:18:\"tek-titlebar-color\";s:7:\"#FFFFFF\";s:23:\"tek-titlebar-text-color\";s:7:\"#FFFFFF\";s:14:\"tek-link-color\";a:2:{s:7:\"regular\";s:7:\"#ffffff\";s:5:\"hover\";s:7:\"#e0be79\";}s:13:\"tek-preloader\";s:1:\"1\";s:22:\"tek-preloader-bg-color\";s:0:\"\";s:19:\"tek-preloader-image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:32:\"tek-preloader-image-size-desktop\";s:0:\"\";s:31:\"tek-preloader-image-size-mobile\";s:0:\"\";s:13:\"tek-backtotop\";s:1:\"1\";s:22:\"tek-backtotop-position\";s:13:\"right-aligned\";s:26:\"tek-backtotop-scroll-style\";s:21:\"scroll-position-style\";s:14:\"tek-menu-style\";s:1:\"1\";s:18:\"tek-menu-behaviour\";s:1:\"1\";s:18:\"tek-header-spacing\";s:2:\"15\";s:18:\"tek-header-menu-bg\";s:7:\"#000000\";s:25:\"tek-header-menu-bg-sticky\";s:7:\"#000000\";s:17:\"tek-topbar-search\";s:1:\"0\";s:25:\"tek-woo-display-cart-icon\";s:1:\"0\";s:26:\"tek-woo-cart-icon-selector\";s:13:\"shopping-cart\";s:29:\"tek-woo-display-wishlist-icon\";s:1:\"0\";s:18:\"tek-logo-alignment\";s:9:\"logo-left\";s:16:\"tek-logo-spacing\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:14:\"tek-logo-style\";s:1:\"1\";s:8:\"tek-logo\";a:5:{s:3:\"url\";s:76:\"https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Logo.png\";s:2:\"id\";s:2:\"13\";s:6:\"height\";s:2:\"66\";s:5:\"width\";s:3:\"291\";s:9:\"thumbnail\";s:83:\"https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Logo-150x66.png\";}s:9:\"tek-logo2\";a:5:{s:3:\"url\";s:76:\"https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Logo.png\";s:2:\"id\";s:2:\"13\";s:6:\"height\";s:2:\"66\";s:5:\"width\";s:3:\"291\";s:9:\"thumbnail\";s:83:\"https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Logo-150x66.png\";}s:19:\"tek-sticky-nav-logo\";s:16:\"nav-primary-logo\";s:24:\"tek-transparent-nav-logo\";s:18:\"nav-secondary-logo\";s:19:\"tek-logo-image-size\";s:0:\"\";s:26:\"tek-mobile-logo-image-size\";s:0:\"\";s:13:\"tek-text-logo\";s:4:\"Sway\";s:18:\"tek-text-logo-typo\";a:8:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:19:\"tek-main-logo-color\";s:0:\"\";s:24:\"tek-secondary-logo-color\";s:0:\"\";s:18:\"tek-menu-alignment\";s:14:\"main-nav-right\";s:13:\"tek-menu-typo\";a:9:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:4:\"20px\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"tek-header-menu-color\";s:0:\"\";s:27:\"tek-header-menu-color-hover\";s:0:\"\";s:28:\"tek-header-menu-color-sticky\";s:0:\"\";s:34:\"tek-header-menu-color-sticky-hover\";s:0:\"\";s:22:\"tek-dropdown-nav-hover\";s:26:\"background-dropdown-effect\";s:36:\"tek-transparent-homepage-menu-colors\";s:0:\"\";s:10:\"tek-topbar\";s:1:\"0\";s:17:\"tek-topbar-sticky\";s:0:\"\";s:17:\"tek-topbar-mobile\";s:1:\"1\";s:23:\"tek-topbar-left-content\";s:12:\"contact-info\";s:24:\"tek-topbar-right-content\";s:12:\"social-links\";s:25:\"tek-topbar-content-design\";s:16:\"tb-border-design\";s:15:\"tek-topbar-typo\";a:7:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";}s:19:\"tek-topbar-bg-color\";s:0:\"\";s:21:\"tek-topbar-text-color\";s:0:\"\";s:27:\"tek-topbar-hover-text-color\";s:0:\"\";s:16:\"tek-modal-button\";s:0:\"\";s:22:\"tek-header-button-text\";s:11:\"Get a quote\";s:23:\"tek-header-button-style\";s:14:\"outline-button\";s:23:\"tek-header-button-color\";s:13:\"primary-color\";s:29:\"tek-header-button-hover-style\";s:18:\"default_header_btn\";s:24:\"tek-header-button-action\";s:1:\"1\";s:15:\"tek-modal-title\";s:18:\"Let\'s get in touch\";s:18:\"tek-modal-subtitle\";s:0:\"\";s:18:\"tek-modal-bg-image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:23:\"tek-modal-contact-links\";s:1:\"1\";s:17:\"tek-modal-socials\";s:1:\"1\";s:21:\"tek-modal-form-select\";s:1:\"1\";s:26:\"tek-modal-contactf7-formid\";s:0:\"\";s:22:\"tek-modal-ninja-formid\";s:0:\"\";s:24:\"tek-modal-gravity-formid\";s:0:\"\";s:19:\"tek-modal-wp-formid\";s:0:\"\";s:30:\"tek-modal-other-form-shortcode\";s:0:\"\";s:19:\"tek-modal-css-class\";s:0:\"\";s:13:\"tek-scroll-id\";s:14:\"#download-sway\";s:19:\"tek-button-new-page\";s:1:\"#\";s:17:\"tek-button-target\";s:8:\"new-page\";s:16:\"tek-panel-button\";s:1:\"0\";s:21:\"tek-panel-button-text\";s:13:\"Purchase Sway\";s:22:\"tek-panel-button-style\";s:12:\"solid-button\";s:22:\"tek-panel-button-color\";s:13:\"primary-color\";s:28:\"tek-panel-button-hover-style\";s:18:\"default_header_btn\";s:23:\"tek-panel-button-action\";s:1:\"1\";s:15:\"tek-panel-title\";s:11:\"Enquire now\";s:18:\"tek-panel-subtitle\";s:135:\"Give us a call or fill in the form below and we will contact you. We endeavor to answer all inquiries within 24 hours on business days.\";s:23:\"tek-panel-contact-links\";s:1:\"1\";s:17:\"tek-panel-socials\";s:1:\"1\";s:21:\"tek-panel-form-select\";s:1:\"1\";s:26:\"tek-panel-contactf7-formid\";s:0:\"\";s:22:\"tek-panel-ninja-formid\";s:0:\"\";s:24:\"tek-panel-gravity-formid\";s:0:\"\";s:19:\"tek-panel-wp-formid\";s:0:\"\";s:30:\"tek-panel-other-form-shortcode\";s:0:\"\";s:19:\"tek-panel-css-class\";s:0:\"\";s:19:\"tek-panel-scroll-id\";s:14:\"#download-sway\";s:25:\"tek-panel-button-new-page\";s:1:\"#\";s:23:\"tek-panel-button-target\";s:8:\"new-page\";s:16:\"tek-layout-style\";s:10:\"full-width\";s:22:\"tek-layout-boxed-width\";s:4:\"1560\";s:24:\"tek-layout-boxed-body-bg\";a:7:{s:16:\"background-color\";s:0:\"\";s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:24:\"tek-layout-fw-content-bg\";s:7:\"#000000\";s:16:\"tek-footer-width\";s:9:\"contained\";s:16:\"tek-footer-fixed\";s:1:\"0\";s:14:\"tek-footer-bar\";s:1:\"0\";s:22:\"tek-upper-footer-color\";s:7:\"#000000\";s:22:\"tek-lower-footer-color\";s:7:\"#000000\";s:27:\"tek-footer-background-image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:27:\"tek-footer-background-style\";s:5:\"cover\";s:36:\"tek-footer-background-image-position\";s:8:\"left top\";s:15:\"tek-footer-typo\";a:9:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:24:\"tek-footer-heading-color\";s:7:\"#FFFFFF\";s:21:\"tek-footer-text-color\";s:7:\"#BDBEC8\";s:21:\"tek-footer-link-color\";a:2:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:28:\"tek-footer-link-hover-effect\";s:16:\"underline-effect\";s:16:\"tek-upper-footer\";s:1:\"1\";s:30:\"tek-footer-first-widget-switch\";s:1:\"1\";s:29:\"tek-footer-first-widget-width\";s:1:\"2\";s:34:\"tek-footer-first-widget-text-align\";s:11:\"text-center\";s:31:\"tek-footer-second-widget-switch\";s:1:\"0\";s:30:\"tek-footer-second-widget-width\";s:1:\"2\";s:35:\"tek-footer-second-widget-text-align\";s:9:\"text-left\";s:30:\"tek-footer-third-widget-switch\";s:1:\"0\";s:29:\"tek-footer-third-widget-width\";s:1:\"2\";s:34:\"tek-footer-third-widget-text-align\";s:9:\"text-left\";s:31:\"tek-footer-fourth-widget-switch\";s:1:\"0\";s:30:\"tek-footer-fourth-widget-width\";s:1:\"2\";s:35:\"tek-footer-fourth-widget-text-align\";s:9:\"text-left\";s:30:\"tek-footer-fifth-widget-switch\";s:1:\"0\";s:29:\"tek-footer-fifth-widget-width\";s:1:\"2\";s:34:\"tek-footer-fifth-widget-text-align\";s:9:\"text-left\";s:30:\"tek-footer-sixth-widget-switch\";s:0:\"\";s:29:\"tek-footer-sixth-widget-width\";s:1:\"2\";s:34:\"tek-footer-sixth-widget-text-align\";s:9:\"text-left\";s:23:\"tek-lower-footer-switch\";s:1:\"1\";s:15:\"tek-footer-text\";s:45:\"© 2022 Auto Atelier AG. All Rights Reserved.\";s:30:\"tek-footer-copyright-alignment\";s:16:\"copyright-center\";s:16:\"tek-default-typo\";a:9:{s:11:\"font-family\";s:16:\"Playfair Display\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:4:\"24px\";s:5:\"color\";s:7:\"#ffffff\";}s:14:\"tek-h1-heading\";a:12:{s:11:\"font-family\";s:16:\"Playfair Display\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:7:\"#ffffff\";}s:14:\"tek-h2-heading\";a:12:{s:11:\"font-family\";s:16:\"Playfair Display\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:4:\"40px\";s:11:\"line-height\";s:4:\"40px\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:7:\"#ffffff\";}s:14:\"tek-h3-heading\";a:12:{s:11:\"font-family\";s:16:\"Playfair Display\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:7:\"#ffffff\";}s:14:\"tek-h4-heading\";a:12:{s:11:\"font-family\";s:16:\"Playfair Display\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:7:\"#ffffff\";}s:14:\"tek-h5-heading\";a:12:{s:11:\"font-family\";s:16:\"Playfair Display\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:7:\"#ffffff\";}s:14:\"tek-h6-heading\";a:12:{s:11:\"font-family\";s:16:\"Playfair Display\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:7:\"#ffffff\";}s:18:\"tek-typekit-switch\";s:1:\"0\";s:11:\"tek-typekit\";s:0:\"\";s:25:\"tek-body-typekit-selector\";s:0:\"\";s:28:\"tek-heading-typekit-selector\";s:0:\"\";s:23:\"tek-custom-fonts-switch\";s:1:\"0\";s:20:\"tek-primary-ttf-font\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:21:\"tek-primary-woff-font\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:22:\"tek-secondary-ttf-font\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:23:\"tek-secondary-woff-font\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:20:\"tek-body-custom-font\";s:0:\"\";s:24:\"tek-headings-custom-font\";s:0:\"\";s:23:\"tek-default-typo-mobile\";a:6:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}s:21:\"tek-h1-heading-mobile\";a:6:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}s:21:\"tek-h2-heading-mobile\";a:6:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}s:21:\"tek-h3-heading-mobile\";a:6:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}s:21:\"tek-h4-heading-mobile\";a:6:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}s:21:\"tek-h5-heading-mobile\";a:6:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}s:21:\"tek-h6-heading-mobile\";a:6:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}s:17:\"tek-portfolio-cpt\";s:1:\"1\";s:18:\"tek-portfolio-slug\";s:0:\"\";s:24:\"tek-portfolio-single-nav\";s:0:\"\";s:27:\"tek-portfolio-nav-prev-text\";s:0:\"\";s:27:\"tek-portfolio-nav-next-text\";s:0:\"\";s:27:\"tek-portfolio-related-posts\";s:1:\"1\";s:33:\"tek-portfolio-related-posts-title\";s:16:\"Related projects\";s:34:\"tek-portfolio-related-posts-number\";s:1:\"3\";s:39:\"tek-portfolio-related-posts-button-text\";s:12:\"View project\";s:22:\"tek-portfolio-comments\";s:0:\"\";s:24:\"tek-blog-transparent-nav\";s:1:\"1\";s:24:\"tek-blog-header-template\";s:20:\"blog-header-titlebar\";s:17:\"tek-blog-template\";s:12:\"img-top-list\";s:16:\"tek-blog-sidebar\";s:1:\"1\";s:31:\"tek-blog-listing-sticky-sidebar\";s:0:\"\";s:16:\"tek-blog-excerpt\";s:2:\"20\";s:23:\"tek-blog-read-more-text\";s:0:\"\";s:21:\"tek-blog-title-switch\";s:1:\"1\";s:17:\"tek-blog-subtitle\";s:159:\"This is where you can find the latest news and insights about Sway — new products, in-depth interviews and successfully finished projects. Never miss a beat.\";s:26:\"tek-blog-header-text-align\";s:17:\"blog-title-center\";s:28:\"tek-blog-titlebar-background\";s:0:\"\";s:19:\"tek-blog-text-color\";s:0:\"\";s:33:\"tek-blog-featured-background-size\";s:4:\"auto\";s:37:\"tek-blog-featured-background-position\";s:6:\"bottom\";s:28:\"tek-blog-header-slider-alias\";s:0:\"\";s:33:\"tek-blog-subscribe-section-switch\";s:0:\"\";s:31:\"tek-blog-subscribe-section-show\";s:14:\"all-blog-pages\";s:32:\"tek-blog-subscribe-section-title\";s:27:\"Subscribe to our newsletter\";s:35:\"tek-blog-subscribe-section-subtitle\";s:0:\"\";s:34:\"tek-blog-subscribe-section-form-id\";s:0:\"\";s:35:\"tek-blog-subscribe-section-bg-image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:24:\"tek-single-post-template\";s:22:\"single-post-layout-one\";s:23:\"tek-blog-single-sidebar\";s:1:\"1\";s:23:\"tek-blog-sticky-sidebar\";s:1:\"1\";s:31:\"tek-blog-social-sharing-buttons\";a:4:{i:1;s:1:\"1\";i:2;s:1:\"1\";i:3;s:1:\"1\";i:4;s:1:\"1\";}s:14:\"tek-author-box\";s:1:\"1\";s:19:\"tek-blog-single-nav\";s:1:\"1\";s:29:\"tek-blog-single-nav-prev-text\";s:0:\"\";s:29:\"tek-blog-single-nav-next-text\";s:0:\"\";s:17:\"tek-related-posts\";s:1:\"1\";s:23:\"tek-related-posts-title\";s:16:\"Related articles\";s:24:\"tek-related-posts-number\";s:1:\"3\";s:14:\"tek-blog-rebar\";s:1:\"1\";s:23:\"tek-blog-rebar-position\";s:12:\"position-top\";s:20:\"tek-blog-rebar-color\";s:7:\"#777AF2\";s:21:\"tek-blog-rebar-height\";s:1:\"5\";s:13:\"tek-post-meta\";s:1:\"1\";s:18:\"tek-post-meta-date\";s:1:\"1\";s:20:\"tek-post-meta-author\";s:1:\"1\";s:24:\"tek-post-meta-categories\";s:1:\"1\";s:22:\"tek-post-meta-comments\";s:1:\"1\";s:18:\"tek-post-meta-tags\";s:1:\"1\";s:17:\"tek-global-radius\";s:1:\"5\";s:23:\"tek-cards-border-radius\";s:1:\"5\";s:15:\"tek-button-typo\";a:11:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"17px\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:14:\"tek-btn-border\";s:1:\"1\";s:14:\"tek-btn-radius\";s:1:\"5\";s:15:\"tek-btn-padding\";a:5:{s:5:\"units\";s:0:\"\";s:11:\"padding-top\";s:0:\"\";s:13:\"padding-right\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:12:\"padding-left\";s:0:\"\";}s:14:\"tek-btn-effect\";s:11:\"btn-hover-2\";s:14:\"tek-btn-shadow\";s:10:\"shadow-off\";s:21:\"tek-contact-form-typo\";a:9:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:25:\"tek-contact-form-bg-color\";s:0:\"\";s:34:\"tek-contact-form-placeholder-color\";s:0:\"\";s:19:\"tek-faq-collapsible\";s:0:\"\";s:26:\"tek-search-transparent-nav\";s:0:\"\";s:18:\"tek-search-sidebar\";s:1:\"1\";s:25:\"tek-search-sticky-sidebar\";s:1:\"1\";s:16:\"tek-search-title\";s:0:\"\";s:23:\"tek-search-form-content\";s:10:\"search-all\";s:13:\"tek-404-title\";s:20:\"404 - Page Not Found\";s:16:\"tek-404-subtitle\";s:44:\"The page you are looking for does not exist.\";s:12:\"tek-404-back\";s:16:\"Back to homepage\";s:13:\"tek-404-image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:20:\"tek-maintenance-mode\";s:0:\"\";s:21:\"tek-maintenance-title\";s:21:\"Sway is in the works!\";s:23:\"tek-maintenance-content\";s:0:\"\";s:24:\"tek-maintenance-bg-image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:26:\"tek-maintenance-text-color\";s:0:\"\";s:25:\"tek-maintenance-countdown\";s:0:\"\";s:25:\"tek-maintenance-count-day\";s:0:\"\";s:27:\"tek-maintenance-count-month\";s:0:\"\";s:26:\"tek-maintenance-count-year\";s:0:\"\";s:25:\"tek-maintenance-subscribe\";s:0:\"\";s:27:\"tek-maintenance-form-select\";s:1:\"1\";s:32:\"tek-maintenance-contactf7-formid\";s:0:\"\";s:28:\"tek-maintenance-ninja-formid\";s:0:\"\";s:30:\"tek-maintenance-gravity-formid\";s:0:\"\";s:25:\"tek-maintenance-wp-formid\";s:0:\"\";s:36:\"tek-maintenance-other-form-shortcode\";s:0:\"\";s:7:\"tek-css\";s:0:\"\";s:14:\"tek-javascript\";s:0:\"\";}', 'yes'),
(166, 'redux_ThemeTek-transients', 'a:4:{s:14:\"changed_values\";a:1:{s:26:\"tek-backtotop-scroll-style\";s:13:\"default-style\";}s:9:\"last_save\";i:1640371911;s:13:\"last_compiler\";i:1640371911;s:11:\"last_import\";i:1640371911;}', 'yes'),
(167, 'wpb_js_composer_license_activation_notified', 'yes', 'yes'),
(172, '_transient_timeout_extendifySdk_import_max_check_1', '1640970148', 'no'),
(173, '_transient_extendifySdk_import_max_check_1', '1640365348', 'no'),
(174, 'extendifysdk_sitesettings', '{\"state\":{\"enabled\":true},\"version\":0}', 'yes'),
(176, '_site_transient_update_themes', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1640589561;s:7:\"checked\";a:5:{s:10:\"sway-child\";s:3:\"1.0\";s:4:\"sway\";s:3:\"2.2\";s:14:\"twentynineteen\";s:3:\"2.1\";s:12:\"twentytwenty\";s:3:\"1.8\";s:15:\"twentytwentyone\";s:3:\"1.4\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:3:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.1.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.8.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.4.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}', 'no'),
(178, 'theme_mods_sway-child', 'a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:11:\"header-menu\";i:2;}s:18:\"custom_css_post_id\";i:-1;}', 'yes'),
(180, 'widget_kd-banner', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(182, 'widget_recent-comments', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(183, 'widget_recent-posts', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(184, 'widget_recent-posts-thumbnails', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(187, 'redux-framework_allow_tracking', 'yes', 'yes'),
(188, 'redux-framework_tracking_notice', 'hide', 'yes'),
(190, 'redux-framework_tracking_last_send', '1640366514', 'yes'),
(199, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'yes'),
(207, '_site_transient_timeout_theme_roots', '1640591360', 'no'),
(208, '_site_transient_theme_roots', 'a:5:{s:10:\"sway-child\";s:7:\"/themes\";s:4:\"sway\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(209, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1640589562;s:8:\"response\";a:1:{s:27:\"js_composer/js_composer.php\";O:8:\"stdClass\":6:{s:4:\"slug\";s:11:\"js_composer\";s:11:\"new_version\";s:5:\"6.8.0\";s:6:\"plugin\";s:27:\"js_composer/js_composer.php\";s:3:\"url\";s:0:\"\";s:7:\"package\";b:0;s:4:\"name\";s:21:\"WPBakery Page Builder\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:4:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.2.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.2.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.5.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.3.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:35:\"redux-framework/redux-framework.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/redux-framework\";s:4:\"slug\";s:15:\"redux-framework\";s:6:\"plugin\";s:35:\"redux-framework/redux-framework.php\";s:11:\"new_version\";s:5:\"4.3.5\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/redux-framework/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/redux-framework.4.3.5.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:68:\"https://ps.w.org/redux-framework/assets/icon-256x256.png?rev=2352112\";s:2:\"1x\";s:59:\"https://ps.w.org/redux-framework/assets/icon.svg?rev=995554\";s:3:\"svg\";s:59:\"https://ps.w.org/redux-framework/assets/icon.svg?rev=995554\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/redux-framework/assets/banner-1544x500.png?rev=2352114\";s:2:\"1x\";s:70:\"https://ps.w.org/redux-framework/assets/banner-772x250.png?rev=2352114\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}}s:7:\"checked\";a:6:{s:19:\"akismet/akismet.php\";s:5:\"4.2.1\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.5.3\";s:9:\"hello.php\";s:5:\"1.7.2\";s:35:\"keydesign-addon/keydesign-addon.php\";s:3:\"4.7\";s:35:\"redux-framework/redux-framework.php\";s:5:\"4.3.5\";s:27:\"js_composer/js_composer.php\";s:5:\"6.7.0\";}}', 'no'),
(210, '_transient_health-check-site-status-result', '{\"good\":15,\"recommended\":4,\"critical\":0}', 'yes');
-- --------------------------------------------------------
--
-- Table structure for table `wp_postmeta`
--
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`post_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_postmeta`
--
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 3, '_wp_page_template', 'default'),
(5, 6, '_form', '<label> Your name\n [text* your-name] </label>\n\n<label> Your email\n [email* your-email] </label>\n\n<label> Subject\n [text* your-subject] </label>\n\n<label> Your message (optional)\n [textarea your-message] </label>\n\n[submit \"Submit\"]'),
(6, 6, '_mail', 'a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:42:\"[_site_title] <[email protected]>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),
(7, 6, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:42:\"[_site_title] <[email protected]>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),
(8, 6, '_messages', 'a:12:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";}'),
(9, 6, '_additional_settings', ''),
(10, 6, '_locale', 'en_US'),
(11, 7, '_edit_lock', '1640371915:1'),
(12, 7, '_edit_last', '1'),
(13, 7, '_wpb_vc_js_status', 'true'),
(14, 7, 'keydesign_page_title_align', 'center'),
(15, 7, 'keydesign_header_background_image_size', 'cover'),
(16, 7, 'keydesign_header_background_image_position', 'center'),
(17, 7, 'keydesign_fixed_footer', 'default'),
(20, 12, '_wp_trash_meta_status', 'publish'),
(21, 12, '_wp_trash_meta_time', '1640365832'),
(22, 13, '_wp_attached_file', '2021/12/Logo.png'),
(23, 13, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:291;s:6:\"height\";i:66;s:4:\"file\";s:16:\"2021/12/Logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"Logo-150x66.png\";s:5:\"width\";i:150;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(24, 14, '_menu_item_type', 'custom'),
(25, 14, '_menu_item_menu_item_parent', '0'),
(26, 14, '_menu_item_object_id', '14'),
(27, 14, '_menu_item_object', 'custom'),
(28, 14, '_menu_item_target', ''),
(29, 14, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(30, 14, '_menu_item_xfn', ''),
(31, 14, '_menu_item_url', '#'),
(33, 15, '_menu_item_type', 'custom'),
(34, 15, '_menu_item_menu_item_parent', '0'),
(35, 15, '_menu_item_object_id', '15'),
(36, 15, '_menu_item_object', 'custom'),
(37, 15, '_menu_item_target', ''),
(38, 15, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(39, 15, '_menu_item_xfn', ''),
(40, 15, '_menu_item_url', '#'),
(42, 16, '_menu_item_type', 'custom'),
(43, 16, '_menu_item_menu_item_parent', '0'),
(44, 16, '_menu_item_object_id', '16'),
(45, 16, '_menu_item_object', 'custom'),
(46, 16, '_menu_item_target', ''),
(47, 16, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(48, 16, '_menu_item_xfn', ''),
(49, 16, '_menu_item_url', '#'),
(51, 17, '_menu_item_type', 'custom'),
(52, 17, '_menu_item_menu_item_parent', '0'),
(53, 17, '_menu_item_object_id', '17'),
(54, 17, '_menu_item_object', 'custom'),
(55, 17, '_menu_item_target', ''),
(56, 17, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(57, 17, '_menu_item_xfn', ''),
(58, 17, '_menu_item_url', '#'),
(60, 14, 'kd-wp-menu-custom-fields', 'a:2:{s:11:\"badge-label\";s:0:\"\";s:11:\"badge-color\";s:0:\"\";}'),
(61, 15, 'kd-wp-menu-custom-fields', 'a:2:{s:11:\"badge-label\";s:0:\"\";s:11:\"badge-color\";s:0:\"\";}'),
(62, 16, 'kd-wp-menu-custom-fields', 'a:2:{s:11:\"badge-label\";s:0:\"\";s:11:\"badge-color\";s:0:\"\";}'),
(63, 17, 'kd-wp-menu-custom-fields', 'a:2:{s:11:\"badge-label\";s:0:\"\";s:11:\"badge-color\";s:0:\"\";}'),
(64, 7, 'keydesign_page_showhide_title_section', 'on'),
(65, 18, '_wp_attached_file', '2021/12/Banner.jpg'),
(66, 18, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1366;s:6:\"height\";i:827;s:4:\"file\";s:18:\"2021/12/Banner.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Banner-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"Banner-1024x620.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"Banner-768x465.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"keydesign-grid-image\";a:4:{s:4:\"file\";s:18:\"Banner-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"keydesign-left-image\";a:4:{s:4:\"file\";s:18:\"Banner-320x320.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(67, 21, '_wpb_shortcodes_custom_css', '.vc_custom_1640367240660{padding-top: 250px !important;padding-bottom: 250px !important;}'),
(68, 7, '_wpb_shortcodes_custom_css', '.vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(69, 22, '_wpb_shortcodes_custom_css', '.vc_custom_1640367301558{padding-top: 250px !important;padding-bottom: 250px !important;}'),
(70, 23, '_wpb_shortcodes_custom_css', '.vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(71, 24, '_wpb_shortcodes_custom_css', '.vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(72, 25, '_wpb_shortcodes_custom_css', '.vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(73, 26, '_wpb_shortcodes_custom_css', '.vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(74, 27, '_wpb_shortcodes_custom_css', '.vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(75, 28, '_wpb_shortcodes_custom_css', '.vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(76, 29, '_wpb_shortcodes_custom_css', '.vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(77, 30, '_wpb_shortcodes_custom_css', '.vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(78, 31, '_wp_attached_file', '2021/12/file-icon.png'),
(79, 31, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:54;s:6:\"height\";i:54;s:4:\"file\";s:21:\"2021/12/file-icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(80, 32, '_wpb_shortcodes_custom_css', '.vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(81, 33, '_wp_attached_file', '2021/12/Crypto.png'),
(82, 33, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:294;s:6:\"height\";i:95;s:4:\"file\";s:18:\"2021/12/Crypto.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Crypto-150x95.png\";s:5:\"width\";i:150;s:6:\"height\";i:95;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(83, 34, '_wpb_shortcodes_custom_css', '.vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(84, 35, '_wp_attached_file', '2021/12/DSC1077.jpg'),
(85, 35, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:373;s:6:\"height\";i:249;s:4:\"file\";s:19:\"2021/12/DSC1077.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"DSC1077-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"DSC1077-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"keydesign-left-image\";a:4:{s:4:\"file\";s:19:\"DSC1077-320x249.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(86, 36, '_wpb_shortcodes_custom_css', '.vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(87, 37, '_wpb_shortcodes_custom_css', '.vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(88, 38, '_wpb_shortcodes_custom_css', '.vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(89, 39, '_wp_attached_file', '2021/12/Auto-Atelier_Icon_Transparenter-Hintergrund.png'),
(90, 39, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:120;s:6:\"height\";i:124;s:4:\"file\";s:55:\"2021/12/Auto-Atelier_Icon_Transparenter-Hintergrund.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(91, 40, '_wpb_shortcodes_custom_css', '.vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(92, 41, '_wpb_shortcodes_custom_css', '.vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}');
-- --------------------------------------------------------
--
-- Table structure for table `wp_posts`
--
CREATE TABLE `wp_posts` (
`ID` bigint(20) UNSIGNED NOT NULL,
`post_author` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT 0,
`post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_posts`
--
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2021-12-24 16:49:08', '2021-12-24 16:49:08', '<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2021-12-24 16:49:08', '2021-12-24 16:49:08', '', 0, 'https://adstechnolab.com/dev/autoatelier/?p=1', 0, 'post', '', 1),
(2, 1, '2021-12-24 16:49:08', '2021-12-24 16:49:08', '<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://adstechnolab.com/dev/autoatelier/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Sample Page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2021-12-24 16:49:08', '2021-12-24 16:49:08', '', 0, 'https://adstechnolab.com/dev/autoatelier/?page_id=2', 0, 'page', '', 0),
(3, 1, '2021-12-24 16:49:08', '2021-12-24 16:49:08', '<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://adstechnolab.com/dev/autoatelier.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->', 'Privacy Policy', '', 'draft', 'closed', 'open', '', 'privacy-policy', '', '', '2021-12-24 16:49:08', '2021-12-24 16:49:08', '', 0, 'https://adstechnolab.com/dev/autoatelier/?page_id=3', 0, 'page', '', 0),
(4, 1, '2021-12-24 16:49:30', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2021-12-24 16:49:30', '0000-00-00 00:00:00', '', 0, 'https://adstechnolab.com/dev/autoatelier/?p=4', 0, 'post', '', 0),
(6, 1, '2021-12-24 17:01:44', '2021-12-24 17:01:44', '<label> Your name\n [text* your-name] </label>\n\n<label> Your email\n [email* your-email] </label>\n\n<label> Subject\n [text* your-subject] </label>\n\n<label> Your message (optional)\n [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <[email protected]>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <[email protected]>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.', 'Contact form 1', '', 'publish', 'closed', 'closed', '', 'contact-form-1', '', '', '2021-12-24 17:01:44', '2021-12-24 17:01:44', '', 0, 'https://adstechnolab.com/dev/autoatelier/?post_type=wpcf7_contact_form&p=6', 0, 'wpcf7_contact_form', '', 0),
(7, 1, '2021-12-24 17:02:47', '2021-12-24 17:02:47', '[vc_row kd_background_image_position=\"vc_row-bg-position-top\" css=\".vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Auto Atelier\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Lässt Ihr Herz höher schlagen\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][tek_button button_text=\"Unsere Services\" button_style=\"tt_primary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_custom_heading text=\"Das Auto, eine Liebesgeschichte.\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Ein Auto ist mehr als ein fahrbarer Untersatz. Es zeigt den Zeitgeist\r\nund wer wir sind. Unsere Autos lassen Ihr Herz höher schlagen.\r\n\r\nSie träumen vom nächsten Alltagswagen, schnellen Sportflitzer oder sehnen sich nach dem neuesten SUV? Wir bei Auto Atelier in Zürich Schlieren haben eine handverlesene Auswahl an Autos: von Ferrari über Bentley bis hin zu alltagstauglichen Renault, um nur einige zu nennen. Kommen Sie unverbindlich in unserem Showroom vorbei und lassen sich inspirieren.[/vc_column_text][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"01\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Ankauf & Verkauf\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]In Unserem Showroom in Zürich Schlieren finden Sie ausgewählte Autos zu fairen Preisen.\r\n\r\n<strong>Unsere Stärke:</strong> wir decken sämtliche Marken der Automobilwelt ab.[/vc_column_text][tek_button button_text=\"Unsere Autos\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"02\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Suchauftrag\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Dank unserer langjährigen Erfahrung und Netzwerk sind wir in der Lage, welweit das gewünscht Auto für Sie zu finden.\r\n\r\nSoll es ein seltener Ferrari sein oder ein einzigartiger VW Golf? Wir sind der richtige Partner dafür![/vc_column_text][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"03\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Eventlocation\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Mieten Sie unseren exklusiven Showroom in Zürich Schlieren für Ihren nächsten Anlass.\r\n\r\n<strong>Ausstattung:</strong> 400m2 Fläche insgesamt, Soround System. 400m2 Fläche insgesamt, Soround System. 400m2 Fläche insgesamt, Soround System.[/vc_column_text][vc_single_image image=\"31\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_placement=\"middle\" kd_background_image_position=\"vc_row-bg-position-top\"][vc_column width=\"4/12\"][vc_single_image image=\"33\" img_size=\"full\" alignment=\"center\"][/vc_column][vc_column width=\"8/12\"][vc_custom_heading text=\"Bei Auto Atelier mit\r\nCryptowährungen bezahlen\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Kaufen Sie ihr nächsten Auto mit einer Cryptowährung. Exklusiv bei Auto Atelier.\r\n\r\nWir nehmen alle gängigen Cryptowährung an. Von Bitcoin über Etherum bis hin zu Solana oder Cardano. Setzen Sie sich unverbindlich mit uns in Kontakt. Wir finden gemeinsam die beste Lösung für Sie.[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"middle\" kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"9/12\"][vc_custom_heading text=\"Wir sind Fabio und Roberto\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Ein Auto ist mehr als ein fahrbarer Untersatz. Es zeigt den Zeitgeist und wer wir sind. Unsere Autos lassen Ihr Herz höher schlagen. Sie träumen vom nächsten Alltagswagen, schnellen Sportflitzer oder sehnen sich nach dem neuesten SUV? Wir bei Auto Atelier in Zürich Schlieren haben eine handverlesene Auswahl an Autos: von Ferrari über Bentley bis hin zu alltagstauglichen Renault, um nur einige zu nennen. Kommen Sie unverbindlich in unserem Showroom vorbei und lassen sich inspirieren.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"link_image\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"link_image\" css_animation=\"fadeInUp\"][/vc_column_inner][/vc_row_inner][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"link_image\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"link_image\" css_animation=\"fadeInUp\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Kontaktieren Sie uns\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Schnell und unverbindlich.\r\nWir finden die passende Lösung für Sie.[/vc_column_text][contact-form-7 id=\"6\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Besuchen Sie uns\r\nIm Showroom\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI3MDAuNDYzNDA1MzU5NzQ5JTIxMmQ4LjQzNTc2ODkxNTU4Nzc2OSUyMTNkNDcuNDAyOTAxNjc5MTcxNjElMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTNtMyUyMTFtMiUyMTFzMHg0NzkwMGQ0MjlmMmRlMmI3JTI1M0EweDIxMDA0OWVkMTFmNGY4N2MlMjEyc0F1dG8lMjUyMEF0ZWxpZXIlMjUyMEFHJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2NDAzNzE3MzE5MjglMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][vc_column_text css_animation=\"fadeInUp\"]<strong>Auto Atelier AG</strong>\r\nUnterrohrstrasse 5\r\n8952 Schlieren[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]Tel.: <a href=\"tel:0449991986\">044 999 19 86</a>\r\nE-Mail: <a href=\"mailto:[email protected]\">[email protected]</a>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]<strong>Öffnungszeiten</strong>\r\nMO-FR: 08:00-18:00\r\nSA: 10:00-16:00[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Home', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2021-12-24 18:49:13', '2021-12-24 18:49:13', '', 0, 'https://adstechnolab.com/dev/autoatelier/?page_id=7', 0, 'page', '', 0),
(8, 1, '2021-12-24 17:02:47', '2021-12-24 17:02:47', '', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2021-12-24 17:02:47', '2021-12-24 17:02:47', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=8', 0, 'revision', '', 0),
(9, 1, '2021-12-24 17:03:10', '2021-12-24 17:03:10', '[vc_row kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2021-12-24 17:03:10', '2021-12-24 17:03:10', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=9', 0, 'revision', '', 0),
(10, 1, '2021-12-24 17:05:17', '2021-12-24 17:05:17', '[vc_row kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2021-12-24 17:05:17', '2021-12-24 17:05:17', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=10', 0, 'revision', '', 0),
(12, 1, '2021-12-24 17:10:32', '2021-12-24 17:10:32', '{\n \"show_on_front\": {\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-12-24 17:10:32\"\n },\n \"page_on_front\": {\n \"value\": \"7\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2021-12-24 17:10:32\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '40aaff25-4fad-49af-b1c3-036b70102149', '', '', '2021-12-24 17:10:32', '2021-12-24 17:10:32', '', 0, 'https://adstechnolab.com/dev/autoatelier/2021/12/24/40aaff25-4fad-49af-b1c3-036b70102149/', 0, 'customize_changeset', '', 0),
(13, 1, '2021-12-24 17:20:02', '2021-12-24 17:20:02', '', 'Logo', '', 'inherit', 'open', 'closed', '', 'logo', '', '', '2021-12-24 17:20:02', '2021-12-24 17:20:02', '', 0, 'https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Logo.png', 0, 'attachment', 'image/png', 0),
(14, 1, '2021-12-24 17:28:39', '2021-12-24 17:28:39', '', 'Unsere Services', '', 'publish', 'closed', 'closed', '', 'unsere-services', '', '', '2021-12-24 17:28:39', '2021-12-24 17:28:39', '', 0, 'https://adstechnolab.com/dev/autoatelier/?p=14', 1, 'nav_menu_item', '', 0),
(15, 1, '2021-12-24 17:28:39', '2021-12-24 17:28:39', '', 'Impressionen', '', 'publish', 'closed', 'closed', '', 'impressionen', '', '', '2021-12-24 17:28:39', '2021-12-24 17:28:39', '', 0, 'https://adstechnolab.com/dev/autoatelier/?p=15', 2, 'nav_menu_item', '', 0),
(16, 1, '2021-12-24 17:28:39', '2021-12-24 17:28:39', '', 'Über uns', '', 'publish', 'closed', 'closed', '', 'uber-uns', '', '', '2021-12-24 17:28:39', '2021-12-24 17:28:39', '', 0, 'https://adstechnolab.com/dev/autoatelier/?p=16', 3, 'nav_menu_item', '', 0),
(17, 1, '2021-12-24 17:28:39', '2021-12-24 17:28:39', '', 'Kontakt', '', 'publish', 'closed', 'closed', '', 'kontakt', '', '', '2021-12-24 17:28:39', '2021-12-24 17:28:39', '', 0, 'https://adstechnolab.com/dev/autoatelier/?p=17', 4, 'nav_menu_item', '', 0),
(18, 1, '2021-12-24 17:33:07', '2021-12-24 17:33:07', '', 'Banner', '', 'inherit', 'open', 'closed', '', 'banner', '', '', '2021-12-24 17:33:07', '2021-12-24 17:33:07', '', 7, 'https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg', 0, 'attachment', 'image/jpeg', 0),
(19, 1, '2021-12-24 18:46:48', '2021-12-24 18:46:48', '<p>[vc_row kd_background_image_position=\"vc_row-bg-position-top\" css=\".vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Auto Atelier\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Lässt Ihr Herz höher schlagen\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][tek_button button_text=\"Unsere Services\" button_style=\"tt_primary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_custom_heading text=\"Das Auto, eine Liebesgeschichte.\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Ein Auto ist mehr als ein fahrbarer Untersatz. Es zeigt den Zeitgeist<br />\nund wer wir sind. Unsere Autos lassen Ihr Herz höher schlagen.</p>\n<p>Sie träumen vom nächsten Alltagswagen, schnellen Sportflitzer oder sehnen sich nach dem neuesten SUV? Wir bei Auto Atelier in Zürich Schlieren haben eine handverlesene Auswahl an Autos: von Ferrari über Bentley bis hin zu alltagstauglichen Renault, um nur einige zu nennen. Kommen Sie unverbindlich in unserem Showroom vorbei und lassen sich inspirieren.[/vc_column_text][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"01\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Ankauf & Verkauf\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]In Unserem Showroom in Zürich Schlieren finden Sie ausgewählte Autos zu fairen Preisen.</p>\n<p><strong>Unsere Stärke:</strong> wir decken sämtliche Marken der Automobilwelt ab.[/vc_column_text][tek_button button_text=\"Unsere Autos\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"02\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Suchauftrag\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Dank unserer langjährigen Erfahrung und Netzwerk sind wir in der Lage, welweit das gewünscht Auto für Sie zu finden.</p>\n<p>Soll es ein seltener Ferrari sein oder ein einzigartiger VW Golf? Wir sind der richtige Partner dafür![/vc_column_text][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"03\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Eventlocation\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Mieten Sie unseren exklusiven Showroom in Zürich Schlieren für Ihren nächsten Anlass.</p>\n<p><strong>Ausstattung:</strong> 400m2 Fläche insgesamt, Soround System. 400m2 Fläche insgesamt, Soround System. 400m2 Fläche insgesamt, Soround System.[/vc_column_text][vc_single_image image=\"31\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_placement=\"middle\" kd_background_image_position=\"vc_row-bg-position-top\"][vc_column width=\"4/12\"][vc_single_image image=\"33\" img_size=\"full\" alignment=\"center\"][/vc_column][vc_column width=\"8/12\"][vc_custom_heading text=\"Bei Auto Atelier mit<br />\nCryptowährungen bezahlen\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Kaufen Sie ihr nächsten Auto mit einer Cryptowährung. Exklusiv bei Auto Atelier.</p>\n<p>Wir nehmen alle gängigen Cryptowährung an. Von Bitcoin über Etherum bis hin zu Solana oder Cardano. Setzen Sie sich unverbindlich mit uns in Kontakt. Wir finden gemeinsam die beste Lösung für Sie.[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"middle\" kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"9/12\"][vc_custom_heading text=\"Wir sind Fabio und Roberto\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Ein Auto ist mehr als ein fahrbarer Untersatz. Es zeigt den Zeitgeist und wer wir sind. Unsere Autos lassen Ihr Herz höher schlagen. Sie träumen vom nächsten Alltagswagen, schnellen Sportflitzer oder sehnen sich nach dem neuesten SUV? Wir bei Auto Atelier in Zürich Schlieren haben eine handverlesene Auswahl an Autos: von Ferrari über Bentley bis hin zu alltagstauglichen Renault, um nur einige zu nennen. Kommen Sie unverbindlich in unserem Showroom vorbei und lassen sich inspirieren.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"link_image\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"link_image\" css_animation=\"fadeInUp\"][/vc_column_inner][/vc_row_inner][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"link_image\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"link_image\" css_animation=\"fadeInUp\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Wir sind Fabio und Roberto\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Ein Auto ist mehr als ein fahrbarer Untersatz. Es zeigt den Zeitgeist und wer wir sind. Unsere Autos lassen Ihr Herz höher schlagen. Sie träumen vom nächsten Alltagswagen, schnellen Sportflitzer oder sehnen sich nach dem neuesten SUV? Wir bei Auto Atelier in Zürich Schlieren haben eine handverlesene Auswahl an Autos: von Ferrari über Bentley bis hin zu alltagstauglichen Renault, um nur einige zu nennen. Kommen Sie unverbindlich in unserem Showroom vorbei und lassen sich inspirieren.[/vc_column_text][contact-form-7 id=\"6\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '7-autosave-v1', '', '', '2021-12-24 18:46:48', '2021-12-24 18:46:48', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=19', 0, 'revision', '', 0),
(20, 1, '2021-12-24 17:33:43', '2021-12-24 17:33:43', '[vc_row parallax=\"content-moving\" parallax_image=\"18\" kd_background_image_position=\"vc_row-bg-position-top\" top_section_title=\"\" bottom_section_title=\"\"][vc_column][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2021-12-24 17:33:43', '2021-12-24 17:33:43', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=20', 0, 'revision', '', 0),
(21, 1, '2021-12-24 17:34:01', '2021-12-24 17:34:01', '[vc_row parallax=\"content-moving\" parallax_image=\"18\" kd_background_image_position=\"vc_row-bg-position-top\" top_section_title=\"\" bottom_section_title=\"\" css=\".vc_custom_1640367240660{padding-top: 250px !important;padding-bottom: 250px !important;}\"][vc_column][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2021-12-24 17:34:01', '2021-12-24 17:34:01', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=21', 0, 'revision', '', 0),
(22, 1, '2021-12-24 17:35:02', '2021-12-24 17:35:02', '[vc_row parallax=\"content-moving-fade\" parallax_image=\"18\" kd_background_image_position=\"vc_row-bg-position-top\" top_section_title=\"\" bottom_section_title=\"\" css=\".vc_custom_1640367301558{padding-top: 250px !important;padding-bottom: 250px !important;}\"][vc_column][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2021-12-24 17:35:02', '2021-12-24 17:35:02', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=22', 0, 'revision', '', 0),
(23, 1, '2021-12-24 17:35:35', '2021-12-24 17:35:35', '[vc_row kd_background_image_position=\"vc_row-bg-position-top\" top_section_title=\"\" bottom_section_title=\"\" css=\".vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2021-12-24 17:35:35', '2021-12-24 17:35:35', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=23', 0, 'revision', '', 0),
(24, 1, '2021-12-24 17:53:13', '2021-12-24 17:53:13', '[vc_row kd_background_image_position=\"vc_row-bg-position-top\" css=\".vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Auto Atelier\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Lässt Ihr Herz höher schlagen\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][tek_button button_text=\"Unsere Services\" button_style=\"tt_primary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"no\" button_action=\"button-action-link\" button_position=\"btn-align-left\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2021-12-24 17:53:13', '2021-12-24 17:53:13', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=24', 0, 'revision', '', 0),
(25, 1, '2021-12-24 17:53:24', '2021-12-24 17:53:24', '[vc_row kd_background_image_position=\"vc_row-bg-position-top\" css=\".vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Auto Atelier\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Lässt Ihr Herz höher schlagen\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][tek_button button_text=\"Unsere Services\" button_style=\"tt_primary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"no\" button_action=\"button-action-link\" button_position=\"btn-align-left\"][tek_button button_text=\"Unsere Services\" button_style=\"tt_primary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"no\" button_action=\"button-action-link\" button_position=\"btn-align-left\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2021-12-24 17:53:24', '2021-12-24 17:53:24', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=25', 0, 'revision', '', 0),
(26, 1, '2021-12-24 17:54:22', '2021-12-24 17:54:22', '[vc_row kd_background_image_position=\"vc_row-bg-position-top\" css=\".vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Auto Atelier\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Lässt Ihr Herz höher schlagen\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][tek_button button_text=\"Unsere Services\" button_style=\"tt_primary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" icons=\"fas fa-arrow-right\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2021-12-24 17:54:22', '2021-12-24 17:54:22', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=26', 0, 'revision', '', 0),
(27, 1, '2021-12-24 17:56:08', '2021-12-24 17:56:08', '[vc_row kd_background_image_position=\"vc_row-bg-position-top\" css=\".vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Auto Atelier\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Lässt Ihr Herz höher schlagen\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][tek_button button_text=\"Unsere Services\" button_style=\"tt_primary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_custom_heading text=\"Das Auto, eine Liebesgeschichte. \" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2021-12-24 17:56:08', '2021-12-24 17:56:08', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=27', 0, 'revision', '', 0),
(28, 1, '2021-12-24 17:56:38', '2021-12-24 17:56:38', '[vc_row kd_background_image_position=\"vc_row-bg-position-top\" css=\".vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Auto Atelier\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Lässt Ihr Herz höher schlagen\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][tek_button button_text=\"Unsere Services\" button_style=\"tt_primary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_custom_heading text=\"Das Auto, eine Liebesgeschichte.\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]Ein Auto ist mehr als ein fahrbarer Untersatz. Es zeigt den Zeitgeist\r\nund wer wir sind. Unsere Autos lassen Ihr Herz höher schlagen.\r\n\r\nSie träumen vom nächsten Alltagswagen, schnellen Sportflitzer oder sehnen sich nach dem neuesten SUV? Wir bei Auto Atelier in Zürich Schlieren haben eine handverlesene Auswahl an Autos: von Ferrari über Bentley bis hin zu alltagstauglichen Renault, um nur einige zu nennen. Kommen Sie unverbindlich in unserem Showroom vorbei und lassen sich inspirieren.[/vc_column_text][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2021-12-24 17:56:38', '2021-12-24 17:56:38', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=28', 0, 'revision', '', 0),
(29, 1, '2021-12-24 17:58:34', '2021-12-24 17:58:34', '[vc_row kd_background_image_position=\"vc_row-bg-position-top\" css=\".vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Auto Atelier\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Lässt Ihr Herz höher schlagen\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][tek_button button_text=\"Unsere Services\" button_style=\"tt_primary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_custom_heading text=\"Das Auto, eine Liebesgeschichte.\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Ein Auto ist mehr als ein fahrbarer Untersatz. Es zeigt den Zeitgeist\r\nund wer wir sind. Unsere Autos lassen Ihr Herz höher schlagen.\r\n\r\nSie träumen vom nächsten Alltagswagen, schnellen Sportflitzer oder sehnen sich nach dem neuesten SUV? Wir bei Auto Atelier in Zürich Schlieren haben eine handverlesene Auswahl an Autos: von Ferrari über Bentley bis hin zu alltagstauglichen Renault, um nur einige zu nennen. Kommen Sie unverbindlich in unserem Showroom vorbei und lassen sich inspirieren.[/vc_column_text][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"01\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Ankauf & Verkauf\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]In Unserem Showroom in Zürich Schlieren finden Sie ausgewählte Autos zu fairen Preisen.\r\n\r\n<strong>Unsere Stärke:</strong> wir decken sämtliche Marken der Automobilwelt ab.[/vc_column_text][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2021-12-24 17:58:34', '2021-12-24 17:58:34', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=29', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(30, 1, '2021-12-24 17:58:48', '2021-12-24 17:58:48', '[vc_row kd_background_image_position=\"vc_row-bg-position-top\" css=\".vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Auto Atelier\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Lässt Ihr Herz höher schlagen\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][tek_button button_text=\"Unsere Services\" button_style=\"tt_primary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_custom_heading text=\"Das Auto, eine Liebesgeschichte.\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Ein Auto ist mehr als ein fahrbarer Untersatz. Es zeigt den Zeitgeist\r\nund wer wir sind. Unsere Autos lassen Ihr Herz höher schlagen.\r\n\r\nSie träumen vom nächsten Alltagswagen, schnellen Sportflitzer oder sehnen sich nach dem neuesten SUV? Wir bei Auto Atelier in Zürich Schlieren haben eine handverlesene Auswahl an Autos: von Ferrari über Bentley bis hin zu alltagstauglichen Renault, um nur einige zu nennen. Kommen Sie unverbindlich in unserem Showroom vorbei und lassen sich inspirieren.[/vc_column_text][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"01\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Ankauf & Verkauf\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]In Unserem Showroom in Zürich Schlieren finden Sie ausgewählte Autos zu fairen Preisen.\r\n\r\n<strong>Unsere Stärke:</strong> wir decken sämtliche Marken der Automobilwelt ab.[/vc_column_text][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2021-12-24 17:58:48', '2021-12-24 17:58:48', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=30', 0, 'revision', '', 0),
(31, 1, '2021-12-24 18:28:10', '2021-12-24 18:28:10', '', 'file-icon', '', 'inherit', 'open', 'closed', '', 'file-icon', '', '', '2021-12-24 18:28:10', '2021-12-24 18:28:10', '', 7, 'https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/file-icon.png', 0, 'attachment', 'image/png', 0),
(32, 1, '2021-12-24 18:28:26', '2021-12-24 18:28:26', '[vc_row kd_background_image_position=\"vc_row-bg-position-top\" css=\".vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Auto Atelier\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Lässt Ihr Herz höher schlagen\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][tek_button button_text=\"Unsere Services\" button_style=\"tt_primary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_custom_heading text=\"Das Auto, eine Liebesgeschichte.\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Ein Auto ist mehr als ein fahrbarer Untersatz. Es zeigt den Zeitgeist\r\nund wer wir sind. Unsere Autos lassen Ihr Herz höher schlagen.\r\n\r\nSie träumen vom nächsten Alltagswagen, schnellen Sportflitzer oder sehnen sich nach dem neuesten SUV? Wir bei Auto Atelier in Zürich Schlieren haben eine handverlesene Auswahl an Autos: von Ferrari über Bentley bis hin zu alltagstauglichen Renault, um nur einige zu nennen. Kommen Sie unverbindlich in unserem Showroom vorbei und lassen sich inspirieren.[/vc_column_text][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"01\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Ankauf & Verkauf\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]In Unserem Showroom in Zürich Schlieren finden Sie ausgewählte Autos zu fairen Preisen.\r\n\r\n<strong>Unsere Stärke:</strong> wir decken sämtliche Marken der Automobilwelt ab.[/vc_column_text][tek_button button_text=\"Unsere Autos\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"02\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Suchauftrag\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Dank unserer langjährigen Erfahrung und Netzwerk sind wir in der Lage, welweit das gewünscht Auto für Sie zu finden.\r\n\r\nSoll es ein seltener Ferrari sein oder ein einzigartiger VW Golf? Wir sind der richtige Partner dafür![/vc_column_text][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"03\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Eventlocation\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Mieten Sie unseren exklusiven Showroom in Zürich Schlieren für Ihren nächsten Anlass.\r\n\r\n<strong>Ausstattung:</strong> 400m2 Fläche insgesamt, Soround System. 400m2 Fläche insgesamt, Soround System. 400m2 Fläche insgesamt, Soround System.[/vc_column_text][vc_single_image image=\"31\" img_size=\"full\" alignment=\"center\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2021-12-24 18:28:26', '2021-12-24 18:28:26', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=32', 0, 'revision', '', 0),
(33, 1, '2021-12-24 18:31:00', '2021-12-24 18:31:00', '', 'Crypto', '', 'inherit', 'open', 'closed', '', 'crypto', '', '', '2021-12-24 18:31:00', '2021-12-24 18:31:00', '', 7, 'https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Crypto.png', 0, 'attachment', 'image/png', 0),
(34, 1, '2021-12-24 18:31:17', '2021-12-24 18:31:17', '[vc_row kd_background_image_position=\"vc_row-bg-position-top\" css=\".vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Auto Atelier\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Lässt Ihr Herz höher schlagen\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][tek_button button_text=\"Unsere Services\" button_style=\"tt_primary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_custom_heading text=\"Das Auto, eine Liebesgeschichte.\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Ein Auto ist mehr als ein fahrbarer Untersatz. Es zeigt den Zeitgeist\r\nund wer wir sind. Unsere Autos lassen Ihr Herz höher schlagen.\r\n\r\nSie träumen vom nächsten Alltagswagen, schnellen Sportflitzer oder sehnen sich nach dem neuesten SUV? Wir bei Auto Atelier in Zürich Schlieren haben eine handverlesene Auswahl an Autos: von Ferrari über Bentley bis hin zu alltagstauglichen Renault, um nur einige zu nennen. Kommen Sie unverbindlich in unserem Showroom vorbei und lassen sich inspirieren.[/vc_column_text][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"01\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Ankauf & Verkauf\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]In Unserem Showroom in Zürich Schlieren finden Sie ausgewählte Autos zu fairen Preisen.\r\n\r\n<strong>Unsere Stärke:</strong> wir decken sämtliche Marken der Automobilwelt ab.[/vc_column_text][tek_button button_text=\"Unsere Autos\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"02\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Suchauftrag\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Dank unserer langjährigen Erfahrung und Netzwerk sind wir in der Lage, welweit das gewünscht Auto für Sie zu finden.\r\n\r\nSoll es ein seltener Ferrari sein oder ein einzigartiger VW Golf? Wir sind der richtige Partner dafür![/vc_column_text][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"03\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Eventlocation\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Mieten Sie unseren exklusiven Showroom in Zürich Schlieren für Ihren nächsten Anlass.\r\n\r\n<strong>Ausstattung:</strong> 400m2 Fläche insgesamt, Soround System. 400m2 Fläche insgesamt, Soround System. 400m2 Fläche insgesamt, Soround System.[/vc_column_text][vc_single_image image=\"31\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_placement=\"middle\" kd_background_image_position=\"vc_row-bg-position-top\" top_section_title=\"\" bottom_section_title=\"\"][vc_column width=\"4/12\"][vc_single_image image=\"33\" img_size=\"full\" alignment=\"center\"][/vc_column][vc_column width=\"8/12\"][vc_custom_heading text=\"Bei Auto Atelier mit\r\nCryptowährungen bezahlen\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Kaufen Sie ihr nächsten Auto mit einer Cryptowährung. Exklusiv bei Auto Atelier.\r\n\r\nWir nehmen alle gängigen Cryptowährung an. Von Bitcoin über Etherum bis hin zu Solana oder Cardano. Setzen Sie sich unverbindlich mit uns in Kontakt. Wir finden gemeinsam die beste Lösung für Sie.[/vc_column_text][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2021-12-24 18:31:17', '2021-12-24 18:31:17', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=34', 0, 'revision', '', 0),
(35, 1, '2021-12-24 18:33:49', '2021-12-24 18:33:49', '', '_DSC1077', '', 'inherit', 'open', 'closed', '', '_dsc1077', '', '', '2021-12-24 18:33:49', '2021-12-24 18:33:49', '', 7, 'https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/DSC1077.jpg', 0, 'attachment', 'image/jpeg', 0),
(36, 1, '2021-12-24 18:34:16', '2021-12-24 18:34:16', '[vc_row kd_background_image_position=\"vc_row-bg-position-top\" css=\".vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Auto Atelier\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Lässt Ihr Herz höher schlagen\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][tek_button button_text=\"Unsere Services\" button_style=\"tt_primary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_custom_heading text=\"Das Auto, eine Liebesgeschichte.\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Ein Auto ist mehr als ein fahrbarer Untersatz. Es zeigt den Zeitgeist\r\nund wer wir sind. Unsere Autos lassen Ihr Herz höher schlagen.\r\n\r\nSie träumen vom nächsten Alltagswagen, schnellen Sportflitzer oder sehnen sich nach dem neuesten SUV? Wir bei Auto Atelier in Zürich Schlieren haben eine handverlesene Auswahl an Autos: von Ferrari über Bentley bis hin zu alltagstauglichen Renault, um nur einige zu nennen. Kommen Sie unverbindlich in unserem Showroom vorbei und lassen sich inspirieren.[/vc_column_text][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"01\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Ankauf & Verkauf\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]In Unserem Showroom in Zürich Schlieren finden Sie ausgewählte Autos zu fairen Preisen.\r\n\r\n<strong>Unsere Stärke:</strong> wir decken sämtliche Marken der Automobilwelt ab.[/vc_column_text][tek_button button_text=\"Unsere Autos\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"02\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Suchauftrag\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Dank unserer langjährigen Erfahrung und Netzwerk sind wir in der Lage, welweit das gewünscht Auto für Sie zu finden.\r\n\r\nSoll es ein seltener Ferrari sein oder ein einzigartiger VW Golf? Wir sind der richtige Partner dafür![/vc_column_text][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"03\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Eventlocation\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Mieten Sie unseren exklusiven Showroom in Zürich Schlieren für Ihren nächsten Anlass.\r\n\r\n<strong>Ausstattung:</strong> 400m2 Fläche insgesamt, Soround System. 400m2 Fläche insgesamt, Soround System. 400m2 Fläche insgesamt, Soround System.[/vc_column_text][vc_single_image image=\"31\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_placement=\"middle\" kd_background_image_position=\"vc_row-bg-position-top\"][vc_column width=\"4/12\"][vc_single_image image=\"33\" img_size=\"full\" alignment=\"center\"][/vc_column][vc_column width=\"8/12\"][vc_custom_heading text=\"Bei Auto Atelier mit\r\nCryptowährungen bezahlen\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Kaufen Sie ihr nächsten Auto mit einer Cryptowährung. Exklusiv bei Auto Atelier.\r\n\r\nWir nehmen alle gängigen Cryptowährung an. Von Bitcoin über Etherum bis hin zu Solana oder Cardano. Setzen Sie sich unverbindlich mit uns in Kontakt. Wir finden gemeinsam die beste Lösung für Sie.[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"middle\" kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"9/12\"][vc_custom_heading text=\"Wir sind Fabio und Roberto \" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Ein Auto ist mehr als ein fahrbarer Untersatz. Es zeigt den Zeitgeist und wer wir sind. Unsere Autos lassen Ihr Herz höher schlagen. Sie träumen vom nächsten Alltagswagen, schnellen Sportflitzer oder sehnen sich nach dem neuesten SUV? Wir bei Auto Atelier in Zürich Schlieren haben eine handverlesene Auswahl an Autos: von Ferrari über Bentley bis hin zu alltagstauglichen Renault, um nur einige zu nennen. Kommen Sie unverbindlich in unserem Showroom vorbei und lassen sich inspirieren.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"zoom\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"zoom\" css_animation=\"fadeInUp\"][/vc_column_inner][/vc_row_inner][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"zoom\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"zoom\" css_animation=\"fadeInUp\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2021-12-24 18:34:16', '2021-12-24 18:34:16', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=36', 0, 'revision', '', 0),
(37, 1, '2021-12-24 18:34:40', '2021-12-24 18:34:40', '[vc_row kd_background_image_position=\"vc_row-bg-position-top\" css=\".vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Auto Atelier\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Lässt Ihr Herz höher schlagen\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][tek_button button_text=\"Unsere Services\" button_style=\"tt_primary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_custom_heading text=\"Das Auto, eine Liebesgeschichte.\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Ein Auto ist mehr als ein fahrbarer Untersatz. Es zeigt den Zeitgeist\r\nund wer wir sind. Unsere Autos lassen Ihr Herz höher schlagen.\r\n\r\nSie träumen vom nächsten Alltagswagen, schnellen Sportflitzer oder sehnen sich nach dem neuesten SUV? Wir bei Auto Atelier in Zürich Schlieren haben eine handverlesene Auswahl an Autos: von Ferrari über Bentley bis hin zu alltagstauglichen Renault, um nur einige zu nennen. Kommen Sie unverbindlich in unserem Showroom vorbei und lassen sich inspirieren.[/vc_column_text][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"01\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Ankauf & Verkauf\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]In Unserem Showroom in Zürich Schlieren finden Sie ausgewählte Autos zu fairen Preisen.\r\n\r\n<strong>Unsere Stärke:</strong> wir decken sämtliche Marken der Automobilwelt ab.[/vc_column_text][tek_button button_text=\"Unsere Autos\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"02\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Suchauftrag\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Dank unserer langjährigen Erfahrung und Netzwerk sind wir in der Lage, welweit das gewünscht Auto für Sie zu finden.\r\n\r\nSoll es ein seltener Ferrari sein oder ein einzigartiger VW Golf? Wir sind der richtige Partner dafür![/vc_column_text][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"03\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Eventlocation\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Mieten Sie unseren exklusiven Showroom in Zürich Schlieren für Ihren nächsten Anlass.\r\n\r\n<strong>Ausstattung:</strong> 400m2 Fläche insgesamt, Soround System. 400m2 Fläche insgesamt, Soround System. 400m2 Fläche insgesamt, Soround System.[/vc_column_text][vc_single_image image=\"31\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_placement=\"middle\" kd_background_image_position=\"vc_row-bg-position-top\"][vc_column width=\"4/12\"][vc_single_image image=\"33\" img_size=\"full\" alignment=\"center\"][/vc_column][vc_column width=\"8/12\"][vc_custom_heading text=\"Bei Auto Atelier mit\r\nCryptowährungen bezahlen\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Kaufen Sie ihr nächsten Auto mit einer Cryptowährung. Exklusiv bei Auto Atelier.\r\n\r\nWir nehmen alle gängigen Cryptowährung an. Von Bitcoin über Etherum bis hin zu Solana oder Cardano. Setzen Sie sich unverbindlich mit uns in Kontakt. Wir finden gemeinsam die beste Lösung für Sie.[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"middle\" kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"9/12\"][vc_custom_heading text=\"Wir sind Fabio und Roberto\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Ein Auto ist mehr als ein fahrbarer Untersatz. Es zeigt den Zeitgeist und wer wir sind. Unsere Autos lassen Ihr Herz höher schlagen. Sie träumen vom nächsten Alltagswagen, schnellen Sportflitzer oder sehnen sich nach dem neuesten SUV? Wir bei Auto Atelier in Zürich Schlieren haben eine handverlesene Auswahl an Autos: von Ferrari über Bentley bis hin zu alltagstauglichen Renault, um nur einige zu nennen. Kommen Sie unverbindlich in unserem Showroom vorbei und lassen sich inspirieren.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"link_image\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"zoom\" css_animation=\"fadeInUp\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2021-12-24 18:34:40', '2021-12-24 18:34:40', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=37', 0, 'revision', '', 0),
(38, 1, '2021-12-24 18:34:59', '2021-12-24 18:34:59', '[vc_row kd_background_image_position=\"vc_row-bg-position-top\" css=\".vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Auto Atelier\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Lässt Ihr Herz höher schlagen\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][tek_button button_text=\"Unsere Services\" button_style=\"tt_primary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_custom_heading text=\"Das Auto, eine Liebesgeschichte.\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Ein Auto ist mehr als ein fahrbarer Untersatz. Es zeigt den Zeitgeist\r\nund wer wir sind. Unsere Autos lassen Ihr Herz höher schlagen.\r\n\r\nSie träumen vom nächsten Alltagswagen, schnellen Sportflitzer oder sehnen sich nach dem neuesten SUV? Wir bei Auto Atelier in Zürich Schlieren haben eine handverlesene Auswahl an Autos: von Ferrari über Bentley bis hin zu alltagstauglichen Renault, um nur einige zu nennen. Kommen Sie unverbindlich in unserem Showroom vorbei und lassen sich inspirieren.[/vc_column_text][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"01\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Ankauf & Verkauf\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]In Unserem Showroom in Zürich Schlieren finden Sie ausgewählte Autos zu fairen Preisen.\r\n\r\n<strong>Unsere Stärke:</strong> wir decken sämtliche Marken der Automobilwelt ab.[/vc_column_text][tek_button button_text=\"Unsere Autos\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"02\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Suchauftrag\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Dank unserer langjährigen Erfahrung und Netzwerk sind wir in der Lage, welweit das gewünscht Auto für Sie zu finden.\r\n\r\nSoll es ein seltener Ferrari sein oder ein einzigartiger VW Golf? Wir sind der richtige Partner dafür![/vc_column_text][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"03\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Eventlocation\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Mieten Sie unseren exklusiven Showroom in Zürich Schlieren für Ihren nächsten Anlass.\r\n\r\n<strong>Ausstattung:</strong> 400m2 Fläche insgesamt, Soround System. 400m2 Fläche insgesamt, Soround System. 400m2 Fläche insgesamt, Soround System.[/vc_column_text][vc_single_image image=\"31\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_placement=\"middle\" kd_background_image_position=\"vc_row-bg-position-top\"][vc_column width=\"4/12\"][vc_single_image image=\"33\" img_size=\"full\" alignment=\"center\"][/vc_column][vc_column width=\"8/12\"][vc_custom_heading text=\"Bei Auto Atelier mit\r\nCryptowährungen bezahlen\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Kaufen Sie ihr nächsten Auto mit einer Cryptowährung. Exklusiv bei Auto Atelier.\r\n\r\nWir nehmen alle gängigen Cryptowährung an. Von Bitcoin über Etherum bis hin zu Solana oder Cardano. Setzen Sie sich unverbindlich mit uns in Kontakt. Wir finden gemeinsam die beste Lösung für Sie.[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"middle\" kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"9/12\"][vc_custom_heading text=\"Wir sind Fabio und Roberto\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Ein Auto ist mehr als ein fahrbarer Untersatz. Es zeigt den Zeitgeist und wer wir sind. Unsere Autos lassen Ihr Herz höher schlagen. Sie träumen vom nächsten Alltagswagen, schnellen Sportflitzer oder sehnen sich nach dem neuesten SUV? Wir bei Auto Atelier in Zürich Schlieren haben eine handverlesene Auswahl an Autos: von Ferrari über Bentley bis hin zu alltagstauglichen Renault, um nur einige zu nennen. Kommen Sie unverbindlich in unserem Showroom vorbei und lassen sich inspirieren.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"link_image\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"link_image\" css_animation=\"fadeInUp\"][/vc_column_inner][/vc_row_inner][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"link_image\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"link_image\" css_animation=\"fadeInUp\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2021-12-24 18:34:59', '2021-12-24 18:34:59', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=38', 0, 'revision', '', 0),
(39, 1, '2021-12-24 18:45:14', '2021-12-24 18:45:14', '', 'Auto Atelier_Icon_Transparenter Hintergrund', '', 'inherit', 'open', 'closed', '', 'auto-atelier_icon_transparenter-hintergrund', '', '', '2021-12-24 18:45:14', '2021-12-24 18:45:14', '', 0, 'https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Auto-Atelier_Icon_Transparenter-Hintergrund.png', 0, 'attachment', 'image/png', 0),
(40, 1, '2021-12-24 18:48:45', '2021-12-24 18:48:45', '[vc_row kd_background_image_position=\"vc_row-bg-position-top\" css=\".vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Auto Atelier\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Lässt Ihr Herz höher schlagen\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][tek_button button_text=\"Unsere Services\" button_style=\"tt_primary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_custom_heading text=\"Das Auto, eine Liebesgeschichte.\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Ein Auto ist mehr als ein fahrbarer Untersatz. Es zeigt den Zeitgeist\r\nund wer wir sind. Unsere Autos lassen Ihr Herz höher schlagen.\r\n\r\nSie träumen vom nächsten Alltagswagen, schnellen Sportflitzer oder sehnen sich nach dem neuesten SUV? Wir bei Auto Atelier in Zürich Schlieren haben eine handverlesene Auswahl an Autos: von Ferrari über Bentley bis hin zu alltagstauglichen Renault, um nur einige zu nennen. Kommen Sie unverbindlich in unserem Showroom vorbei und lassen sich inspirieren.[/vc_column_text][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"01\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Ankauf & Verkauf\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]In Unserem Showroom in Zürich Schlieren finden Sie ausgewählte Autos zu fairen Preisen.\r\n\r\n<strong>Unsere Stärke:</strong> wir decken sämtliche Marken der Automobilwelt ab.[/vc_column_text][tek_button button_text=\"Unsere Autos\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"02\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Suchauftrag\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Dank unserer langjährigen Erfahrung und Netzwerk sind wir in der Lage, welweit das gewünscht Auto für Sie zu finden.\r\n\r\nSoll es ein seltener Ferrari sein oder ein einzigartiger VW Golf? Wir sind der richtige Partner dafür![/vc_column_text][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"03\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Eventlocation\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Mieten Sie unseren exklusiven Showroom in Zürich Schlieren für Ihren nächsten Anlass.\r\n\r\n<strong>Ausstattung:</strong> 400m2 Fläche insgesamt, Soround System. 400m2 Fläche insgesamt, Soround System. 400m2 Fläche insgesamt, Soround System.[/vc_column_text][vc_single_image image=\"31\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_placement=\"middle\" kd_background_image_position=\"vc_row-bg-position-top\"][vc_column width=\"4/12\"][vc_single_image image=\"33\" img_size=\"full\" alignment=\"center\"][/vc_column][vc_column width=\"8/12\"][vc_custom_heading text=\"Bei Auto Atelier mit\r\nCryptowährungen bezahlen\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Kaufen Sie ihr nächsten Auto mit einer Cryptowährung. Exklusiv bei Auto Atelier.\r\n\r\nWir nehmen alle gängigen Cryptowährung an. Von Bitcoin über Etherum bis hin zu Solana oder Cardano. Setzen Sie sich unverbindlich mit uns in Kontakt. Wir finden gemeinsam die beste Lösung für Sie.[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"middle\" kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"9/12\"][vc_custom_heading text=\"Wir sind Fabio und Roberto\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Ein Auto ist mehr als ein fahrbarer Untersatz. Es zeigt den Zeitgeist und wer wir sind. Unsere Autos lassen Ihr Herz höher schlagen. Sie träumen vom nächsten Alltagswagen, schnellen Sportflitzer oder sehnen sich nach dem neuesten SUV? Wir bei Auto Atelier in Zürich Schlieren haben eine handverlesene Auswahl an Autos: von Ferrari über Bentley bis hin zu alltagstauglichen Renault, um nur einige zu nennen. Kommen Sie unverbindlich in unserem Showroom vorbei und lassen sich inspirieren.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"link_image\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"link_image\" css_animation=\"fadeInUp\"][/vc_column_inner][/vc_row_inner][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"link_image\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"link_image\" css_animation=\"fadeInUp\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Kontaktieren Sie uns\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Schnell und unverbindlich.\r\nWir finden die passende Lösung für Sie.[/vc_column_text][contact-form-7 id=\"6\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Besuchen Sie uns\r\nIm Showroom\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]<strong>Auto Atelier AG</strong>\r\nUnterrohrstrasse 5\r\n8952 Schlieren[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]Tel.: <a href=\"tel:0449991986\">044 999 19 86</a>\r\nE-Mail: <a href=\"mailto:[email protected]\">[email protected]</a>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]<strong>Öffnungszeiten</strong>\r\nMO-FR: 08:00-18:00\r\nSA: 10:00-16:00[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2021-12-24 18:48:45', '2021-12-24 18:48:45', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=40', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(41, 1, '2021-12-24 18:49:13', '2021-12-24 18:49:13', '[vc_row kd_background_image_position=\"vc_row-bg-position-top\" css=\".vc_custom_1640367332995{padding-top: 250px !important;padding-bottom: 250px !important;background-image: url(https://adstechnolab.com/dev/autoatelier/wp-content/uploads/2021/12/Banner.jpg?id=18) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Auto Atelier\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Lässt Ihr Herz höher schlagen\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][tek_button button_text=\"Unsere Services\" button_style=\"tt_primary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_custom_heading text=\"Das Auto, eine Liebesgeschichte.\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Ein Auto ist mehr als ein fahrbarer Untersatz. Es zeigt den Zeitgeist\r\nund wer wir sind. Unsere Autos lassen Ihr Herz höher schlagen.\r\n\r\nSie träumen vom nächsten Alltagswagen, schnellen Sportflitzer oder sehnen sich nach dem neuesten SUV? Wir bei Auto Atelier in Zürich Schlieren haben eine handverlesene Auswahl an Autos: von Ferrari über Bentley bis hin zu alltagstauglichen Renault, um nur einige zu nennen. Kommen Sie unverbindlich in unserem Showroom vorbei und lassen sich inspirieren.[/vc_column_text][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"01\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Ankauf & Verkauf\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]In Unserem Showroom in Zürich Schlieren finden Sie ausgewählte Autos zu fairen Preisen.\r\n\r\n<strong>Unsere Stärke:</strong> wir decken sämtliche Marken der Automobilwelt ab.[/vc_column_text][tek_button button_text=\"Unsere Autos\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"02\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Suchauftrag\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Dank unserer langjährigen Erfahrung und Netzwerk sind wir in der Lage, welweit das gewünscht Auto für Sie zu finden.\r\n\r\nSoll es ein seltener Ferrari sein oder ein einzigartiger VW Golf? Wir sind der richtige Partner dafür![/vc_column_text][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"03\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Eventlocation\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Mieten Sie unseren exklusiven Showroom in Zürich Schlieren für Ihren nächsten Anlass.\r\n\r\n<strong>Ausstattung:</strong> 400m2 Fläche insgesamt, Soround System. 400m2 Fläche insgesamt, Soround System. 400m2 Fläche insgesamt, Soround System.[/vc_column_text][vc_single_image image=\"31\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][tek_button button_text=\"Kontakt\" button_style=\"tt_secondary_button\" button_color_scheme=\"btn_primary_color\" button_hover_state=\"\" button_icon_bool=\"yes\" button_icon_position=\"icon_right\" button_action=\"button-action-link\" button_position=\"btn-align-left\" css_animation=\"kd-animated fadeInUp\" icons=\"fas fa-arrow-right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_placement=\"middle\" kd_background_image_position=\"vc_row-bg-position-top\"][vc_column width=\"4/12\"][vc_single_image image=\"33\" img_size=\"full\" alignment=\"center\"][/vc_column][vc_column width=\"8/12\"][vc_custom_heading text=\"Bei Auto Atelier mit\r\nCryptowährungen bezahlen\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Kaufen Sie ihr nächsten Auto mit einer Cryptowährung. Exklusiv bei Auto Atelier.\r\n\r\nWir nehmen alle gängigen Cryptowährung an. Von Bitcoin über Etherum bis hin zu Solana oder Cardano. Setzen Sie sich unverbindlich mit uns in Kontakt. Wir finden gemeinsam die beste Lösung für Sie.[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"middle\" kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"9/12\"][vc_custom_heading text=\"Wir sind Fabio und Roberto\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Ein Auto ist mehr als ein fahrbarer Untersatz. Es zeigt den Zeitgeist und wer wir sind. Unsere Autos lassen Ihr Herz höher schlagen. Sie träumen vom nächsten Alltagswagen, schnellen Sportflitzer oder sehnen sich nach dem neuesten SUV? Wir bei Auto Atelier in Zürich Schlieren haben eine handverlesene Auswahl an Autos: von Ferrari über Bentley bis hin zu alltagstauglichen Renault, um nur einige zu nennen. Kommen Sie unverbindlich in unserem Showroom vorbei und lassen sich inspirieren.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"link_image\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"link_image\" css_animation=\"fadeInUp\"][/vc_column_inner][/vc_row_inner][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"link_image\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"35\" img_size=\"full\" alignment=\"center\" onclick=\"link_image\" css_animation=\"fadeInUp\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row kd_background_image_position=\"vc_row-bg-position-top\"][vc_column][vc_row_inner kd_background_image_position=\"vc_row-bg-position-top\"][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Kontaktieren Sie uns\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]Schnell und unverbindlich.\r\nWir finden die passende Lösung für Sie.[/vc_column_text][contact-form-7 id=\"6\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Besuchen Sie uns\r\nIm Showroom\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDI3MDAuNDYzNDA1MzU5NzQ5JTIxMmQ4LjQzNTc2ODkxNTU4Nzc2OSUyMTNkNDcuNDAyOTAxNjc5MTcxNjElMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTNtMyUyMTFtMiUyMTFzMHg0NzkwMGQ0MjlmMmRlMmI3JTI1M0EweDIxMDA0OWVkMTFmNGY4N2MlMjEyc0F1dG8lMjUyMEF0ZWxpZXIlMjUyMEFHJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzaW4lMjE0djE2NDAzNzE3MzE5MjglMjE1bTIlMjExc2VuJTIxMnNpbiUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][vc_column_text css_animation=\"fadeInUp\"]<strong>Auto Atelier AG</strong>\r\nUnterrohrstrasse 5\r\n8952 Schlieren[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]Tel.: <a href=\"tel:0449991986\">044 999 19 86</a>\r\nE-Mail: <a href=\"mailto:[email protected]\">[email protected]</a>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]<strong>Öffnungszeiten</strong>\r\nMO-FR: 08:00-18:00\r\nSA: 10:00-16:00[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2021-12-24 18:49:13', '2021-12-24 18:49:13', '', 7, 'https://adstechnolab.com/dev/autoatelier/?p=41', 0, 'revision', '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_termmeta`
--
CREATE TABLE `wp_termmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`term_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_terms`
--
CREATE TABLE `wp_terms` (
`term_id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_terms`
--
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'Header Menu', 'header-menu', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_term_relationships`
--
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`term_taxonomy_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`term_order` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_term_relationships`
--
INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(14, 2, 0),
(15, 2, 0),
(16, 2, 0),
(17, 2, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_term_taxonomy`
--
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) UNSIGNED NOT NULL,
`term_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`count` bigint(20) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_term_taxonomy`
--
INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'nav_menu', '', 0, 4);
-- --------------------------------------------------------
--
-- Table structure for table `wp_usermeta`
--
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_usermeta`
--
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'AutoADMINAtelier'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'syntax_highlighting', 'true'),
(7, 1, 'comment_shortcuts', 'false'),
(8, 1, 'admin_color', 'fresh'),
(9, 1, 'use_ssl', '0'),
(10, 1, 'show_admin_bar_front', 'true'),
(11, 1, 'locale', ''),
(12, 1, 'wp_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(13, 1, 'wp_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', 'vc_pointers_backend_editor'),
(15, 1, 'show_welcome_panel', '1'),
(16, 1, 'session_tokens', 'a:1:{s:64:\"f7ad13e24c07da173b4215f42dfef934f17e19dd6973f89b471c441a3bcfac9e\";a:4:{s:10:\"expiration\";i:1640537369;s:2:\"ip\";s:14:\"150.107.241.77\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36\";s:5:\"login\";i:1640364569;}}'),
(17, 1, 'wp_dashboard_quick_press_last_post_id', '4'),
(18, 1, 'community-events-location', 'a:1:{s:2:\"ip\";s:13:\"150.107.241.0\";}'),
(19, 1, 'extendifysdk_uuid', '4ec615eec67fa8fcafb6ee68e65ead41'),
(20, 1, 'extendifysdk_user_data', '{\"state\":{\"email\":\"\",\"apiKey\":\"\",\"imports\":0,\"uuid\":\"4ec615eec67fa8fcafb6ee68e65ead41\",\"sdkPartner\":\"Redux\",\"registration\":{\"email\":\"\"},\"noticesDismissedAt\":{},\"allowedImports\":\"3\",\"entryPoint\":\"not-set\",\"enabled\":true,\"canInstallPlugins\":true,\"canActivatePlugins\":true,\"preferredOptions\":{\"taxonomies\":{},\"type\":\"\",\"search\":\"\"},\"preferredOptionsHistory\":{\"siteType\":[]},\"isAdmin\":true},\"version\":0}'),
(21, 1, 'wp_user-settings', 'editor=tinymce&libraryContent=browse&edit_element_vcUIPanelWidth=685&edit_element_vcUIPanelLeft=759px&edit_element_vcUIPanelTop=74px'),
(22, 1, 'wp_user-settings-time', '1640367219'),
(23, 1, 'managenav-menuscolumnshidden', 'a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),
(24, 1, 'metaboxhidden_nav-menus', 'a:3:{i:0;s:23:\"add-post-type-portfolio\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";}');
-- --------------------------------------------------------
--
-- Table structure for table `wp_users`
--
CREATE TABLE `wp_users` (
`ID` bigint(20) UNSIGNED NOT NULL,
`user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT 0,
`display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_users`
--
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'AutoADMINAtelier', '$P$Bm3QDh7Hvwo0d3ssFegevU2NDacoLY1', 'autoadminatelier', '[email protected]', 'https://adstechnolab.com/dev/autoatelier', '2021-12-24 16:49:08', '', 0, 'AutoADMINAtelier');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `wp_commentmeta`
--
ALTER TABLE `wp_commentmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `comment_id` (`comment_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_comments`
--
ALTER TABLE `wp_comments`
ADD PRIMARY KEY (`comment_ID`),
ADD KEY `comment_post_ID` (`comment_post_ID`),
ADD KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
ADD KEY `comment_date_gmt` (`comment_date_gmt`),
ADD KEY `comment_parent` (`comment_parent`),
ADD KEY `comment_author_email` (`comment_author_email`(10));
--
-- Indexes for table `wp_links`
--
ALTER TABLE `wp_links`
ADD PRIMARY KEY (`link_id`),
ADD KEY `link_visible` (`link_visible`);
--
-- Indexes for table `wp_options`
--
ALTER TABLE `wp_options`
ADD PRIMARY KEY (`option_id`),
ADD UNIQUE KEY `option_name` (`option_name`),
ADD KEY `autoload` (`autoload`);
--
-- Indexes for table `wp_postmeta`
--
ALTER TABLE `wp_postmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `post_id` (`post_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_posts`
--
ALTER TABLE `wp_posts`
ADD PRIMARY KEY (`ID`),
ADD KEY `post_name` (`post_name`(191)),
ADD KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
ADD KEY `post_parent` (`post_parent`),
ADD KEY `post_author` (`post_author`);
--
-- Indexes for table `wp_termmeta`
--
ALTER TABLE `wp_termmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `term_id` (`term_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_terms`
--
ALTER TABLE `wp_terms`
ADD PRIMARY KEY (`term_id`),
ADD KEY `slug` (`slug`(191)),
ADD KEY `name` (`name`(191));
--
-- Indexes for table `wp_term_relationships`
--
ALTER TABLE `wp_term_relationships`
ADD PRIMARY KEY (`object_id`,`term_taxonomy_id`),
ADD KEY `term_taxonomy_id` (`term_taxonomy_id`);
--
-- Indexes for table `wp_term_taxonomy`
--
ALTER TABLE `wp_term_taxonomy`
ADD PRIMARY KEY (`term_taxonomy_id`),
ADD UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
ADD KEY `taxonomy` (`taxonomy`);
--
-- Indexes for table `wp_usermeta`
--
ALTER TABLE `wp_usermeta`
ADD PRIMARY KEY (`umeta_id`),
ADD KEY `user_id` (`user_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_users`
--
ALTER TABLE `wp_users`
ADD PRIMARY KEY (`ID`),
ADD KEY `user_login_key` (`user_login`),
ADD KEY `user_nicename` (`user_nicename`),
ADD KEY `user_email` (`user_email`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `wp_commentmeta`
--
ALTER TABLE `wp_commentmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_comments`
--
ALTER TABLE `wp_comments`
MODIFY `comment_ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wp_links`
--
ALTER TABLE `wp_links`
MODIFY `link_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_options`
--
ALTER TABLE `wp_options`
MODIFY `option_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=211;
--
-- AUTO_INCREMENT for table `wp_postmeta`
--
ALTER TABLE `wp_postmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=93;
--
-- AUTO_INCREMENT for table `wp_posts`
--
ALTER TABLE `wp_posts`
MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=42;
--
-- AUTO_INCREMENT for table `wp_termmeta`
--
ALTER TABLE `wp_termmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_terms`
--
ALTER TABLE `wp_terms`
MODIFY `term_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `wp_term_taxonomy`
--
ALTER TABLE `wp_term_taxonomy`
MODIFY `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `wp_usermeta`
--
ALTER TABLE `wp_usermeta`
MODIFY `umeta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25;
--
-- AUTO_INCREMENT for table `wp_users`
--
ALTER TABLE `wp_users`
MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;