forked from poststatus/wptest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwptest.xml
11859 lines (11329 loc) · 546 KB
/
wptest.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" ?>
<!-- C'est un fichier d'exportation WordPress eXtended RSS (WXR) généré par WordPress de votre site. -->
<!-- Il contients les informations sur les articles; pages, commentaires, catégories, et autres contenus de votre site. -->
<!-- Vous pouvez utiliser ce fichier pour transférer le contenu d'un site vers un autre site. -->
<!-- Ce fichier n'est pas supposé servir de sauvegarde complète de votre site. -->
<!-- Pour importer ces informations dans votre site WordPress suivez les étapes suivantes : -->
<!-- 1. Connectez-vous au site en tant qu'administrateur. -->
<!-- 2. Direction Outils : Importer dans le panneau d'admin de WordPress. -->
<!-- 3. Installez l'importateur "WordPress" dans la liste. -->
<!-- 4. Activez et lancez l'importateur. -->
<!-- 5. Choisissez et envoyez ce fichier via le formulaire de la page. -->
<!-- 6. Ne changez ou ne réassignez aucun auteur et cochez bien Télécharger et importer les fichiers joints -->
<!-- Ne fermez pas la fenêtre/ onglet et ne partez pas de la page pendant l'importation. -->
<!-- Cela peut-être un peu long, mais comme on entend souvent, plus c'est long plus c'est bon, non? -->
<!-- 7. WordPress importera tous les articles, pages, commentaires, catégories, etc. -->
<!-- contenu dans ce fichier dans votre site. -->
<!-- generator="WordPress/4.2.2" created="2015-06-24 14:58" -->
<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>WP Test en français</title>
<link>https://wptest.fxbenard.com</link>
<description>Les meilleurs tests pour WordPress</description>
<pubDate>Sun, 23 Feb 2014 16:39:20 +0000</pubDate>
<language>fr-FR</language>
<wp:wxr_version>1.2</wp:wxr_version>
<wp:base_site_url>https://fxbenard.com/</wp:base_site_url>
<wp:base_blog_url>https://wptest.fxbenard.com</wp:base_blog_url>
<wp:author><wp:author_id>1</wp:author_id><wp:author_login>fxbenard</wp:author_login><wp:author_email>[email protected]</wp:author_email><wp:author_display_name><![CDATA[FX Bénard]]></wp:author_display_name><wp:author_first_name><![CDATA[FX]]></wp:author_first_name><wp:author_last_name><![CDATA[Bénard]]></wp:author_last_name></wp:author>
<wp:author><wp:author_id>2</wp:author_id><wp:author_login>boiteaweb</wp:author_login><wp:author_email>[email protected]</wp:author_email><wp:author_display_name><![CDATA[BoiteAWeb]]></wp:author_display_name><wp:author_first_name><![CDATA[Julio]]></wp:author_first_name><wp:author_last_name><![CDATA[Potier]]></wp:author_last_name></wp:author>
<wp:author><wp:author_id>3</wp:author_id><wp:author_login>jennybeaumont</wp:author_login><wp:author_email>[email protected]</wp:author_email><wp:author_display_name><![CDATA[Jenny Beaumont]]></wp:author_display_name><wp:author_first_name><![CDATA[Jenny]]></wp:author_first_name><wp:author_last_name><![CDATA[Beaumont]]></wp:author_last_name></wp:author>
<wp:author><wp:author_id>4</wp:author_id><wp:author_login>remicorson</wp:author_login><wp:author_email>[email protected]</wp:author_email><wp:author_display_name><![CDATA[Rémi Corson]]></wp:author_display_name><wp:author_first_name><![CDATA[Rémi]]></wp:author_first_name><wp:author_last_name><![CDATA[Corson]]></wp:author_last_name></wp:author>
<wp:author><wp:author_id>5</wp:author_id><wp:author_login>benjaminlupu</wp:author_login><wp:author_email>[email protected]</wp:author_email><wp:author_display_name><![CDATA[Benjamin Lupu]]></wp:author_display_name><wp:author_first_name><![CDATA[Benjamin]]></wp:author_first_name><wp:author_last_name><![CDATA[Lupu]]></wp:author_last_name></wp:author>
<wp:author><wp:author_id>6</wp:author_id><wp:author_login>gregoirenoyelle</wp:author_login><wp:author_email>[email protected]</wp:author_email><wp:author_display_name><![CDATA[Grégoire Noyelle]]></wp:author_display_name><wp:author_first_name><![CDATA[Grégoire]]></wp:author_first_name><wp:author_last_name><![CDATA[Noyelle]]></wp:author_last_name></wp:author>
<wp:category><wp:term_id>2</wp:term_id><wp:category_nicename>alignement</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Alignement]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent l'image et l'alignement de texte.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>3</wp:term_id><wp:category_nicename>balise</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Balise]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent les balises de style.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>4</wp:term_id><wp:category_nicename>balise-more</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Balise More]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie teste la fonctionnalité more.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>5</wp:term_id><wp:category_nicename>bizarroide</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Bizarroide]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent les cas étranges, en utilisant des méthodes uniques de travail des utilisateurs.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>6</wp:term_id><wp:category_nicename>categorie-parente</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Catégorie parente]]></wp:cat_name><wp:category_description><![CDATA[C'est une catégorie parente. Elle contiendra toutes les catégories enfants]]></wp:category_description></wp:category>
<wp:category><wp:term_id>7</wp:term_id><wp:category_nicename>format-d-article-chat</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Chat]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent le type d'article chat.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>8</wp:term_id><wp:category_nicename>format-d-article-citation</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Citation]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent le type d'article citation.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>9</wp:term_id><wp:category_nicename>codex</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Codex]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie contiennent des références au codex.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>10</wp:term_id><wp:category_nicename>commentaires</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Commentaires]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent les commentaires.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>11</wp:term_id><wp:category_nicename>contenu</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Contenu]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent le contenu.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>12</wp:term_id><wp:category_nicename>sticky</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[En avant]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>13</wp:term_id><wp:category_nicename>format-d-article-en-passant</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[En passant]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent les articles au format en passant.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>14</wp:term_id><wp:category_nicename>format-d-article-etat</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[État]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent les états des formats d'articles.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>15</wp:term_id><wp:category_nicename>extrait</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Extrait]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent les extraits d'articles]]></wp:category_description></wp:category>
<wp:category><wp:term_id>16</wp:term_id><wp:category_nicename>formatage</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Formatage]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent les différents types de formatage.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>17</wp:term_id><wp:category_nicename>formats-d-article</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Formats d'article]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent les types d'article.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>18</wp:term_id><wp:category_nicename>format-d-article-galerie</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Galerie]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent le type d'article galerie.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>19</wp:term_id><wp:category_nicename>images</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Images]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent les images dans tous les sens.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>20</wp:term_id><wp:category_nicename>images-a-la-une</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Images à la une]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent les images à la Une.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>21</wp:term_id><wp:category_nicename>integration</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Intégration]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent les différents codes pour intégrer du contenu.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>22</wp:term_id><wp:category_nicename>jetpack</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Jetpack]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent les fonctionnalités de Jetpack.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>23</wp:term_id><wp:category_nicename>legendes</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Légendes]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent les légendes d'images.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>24</wp:term_id><wp:category_nicename>format-d-article-lien</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Lien]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent le type d'article lien.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>25</wp:term_id><wp:category_nicename>listes</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Liste]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent les listes dans tous les sens.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>26</wp:term_id><wp:category_nicename>mot-de-passe</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Mots de passe]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent la fonctionnalité des mots de passe dans les articles.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>1</wp:term_id><wp:category_nicename>non-classe</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Non classé]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>27</wp:term_id><wp:category_nicename>non-publie</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Non publié]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent les articles non-publiés]]></wp:category_description></wp:category>
<wp:category><wp:term_id>28</wp:term_id><wp:category_nicename>par-defaut</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Par défaut]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent le type d'article par défaut.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>29</wp:term_id><wp:category_nicename>pings</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Pings]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent les pings.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>30</wp:term_id><wp:category_nicename>raccourcis</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Raccourcis]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent différents raccourcis.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>31</wp:term_id><wp:category_nicename>retroliens</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Rétroliens]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent les rétroliens.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>32</wp:term_id><wp:category_nicename>format-d-article-son</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Son]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent les articles au format audio.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>33</wp:term_id><wp:category_nicename>titres</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Titres]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent les différents types de titres.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>34</wp:term_id><wp:category_nicename>twitter</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Twitter]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent les différentes fonctionnalités de Twitter.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>35</wp:term_id><wp:category_nicename>format-d-article-video</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Vidéo]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent le type d'article vidéo.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>36</wp:term_id><wp:category_nicename>videopress</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[VideoPress]]></wp:cat_name><wp:category_description><![CDATA[Les articles de cette catégorie testent les fonctionnalités de VideoPress.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>37</wp:term_id><wp:category_nicename>categorie-enfant-01</wp:category_nicename><wp:category_parent>categorie-parente</wp:category_parent><wp:cat_name><![CDATA[Catégorie enfant 01]]></wp:cat_name><wp:category_description><![CDATA[C'est la description pour la catégorie enfant 01.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>38</wp:term_id><wp:category_nicename>categorie-enfant-02</wp:category_nicename><wp:category_parent>categorie-parente</wp:category_parent><wp:cat_name><![CDATA[Catégorie enfant 02]]></wp:cat_name><wp:category_description><![CDATA[C'est la description pour la catégorie enfant 02.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>39</wp:term_id><wp:category_nicename>categorie-enfant-03</wp:category_nicename><wp:category_parent>categorie-parente</wp:category_parent><wp:cat_name><![CDATA[Catégorie enfant 03]]></wp:cat_name><wp:category_description><![CDATA[C'est la description pour la catégorie enfant 03.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>40</wp:term_id><wp:category_nicename>categorie-enfant-04</wp:category_nicename><wp:category_parent>categorie-parente</wp:category_parent><wp:cat_name><![CDATA[Catégorie enfant 04]]></wp:cat_name><wp:category_description><![CDATA[C'est la description pour la catégorie enfant 04.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>41</wp:term_id><wp:category_nicename>categorie-enfant-05</wp:category_nicename><wp:category_parent>categorie-parente</wp:category_parent><wp:cat_name><![CDATA[Catégorie enfant 05]]></wp:cat_name><wp:category_description><![CDATA[C'est la description pour la catégorie enfant 05.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>42</wp:term_id><wp:category_nicename>categorie-petit-enfant</wp:category_nicename><wp:category_parent>categorie-enfant-03</wp:category_parent><wp:cat_name><![CDATA[Catégorie petit enfant]]></wp:cat_name><wp:category_description><![CDATA[C'est la description pour la catégorie petit-enfant.]]></wp:category_description></wp:category>
<wp:tag><wp:term_id>43</wp:term_id><wp:tag_slug>alire</wp:tag_slug><wp:tag_name><![CDATA[À lire]]></wp:tag_name><wp:tag_description><![CDATA[Étiquettes d'articles que vous devez absolument lire.]]></wp:tag_description></wp:tag>
<wp:tag><wp:term_id>44</wp:term_id><wp:tag_slug>amour</wp:tag_slug><wp:tag_name><![CDATA[Amour]]></wp:tag_name><wp:tag_description><![CDATA[Étiquettes d'articles concernant l'amour.]]></wp:tag_description></wp:tag>
<wp:tag><wp:term_id>45</wp:term_id><wp:tag_slug>articles</wp:tag_slug><wp:tag_name><![CDATA[Articles]]></wp:tag_name><wp:tag_description><![CDATA[Étiquettes d'articles concernant les articles.]]></wp:tag_description></wp:tag>
<wp:tag><wp:term_id>46</wp:term_id><wp:tag_slug>touche</wp:tag_slug><wp:tag_name><![CDATA[Dans le mille]]></wp:tag_name><wp:tag_description><![CDATA[Étiquettes d'articles concernant tout ce qui est dans le mille.]]></wp:tag_description></wp:tag>
<wp:tag><wp:term_id>47</wp:term_id><wp:tag_slug>drole</wp:tag_slug><wp:tag_name><![CDATA[Drôle]]></wp:tag_name><wp:tag_description><![CDATA[Étiquettes d'articles concernant ce qui est drôle.]]></wp:tag_description></wp:tag>
<wp:tag><wp:term_id>48</wp:term_id><wp:tag_slug>echec</wp:tag_slug><wp:tag_name><![CDATA[Échec]]></wp:tag_name><wp:tag_description><![CDATA[Étiquettes d'articles concernant l'échec.]]></wp:tag_description></wp:tag>
<wp:tag><wp:term_id>50</wp:term_id><wp:tag_slug>etiquettes</wp:tag_slug><wp:tag_name><![CDATA[Étiquettes]]></wp:tag_name><wp:tag_description><![CDATA[Des étiquettes sur des étiquettes.]]></wp:tag_description></wp:tag>
<wp:tag><wp:term_id>49</wp:term_id><wp:tag_slug>fonctionne</wp:tag_slug><wp:tag_name><![CDATA[Fonctionne]]></wp:tag_name><wp:tag_description><![CDATA[Étiquettes d'articles pour #ça marche.]]></wp:tag_description></wp:tag>
<wp:tag><wp:term_id>19</wp:term_id><wp:tag_slug>images</wp:tag_slug><wp:tag_name><![CDATA[Images]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>51</wp:term_id><wp:tag_slug>nailedit</wp:tag_slug><wp:tag_name><![CDATA[Nailed It]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>52</wp:term_id><wp:tag_slug>pas-vu</wp:tag_slug><wp:tag_name><![CDATA[Non vu]]></wp:tag_name><wp:tag_description><![CDATA[Étiquettes d'articles qui n'ont pas été encore lue.]]></wp:tag_description></wp:tag>
<wp:tag><wp:term_id>53</wp:term_id><wp:tag_slug>photos</wp:tag_slug><wp:tag_name><![CDATA[Photos]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>54</wp:term_id><wp:tag_slug>plv</wp:tag_slug><wp:tag_name><![CDATA[PLV]]></wp:tag_name><wp:tag_description><![CDATA[La traduction du FTV "For The Victory" anglais.]]></wp:tag_description></wp:tag>
<wp:tag><wp:term_id>55</wp:term_id><wp:tag_slug>succes</wp:tag_slug><wp:tag_name><![CDATA[Succès]]></wp:tag_name><wp:tag_description><![CDATA[Étiquettes d'articles concernant la réussite.]]></wp:tag_description></wp:tag>
<wp:tag><wp:term_id>56</wp:term_id><wp:tag_slug>success</wp:tag_slug><wp:tag_name><![CDATA[Succès]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>57</wp:term_id><wp:tag_slug>swagger</wp:tag_slug><wp:tag_name><![CDATA[Swagger]]></wp:tag_name><wp:tag_description><![CDATA[Étiquettes d'articles pour #swagger.]]></wp:tag_description></wp:tag>
<wp:tag><wp:term_id>58</wp:term_id><wp:tag_slug>vaisseau-mere</wp:tag_slug><wp:tag_name><![CDATA[Vaisseau-mère]]></wp:tag_name><wp:tag_description><![CDATA[Étiquettes d'articles concernant le vaisseau-mère.]]></wp:tag_description></wp:tag>
<wp:tag><wp:term_id>59</wp:term_id><wp:tag_slug>wordpress</wp:tag_slug><wp:tag_name><![CDATA[WordPress]]></wp:tag_name><wp:tag_description><![CDATA[Étiquettes d’articles relatifs à WordPress.]]></wp:tag_description></wp:tag>
<wp:tag><wp:term_id>60</wp:term_id><wp:tag_slug>wp-translations</wp:tag_slug><wp:tag_name><![CDATA[WP-T]]></wp:tag_name><wp:tag_description><![CDATA[Étiquettes concernant WP-Translations.]]></wp:tag_description></wp:tag>
<wp:term><wp:term_id>61</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug>menu-long</wp:term_slug><wp:term_name><![CDATA[Menu long]]></wp:term_name></wp:term>
<wp:term><wp:term_id>62</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug>menu-de-test</wp:term_slug><wp:term_name><![CDATA[Menu de test]]></wp:term_name></wp:term>
<wp:term><wp:term_id>63</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug>menu-vide</wp:term_slug><wp:term_name><![CDATA[Menu vide]]></wp:term_name></wp:term>
<generator>http://wordpress.org/?v=3.8.1</generator>
<item>
<title>canola2</title>
<link>https://wptest.fxbenard.com/format-article-galerie/canola2/</link>
<pubDate>Mon, 10 Jan 2011 13:17:54 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/01/canola2.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna.]]></excerpt:encoded>
<wp:post_id>611</wp:post_id>
<wp:post_date>2011-01-10 06:17:54</wp:post_date>
<wp:post_date_gmt>2011-01-10 13:17:54</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>canola2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/01/canola2.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/01/canola2.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:19:"2011/01/canola2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"canola2-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:"canola2-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:19:"canola2-640x372.jpg";s:5:"width";i:640;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:5.5999999999999996447286321199499070644378662109375;s:6:"credit";s:0:"";s:6:"camera";s:18:"Canon PowerShot G2";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1094915268;s:9:"copyright";s:0:"";s:12:"focal_length";s:7:"16.8125";s:3:"iso";i:0;s:13:"shutter_speed";s:9:"0.0015625";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[canola]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>dsc20050315_145007_132</title>
<link>https://wptest.fxbenard.com/format-article-galerie/dsc20050315_145007_132/</link>
<pubDate>Mon, 10 Jan 2011 13:19:10 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/01/dsc20050315_145007_132.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>613</wp:post_id>
<wp:post_date>2011-01-10 06:19:10</wp:post_date>
<wp:post_date_gmt>2011-01-10 13:19:10</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>dsc20050315_145007_132</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/01/dsc20050315_145007_132.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/01/dsc20050315_145007_132.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:34:"2011/01/dsc20050315_145007_132.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"dsc20050315_145007_132-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:34:"dsc20050315_145007_132-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:34:"dsc20050315_145007_132-640x372.jpg";s:5:"width";i:640;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:2.20000000000000017763568394002504646778106689453125;s:6:"credit";s:0:"";s:6:"camera";s:9:"CYBERSHOT";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1110898207;s:9:"copyright";s:0:"";s:12:"focal_length";s:3:"9.7";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[dsc20050315_145007_132]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>dsc20050727_091048_222</title>
<link>https://wptest.fxbenard.com/format-article-galerie/dsc20050727_091048_222/</link>
<pubDate>Mon, 10 Jan 2011 13:20:37 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/01/dsc20050727_091048_222.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>616</wp:post_id>
<wp:post_date>2011-01-10 06:20:37</wp:post_date>
<wp:post_date_gmt>2011-01-10 13:20:37</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>dsc20050727_091048_222</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/01/dsc20050727_091048_222.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/01/dsc20050727_091048_222.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:34:"2011/01/dsc20050727_091048_222.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"dsc20050727_091048_222-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:34:"dsc20050727_091048_222-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:34:"dsc20050727_091048_222-640x372.jpg";s:5:"width";i:640;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:4;s:6:"credit";s:0:"";s:6:"camera";s:9:"CYBERSHOT";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1122455448;s:9:"copyright";s:0:"";s:12:"focal_length";s:3:"9.7";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:5:"0.004";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[dsc20050727_091048_222]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>dsc20050813_115856_52</title>
<link>https://wptest.fxbenard.com/format-article-galerie/dsc20050813_115856_52/</link>
<pubDate>Mon, 10 Jan 2011 13:20:57 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/01/dsc20050813_115856_52.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>617</wp:post_id>
<wp:post_date>2011-01-10 06:20:57</wp:post_date>
<wp:post_date_gmt>2011-01-10 13:20:57</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>dsc20050813_115856_52</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/01/dsc20050813_115856_52.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/01/dsc20050813_115856_52.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:33:"2011/01/dsc20050813_115856_52.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:33:"dsc20050813_115856_52-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:"dsc20050813_115856_52-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:33:"dsc20050813_115856_52-640x372.jpg";s:5:"width";i:640;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:3.20000000000000017763568394002504646778106689453125;s:6:"credit";s:0:"";s:6:"camera";s:9:"CYBERSHOT";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1123934337;s:9:"copyright";s:0:"";s:12:"focal_length";s:3:"9.7";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[dsc20050813_115856_52]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>dsc20050831_165238_332</title>
<link>https://wptest.fxbenard.com/format-article-galerie/dsc20050831_165238_332/</link>
<pubDate>Mon, 10 Jan 2011 13:21:14 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/01/dsc20050831_165238_332.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>618</wp:post_id>
<wp:post_date>2011-01-10 06:21:14</wp:post_date>
<wp:post_date_gmt>2011-01-10 13:21:14</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>dsc20050831_165238_332</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/01/dsc20050831_165238_332.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/01/dsc20050831_165238_332.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:34:"2011/01/dsc20050831_165238_332.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"dsc20050831_165238_332-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:34:"dsc20050831_165238_332-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:34:"dsc20050831_165238_332-640x372.jpg";s:5:"width";i:640;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:2;s:6:"credit";s:0:"";s:6:"camera";s:9:"CYBERSHOT";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1125507159;s:9:"copyright";s:0:"";s:12:"focal_length";s:3:"9.7";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:15:"0.0166666666667";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[dsc20050831_165238_332]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>dsc20050901_105100_212</title>
<link>https://wptest.fxbenard.com/format-article-galerie/dsc20050901_105100_212/</link>
<pubDate>Mon, 10 Jan 2011 13:21:50 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/01/dsc20050901_105100_212.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Seed pods on stem, Woodvale]]></excerpt:encoded>
<wp:post_id>619</wp:post_id>
<wp:post_date>2011-01-10 06:21:50</wp:post_date>
<wp:post_date_gmt>2011-01-10 13:21:50</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>dsc20050901_105100_212</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/01/dsc20050901_105100_212.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/01/dsc20050901_105100_212.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:34:"2011/01/dsc20050901_105100_212.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"dsc20050901_105100_212-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:34:"dsc20050901_105100_212-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:34:"dsc20050901_105100_212-640x372.jpg";s:5:"width";i:640;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:4;s:6:"credit";s:0:"";s:6:"camera";s:9:"CYBERSHOT";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1125571860;s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"10";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:6:"0.0025";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[Seed pods on stem, Woodvale]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Bell on Wharf</title>
<link>https://wptest.fxbenard.com/format-article-galerie/100_5478/</link>
<pubDate>Fri, 15 Jul 2011 21:34:50 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/07/100_5478.jpg</guid>
<description></description>
<content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Objects/100_5540.JPG.html]]></content:encoded>
<excerpt:encoded><![CDATA[Bell on wharf in San Francisco]]></excerpt:encoded>
<wp:post_id>754</wp:post_id>
<wp:post_date>2011-07-15 14:34:50</wp:post_date>
<wp:post_date_gmt>2011-07-15 21:34:50</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>100_5478</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/07/100_5478.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/100_5478.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1600;s:6:"height";i:1200;s:4:"file";s:20:"2011/07/100_5478.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"100_5478-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:20:"100_5478-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"100_5478-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"100_5478-672x372.jpg";s:5:"width";i:672;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}s:25:"twentyfourteen-full-width";a:4:{s:4:"file";s:21:"100_5478-1038x576.jpg";s:5:"width";i:1038;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:6.29999999999999982236431605997495353221893310546875;s:6:"credit";s:0:"";s:6:"camera";s:32:"KODAK DX7590 ZOOM DIGITAL CAMERA";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1145694068;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"17.5";s:3:"iso";s:2:"80";s:13:"shutter_speed";s:5:"0.002";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[Bell on Wharf]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Golden Gate Bridge</title>
<link>https://wptest.fxbenard.com/format-article-galerie/100_5540/</link>
<pubDate>Fri, 15 Jul 2011 21:35:55 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/07/100_5540.jpg</guid>
<description></description>
<content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Objects/100_5478.JPG.html]]></content:encoded>
<excerpt:encoded><![CDATA[Golden Gate Bridge]]></excerpt:encoded>
<wp:post_id>755</wp:post_id>
<wp:post_date>2011-07-15 14:35:55</wp:post_date>
<wp:post_date_gmt>2011-07-15 21:35:55</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>100_5540</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/07/100_5540.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/100_5540.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1600;s:6:"height";i:1200;s:4:"file";s:20:"2011/07/100_5540.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"100_5540-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:20:"100_5540-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"100_5540-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"100_5540-672x372.jpg";s:5:"width";i:672;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}s:25:"twentyfourteen-full-width";a:4:{s:4:"file";s:21:"100_5540-1038x576.jpg";s:5:"width";i:1038;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:4;s:6:"credit";s:0:"";s:6:"camera";s:32:"KODAK DX7590 ZOOM DIGITAL CAMERA";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1145697622;s:9:"copyright";s:0:"";s:12:"focal_length";s:3:"6.3";s:3:"iso";s:2:"80";s:13:"shutter_speed";s:7:"0.00125";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[Golden Gate Bridge]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Sunburst Over River</title>
<link>https://wptest.fxbenard.com/format-article-galerie/cep00032/</link>
<pubDate>Fri, 15 Jul 2011 21:41:24 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/07/cep00032.jpg</guid>
<description></description>
<content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Landscapes/ocean/CEP00032.jpg.html]]></content:encoded>
<excerpt:encoded><![CDATA[Sunburst over the Clinch River, Southwest Virginia.]]></excerpt:encoded>
<wp:post_id>756</wp:post_id>
<wp:post_date>2011-07-15 14:41:24</wp:post_date>
<wp:post_date_gmt>2011-07-15 21:41:24</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>cep00032</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/07/cep00032.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/cep00032.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1500;s:6:"height";i:1200;s:4:"file";s:20:"2011/07/cep00032.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"cep00032-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:20:"cep00032-300x240.jpg";s:5:"width";i:300;s:6:"height";i:240;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"cep00032-1024x819.jpg";s:5:"width";i:1024;s:6:"height";i:819;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"cep00032-672x372.jpg";s:5:"width";i:672;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}s:25:"twentyfourteen-full-width";a:4:{s:4:"file";s:21:"cep00032-1038x576.jpg";s:5:"width";i:1038;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:4;s:6:"credit";s:0:"";s:6:"camera";s:13:"Canon ELURA90";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1130775264;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";i:0;s:13:"shutter_speed";s:8:"0.002091";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[Sunburst Over River]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Boardwalk</title>
<link>https://wptest.fxbenard.com/format-article-galerie/dcp_2082/</link>
<pubDate>Fri, 15 Jul 2011 21:41:27 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/07/dcp_2082.jpg</guid>
<description></description>
<content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Landscapes/ocean/DCP_2082.jpg.html]]></content:encoded>
<excerpt:encoded><![CDATA[Boardwalk at Westport, WA]]></excerpt:encoded>
<wp:post_id>757</wp:post_id>
<wp:post_date>2011-07-15 14:41:27</wp:post_date>
<wp:post_date_gmt>2011-07-15 21:41:27</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>dcp_2082</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/07/dcp_2082.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/dcp_2082.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1600;s:6:"height";i:1066;s:4:"file";s:20:"2011/07/dcp_2082.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"dcp_2082-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:20:"dcp_2082-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"dcp_2082-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"dcp_2082-672x372.jpg";s:5:"width";i:672;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}s:25:"twentyfourteen-full-width";a:4:{s:4:"file";s:21:"dcp_2082-1038x576.jpg";s:5:"width";i:1038;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:5.5999999999999996447286321199499070644378662109375;s:6:"credit";s:0:"";s:6:"camera";s:32:"KODAK DX4900 ZOOM DIGITAL CAMERA";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1054666444;s:9:"copyright";s:0:"";s:12:"focal_length";s:3:"7.3";s:3:"iso";i:0;s:13:"shutter_speed";s:5:"0.002";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[Boardwalk]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Yachtsody in Blue</title>
<link>https://wptest.fxbenard.com/format-article-galerie/dsc03149/</link>
<pubDate>Fri, 15 Jul 2011 21:41:33 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/07/dsc03149.jpg</guid>
<description></description>
<content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Landscapes/ocean/dsc03149.jpg.html]]></content:encoded>
<excerpt:encoded><![CDATA[Boats and reflections, Royal Perth Yacht Club]]></excerpt:encoded>
<wp:post_id>758</wp:post_id>
<wp:post_date>2011-07-15 14:41:33</wp:post_date>
<wp:post_date_gmt>2011-07-15 21:41:33</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>dsc03149</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/07/dsc03149.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/dsc03149.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_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:20:"2011/07/dsc03149.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"dsc03149-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:20:"dsc03149-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"dsc03149-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"dsc03149-672x372.jpg";s:5:"width";i:672;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}s:25:"twentyfourteen-full-width";a:4:{s:4:"file";s:21:"dsc03149-1038x576.jpg";s:5:"width";i:1038;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:4;s:6:"credit";s:0:"";s:6:"camera";s:9:"CYBERSHOT";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1034618291;s:9:"copyright";s:0:"";s:12:"focal_length";s:3:"9.7";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:5:"0.004";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[Yachtsody in Blue]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Rain Ripples</title>
<link>https://wptest.fxbenard.com/format-article-galerie/dsc04563/</link>
<pubDate>Fri, 15 Jul 2011 21:41:37 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/07/dsc04563.jpg</guid>
<description></description>
<content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Landscapes/ocean/dsc04563.jpg.html]]></content:encoded>
<excerpt:encoded><![CDATA[Raindrop ripples on a pond]]></excerpt:encoded>
<wp:post_id>759</wp:post_id>
<wp:post_date>2011-07-15 14:41:37</wp:post_date>
<wp:post_date_gmt>2011-07-15 21:41:37</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>dsc04563</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/07/dsc04563.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/dsc04563.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1600;s:6:"height";i:1200;s:4:"file";s:20:"2011/07/dsc04563.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"dsc04563-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:20:"dsc04563-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"dsc04563-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"dsc04563-672x372.jpg";s:5:"width";i:672;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}s:25:"twentyfourteen-full-width";a:4:{s:4:"file";s:21:"dsc04563-1038x576.jpg";s:5:"width";i:1038;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:4;s:6:"credit";s:0:"";s:6:"camera";s:9:"CYBERSHOT";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1040567677;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"48.5";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:5:"0.002";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[Rain Ripples]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Sydney Harbor Bridge</title>
<link>https://wptest.fxbenard.com/format-article-galerie/dsc09114/</link>
<pubDate>Fri, 15 Jul 2011 21:41:41 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/07/dsc09114.jpg</guid>
<description></description>
<content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Objects/dsc09114.jpg.html]]></content:encoded>
<excerpt:encoded><![CDATA[Sydney Harbor Bridge]]></excerpt:encoded>
<wp:post_id>760</wp:post_id>
<wp:post_date>2011-07-15 14:41:41</wp:post_date>
<wp:post_date_gmt>2011-07-15 21:41:41</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>dsc09114</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/07/dsc09114.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/dsc09114.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1600;s:6:"height";i:1200;s:4:"file";s:20:"2011/07/dsc09114.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"dsc09114-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:20:"dsc09114-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"dsc09114-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"dsc09114-672x372.jpg";s:5:"width";i:672;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}s:25:"twentyfourteen-full-width";a:4:{s:4:"file";s:21:"dsc09114-1038x576.jpg";s:5:"width";i:1038;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:5.5999999999999996447286321199499070644378662109375;s:6:"credit";s:0:"";s:6:"camera";s:9:"CYBERSHOT";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1067174771;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"11.8";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:5:"0.002";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[Sydney Harbor Bridge]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Wind Farm</title>
<link>https://wptest.fxbenard.com/format-article-galerie/dsc20050102_192118_51/</link>
<pubDate>Fri, 15 Jul 2011 21:41:42 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/07/dsc20050102_192118_51.jpg</guid>
<description></description>
<content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Landscapes/ocean/dsc20050102_192118_51.jpg.html]]></content:encoded>
<excerpt:encoded><![CDATA[Albany wind-farm against the sunset, Western Australia]]></excerpt:encoded>
<wp:post_id>761</wp:post_id>
<wp:post_date>2011-07-15 14:41:42</wp:post_date>
<wp:post_date_gmt>2011-07-15 21:41:42</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>dsc20050102_192118_51</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/07/dsc20050102_192118_51.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/dsc20050102_192118_51.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1600;s:6:"height";i:1200;s:4:"file";s:33:"2011/07/dsc20050102_192118_51.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:33:"dsc20050102_192118_51-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:"dsc20050102_192118_51-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:34:"dsc20050102_192118_51-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:33:"dsc20050102_192118_51-672x372.jpg";s:5:"width";i:672;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}s:25:"twentyfourteen-full-width";a:4:{s:4:"file";s:34:"dsc20050102_192118_51-1038x576.jpg";s:5:"width";i:1038;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:4;s:6:"credit";s:0:"";s:6:"camera";s:9:"CYBERSHOT";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1104693678;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"33.3";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:7:"0.00625";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[Wind Farm]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Antique Farm Machinery</title>
<link>https://wptest.fxbenard.com/format-article-galerie/dsc20051220_160808_102/</link>
<pubDate>Fri, 15 Jul 2011 21:41:45 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/07/dsc20051220_160808_102.jpg</guid>
<description></description>
<content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Objects/dsc20051220_160808_102.jpg.html]]></content:encoded>
<excerpt:encoded><![CDATA[Antique farm machinery, Mount Barker Museum, Western Australia]]></excerpt:encoded>
<wp:post_id>762</wp:post_id>
<wp:post_date>2011-07-15 14:41:45</wp:post_date>
<wp:post_date_gmt>2011-07-15 21:41:45</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>dsc20051220_160808_102</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/07/dsc20051220_160808_102.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/dsc20051220_160808_102.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1600;s:6:"height";i:1066;s:4:"file";s:34:"2011/07/dsc20051220_160808_102.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"dsc20051220_160808_102-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:34:"dsc20051220_160808_102-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:35:"dsc20051220_160808_102-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:34:"dsc20051220_160808_102-672x372.jpg";s:5:"width";i:672;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}s:25:"twentyfourteen-full-width";a:4:{s:4:"file";s:35:"dsc20051220_160808_102-1038x576.jpg";s:5:"width";i:1038;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:2.5;s:6:"credit";s:0:"";s:6:"camera";s:13:"Canon EOS 10D";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1135094888;s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"50";s:3:"iso";s:3:"400";s:13:"shutter_speed";s:15:"0.0166666666667";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[Antique Farm Machinery]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Orange Iris</title>
<link>https://wptest.fxbenard.com/format-article-galerie/dsc02085/</link>
<pubDate>Fri, 15 Jul 2011 21:46:27 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/07/dsc02085.jpg</guid>
<description></description>
<content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/main.php?g2_view=dynamicalbum.UpdatesAlbum&g2_itemId=25895]]></content:encoded>
<excerpt:encoded><![CDATA[Orange Iris]]></excerpt:encoded>
<wp:post_id>763</wp:post_id>
<wp:post_date>2011-07-15 14:46:27</wp:post_date>
<wp:post_date_gmt>2011-07-15 21:46:27</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>dsc02085</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/07/dsc02085.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/dsc02085.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1600;s:6:"height";i:1200;s:4:"file";s:20:"2011/07/dsc02085.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"dsc02085-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:20:"dsc02085-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"dsc02085-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"dsc02085-672x372.jpg";s:5:"width";i:672;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}s:25:"twentyfourteen-full-width";a:4:{s:4:"file";s:21:"dsc02085-1038x576.jpg";s:5:"width";i:1038;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:2.899999999999999911182158029987476766109466552734375;s:6:"credit";s:0:"";s:6:"camera";s:8:"DSC-S930";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1288861799;s:9:"copyright";s:0:"";s:12:"focal_length";s:3:"6.4";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[Orange Iris]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Rusty Rail</title>
<link>https://wptest.fxbenard.com/format-article-galerie/dsc20051220_173257_119/</link>
<pubDate>Fri, 15 Jul 2011 21:47:17 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/07/dsc20051220_173257_119.jpg</guid>
<description></description>
<content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Objects/dsc20051220_173257_119.jpg.html]]></content:encoded>
<excerpt:encoded><![CDATA[Rusty rails with fishplate, Kojonup]]></excerpt:encoded>
<wp:post_id>764</wp:post_id>
<wp:post_date>2011-07-15 14:47:17</wp:post_date>
<wp:post_date_gmt>2011-07-15 21:47:17</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>dsc20051220_173257_119</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/07/dsc20051220_173257_119.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/dsc20051220_173257_119.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1600;s:6:"height";i:1066;s:4:"file";s:34:"2011/07/dsc20051220_173257_119.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"dsc20051220_173257_119-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:34:"dsc20051220_173257_119-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:35:"dsc20051220_173257_119-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:34:"dsc20051220_173257_119-672x372.jpg";s:5:"width";i:672;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}s:25:"twentyfourteen-full-width";a:4:{s:4:"file";s:35:"dsc20051220_173257_119-1038x576.jpg";s:5:"width";i:1038;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:6.70000000000000017763568394002504646778106689453125;s:6:"credit";s:0:"";s:6:"camera";s:13:"Canon EOS 10D";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1135099977;s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"50";s:3:"iso";s:3:"400";s:13:"shutter_speed";s:16:"0.00133333333333";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[Rusty Rail]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Sea and Rocks</title>
<link>https://wptest.fxbenard.com/format-article-galerie/dscn3316/</link>
<pubDate>Fri, 15 Jul 2011 21:47:20 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/07/dscn3316.jpg</guid>
<description></description>
<content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Landscapes/ocean/dscn3316.jpg.html]]></content:encoded>
<excerpt:encoded><![CDATA[Sea and rocks, Plimmerton, New Zealand]]></excerpt:encoded>
<wp:post_id>765</wp:post_id>
<wp:post_date>2011-07-15 14:47:20</wp:post_date>
<wp:post_date_gmt>2011-07-15 21:47:20</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>dscn3316</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/07/dscn3316.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/dscn3316.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1600;s:6:"height";i:1200;s:4:"file";s:20:"2011/07/dscn3316.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"dscn3316-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:20:"dscn3316-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"dscn3316-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"dscn3316-672x372.jpg";s:5:"width";i:672;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}s:25:"twentyfourteen-full-width";a:4:{s:4:"file";s:21:"dscn3316-1038x576.jpg";s:5:"width";i:1038;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:7.5999999999999996447286321199499070644378662109375;s:6:"credit";s:0:"";s:6:"camera";s:5:"E4300";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1170775967;s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"8";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:16:"0.00454545454545";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[Sea and Rocks]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Big Sur</title>
<link>https://wptest.fxbenard.com/format-article-galerie/michelle_049/</link>
<pubDate>Fri, 15 Jul 2011 21:47:23 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/07/michelle_049.jpg</guid>
<description></description>
<content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Landscapes/ocean/michelle_049.jpg.html]]></content:encoded>
<excerpt:encoded><![CDATA[Beach at Big Sur, CA]]></excerpt:encoded>
<wp:post_id>766</wp:post_id>
<wp:post_date>2011-07-15 14:47:23</wp:post_date>
<wp:post_date_gmt>2011-07-15 21:47:23</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>michelle_049</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/07/michelle_049.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/michelle_049.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1600;s:6:"height";i:1200;s:4:"file";s:24:"2011/07/michelle_049.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"michelle_049-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:24:"michelle_049-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"michelle_049-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:24:"michelle_049-672x372.jpg";s:5:"width";i:672;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}s:25:"twentyfourteen-full-width";a:4:{s:4:"file";s:25:"michelle_049-1038x576.jpg";s:5:"width";i:1038;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:7.0999999999999996447286321199499070644378662109375;s:6:"credit";s:0:"";s:6:"camera";s:18:"Canon PowerShot G3";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1096133874;s:9:"copyright";s:0:"";s:12:"focal_length";s:7:"15.8125";s:3:"iso";i:0;s:13:"shutter_speed";s:7:"0.00625";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[Big Sur]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Windmill</title>
<link>https://wptest.fxbenard.com/format-article-galerie/dcf-1-0/</link>
<pubDate>Fri, 15 Jul 2011 21:47:26 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/07/windmill.jpg</guid>
<description></description>
<content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Objects/Windmill.jpg.html]]></content:encoded>
<excerpt:encoded><![CDATA[Windmill shrouded in fog at a farm outside of Walker, Iowa]]></excerpt:encoded>
<wp:post_id>767</wp:post_id>
<wp:post_date>2011-07-15 14:47:26</wp:post_date>
<wp:post_date_gmt>2011-07-15 21:47:26</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>dcf-1-0</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/07/windmill.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/windmill.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1600;s:6:"height";i:1200;s:4:"file";s:20:"2011/07/windmill.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"windmill-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:20:"windmill-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"windmill-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"windmill-672x372.jpg";s:5:"width";i:672;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}s:25:"twentyfourteen-full-width";a:4:{s:4:"file";s:21:"windmill-1038x576.jpg";s:5:"width";i:1038;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:5.5999999999999996447286321199499070644378662109375;s:6:"credit";s:0:"";s:6:"camera";s:8:"DiMAGE 7";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1125077631;s:9:"copyright";s:0:"";s:12:"focal_length";s:11:"50.69140625";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:16:"0.00555555555556";s:5:"title";s:7:"DCF 1.0";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[Windmill]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Huatulco Coastline</title>
<link>https://wptest.fxbenard.com/format-article-galerie/alas-i-have-found-my-shangri-la/</link>
<pubDate>Fri, 15 Jul 2011 21:49:48 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/07/img_0513.jpg</guid>
<description></description>
<content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Landscapes/ocean/IMG_0513.jpg.html]]></content:encoded>
<excerpt:encoded><![CDATA[Sunrise over the coast in Huatulco, Oaxaca, Mexico]]></excerpt:encoded>
<wp:post_id>768</wp:post_id>
<wp:post_date>2011-07-15 14:49:48</wp:post_date>
<wp:post_date_gmt>2011-07-15 21:49:48</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>alas-i-have-found-my-shangri-la</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/07/img_0513.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/img_0513.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:800;s:6:"height";i:533;s:4:"file";s:20:"2011/07/img_0513.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"img_0513-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:20:"img_0513-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"img_0513-672x372.jpg";s:5:"width";i:672;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:5.5999999999999996447286321199499070644378662109375;s:6:"credit";s:10:"Picasa 2.0";s:6:"camera";s:12:"Canon EOS 5D";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1158217614;s:9:"copyright";s:0:"";s:12:"focal_length";s:3:"105";s:3:"iso";s:3:"400";s:13:"shutter_speed";s:5:"0.005";s:5:"title";s:32:"Alas! I have found my Shangri-La";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[Huatulco Coastline]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Brazil Beach</title>
<link>https://wptest.fxbenard.com/format-article-galerie/img_0747/</link>
<pubDate>Fri, 15 Jul 2011 21:50:37 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/07/img_0747.jpg</guid>
<description></description>
<content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/main.php?g2_view=dynamicalbum.UpdatesAlbum&g2_itemId=25770]]></content:encoded>
<excerpt:encoded><![CDATA[Jericoacoara Ceara Brasil]]></excerpt:encoded>
<wp:post_id>769</wp:post_id>
<wp:post_date>2011-07-15 14:50:37</wp:post_date>
<wp:post_date_gmt>2011-07-15 21:50:37</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>img_0747</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/07/img_0747.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/img_0747.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1600;s:6:"height";i:1066;s:4:"file";s:20:"2011/07/img_0747.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"img_0747-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:20:"img_0747-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"img_0747-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"img_0747-672x372.jpg";s:5:"width";i:672;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}s:25:"twentyfourteen-full-width";a:4:{s:4:"file";s:21:"img_0747-1038x576.jpg";s:5:"width";i:1038;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:11;s:6:"credit";s:0:"";s:6:"camera";s:19:"Canon EOS REBEL T2i";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1271654325;s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"18";s:3:"iso";s:3:"800";s:13:"shutter_speed";s:7:"0.00125";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[Brazil Beach]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Huatulco Coastline</title>
<link>https://wptest.fxbenard.com/format-article-galerie/img_0767/</link>
<pubDate>Fri, 15 Jul 2011 21:51:19 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/07/img_0767.jpg</guid>
<description></description>
<content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Landscapes/ocean/IMG_0767.JPG.html]]></content:encoded>
<excerpt:encoded><![CDATA[Coastline in Huatulco, Oaxaca, Mexico]]></excerpt:encoded>
<wp:post_id>770</wp:post_id>
<wp:post_date>2011-07-15 14:51:19</wp:post_date>
<wp:post_date_gmt>2011-07-15 21:51:19</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>img_0767</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/07/img_0767.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/img_0767.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:800;s:6:"height";i:533;s:4:"file";s:20:"2011/07/img_0767.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"img_0767-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:20:"img_0767-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"img_0767-672x372.jpg";s:5:"width";i:672;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:10;s:6:"credit";s:10:"Picasa 2.6";s:6:"camera";s:12:"Canon EOS 5D";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1158320386;s:9:"copyright";s:0:"";s:12:"focal_length";s:3:"105";s:3:"iso";s:3:"400";s:13:"shutter_speed";s:5:"0.002";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[Huatulco Coastline]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Boat Barco Texture</title>
<link>https://wptest.fxbenard.com/format-article-galerie/img_8399/</link>
<pubDate>Fri, 15 Jul 2011 21:51:57 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2011/07/img_8399.jpg</guid>
<description></description>
<content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/main.php?g2_view=dynamicalbum.UpdatesAlbum&g2_itemId=25774]]></content:encoded>
<excerpt:encoded><![CDATA[Boat BW PB Barco Texture Beautiful Fishing]]></excerpt:encoded>
<wp:post_id>771</wp:post_id>
<wp:post_date>2011-07-15 14:51:57</wp:post_date>
<wp:post_date_gmt>2011-07-15 21:51:57</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>img_8399</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2011/07/img_8399.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/img_8399.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1600;s:6:"height";i:1066;s:4:"file";s:20:"2011/07/img_8399.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"img_8399-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:20:"img_8399-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"img_8399-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"img_8399-672x372.jpg";s:5:"width";i:672;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}s:25:"twentyfourteen-full-width";a:4:{s:4:"file";s:21:"img_8399-1038x576.jpg";s:5:"width";i:1038;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:4.5;s:6:"credit";s:0:"";s:6:"camera";s:26:"Canon EOS DIGITAL REBEL XT";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1192368714;s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"75";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:5:"0.004";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[Boat Barco Texture]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>dsc20040724_152504_532</title>
<link>https://wptest.fxbenard.com/format-article-galerie/dsc20040724_152504_532-2/</link>
<pubDate>Mon, 04 Jun 2012 18:36:56 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2012/06/dsc20040724_152504_532.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>807</wp:post_id>
<wp:post_date>2012-06-04 11:36:56</wp:post_date>
<wp:post_date_gmt>2012-06-04 18:36:56</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>dsc20040724_152504_532-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://wptest.fxbenard.com/files/2012/06/dsc20040724_152504_532.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/06/dsc20040724_152504_532.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:34:"2012/06/dsc20040724_152504_532.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"dsc20040724_152504_532-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:34:"dsc20040724_152504_532-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:34:"dsc20040724_152504_532-640x372.jpg";s:5:"width";i:640;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:2;s:6:"credit";s:0:"";s:6:"camera";s:9:"CYBERSHOT";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1090682704;s:9:"copyright";s:0:"";s:12:"focal_length";s:3:"9.7";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:4:"0.02";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>dsc20050604_133440_3421</title>
<link>https://wptest.fxbenard.com/format-article-galerie/dsc20050604_133440_3421/</link>
<pubDate>Mon, 04 Jun 2012 18:58:15 +0000</pubDate>
<dc:creator><![CDATA[fxbenard]]></dc:creator>
<guid isPermaLink="false">https://wptest.fxbenard.com/files/2012/06/dsc20050604_133440_3421.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>811</wp:post_id>
<wp:post_date>2012-06-04 11:58:15</wp:post_date>
<wp:post_date_gmt>2012-06-04 18:58:15</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>dsc20050604_133440_3421</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>555</wp:post_parent>
<wp:menu_order>0</wp:menu_order>