-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzeta_schema.sql
1937 lines (1856 loc) · 385 KB
/
zeta_schema.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 4.8.3
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3157
-- Generation Time: Oct 31, 2018 at 10:17 AM
-- Server version: 5.7.23
-- PHP Version: 7.2.8
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Database: `zeta`
--
-- --------------------------------------------------------
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `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 utf8_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `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 utf8_unicode_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8_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 utf8_unicode_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`comment_parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_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/', '', '2018-10-02 13:39:45', '2018-10-02 13:39:45', '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, 'post-trashed', '', '', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
CREATE TABLE `wp_links` (
`link_id` bigint(20) UNSIGNED NOT NULL,
`link_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8_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 utf8_unicode_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8_unicode_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
CREATE TABLE `wp_options` (
`option_id` bigint(20) UNSIGNED NOT NULL,
`option_name` varchar(191) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8_unicode_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'yes'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://localhost:3157/zeta', 'yes'),
(2, 'home', 'http://localhost:3157/zeta', 'yes'),
(3, 'blogname', 'Human Rights Arts & Film Festival', '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', '0', 'yes'),
(22, 'posts_per_page', '100', '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', '/%postname%/%category%/', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:5:{i:0;s:19:\"404page/404page.php\";i:1;s:30:\"advanced-custom-fields/acf.php\";i:2;s:57:\"beautiful-taxonomy-filters/beautiful-taxonomy-filters.php\";i:3;s:43:\"custom-post-type-ui/custom-post-type-ui.php\";i:4;s:38:\"post-duplicator/m4c-postduplicator.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', 'a:4:{i:0;s:60:\"/Users/zeeshan/htdocs/zeta/wp-content/themes/hraff/style.css\";i:1;s:61:\"/Users/zeeshan/htdocs/zeta/wp-content/themes/hraff/header.php\";i:2;s:60:\"/Users/zeeshan/htdocs/zeta/wp-content/themes/hraff/index.php\";i:4;s:0:\"\";}', 'no'),
(40, 'template', 'hraff', 'yes'),
(41, 'stylesheet', 'hraff', 'yes'),
(42, 'comment_whitelist', '1', 'yes'),
(43, 'blacklist_keys', '', 'no'),
(44, 'comment_registration', '0', 'yes'),
(45, 'html_type', 'text/html', 'yes'),
(46, 'use_trackback', '0', 'yes'),
(47, 'default_role', 'subscriber', 'yes'),
(48, 'db_version', '38590', 'yes'),
(49, 'uploads_use_yearmonth_folders', '1', 'yes'),
(50, 'upload_path', '', 'yes'),
(51, 'blog_public', '0', 'yes'),
(52, 'default_link_category', '2', 'yes'),
(53, 'show_on_front', 'posts', 'yes'),
(54, 'tag_base', '', 'yes'),
(55, 'show_avatars', '1', 'yes'),
(56, 'avatar_rating', 'G', 'yes'),
(57, 'upload_url_path', '', 'yes'),
(58, 'thumbnail_size_w', '150', 'yes'),
(59, 'thumbnail_size_h', '150', 'yes'),
(60, 'thumbnail_crop', '1', 'yes'),
(61, 'medium_size_w', '300', 'yes'),
(62, 'medium_size_h', '300', 'yes'),
(63, 'avatar_default', 'mystery', 'yes'),
(64, 'large_size_w', '1024', 'yes'),
(65, 'large_size_h', '1024', 'yes'),
(66, 'image_default_link_type', 'none', 'yes'),
(67, 'image_default_size', '', 'yes'),
(68, 'image_default_align', '', 'yes'),
(69, 'close_comments_for_old_posts', '0', 'yes'),
(70, 'close_comments_days_old', '14', 'yes'),
(71, 'thread_comments', '1', 'yes'),
(72, 'thread_comments_depth', '5', 'yes'),
(73, 'page_comments', '0', 'yes'),
(74, 'comments_per_page', '50', 'yes'),
(75, 'default_comments_page', 'newest', 'yes'),
(76, 'comment_order', 'asc', 'yes'),
(77, 'sticky_posts', 'a:0:{}', 'yes'),
(78, 'widget_categories', 'a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(79, 'widget_text', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(80, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(81, 'uninstall_plugins', 'a:0:{}', 'no'),
(82, 'timezone_string', '', 'yes'),
(83, 'page_for_posts', '0', 'yes'),
(84, 'page_on_front', '0', 'yes'),
(85, 'default_post_format', '0', 'yes'),
(86, 'link_manager_enabled', '0', 'yes'),
(87, 'finished_splitting_shared_terms', '1', 'yes'),
(88, 'site_icon', '37', 'yes'),
(89, 'medium_large_size_w', '768', 'yes'),
(90, 'medium_large_size_h', '0', 'yes'),
(91, 'wp_page_for_privacy_policy', '3', 'yes'),
(92, 'show_comments_cookies_opt_in', '0', 'yes'),
(93, 'initial_db_version', '38590', 'yes'),
(94, 'wp_user_roles', 'a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{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:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{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:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{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:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{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:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}', 'yes'),
(95, 'fresh_site', '0', 'yes'),
(96, 'WPLANG', 'en_AU', 'yes'),
(97, 'widget_search', 'a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(98, 'widget_recent-posts', 'a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(99, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(100, 'widget_archives', 'a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(101, 'widget_meta', 'a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(102, 'sidebars_widgets', 'a:2:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}', 'yes'),
(103, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(104, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(105, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(106, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(107, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(108, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(109, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(110, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(111, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(112, 'cron', 'a:5:{i:1540982385;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:1540988737;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:1540993185;a:3:{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;}}}i:1540993229;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;}}}s:7:\"version\";i:2;}', 'yes'),
(113, 'theme_mods_twentyseventeen', 'a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1538553363;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}', 'yes'),
(128, 'can_compress_scripts', '1', 'no'),
(143, 'recently_activated', 'a:0:{}', 'yes'),
(164, 'theme_mods_hraff', 'a:4:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:2:{s:9:\"main-menu\";i:2;s:12:\"footer-links\";i:3;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1538554285;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}s:11:\"custom_logo\";i:40;}', 'yes'),
(165, 'current_theme', 'HRAFF Concept', 'yes'),
(166, 'theme_switched', '', 'yes'),
(173, 'mtphr_post_duplicator_settings', '', 'yes'),
(175, 'theme_mods_twentyfifteen', '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:1538554332;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-1\";a:0:{}}}}', 'yes'),
(176, '_transient_twentyfifteen_categories', '1', 'yes'),
(178, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'yes'),
(187, 'cptui_new_install', 'false', 'yes'),
(190, 'acf_version', '5.7.7', 'yes'),
(200, 'cptui_post_types', 'a:1:{s:5:\"event\";a:29:{s:4:\"name\";s:5:\"event\";s:5:\"label\";s:6:\"Events\";s:14:\"singular_label\";s:5:\"Event\";s:11:\"description\";s:21:\"Create a HRAFF Event.\";s:6:\"public\";s:4:\"true\";s:18:\"publicly_queryable\";s:4:\"true\";s:7:\"show_ui\";s:4:\"true\";s:17:\"show_in_nav_menus\";s:4:\"true\";s:12:\"show_in_rest\";s:5:\"false\";s:9:\"rest_base\";s:0:\"\";s:21:\"rest_controller_class\";s:0:\"\";s:11:\"has_archive\";s:4:\"true\";s:18:\"has_archive_string\";s:0:\"\";s:19:\"exclude_from_search\";s:5:\"false\";s:15:\"capability_type\";s:4:\"post\";s:12:\"hierarchical\";s:4:\"true\";s:7:\"rewrite\";s:4:\"true\";s:12:\"rewrite_slug\";s:0:\"\";s:17:\"rewrite_withfront\";s:4:\"true\";s:9:\"query_var\";s:4:\"true\";s:14:\"query_var_slug\";s:0:\"\";s:13:\"menu_position\";s:2:\"20\";s:12:\"show_in_menu\";s:4:\"true\";s:19:\"show_in_menu_string\";s:0:\"\";s:9:\"menu_icon\";s:19:\"dashicons-lightbulb\";s:8:\"supports\";a:3:{i:0;s:5:\"title\";i:1;s:6:\"editor\";i:2;s:9:\"thumbnail\";}s:10:\"taxonomies\";a:0:{}s:6:\"labels\";a:24:{s:9:\"menu_name\";s:0:\"\";s:9:\"all_items\";s:0:\"\";s:7:\"add_new\";s:0:\"\";s:12:\"add_new_item\";s:0:\"\";s:9:\"edit_item\";s:0:\"\";s:8:\"new_item\";s:0:\"\";s:9:\"view_item\";s:0:\"\";s:10:\"view_items\";s:0:\"\";s:12:\"search_items\";s:0:\"\";s:9:\"not_found\";s:0:\"\";s:18:\"not_found_in_trash\";s:0:\"\";s:17:\"parent_item_colon\";s:0:\"\";s:14:\"featured_image\";s:0:\"\";s:18:\"set_featured_image\";s:0:\"\";s:21:\"remove_featured_image\";s:0:\"\";s:18:\"use_featured_image\";s:0:\"\";s:8:\"archives\";s:0:\"\";s:16:\"insert_into_item\";s:0:\"\";s:21:\"uploaded_to_this_item\";s:0:\"\";s:17:\"filter_items_list\";s:0:\"\";s:21:\"items_list_navigation\";s:0:\"\";s:10:\"items_list\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:14:\"name_admin_bar\";s:0:\"\";}s:15:\"custom_supports\";s:0:\"\";}}', 'yes'),
(212, 'category_children', 'a:0:{}', 'yes'),
(213, 'cptui_taxonomies', 'a:2:{s:4:\"city\";a:24:{s:4:\"name\";s:4:\"city\";s:5:\"label\";s:6:\"Cities\";s:14:\"singular_label\";s:4:\"City\";s:11:\"description\";s:0:\"\";s:6:\"public\";s:4:\"true\";s:18:\"publicly_queryable\";s:4:\"true\";s:12:\"hierarchical\";s:4:\"true\";s:7:\"show_ui\";s:4:\"true\";s:12:\"show_in_menu\";s:4:\"true\";s:17:\"show_in_nav_menus\";s:4:\"true\";s:9:\"query_var\";s:4:\"true\";s:14:\"query_var_slug\";s:0:\"\";s:7:\"rewrite\";s:4:\"true\";s:12:\"rewrite_slug\";s:0:\"\";s:17:\"rewrite_withfront\";s:1:\"1\";s:20:\"rewrite_hierarchical\";s:1:\"0\";s:17:\"show_admin_column\";s:4:\"true\";s:12:\"show_in_rest\";s:5:\"false\";s:18:\"show_in_quick_edit\";s:4:\"true\";s:9:\"rest_base\";s:0:\"\";s:21:\"rest_controller_class\";s:0:\"\";s:6:\"labels\";a:18:{s:9:\"menu_name\";s:0:\"\";s:9:\"all_items\";s:0:\"\";s:9:\"edit_item\";s:0:\"\";s:9:\"view_item\";s:0:\"\";s:11:\"update_item\";s:0:\"\";s:12:\"add_new_item\";s:0:\"\";s:13:\"new_item_name\";s:0:\"\";s:11:\"parent_item\";s:0:\"\";s:17:\"parent_item_colon\";s:0:\"\";s:12:\"search_items\";s:0:\"\";s:13:\"popular_items\";s:0:\"\";s:26:\"separate_items_with_commas\";s:0:\"\";s:19:\"add_or_remove_items\";s:0:\"\";s:21:\"choose_from_most_used\";s:0:\"\";s:9:\"not_found\";s:0:\"\";s:8:\"no_terms\";s:0:\"\";s:21:\"items_list_navigation\";s:0:\"\";s:10:\"items_list\";s:0:\"\";}s:11:\"meta_box_cb\";s:0:\"\";s:12:\"object_types\";a:1:{i:0;s:5:\"event\";}}s:14:\"classification\";a:24:{s:4:\"name\";s:14:\"classification\";s:5:\"label\";s:15:\"Classifications\";s:14:\"singular_label\";s:14:\"Classification\";s:11:\"description\";s:0:\"\";s:6:\"public\";s:4:\"true\";s:18:\"publicly_queryable\";s:4:\"true\";s:12:\"hierarchical\";s:4:\"true\";s:7:\"show_ui\";s:4:\"true\";s:12:\"show_in_menu\";s:4:\"true\";s:17:\"show_in_nav_menus\";s:4:\"true\";s:9:\"query_var\";s:4:\"true\";s:14:\"query_var_slug\";s:0:\"\";s:7:\"rewrite\";s:4:\"true\";s:12:\"rewrite_slug\";s:0:\"\";s:17:\"rewrite_withfront\";s:1:\"1\";s:20:\"rewrite_hierarchical\";s:1:\"0\";s:17:\"show_admin_column\";s:4:\"true\";s:12:\"show_in_rest\";s:5:\"false\";s:18:\"show_in_quick_edit\";s:4:\"true\";s:9:\"rest_base\";s:0:\"\";s:21:\"rest_controller_class\";s:0:\"\";s:6:\"labels\";a:18:{s:9:\"menu_name\";s:0:\"\";s:9:\"all_items\";s:0:\"\";s:9:\"edit_item\";s:0:\"\";s:9:\"view_item\";s:0:\"\";s:11:\"update_item\";s:0:\"\";s:12:\"add_new_item\";s:0:\"\";s:13:\"new_item_name\";s:0:\"\";s:11:\"parent_item\";s:0:\"\";s:17:\"parent_item_colon\";s:0:\"\";s:12:\"search_items\";s:0:\"\";s:13:\"popular_items\";s:0:\"\";s:26:\"separate_items_with_commas\";s:0:\"\";s:19:\"add_or_remove_items\";s:0:\"\";s:21:\"choose_from_most_used\";s:0:\"\";s:9:\"not_found\";s:0:\"\";s:8:\"no_terms\";s:0:\"\";s:21:\"items_list_navigation\";s:0:\"\";s:10:\"items_list\";s:0:\"\";}s:11:\"meta_box_cb\";s:0:\"\";s:12:\"object_types\";a:1:{i:0;s:5:\"event\";}}}', 'yes'),
(246, 'city_children', 'a:0:{}', 'yes'),
(328, 'pp-404page-admin-notice-2-start', '1542186159', 'yes'),
(364, 'date_children', 'a:0:{}', 'yes'),
(388, 'new_admin_email', '[email protected]', 'yes'),
(395, '404page_page_id', '129', 'yes'),
(396, '404page_hide', '', 'yes'),
(397, '404page_method', 'STD', 'yes'),
(398, '404page_fire_error', '1', 'yes'),
(399, '404page_force_error', '', 'yes'),
(400, '404page_no_url_guessing', '', 'yes'),
(401, '404page_http410_if_trashed', '', 'yes'),
(407, '_site_transient_timeout_browser_fa9163078450116b33aea27d7429a9e8', '1540986290', 'no'),
(408, '_site_transient_browser_fa9163078450116b33aea27d7429a9e8', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"69.0.3497.100\";s:8:\"platform\";s:9:\"Macintosh\";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'),
(430, '_site_transient_timeout_browser_501bb4b2c18849aa236255e5b6d224a2', '1541050788', 'no'),
(431, '_site_transient_browser_501bb4b2c18849aa236255e5b6d224a2', 'a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"62.0\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}', 'no'),
(468, 'classification_children', 'a:0:{}', 'yes'),
(477, 'widget_beautiful-taxonomy-filters-widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(478, 'widget_beautiful-taxonomy-filters-info-widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(479, 'beautiful_taxonomy_filters_version', '2.4.3', 'yes'),
(480, 'rewrite_rules', 'a:134:{s:71:\"event(?:/city/([^/]+))?(?:/classification/([^/]+))?/page/([0-9]{1,})/?$\";s:87:\"index.php?post_type=event&city=$matches[1]&classification=$matches[2]&paged=$matches[3]\";s:54:\"event(?:/city/([^/]+))?(?:/classification/([^/]+))?/?$\";s:69:\"index.php?post_type=event&city=$matches[1]&classification=$matches[2]\";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:8:\"event/?$\";s:25:\"index.php?post_type=event\";s:38:\"event/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=event&feed=$matches[1]\";s:33:\"event/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=event&feed=$matches[1]\";s:25:\"event/page/([0-9]{1,})/?$\";s:43:\"index.php?post_type=event&paged=$matches[1]\";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:45:\"city/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?city=$matches[1]&feed=$matches[2]\";s:40:\"city/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?city=$matches[1]&feed=$matches[2]\";s:21:\"city/([^/]+)/embed/?$\";s:37:\"index.php?city=$matches[1]&embed=true\";s:33:\"city/([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?city=$matches[1]&paged=$matches[2]\";s:15:\"city/([^/]+)/?$\";s:26:\"index.php?city=$matches[1]\";s:55:\"classification/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?classification=$matches[1]&feed=$matches[2]\";s:50:\"classification/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?classification=$matches[1]&feed=$matches[2]\";s:31:\"classification/([^/]+)/embed/?$\";s:47:\"index.php?classification=$matches[1]&embed=true\";s:43:\"classification/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?classification=$matches[1]&paged=$matches[2]\";s:25:\"classification/([^/]+)/?$\";s:36:\"index.php?classification=$matches[1]\";s:31:\"event/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"event/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"event/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"event/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"event/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"event/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:20:\"event/(.+?)/embed/?$\";s:38:\"index.php?event=$matches[1]&embed=true\";s:24:\"event/(.+?)/trackback/?$\";s:32:\"index.php?event=$matches[1]&tb=1\";s:44:\"event/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?event=$matches[1]&feed=$matches[2]\";s:39:\"event/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?event=$matches[1]&feed=$matches[2]\";s:32:\"event/(.+?)/page/?([0-9]{1,})/?$\";s:45:\"index.php?event=$matches[1]&paged=$matches[2]\";s:39:\"event/(.+?)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?event=$matches[1]&cpage=$matches[2]\";s:28:\"event/(.+?)(?:/([0-9]+))?/?$\";s:44:\"index.php?event=$matches[1]&page=$matches[2]\";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: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: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]\";s:31:\"[^/]+/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"[^/]+/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"[^/]+/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"[^/]+/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"[^/]+/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"[^/]+/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"([^/]+)/(.+?)/embed/?$\";s:63:\"index.php?name=$matches[1]&category_name=$matches[2]&embed=true\";s:26:\"([^/]+)/(.+?)/trackback/?$\";s:57:\"index.php?name=$matches[1]&category_name=$matches[2]&tb=1\";s:46:\"([^/]+)/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?name=$matches[1]&category_name=$matches[2]&feed=$matches[3]\";s:41:\"([^/]+)/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?name=$matches[1]&category_name=$matches[2]&feed=$matches[3]\";s:34:\"([^/]+)/(.+?)/page/?([0-9]{1,})/?$\";s:70:\"index.php?name=$matches[1]&category_name=$matches[2]&paged=$matches[3]\";s:41:\"([^/]+)/(.+?)/comment-page-([0-9]{1,})/?$\";s:70:\"index.php?name=$matches[1]&category_name=$matches[2]&cpage=$matches[3]\";s:30:\"([^/]+)/(.+?)(?:/([0-9]+))?/?$\";s:69:\"index.php?name=$matches[1]&category_name=$matches[2]&page=$matches[3]\";s:20:\"[^/]+/.+?/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:30:\"[^/]+/.+?/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:50:\"[^/]+/.+?/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\"[^/]+/.+?/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\"[^/]+/.+?/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:26:\"[^/]+/.+?/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";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:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}', 'yes'),
(481, 'beautiful_taxonomy_filters_post_types', 'a:1:{i:0;s:5:\"event\";}', 'yes'),
(482, 'beautiful_taxonomy_filters_taxonomies', '', 'yes'),
(483, 'beautiful_taxonomy_filters_automagic', 'a:1:{i:0;s:5:\"above\";}', 'yes'),
(484, 'beautiful_taxonomy_filters_styles', 'simple', 'yes'),
(485, 'beautiful_taxonomy_filters_custom_css', '', 'yes'),
(490, 'beautiful_taxonomy_filters_disable_select2', '', 'yes'),
(491, 'beautiful_taxonomy_filters_clear_all', '1', 'yes'),
(492, 'beautiful_taxonomy_filters_show_count', '1', 'yes'),
(493, 'beautiful_taxonomy_filters_show_description', '', 'yes'),
(494, 'beautiful_taxonomy_filters_hide_empty', '', 'yes'),
(495, 'beautiful_taxonomy_filters_disable_heading', '', 'yes'),
(496, 'beautiful_taxonomy_filters_disable_postcount', '', 'yes'),
(497, 'beautiful_taxonomy_filters_dropdown_behaviour', 'show_all_option', 'yes'),
(498, 'beautiful_taxonomy_filters_settings', '', 'yes'),
(531, '_site_transient_timeout_browser_8651940b33fd1e958c905441aa40a03d', '1541139260', 'no'),
(532, '_site_transient_browser_8651940b33fd1e958c905441aa40a03d', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"69.0.3497.100\";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'),
(557, 'core_updater.lock', '1540867998', 'no'),
(560, '_site_transient_timeout_theme_roots', '1540957846', 'no'),
(561, '_site_transient_theme_roots', 'a:4:{s:5:\"hraff\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}', 'no'),
(562, '_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:65:\"https://downloads.wordpress.org/release/en_AU/wordpress-4.9.8.zip\";s:6:\"locale\";s:5:\"en_AU\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/en_AU/wordpress-4.9.8.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.8\";s:7:\"version\";s:5:\"4.9.8\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1540956051;s:15:\"version_checked\";s:5:\"4.9.8\";s:12:\"translations\";a:1:{i:0;a:7:{s:4:\"type\";s:4:\"core\";s:4:\"slug\";s:7:\"default\";s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.9.8\";s:7:\"updated\";s:19:\"2018-10-28 23:34:56\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.8/en_AU.zip\";s:10:\"autoupdate\";b:1;}}}', 'no'),
(563, '_site_transient_update_themes', 'O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1540956052;s:7:\"checked\";a:4:{s:5:\"hraff\";s:5:\"0.0.1\";s:13:\"twentyfifteen\";s:3:\"2.0\";s:15:\"twentyseventeen\";s:3:\"1.7\";s:13:\"twentysixteen\";s:3:\"1.5\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}', 'no'),
(564, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1540956054;s:7:\"checked\";a:7:{s:19:\"404page/404page.php\";s:1:\"7\";s:30:\"advanced-custom-fields/acf.php\";s:5:\"5.7.7\";s:19:\"akismet/akismet.php\";s:5:\"4.0.8\";s:57:\"beautiful-taxonomy-filters/beautiful-taxonomy-filters.php\";s:5:\"2.4.3\";s:43:\"custom-post-type-ui/custom-post-type-ui.php\";s:5:\"1.6.0\";s:9:\"hello.php\";s:3:\"1.7\";s:38:\"post-duplicator/m4c-postduplicator.php\";s:4:\"2.20\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:7:{s:19:\"404page/404page.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/404page\";s:4:\"slug\";s:7:\"404page\";s:6:\"plugin\";s:19:\"404page/404page.php\";s:11:\"new_version\";s:1:\"7\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/404page/\";s:7:\"package\";s:52:\"https://downloads.wordpress.org/plugin/404page.7.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:60:\"https://ps.w.org/404page/assets/icon-256x256.png?rev=1855871\";s:2:\"1x\";s:52:\"https://ps.w.org/404page/assets/icon.svg?rev=1855871\";s:3:\"svg\";s:52:\"https://ps.w.org/404page/assets/icon.svg?rev=1855871\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/404page/assets/banner-1544x500.png?rev=1961085\";s:2:\"1x\";s:62:\"https://ps.w.org/404page/assets/banner-772x250.png?rev=1961085\";}s:11:\"banners_rtl\";a:0:{}}s:30:\"advanced-custom-fields/acf.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:36:\"w.org/plugins/advanced-custom-fields\";s:4:\"slug\";s:22:\"advanced-custom-fields\";s:6:\"plugin\";s:30:\"advanced-custom-fields/acf.php\";s:11:\"new_version\";s:5:\"5.7.7\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/advanced-custom-fields/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/advanced-custom-fields.5.7.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png?rev=1082746\";s:2:\"1x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-128x128.png?rev=1082746\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";s:2:\"1x\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";}s:11:\"banners_rtl\";a:0:{}}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{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.0.8\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.0.8.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:57:\"beautiful-taxonomy-filters/beautiful-taxonomy-filters.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:40:\"w.org/plugins/beautiful-taxonomy-filters\";s:4:\"slug\";s:26:\"beautiful-taxonomy-filters\";s:6:\"plugin\";s:57:\"beautiful-taxonomy-filters/beautiful-taxonomy-filters.php\";s:11:\"new_version\";s:5:\"2.4.3\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/beautiful-taxonomy-filters/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/beautiful-taxonomy-filters.2.4.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/beautiful-taxonomy-filters/assets/icon-256x256.png?rev=1654967\";s:2:\"1x\";s:79:\"https://ps.w.org/beautiful-taxonomy-filters/assets/icon-128x128.png?rev=1654967\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/beautiful-taxonomy-filters/assets/banner-1544x500.jpg?rev=1020041\";s:2:\"1x\";s:81:\"https://ps.w.org/beautiful-taxonomy-filters/assets/banner-772x250.jpg?rev=1020041\";}s:11:\"banners_rtl\";a:0:{}}s:43:\"custom-post-type-ui/custom-post-type-ui.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:33:\"w.org/plugins/custom-post-type-ui\";s:4:\"slug\";s:19:\"custom-post-type-ui\";s:6:\"plugin\";s:43:\"custom-post-type-ui/custom-post-type-ui.php\";s:11:\"new_version\";s:5:\"1.6.0\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/custom-post-type-ui/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/custom-post-type-ui.1.6.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/custom-post-type-ui/assets/icon-256x256.png?rev=1069557\";s:2:\"1x\";s:72:\"https://ps.w.org/custom-post-type-ui/assets/icon-128x128.png?rev=1069557\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/custom-post-type-ui/assets/banner-1544x500.png?rev=1069557\";s:2:\"1x\";s:74:\"https://ps.w.org/custom-post-type-ui/assets/banner-772x250.png?rev=1069557\";}s:11:\"banners_rtl\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":9:{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:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=969907\";s:2:\"1x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=969907\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/hello-dolly/assets/banner-772x250.png?rev=478342\";}s:11:\"banners_rtl\";a:0:{}}s:38:\"post-duplicator/m4c-postduplicator.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:29:\"w.org/plugins/post-duplicator\";s:4:\"slug\";s:15:\"post-duplicator\";s:6:\"plugin\";s:38:\"post-duplicator/m4c-postduplicator.php\";s:11:\"new_version\";s:4:\"2.20\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/post-duplicator/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/post-duplicator.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/post-duplicator/assets/icon-128x128.png?rev=1587588\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/post-duplicator/assets/banner-1544x500.png?rev=1587588\";s:2:\"1x\";s:70:\"https://ps.w.org/post-duplicator/assets/banner-772x250.png?rev=1587588\";}s:11:\"banners_rtl\";a:0:{}}}}', 'no'),
(566, '_site_transient_timeout_browser_543775e88f7c2bdea63ea551d4abe2a0', '1541571223', 'no'),
(567, '_site_transient_browser_543775e88f7c2bdea63ea551d4abe2a0', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"70.0.3538.77\";s:8:\"platform\";s:9:\"Macintosh\";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'),
(568, '_site_transient_timeout_community-events-d41d8cd98f00b204e9800998ecf8427e', '1541024173', 'no'),
(569, '_site_transient_community-events-d41d8cd98f00b204e9800998ecf8427e', 'a:2:{s:8:\"location\";a:1:{s:2:\"ip\";b:0;}s:6:\"events\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:46:\"[Fortitude Valley] WordPress Brisbane November\";s:3:\"url\";s:59:\"https://www.meetup.com/WordPress-Brisbane/events/255734219/\";s:6:\"meetup\";s:18:\"WordPress Brisbane\";s:10:\"meetup_url\";s:42:\"https://www.meetup.com/WordPress-Brisbane/\";s:4:\"date\";s:19:\"2018-11-08 18:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:27:\"Fortitude Valley, Australia\";s:7:\"country\";s:2:\"au\";s:8:\"latitude\";d:-27.458061;s:9:\"longitude\";d:153.03448;}}i:1;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:35:\"Brisbane Northside WordPress Meetup\";s:3:\"url\";s:59:\"https://www.meetup.com/WordPress-Brisbane/events/255983114/\";s:6:\"meetup\";s:18:\"WordPress Brisbane\";s:10:\"meetup_url\";s:42:\"https://www.meetup.com/WordPress-Brisbane/\";s:4:\"date\";s:19:\"2018-11-14 18:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Brisbane, Australia\";s:7:\"country\";s:2:\"au\";s:8:\"latitude\";d:-27.23777;s:9:\"longitude\";d:153.02235;}}i:2;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:33:\"WordPress Ipswich November Meetup\";s:3:\"url\";s:65:\"https://www.meetup.com/Ipswich-WordPress-Meetup/events/251499216/\";s:6:\"meetup\";s:24:\"Ipswich WordPress Meetup\";s:10:\"meetup_url\";s:48:\"https://www.meetup.com/Ipswich-WordPress-Meetup/\";s:4:\"date\";s:19:\"2018-11-29 18:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:40:\"Springfield Central, QLD 4300, Australia\";s:7:\"country\";s:2:\"au\";s:8:\"latitude\";d:-27.683928;s:9:\"longitude\";d:152.905731;}}i:3;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:21:\"Let\'s Talk WordPress!\";s:3:\"url\";s:52:\"https://www.meetup.com/WPGoldCoast/events/254027275/\";s:6:\"meetup\";s:20:\"WordPress Gold Coast\";s:10:\"meetup_url\";s:35:\"https://www.meetup.com/WPGoldCoast/\";s:4:\"date\";s:19:\"2018-11-29 18:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:20:\"Southport, Australia\";s:7:\"country\";s:2:\"au\";s:8:\"latitude\";d:-27.989122;s:9:\"longitude\";d:153.3992;}}i:4;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:21:\"Let\'s Talk WordPress!\";s:3:\"url\";s:52:\"https://www.meetup.com/WPGoldCoast/events/254027287/\";s:6:\"meetup\";s:20:\"WordPress Gold Coast\";s:10:\"meetup_url\";s:35:\"https://www.meetup.com/WPGoldCoast/\";s:4:\"date\";s:19:\"2018-12-27 18:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:20:\"Southport, Australia\";s:7:\"country\";s:2:\"au\";s:8:\"latitude\";d:-27.989122;s:9:\"longitude\";d:153.3992;}}}}', 'no'),
(570, '_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3', '1541009626', 'no'),
(571, '_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1541009626', 'no'),
(572, '_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1540966426', 'no'),
(573, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1541009627', 'no'),
(574, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1541009627', 'no'),
(575, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1540966427', 'no'),
(576, '_transient_timeout_dash_v2_fe2922e4dab38d163882ac0453e47f7b', '1541009627', 'no'),
(577, '_transient_dash_v2_fe2922e4dab38d163882ac0453e47f7b', '<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2018/10/wordpress-5-0-beta-2/\'>WordPress 5.0 Beta 2</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://ma.tt/2018/10/whats-in-my-bag-2018-edition/\'>Matt: What’s in My Bag, 2018 Edition</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-com-and-jetpack-launch-new-activity-feature-for-monitoring-website-changes\'>WPTavern: WordPress.com and Jetpack Launch New Activity Feature for Monitoring Website Changes</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-accessibility-team-delivers-sobering-assessment-of-gutenberg-we-have-to-draw-a-line\'>WPTavern: WordPress Accessibility Team Delivers Sobering Assessment of Gutenberg: “We have to draw a line.”</a></li></ul></div>', 'no'),
(581, '_site_transient_timeout_browser_4921673eb5362163c99e340a10b62f97', '1541585771', 'no'),
(582, '_site_transient_browser_4921673eb5362163c99e340a10b62f97', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"70.0.3538.77\";s:8:\"platform\";s:9:\"Macintosh\";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');
-- --------------------------------------------------------
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `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 utf8_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_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'),
(3, 5, '_menu_item_type', 'custom'),
(4, 5, '_menu_item_menu_item_parent', '0'),
(5, 5, '_menu_item_object_id', '5'),
(6, 5, '_menu_item_object', 'custom'),
(7, 5, '_menu_item_target', ''),
(8, 5, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(9, 5, '_menu_item_xfn', ''),
(10, 5, '_menu_item_url', 'http://localhost:3157/zeta/'),
(11, 5, '_menu_item_orphaned', '1538554704'),
(12, 6, '_menu_item_type', 'post_type'),
(13, 6, '_menu_item_menu_item_parent', '0'),
(14, 6, '_menu_item_object_id', '2'),
(15, 6, '_menu_item_object', 'page'),
(16, 6, '_menu_item_target', ''),
(17, 6, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(18, 6, '_menu_item_xfn', ''),
(19, 6, '_menu_item_url', ''),
(20, 6, '_menu_item_orphaned', '1538554704'),
(39, 1, '_edit_lock', '1538573291:1'),
(42, 10, '_wp_trash_meta_status', 'publish'),
(43, 10, '_wp_trash_meta_time', '1538569018'),
(44, 11, '_edit_lock', '1538569134:1'),
(45, 11, '_wp_trash_meta_status', 'publish'),
(46, 11, '_wp_trash_meta_time', '1538569136'),
(47, 13, '_edit_last', '1'),
(48, 13, '_edit_lock', '1540969220:1'),
(49, 24, '_edit_last', '1'),
(50, 24, '_edit_lock', '1540969313:1'),
(51, 24, 'subtitle', 'Orban Wallace / UK / 84 Mins / English / Documentary'),
(52, 24, '_subtitle', 'field_5bb4b8b2aadef'),
(53, 24, 'classification', 'M'),
(54, 24, '_classification', 'field_5bb4b9dba1f93'),
(55, 24, 'when', '2018-06-20 18:00:00'),
(56, 24, '_when', 'field_5bb4bb11a1f94'),
(57, 24, 'where', 'Palace Kino Cinemas'),
(58, 24, '_where', 'field_5bb4bb7da1f95'),
(59, 24, 'city', 'Melbourne'),
(60, 24, '_city', 'field_5bb89e8060476'),
(61, 24, 'summary', 'To mark Refugee Week 2018, The Brotherhood of St Laurence is holding a one-off screening of the celebrated film, Another News Story.'),
(62, 24, '_summary', 'field_5bb4bcbc98e8f'),
(63, 26, '_wp_attached_file', '2018/10/f17f06e8-a21d-4d97-996e-25eaae60ca23-480x200.jpg'),
(64, 26, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:480;s:6:\"height\";i:200;s:4:\"file\";s:56:\"2018/10/f17f06e8-a21d-4d97-996e-25eaae60ca23-480x200.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"f17f06e8-a21d-4d97-996e-25eaae60ca23-480x200-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"f17f06e8-a21d-4d97-996e-25eaae60ca23-480x200-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;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:{}}}'),
(65, 24, '_thumbnail_id', '26'),
(66, 24, 'youtube_video_id', '_N2nZAThjcw'),
(67, 24, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(71, 3, '_edit_lock', '1538576528:1'),
(72, 3, '_edit_last', '1'),
(73, 2, '_wp_trash_meta_status', 'publish'),
(74, 2, '_wp_trash_meta_time', '1538576546'),
(75, 2, '_wp_desired_post_slug', 'sample-page'),
(76, 30, '_edit_last', '1'),
(77, 30, '_edit_lock', '1538826097:1'),
(78, 32, '_edit_last', '1'),
(79, 32, '_edit_lock', '1538576546:1'),
(80, 34, '_menu_item_type', 'post_type'),
(81, 34, '_menu_item_menu_item_parent', '0'),
(82, 34, '_menu_item_object_id', '32'),
(83, 34, '_menu_item_object', 'page'),
(84, 34, '_menu_item_target', ''),
(85, 34, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(86, 34, '_menu_item_xfn', ''),
(87, 34, '_menu_item_url', ''),
(89, 35, '_menu_item_type', 'post_type'),
(90, 35, '_menu_item_menu_item_parent', '0'),
(91, 35, '_menu_item_object_id', '30'),
(92, 35, '_menu_item_object', 'page'),
(93, 35, '_menu_item_target', ''),
(94, 35, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(95, 35, '_menu_item_xfn', ''),
(96, 35, '_menu_item_url', ''),
(100, 37, '_wp_attached_file', '2018/10/cropped-logo.png'),
(101, 37, '_wp_attachment_context', 'site-icon'),
(102, 37, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:24:\"2018/10/cropped-logo.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"cropped-logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"cropped-logo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:24:\"cropped-logo-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:24:\"cropped-logo-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:24:\"cropped-logo-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:22:\"cropped-logo-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;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:{}}}'),
(103, 38, '_wp_trash_meta_status', 'publish'),
(104, 38, '_wp_trash_meta_time', '1538810575'),
(111, 40, '_wp_attached_file', '2018/10/cropped-logo-1.png'),
(112, 40, '_wp_attachment_context', 'custom-logo'),
(113, 40, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:632;s:6:\"height\";i:632;s:4:\"file\";s:26:\"2018/10/cropped-logo-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"cropped-logo-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"cropped-logo-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;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:{}}}'),
(114, 41, '_wp_trash_meta_status', 'publish'),
(115, 41, '_wp_trash_meta_time', '1538812619'),
(116, 1, '_wp_trash_meta_status', 'publish'),
(117, 1, '_wp_trash_meta_time', '1538816831'),
(118, 1, '_wp_desired_post_slug', 'hello-world'),
(119, 1, '_wp_trash_meta_comments_status', 'a:1:{i:1;s:1:\"1\";}'),
(120, 45, '_edit_last', '1'),
(121, 45, '_edit_lock', '1540969309:1'),
(122, 46, '_wp_attached_file', '2018/10/04_the_cleaners____gebrueder_beetz_filmproduktion-480x200.jpg'),
(123, 46, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:480;s:6:\"height\";i:200;s:4:\"file\";s:69:\"2018/10/04_the_cleaners____gebrueder_beetz_filmproduktion-480x200.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:69:\"04_the_cleaners____gebrueder_beetz_filmproduktion-480x200-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:69:\"04_the_cleaners____gebrueder_beetz_filmproduktion-480x200-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;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:{}}}'),
(124, 45, '_thumbnail_id', '46'),
(125, 45, 'subtitle', 'HANS BLOCK & MORITZ RIESWIECK / 2018 / GERMANY, BRAZIL, NETHERLANDS, ITALY, & USA / 88 MINS / ENGLISH AND TAGALOG WITH ENGLISH SUBTITLES / DOCUMENTARY'),
(126, 45, '_subtitle', 'field_5bb4b8b2aadef'),
(127, 45, 'classification', 'M'),
(128, 45, '_classification', 'field_5bb4b9dba1f93'),
(129, 45, 'when', '2018-10-18 18:15:00'),
(130, 45, '_when', 'field_5bb4bb11a1f94'),
(131, 45, 'where', 'Australian Centre for the Moving Image (ACMI)'),
(132, 45, '_where', 'field_5bb4bb7da1f95'),
(133, 45, 'city', 'Melbourne'),
(134, 45, '_city', 'field_5bb89e8060476'),
(135, 45, 'summary', 'In an unmarked office building in Manila, just about as far away from Silicon Valley as you can get, a hidden industry has emerged…'),
(136, 45, '_summary', 'field_5bb4bcbc98e8f'),
(137, 45, 'youtube_video_id', 'ngYphW8YdOFjGEaE'),
(138, 45, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(139, 47, '_edit_last', '1'),
(140, 47, '_edit_lock', '1540969255:1'),
(141, 48, '_wp_attached_file', '2018/10/bio-photo-480x200.jpg'),
(142, 48, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:480;s:6:\"height\";i:200;s:4:\"file\";s:29:\"2018/10/bio-photo-480x200.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"bio-photo-480x200-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"bio-photo-480x200-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;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:{}}}'),
(143, 47, '_thumbnail_id', '48'),
(144, 47, 'subtitle', ''),
(145, 47, '_subtitle', 'field_5bb4b8b2aadef'),
(146, 47, 'classification', ''),
(147, 47, '_classification', 'field_5bb4b9dba1f93'),
(148, 47, 'when', '2018-10-26 10:00:00'),
(149, 47, '_when', 'field_5bb4bb11a1f94'),
(150, 47, 'where', 'Alexandra Club'),
(151, 47, '_where', 'field_5bb4bb7da1f95'),
(152, 47, 'city', 'Melbourne'),
(153, 47, '_city', 'field_5bb89e8060476'),
(154, 47, 'summary', 'Join us at our annual Morning Tea!'),
(155, 47, '_summary', 'field_5bb4bcbc98e8f'),
(156, 47, 'youtube_video_id', ''),
(157, 47, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(158, 49, '_edit_last', '1'),
(159, 49, '_edit_lock', '1538831516:1'),
(160, 49, 'subtitle', 'Orban Wallace / UK / 84 Mins / English / Documentary'),
(161, 49, '_subtitle', 'field_5bb4b8b2aadef'),
(162, 49, 'classification', 'M'),
(163, 49, '_classification', 'field_5bb4b9dba1f93'),
(164, 49, 'when', '2018-06-20 18:00:00'),
(165, 49, '_when', 'field_5bb4bb11a1f94'),
(166, 49, 'where', 'Palace Kino Cinemas'),
(167, 49, '_where', 'field_5bb4bb7da1f95'),
(168, 49, 'city', 'Melbourne'),
(169, 49, '_city', 'field_5bb89e8060476'),
(170, 49, 'summary', 'To mark Refugee Week 2018, The Brotherhood of St Laurence is holding a one-off screening of the celebrated film, Another News Story.'),
(171, 49, '_summary', 'field_5bb4bcbc98e8f'),
(172, 49, '_thumbnail_id', '26'),
(173, 49, 'youtube_video_id', '_N2nZAThjcw'),
(174, 49, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(175, 50, '_edit_last', '1'),
(176, 50, '_edit_lock', '1538832022:1'),
(177, 50, '_thumbnail_id', '48'),
(178, 50, 'subtitle', ''),
(179, 50, '_subtitle', 'field_5bb4b8b2aadef'),
(180, 50, 'classification', ''),
(181, 50, '_classification', 'field_5bb4b9dba1f93'),
(182, 50, 'when', '2018-10-26 10:00:00'),
(183, 50, '_when', 'field_5bb4bb11a1f94'),
(184, 50, 'where', 'Alexandra Club'),
(185, 50, '_where', 'field_5bb4bb7da1f95'),
(186, 50, 'city', 'Melbourne'),
(187, 50, '_city', 'field_5bb89e8060476'),
(188, 50, 'summary', 'Join us at our annual Morning Tea!'),
(189, 50, '_summary', 'field_5bb4bcbc98e8f'),
(190, 50, 'youtube_video_id', ''),
(191, 50, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(192, 51, '_edit_last', '1'),
(193, 51, '_edit_lock', '1538831415:1'),
(194, 51, '_thumbnail_id', '46'),
(195, 51, 'subtitle', 'HANS BLOCK & MORITZ RIESWIECK / 2018 / GERMANY, BRAZIL, NETHERLANDS, ITALY, & USA / 88 MINS / ENGLISH AND TAGALOG WITH ENGLISH SUBTITLES / DOCUMENTARY'),
(196, 51, '_subtitle', 'field_5bb4b8b2aadef'),
(197, 51, 'classification', 'M'),
(198, 51, '_classification', 'field_5bb4b9dba1f93'),
(199, 51, 'when', '2018-10-18 18:15:00'),
(200, 51, '_when', 'field_5bb4bb11a1f94'),
(201, 51, 'where', 'Australian Centre for the Moving Image (ACMI)'),
(202, 51, '_where', 'field_5bb4bb7da1f95'),
(203, 51, 'city', 'Melbourne'),
(204, 51, '_city', 'field_5bb89e8060476'),
(205, 51, 'summary', 'In an unmarked office building in Manila, just about as far away from Silicon Valley as you can get, a hidden industry has emerged…'),
(206, 51, '_summary', 'field_5bb4bcbc98e8f'),
(207, 51, 'youtube_video_id', 'ngYphW8YdOFjGEaE'),
(208, 51, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(209, 53, '_menu_item_type', 'post_type_archive'),
(210, 53, '_menu_item_menu_item_parent', '0'),
(211, 53, '_menu_item_object_id', '-15'),
(212, 53, '_menu_item_object', 'event'),
(213, 53, '_menu_item_target', ''),
(214, 53, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(215, 53, '_menu_item_xfn', ''),
(216, 53, '_menu_item_url', ''),
(218, 54, '_edit_last', '1'),
(219, 54, '_edit_lock', '1539433697:1'),
(220, 56, '_menu_item_type', 'post_type'),
(221, 56, '_menu_item_menu_item_parent', '0'),
(222, 56, '_menu_item_object_id', '54'),
(223, 56, '_menu_item_object', 'page'),
(224, 56, '_menu_item_target', ''),
(225, 56, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(226, 56, '_menu_item_xfn', ''),
(227, 56, '_menu_item_url', ''),
(229, 57, '_edit_last', '1'),
(230, 57, '_edit_lock', '1540531980:1'),
(231, 59, '_edit_last', '1'),
(232, 59, '_edit_lock', '1540966961:1'),
(233, 61, '_edit_last', '1'),
(234, 61, '_edit_lock', '1539433653:1'),
(235, 64, '_edit_last', '1'),
(236, 64, '_edit_lock', '1539433914:1'),
(237, 66, '_edit_last', '1'),
(238, 66, '_edit_lock', '1539434008:1'),
(239, 68, '_menu_item_type', 'post_type'),
(240, 68, '_menu_item_menu_item_parent', '0'),
(241, 68, '_menu_item_object_id', '66'),
(242, 68, '_menu_item_object', 'page'),
(243, 68, '_menu_item_target', ''),
(244, 68, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(245, 68, '_menu_item_xfn', ''),
(246, 68, '_menu_item_url', ''),
(248, 69, '_menu_item_type', 'post_type'),
(249, 69, '_menu_item_menu_item_parent', '0'),
(250, 69, '_menu_item_object_id', '64'),
(251, 69, '_menu_item_object', 'page'),
(252, 69, '_menu_item_target', ''),
(253, 69, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(254, 69, '_menu_item_xfn', ''),
(255, 69, '_menu_item_url', ''),
(257, 70, '_menu_item_type', 'post_type'),
(258, 70, '_menu_item_menu_item_parent', '0'),
(259, 70, '_menu_item_object_id', '61'),
(260, 70, '_menu_item_object', 'page'),
(261, 70, '_menu_item_target', ''),
(262, 70, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(263, 70, '_menu_item_xfn', ''),
(264, 70, '_menu_item_url', ''),
(266, 71, '_menu_item_type', 'post_type'),
(267, 71, '_menu_item_menu_item_parent', '0'),
(268, 71, '_menu_item_object_id', '59'),
(269, 71, '_menu_item_object', 'page'),
(270, 71, '_menu_item_target', ''),
(271, 71, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(272, 71, '_menu_item_xfn', ''),
(273, 71, '_menu_item_url', ''),
(275, 72, '_menu_item_type', 'post_type'),
(276, 72, '_menu_item_menu_item_parent', '0'),
(277, 72, '_menu_item_object_id', '57'),
(278, 72, '_menu_item_object', 'page'),
(279, 72, '_menu_item_target', ''),
(280, 72, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(281, 72, '_menu_item_xfn', ''),
(282, 72, '_menu_item_url', ''),
(283, 49, '_wp_trash_meta_status', 'publish'),
(284, 49, '_wp_trash_meta_time', '1539589979'),
(285, 49, '_wp_desired_post_slug', 'another-news-storya-refugee-week-exclusive-screening-copy'),
(286, 50, '_wp_trash_meta_status', 'publish'),
(287, 50, '_wp_trash_meta_time', '1539589986'),
(288, 50, '_wp_desired_post_slug', 'morning-tea-with-van-badham-copy'),
(289, 51, '_wp_trash_meta_status', 'publish'),
(290, 51, '_wp_trash_meta_time', '1539589992'),
(291, 51, '_wp_desired_post_slug', 'the-cleaners-a-hraff-fundraider-copy'),
(292, 74, '_edit_last', '1'),
(293, 74, '_edit_lock', '1540980686:1'),
(294, 74, 'subtitle', 'USA / 2017 / 85 MINS/ ENGLISH / DOCUMENTARY'),
(295, 74, '_subtitle', 'field_5bb4b8b2aadef'),
(296, 74, 'classification', ''),
(297, 74, '_classification', 'field_5bb4b9dba1f93'),
(298, 74, 'when', '2018-05-11 20:15:00'),
(299, 74, '_when', 'field_5bb4bb11a1f94'),
(300, 74, 'where', 'ACMI Cinemas'),
(301, 74, '_where', 'field_5bb4bb7da1f95'),
(302, 74, 'city', 'Canberra'),
(303, 74, '_city', 'field_5bb89e8060476'),
(304, 74, 'summary', '“A Better Man takes on the issue of violence against women from an angle we have never seen before...'),
(305, 74, '_summary', 'field_5bb4bcbc98e8f'),
(306, 74, 'youtube_video_id', ''),
(307, 74, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(308, 74, 'cover_photo', '162'),
(309, 74, '_cover_photo', 'field_5bd7c5b146cbf'),
(310, 45, 'cover_photo', ''),
(311, 45, '_cover_photo', 'field_5bc445d801b5e'),
(312, 76, '_wp_attached_file', '2018/10/1.png'),
(313, 76, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:389;s:6:\"height\";i:288;s:4:\"file\";s:13:\"2018/10/1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"1-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;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:{}}}'),
(314, 74, '_thumbnail_id', '162'),
(331, 79, '_edit_last', '1'),
(332, 79, '_edit_lock', '1540980764:1'),
(333, 80, '_wp_attached_file', '2018/10/2.png'),
(334, 80, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:388;s:6:\"height\";i:287;s:4:\"file\";s:13:\"2018/10/2.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"2-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;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:{}}}'),
(335, 79, '_thumbnail_id', '184'),
(336, 79, 'subtitle', ''),
(337, 79, '_subtitle', 'field_5bb4b8b2aadef'),
(338, 79, 'classification', ''),
(339, 79, '_classification', 'field_5bb4b9dba1f93'),
(340, 79, 'when', '2018-05-12 06:00:00'),
(341, 79, '_when', 'field_5bb4bb11a1f94'),
(342, 79, 'where', 'Footscray Community Arts Centre '),
(343, 79, '_where', 'field_5bb4bb7da1f95'),
(344, 79, 'city', 'Perth'),
(345, 79, '_city', 'field_5bb89e8060476'),
(346, 79, 'summary', 'Emerging Female Filmmakers Networking Event & Special Screening of The Song Keepers'),
(347, 79, '_summary', 'field_5bb4bcbc98e8f'),
(348, 79, 'youtube_video_id', ''),
(349, 79, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(350, 79, 'cover_photo', '184'),
(351, 79, '_cover_photo', 'field_5bd7c5b146cbf'),
(352, 81, '_edit_last', '1'),
(353, 81, '_edit_lock', '1540980355:1'),
(354, 82, '_wp_attached_file', '2018/10/3.png'),
(355, 82, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:389;s:6:\"height\";i:288;s:4:\"file\";s:13:\"2018/10/3.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"3-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;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:{}}}'),
(356, 81, '_thumbnail_id', '82'),
(357, 81, 'subtitle', ''),
(358, 81, '_subtitle', 'field_5bb4b8b2aadef'),
(359, 81, 'classification', ''),
(360, 81, '_classification', 'field_5bb4b9dba1f93'),
(361, 81, 'when', '2018-05-02 18:30:00'),
(362, 81, '_when', 'field_5bb4bb11a1f94'),
(363, 81, 'where', 'Sun Theatre'),
(364, 81, '_where', 'field_5bb4bb7da1f95'),
(365, 81, 'city', 'Adelaide'),
(366, 81, '_city', 'field_5bb89e8060476'),
(367, 81, 'summary', 'A Film Showcase and Conversation with Local Filmmakers of African Heritage'),
(368, 81, '_summary', 'field_5bb4bcbc98e8f'),
(369, 81, 'youtube_video_id', ''),
(370, 81, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(371, 81, 'cover_photo', ''),
(372, 81, '_cover_photo', 'field_5bd7c5b146cbf'),
(373, 83, '_edit_last', '1'),
(374, 83, '_edit_lock', '1540980495:1'),
(375, 84, '_wp_attached_file', '2018/10/4.png'),
(376, 84, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:388;s:6:\"height\";i:279;s:4:\"file\";s:13:\"2018/10/4.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"4-300x216.png\";s:5:\"width\";i:300;s:6:\"height\";i:216;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:{}}}'),
(377, 83, '_thumbnail_id', '84'),
(378, 83, 'subtitle', ''),
(379, 83, '_subtitle', 'field_5bb4b8b2aadef'),
(380, 83, 'classification', ''),
(381, 83, '_classification', 'field_5bb4b9dba1f93'),
(382, 83, 'when', '2018-05-05 13:00:00'),
(383, 83, '_when', 'field_5bb4bb11a1f94'),
(384, 83, 'where', 'Studio 1, ACMI'),
(385, 83, '_where', 'field_5bb4bb7da1f95'),
(386, 83, 'city', 'Brisbane'),
(387, 83, '_city', 'field_5bb89e8060476'),
(388, 83, 'summary', 'HRAFF is proud to present our discussion forum series HRAFF Talks at ACMI...'),
(389, 83, '_summary', 'field_5bb4bcbc98e8f'),
(390, 83, 'youtube_video_id', ''),
(391, 83, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(392, 83, 'cover_photo', ''),
(393, 83, '_cover_photo', 'field_5bd7c5b146cbf'),
(394, 85, '_edit_last', '1'),
(395, 85, '_edit_lock', '1540980504:1'),
(396, 85, '_thumbnail_id', '84'),
(397, 85, 'subtitle', ''),
(398, 85, '_subtitle', 'field_5bb4b8b2aadef'),
(399, 85, 'classification', ''),
(400, 85, '_classification', 'field_5bb4b9dba1f93'),
(401, 85, 'when', '2018-05-06 13:00:00'),
(402, 85, '_when', 'field_5bb4bb11a1f94'),
(403, 85, 'where', 'Studio 1, ACMI'),
(404, 85, '_where', 'field_5bb4bb7da1f95'),
(405, 85, 'city', 'Brisbane'),
(406, 85, '_city', 'field_5bb89e8060476'),
(407, 85, 'summary', 'HRAFF is proud to present our discussion forum series HRAFF Talks at ACMI...'),
(408, 85, '_summary', 'field_5bb4bcbc98e8f'),
(409, 85, 'youtube_video_id', ''),
(410, 85, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(411, 85, 'cover_photo', ''),
(412, 85, '_cover_photo', 'field_5bd7c5b146cbf'),
(413, 86, '_edit_last', '1'),
(414, 86, '_edit_lock', '1540980775:1'),
(415, 86, 'subtitle', ''),
(416, 86, '_subtitle', 'field_5bb4b8b2aadef'),
(417, 86, 'classification', ''),
(418, 86, '_classification', 'field_5bb4b9dba1f93'),
(419, 86, 'when', '2018-05-12 13:00:00'),
(420, 86, '_when', 'field_5bb4bb11a1f94'),
(421, 86, 'where', 'Studio 1, ACMI'),
(422, 86, '_where', 'field_5bb4bb7da1f95'),
(423, 86, 'city', 'Sydney'),
(424, 86, '_city', 'field_5bb89e8060476'),
(425, 86, 'summary', 'HRAFF is proud to present our discussion forum series HRAFF Talks at ACMI...'),
(426, 86, '_summary', 'field_5bb4bcbc98e8f'),
(427, 86, 'youtube_video_id', ''),
(428, 86, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(429, 86, 'cover_photo', ''),
(430, 86, '_cover_photo', 'field_5bd7c5b146cbf'),
(431, 87, '_edit_last', '1'),
(432, 87, '_edit_lock', '1540969336:1'),
(433, 87, '_thumbnail_id', '84'),
(434, 87, 'subtitle', ''),
(435, 87, '_subtitle', 'field_5bb4b8b2aadef'),
(436, 87, 'classification', ''),
(437, 87, '_classification', 'field_5bb4b9dba1f93'),
(438, 87, 'when', '2018-05-13 13:00:00'),
(439, 87, '_when', 'field_5bb4bb11a1f94'),
(440, 87, 'where', 'Studio 1, ACMI'),
(441, 87, '_where', 'field_5bb4bb7da1f95'),
(442, 87, 'city', 'Melbourne'),
(443, 87, '_city', 'field_5bb89e8060476'),
(444, 87, 'summary', 'HRAFF is proud to present our discussion forum series HRAFF Talks at ACMI...'),
(445, 87, '_summary', 'field_5bb4bcbc98e8f'),
(446, 87, 'youtube_video_id', ''),
(447, 87, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(448, 87, 'cover_photo', ''),
(449, 87, '_cover_photo', 'field_5bc445d801b5e'),
(450, 88, '_edit_last', '1'),
(451, 88, '_edit_lock', '1540969316:1'),
(452, 89, '_wp_attached_file', '2018/10/5.png'),
(453, 89, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:389;s:6:\"height\";i:288;s:4:\"file\";s:13:\"2018/10/5.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"5-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;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:{}}}'),
(454, 88, '_thumbnail_id', '173'),
(455, 88, 'subtitle', ''),
(456, 88, '_subtitle', 'field_5bb4b8b2aadef'),
(457, 88, 'classification', ''),
(458, 88, '_classification', 'field_5bb4b9dba1f93'),
(459, 88, 'when', '2018-05-31 19:00:00'),
(460, 88, '_when', 'field_5bb4bb11a1f94'),
(461, 88, 'where', 'Red Scooter'),
(462, 88, '_where', 'field_5bb4bb7da1f95'),
(463, 88, 'city', 'Melbourne'),
(464, 88, '_city', 'field_5bb89e8060476'),
(465, 88, 'summary', 'Our flagship event, the 2018 HRAFF Gala will be held at Red Scooter from 7pm on Thursday 31 May for what promises to be a wonderful night of cocktails, canapés and entertainment...'),
(466, 88, '_summary', 'field_5bb4bcbc98e8f'),
(467, 88, 'youtube_video_id', ''),
(468, 88, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(469, 88, 'cover_photo', '173'),
(470, 88, '_cover_photo', 'field_5bd7c5b146cbf'),
(471, 90, '_edit_last', '1'),
(472, 90, '_edit_lock', '1540980646:1'),
(473, 91, '_wp_attached_file', '2018/10/6.png'),
(474, 91, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:388;s:6:\"height\";i:285;s:4:\"file\";s:13:\"2018/10/6.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"6-300x220.png\";s:5:\"width\";i:300;s:6:\"height\";i:220;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:{}}}'),
(475, 90, '_thumbnail_id', '165'),
(476, 90, 'subtitle', 'Australia / 84 minutes / English, Western Arrarnta and Pitjantjatjara with English subtitles / Documentary'),
(477, 90, '_subtitle', 'field_5bb4b8b2aadef'),
(478, 90, 'classification', ''),
(479, 90, '_classification', 'field_5bb4b9dba1f93'),
(480, 90, 'when', '2018-05-10 20:00:00'),
(481, 90, '_when', 'field_5bb4bb11a1f94'),
(482, 90, 'where', 'ACMI Cinemas'),
(483, 90, '_where', 'field_5bb4bb7da1f95'),
(484, 90, 'city', 'Canberra'),
(485, 90, '_city', 'field_5bb89e8060476'),
(486, 90, 'summary', '“Central Australia’s answer to The Buena Vista Social Club.” MELBOURNE INTERNATIONAL FILM FESTIVAL'),
(487, 90, '_summary', 'field_5bb4bcbc98e8f'),
(488, 90, 'youtube_video_id', ''),
(489, 90, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(490, 90, 'cover_photo', '165'),
(491, 90, '_cover_photo', 'field_5bd7c5b146cbf'),
(492, 86, '_thumbnail_id', '84'),
(493, 92, '_edit_last', '1'),
(494, 92, '_edit_lock', '1540969321:1'),
(495, 93, '_wp_attached_file', '2018/10/7.png'),
(496, 93, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:389;s:6:\"height\";i:287;s:4:\"file\";s:13:\"2018/10/7.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"7-300x221.png\";s:5:\"width\";i:300;s:6:\"height\";i:221;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:{}}}'),
(497, 92, '_thumbnail_id', '176'),
(498, 92, 'subtitle', ''),
(499, 92, '_subtitle', 'field_5bb4b8b2aadef'),
(500, 92, 'classification', 'M'),
(501, 92, '_classification', 'field_5bb4b9dba1f93'),
(502, 92, 'when', '2018-05-17 19:00:00'),
(503, 92, '_when', 'field_5bb4bb11a1f94'),
(504, 92, 'where', 'ACMI Cinemas'),
(505, 92, '_where', 'field_5bb4bb7da1f95'),
(506, 92, 'city', 'Melbourne'),
(507, 92, '_city', 'field_5bb89e8060476'),
(508, 92, 'summary', '“What is horrifying and sad is punctuated only by the heroism of its subjects and of the filmmakers themselves.”'),
(509, 92, '_summary', 'field_5bb4bcbc98e8f'),
(510, 92, 'youtube_video_id', ''),
(511, 92, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(512, 92, 'cover_photo', '176'),
(513, 92, '_cover_photo', 'field_5bd7c5b146cbf'),
(514, 94, '_edit_last', '1'),
(515, 94, '_edit_lock', '1540980665:1'),
(516, 94, 'subtitle', ''),
(517, 94, '_subtitle', 'field_5bb4b8b2aadef'),
(518, 94, 'classification', 'M'),
(519, 94, '_classification', 'field_5bb4b9dba1f93'),
(520, 94, 'when', '2018-05-11 18:00:00'),
(521, 94, '_when', 'field_5bb4bb11a1f94'),
(522, 94, 'where', 'ACMI Cinemas'),
(523, 94, '_where', 'field_5bb4bb7da1f95'),
(524, 94, 'city', 'Canberra'),
(525, 94, '_city', 'field_5bb89e8060476'),
(526, 94, 'summary', '“Her Sound, Her Story is a vibrant and powerful perspective on the turbulent music industry.” BEAT MAGAZINE'),
(527, 94, '_summary', 'field_5bb4bcbc98e8f'),
(528, 94, 'youtube_video_id', ''),
(529, 94, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(530, 94, 'cover_photo', ''),
(531, 94, '_cover_photo', 'field_5bd7c5b146cbf'),
(532, 95, '_wp_attached_file', '2018/10/8.png'),
(533, 95, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:388;s:6:\"height\";i:288;s:4:\"file\";s:13:\"2018/10/8.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"8-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"8-300x223.png\";s:5:\"width\";i:300;s:6:\"height\";i:223;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:{}}}'),
(534, 94, '_thumbnail_id', '95'),
(535, 96, '_edit_last', '1'),
(536, 96, '_edit_lock', '1540980417:1'),
(537, 97, '_wp_attached_file', '2018/10/9.png'),
(538, 97, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:389;s:6:\"height\";i:287;s:4:\"file\";s:13:\"2018/10/9.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"9-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"9-300x221.png\";s:5:\"width\";i:300;s:6:\"height\";i:221;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:{}}}'),
(539, 96, '_thumbnail_id', '182'),
(540, 96, 'subtitle', ''),
(541, 96, '_subtitle', 'field_5bb4b8b2aadef'),
(542, 96, 'classification', ''),
(543, 96, '_classification', 'field_5bb4b9dba1f93'),
(544, 96, 'when', '2018-05-04 11:00:00'),
(545, 96, '_when', 'field_5bb4bb11a1f94'),
(546, 96, 'where', 'Palace Electric'),
(547, 96, '_where', 'field_5bb4bb7da1f95'),
(548, 96, 'city', 'Adelaide'),
(549, 96, '_city', 'field_5bb89e8060476'),
(550, 96, 'summary', '“This is a highly pertinent story told in an entertaining way.” THE NEW YORK TIMES'),
(551, 96, '_summary', 'field_5bb4bcbc98e8f'),
(552, 96, 'youtube_video_id', ''),
(553, 96, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(554, 96, 'cover_photo', '182'),
(555, 96, '_cover_photo', 'field_5bd7c5b146cbf'),
(556, 98, '_edit_last', '1'),
(557, 98, '_edit_lock', '1540980807:1'),
(558, 98, 'subtitle', ''),
(559, 98, '_subtitle', 'field_5bb4b8b2aadef'),
(560, 98, 'classification', ''),
(561, 98, '_classification', 'field_5bb4b9dba1f93'),
(562, 98, 'when', '2018-05-13 00:00:00'),
(563, 98, '_when', 'field_5bb4bb11a1f94'),
(564, 98, 'where', 'ACMI Cinemas'),
(565, 98, '_where', 'field_5bb4bb7da1f95'),
(566, 98, 'city', 'Sydney'),
(567, 98, '_city', 'field_5bb89e8060476'),
(568, 98, 'summary', '“There’s so much to draw from Jackson. Maisie Crow has crafted a truly challenging and thought provoking film...'),
(569, 98, '_summary', 'field_5bb4bcbc98e8f'),
(570, 98, 'youtube_video_id', ''),
(571, 98, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(572, 98, 'cover_photo', '179'),
(573, 98, '_cover_photo', 'field_5bd7c5b146cbf'),
(574, 99, '_wp_attached_file', '2018/10/10.png'),
(575, 99, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:389;s:6:\"height\";i:288;s:4:\"file\";s:14:\"2018/10/10.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"10-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"10-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;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:{}}}'),
(576, 98, '_thumbnail_id', '179'),
(577, 100, '_edit_last', '1'),
(578, 100, '_edit_lock', '1540969333:1'),
(579, 101, '_wp_attached_file', '2018/10/11.png'),
(580, 101, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:389;s:6:\"height\";i:288;s:4:\"file\";s:14:\"2018/10/11.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"11-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;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:{}}}'),
(581, 100, '_thumbnail_id', '178'),
(582, 100, 'subtitle', ''),
(583, 100, '_subtitle', 'field_5bb4b8b2aadef'),
(584, 100, 'classification', ''),
(585, 100, '_classification', 'field_5bb4b9dba1f93'),
(586, 100, 'when', '2018-05-13 20:15:00'),
(587, 100, '_when', 'field_5bb4bb11a1f94'),
(588, 100, 'where', 'ACMI Cinemas'),
(589, 100, '_where', 'field_5bb4bb7da1f95'),
(590, 100, 'city', 'Melbourne'),
(591, 100, '_city', 'field_5bb89e8060476'),
(592, 100, 'summary', '“Jaha’s Promise cuts straight through such confusion to hammer home the core inhumanities. It clarifies and simplifies. Most importantly, it confirms that...'),
(593, 100, '_summary', 'field_5bb4bcbc98e8f'),
(594, 100, 'youtube_video_id', ''),
(595, 100, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(596, 100, 'cover_photo', '178'),
(597, 100, '_cover_photo', 'field_5bd7c5b146cbf'),
(598, 102, '_edit_last', '1'),
(599, 102, '_edit_lock', '1540969324:1'),
(600, 103, '_wp_attached_file', '2018/10/12.png'),
(601, 103, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:390;s:6:\"height\";i:287;s:4:\"file\";s:14:\"2018/10/12.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"12-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"12-300x221.png\";s:5:\"width\";i:300;s:6:\"height\";i:221;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:{}}}'),
(602, 102, '_thumbnail_id', '175'),
(603, 102, 'subtitle', ''),
(604, 102, '_subtitle', 'field_5bb4b8b2aadef'),
(605, 102, 'classification', ''),
(606, 102, '_classification', 'field_5bb4b9dba1f93'),
(607, 102, 'when', '2018-05-16 18:00:00'),
(608, 102, '_when', 'field_5bb4bb11a1f94'),
(609, 102, 'where', 'ACMI Cinemas'),
(610, 102, '_where', 'field_5bb4bb7da1f95'),
(611, 102, 'city', 'Melbourne'),
(612, 102, '_city', 'field_5bb89e8060476'),
(613, 102, 'summary', '“Mesmerizing and unflinching ‘Leitis in Waiting’ is a true gift to the world.” NETWORK FOR THE PROMOTION OF ASIAN PACIFIC CINEMA'),
(614, 102, '_summary', 'field_5bb4bcbc98e8f'),
(615, 102, 'youtube_video_id', ''),
(616, 102, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(617, 102, 'cover_photo', '175'),
(618, 102, '_cover_photo', 'field_5bd7c5b146cbf'),
(619, 104, '_edit_last', '1'),
(620, 104, '_edit_lock', '1540980785:1'),
(621, 105, '_wp_attached_file', '2018/10/13.png'),
(622, 105, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:389;s:6:\"height\";i:288;s:4:\"file\";s:14:\"2018/10/13.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"13-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"13-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;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:{}}}'),
(623, 104, '_thumbnail_id', '163'),
(624, 104, 'subtitle', ''),
(625, 104, '_subtitle', 'field_5bb4b8b2aadef'),
(626, 104, 'classification', ''),
(627, 104, '_classification', 'field_5bb4b9dba1f93'),
(628, 104, 'when', '2018-05-12 18:00:00'),
(629, 104, '_when', 'field_5bb4bb11a1f94'),
(630, 104, 'where', 'ACMI Cinemas'),
(631, 104, '_where', 'field_5bb4bb7da1f95'),
(632, 104, 'city', 'Sydney'),
(633, 104, '_city', 'field_5bb89e8060476'),
(634, 104, 'summary', '“So powerful. Moving and irrefutable evidence of the place we have journeyed to. How will future generations judge us all?\"'),
(635, 104, '_summary', 'field_5bb4bcbc98e8f'),
(636, 104, 'youtube_video_id', ''),
(637, 104, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(638, 104, 'cover_photo', '163'),
(639, 104, '_cover_photo', 'field_5bd7c5b146cbf'),
(640, 106, '_edit_last', '1'),
(641, 106, '_edit_lock', '1540980429:1'),
(642, 107, '_wp_attached_file', '2018/10/14.png'),
(643, 107, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:389;s:6:\"height\";i:289;s:4:\"file\";s:14:\"2018/10/14.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"14-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"14-300x223.png\";s:5:\"width\";i:300;s:6:\"height\";i:223;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:{}}}'),
(644, 106, '_thumbnail_id', '181'),
(645, 106, 'subtitle', ''),
(646, 106, '_subtitle', 'field_5bb4b8b2aadef'),
(647, 106, 'classification', 'M'),
(648, 106, '_classification', 'field_5bb4b9dba1f93'),
(649, 106, 'when', '2018-05-04 18:00:00'),
(650, 106, '_when', 'field_5bb4bb11a1f94'),
(651, 106, 'where', 'ACMI Cinemas'),
(652, 106, '_where', 'field_5bb4bb7da1f95'),
(653, 106, 'city', 'Adelaide'),
(654, 106, '_city', 'field_5bb89e8060476'),
(655, 106, 'summary', '“It’s not every day that a documentary shakes the ground as surely as the average blockbuster, or keeps us...'),
(656, 106, '_summary', 'field_5bb4bcbc98e8f'),
(657, 106, 'youtube_video_id', ''),
(658, 106, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(659, 106, 'cover_photo', '181'),
(660, 106, '_cover_photo', 'field_5bd7c5b146cbf'),
(661, 108, '_edit_last', '1'),
(662, 108, '_edit_lock', '1540980794:1'),
(663, 109, '_wp_attached_file', '2018/10/15.png'),
(664, 109, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:390;s:6:\"height\";i:286;s:4:\"file\";s:14:\"2018/10/15.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"15-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"15-300x220.png\";s:5:\"width\";i:300;s:6:\"height\";i:220;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:{}}}'),
(665, 108, '_thumbnail_id', '172'),
(666, 108, 'subtitle', ''),
(667, 108, '_subtitle', 'field_5bb4b8b2aadef'),
(668, 108, 'classification', 'M'),
(669, 108, '_classification', 'field_5bb4b9dba1f93'),
(670, 108, 'when', '2018-05-12 20:30:00'),
(671, 108, '_when', 'field_5bb4bb11a1f94'),
(672, 108, 'where', 'ACMI Cinemas'),
(673, 108, '_where', 'field_5bb4bb7da1f95'),
(674, 108, 'city', 'Sydney'),
(675, 108, '_city', 'field_5bb89e8060476'),
(676, 108, 'summary', '“A magnificent and epic documentary of historic proportions.” '),
(677, 108, '_summary', 'field_5bb4bcbc98e8f'),
(678, 108, 'youtube_video_id', ''),
(679, 108, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(680, 108, 'cover_photo', '172'),
(681, 108, '_cover_photo', 'field_5bd7c5b146cbf'),
(682, 110, '_edit_last', '1'),
(683, 110, '_edit_lock', '1540980442:1'),
(684, 111, '_wp_attached_file', '2018/10/16.png'),
(685, 111, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:389;s:6:\"height\";i:287;s:4:\"file\";s:14:\"2018/10/16.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"16-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"16-300x221.png\";s:5:\"width\";i:300;s:6:\"height\";i:221;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:{}}}'),
(686, 110, '_thumbnail_id', '174'),
(687, 110, 'subtitle', ''),
(688, 110, '_subtitle', 'field_5bb4b8b2aadef'),
(689, 110, 'classification', ''),
(690, 110, '_classification', 'field_5bb4b9dba1f93'),
(691, 110, 'when', '2018-05-04 20:15:00'),
(692, 110, '_when', 'field_5bb4bb11a1f94'),
(693, 110, 'where', 'ACMI Cinemas'),
(694, 110, '_where', 'field_5bb4bb7da1f95'),
(695, 110, 'city', 'Adelaide'),
(696, 110, '_city', 'field_5bb89e8060476'),
(697, 110, 'summary', '“Proof that wild young men can change.”'),
(698, 110, '_summary', 'field_5bb4bcbc98e8f'),
(699, 110, 'youtube_video_id', ''),
(700, 110, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(701, 110, 'cover_photo', '174'),
(702, 110, '_cover_photo', 'field_5bd7c5b146cbf'),
(703, 112, '_edit_last', '1'),
(704, 112, '_edit_lock', '1540980637:1'),
(705, 113, '_wp_attached_file', '2018/10/17.png'),
(706, 113, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:389;s:6:\"height\";i:285;s:4:\"file\";s:14:\"2018/10/17.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"17-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"17-300x220.png\";s:5:\"width\";i:300;s:6:\"height\";i:220;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:{}}}'),
(707, 112, '_thumbnail_id', '177'),
(708, 112, 'subtitle', ''),
(709, 112, '_subtitle', 'field_5bb4b8b2aadef'),
(710, 112, 'classification', ''),
(711, 112, '_classification', 'field_5bb4b9dba1f93'),
(712, 112, 'when', '2018-05-10 18:00:00'),
(713, 112, '_when', 'field_5bb4bb11a1f94'),
(714, 112, 'where', 'ACMI Cinemas'),
(715, 112, '_where', 'field_5bb4bb7da1f95'),
(716, 112, 'city', 'Canberra'),
(717, 112, '_city', 'field_5bb89e8060476'),
(718, 112, 'summary', '“Filled with humanistic grace notes, the thoughtful Land of the Free encourages empathy without a trace of pity.”'),
(719, 112, '_summary', 'field_5bb4bcbc98e8f'),
(720, 112, 'youtube_video_id', ''),
(721, 112, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(722, 112, 'cover_photo', '177'),
(723, 112, '_cover_photo', 'field_5bd7c5b146cbf'),
(724, 114, '_edit_last', '1'),
(725, 114, '_edit_lock', '1540980656:1'),
(726, 115, '_wp_attached_file', '2018/10/18.png'),
(727, 115, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:389;s:6:\"height\";i:287;s:4:\"file\";s:14:\"2018/10/18.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"18-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"18-300x221.png\";s:5:\"width\";i:300;s:6:\"height\";i:221;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:{}}}'),
(728, 114, '_thumbnail_id', '166'),
(729, 114, 'subtitle', ''),
(730, 114, '_subtitle', 'field_5bb4b8b2aadef'),
(731, 114, 'classification', ''),
(732, 114, '_classification', 'field_5bb4b9dba1f93'),
(733, 114, 'when', '2018-05-10 20:30:00'),
(734, 114, '_when', 'field_5bb4bb11a1f94'),
(735, 114, 'where', 'ACMI Cinemas'),
(736, 114, '_where', 'field_5bb4bb7da1f95'),
(737, 114, 'city', 'Canberra'),
(738, 114, '_city', 'field_5bb89e8060476'),
(739, 114, 'summary', '“A powerful Australian feature about the unstoppable Founder and CEO of OzHarvest, Ronni Kahn...'),
(740, 114, '_summary', 'field_5bb4bcbc98e8f'),
(741, 114, 'youtube_video_id', ''),
(742, 114, '_youtube_video_id', 'field_5bb4bf26d6e21'),
(743, 114, 'cover_photo', '166'),
(744, 114, '_cover_photo', 'field_5bd7c5b146cbf'),
(745, 116, '_edit_last', '1'),
(746, 116, '_edit_lock', '1540969327:1'),
(747, 117, '_wp_attached_file', '2018/10/19.png'),
(748, 117, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:389;s:6:\"height\";i:288;s:4:\"file\";s:14:\"2018/10/19.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"19-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"19-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;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:{}}}'),
(749, 116, '_thumbnail_id', '183'),