-
Notifications
You must be signed in to change notification settings - Fork 4
/
hueman-demo-content.xml
10629 lines (10284 loc) · 662 KB
/
hueman-demo-content.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
<!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
<!-- You may use this file to transfer that content from one site to another. -->
<!-- This file is not intended to serve as a complete backup of your site. -->
<!-- To import this information into a WordPress site follow these steps: -->
<!-- 1. Log in to that site as an administrator. -->
<!-- 2. Go to Tools: Import in the WordPress admin panel. -->
<!-- 3. Install the "WordPress" importer from the list. -->
<!-- 4. Activate & Run Importer. -->
<!-- 5. Upload this file using the form provided on that page. -->
<!-- 6. You will first be asked to map the authors in this export file to users -->
<!-- on the site. For each author, you may choose to map to an -->
<!-- existing user on the site or to create a new user. -->
<!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->
<!-- contained in this file into your site. -->
<!-- generator="WordPress/4.5.1" created="2016-05-06 08:00" -->
<rss version="2.0"
xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:wp="http://wordpress.org/export/1.2/"
>
<channel>
<title>Hueman</title>
<link>http://demo-hueman.presscustomizr.com</link>
<description>Inspire and empower</description>
<pubDate>Fri, 06 May 2016 08:00:30 +0000</pubDate>
<language>en-US</language>
<wp:wxr_version>1.2</wp:wxr_version>
<wp:base_site_url>http://demo-hueman.presscustomizr.com</wp:base_site_url>
<wp:base_blog_url>http://demo-hueman.presscustomizr.com</wp:base_blog_url>
<wp:author><wp:author_id>1</wp:author_id><wp:author_login><![CDATA[nicolas]]></wp:author_login><wp:author_email><![CDATA[[email protected]]]></wp:author_email><wp:author_display_name><![CDATA[nicolas]]></wp:author_display_name><wp:author_first_name><![CDATA[]]></wp:author_first_name><wp:author_last_name><![CDATA[]]></wp:author_last_name></wp:author>
<wp:category><wp:term_id>2</wp:term_id><wp:category_nicename><![CDATA[featured]]></wp:category_nicename><wp:category_parent><![CDATA[]]></wp:category_parent><wp:cat_name><![CDATA[Featured]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>3</wp:term_id><wp:category_nicename><![CDATA[food]]></wp:category_nicename><wp:category_parent><![CDATA[]]></wp:category_parent><wp:cat_name><![CDATA[Food]]></wp:cat_name><wp:category_description><![CDATA[Happy food makes you healthy and happy!]]></wp:category_description></wp:category>
<wp:category><wp:term_id>4</wp:term_id><wp:category_nicename><![CDATA[lifestyle]]></wp:category_nicename><wp:category_parent><![CDATA[]]></wp:category_parent><wp:cat_name><![CDATA[Lifestyle]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>5</wp:term_id><wp:category_nicename><![CDATA[mixed]]></wp:category_nicename><wp:category_parent><![CDATA[]]></wp:category_parent><wp:cat_name><![CDATA[Mixed]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>6</wp:term_id><wp:category_nicename><![CDATA[music]]></wp:category_nicename><wp:category_parent><![CDATA[]]></wp:category_parent><wp:cat_name><![CDATA[Music]]></wp:cat_name><wp:category_description><![CDATA[This is a really fancy category description right here!]]></wp:category_description></wp:category>
<wp:category><wp:term_id>7</wp:term_id><wp:category_nicename><![CDATA[post-formats]]></wp:category_nicename><wp:category_parent><![CDATA[]]></wp:category_parent><wp:cat_name><![CDATA[Post Formats]]></wp:cat_name><wp:category_description><![CDATA[In this category you can view all 10 of the supported post formats. This text here is a category description, used to explain what the section is about.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>1</wp:term_id><wp:category_nicename><![CDATA[uncategorized]]></wp:category_nicename><wp:category_parent><![CDATA[]]></wp:category_parent><wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name></wp:category>
<wp:tag><wp:term_id>8</wp:term_id><wp:tag_slug><![CDATA[algae]]></wp:tag_slug><wp:tag_name><![CDATA[algae]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>9</wp:term_id><wp:tag_slug><![CDATA[aside]]></wp:tag_slug><wp:tag_name><![CDATA[Aside]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>10</wp:term_id><wp:tag_slug><![CDATA[audio]]></wp:tag_slug><wp:tag_name><![CDATA[Audio]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>11</wp:term_id><wp:tag_slug><![CDATA[chat]]></wp:tag_slug><wp:tag_name><![CDATA[Chat]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>12</wp:term_id><wp:tag_slug><![CDATA[conversation]]></wp:tag_slug><wp:tag_name><![CDATA[Conversation]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>13</wp:term_id><wp:tag_slug><![CDATA[demo]]></wp:tag_slug><wp:tag_name><![CDATA[Demo]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>14</wp:term_id><wp:tag_slug><![CDATA[design]]></wp:tag_slug><wp:tag_name><![CDATA[Design]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>15</wp:term_id><wp:tag_slug><![CDATA[detox]]></wp:tag_slug><wp:tag_name><![CDATA[detox]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>16</wp:term_id><wp:tag_slug><![CDATA[embed]]></wp:tag_slug><wp:tag_name><![CDATA[Embed]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>17</wp:term_id><wp:tag_slug><![CDATA[example]]></wp:tag_slug><wp:tag_name><![CDATA[Example]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>18</wp:term_id><wp:tag_slug><![CDATA[gallery]]></wp:tag_slug><wp:tag_name><![CDATA[Gallery]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>19</wp:term_id><wp:tag_slug><![CDATA[hueman]]></wp:tag_slug><wp:tag_name><![CDATA[hueman]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>20</wp:term_id><wp:tag_slug><![CDATA[image]]></wp:tag_slug><wp:tag_name><![CDATA[Image]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>21</wp:term_id><wp:tag_slug><![CDATA[images]]></wp:tag_slug><wp:tag_name><![CDATA[Images]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>22</wp:term_id><wp:tag_slug><![CDATA[inner-peace]]></wp:tag_slug><wp:tag_name><![CDATA[inner peace]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>23</wp:term_id><wp:tag_slug><![CDATA[joy]]></wp:tag_slug><wp:tag_name><![CDATA[joy]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>24</wp:term_id><wp:tag_slug><![CDATA[link]]></wp:tag_slug><wp:tag_name><![CDATA[Link]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>25</wp:term_id><wp:tag_slug><![CDATA[media]]></wp:tag_slug><wp:tag_name><![CDATA[Media]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>26</wp:term_id><wp:tag_slug><![CDATA[mediation]]></wp:tag_slug><wp:tag_name><![CDATA[mediation]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>27</wp:term_id><wp:tag_slug><![CDATA[music]]></wp:tag_slug><wp:tag_name><![CDATA[Music]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>28</wp:term_id><wp:tag_slug><![CDATA[no-title]]></wp:tag_slug><wp:tag_name><![CDATA[No Title]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>29</wp:term_id><wp:tag_slug><![CDATA[play]]></wp:tag_slug><wp:tag_name><![CDATA[Play]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>30</wp:term_id><wp:tag_slug><![CDATA[post-format]]></wp:tag_slug><wp:tag_name><![CDATA[Post Format]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>31</wp:term_id><wp:tag_slug><![CDATA[quote]]></wp:tag_slug><wp:tag_name><![CDATA[Quote]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>32</wp:term_id><wp:tag_slug><![CDATA[slider]]></wp:tag_slug><wp:tag_name><![CDATA[Slider]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>33</wp:term_id><wp:tag_slug><![CDATA[smoothie]]></wp:tag_slug><wp:tag_name><![CDATA[smoothie]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>34</wp:term_id><wp:tag_slug><![CDATA[status]]></wp:tag_slug><wp:tag_name><![CDATA[Status]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>35</wp:term_id><wp:tag_slug><![CDATA[text]]></wp:tag_slug><wp:tag_name><![CDATA[Text]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>36</wp:term_id><wp:tag_slug><![CDATA[theme]]></wp:tag_slug><wp:tag_name><![CDATA[theme]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>37</wp:term_id><wp:tag_slug><![CDATA[video]]></wp:tag_slug><wp:tag_name><![CDATA[Video]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>38</wp:term_id><wp:tag_slug><![CDATA[vimeo]]></wp:tag_slug><wp:tag_name><![CDATA[Vimeo]]></wp:tag_name></wp:tag>
<wp:term><wp:term_id><![CDATA[8]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[algae]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[algae]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[9]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[aside]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Aside]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[47]]></wp:term_id><wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy><wp:term_slug><![CDATA[post-format-aside]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Aside]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[10]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[audio]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Audio]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[48]]></wp:term_id><wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy><wp:term_slug><![CDATA[post-format-audio]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Audio]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[11]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[chat]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Chat]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[46]]></wp:term_id><wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy><wp:term_slug><![CDATA[post-format-chat]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Chat]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[12]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[conversation]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Conversation]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[13]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[demo]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Demo]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[14]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[design]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Design]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[15]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[detox]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[detox]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[16]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[embed]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Embed]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[17]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[example]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Example]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[2]]></wp:term_id><wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy><wp:term_slug><![CDATA[featured]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Featured]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[3]]></wp:term_id><wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy><wp:term_slug><![CDATA[food]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Food]]></wp:term_name><wp:term_description><![CDATA[Happy food makes you healthy and happy!]]></wp:term_description></wp:term>
<wp:term><wp:term_id><![CDATA[39]]></wp:term_id><wp:term_taxonomy><![CDATA[nav_menu]]></wp:term_taxonomy><wp:term_slug><![CDATA[footer-menu]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Footer Menu]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[18]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[gallery]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Gallery]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[45]]></wp:term_id><wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy><wp:term_slug><![CDATA[post-format-gallery]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Gallery]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[40]]></wp:term_id><wp:term_taxonomy><![CDATA[nav_menu]]></wp:term_taxonomy><wp:term_slug><![CDATA[header-menu]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Header Menu]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[19]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[hueman]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[hueman]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[20]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[image]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Image]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[49]]></wp:term_id><wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy><wp:term_slug><![CDATA[post-format-image]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Image]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[21]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[images]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Images]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[22]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[inner-peace]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[inner peace]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[23]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[joy]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[joy]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[4]]></wp:term_id><wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy><wp:term_slug><![CDATA[lifestyle]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Lifestyle]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[24]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[link]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Link]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[44]]></wp:term_id><wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy><wp:term_slug><![CDATA[post-format-link]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Link]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[25]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[media]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Media]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[26]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[mediation]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[mediation]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[5]]></wp:term_id><wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy><wp:term_slug><![CDATA[mixed]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Mixed]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[6]]></wp:term_id><wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy><wp:term_slug><![CDATA[music]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Music]]></wp:term_name><wp:term_description><![CDATA[This is a really fancy category description right here!]]></wp:term_description></wp:term>
<wp:term><wp:term_id><![CDATA[27]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[music]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Music]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[28]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[no-title]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[No Title]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[29]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[play]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Play]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[30]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[post-format]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Post Format]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[7]]></wp:term_id><wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy><wp:term_slug><![CDATA[post-formats]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Post Formats]]></wp:term_name><wp:term_description><![CDATA[In this category you can view all 10 of the supported post formats. This text here is a category description, used to explain what the section is about.]]></wp:term_description></wp:term>
<wp:term><wp:term_id><![CDATA[31]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[quote]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Quote]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[42]]></wp:term_id><wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy><wp:term_slug><![CDATA[post-format-quote]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Quote]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[32]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[slider]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Slider]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[33]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[smoothie]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[smoothie]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[34]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[status]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Status]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[50]]></wp:term_id><wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy><wp:term_slug><![CDATA[post-format-status]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Status]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[35]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[text]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Text]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[36]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[theme]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[theme]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[41]]></wp:term_id><wp:term_taxonomy><![CDATA[nav_menu]]></wp:term_taxonomy><wp:term_slug><![CDATA[topbar-menu]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Topbar Menu]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[1]]></wp:term_id><wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy><wp:term_slug><![CDATA[uncategorized]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Uncategorized]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[37]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[video]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Video]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[43]]></wp:term_id><wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy><wp:term_slug><![CDATA[post-format-video]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Video]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[38]]></wp:term_id><wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[vimeo]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Vimeo]]></wp:term_name></wp:term>
<wp:term><wp:term_id>39</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[footer-menu]]></wp:term_slug><wp:term_name><![CDATA[Footer Menu]]></wp:term_name></wp:term>
<wp:term><wp:term_id>40</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[header-menu]]></wp:term_slug><wp:term_name><![CDATA[Header Menu]]></wp:term_name></wp:term>
<wp:term><wp:term_id>41</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[topbar-menu]]></wp:term_slug><wp:term_name><![CDATA[Topbar Menu]]></wp:term_name></wp:term>
<generator>https://wordpress.org/?v=4.5.1</generator>
<item>
<title>oden</title>
<link>http://demo-hueman.presscustomizr.com/2013/08/14/last-minutes-with-oden/oden/</link>
<pubDate>Thu, 01 Nov 2012 16:53:12 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2012/06/oden.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>2248</wp:post_id>
<wp:post_date><![CDATA[2012-11-01 16:53:12]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2012-11-01 16:53:12]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[oden]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>449</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2012/06/oden.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2012/06/oden.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:511;s:6:"height";i:289;s:4:"file";s:16:"2012/06/oden.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"oden-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:16:"oden-300x170.jpg";s:5:"width";i:300;s:6:"height";i:170;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:16:"oden-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:16:"oden-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:16:"oden-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:16:"oden-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>logo-header</title>
<link>http://demo-hueman.presscustomizr.com/logo-header-2/</link>
<pubDate>Thu, 17 Oct 2013 19:04:20 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/logo-header.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>2740</wp:post_id>
<wp:post_date><![CDATA[2013-10-17 19:04:20]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-10-17 19:04:20]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[logo-header-2]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/logo-header.png]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/10/logo-header.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:330;s:6:"height";i:120;s:4:"file";s:23:"2013/10/logo-header.png";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"logo-header-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:23:"logo-header-300x109.png";s:5:"width";i:300;s:6:"height";i:109;s:9:"mime-type";s:9:"image/png";}s:11:"thumb-small";a:4:{s:4:"file";s:23:"logo-header-160x160.png";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:9:"image/png";}s:14:"thumb-standard";a:4:{s:4:"file";s:23:"logo-header-320x320.png";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:9:"image/png";}s:12:"thumb-medium";a:4:{s:4:"file";s:23:"logo-header-520x245.png";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:9:"image/png";}s:11:"thumb-large";a:4:{s:4:"file";s:23:"logo-header-720x340.png";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>maxresdefault</title>
<link>http://demo-hueman.presscustomizr.com/2013/08/15/go-outside-and-discover-earths-wonders/maxresdefault/</link>
<pubDate>Thu, 31 Oct 2013 06:05:07 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2012/08/maxresdefault.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Diving with friends.]]></excerpt:encoded>
<wp:post_id>2799</wp:post_id>
<wp:post_date><![CDATA[2013-10-31 06:05:07]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-10-31 06:05:07]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[maxresdefault]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>2336</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2012/08/maxresdefault.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2012/08/maxresdefault.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1280;s:6:"height";i:720;s:4:"file";s:25:"2012/08/maxresdefault.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"maxresdefault-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:25:"maxresdefault-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"maxresdefault-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"maxresdefault-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:25:"maxresdefault-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:25:"maxresdefault-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:25:"maxresdefault-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:25:"maxresdefault-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>passing</title>
<link>http://demo-hueman.presscustomizr.com/2013/09/27/passing-through/passing/</link>
<pubDate>Thu, 31 Oct 2013 10:52:02 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/09/passing.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>2924</wp:post_id>
<wp:post_date><![CDATA[2013-10-31 10:52:02]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-10-31 10:52:02]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[passing]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>64</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/09/passing.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/09/passing.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:958;s:6:"height";i:407;s:4:"file";s:19:"2013/09/passing.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"passing-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:19:"passing-300x127.jpg";s:5:"width";i:300;s:6:"height";i:127;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:19:"passing-768x326.jpg";s:5:"width";i:768;s:6:"height";i:326;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:19:"passing-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:19:"passing-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:19:"passing-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:19:"passing-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>favicon</title>
<link>http://demo-hueman.presscustomizr.com/favicon-2/</link>
<pubDate>Thu, 07 Nov 2013 10:14:13 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/11/favicon1.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>2945</wp:post_id>
<wp:post_date><![CDATA[2013-11-07 10:14:13]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-11-07 10:14:13]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[favicon-2]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/11/favicon1.png]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/11/favicon1.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:16;s:6:"height";i:16;s:4:"file";s:20:"2013/11/favicon1.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"favicon1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:11:"thumb-small";a:4:{s:4:"file";s:20:"favicon1-160x160.png";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:9:"image/png";}s:14:"thumb-standard";a:4:{s:4:"file";s:20:"favicon1-320x320.png";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:9:"image/png";}s:12:"thumb-medium";a:4:{s:4:"file";s:20:"favicon1-520x245.png";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:9:"image/png";}s:11:"thumb-large";a:4:{s:4:"file";s:20:"favicon1-720x340.png";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>tumblr_mqq4ivpL641st5lhmo1_1280</title>
<link>http://demo-hueman.presscustomizr.com/2013/10/31/gabrielle-aplin-with-the-power-of-love/tumblr_mqq4ivpl641st5lhmo1_1280/</link>
<pubDate>Sun, 22 Dec 2013 15:52:11 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/tumblr_mqq4ivpL641st5lhmo1_1280.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Walking in the sun.]]></excerpt:encoded>
<wp:post_id>2976</wp:post_id>
<wp:post_date><![CDATA[2013-12-22 15:52:11]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-12-22 15:52:11]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[tumblr_mqq4ivpl641st5lhmo1_1280]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>2865</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/tumblr_mqq4ivpL641st5lhmo1_1280.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/10/tumblr_mqq4ivpL641st5lhmo1_1280.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1280;s:6:"height";i:851;s:4:"file";s:43:"2013/10/tumblr_mqq4ivpL641st5lhmo1_1280.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:43:"tumblr_mqq4ivpL641st5lhmo1_1280-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:43:"tumblr_mqq4ivpL641st5lhmo1_1280-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:43:"tumblr_mqq4ivpL641st5lhmo1_1280-768x511.jpg";s:5:"width";i:768;s:6:"height";i:511;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:44:"tumblr_mqq4ivpL641st5lhmo1_1280-1024x681.jpg";s:5:"width";i:1024;s:6:"height";i:681;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:43:"tumblr_mqq4ivpL641st5lhmo1_1280-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:43:"tumblr_mqq4ivpL641st5lhmo1_1280-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:43:"tumblr_mqq4ivpL641st5lhmo1_1280-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:43:"tumblr_mqq4ivpL641st5lhmo1_1280-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:5.5999999999999996447286321199499070644378662109375;s:6:"credit";s:0:"";s:6:"camera";s:6:"NEX-5N";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1372625299;s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"55";s:3:"iso";s:3:"400";s:13:"shutter_speed";s:7:"0.00625";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>arara-166705_1280</title>
<link>http://demo-hueman.presscustomizr.com/2013/10/31/learning-more-about-macaws-in-the-amazon-jungle/arara-166705_1280/</link>
<pubDate>Sun, 22 Dec 2013 15:54:06 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/arara-166705_1280.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Blue-and-yellow Macaw]]></excerpt:encoded>
<wp:post_id>2977</wp:post_id>
<wp:post_date><![CDATA[2013-12-22 15:54:06]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-12-22 15:54:06]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[arara-166705_1280]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>2854</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/arara-166705_1280.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/10/arara-166705_1280.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1280;s:6:"height";i:959;s:4:"file";s:29:"2013/10/arara-166705_1280.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"arara-166705_1280-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:"arara-166705_1280-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"arara-166705_1280-768x575.jpg";s:5:"width";i:768;s:6:"height";i:575;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:30:"arara-166705_1280-1024x767.jpg";s:5:"width";i:1024;s:6:"height";i:767;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:29:"arara-166705_1280-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:29:"arara-166705_1280-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:29:"arara-166705_1280-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:29:"arara-166705_1280-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>orange-164985_1280</title>
<link>http://demo-hueman.presscustomizr.com/2013/10/31/the-importance-of-water-and-drinking-lots-of-it/orange-164985_1280/</link>
<pubDate>Sun, 22 Dec 2013 15:57:12 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/orange-164985_1280.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Add some citrus to it!]]></excerpt:encoded>
<wp:post_id>2979</wp:post_id>
<wp:post_date><![CDATA[2013-12-22 15:57:12]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-12-22 15:57:12]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[orange-164985_1280]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>2838</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/orange-164985_1280.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/10/orange-164985_1280.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1280;s:6:"height";i:1173;s:4:"file";s:30:"2013/10/orange-164985_1280.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:30:"orange-164985_1280-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:30:"orange-164985_1280-300x275.jpg";s:5:"width";i:300;s:6:"height";i:275;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:30:"orange-164985_1280-768x704.jpg";s:5:"width";i:768;s:6:"height";i:704;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:31:"orange-164985_1280-1024x938.jpg";s:5:"width";i:1024;s:6:"height";i:938;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:30:"orange-164985_1280-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:30:"orange-164985_1280-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:30:"orange-164985_1280-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:30:"orange-164985_1280-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>eye-122694_1280</title>
<link>http://demo-hueman.presscustomizr.com/2013/10/27/taking-matters-in-your-own-hands-not-giving-your-power-away/eye-122694_1280-2/</link>
<pubDate>Sun, 22 Dec 2013 16:03:46 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/eye-122694_12801.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>2981</wp:post_id>
<wp:post_date><![CDATA[2013-12-22 16:03:46]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-12-22 16:03:46]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[eye-122694_1280-2]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>2075</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/eye-122694_12801.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/10/eye-122694_12801.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1280;s:6:"height";i:918;s:4:"file";s:28:"2013/10/eye-122694_12801.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"eye-122694_12801-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:28:"eye-122694_12801-300x215.jpg";s:5:"width";i:300;s:6:"height";i:215;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"eye-122694_12801-768x551.jpg";s:5:"width";i:768;s:6:"height";i:551;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"eye-122694_12801-1024x734.jpg";s:5:"width";i:1024;s:6:"height";i:734;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:28:"eye-122694_12801-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:28:"eye-122694_12801-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:28:"eye-122694_12801-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:28:"eye-122694_12801-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>salt-lake-74570_1280</title>
<link>http://demo-hueman.presscustomizr.com/2013/10/28/take-a-deep-breath-and-just-be/salt-lake-74570_1280/</link>
<pubDate>Sun, 22 Dec 2013 16:06:28 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/salt-lake-74570_1280.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[How about some relaxation?]]></excerpt:encoded>
<wp:post_id>2982</wp:post_id>
<wp:post_date><![CDATA[2013-12-22 16:06:28]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-12-22 16:06:28]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[salt-lake-74570_1280]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>68</wp:post_parent>
<wp:menu_order>1</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/salt-lake-74570_1280.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/10/salt-lake-74570_1280.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1280;s:6:"height";i:604;s:4:"file";s:32:"2013/10/salt-lake-74570_1280.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"salt-lake-74570_1280-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:32:"salt-lake-74570_1280-300x142.jpg";s:5:"width";i:300;s:6:"height";i:142;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:32:"salt-lake-74570_1280-768x362.jpg";s:5:"width";i:768;s:6:"height";i:362;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:33:"salt-lake-74570_1280-1024x483.jpg";s:5:"width";i:1024;s:6:"height";i:483;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:32:"salt-lake-74570_1280-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:32:"salt-lake-74570_1280-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:32:"salt-lake-74570_1280-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:32:"salt-lake-74570_1280-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>girl-97433_1280</title>
<link>http://demo-hueman.presscustomizr.com/2013/10/28/take-a-deep-breath-and-just-be/girl-97433_1280/</link>
<pubDate>Sun, 22 Dec 2013 16:08:45 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/girl-97433_1280.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Just relax.]]></excerpt:encoded>
<wp:post_id>2983</wp:post_id>
<wp:post_date><![CDATA[2013-12-22 16:08:45]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-12-22 16:08:45]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[girl-97433_1280]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>68</wp:post_parent>
<wp:menu_order>2</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/girl-97433_1280.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/10/girl-97433_1280.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1280;s:6:"height";i:604;s:4:"file";s:27:"2013/10/girl-97433_1280.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"girl-97433_1280-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:27:"girl-97433_1280-300x142.jpg";s:5:"width";i:300;s:6:"height";i:142;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"girl-97433_1280-768x362.jpg";s:5:"width";i:768;s:6:"height";i:362;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:28:"girl-97433_1280-1024x483.jpg";s:5:"width";i:1024;s:6:"height";i:483;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:27:"girl-97433_1280-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:27:"girl-97433_1280-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:27:"girl-97433_1280-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:27:"girl-97433_1280-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>shoes-181744_1280</title>
<link>http://demo-hueman.presscustomizr.com/2013/10/31/being-outside-in-fresh-air-how-your-body-loves-it/shoes-181744_1280/</link>
<pubDate>Sun, 22 Dec 2013 16:10:58 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/shoes-181744_1280.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>2984</wp:post_id>
<wp:post_date><![CDATA[2013-12-22 16:10:58]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-12-22 16:10:58]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[shoes-181744_1280]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>2876</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/shoes-181744_1280.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/10/shoes-181744_1280.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1280;s:6:"height";i:725;s:4:"file";s:29:"2013/10/shoes-181744_1280.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"shoes-181744_1280-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:"shoes-181744_1280-300x170.jpg";s:5:"width";i:300;s:6:"height";i:170;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"shoes-181744_1280-768x435.jpg";s:5:"width";i:768;s:6:"height";i:435;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:30:"shoes-181744_1280-1024x580.jpg";s:5:"width";i:1024;s:6:"height";i:580;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:29:"shoes-181744_1280-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:29:"shoes-181744_1280-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:29:"shoes-181744_1280-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:29:"shoes-181744_1280-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>little-girl-205220_1280</title>
<link>http://demo-hueman.presscustomizr.com/2013/10/31/an-ode-to-earth-baba-yetu/little-girl-205220_1280/</link>
<pubDate>Sun, 22 Dec 2013 16:12:27 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/little-girl-205220_1280.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>2985</wp:post_id>
<wp:post_date><![CDATA[2013-12-22 16:12:27]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-12-22 16:12:27]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[little-girl-205220_1280]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>2824</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/little-girl-205220_1280.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/10/little-girl-205220_1280.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1280;s:6:"height";i:954;s:4:"file";s:35:"2013/10/little-girl-205220_1280.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"little-girl-205220_1280-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:35:"little-girl-205220_1280-300x224.jpg";s:5:"width";i:300;s:6:"height";i:224;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:35:"little-girl-205220_1280-768x572.jpg";s:5:"width";i:768;s:6:"height";i:572;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:36:"little-girl-205220_1280-1024x763.jpg";s:5:"width";i:1024;s:6:"height";i:763;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:35:"little-girl-205220_1280-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:35:"little-girl-205220_1280-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:35:"little-girl-205220_1280-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:35:"little-girl-205220_1280-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>sparrow-9950_1280</title>
<link>http://demo-hueman.presscustomizr.com/2013/08/15/go-outside-and-discover-earths-wonders/sparrow-9950_1280/</link>
<pubDate>Sun, 22 Dec 2013 16:15:25 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/08/sparrow-9950_1280.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>2986</wp:post_id>
<wp:post_date><![CDATA[2013-12-22 16:15:25]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-12-22 16:15:25]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[sparrow-9950_1280]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>2336</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/08/sparrow-9950_1280.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/08/sparrow-9950_1280.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1280;s:6:"height";i:800;s:4:"file";s:29:"2013/08/sparrow-9950_1280.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"sparrow-9950_1280-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:"sparrow-9950_1280-300x188.jpg";s:5:"width";i:300;s:6:"height";i:188;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"sparrow-9950_1280-768x480.jpg";s:5:"width";i:768;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:30:"sparrow-9950_1280-1024x640.jpg";s:5:"width";i:1024;s:6:"height";i:640;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:29:"sparrow-9950_1280-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:29:"sparrow-9950_1280-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:29:"sparrow-9950_1280-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:29:"sparrow-9950_1280-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>smile-122705_1280</title>
<link>http://demo-hueman.presscustomizr.com/2013/09/13/learn-how-to-make-an-awesome-healthy-smoothie/smile-122705_1280/</link>
<pubDate>Sun, 22 Dec 2013 16:17:15 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/09/smile-122705_1280.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Makes you happy!]]></excerpt:encoded>
<wp:post_id>2987</wp:post_id>
<wp:post_date><![CDATA[2013-12-22 16:17:15]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-12-22 16:17:15]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[smile-122705_1280]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>2342</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/09/smile-122705_1280.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/09/smile-122705_1280.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1280;s:6:"height";i:604;s:4:"file";s:29:"2013/09/smile-122705_1280.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"smile-122705_1280-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:"smile-122705_1280-300x142.jpg";s:5:"width";i:300;s:6:"height";i:142;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"smile-122705_1280-768x362.jpg";s:5:"width";i:768;s:6:"height";i:362;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:30:"smile-122705_1280-1024x483.jpg";s:5:"width";i:1024;s:6:"height";i:483;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:29:"smile-122705_1280-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:29:"smile-122705_1280-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:29:"smile-122705_1280-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:29:"smile-122705_1280-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>machu-picchu-43387_1280</title>
<link>http://demo-hueman.presscustomizr.com/2013/08/05/a-short-gallery-from-our-long-trip/machu-picchu-43387_1280/</link>
<pubDate>Sun, 22 Dec 2013 16:26:06 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/08/machu-picchu-43387_1280.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>2989</wp:post_id>
<wp:post_date><![CDATA[2013-12-22 16:26:06]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-12-22 16:26:06]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[machu-picchu-43387_1280]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>2330</wp:post_parent>
<wp:menu_order>2</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/08/machu-picchu-43387_1280.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/08/machu-picchu-43387_1280.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:35:"2013/08/machu-picchu-43387_1280.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"machu-picchu-43387_1280-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:35:"machu-picchu-43387_1280-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:35:"machu-picchu-43387_1280-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:36:"machu-picchu-43387_1280-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:35:"machu-picchu-43387_1280-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:35:"machu-picchu-43387_1280-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:35:"machu-picchu-43387_1280-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:35:"machu-picchu-43387_1280-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>oak-leaf-62716_1280</title>
<link>http://demo-hueman.presscustomizr.com/2013/08/05/a-short-gallery-from-our-long-trip/oak-leaf-62716_1280/</link>
<pubDate>Sun, 22 Dec 2013 16:26:08 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/08/oak-leaf-62716_1280.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>2990</wp:post_id>
<wp:post_date><![CDATA[2013-12-22 16:26:08]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-12-22 16:26:08]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[oak-leaf-62716_1280]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>2330</wp:post_parent>
<wp:menu_order>3</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/08/oak-leaf-62716_1280.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/08/oak-leaf-62716_1280.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:31:"2013/08/oak-leaf-62716_1280.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"oak-leaf-62716_1280-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:31:"oak-leaf-62716_1280-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"oak-leaf-62716_1280-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"oak-leaf-62716_1280-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:31:"oak-leaf-62716_1280-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:31:"oak-leaf-62716_1280-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:31:"oak-leaf-62716_1280-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:31:"oak-leaf-62716_1280-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>rainbow-bridge-68827_1280</title>
<link>http://demo-hueman.presscustomizr.com/2013/08/05/a-short-gallery-from-our-long-trip/rainbow-bridge-68827_1280/</link>
<pubDate>Sun, 22 Dec 2013 16:26:09 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/08/rainbow-bridge-68827_1280.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>2991</wp:post_id>
<wp:post_date><![CDATA[2013-12-22 16:26:09]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-12-22 16:26:09]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[rainbow-bridge-68827_1280]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>2330</wp:post_parent>
<wp:menu_order>1</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/08/rainbow-bridge-68827_1280.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/08/rainbow-bridge-68827_1280.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:37:"2013/08/rainbow-bridge-68827_1280.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:37:"rainbow-bridge-68827_1280-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:37:"rainbow-bridge-68827_1280-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:37:"rainbow-bridge-68827_1280-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:38:"rainbow-bridge-68827_1280-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:37:"rainbow-bridge-68827_1280-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:37:"rainbow-bridge-68827_1280-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:37:"rainbow-bridge-68827_1280-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:37:"rainbow-bridge-68827_1280-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>fruits-82524_1280</title>
<link>http://demo-hueman.presscustomizr.com/2013/08/31/decreasing-your-intake-of-refined-sugars-wheat-and-meat/fruits-82524_1280/</link>
<pubDate>Sun, 22 Dec 2013 16:29:45 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/08/fruits-82524_1280.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[More fruits are good for you.]]></excerpt:encoded>
<wp:post_id>2995</wp:post_id>
<wp:post_date><![CDATA[2013-12-22 16:29:45]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-12-22 16:29:45]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[fruits-82524_1280]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>2844</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/08/fruits-82524_1280.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/08/fruits-82524_1280.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1280;s:6:"height";i:853;s:4:"file";s:29:"2013/08/fruits-82524_1280.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"fruits-82524_1280-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:"fruits-82524_1280-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"fruits-82524_1280-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:30:"fruits-82524_1280-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:29:"fruits-82524_1280-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:29:"fruits-82524_1280-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:29:"fruits-82524_1280-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:29:"fruits-82524_1280-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>sunflower-210801_1280</title>
<link>http://demo-hueman.presscustomizr.com/2013/10/25/starting-the-transition-to-a-raw-food-diet/sunflower-210801_1280/</link>
<pubDate>Sun, 22 Dec 2013 16:31:20 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/sunflower-210801_1280.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Sunflower.]]></excerpt:encoded>
<wp:post_id>2996</wp:post_id>
<wp:post_date><![CDATA[2013-12-22 16:31:20]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-12-22 16:31:20]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[sunflower-210801_1280]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>2835</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/sunflower-210801_1280.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/10/sunflower-210801_1280.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:33:"2013/10/sunflower-210801_1280.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:33:"sunflower-210801_1280-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:33:"sunflower-210801_1280-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:33:"sunflower-210801_1280-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:34:"sunflower-210801_1280-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:33:"sunflower-210801_1280-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:33:"sunflower-210801_1280-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:33:"sunflower-210801_1280-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:33:"sunflower-210801_1280-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Test here</title>
<link>http://demo-hueman.presscustomizr.com/2015/12/11/test-here/</link>
<pubDate>Fri, 11 Dec 2015 16:07:29 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/2015/12/11/test-here/</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>2997</wp:post_id>
<wp:post_date><![CDATA[2015-12-11 16:07:29]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2015-12-11 16:07:29]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[test-here]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>18</wp:menu_order>
<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="nav_menu" nicename="topbar-menu"><![CDATA[Topbar Menu]]></category>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
<wp:meta_value><![CDATA[custom]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
<wp:meta_value><![CDATA[3069]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
<wp:meta_value><![CDATA[2997]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
<wp:meta_value><![CDATA[custom]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
<wp:meta_value><![CDATA[#]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Test Lorem Ipsum</title>
<link>http://demo-hueman.presscustomizr.com/2015/12/11/test-lorem-ipsum/</link>
<pubDate>Fri, 11 Dec 2015 16:07:29 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/2015/12/11/test-lorem-ipsum/</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>2998</wp:post_id>
<wp:post_date><![CDATA[2015-12-11 16:07:29]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2015-12-11 16:07:29]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[test-lorem-ipsum]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>17</wp:menu_order>
<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="nav_menu" nicename="topbar-menu"><![CDATA[Topbar Menu]]></category>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
<wp:meta_value><![CDATA[custom]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
<wp:meta_value><![CDATA[3069]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
<wp:meta_value><![CDATA[2998]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
<wp:meta_value><![CDATA[custom]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
<wp:meta_value><![CDATA[#]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>tumblr_mnh121HEWa1st5lhmo1_1280</title>
<link>http://demo-hueman.presscustomizr.com/2013/10/25/decreasing-the-use-of-smartphones/tumblr_mnh121hewa1st5lhmo1_1280/</link>
<pubDate>Sun, 22 Dec 2013 16:38:19 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/tumblr_mnh121HEWa1st5lhmo1_1280.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>3001</wp:post_id>
<wp:post_date><![CDATA[2013-12-22 16:38:19]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-12-22 16:38:19]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[tumblr_mnh121hewa1st5lhmo1_1280]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>2081</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/10/tumblr_mnh121HEWa1st5lhmo1_1280.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/10/tumblr_mnh121HEWa1st5lhmo1_1280.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1280;s:6:"height";i:853;s:4:"file";s:43:"2013/10/tumblr_mnh121HEWa1st5lhmo1_1280.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:43:"tumblr_mnh121HEWa1st5lhmo1_1280-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:43:"tumblr_mnh121HEWa1st5lhmo1_1280-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:43:"tumblr_mnh121HEWa1st5lhmo1_1280-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:44:"tumblr_mnh121HEWa1st5lhmo1_1280-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:43:"tumblr_mnh121HEWa1st5lhmo1_1280-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:43:"tumblr_mnh121HEWa1st5lhmo1_1280-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:43:"tumblr_mnh121HEWa1st5lhmo1_1280-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:43:"tumblr_mnh121HEWa1st5lhmo1_1280-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:6.29999999999999982236431605997495353221893310546875;s:6:"credit";s:0:"";s:6:"camera";s:20:"Canon EOS 5D Mark II";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1368968407;s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"50";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:7:"0.00025";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>tumblr_mx3tk07O2Q1st5lhmo1_1280</title>
<link>http://demo-hueman.presscustomizr.com/2013/08/14/the-art-of-living-in-the-now-letting-go-of-past-future/tumblr_mx3tk07o2q1st5lhmo1_1280/</link>
<pubDate>Sun, 22 Dec 2013 16:39:37 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/08/tumblr_mx3tk07O2Q1st5lhmo1_1280.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Time.]]></excerpt:encoded>
<wp:post_id>3002</wp:post_id>
<wp:post_date><![CDATA[2013-12-22 16:39:37]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-12-22 16:39:37]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[tumblr_mx3tk07o2q1st5lhmo1_1280]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>2348</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/08/tumblr_mx3tk07O2Q1st5lhmo1_1280.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/08/tumblr_mx3tk07O2Q1st5lhmo1_1280.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1280;s:6:"height";i:859;s:4:"file";s:43:"2013/08/tumblr_mx3tk07O2Q1st5lhmo1_1280.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:43:"tumblr_mx3tk07O2Q1st5lhmo1_1280-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:43:"tumblr_mx3tk07O2Q1st5lhmo1_1280-300x201.jpg";s:5:"width";i:300;s:6:"height";i:201;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:43:"tumblr_mx3tk07O2Q1st5lhmo1_1280-768x515.jpg";s:5:"width";i:768;s:6:"height";i:515;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:44:"tumblr_mx3tk07O2Q1st5lhmo1_1280-1024x687.jpg";s:5:"width";i:1024;s:6:"height";i:687;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:43:"tumblr_mx3tk07O2Q1st5lhmo1_1280-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:43:"tumblr_mx3tk07O2Q1st5lhmo1_1280-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:43:"tumblr_mx3tk07O2Q1st5lhmo1_1280-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:43:"tumblr_mx3tk07O2Q1st5lhmo1_1280-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>niagara-218591_1280</title>
<link>http://demo-hueman.presscustomizr.com/2013/08/04/life-happens-learn-how-to-flow-with-it/niagara-218591_1280/</link>
<pubDate>Sun, 22 Dec 2013 16:42:53 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/08/niagara-218591_1280.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>3003</wp:post_id>
<wp:post_date><![CDATA[2013-12-22 16:42:53]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-12-22 16:42:53]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[niagara-218591_1280]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>2320</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/08/niagara-218591_1280.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/08/niagara-218591_1280.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:31:"2013/08/niagara-218591_1280.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"niagara-218591_1280-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:31:"niagara-218591_1280-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"niagara-218591_1280-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"niagara-218591_1280-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:31:"niagara-218591_1280-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:31:"niagara-218591_1280-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:31:"niagara-218591_1280-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:31:"niagara-218591_1280-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>cocoon-209096_1280</title>
<link>http://demo-hueman.presscustomizr.com/2013/07/16/gallery-format-post/cocoon-209096_1280/</link>
<pubDate>Sun, 22 Dec 2013 16:54:12 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/07/cocoon-209096_1280.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Cocoons.]]></excerpt:encoded>
<wp:post_id>3004</wp:post_id>
<wp:post_date><![CDATA[2013-12-22 16:54:12]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-12-22 16:54:12]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[cocoon-209096_1280]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>66</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/07/cocoon-209096_1280.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2013/07/cocoon-209096_1280.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1280;s:6:"height";i:839;s:4:"file";s:30:"2013/07/cocoon-209096_1280.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:30:"cocoon-209096_1280-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:30:"cocoon-209096_1280-300x197.jpg";s:5:"width";i:300;s:6:"height";i:197;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:30:"cocoon-209096_1280-768x503.jpg";s:5:"width";i:768;s:6:"height";i:503;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:31:"cocoon-209096_1280-1024x671.jpg";s:5:"width";i:1024;s:6:"height";i:671;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-small";a:4:{s:4:"file";s:30:"cocoon-209096_1280-160x160.jpg";s:5:"width";i:160;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:14:"thumb-standard";a:4:{s:4:"file";s:30:"cocoon-209096_1280-320x320.jpg";s:5:"width";i:320;s:6:"height";i:320;s:9:"mime-type";s:10:"image/jpeg";}s:12:"thumb-medium";a:4:{s:4:"file";s:30:"cocoon-209096_1280-520x245.jpg";s:5:"width";i:520;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:11:"thumb-large";a:4:{s:4:"file";s:30:"cocoon-209096_1280-720x340.jpg";s:5:"width";i:720;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>journal-141494_1280</title>
<link>http://demo-hueman.presscustomizr.com/2013/07/16/gallery-format-post/journal-141494_1280/</link>
<pubDate>Sun, 22 Dec 2013 16:54:13 +0000</pubDate>
<dc:creator><![CDATA[nicolas]]></dc:creator>
<guid isPermaLink="false">http://demo-hueman.presscustomizr.com/wp-content/uploads/2013/07/journal-141494_1280.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[This is a caption!]]></excerpt:encoded>
<wp:post_id>3005</wp:post_id>
<wp:post_date><![CDATA[2013-12-22 16:54:13]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2013-12-22 16:54:13]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>