[libgdata/offline-testing] tests: Add trace file testing support to the PicasaWeb test suite



commit 47e473c69f1dc26341b2a8c142cbcd475f2d3b18
Author: Philip Withnall <philip tecnocode co uk>
Date:   Sun Jul 28 14:21:35 2013 +0200

    tests: Add trace file testing support to the PicasaWeb test suite

 gdata/tests/picasaweb.c                            |  327 +++++++++++++++-----
 gdata/tests/traces/picasaweb/authentication        |   27 ++
 gdata/tests/traces/picasaweb/authentication-async  |   27 ++
 gdata/tests/traces/picasaweb/global-authentication |   27 ++
 gdata/tests/traces/picasaweb/insert-album          |   64 ++++
 gdata/tests/traces/picasaweb/insert-album-async    |   34 ++
 gdata/tests/traces/picasaweb/query-all-albums      |   30 ++
 .../tests/traces/picasaweb/query-all-albums-async  |   30 ++
 .../query-all-albums-async-progress-closure        |   30 ++
 .../traces/picasaweb/query-all-albums-with-limits  |   90 ++++++
 gdata/tests/traces/picasaweb/query-user            |   30 ++
 gdata/tests/traces/picasaweb/query-user-async      |   30 ++
 .../traces/picasaweb/query-user-by-username-async  |   30 ++
 .../tests/traces/picasaweb/setup-query-all-albums  |  136 ++++++++
 gdata/tests/traces/picasaweb/setup-query-files     |   46 +++
 gdata/tests/traces/picasaweb/teardown-insert-album |   27 ++
 .../traces/picasaweb/teardown-query-all-albums     |  108 +++++++
 17 files changed, 1009 insertions(+), 84 deletions(-)
---
diff --git a/gdata/tests/picasaweb.c b/gdata/tests/picasaweb.c
index 8c84c7b..a206b91 100644
--- a/gdata/tests/picasaweb.c
+++ b/gdata/tests/picasaweb.c
@@ -33,6 +33,8 @@
 
 #define PW_USERNAME "libgdata picasaweb gmail com"
 
+static GDataMockServer *mock_server = NULL;
+
 /* Assert that two albums have equal properties, but aren't the same object instance. For use in, e.g., 
comparing an inserted album from the server
  * to the original instance which was inserted. */
 static void
@@ -342,6 +344,8 @@ test_authentication (void)
        GDataClientLoginAuthorizer *authorizer;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "authentication");
+
        /* Create an authorizer */
        authorizer = gdata_client_login_authorizer_new (CLIENT_ID, GDATA_TYPE_PICASAWEB_SERVICE);
 
@@ -361,12 +365,16 @@ test_authentication (void)
                                                             
gdata_picasaweb_service_get_primary_authorization_domain ()) == TRUE);
 
        g_object_unref (authorizer);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_TEST_FUNCTIONS (authentication, void,
 G_STMT_START {
        GDataClientLoginAuthorizer *authorizer;
 
+       gdata_test_mock_server_start_trace (mock_server, "authentication-async");
+
        /* Create an authorizer */
        authorizer = gdata_client_login_authorizer_new (CLIENT_ID, GDATA_TYPE_PICASAWEB_SERVICE);
 
@@ -401,6 +409,8 @@ G_STMT_START {
                g_assert (gdata_authorizer_is_authorized_for_domain (GDATA_AUTHORIZER (authorizer),
                                                                     
gdata_picasaweb_service_get_primary_authorization_domain ()) == FALSE);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 typedef struct {
@@ -466,6 +476,8 @@ set_up_query_files (QueryFilesData *data, gconstpointer service)
 {
        GDataPicasaWebAlbum *album;
 
+       gdata_test_mock_server_start_trace (mock_server, "setup-query-files");
+
        /* Album */
        album = gdata_picasaweb_album_new (NULL);
        gdata_entry_set_title (GDATA_ENTRY (album), "Test album for QueryFiles");
@@ -480,6 +492,8 @@ set_up_query_files (QueryFilesData *data, gconstpointer service)
        data->file2 = upload_file (GDATA_PICASAWEB_SERVICE (service), "Test file 2", data->album);
        data->file3 = upload_file (GDATA_PICASAWEB_SERVICE (service), "Test file 3", data->album);
        data->file4 = upload_file (GDATA_PICASAWEB_SERVICE (service), "Test file 4", data->album);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -493,6 +507,8 @@ tear_down_query_files (QueryFilesData *data, gconstpointer service)
        g_object_unref (data->file2);
        g_object_unref (data->file1);
 
+       gdata_test_mock_server_start_trace (mock_server, "teardown-query-files");
+
        /* We have to re-query for the album, since its ETag will be out of date */
        album_feed = gdata_picasaweb_service_query_all_albums (GDATA_PICASAWEB_SERVICE (service), NULL, NULL, 
NULL, NULL, NULL, NULL);
        album = gdata_feed_look_up_entry (GDATA_FEED (album_feed), gdata_entry_get_id (GDATA_ENTRY 
(data->album)));
@@ -503,6 +519,8 @@ tear_down_query_files (QueryFilesData *data, gconstpointer service)
 
        g_object_unref (album_feed);
        g_object_unref (data->album);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 /* Checks to perform on a photo feed from test_query_files() or test_query_files_async(). */
@@ -545,6 +563,8 @@ test_query_files (QueryFilesData *data, gconstpointer service)
        GDataFeed *photo_feed;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "query-files");
+
        photo_feed = gdata_picasaweb_service_query_files (GDATA_PICASAWEB_SERVICE (service), data->album, 
NULL, NULL, NULL, NULL, &error);
        g_assert_no_error (error);
        g_assert (GDATA_IS_FEED (photo_feed));
@@ -553,6 +573,8 @@ test_query_files (QueryFilesData *data, gconstpointer service)
        _test_query_files (photo_feed, data);
 
        g_object_unref (photo_feed);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_CLOSURE_FUNCTIONS (query_files, QueryFilesData);
@@ -560,6 +582,8 @@ GDATA_ASYNC_CLOSURE_FUNCTIONS (query_files, QueryFilesData);
 /* Test that asynchronously querying for all photos in an album lists them correctly. */
 GDATA_ASYNC_TEST_FUNCTIONS (query_files, QueryFilesData,
 G_STMT_START {
+       gdata_test_mock_server_start_trace (mock_server, "query-files-async");
+
        gdata_picasaweb_service_query_files_async (GDATA_PICASAWEB_SERVICE (service), data->album, NULL, 
cancellable, NULL, NULL, NULL,
                                                   async_ready_callback, async_data);
 } G_STMT_END,
@@ -575,6 +599,8 @@ G_STMT_START {
        } else {
                g_assert (photo_feed == NULL);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 /* Test that the progress callbacks from gdata_picasaweb_service_query_files_async() are called correctly.
@@ -585,6 +611,8 @@ test_query_files_async_progress_closure (QueryFilesData *query_data, gconstpoint
 {
        GDataAsyncProgressClosure *data = g_slice_new0 (GDataAsyncProgressClosure);
 
+       gdata_test_mock_server_start_trace (mock_server, "query-files-async-progress-closure");
+
        data->main_loop = g_main_loop_new (NULL, TRUE);
 
        gdata_picasaweb_service_query_files_async (GDATA_PICASAWEB_SERVICE (service), query_data->album, 
NULL, NULL,
@@ -600,6 +628,8 @@ test_query_files_async_progress_closure (QueryFilesData *query_data, gconstpoint
        g_assert_cmpuint (data->async_ready_notify_count, ==, 1);
 
        g_slice_free (GDataAsyncProgressClosure, data);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -608,6 +638,8 @@ test_query_files_single (QueryFilesData *data, gconstpointer service)
        GDataEntry *file;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "query-files-single");
+
        file = gdata_service_query_single_entry (GDATA_SERVICE (service), 
gdata_picasaweb_service_get_primary_authorization_domain (),
                                                 gdata_entry_get_id (GDATA_ENTRY (data->file1)), NULL, 
GDATA_TYPE_PICASAWEB_FILE, NULL, &error);
        g_assert_no_error (error);
@@ -617,6 +649,8 @@ test_query_files_single (QueryFilesData *data, gconstpointer service)
        assert_files_equal (GDATA_PICASAWEB_FILE (file), data->file1, TRUE);
 
        g_object_unref (file);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -632,6 +666,8 @@ test_download_thumbnails (QueryFilesData *data, gconstpointer service)
        gssize transfer_size;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "download-thumbnails");
+
        photo = GDATA_PICASAWEB_FILE (data->file3);
 
        thumbnails = gdata_picasaweb_file_get_thumbnails (photo);
@@ -693,6 +729,8 @@ test_download_thumbnails (QueryFilesData *data, gconstpointer service)
                g_object_unref (pixbuf);
        }
 #endif /* HAVE_GDK_PIXBUF */
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -708,6 +746,8 @@ test_download_photo (QueryFilesData *data, gconstpointer service)
        gssize transfer_size;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "download-photo");
+
        photo = GDATA_PICASAWEB_FILE (data->file3);
 
        media_contents = gdata_picasaweb_file_get_contents (photo);
@@ -742,6 +782,8 @@ test_download_photo (QueryFilesData *data, gconstpointer service)
        /* Delete the file (shouldn't cause the test to fail if this fails) */
        g_file_delete (destination_file, NULL, NULL);
        g_object_unref (destination_file);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 typedef struct {
@@ -754,6 +796,8 @@ set_up_insert_album (InsertAlbumData *data, gconstpointer service)
 {
        GTimeVal timestamp;
 
+       gdata_test_mock_server_start_trace (mock_server, "setup-insert-album");
+
        data->album = gdata_picasaweb_album_new (NULL);
        g_assert (GDATA_IS_PICASAWEB_ALBUM (data->album));
 
@@ -763,16 +807,22 @@ set_up_insert_album (InsertAlbumData *data, gconstpointer service)
 
        g_time_val_from_iso8601 ("2002-10-14T09:58:59.643554Z", &timestamp);
        gdata_picasaweb_album_set_timestamp (data->album, timestamp.tv_sec * 1000);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
 tear_down_insert_album (InsertAlbumData *data, gconstpointer service)
 {
+       gdata_test_mock_server_start_trace (mock_server, "teardown-insert-album");
+
        g_object_unref (data->album);
 
        /* Clean up the evidence */
        gdata_service_delete_entry (GDATA_SERVICE (service), 
gdata_picasaweb_service_get_primary_authorization_domain (),
                                    GDATA_ENTRY (data->inserted_album), NULL, NULL);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -782,6 +832,8 @@ test_insert_album (InsertAlbumData *data, gconstpointer service)
        GDataFeed *album_feed;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "insert-album");
+
        /* Insert the album synchronously */
        inserted_album = gdata_picasaweb_service_insert_album (GDATA_PICASAWEB_SERVICE (service), 
data->album, NULL, &error);
        g_assert_no_error (error);
@@ -803,12 +855,16 @@ test_insert_album (InsertAlbumData *data, gconstpointer service)
        g_object_unref (album_feed);
 
        g_object_unref (inserted_album);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_CLOSURE_FUNCTIONS (insert_album, InsertAlbumData);
 
 GDATA_ASYNC_TEST_FUNCTIONS (insert_album, InsertAlbumData,
 G_STMT_START {
+       gdata_test_mock_server_start_trace (mock_server, "insert-album-async");
+
        gdata_picasaweb_service_insert_album_async (GDATA_PICASAWEB_SERVICE (service), data->album, 
cancellable,
                                                    async_ready_callback, async_data);
 } G_STMT_END,
@@ -827,6 +883,8 @@ G_STMT_START {
        } else {
                g_assert (entry == NULL);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 typedef struct {
@@ -841,6 +899,8 @@ set_up_query_all_albums (QueryAllAlbumsData *data, gconstpointer service)
 {
        GDataPicasaWebAlbum *album;
 
+       gdata_test_mock_server_start_trace (mock_server, "setup-query-all-albums");
+
        /* First album */
        album = gdata_picasaweb_album_new (NULL);
        gdata_entry_set_title (GDATA_ENTRY (album), "Test album 1 for QueryAllAlbums");
@@ -876,11 +936,15 @@ set_up_query_all_albums (QueryAllAlbumsData *data, gconstpointer service)
        g_assert (data->album4 != NULL);
 
        g_object_unref (album);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
 tear_down_query_all_albums (QueryAllAlbumsData *data, gconstpointer service)
 {
+       gdata_test_mock_server_start_trace (mock_server, "teardown-query-all-albums");
+
        g_assert (gdata_service_delete_entry (GDATA_SERVICE (service), 
gdata_picasaweb_service_get_primary_authorization_domain (),
                                              GDATA_ENTRY (data->album1), NULL, NULL) == TRUE);
        g_object_unref (data->album1);
@@ -896,6 +960,8 @@ tear_down_query_all_albums (QueryAllAlbumsData *data, gconstpointer service)
        g_assert (gdata_service_delete_entry (GDATA_SERVICE (service), 
gdata_picasaweb_service_get_primary_authorization_domain (),
                                              GDATA_ENTRY (data->album4), NULL, NULL) == TRUE);
        g_object_unref (data->album4);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -975,6 +1041,8 @@ test_query_all_albums (QueryAllAlbumsData *data, gconstpointer service)
        GDataFeed *album_feed;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "query-all-albums");
+
        /* Try a proper query */
        album_feed = gdata_picasaweb_service_query_all_albums (GDATA_PICASAWEB_SERVICE (service), NULL, NULL, 
NULL, NULL, NULL, &error);
        g_assert_no_error (error);
@@ -983,6 +1051,8 @@ test_query_all_albums (QueryAllAlbumsData *data, gconstpointer service)
        _test_query_all_albums (album_feed, data);
 
        g_object_unref (album_feed);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -993,6 +1063,8 @@ test_query_all_albums_with_limits (QueryAllAlbumsData *data, gconstpointer servi
        GError *error = NULL;
        GList *albums_1, *albums_2;
 
+       gdata_test_mock_server_start_trace (mock_server, "query-all-albums-with-limits");
+
        /* Test that two queries starting at different indices don't return the same content */
        query = GDATA_QUERY (gdata_picasaweb_query_new_with_limits (NULL, 1, 1));
        album_feed_1 = gdata_picasaweb_service_query_all_albums (GDATA_PICASAWEB_SERVICE (service), query, 
NULL, NULL, NULL, NULL, &error);
@@ -1028,6 +1100,8 @@ test_query_all_albums_with_limits (QueryAllAlbumsData *data, gconstpointer servi
        g_assert_cmpint (g_list_length (albums_1), ==, 3);
 
        g_object_unref (album_feed_1);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_CLOSURE_FUNCTIONS (query_all_albums, QueryAllAlbumsData);
@@ -1035,6 +1109,8 @@ GDATA_ASYNC_CLOSURE_FUNCTIONS (query_all_albums, QueryAllAlbumsData);
 /* Test that asynchronously querying for all albums lists them correctly. */
 GDATA_ASYNC_TEST_FUNCTIONS (query_all_albums, QueryAllAlbumsData,
 G_STMT_START {
+       gdata_test_mock_server_start_trace (mock_server, "query-all-albums-async");
+
        gdata_picasaweb_service_query_all_albums_async (GDATA_PICASAWEB_SERVICE (service), NULL, NULL, 
cancellable, NULL,
                                                        NULL, NULL, async_ready_callback, async_data);
 } G_STMT_END,
@@ -1051,6 +1127,8 @@ G_STMT_START {
        } else {
                g_assert (album_feed == NULL);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 /* Test that the progress callbacks from gdata_picasaweb_service_query_all_albums_async() are called 
correctly.
@@ -1061,6 +1139,8 @@ test_query_all_albums_async_progress_closure (QueryAllAlbumsData *unused_data, g
 {
        GDataAsyncProgressClosure *data = g_slice_new0 (GDataAsyncProgressClosure);
 
+       gdata_test_mock_server_start_trace (mock_server, "query-all-albums-async-progress-closure");
+
        data->main_loop = g_main_loop_new (NULL, TRUE);
 
        gdata_picasaweb_service_query_all_albums_async (GDATA_PICASAWEB_SERVICE (service), NULL, NULL, NULL,
@@ -1076,6 +1156,8 @@ test_query_all_albums_async_progress_closure (QueryAllAlbumsData *unused_data, g
        g_assert_cmpuint (data->async_ready_notify_count, ==, 1);
 
        g_slice_free (GDataAsyncProgressClosure, data);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -1109,6 +1191,8 @@ set_up_query_comments (QueryCommentsData *data, gconstpointer service)
        /* Set up some test albums and files. */
        set_up_query_files ((QueryFilesData*) data, service);
 
+       gdata_test_mock_server_start_trace (mock_server, "setup-query-comments");
+
        /* Insert four test comments on the first test file. */
        comment_ = gdata_picasaweb_comment_new (NULL);
        gdata_entry_set_content (GDATA_ENTRY (comment_), "Test comment 1.");
@@ -1130,11 +1214,15 @@ set_up_query_comments (QueryCommentsData *data, gconstpointer service)
                                                                                    GDATA_COMMENT (comment_), 
NULL, NULL));
        g_assert (GDATA_IS_PICASAWEB_COMMENT (data->comment1));
        g_object_unref (comment_);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
 tear_down_query_comments (QueryCommentsData *data, gconstpointer service)
 {
+       gdata_test_mock_server_start_trace (mock_server, "teardown-query-comments");
+
        /* Delete the test comments. */
        if (data->comment1 != NULL) {
                gdata_commentable_delete_comment (GDATA_COMMENTABLE (data->parent.file1), GDATA_SERVICE 
(service),
@@ -1154,6 +1242,8 @@ tear_down_query_comments (QueryCommentsData *data, gconstpointer service)
                g_object_unref (data->comment3);
        }
 
+       gdata_mock_server_end_trace (mock_server);
+
        /* Delete the test files and albums. */
        tear_down_query_files ((QueryFilesData*) data, service);
 }
@@ -1211,6 +1301,8 @@ test_comment_query (QueryCommentsData *data, gconstpointer service)
        GDataFeed *comments_feed;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "comment-query");
+
        comments_feed = gdata_commentable_query_comments (GDATA_COMMENTABLE (data->parent.file1), 
GDATA_SERVICE (service), NULL, NULL, NULL, NULL,
                                                          &error);
        g_assert_no_error (error);
@@ -1219,6 +1311,8 @@ test_comment_query (QueryCommentsData *data, gconstpointer service)
        assert_comments_feed (data, comments_feed);
 
        g_object_unref (comments_feed);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_CLOSURE_FUNCTIONS (query_comments, QueryCommentsData);
@@ -1226,6 +1320,8 @@ GDATA_ASYNC_CLOSURE_FUNCTIONS (query_comments, QueryCommentsData);
 /* Test that asynchronously querying for all albums lists them correctly. */
 GDATA_ASYNC_TEST_FUNCTIONS (comment_query, QueryCommentsData,
 G_STMT_START {
+       gdata_test_mock_server_start_trace (mock_server, "comment-query-async");
+
        gdata_commentable_query_comments_async (GDATA_COMMENTABLE (data->parent.file1), GDATA_SERVICE 
(service), NULL, cancellable, NULL, NULL, NULL,
                                                async_ready_callback, async_data);
 } G_STMT_END,
@@ -1242,6 +1338,8 @@ G_STMT_START {
        } else {
                g_assert (comments_feed == NULL);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 /* Test that the progress callbacks from gdata_commentable_query_comments_async() are called correctly.
@@ -1252,6 +1350,8 @@ test_comment_query_async_progress_closure (QueryCommentsData *query_data, gconst
 {
        GDataAsyncProgressClosure *data = g_slice_new0 (GDataAsyncProgressClosure);
 
+       gdata_test_mock_server_start_trace (mock_server, "comment-query-async-progress-closure");
+
        data->main_loop = g_main_loop_new (NULL, TRUE);
 
        gdata_commentable_query_comments_async (GDATA_COMMENTABLE (query_data->parent.file1), GDATA_SERVICE 
(service), NULL, NULL,
@@ -1267,6 +1367,8 @@ test_comment_query_async_progress_closure (QueryCommentsData *query_data, gconst
        g_assert_cmpuint (data->async_ready_notify_count, ==, 1);
 
        g_slice_free (GDataAsyncProgressClosure, data);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 typedef struct {
@@ -1280,6 +1382,8 @@ set_up_insert_comment (InsertCommentData *data, gconstpointer service)
 {
        set_up_query_files ((QueryFilesData*) data, service);
 
+       gdata_test_mock_server_start_trace (mock_server, "setup-insert-comment");
+
        /* Create a test comment to be inserted. */
        data->comment = gdata_picasaweb_comment_new (NULL);
        g_assert (GDATA_IS_PICASAWEB_COMMENT (data->comment));
@@ -1287,11 +1391,15 @@ set_up_insert_comment (InsertCommentData *data, gconstpointer service)
        gdata_entry_set_content (GDATA_ENTRY (data->comment), "This is a test comment.");
 
        data->new_comment = NULL;
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
 tear_down_insert_comment (InsertCommentData *data, gconstpointer service)
 {
+       gdata_test_mock_server_start_trace (mock_server, "teardown-insert-comment");
+
        /* Delete the inserted comment. */
        if (data->new_comment != NULL) {
                g_assert (gdata_commentable_delete_comment (GDATA_COMMENTABLE (data->parent.file1), 
GDATA_SERVICE (service),
@@ -1303,6 +1411,8 @@ tear_down_insert_comment (InsertCommentData *data, gconstpointer service)
                g_object_unref (data->comment);
        }
 
+       gdata_mock_server_end_trace (mock_server);
+
        tear_down_query_files ((QueryFilesData*) data, service);
 }
 
@@ -1334,6 +1444,8 @@ test_comment_insert (InsertCommentData *data, gconstpointer service)
        GDataComment *new_comment;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "comment-insert");
+
        new_comment = gdata_commentable_insert_comment (GDATA_COMMENTABLE (data->parent.file1), GDATA_SERVICE 
(service), GDATA_COMMENT (data->comment),
                                                        NULL, &error);
        g_assert_no_error (error);
@@ -1342,12 +1454,16 @@ test_comment_insert (InsertCommentData *data, gconstpointer service)
        assert_comments_equal (new_comment, data->comment);
 
        data->new_comment = GDATA_PICASAWEB_COMMENT (new_comment);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_CLOSURE_FUNCTIONS (insert_comment, InsertCommentData);
 
 GDATA_ASYNC_TEST_FUNCTIONS (comment_insert, InsertCommentData,
 G_STMT_START {
+       gdata_test_mock_server_start_trace (mock_server, "comment-insert-async");
+
        gdata_commentable_insert_comment_async (GDATA_COMMENTABLE (data->parent.file1), GDATA_SERVICE 
(service),
                                                GDATA_COMMENT (data->comment), cancellable, 
async_ready_callback, async_data);
 } G_STMT_END,
@@ -1363,6 +1479,8 @@ G_STMT_START {
        } else {
                g_assert (new_comment == NULL);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -1371,6 +1489,8 @@ test_comment_delete (QueryCommentsData *data, gconstpointer service)
        gboolean success;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "comment-delete");
+
        success = gdata_commentable_delete_comment (GDATA_COMMENTABLE (data->parent.file1), GDATA_SERVICE 
(service), GDATA_COMMENT (data->comment1),
                                                    NULL, &error);
        g_assert_no_error (error);
@@ -1379,10 +1499,14 @@ test_comment_delete (QueryCommentsData *data, gconstpointer service)
 
        g_object_unref (data->comment1);
        data->comment1 = NULL;
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_TEST_FUNCTIONS (comment_delete, QueryCommentsData,
 G_STMT_START {
+       gdata_test_mock_server_start_trace (mock_server, "comment-delete-async");
+
        gdata_commentable_delete_comment_async (GDATA_COMMENTABLE (data->parent.file1), GDATA_SERVICE 
(service),
                                                GDATA_COMMENT (data->comment1), cancellable, 
async_ready_callback, async_data);
 } G_STMT_END,
@@ -1408,6 +1532,8 @@ G_STMT_START {
                        g_clear_error (&error);
                }
        }
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -1416,6 +1542,8 @@ test_query_user (gconstpointer service)
        GDataPicasaWebUser *user;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "query-user");
+
        user = gdata_picasaweb_service_get_user (GDATA_PICASAWEB_SERVICE (service), NULL, NULL, &error);
        g_assert_no_error (error);
        g_clear_error (&error);
@@ -1423,11 +1551,15 @@ test_query_user (gconstpointer service)
        check_authenticated_user_details (user);
 
        g_object_unref (user);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 /* Check that asynchronously querying for the currently authenticated user's details works and returns the 
correct details. */
 GDATA_ASYNC_TEST_FUNCTIONS (query_user, void,
 G_STMT_START {
+       gdata_test_mock_server_start_trace (mock_server, "query-user-async");
+
        gdata_picasaweb_service_get_user_async (GDATA_PICASAWEB_SERVICE (service), NULL, cancellable, 
async_ready_callback, async_data);
 } G_STMT_END,
 G_STMT_START {
@@ -1442,6 +1574,8 @@ G_STMT_START {
        } else {
                g_assert (user == NULL);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 /* Check that querying for a user other than the currently authenticated user, asynchronously, gives us an 
appropriate result. This result should,
@@ -1449,6 +1583,8 @@ G_STMT_START {
  * lack of information correctly.) */
 GDATA_ASYNC_TEST_FUNCTIONS (query_user_by_username, void,
 G_STMT_START {
+       gdata_test_mock_server_start_trace (mock_server, "query-user-by-username-async");
+
        gdata_picasaweb_service_get_user_async (GDATA_PICASAWEB_SERVICE (service), "philip.withnall", 
cancellable, async_ready_callback, async_data);
 } G_STMT_END,
 G_STMT_START {
@@ -1471,6 +1607,8 @@ G_STMT_START {
        } else {
                g_assert (user == NULL);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 typedef struct {
@@ -1490,6 +1628,8 @@ set_up_upload (UploadData *data, gconstpointer service)
        const gchar * const tags[] = { "foo", "bar", ",,baz,baz", NULL };
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "setup-upload");
+
        data->service = g_object_ref ((gpointer) service);
 
        /* Build the photo */
@@ -1517,11 +1657,15 @@ set_up_upload (UploadData *data, gconstpointer service)
        data->file_stream = g_file_read (data->photo_file, NULL, &error);
        g_assert_no_error (error);
        g_assert (G_IS_FILE_INPUT_STREAM (data->file_stream));
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
 tear_down_upload (UploadData *data, gconstpointer service)
 {
+       gdata_test_mock_server_start_trace (mock_server, "teardown-upload");
+
        /* Delete the uploaded photo (don't worry if this fails) */
        if (data->updated_photo != NULL) {
                gdata_service_delete_entry (GDATA_SERVICE (service), 
gdata_picasaweb_service_get_primary_authorization_domain (),
@@ -1535,6 +1679,8 @@ tear_down_upload (UploadData *data, gconstpointer service)
        g_free (data->content_type);
        g_object_unref (data->file_stream);
        g_object_unref (data->service);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -1545,6 +1691,8 @@ test_upload_default_album (UploadData *data, gconstpointer service)
        gssize transfer_size;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "upload-default-album");
+
        /* Prepare the upload stream */
        /* TODO right now, it will just go to the default album, we want an uploading one :| */
        upload_stream = gdata_picasaweb_service_upload_file (GDATA_PICASAWEB_SERVICE (service), NULL, 
data->photo, data->slug, data->content_type,
@@ -1574,6 +1722,8 @@ test_upload_default_album (UploadData *data, gconstpointer service)
        g_assert_cmpstr (tags2[0], ==, tags[0]);
        g_assert_cmpstr (tags2[1], ==, tags[1]);
        g_assert_cmpstr (tags2[2], ==, tags[2]);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_CLOSURE_FUNCTIONS (upload, UploadData);
@@ -1583,6 +1733,8 @@ G_STMT_START {
        GDataUploadStream *upload_stream;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "upload-default-album-async");
+
        /* Prepare the upload stream */
        upload_stream = gdata_picasaweb_service_upload_file (GDATA_PICASAWEB_SERVICE (service), NULL, 
data->photo, data->slug,
                                                             data->content_type, cancellable, &error);
@@ -1638,6 +1790,8 @@ G_STMT_START {
        }
 
        g_clear_error (&upload_error);
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -1945,93 +2099,98 @@ main (int argc, char *argv[])
        gint retval;
        GDataAuthorizer *authorizer = NULL;
        GDataService *service = NULL;
+       GFile *trace_directory;
 
        gdata_test_init (argc, argv);
 
-       if (gdata_test_internet () == TRUE) {
-               authorizer = GDATA_AUTHORIZER (gdata_client_login_authorizer_new (CLIENT_ID, 
GDATA_TYPE_PICASAWEB_SERVICE));
-               gdata_client_login_authorizer_authenticate (GDATA_CLIENT_LOGIN_AUTHORIZER (authorizer), 
PW_USERNAME, PASSWORD, NULL, NULL);
-
-               service = GDATA_SERVICE (gdata_picasaweb_service_new (authorizer));
-
-               g_test_add_func ("/picasaweb/authentication", test_authentication);
-               g_test_add ("/picasaweb/authentication/async", GDataAsyncTestData, NULL, 
gdata_set_up_async_test_data, test_authentication_async,
-                           gdata_tear_down_async_test_data);
-               g_test_add ("/picasaweb/authentication/async/cancellation", GDataAsyncTestData, NULL, 
gdata_set_up_async_test_data,
-                           test_authentication_async_cancellation, gdata_tear_down_async_test_data);
-
-               g_test_add ("/picasaweb/query/all_albums", QueryAllAlbumsData, service, 
set_up_query_all_albums, test_query_all_albums,
-                           tear_down_query_all_albums);
-               g_test_add ("/picasaweb/query/all_albums/with_limits", QueryAllAlbumsData, service, 
set_up_query_all_albums,
-                           test_query_all_albums_with_limits, tear_down_query_all_albums);
-               g_test_add ("/picasaweb/query/all_albums/async", GDataAsyncTestData, service, 
set_up_query_all_albums_async,
-                           test_query_all_albums_async, tear_down_query_all_albums_async);
-               g_test_add ("/picasaweb/query/all_albums/async/progress_closure", QueryAllAlbumsData, 
service, set_up_query_all_albums,
-                           test_query_all_albums_async_progress_closure, tear_down_query_all_albums);
-               g_test_add ("/picasaweb/query/all_albums/async/cancellation", GDataAsyncTestData, service, 
set_up_query_all_albums_async,
-                           test_query_all_albums_async_cancellation, tear_down_query_all_albums_async);
-               g_test_add_data_func ("/picasaweb/query/all_albums/bad_query", service, 
test_query_all_albums_bad_query);
-               g_test_add_data_func ("/picasaweb/query/all_albums/bad_query/with_limits", service, 
test_query_all_albums_bad_query_with_limits);
-
-               g_test_add_data_func ("/picasaweb/query/user", service, test_query_user);
-               g_test_add ("/picasaweb/query/user/async", GDataAsyncTestData, service, 
gdata_set_up_async_test_data, test_query_user_async,
-                           gdata_tear_down_async_test_data);
-               g_test_add ("/picasaweb/query/user/async/cancellation", GDataAsyncTestData, service, 
gdata_set_up_async_test_data,
-                           test_query_user_async_cancellation, gdata_tear_down_async_test_data);
-               g_test_add ("/picasaweb/query/user/by-username/async", GDataAsyncTestData, service, 
gdata_set_up_async_test_data,
-                           test_query_user_by_username_async, gdata_tear_down_async_test_data);
-               g_test_add ("/picasaweb/query/user/by-username/async/cancellation", GDataAsyncTestData, 
service, gdata_set_up_async_test_data,
-                           test_query_user_by_username_async_cancellation, gdata_tear_down_async_test_data);
-
-               g_test_add ("/picasaweb/insert/album", InsertAlbumData, service, set_up_insert_album, 
test_insert_album, tear_down_insert_album);
-               g_test_add ("/picasaweb/insert/album/async", GDataAsyncTestData, service, 
set_up_insert_album_async, test_insert_album_async,
-                           tear_down_insert_album_async);
-               g_test_add ("/picasaweb/insert/album/async/cancellation", GDataAsyncTestData, service, 
set_up_insert_album_async,
-                           test_insert_album_async_cancellation, tear_down_insert_album_async);
-
-               g_test_add ("/picasaweb/query/files", QueryFilesData, service, set_up_query_files, 
test_query_files, tear_down_query_files);
-               g_test_add ("/picasaweb/query/files/async", GDataAsyncTestData, service, 
set_up_query_files_async, test_query_files_async,
-                           tear_down_query_files_async);
-               g_test_add ("/picasaweb/query/files/async/progress_closure", QueryFilesData, service, 
set_up_query_files,
-                           test_query_files_async_progress_closure, tear_down_query_files);
-               g_test_add ("/picasaweb/query/files/async/cancellation", GDataAsyncTestData, service, 
set_up_query_files_async,
-                           test_query_files_async_cancellation, tear_down_query_files_async);
-               g_test_add ("/picasaweb/query/files/single", QueryFilesData, service, set_up_query_files, 
test_query_files_single,
-                           tear_down_query_files);
-
-               g_test_add ("/picasaweb/comment/query", QueryCommentsData, service, set_up_query_comments, 
test_comment_query,
-                           tear_down_query_comments);
-               g_test_add ("/picasaweb/comment/query/async", GDataAsyncTestData, service, 
set_up_query_comments_async, test_comment_query_async,
-                           tear_down_query_comments_async);
-               g_test_add ("/picasaweb/comment/query/async/cancellation", GDataAsyncTestData, service, 
set_up_query_comments_async,
-                           test_comment_query_async_cancellation, tear_down_query_comments_async);
-               g_test_add ("/picasaweb/comment/query/progress_closure", QueryCommentsData, service, 
set_up_query_comments,
-                           test_comment_query_async_progress_closure, tear_down_query_comments);
-
-               g_test_add ("/picasaweb/comment/insert", InsertCommentData, service, set_up_insert_comment, 
test_comment_insert,
-                           tear_down_insert_comment);
-               g_test_add ("/picasaweb/comment/insert/async", GDataAsyncTestData, service, 
set_up_insert_comment_async, test_comment_insert_async,
-                           tear_down_insert_comment_async);
-               g_test_add ("/picasaweb/comment/insert/async/cancellation", GDataAsyncTestData, service, 
set_up_insert_comment_async,
-                           test_comment_insert_async_cancellation, tear_down_insert_comment_async);
-
-               g_test_add ("/picasaweb/comment/delete", QueryCommentsData, service, set_up_query_comments, 
test_comment_delete,
-                           tear_down_query_comments);
-               g_test_add ("/picasaweb/comment/delete/async", GDataAsyncTestData, service, 
set_up_query_comments_async, test_comment_delete_async,
-                           tear_down_query_comments_async);
-               g_test_add ("/picasaweb/comment/delete/async/cancellation", GDataAsyncTestData, service, 
set_up_query_comments_async,
-                           test_comment_delete_async_cancellation, tear_down_query_comments_async);
-
-               g_test_add ("/picasaweb/upload/default_album", UploadData, service, set_up_upload, 
test_upload_default_album, tear_down_upload);
-               g_test_add ("/picasaweb/upload/default_album/async", GDataAsyncTestData, service, 
set_up_upload_async, test_upload_default_album_async,
-                           tear_down_upload_async);
-               g_test_add ("/picasaweb/upload/default_album/async/cancellation", GDataAsyncTestData, 
service, set_up_upload_async,
-                           test_upload_default_album_async_cancellation, tear_down_upload_async);
-
-               g_test_add ("/picasaweb/download/photo", QueryFilesData, service, set_up_query_files, 
test_download_photo, tear_down_query_files);
-               g_test_add ("/picasaweb/download/thumbnails", QueryFilesData, service, set_up_query_files, 
test_download_thumbnails,
-                           tear_down_query_files);
-       }
+       mock_server = gdata_test_get_mock_server ();
+       trace_directory = g_file_new_for_path ("traces/picasaweb");
+       gdata_mock_server_set_trace_directory (mock_server, trace_directory);
+       g_object_unref (trace_directory);
+
+       gdata_test_mock_server_start_trace (mock_server, "global-authentication");
+       authorizer = GDATA_AUTHORIZER (gdata_client_login_authorizer_new (CLIENT_ID, 
GDATA_TYPE_PICASAWEB_SERVICE));
+       gdata_client_login_authorizer_authenticate (GDATA_CLIENT_LOGIN_AUTHORIZER (authorizer), PW_USERNAME, 
PASSWORD, NULL, NULL);
+       gdata_mock_server_end_trace (mock_server);
+
+       service = GDATA_SERVICE (gdata_picasaweb_service_new (authorizer));
+
+       g_test_add_func ("/picasaweb/authentication", test_authentication);
+       g_test_add ("/picasaweb/authentication/async", GDataAsyncTestData, NULL, 
gdata_set_up_async_test_data, test_authentication_async,
+                   gdata_tear_down_async_test_data);
+       g_test_add ("/picasaweb/authentication/async/cancellation", GDataAsyncTestData, NULL, 
gdata_set_up_async_test_data,
+                   test_authentication_async_cancellation, gdata_tear_down_async_test_data);
+
+       g_test_add ("/picasaweb/query/all_albums", QueryAllAlbumsData, service, set_up_query_all_albums, 
test_query_all_albums,
+                   tear_down_query_all_albums);
+       g_test_add ("/picasaweb/query/all_albums/with_limits", QueryAllAlbumsData, service, 
set_up_query_all_albums,
+                   test_query_all_albums_with_limits, tear_down_query_all_albums);
+       g_test_add ("/picasaweb/query/all_albums/async", GDataAsyncTestData, service, 
set_up_query_all_albums_async,
+                   test_query_all_albums_async, tear_down_query_all_albums_async);
+       g_test_add ("/picasaweb/query/all_albums/async/progress_closure", QueryAllAlbumsData, service, 
set_up_query_all_albums,
+                   test_query_all_albums_async_progress_closure, tear_down_query_all_albums);
+       g_test_add ("/picasaweb/query/all_albums/async/cancellation", GDataAsyncTestData, service, 
set_up_query_all_albums_async,
+                   test_query_all_albums_async_cancellation, tear_down_query_all_albums_async);
+       g_test_add_data_func ("/picasaweb/query/all_albums/bad_query", service, 
test_query_all_albums_bad_query);
+       g_test_add_data_func ("/picasaweb/query/all_albums/bad_query/with_limits", service, 
test_query_all_albums_bad_query_with_limits);
+       g_test_add_data_func ("/picasaweb/query/user", service, test_query_user);
+       g_test_add ("/picasaweb/query/user/async", GDataAsyncTestData, service, gdata_set_up_async_test_data, 
test_query_user_async,
+                   gdata_tear_down_async_test_data);
+       g_test_add ("/picasaweb/query/user/async/cancellation", GDataAsyncTestData, service, 
gdata_set_up_async_test_data,
+                   test_query_user_async_cancellation, gdata_tear_down_async_test_data);
+       g_test_add ("/picasaweb/query/user/by-username/async", GDataAsyncTestData, service, 
gdata_set_up_async_test_data,
+                   test_query_user_by_username_async, gdata_tear_down_async_test_data);
+       g_test_add ("/picasaweb/query/user/by-username/async/cancellation", GDataAsyncTestData, service, 
gdata_set_up_async_test_data,
+                   test_query_user_by_username_async_cancellation, gdata_tear_down_async_test_data);
+
+       g_test_add ("/picasaweb/insert/album", InsertAlbumData, service, set_up_insert_album, 
test_insert_album, tear_down_insert_album);
+       g_test_add ("/picasaweb/insert/album/async", GDataAsyncTestData, service, set_up_insert_album_async, 
test_insert_album_async,
+                   tear_down_insert_album_async);
+       g_test_add ("/picasaweb/insert/album/async/cancellation", GDataAsyncTestData, service, 
set_up_insert_album_async,
+                   test_insert_album_async_cancellation, tear_down_insert_album_async);
+
+       g_test_add ("/picasaweb/query/files", QueryFilesData, service, set_up_query_files, test_query_files, 
tear_down_query_files);
+       g_test_add ("/picasaweb/query/files/async", GDataAsyncTestData, service, set_up_query_files_async, 
test_query_files_async,
+                   tear_down_query_files_async);
+       g_test_add ("/picasaweb/query/files/async/progress_closure", QueryFilesData, service, 
set_up_query_files,
+                   test_query_files_async_progress_closure, tear_down_query_files);
+       g_test_add ("/picasaweb/query/files/async/cancellation", GDataAsyncTestData, service, 
set_up_query_files_async,
+                   test_query_files_async_cancellation, tear_down_query_files_async);
+       g_test_add ("/picasaweb/query/files/single", QueryFilesData, service, set_up_query_files, 
test_query_files_single,
+                   tear_down_query_files);
+
+       g_test_add ("/picasaweb/comment/query", QueryCommentsData, service, set_up_query_comments, 
test_comment_query,
+                   tear_down_query_comments);
+       g_test_add ("/picasaweb/comment/query/async", GDataAsyncTestData, service, 
set_up_query_comments_async, test_comment_query_async,
+                   tear_down_query_comments_async);
+       g_test_add ("/picasaweb/comment/query/async/cancellation", GDataAsyncTestData, service, 
set_up_query_comments_async,
+                   test_comment_query_async_cancellation, tear_down_query_comments_async);
+       g_test_add ("/picasaweb/comment/query/progress_closure", QueryCommentsData, service, 
set_up_query_comments,
+                   test_comment_query_async_progress_closure, tear_down_query_comments);
+
+       g_test_add ("/picasaweb/comment/insert", InsertCommentData, service, set_up_insert_comment, 
test_comment_insert,
+                   tear_down_insert_comment);
+       g_test_add ("/picasaweb/comment/insert/async", GDataAsyncTestData, service, 
set_up_insert_comment_async, test_comment_insert_async,
+                   tear_down_insert_comment_async);
+       g_test_add ("/picasaweb/comment/insert/async/cancellation", GDataAsyncTestData, service, 
set_up_insert_comment_async,
+                   test_comment_insert_async_cancellation, tear_down_insert_comment_async);
+
+       g_test_add ("/picasaweb/comment/delete", QueryCommentsData, service, set_up_query_comments, 
test_comment_delete,
+                   tear_down_query_comments);
+       g_test_add ("/picasaweb/comment/delete/async", GDataAsyncTestData, service, 
set_up_query_comments_async, test_comment_delete_async,
+                   tear_down_query_comments_async);
+       g_test_add ("/picasaweb/comment/delete/async/cancellation", GDataAsyncTestData, service, 
set_up_query_comments_async,
+                   test_comment_delete_async_cancellation, tear_down_query_comments_async);
+
+       g_test_add ("/picasaweb/upload/default_album", UploadData, service, set_up_upload, 
test_upload_default_album, tear_down_upload);
+       g_test_add ("/picasaweb/upload/default_album/async", GDataAsyncTestData, service, 
set_up_upload_async, test_upload_default_album_async,
+                   tear_down_upload_async);
+       g_test_add ("/picasaweb/upload/default_album/async/cancellation", GDataAsyncTestData, service, 
set_up_upload_async,
+                   test_upload_default_album_async_cancellation, tear_down_upload_async);
+
+       g_test_add ("/picasaweb/download/photo", QueryFilesData, service, set_up_query_files, 
test_download_photo, tear_down_query_files);
+       g_test_add ("/picasaweb/download/thumbnails", QueryFilesData, service, set_up_query_files, 
test_download_thumbnails,
+                   tear_down_query_files);
 
        g_test_add_func ("/picasaweb/album/new", test_album_new);
        g_test_add_func ("/picasaweb/album/escaping", test_album_escaping);
diff --git a/gdata/tests/traces/picasaweb/authentication b/gdata/tests/traces/picasaweb/authentication
new file mode 100644
index 0000000..5d4c5d4
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/authentication
@@ -0,0 +1,27 @@
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1375013812
+> Soup-Debug: SoupSession 1 (0x6673d0), SoupMessage 1 (0x9aa280), SoupSocket 1 (0x8a4170)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Epicasaweb%40gmail%2Ecom&Passwd=libgdata%2Dgdata&service=lh2&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375013812
+< Soup-Debug: SoupMessage 1 (0x9aa280)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Sun, 28 Jul 2013 12:16:52 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 947
+< Server: GSE
+< 
+< 
SID=DQAAANgAAAB6f0i4cZG8notHc2gg2TBrOCpuQj4LXCF9WxT89DpsagNCyFMm7Gj_Hi6_UAtKhM7FA92E6dVgsmSXIGcPVsm5OaEpAsHgqj15PdePm9ViKKIpzyR6lfY-OvmYntcqK-taGlk_uYjyX680C5tiHkJK7m5zitLxeuhxjSLHnFtYmVTZ-OSgBEFQAt0iUDU2ryd42LBFJCsc_AukMurdLnn6nppALc6IJkx6YDiNBoaVLpcjxb8QaLOiG9NmqVlxTa5yXDEb_XuwbMjaV6G4vpMkvpYjd0MCiD76zUSpiT6Xdw
+< 
LSID=DQAAANoAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKraIcEop4yjhO93tpUeGjoMeLAyk4i2ZqG3f7OOUWl3Dbgj_LT_B3dq8ABZud7cKiNfitIdofZR1LKsT4davc8c7ZRo5kPNqrnfErbvAO0Hl2lSOoftEAkvtWaj2_Z8HgqipqQGmM12xG056ES4sk8N6pbS4bH77ICLTBCAcgt-wwyxLljrK8ndce8QpxO4Qrs4KmTtBotOsIWowe8MzxHA4G9pcaWy8dWgtyGiSG4KdQ
+< 
Auth=DQAAANoAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hoy27SrFF5AD7FPPqEUDeUcyAkGoqHY6L4OhH94RP9EfzXVFB2VYe2iThE66atO5lih16iXqihu7-w7rBgnEyzeA
+  
diff --git a/gdata/tests/traces/picasaweb/authentication-async 
b/gdata/tests/traces/picasaweb/authentication-async
new file mode 100644
index 0000000..60f3d64
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/authentication-async
@@ -0,0 +1,27 @@
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1375013813
+> Soup-Debug: SoupSession 1 (0x6674e0), SoupMessage 1 (0x7fffe00252b0), SoupSocket 1 (0x7fffe00261a0)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Epicasaweb%40gmail%2Ecom&Passwd=libgdata%2Dgdata&service=lh2&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375013813
+< Soup-Debug: SoupMessage 1 (0x7fffe00252b0)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Sun, 28 Jul 2013 12:16:53 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 947
+< Server: GSE
+< 
+< 
SID=DQAAANgAAACXLuT3e-lR-nqbu6fHTAY4sR1HDcZVVtNRRvUn33cSP2OECigMrW5TIde9KCZPF03ZkQjrlkQw9m_Ddo59iHIEkGg6jIBZPas2SpyAzWh3JVV5nde_swwVpgQJvnzZLw054oS8gIipTiIKpK8avH8cXlnP9X-IOL0pYK0w6mEHjzwOP4xISogY2yW31qCBOn4418DHQ3r7lWrpZXVeyD5Csmh5mlOm42sp31uTrDErekk4GsEknBFKM95Gxr9Cb08T919_TZRxqxeC4Vc3reogth9M2yhLGNgq2gnVhnVhbA
+< 
LSID=DQAAANoAAAAXqQygxOTT_DSMv72QkovNy0XD_0fDL-4yOrdPxJiuWTUTEfuNpkx1SZH41O_izcXWWeho6klsetrTQG_pYnQvIpy4-afvlttSkX8jr9Ox-P6ZWHb65IZKtX4L78-5AeTqc_y5Q4qO67Bc8_4ITnenxgDpmVGFzMlSUfgqLeKVn5R9n8Xc83pZ-T5nWzi341LCTL-V7_ClS_XtK__HG_vYHR2h_I80-I62GtNgPNXB6WTzOHzGWaqrG-LV_Fm3zkPc0PMu8ddNMfQuiE2Op5zpNYEMp3TZNvrvIGvbl5_3fw
+< 
Auth=DQAAANoAAAAXqQygxOTT_DSMv72QkovNy0XD_0fDL-4yOrdPxJiuWTUTEfuNpkx1SZH41O_izcX-K2FMOSXE9yrMkc8nDAipmGn7Dw6C0nTAs2qxxzrVxCsvQtImGhM19_45F-6okFs8lTzZqn_iiyRe6omwYjXQCjdbr6bvisrCyo7IVzXrtTTP-dQEiXJQPUfFsV3l7KEmfsBwmkw_67qujHqretpk_3WC1USkbMgVZ_yn4tF8fQRiybumqNdMf4OCEhCoyf_lu8rHILabCmtDqu1BDW9J4TQXgRkzvALVUz2vvjaBFw
+  
diff --git a/gdata/tests/traces/picasaweb/global-authentication 
b/gdata/tests/traces/picasaweb/global-authentication
new file mode 100644
index 0000000..9ccecde
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/global-authentication
@@ -0,0 +1,27 @@
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1375013812
+> Soup-Debug: SoupSession 1 (0x6671b0), SoupMessage 1 (0x9aa0a0), SoupSocket 1 (0x8a40b0)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Epicasaweb%40gmail%2Ecom&Passwd=libgdata%2Dgdata&service=lh2&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375013812
+< Soup-Debug: SoupMessage 1 (0x9aa0a0)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Sun, 28 Jul 2013 12:16:52 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 947
+< Server: GSE
+< 
+< 
SID=DQAAANgAAAB6f0i4cZG8notHc2gg2TBrOCpuQj4LXCF9WxT89DpsagNCyFMm7Gj_Hi6_UAtKhM7FA92E6dVgsmSXIGcPVsm5OaEpAsHgqj15PdePm9ViKKIpzyR6lfY-OvmYntcqK-taGlk_uYjyX680C5tiHkJK7m5zitLxeuhxjSLHnFtYmVTZ-OSgBEFQAt0iUDU2ryd42LBFJCsc_AukMurdLnn6ZYKwah-06tnIvQBaXUPixNfkr9oPPAYQCwOh08vwLHw6yqdwMhbDJiz0xzDxD7s-8SJpqS6FiQqgI0jfm7abOg
+< 
LSID=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKraIcEop4yjhO93tpUeGjoMeLAyk4i2ZqG3f7OOUWl3Dbgj_LT_B3dq8ABZud7cKiNfitIdofZR1LKsT4davc8c7ZRo5kPNqrnfErbvAO0Hl2lSOoftEAkvtWaj2_Z8HgqipqQGmM12xG056ES4sk8N06c2uNXGVcQr1Ue9li2uuuGyOKJFqw8FAfDAxcN39XPtbNne4QgotHuI5S7VmLcpxMpbiQPBg3pWCMYHOCsKuA
+< 
Auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+  
diff --git a/gdata/tests/traces/picasaweb/insert-album b/gdata/tests/traces/picasaweb/insert-album
new file mode 100644
index 0000000..92cdddc
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/insert-album
@@ -0,0 +1,64 @@
+> POST /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375013863
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 61 (0x7fffe00250d0), SoupSocket 28 (0x8a45f0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title 
type='text'>Thanksgiving photos</title><summary type='text'>Family photos of the 
feast!</summary><rights>private</rights><category term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:location>Winnipeg, 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Thanksgiving photos</media:title><media:description type='plain'>Family photos of the 
feast!</media:description></media:group></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375013864
+< Soup-Debug: SoupMessage 61 (0x7fffe00250d0)
+< Expires: Sun, 28 Jul 2013 12:17:44 GMT
+< Date: Sun, 28 Jul 2013 12:17:44 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=TdLthJaHGShF; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=sakOzQCqp3RAQ5OCe8lkeA; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639574681203057?authkey=Gv1sRgCNeW8MuikuqSDw
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639574681203057?authkey=Gv1sRgCNeW8MuikuqSDw
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639574681203057</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:17:43.663Z</updated><app:edited>2013-07-28T12:17:43.663Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639574681203057?authkey=Gv1sRgCNeW8MuikuqSDw'/><link
 rel='alternate' type='text/
 html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos74?authkey=Gv1sRgCNeW8MuikuqSDw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639574681203057?authkey=Gv1sRgCNeW8MuikuqSDw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639574681203057?authkey=Gv1sRgCNeW8MuikuqSDw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639574681203057/acl?authkey=Gv1sRgCNeW8MuikuqSDw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639574681203057</gphoto:id><gphoto:name>ThanksgivingPhotos74</gphoto:name><gphoto:location>Winnipeg,
 MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:tim
 
estamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-5bujUocHWzs/UfUL51xcsXE/AAAAAAAAMJw/2ZbmxYOi4k4/ThanksgivingPhotos74.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-5bujUocHWzs/UfUL51xcsXE/AAAAAAAAMJw/2ZbmxYOi4k4/s160-c/ThanksgivingPhotos74.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving photos</media:title></media:group></entry>
+  
+> GET /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375013864
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 62 (0x7fffe0025670), SoupSocket 28 (0x8a45f0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375013864
+< Soup-Debug: SoupMessage 62 (0x7fffe0025670)
+< Expires: Sun, 28 Jul 2013 12:17:44 GMT
+< Date: Sun, 28 Jul 2013 12:17:44 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=2ofdSgnD9GBh; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=l7jIwK4ioQK4eyp9hXQ5HQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CU8CQng9eyp7ImA9WhFWEEw."
+< Last-Modified: Sun, 28 Jul 2013 12:17:43 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CU8CQng9eyp7ImA9WhFWEEw.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-28T12:17:43.663Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>35</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:
 
itemsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905637904987587057</id><published>2013-07-28T12:11:14.000Z</published><updated>2013-07-28T12:11:14.897Z</updated><app:edited>2013-07-28T12:11:14.897Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google.com/
 data/feed/api/user/libgdata.picasaweb/albumid/5905637904987587057?authkey=Gv1sRgCO3l3Iv359a_NA'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles22?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637904987587057?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637904987587057?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637904987587057/acl?authkey=Gv1sRgCO3l3Iv359a_NA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905637904987587057</gphoto:id><gphoto:n
 
ame>TestAlbumForQueryFiles22</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013474000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-E22LuaZ2ZVE/UfUKYpreAfE/AAAAAAAAMHM/wUIafPZkKlM/TestAlbumForQueryFiles22.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-E22LuaZ2ZVE/UfUKYpreAfE/AAAAAAAAMHM/wUIafPZkKlM/s160-c/TestAlbumForQueryFiles22.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/
 
entry/user/libgdata.picasaweb/albumid/5905635064104222385</id><published>2013-07-28T12:00:12.000Z</published><updated>2013-07-28T12:00:13.067Z</updated><app:edited>2013-07-28T12:00:13.067Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635064104222385?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles21?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635064104222385?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='edit' type='application/atom+xml' href='https://picasa
 
web.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635064104222385?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635064104222385/acl?authkey=Gv1sRgCN2f-tLrn6u20gE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635064104222385</gphoto:id><gphoto:name>TestAlbumForQueryFiles21</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375012812000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh3.googleusercontent.com/-gdDQDMYGH_E/UfUHzSkF_rE/AAAAAAAAMBI/kQ
 IzvG3cSQs/TestAlbumForQueryFiles21.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-gdDQDMYGH_E/UfUHzSkF_rE/AAAAAAAAMBI/kQIzvG3cSQs/s160-c/TestAlbumForQueryFiles21.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905634684141771345</id><published>2013-07-28T11:57:49.000Z</published><updated>2013-07-28T11:58:44.594Z</updated><app:edited>2013-07-28T11:58:44.594Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picas
 
aweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905634684141771345?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums18?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634684141771345?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634684141771345?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634684141771345/acl?authkey=Gv1sRgCKq9yeTElsz-uwE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>59056346841417
 
71345</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums18</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375012669000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-O-Wcn8SfT10/UfUHdLF_GlE/AAAAAAAAL98/EmD4-Bu78rI/TestAlbum2ForQueryAllAlbums18.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-O-Wcn8SfT10/UfUHdLF_GlE/AAAAAAAAL98/EmD4-Bu78rI/s160-c/TestAlbum2ForQueryAllAlbums18.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for 
QueryAllAlbums</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI
 
.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905634444921273185</id><published>2013-07-28T11:57:48.000Z</published><updated>2013-07-28T11:57:48.534Z</updated><app:edited>2013-07-28T11:57:48.534Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905634444921273185?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums20?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634444921273185?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 r
 el='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634444921273185?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634444921273185/acl?authkey=Gv1sRgCID4oobz9aPCrAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905634444921273185</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums20</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375012668000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh
 4.googleusercontent.com/-51tuKhkL2wA/UfUHPP7X-2E/AAAAAAAAL94/bLrA3RL2Pbk/TestAlbum1ForQueryAllAlbums20.jpg' 
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-51tuKhkL2wA/UfUHPP7X-2E/AAAAAAAAL94/bLrA3RL2Pbk/s160-c/TestAlbum1ForQueryAllAlbums20.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905631091580133985</id><published>2013-07-28T11:44:48.000Z</published><updated>2013-07-28T11:44:48.376Z</updated><app:edited>2013-07-28T11:44:48.376Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schema
 s.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles20?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905631091580133985/acl?authkey=Gv1sRgCIuFurSynOKIeQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google
 
.com/libgdata.picasaweb</uri></author><gphoto:id>5905631091580133985</gphoto:id><gphoto:name>TestAlbumForQueryFiles20</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375011888000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-TVDcmOZrysI/UfUEMDwi4mE/AAAAAAAAL64/wrBf3Cdp9po/TestAlbumForQueryFiles20.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-TVDcmOZrysI/UfUEMDwi4mE/AAAAAAAAL64/wrBf3Cdp9po/s160-c/TestAlbumForQueryFiles20.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for QueryFiles</media:title></media:g
 roup></entry><entry 
gd:etag='&quot;YDkqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5761072391095671425</id><published>2012-07-03T22:23:08.000Z</published><updated>2013-05-11T05:42:42.362Z</updated><app:edited>2013-05-11T05:42:42.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5761072391095671425?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles19?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761072391095671425?authkey=
 Gv1sRgCNb_ofXV98b6pQE'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761072391095671425?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761072391095671425/acl?authkey=Gv1sRgCNb_ofXV98b6pQE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5761072391095671425</gphoto:id><gphoto:name>TestAlbumForQueryFiles19</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341354188000</gphoto:timestamp><gphoto:numphotos>2</gphoto:numphotos><gphoto:numphotosremaining>998</gphoto:numphotosremaining><gphoto:bytesUsed>35320</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><
 media:content 
url='https://lh4.googleusercontent.com/-3IaCTkfHZrg/T_Nw0PSRWoE/AAAAAAAALVs/qfty_7d7PrQ/TestAlbumForQueryFiles19.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-3IaCTkfHZrg/T_Nw0PSRWoE/AAAAAAAALVs/qfty_7d7PrQ/s160-c/TestAlbumForQueryFiles19.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDgqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5761069990379874001</id><published>2012-07-03T22:13:49.000Z</published><updated>2013-05-11T05:42:40.361Z</updated><app:edited>2013-05-11T05:42:40.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='
 http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5761069990379874001?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles18?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761069990379874001?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761069990379874001?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761069990379874001/acl?authkey=Gv1sRgCM71qOr5vt_WBQ'/><author><name>libgdata.picasaweb</name><uri>https://pic
 
asaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5761069990379874001</gphoto:id><gphoto:name>TestAlbumForQueryFiles18</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341353629000</gphoto:timestamp><gphoto:numphotos>1</gphoto:numphotos><gphoto:numphotosremaining>999</gphoto:numphotosremaining><gphoto:bytesUsed>17660</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-_CMpenfeUws/T_Nuof7BZtE/AAAAAAAALG0/XJQcX_I44n0/TestAlbumForQueryFiles18.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-_CMpenfeUws/T_Nuof7BZtE/AAAAAAAALG0/XJQcX_I44n0/s160-c/TestAlbumForQueryFiles18.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for QueryFiles</media
 :title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5760704378574247089</id><published>2012-07-02T22:35:07.000Z</published><updated>2013-05-11T05:42:36.362Z</updated><app:edited>2013-05-11T05:42:36.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5760704378574247089?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles16?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/57607043785742
 47089?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760704378574247089?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760704378574247089/acl?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5760704378574247089</gphoto:id><gphoto:name>TestAlbumForQueryFiles16</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341268507000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><me
 dia:group><media:content 
url='https://lh6.googleusercontent.com/-lHmWO-UBQRw/T_IiHFz0lLE/AAAAAAAAKe4/AQqY9p2QfsA/TestAlbumForQueryFiles16.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-lHmWO-UBQRw/T_IiHFz0lLE/AAAAAAAAKe4/AQqY9p2QfsA/s160-c/TestAlbumForQueryFiles16.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDoqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5759113833317391041</id><published>2012-06-28T15:42:44.000Z</published><updated>2013-05-11T05:42:32.362Z</updated><app:edited>2013-05-11T05:42:32.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights>
 <link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5759113833317391041?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles14?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5759113833317391041?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5759113833317391041?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5759113833317391041/acl?authkey=Gv1sRgCJW--rmMwM3d4QE'/><author><name>libgdata.picasaweb</name>
 
<uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5759113833317391041</gphoto:id><gphoto:name>TestAlbumForQueryFiles14</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1340898164000</gphoto:timestamp><gphoto:numphotos>3</gphoto:numphotos><gphoto:numphotosremaining>997</gphoto:numphotosremaining><gphoto:bytesUsed>52980</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-VC-g0Oz6ZLY/T-x7hK_r2sE/AAAAAAAAKTE/Hv-2oC9b31I/TestAlbumForQueryFiles14.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-VC-g0Oz6ZLY/T-x7hK_r2sE/AAAAAAAAKTE/Hv-2oC9b31I/s160-c/TestAlbumForQueryFiles14.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for Q
 ueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5757505389449675537</id><published>2012-06-24T07:41:17.000Z</published><updated>2013-05-11T05:42:30.361Z</updated><app:edited>2013-05-11T05:42:30.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5757505389449675537?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles13?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumi
 d/5757505389449675537?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757505389449675537?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757505389449675537/acl?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5757505389449675537</gphoto:id><gphoto:name>TestAlbumForQueryFiles13</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1340523677000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gph
 oto:nickname><media:group><media:content 
url='https://lh6.googleusercontent.com/-Jn0C3tOdK78/T-bEpaqLgxE/AAAAAAAAKPk/gxGcgtizd1I/TestAlbumForQueryFiles13.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Jn0C3tOdK78/T-bEpaqLgxE/AAAAAAAAKPk/gxGcgtizd1I/s160-c/TestAlbumForQueryFiles13.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5757504621534543681</id><published>2012-06-24T07:38:18.000Z</published><updated>2013-05-11T05:42:28.362Z</updated><app:edited>2013-05-11T05:42:28.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for QueryFiles</title><summary/><rights>
 private</rights><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5757504621534543681?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles12?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757504621534543681?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757504621534543681?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757504621534543681/acl?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><author><name>libgdata.picas
 
aweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5757504621534543681</gphoto:id><gphoto:name>TestAlbumForQueryFiles12</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1340523498000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-ud4Tyk1ot80/T-bD8t88f0E/AAAAAAAAKMc/yLbDw9n8a_A/TestAlbumForQueryFiles12.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-ud4Tyk1ot80/T-bD8t88f0E/AAAAAAAAKMc/yLbDw9n8a_A/s160-c/TestAlbumForQueryFiles12.jpg'
 height='160' width='160'/><media:title type='plain'>Test 
 album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753929134212548337</id><published>2012-06-14T16:23:38.000Z</published><updated>2013-05-11T05:42:26.362Z</updated><app:edited>2013-05-11T05:42:26.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753929134212548337?authkey=Gv1sRgCJvFuebTieC7-wE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles11?authkey=Gv1sRgCJvFuebTieC7-wE'/><link
 rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/libgdata.pic
 asaweb/albumid/5753929134212548337?authkey=Gv1sRgCJvFuebTieC7-wE'/><link rel='edit' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753929134212548337?authkey=Gv1sRgCJvFuebTieC7-wE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753929134212548337/acl?authkey=Gv1sRgCJvFuebTieC7-wE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753929134212548337</gphoto:id><gphoto:name>TestAlbumForQueryFiles11</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339691018000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdat
 a.picasaweb</gphoto:nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-ejI_vobZ1Ds/T9oQD9uChvE/AAAAAAAAKIg/lQKE_z9GplE/TestAlbumForQueryFiles11.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-ejI_vobZ1Ds/T9oQD9uChvE/AAAAAAAAKIg/lQKE_z9GplE/s160-c/TestAlbumForQueryFiles11.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753922778648887201</id><published>2012-06-14T15:58:59.000Z</published><updated>2013-05-11T05:42:24.361Z</updated><app:edited>2013-05-11T05:42:24.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for QueryFiles</title><s
 ummary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753922778648887201?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles10?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753922778648887201?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753922778648887201?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753922778648887201/acl?authkey=Gv1sRgCJGelsSrkob2Kg'/><author><nam
 
e>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753922778648887201</gphoto:id><gphoto:name>TestAlbumForQueryFiles10</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339689539000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-NC_89o6Ov1I/T9oKSBZlP6E/AAAAAAAAKE4/KmM1aPTC7mk/TestAlbumForQueryFiles10.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NC_89o6Ov1I/T9oKSBZlP6E/AAAAAAAAKE4/KmM1aPTC7mk/s160-c/TestAlbumForQueryFiles10.jpg'
 height='160' width='160'/><media:title ty
 pe='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753917582035390849</id><published>2012-06-14T15:38:49.000Z</published><updated>2013-05-11T05:42:22.362Z</updated><app:edited>2013-05-11T05:42:22.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753917582035390849?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles09?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link
 rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/use
 r/libgdata.picasaweb/albumid/5753917582035390849?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link rel='edit' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753917582035390849?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753917582035390849/acl?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753917582035390849</gphoto:id><gphoto:name>TestAlbumForQueryFiles09</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339688329000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickn
 ame>libgdata.picasaweb</gphoto:nickname><media:group><media:content 
url='https://lh4.googleusercontent.com/-qxwST4CVdvE/T9oFjigYEYE/AAAAAAAAKBE/fpCYLGA-oZg/TestAlbumForQueryFiles09.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-qxwST4CVdvE/T9oFjigYEYE/AAAAAAAAKBE/fpCYLGA-oZg/s160-c/TestAlbumForQueryFiles09.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753916884198822849</id><published>2012-06-14T15:36:07.000Z</published><updated>2013-05-11T05:42:20.361Z</updated><app:edited>2013-05-11T05:42:20.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for QueryFile
 s</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753916884198822849?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles08?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916884198822849?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916884198822849?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916884198822849/acl?authkey=Gv1sRgCLuR2oy73OHvaw'/><
 
author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753916884198822849</gphoto:id><gphoto:name>TestAlbumForQueryFiles08</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339688167000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-FOxdF0LPDhA/T9oE663LE8E/AAAAAAAAJ9g/hTGNXOeBiTU/TestAlbumForQueryFiles08.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-FOxdF0LPDhA/T9oE663LE8E/AAAAAAAAJ9g/hTGNXOeBiTU/s160-c/TestAlbumForQueryFiles08.jpg'
 height='160' width='160'/><med
 ia:title type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753916203664692769</id><published>2012-06-14T15:33:29.000Z</published><updated>2013-05-11T05:42:18.362Z</updated><app:edited>2013-05-11T05:42:18.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753916203664692769?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles07?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link
 rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/en
 try/api/user/libgdata.picasaweb/albumid/5753916203664692769?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link rel='edit' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916203664692769?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916203664692769/acl?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753916203664692769</gphoto:id><gphoto:name>TestAlbumForQueryFiles07</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339688009000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><g
 photo:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-tB_pI_r6ZtY/T9oETTrMViE/AAAAAAAAJ58/hxxcJ6W5eYA/TestAlbumForQueryFiles07.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-tB_pI_r6ZtY/T9oETTrMViE/AAAAAAAAJ58/hxxcJ6W5eYA/s160-c/TestAlbumForQueryFiles07.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753915421170356833</id><published>2012-06-14T15:30:27.000Z</published><updated>2013-05-11T05:42:16.362Z</updated><app:edited>2013-05-11T05:42:16.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album fo
 r QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753915421170356833?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles06?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753915421170356833?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753915421170356833?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753915421170356833/acl?authkey=Gv1sRgCJaq_Ze
 
Wr5zTDA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753915421170356833</gphoto:id><gphoto:name>TestAlbumForQueryFiles06</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339687827000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-cEi8DqY4EMA/T9oDlwqAUmE/AAAAAAAAJ2U/CQsgVJCWVLY/TestAlbumForQueryFiles06.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-cEi8DqY4EMA/T9oDlwqAUmE/AAAAAAAAJ2U/CQsgVJCWVLY/s160-c/TestAlbumForQueryFiles06.jpg'
 height='160' width=
 '160'/><media:title type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753913257635658289</id><published>2012-06-14T15:22:02.000Z</published><updated>2013-05-11T05:42:14.361Z</updated><app:edited>2013-05-11T05:42:14.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753913257635658289?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles05?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='self' type='application/atom+xml' href='https://picasaweb.googl
 
e.com/data/entry/api/user/libgdata.picasaweb/albumid/5753913257635658289?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753913257635658289?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753913257635658289/acl?authkey=Gv1sRgCL715cypqrn54gE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753913257635658289</gphoto:id><gphoto:name>TestAlbumForQueryFiles05</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339687322000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb
 </gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content 
url='https://lh5.googleusercontent.com/-1cOVqarpanM/T9oBn03IujE/AAAAAAAAJyw/KxitT1LtH3g/TestAlbumForQueryFiles05.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-1cOVqarpanM/T9oBn03IujE/AAAAAAAAJyw/KxitT1LtH3g/s160-c/TestAlbumForQueryFiles05.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753909460100672145</id><published>2012-06-14T15:07:18.000Z</published><updated>2013-05-11T05:42:12.362Z</updated><app:edited>2013-05-11T05:42:12.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/><tit
 le>Test album for QueryFiles</title><summary/><rights>private</rights><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753909460100672145?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles04?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909460100672145?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909460100672145?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909460100672145/acl?a
 
uthkey=Gv1sRgCKuMk9vW3ubdygE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753909460100672145</gphoto:id><gphoto:name>TestAlbumForQueryFiles04</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339686438000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-cFWrSd8mpAY/T9n-Kx8PapE/AAAAAAAAJvE/ZeXQ8DRvZSs/TestAlbumForQueryFiles04.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-cFWrSd8mpAY/T9n-Kx8PapE/AAAAAAAAJvE/ZeXQ8DRvZSs/s160-c/TestAlbumForQueryFiles04.jpg
 ' height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753909201230338145</id><published>2012-06-14T15:06:17.000Z</published><updated>2013-05-11T05:42:10.362Z</updated><app:edited>2013-05-11T05:42:10.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753909201230338145?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles03?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='self' type='application/atom+xml' href='http
 
s://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909201230338145?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909201230338145?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909201230338145/acl?authkey=Gv1sRgCIW965XfrpvzFw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753909201230338145</gphoto:id><gphoto:name>TestAlbumForQueryFiles03</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339686377000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>li
 
bgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-Bmi14ws5AM0/T9n97tkvmGE/AAAAAAAAJrg/ysK_cWkLCy8/TestAlbumForQueryFiles03.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Bmi14ws5AM0/T9n97tkvmGE/AAAAAAAAJrg/ysK_cWkLCy8/s160-c/TestAlbumForQueryFiles03.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDoqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5731216873649428225</id><published>2012-04-14T11:28:32.000Z</published><updated>2013-05-11T05:42:08.361Z</updated><app:edited>2013-05-11T05:42:08.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2
 007#album'/><title>Test album for QueryFiles</title><summary/><rights>private</rights><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5731216873649428225?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles02?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5731216873649428225?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5731216873649428225?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5731216873649
 
428225/acl?authkey=Gv1sRgCKbgqrLhl-2zZA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5731216873649428225</gphoto:id><gphoto:name>TestAlbumForQueryFiles02</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1334402912000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-y_4o7bv_0g8/T4lfYZyZVwE/AAAAAAAAJn8/ugcSPsZG_2Y/TestAlbumForQueryFiles02.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-y_4o7bv_0g8/T4lfYZyZVwE/AAAAAAAAJn8/ugcSPsZG_2Y/s160-c/TestAlbumForQuery
 Files02.jpg' height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDoqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5656529313960281697</id><published>2011-09-26T05:01:26.000Z</published><updated>2013-05-11T05:42:06.361Z</updated><app:edited>2013-05-11T05:42:06.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5656529313960281697?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='self' type='application/atom+xml' h
 
ref='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656529313960281697?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656529313960281697?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656529313960281697/acl?authkey=Gv1sRgCMTFotGeweT6cg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5656529313960281697</gphoto:id><gphoto:name>TestAlbumForQueryFiles</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1317013286000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:
 
user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-6p9wKSiQbf8/ToAHcQQvxmE/AAAAAAAAI6g/WLzZSL61RzQ/TestAlbumForQueryFiles.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-6p9wKSiQbf8/ToAHcQQvxmE/AAAAAAAAI6g/WLzZSL61RzQ/s160-c/TestAlbumForQueryFiles.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;Xip7ImA_&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5656528945499827137</id><published>2011-09-26T05:01:15.000Z</published><updated>2013-05-11T05:42:04.362Z</updated><app:edited>2013-05-11T05:42:04.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photo
 s/2007#album'/><title>Drop Box</title><summary>Default album for newly uploaded 
photos.</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5656528945499827137?authkey=Gv1sRgCJimnOPo4qP_aA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/DropBox?authkey=Gv1sRgCJimnOPo4qP_aA'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656528945499827137?authkey=Gv1sRgCJimnOPo4qP_aA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656528945499827137?authkey=Gv1sRgCJimnOPo4qP_aA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/alb
 
umid/5656528945499827137/acl?authkey=Gv1sRgCJimnOPo4qP_aA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5656528945499827137</gphoto:id><gphoto:name>DropBox</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1317013275000</gphoto:timestamp><gphoto:numphotos>12</gphoto:numphotos><gphoto:numphotosremaining>988</gphoto:numphotosremaining><gphoto:bytesUsed>211920</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:albumType>Default</gphoto:albumType><media:group><media:content
 url='https://lh6.googleusercontent.com/-I1YjlfQG5kY/ToAHGzo7a8E/AAAAAAAALmQ/YeJ6gUuivA8/DropBox.jpg' 
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Default album for newly uploaded photos.</media:description><media:keywords/><media:thumbnail 
url='https://lh6.google
 usercontent.com/-I1YjlfQG5kY/ToAHGzo7a8E/AAAAAAAALmQ/YeJ6gUuivA8/s160-c/DropBox.jpg' height='160' 
width='160'/><media:title type='plain'>Drop Box</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5760706460596781425</id><published>2012-07-02T22:43:13.000Z</published><updated>2013-05-11T05:42:38.362Z</updated><app:edited>2013-05-11T05:42:38.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5760706460596781425?authkey=Gv1sRgCKDo4Mbw67DytQE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles17?authkey=Gv1sRgCKDo4
 Mbw67DytQE'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760706460596781425?authkey=Gv1sRgCKDo4Mbw67DytQE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760706460596781425?authkey=Gv1sRgCKDo4Mbw67DytQE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760706460596781425/acl?authkey=Gv1sRgCKDo4Mbw67DytQE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5760706460596781425</gphoto:id><gphoto:name>TestAlbumForQueryFiles17</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341268993000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numph
 
otosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-jCbAOlu4SwU/T_IkAR8rQXE/AAAAAAAAKs8/LMYVB0SQESc/TestAlbumForQueryFiles17.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-jCbAOlu4SwU/T_IkAR8rQXE/AAAAAAAAKs8/LMYVB0SQESc/s160-c/TestAlbumForQueryFiles17.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5760702986482787089</id><published>2012-07-02T22:29:44.000Z</published><updated>2013-05-11T05:42:34.361Z</updated><app:edited>2013-05-11T05:42:34.361Z</app:edited><category
 scheme='http://s
 chemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5760702986482787089?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles15?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760702986482787089?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760702986482787089?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.
 
google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760702986482787089/acl?authkey=Gv1sRgCKO5mpeQwZjDHg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5760702986482787089</gphoto:id><gphoto:name>TestAlbumForQueryFiles15</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341268184000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-y1OSyupQ3TI/T_Ig2D3WoxE/AAAAAAAAKbI/Jcqk_xxtj-U/TestAlbumForQueryFiles15.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh4.googleusercontent.com/-y
 1OSyupQ3TI/T_Ig2D3WoxE/AAAAAAAAKbI/Jcqk_xxtj-U/s160-c/TestAlbumForQueryFiles15.jpg' height='160' 
width='160'/><media:title type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905633591451744097</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T11:54:30.296Z</updated><app:edited>2013-07-28T11:54:30.296Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905633591451744097?authkey=Gv1sRgCJaWsta275GJzgE'/><link
 rel='alternate' type='text/html' href='https://picasaweb.google.com/libgdata.picasawe
 b/ThanksgivingPhotos55?authkey=Gv1sRgCJaWsta275GJzgE'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905633591451744097?authkey=Gv1sRgCJaWsta275GJzgE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905633591451744097?authkey=Gv1sRgCJaWsta275GJzgE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905633591451744097/acl?authkey=Gv1sRgCJaWsta275GJzgE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905633591451744097</gphoto:id><gphoto:name>ThanksgivingPhotos55</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphot
 
os>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-pmMLIzS2Aj4/UfUGdkgYd2E/AAAAAAAAL9s/2v2L2yYDmLQ/ThanksgivingPhotos55.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-pmMLIzS2Aj4/UfUGdkgYd2E/AAAAAAAAL9s/2v2L2yYDmLQ/s160-c/ThanksgivingPhotos55.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635041987434177</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12
 :00:08.375Z</updated><app:edited>2013-07-28T12:00:08.375Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635041987434177?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos59?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635041987434177?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635041987434177?authkey=Gv1sRgCOSa0dKV8
 uz3hwE'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635041987434177/acl?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635041987434177</gphoto:id><gphoto:name>ThanksgivingPhotos59</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-YTqHGHexKLY/UfUHyALClsE/AAAAAAAAMAw/Q5ZgS1NABNA/ThanksgivingPhotos59.jpg'
 type='image/jpeg' medium='image'/><media:cre
 dit>libgdata.picasaweb</media:credit><media:description type='plain'>Family photos of the 
feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-YTqHGHexKLY/UfUHyALClsE/AAAAAAAAMAw/Q5ZgS1NABNA/s160-c/ThanksgivingPhotos59.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635046618559681</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:09.368Z</updated><app:edited>2013-07-28T12:00:09.368Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google.com/data/fee
 d/api/user/libgdata.picasaweb/albumid/5905635046618559681?authkey=Gv1sRgCOqknJaSsdXxFA'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos61?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635046618559681?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635046618559681?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635046618559681/acl?authkey=Gv1sRgCOqknJaSsdXxFA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635046618559681</gphoto:id><gphoto:name>Thanksgi
 vingPhotos61</gphoto:name><gphoto:location>Winnipeg, 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-L4nk2EiXVJc/UfUHyRbL9ME/AAAAAAAAMA4/50NgPYLQv2U/ThanksgivingPhotos61.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-L4nk2EiXVJc/UfUHyRbL9ME/AAAAAAAAMA4/50NgPYLQv2U/s160-c/ThanksgivingPhotos61.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&
 
quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635048265698337</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:08.587Z</updated><app:edited>2013-07-28T12:00:08.587Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635048265698337?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos60?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635048265698337?authkey=Gv1sRgCPm6muuhnruL
 2AE'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635048265698337?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635048265698337/acl?authkey=Gv1sRgCPm6muuhnruL2AE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635048265698337</gphoto:id><gphoto:name>ThanksgivingPhotos60</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:gro
 up><media:content 
url='https://lh3.googleusercontent.com/-NgBV9nWzKgQ/UfUHyXj5TCE/AAAAAAAAMA0/gyOw1o0LsCc/ThanksgivingPhotos60.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NgBV9nWzKgQ/UfUHyXj5TCE/AAAAAAAAMA0/gyOw1o0LsCc/s160-c/ThanksgivingPhotos60.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635052696078545</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:09.696Z</updated><app:edited>2013-07-28T12:00:09.696Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family
  photos of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635052696078545?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos62?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635052696078545?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635052696078545?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635052696078545/acl?authkey=Gv1sRgCJ78iPjynM
 
P6bA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635052696078545</gphoto:id><gphoto:name>ThanksgivingPhotos62</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-dDzC8AUT39c/UfUHyoELiNE/AAAAAAAAMA8/iK9D08hMeZg/ThanksgivingPhotos62.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-dDzC8AUT39c/UfUHyoELiNE/AAAAAAAAMA8/iK9D08h
 MeZg/s160-c/ThanksgivingPhotos62.jpg' height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905636964804120545</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:07:35.751Z</updated><app:edited>2013-07-28T12:07:35.751Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905636964804120545?authkey=Gv1sRgCOPnh9WK0O-KGA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos67?authkey=Gv1sRgCOPnh9WK0O-KGA'/
<link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964804120545?authkey=Gv1sRgCOPnh9WK0O-KGA'/><link
rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964804120545?authkey=Gv1sRgCOPnh9WK0O-KGA'/><link
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964804120545/acl?authkey=Gv1sRgCOPnh9WK0O-KGA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905636964804120545</gphoto:id><gphoto:name>ThanksgivingPhotos67</gphoto:name><gphoto:location>Winnipeg,

MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</g
 
photo:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-URP8xignqeI/UfUJh7OQz-E/AAAAAAAAMEA/uOLQL8yxb8o/ThanksgivingPhotos67.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-URP8xignqeI/UfUJh7OQz-E/AAAAAAAAMEA/uOLQL8yxb8o/s160-c/ThanksgivingPhotos67.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905636964871966001</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:07:35.315Z</updated><app:edited>2013-07-28T12:07:35.315Z
 </app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905636964871966001?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos66?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964871966001?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964871966001?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='http://schemas.google.com/acl/2007#access
 ControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964871966001/acl?authkey=Gv1sRgCNqbzKuF-cCeLg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905636964871966001</gphoto:id><gphoto:name>ThanksgivingPhotos66</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-RKs5J2Fv4Xs/UfUJh7ecDTE/AAAAAAAAMD8/ShmhXZiX02k/ThanksgivingPhotos66.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description type='
 plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-RKs5J2Fv4Xs/UfUJh7ecDTE/AAAAAAAAMD8/ShmhXZiX02k/s160-c/ThanksgivingPhotos66.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905636968138062433</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:07:35.751Z</updated><app:edited>2013-07-28T12:07:35.751Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905636968138062433?auth
 key=Gv1sRgCPfTjKWOu7_sCg'/><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos68?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636968138062433?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636968138062433?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636968138062433/acl?authkey=Gv1sRgCPfTjKWOu7_sCg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905636968138062433</gphoto:id><gphoto:name>ThanksgivingPhotos68</gphoto:name><gphoto:location>Winnipeg,
 MN</gphot
 
o:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-wEsnbQ5ds-Q/UfUJiHpIumE/AAAAAAAAMEE/yJzlfrX0QnM/ThanksgivingPhotos68.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-wEsnbQ5ds-Q/UfUJiHpIumE/AAAAAAAAMEE/yJzlfrX0QnM/s160-c/ThanksgivingPhotos68.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgda
 
ta.picasaweb/albumid/5905637896892105825</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:11:12.157Z</updated><app:edited>2013-07-28T12:11:12.157Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905637896892105825?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos72?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637896892105825?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='edit' type='application/atom+xml' href='https://
 
picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637896892105825?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637896892105825/acl?authkey=Gv1sRgCKvL352GnPmJbw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905637896892105825</gphoto:id><gphoto:name>ThanksgivingPhotos72</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh3.googleusercontent.com/-Yp2EbjWQT
 qU/UfUKYLhWxGE/AAAAAAAAMHA/D3vQHf4qmGs/ThanksgivingPhotos72.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description type='plain'>Family photos 
of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-Yp2EbjWQTqU/UfUKYLhWxGE/AAAAAAAAMHA/D3vQHf4qmGs/s160-c/ThanksgivingPhotos72.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639574681203057</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:17:43.663Z</updated><app:edited>2013-07-28T12:17:43.663Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='h
 ttp://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639574681203057?authkey=Gv1sRgCNeW8MuikuqSDw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos74?authkey=Gv1sRgCNeW8MuikuqSDw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639574681203057?authkey=Gv1sRgCNeW8MuikuqSDw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639574681203057?authkey=Gv1sRgCNeW8MuikuqSDw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639574681203057/acl?authkey=Gv1sRgCNeW8MuikuqSDw'/><author><name>libgdata.picasaweb</name><uri>https://picasawe
 
b.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639574681203057</gphoto:id><gphoto:name>ThanksgivingPhotos74</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-5bujUocHWzs/UfUL51xcsXE/AAAAAAAAMJw/2ZbmxYOi4k4/ThanksgivingPhotos74.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-5bujUocHWzs/UfUL51xcsXE/AAAAAAAAMJw/2ZbmxYOi4k4/s160-c/ThanksgivingPhotos74.jpg'
 height='160' width='160'/><me
 dia:title type='plain'>Thanksgiving photos</media:title></media:group></entry></feed>
+  
diff --git a/gdata/tests/traces/picasaweb/insert-album-async b/gdata/tests/traces/picasaweb/insert-album-async
new file mode 100644
index 0000000..a0eeddb
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/insert-album-async
@@ -0,0 +1,34 @@
+> POST /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375013868
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 68 (0x7fffe00251c0), SoupSocket 32 (0x7fffe4017170)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title 
type='text'>Thanksgiving photos</title><summary type='text'>Family photos of the 
feast!</summary><rights>private</rights><category term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:location>Winnipeg, 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Thanksgiving photos</media:title><media:description type='plain'>Family photos of the 
feast!</media:description></media:group></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375013870
+< Soup-Debug: SoupMessage 68 (0x7fffe00251c0)
+< Expires: Sun, 28 Jul 2013 12:17:50 GMT
+< Date: Sun, 28 Jul 2013 12:17:50 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=13YVit1BcDCA; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=mFt7IDPGfWGISSlxAkMiAg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639602363627073?authkey=Gv1sRgCMm47L7KqunRHA
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639602363627073?authkey=Gv1sRgCMm47L7KqunRHA
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639602363627073</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:17:49.037Z</updated><app:edited>2013-07-28T12:17:49.037Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639602363627073?authkey=Gv1sRgCMm47L7KqunRHA'/><link
 rel='alternate' type='text/
 html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos77?authkey=Gv1sRgCMm47L7KqunRHA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639602363627073?authkey=Gv1sRgCMm47L7KqunRHA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639602363627073?authkey=Gv1sRgCMm47L7KqunRHA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639602363627073/acl?authkey=Gv1sRgCMm47L7KqunRHA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639602363627073</gphoto:id><gphoto:name>ThanksgivingPhotos77</gphoto:name><gphoto:location>Winnipeg,
 MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:tim
 
estamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-Gk0Iexp-0LE/UfUL7c5c9kE/AAAAAAAAMKE/5fyPbWdhPhI/ThanksgivingPhotos77.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Gk0Iexp-0LE/UfUL7c5c9kE/AAAAAAAAMKE/5fyPbWdhPhI/s160-c/ThanksgivingPhotos77.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving photos</media:title></media:group></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/query-all-albums b/gdata/tests/traces/picasaweb/query-all-albums
new file mode 100644
index 0000000..0b6a22d
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query-all-albums
@@ -0,0 +1,30 @@
+> GET /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375013817
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 5 (0x9aa0a0), SoupSocket 4 (0x8a4470)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375013817
+< Soup-Debug: SoupMessage 5 (0x9aa0a0)
+< Expires: Sun, 28 Jul 2013 12:16:57 GMT
+< Date: Sun, 28 Jul 2013 12:16:57 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=3gqYyfXnW-Qv; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=VsYfjbE30vomcBkcz1xlcw; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CU8FR30yeip7ImA9WhFWEEw."
+< Last-Modified: Sun, 28 Jul 2013 12:16:56 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CU8FR30yeip7ImA9WhFWEEw.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-28T12:16:56.392Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>38</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:
 
itemsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639371533391409</id><published>2013-07-28T12:16:56.000Z</published><updated>2013-07-28T12:16:56.392Z</updated><app:edited>2013-07-28T12:16:56.392Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.googl
 e.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639371533391409?authkey=Gv1sRgCNe-oNqWxPelIw'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums32?authkey=Gv1sRgCNe-oNqWxPelIw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639371533391409?authkey=Gv1sRgCNe-oNqWxPelIw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639371533391409?authkey=Gv1sRgCNe-oNqWxPelIw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639371533391409/acl?authkey=Gv1sRgCNe-oNqWxPelIw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639371533391409</gphoto:i
 
d><gphoto:name>TestAlbum4ForQueryAllAlbums32</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013816000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-RGt3U2CDD_c/UfULuA_PFjE/AAAAAAAAMHc/piGNWYqtg04/TestAlbum4ForQueryAllAlbums32.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-RGt3U2CDD_c/UfULuA_PFjE/AAAAAAAAMHc/piGNWYqtg04/s160-c/TestAlbum4ForQueryAllAlbums32.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><id>ht
 
tps://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639367278242849</id><published>2013-07-28T12:16:55.000Z</published><updated>2013-07-28T12:16:55.644Z</updated><app:edited>2013-07-28T12:16:55.644Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639367278242849?authkey=Gv1sRgCKv8k9Crld_M_AE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums33?authkey=Gv1sRgCKv8k9Crld_M_AE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639367278242849?authkey=Gv1sRgCKv8k9Crld_M_AE'/><link
 rel='edit' type=
 'application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639367278242849?authkey=Gv1sRgCKv8k9Crld_M_AE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639367278242849/acl?authkey=Gv1sRgCKv8k9Crld_M_AE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639367278242849</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums33</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013815000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh6.googleusercon
 tent.com/-Y3ASDZESTsw/UfULtxIurCE/AAAAAAAAMHY/EBxcGk2uAnY/TestAlbum3ForQueryAllAlbums33.jpg' 
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Y3ASDZESTsw/UfULtxIurCE/AAAAAAAAMHY/EBxcGk2uAnY/s160-c/TestAlbum3ForQueryAllAlbums33.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639362688809761</id><published>2013-07-28T12:16:54.000Z</published><updated>2013-07-28T12:16:54.727Z</updated><app:edited>2013-07-28T12:16:54.727Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.
 com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639362688809761?authkey=Gv1sRgCNKat7CF36raDg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums34?authkey=Gv1sRgCNKat7CF36raDg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639362688809761?authkey=Gv1sRgCNKat7CF36raDg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639362688809761?authkey=Gv1sRgCNKat7CF36raDg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639362688809761/acl?authkey=Gv1sRgCNKat7CF36raDg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com
 
/libgdata.picasaweb</uri></author><gphoto:id>5905639362688809761</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums34</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013814000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-A-gxpwBnWNU/UfULtgCheyE/AAAAAAAAMHU/cMuJy9WCKS4/TestAlbum2ForQueryAllAlbums34.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-A-gxpwBnWNU/UfULtgCheyE/AAAAAAAAMHU/cMuJy9WCKS4/s160-c/TestAlbum2ForQueryAllAlbums34.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for QueryAllAlbums</medi
 a:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639360296147857</id><published>2013-07-28T12:16:53.000Z</published><updated>2013-07-28T12:16:53.709Z</updated><app:edited>2013-07-28T12:16:53.709Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639360296147857?authkey=Gv1sRgCKXToKnt2oX4eA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums36?authkey=Gv1sRgCKXToKnt2oX4eA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/59
 05639360296147857?authkey=Gv1sRgCKXToKnt2oX4eA'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639360296147857?authkey=Gv1sRgCKXToKnt2oX4eA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639360296147857/acl?authkey=Gv1sRgCKXToKnt2oX4eA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639360296147857</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums36</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013813000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphot
 o:nickname><media:group><media:content 
url='https://lh6.googleusercontent.com/-RIU3f-QaiZo/UfULtXIEW5E/AAAAAAAAMHQ/lSRZe5zdtCY/TestAlbum1ForQueryAllAlbums36.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-RIU3f-QaiZo/UfULtXIEW5E/AAAAAAAAMHQ/lSRZe5zdtCY/s160-c/TestAlbum1ForQueryAllAlbums36.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905637904987587057</id><published>2013-07-28T12:11:14.000Z</published><updated>2013-07-28T12:11:14.897Z</updated><app:edited>2013-07-28T12:11:14.897Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for QueryFiles</title><sum
 mary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905637904987587057?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles22?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637904987587057?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637904987587057?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637904987587057/acl?authkey=Gv1sRgCO3l3Iv359a_NA'/><author><name>
 
libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905637904987587057</gphoto:id><gphoto:name>TestAlbumForQueryFiles22</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013474000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-E22LuaZ2ZVE/UfUKYpreAfE/AAAAAAAAMHM/wUIafPZkKlM/TestAlbumForQueryFiles22.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-E22LuaZ2ZVE/UfUKYpreAfE/AAAAAAAAMHM/wUIafPZkKlM/s160-c/TestAlbumForQueryFiles22.jpg'
 height='160' width='160'/><media:title type='p
 lain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635064104222385</id><published>2013-07-28T12:00:12.000Z</published><updated>2013-07-28T12:00:13.067Z</updated><app:edited>2013-07-28T12:00:13.067Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635064104222385?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles21?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/l
 ibgdata.picasaweb/albumid/5905635064104222385?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link rel='edit' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635064104222385?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635064104222385/acl?authkey=Gv1sRgCN2f-tLrn6u20gE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635064104222385</gphoto:id><gphoto:name>TestAlbumForQueryFiles21</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375012812000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname
libgdata.picasaweb</gphoto:nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-gdDQDMYGH_E/UfUHzSkF_rE/AAAAAAAAMBI/kQIzvG3cSQs/TestAlbumForQueryFiles21.jpg'
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-gdDQDMYGH_E/UfUHzSkF_rE/AAAAAAAAMBI/kQIzvG3cSQs/s160-c/TestAlbumForQueryFiles21.jpg'
height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905634684141771345</id><published>2013-07-28T11:57:49.000Z</published><updated>2013-07-28T11:58:44.594Z</updated><app:edited>2013-07-28T11:58:44.594Z</app:edited><category
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for QueryAllAl
 bums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905634684141771345?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums18?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634684141771345?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634684141771345?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634684141771345/acl?authkey=Gv1sRgCKq9ye
 
TElsz-uwE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905634684141771345</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums18</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375012669000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-O-Wcn8SfT10/UfUHdLF_GlE/AAAAAAAAL98/EmD4-Bu78rI/TestAlbum2ForQueryAllAlbums18.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-O-Wcn8SfT10/UfUHdLF_GlE/AAAAAAAAL98/EmD4-Bu78rI/s160-c/TestAlbum2ForQueryAllAlbums18.jpg'
 heigh
 t='160' width='160'/><media:title type='plain'>Test album 2 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905634444921273185</id><published>2013-07-28T11:57:48.000Z</published><updated>2013-07-28T11:57:48.534Z</updated><app:edited>2013-07-28T11:57:48.534Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905634444921273185?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums20?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='self' type='application/atom+xml
 ' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634444921273185?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634444921273185?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634444921273185/acl?authkey=Gv1sRgCID4oobz9aPCrAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905634444921273185</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums20</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375012668000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUse
 
d><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-51tuKhkL2wA/UfUHPP7X-2E/AAAAAAAAL94/bLrA3RL2Pbk/TestAlbum1ForQueryAllAlbums20.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-51tuKhkL2wA/UfUHPP7X-2E/AAAAAAAAL94/bLrA3RL2Pbk/s160-c/TestAlbum1ForQueryAllAlbums20.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905631091580133985</id><published>2013-07-28T11:44:48.000Z</published><updated>2013-07-28T11:44:48.376Z</updated><app:edited>2013-07-28T11:44:48.376Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='h
 ttp://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles20?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdat
 
a.picasaweb/albumid/5905631091580133985/acl?authkey=Gv1sRgCIuFurSynOKIeQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905631091580133985</gphoto:id><gphoto:name>TestAlbumForQueryFiles20</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375011888000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-TVDcmOZrysI/UfUEMDwi4mE/AAAAAAAAL64/wrBf3Cdp9po/TestAlbumForQueryFiles20.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-TVDcmOZrysI/UfUEMDwi4mE/AAAAAAAAL64/wrBf3C
 dp9po/s160-c/TestAlbumForQueryFiles20.jpg' height='160' width='160'/><media:title type='plain'>Test album 
for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDkqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5761072391095671425</id><published>2012-07-03T22:23:08.000Z</published><updated>2013-05-11T05:42:42.362Z</updated><app:edited>2013-05-11T05:42:42.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5761072391095671425?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles19?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='s
 elf' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761072391095671425?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761072391095671425?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761072391095671425/acl?authkey=Gv1sRgCNb_ofXV98b6pQE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5761072391095671425</gphoto:id><gphoto:name>TestAlbumForQueryFiles19</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341354188000</gphoto:timestamp><gphoto:numphotos>2</gphoto:numphotos><gphoto:numphotosremaining>998</gphoto:numphotosremaining><gphoto:byt
 
esUsed>35320</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-3IaCTkfHZrg/T_Nw0PSRWoE/AAAAAAAALVs/qfty_7d7PrQ/TestAlbumForQueryFiles19.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-3IaCTkfHZrg/T_Nw0PSRWoE/AAAAAAAALVs/qfty_7d7PrQ/s160-c/TestAlbumForQueryFiles19.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDgqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5761069990379874001</id><published>2012-07-03T22:13:49.000Z</published><updated>2013-05-11T05:42:40.361Z</updated><app:edited>2013-05-11T05:42:40.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#
 kind' term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5761069990379874001?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles18?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761069990379874001?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761069990379874001?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api
 
/user/libgdata.picasaweb/albumid/5761069990379874001/acl?authkey=Gv1sRgCM71qOr5vt_WBQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5761069990379874001</gphoto:id><gphoto:name>TestAlbumForQueryFiles18</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341353629000</gphoto:timestamp><gphoto:numphotos>1</gphoto:numphotos><gphoto:numphotosremaining>999</gphoto:numphotosremaining><gphoto:bytesUsed>17660</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-_CMpenfeUws/T_Nuof7BZtE/AAAAAAAALG0/XJQcX_I44n0/TestAlbumForQueryFiles18.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-_CMpenfeUws/T_Nuof7BZtE/AA
 AAAAAALG0/XJQcX_I44n0/s160-c/TestAlbumForQueryFiles18.jpg' height='160' width='160'/><media:title 
type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5760704378574247089</id><published>2012-07-02T22:35:07.000Z</published><updated>2013-05-11T05:42:36.362Z</updated><app:edited>2013-05-11T05:42:36.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5760704378574247089?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles16?authkey=Gv1sRgCNSPmt7_x6C7CQ'
 /><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760704378574247089?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760704378574247089?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760704378574247089/acl?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5760704378574247089</gphoto:id><gphoto:name>TestAlbumForQueryFiles16</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341268507000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining>
 
<gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-lHmWO-UBQRw/T_IiHFz0lLE/AAAAAAAAKe4/AQqY9p2QfsA/TestAlbumForQueryFiles16.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-lHmWO-UBQRw/T_IiHFz0lLE/AAAAAAAAKe4/AQqY9p2QfsA/s160-c/TestAlbumForQueryFiles16.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDoqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5759113833317391041</id><published>2012-06-28T15:42:44.000Z</published><updated>2013-05-11T05:42:32.362Z</updated><app:edited>2013-05-11T05:42:32.362Z</app:edited><category
 scheme='http://schemas.google.
 com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5759113833317391041?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles14?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5759113833317391041?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5759113833317391041?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com
 
/data/entry/api/user/libgdata.picasaweb/albumid/5759113833317391041/acl?authkey=Gv1sRgCJW--rmMwM3d4QE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5759113833317391041</gphoto:id><gphoto:name>TestAlbumForQueryFiles14</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1340898164000</gphoto:timestamp><gphoto:numphotos>3</gphoto:numphotos><gphoto:numphotosremaining>997</gphoto:numphotosremaining><gphoto:bytesUsed>52980</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-VC-g0Oz6ZLY/T-x7hK_r2sE/AAAAAAAAKTE/Hv-2oC9b31I/TestAlbumForQueryFiles14.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh3.googleusercontent.com/-VC-g0Oz6ZL
 Y/T-x7hK_r2sE/AAAAAAAAKTE/Hv-2oC9b31I/s160-c/TestAlbumForQueryFiles14.jpg' height='160' 
width='160'/><media:title type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5757505389449675537</id><published>2012-06-24T07:41:17.000Z</published><updated>2013-05-11T05:42:30.361Z</updated><app:edited>2013-05-11T05:42:30.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5757505389449675537?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles13?authkey=Gv1sR
 gCKj_lsPJ5d_YTw'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757505389449675537?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757505389449675537?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757505389449675537/acl?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5757505389449675537</gphoto:id><gphoto:name>TestAlbumForQueryFiles13</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1340523677000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:num
 
photosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-Jn0C3tOdK78/T-bEpaqLgxE/AAAAAAAAKPk/gxGcgtizd1I/TestAlbumForQueryFiles13.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Jn0C3tOdK78/T-bEpaqLgxE/AAAAAAAAKPk/gxGcgtizd1I/s160-c/TestAlbumForQueryFiles13.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5757504621534543681</id><published>2012-06-24T07:38:18.000Z</published><updated>2013-05-11T05:42:28.362Z</updated><app:edited>2013-05-11T05:42:28.362Z</app:edited><category
 scheme='http:/
 /schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5757504621534543681?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles12?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757504621534543681?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757504621534543681?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://picasawe
 
b.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757504621534543681/acl?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5757504621534543681</gphoto:id><gphoto:name>TestAlbumForQueryFiles12</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1340523498000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-ud4Tyk1ot80/T-bD8t88f0E/AAAAAAAAKMc/yLbDw9n8a_A/TestAlbumForQueryFiles12.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh4.googleusercontent.com/
 -ud4Tyk1ot80/T-bD8t88f0E/AAAAAAAAKMc/yLbDw9n8a_A/s160-c/TestAlbumForQueryFiles12.jpg' height='160' 
width='160'/><media:title type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753929134212548337</id><published>2012-06-14T16:23:38.000Z</published><updated>2013-05-11T05:42:26.362Z</updated><app:edited>2013-05-11T05:42:26.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753929134212548337?authkey=Gv1sRgCJvFuebTieC7-wE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles11?a
 uthkey=Gv1sRgCJvFuebTieC7-wE'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753929134212548337?authkey=Gv1sRgCJvFuebTieC7-wE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753929134212548337?authkey=Gv1sRgCJvFuebTieC7-wE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753929134212548337/acl?authkey=Gv1sRgCJvFuebTieC7-wE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753929134212548337</gphoto:id><gphoto:name>TestAlbumForQueryFiles11</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339691018000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining
996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content

url='https://lh3.googleusercontent.com/-ejI_vobZ1Ds/T9oQD9uChvE/AAAAAAAAKIg/lQKE_z9GplE/TestAlbumForQueryFiles11.jpg'
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-ejI_vobZ1Ds/T9oQD9uChvE/AAAAAAAAKIg/lQKE_z9GplE/s160-c/TestAlbumForQueryFiles11.jpg'
height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753922778648887201</id><published>2012-06-14T15:58:59.000Z</published><updated>2013-05-11T05:42:24.361Z</updated><app:edited>2013-05-11T05:42:24.361Z</app:edited><categor
 y scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753922778648887201?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles10?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753922778648887201?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753922778648887201?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='
 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753922778648887201/acl?authkey=Gv1sRgCJGelsSrkob2Kg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753922778648887201</gphoto:id><gphoto:name>TestAlbumForQueryFiles10</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339689539000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-NC_89o6Ov1I/T9oKSBZlP6E/AAAAAAAAKE4/KmM1aPTC7mk/TestAlbumForQueryFiles10.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh3.google
 usercontent.com/-NC_89o6Ov1I/T9oKSBZlP6E/AAAAAAAAKE4/KmM1aPTC7mk/s160-c/TestAlbumForQueryFiles10.jpg' 
height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753917582035390849</id><published>2012-06-14T15:38:49.000Z</published><updated>2013-05-11T05:42:22.362Z</updated><app:edited>2013-05-11T05:42:22.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753917582035390849?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link
 rel='alternate' type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumFo
 rQueryFiles09?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753917582035390849?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753917582035390849?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753917582035390849/acl?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753917582035390849</gphoto:id><gphoto:name>TestAlbumForQueryFiles09</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339688329000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphot
 
osremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-qxwST4CVdvE/T9oFjigYEYE/AAAAAAAAKBE/fpCYLGA-oZg/TestAlbumForQueryFiles09.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-qxwST4CVdvE/T9oFjigYEYE/AAAAAAAAKBE/fpCYLGA-oZg/s160-c/TestAlbumForQueryFiles09.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753916884198822849</id><published>2012-06-14T15:36:07.000Z</published><updated>2013-05-11T05:42:20.361Z</updated><app:edited>2013-05-11T05:42:20.361Z</app:edit
 ed><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753916884198822849?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles08?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916884198822849?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916884198822849?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+
 xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916884198822849/acl?authkey=Gv1sRgCLuR2oy73OHvaw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753916884198822849</gphoto:id><gphoto:name>TestAlbumForQueryFiles08</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339688167000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-FOxdF0LPDhA/T9oE663LE8E/AAAAAAAAJ9g/hTGNXOeBiTU/TestAlbumForQueryFiles08.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https:/
 
/lh4.googleusercontent.com/-FOxdF0LPDhA/T9oE663LE8E/AAAAAAAAJ9g/hTGNXOeBiTU/s160-c/TestAlbumForQueryFiles08.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753916203664692769</id><published>2012-06-14T15:33:29.000Z</published><updated>2013-05-11T05:42:18.362Z</updated><app:edited>2013-05-11T05:42:18.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753916203664692769?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link
 rel='alternate' type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb/
 TestAlbumForQueryFiles07?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916203664692769?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916203664692769?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916203664692769/acl?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753916203664692769</gphoto:id><gphoto:name>TestAlbumForQueryFiles07</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339688009000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gph
 
oto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-tB_pI_r6ZtY/T9oETTrMViE/AAAAAAAAJ58/hxxcJ6W5eYA/TestAlbumForQueryFiles07.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-tB_pI_r6ZtY/T9oETTrMViE/AAAAAAAAJ58/hxxcJ6W5eYA/s160-c/TestAlbumForQueryFiles07.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753915421170356833</id><published>2012-06-14T15:30:27.000Z</published><updated>2013-05-11T05:42:16.362Z</updated><app:edited>2013-05-11T05:42:16.362
 Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753915421170356833?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles06?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753915421170356833?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753915421170356833?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='applic
 ation/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753915421170356833/acl?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753915421170356833</gphoto:id><gphoto:name>TestAlbumForQueryFiles06</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339687827000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-cEi8DqY4EMA/T9oDlwqAUmE/AAAAAAAAJ2U/CQsgVJCWVLY/TestAlbumForQueryFiles06.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail u
 
rl='https://lh5.googleusercontent.com/-cEi8DqY4EMA/T9oDlwqAUmE/AAAAAAAAJ2U/CQsgVJCWVLY/s160-c/TestAlbumForQueryFiles06.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753913257635658289</id><published>2012-06-14T15:22:02.000Z</published><updated>2013-05-11T05:42:14.361Z</updated><app:edited>2013-05-11T05:42:14.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753913257635658289?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='alternate' type='text/html' href='https://picasaweb.google.com/libgdat
 a.picasaweb/TestAlbumForQueryFiles05?authkey=Gv1sRgCL715cypqrn54gE'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753913257635658289?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753913257635658289?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753913257635658289/acl?authkey=Gv1sRgCL715cypqrn54gE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753913257635658289</gphoto:id><gphoto:name>TestAlbumForQueryFiles05</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339687322000</gphoto:timestamp><gphoto:numphotos>4</gphot
 
o:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-1cOVqarpanM/T9oBn03IujE/AAAAAAAAJyw/KxitT1LtH3g/TestAlbumForQueryFiles05.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-1cOVqarpanM/T9oBn03IujE/AAAAAAAAJyw/KxitT1LtH3g/s160-c/TestAlbumForQueryFiles05.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753909460100672145</id><published>2012-06-14T15:07:18.000Z</published><updated>2013-05-11T05:42:12.362Z</updated><app:edited>2013-05
 -11T05:42:12.362Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753909460100672145?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles04?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909460100672145?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909460100672145?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='http://schemas.google.com/acl/2007#accessContr
 olList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909460100672145/acl?authkey=Gv1sRgCKuMk9vW3ubdygE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753909460100672145</gphoto:id><gphoto:name>TestAlbumForQueryFiles04</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339686438000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-cFWrSd8mpAY/T9n-Kx8PapE/AAAAAAAAJvE/ZeXQ8DRvZSs/TestAlbumForQueryFiles04.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keyword
 s/><media:thumbnail 
url='https://lh3.googleusercontent.com/-cFWrSd8mpAY/T9n-Kx8PapE/AAAAAAAAJvE/ZeXQ8DRvZSs/s160-c/TestAlbumForQueryFiles04.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753909201230338145</id><published>2012-06-14T15:06:17.000Z</published><updated>2013-05-11T05:42:10.362Z</updated><app:edited>2013-05-11T05:42:10.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753909201230338145?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='alternate' type='text/html' href='https://picasawe
 b.google.com/libgdata.picasaweb/TestAlbumForQueryFiles03?authkey=Gv1sRgCIW965XfrpvzFw'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909201230338145?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909201230338145?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909201230338145/acl?authkey=Gv1sRgCIW965XfrpvzFw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753909201230338145</gphoto:id><gphoto:name>TestAlbumForQueryFiles03</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339686377000</gphoto:timestamp><gphoto:nu
 
mphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-Bmi14ws5AM0/T9n97tkvmGE/AAAAAAAAJrg/ysK_cWkLCy8/TestAlbumForQueryFiles03.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Bmi14ws5AM0/T9n97tkvmGE/AAAAAAAAJrg/ysK_cWkLCy8/s160-c/TestAlbumForQueryFiles03.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDoqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5731216873649428225</id><published>2012-04-14T11:28:32.000Z</published><updated>2013-05-11T05:42:08.361Z</updated><ap
 p:edited>2013-05-11T05:42:08.361Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5731216873649428225?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles02?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5731216873649428225?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5731216873649428225?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='http://schemas.google.com/acl/2007
 #accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5731216873649428225/acl?authkey=Gv1sRgCKbgqrLhl-2zZA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5731216873649428225</gphoto:id><gphoto:name>TestAlbumForQueryFiles02</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1334402912000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-y_4o7bv_0g8/T4lfYZyZVwE/AAAAAAAAJn8/ugcSPsZG_2Y/TestAlbumForQueryFiles02.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><me
 dia:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-y_4o7bv_0g8/T4lfYZyZVwE/AAAAAAAAJn8/ugcSPsZG_2Y/s160-c/TestAlbumForQueryFiles02.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDoqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5656529313960281697</id><published>2011-09-26T05:01:26.000Z</published><updated>2013-05-11T05:42:06.361Z</updated><app:edited>2013-05-11T05:42:06.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5656529313960281697?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='alternate' type='text/html' href='https
 ://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles?authkey=Gv1sRgCMTFotGeweT6cg'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656529313960281697?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656529313960281697?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656529313960281697/acl?authkey=Gv1sRgCMTFotGeweT6cg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5656529313960281697</gphoto:id><gphoto:name>TestAlbumForQueryFiles</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1317013286000</gphoto:timestamp><gp
 
hoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-6p9wKSiQbf8/ToAHcQQvxmE/AAAAAAAAI6g/WLzZSL61RzQ/TestAlbumForQueryFiles.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-6p9wKSiQbf8/ToAHcQQvxmE/AAAAAAAAI6g/WLzZSL61RzQ/s160-c/TestAlbumForQueryFiles.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;Xip7ImA_&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5656528945499827137</id><published>2011-09-26T05:01:15.000Z</published><updated>2013-05-11T05:42:04.362Z</updated>
 <app:edited>2013-05-11T05:42:04.362Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Drop Box</title><summary>Default album for newly 
uploaded photos.</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5656528945499827137?authkey=Gv1sRgCJimnOPo4qP_aA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/DropBox?authkey=Gv1sRgCJimnOPo4qP_aA'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656528945499827137?authkey=Gv1sRgCJimnOPo4qP_aA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656528945499827137?authkey=Gv1sRgCJimnOPo4qP_aA'/><link
 rel='http://schemas.g
 oogle.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656528945499827137/acl?authkey=Gv1sRgCJimnOPo4qP_aA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5656528945499827137</gphoto:id><gphoto:name>DropBox</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1317013275000</gphoto:timestamp><gphoto:numphotos>12</gphoto:numphotos><gphoto:numphotosremaining>988</gphoto:numphotosremaining><gphoto:bytesUsed>211920</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:albumType>Default</gphoto:albumType><media:group><media:content
 url='https://lh6.googleusercontent.com/-I1YjlfQG5kY/ToAHGzo7a8E/AAAAAAAALmQ/YeJ6gUuivA8/DropBox.jpg' 
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media
 :description type='plain'>Default album for newly uploaded 
photos.</media:description><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-I1YjlfQG5kY/ToAHGzo7a8E/AAAAAAAALmQ/YeJ6gUuivA8/s160-c/DropBox.jpg' 
height='160' width='160'/><media:title type='plain'>Drop Box</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5760706460596781425</id><published>2012-07-02T22:43:13.000Z</published><updated>2013-05-11T05:42:38.362Z</updated><app:edited>2013-05-11T05:42:38.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5760706460596781425?authkey=Gv1sRgCKDo4Mbw67Dy
 tQE'/><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles17?authkey=Gv1sRgCKDo4Mbw67DytQE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760706460596781425?authkey=Gv1sRgCKDo4Mbw67DytQE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760706460596781425?authkey=Gv1sRgCKDo4Mbw67DytQE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760706460596781425/acl?authkey=Gv1sRgCKDo4Mbw67DytQE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5760706460596781425</gphoto:id><gphoto:name>TestAlbumForQueryFiles17</gphoto:name><gphoto:location/><gphoto:access>private</gph
 
oto:access><gphoto:timestamp>1341268993000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-jCbAOlu4SwU/T_IkAR8rQXE/AAAAAAAAKs8/LMYVB0SQESc/TestAlbumForQueryFiles17.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-jCbAOlu4SwU/T_IkAR8rQXE/AAAAAAAAKs8/LMYVB0SQESc/s160-c/TestAlbumForQueryFiles17.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5760702986482787089</id><published>2012-07-02T
 
22:29:44.000Z</published><updated>2013-05-11T05:42:34.361Z</updated><app:edited>2013-05-11T05:42:34.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5760702986482787089?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles15?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760702986482787089?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760702986482787089?authk
 ey=Gv1sRgCKO5mpeQwZjDHg'/><link rel='http://schemas.google.com/acl/2007#accessControlList' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760702986482787089/acl?authkey=Gv1sRgCKO5mpeQwZjDHg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5760702986482787089</gphoto:id><gphoto:name>TestAlbumForQueryFiles15</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341268184000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-y1OSyupQ3TI/T_Ig2D3WoxE/AAAAAAAAKbI/Jcqk_xxtj-U/TestAlbumForQueryFiles15.jpg'
 type='image/jpeg' medium='image'/><media:credi
 t>libgdata.picasaweb</media:credit><media:description type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-y1OSyupQ3TI/T_Ig2D3WoxE/AAAAAAAAKbI/Jcqk_xxtj-U/s160-c/TestAlbumForQueryFiles15.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905633591451744097</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T11:54:30.296Z</updated><app:edited>2013-07-28T11:54:30.296Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/
 5905633591451744097?authkey=Gv1sRgCJaWsta275GJzgE'/><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos55?authkey=Gv1sRgCJaWsta275GJzgE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905633591451744097?authkey=Gv1sRgCJaWsta275GJzgE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905633591451744097?authkey=Gv1sRgCJaWsta275GJzgE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905633591451744097/acl?authkey=Gv1sRgCJaWsta275GJzgE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905633591451744097</gphoto:id><gphoto:name>ThanksgivingPhotos55</gphoto:name><gphoto
 :location>Winnipeg, 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-pmMLIzS2Aj4/UfUGdkgYd2E/AAAAAAAAL9s/2v2L2yYDmLQ/ThanksgivingPhotos55.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-pmMLIzS2Aj4/UfUGdkgYd2E/AAAAAAAAL9s/2v2L2yYDmLQ/s160-c/ThanksgivingPhotos55.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.goog
 
le.com/data/entry/user/libgdata.picasaweb/albumid/5905635041987434177</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:08.375Z</updated><app:edited>2013-07-28T12:00:08.375Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635041987434177?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos59?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635041987434177?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='edit' type='appl
 ication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635041987434177?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635041987434177/acl?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635041987434177</gphoto:id><gphoto:name>ThanksgivingPhotos59</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh
 3.googleusercontent.com/-YTqHGHexKLY/UfUHyALClsE/AAAAAAAAMAw/Q5ZgS1NABNA/ThanksgivingPhotos59.jpg' 
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-YTqHGHexKLY/UfUHyALClsE/AAAAAAAAMAw/Q5ZgS1NABNA/s160-c/ThanksgivingPhotos59.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635046618559681</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:09.368Z</updated><app:edited>2013-07-28T12:00:09.368Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><r
 ights>private</rights><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635046618559681?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos61?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635046618559681?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635046618559681?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635046618559681/acl?authkey=Gv1sRgCOqknJaSsdXxFA'/><author><name>libgdata.pic
 
asaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635046618559681</gphoto:id><gphoto:name>ThanksgivingPhotos61</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-L4nk2EiXVJc/UfUHyRbL9ME/AAAAAAAAMA4/50NgPYLQv2U/ThanksgivingPhotos61.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-L4nk2EiXVJc/UfUHyRbL9ME/AAAAAAAAMA4/50NgPYLQv2U/s160-c/ThanksgivingPhotos61.
 jpg' height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635048265698337</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:08.587Z</updated><app:edited>2013-07-28T12:00:08.587Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635048265698337?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos60?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='self' type='applica
 tion/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635048265698337?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635048265698337?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635048265698337/acl?authkey=Gv1sRgCPm6muuhnruL2AE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635048265698337</gphoto:id><gphoto:name>ThanksgivingPhotos60</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gp
 
hoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-NgBV9nWzKgQ/UfUHyXj5TCE/AAAAAAAAMA0/gyOw1o0LsCc/ThanksgivingPhotos60.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NgBV9nWzKgQ/UfUHyXj5TCE/AAAAAAAAMA0/gyOw1o0LsCc/s160-c/ThanksgivingPhotos60.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635052696078545</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:09.696Z</updated><app:edited>2013-07-28T12:00:09.696Z</app:edited><category
 schem
 e='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635052696078545?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos62?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635052696078545?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635052696078545?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='applicati
 on/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635052696078545/acl?authkey=Gv1sRgCJ78iPjynMP6bA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635052696078545</gphoto:id><gphoto:name>ThanksgivingPhotos62</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-dDzC8AUT39c/UfUHyoELiNE/AAAAAAAAMA8/iK9D08hMeZg/ThanksgivingPhotos62.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the 
 feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-dDzC8AUT39c/UfUHyoELiNE/AAAAAAAAMA8/iK9D08hMeZg/s160-c/ThanksgivingPhotos62.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905636964804120545</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:07:35.751Z</updated><app:edited>2013-07-28T12:07:35.751Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905636964804120545?authkey=Gv1sRgCOPnh9WK0O-KGA'/><
 link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos67?authkey=Gv1sRgCOPnh9WK0O-KGA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964804120545?authkey=Gv1sRgCOPnh9WK0O-KGA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964804120545?authkey=Gv1sRgCOPnh9WK0O-KGA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964804120545/acl?authkey=Gv1sRgCOPnh9WK0O-KGA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905636964804120545</gphoto:id><gphoto:name>ThanksgivingPhotos67</gphoto:name><gphoto:location>Winnipeg,
 MN</gphoto:location><gphoto:access>pr
 
ivate</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-URP8xignqeI/UfUJh7OQz-E/AAAAAAAAMEA/uOLQL8yxb8o/ThanksgivingPhotos67.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-URP8xignqeI/UfUJh7OQz-E/AAAAAAAAMEA/uOLQL8yxb8o/s160-c/ThanksgivingPhotos67.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905636
 
964871966001</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:07:35.315Z</updated><app:edited>2013-07-28T12:07:35.315Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905636964871966001?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos66?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964871966001?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='edit' type='application/atom+xml' href='https://picasaweb.google.com/data/en
 try/api/user/libgdata.picasaweb/albumid/5905636964871966001?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964871966001/acl?authkey=Gv1sRgCNqbzKuF-cCeLg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905636964871966001</gphoto:id><gphoto:name>ThanksgivingPhotos66</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh4.googleusercontent.com/-RKs5J2Fv4Xs/UfUJh7ecDTE/AAAAAAAAMD8/S
 hmhXZiX02k/ThanksgivingPhotos66.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description type='plain'>Family photos 
of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-RKs5J2Fv4Xs/UfUJh7ecDTE/AAAAAAAAMD8/ShmhXZiX02k/s160-c/ThanksgivingPhotos66.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905636968138062433</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:07:35.751Z</updated><app:edited>2013-07-28T12:07:35.751Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2
 005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905636968138062433?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos68?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636968138062433?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636968138062433?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636968138062433/acl?authkey=Gv1sRgCPfTjKWOu7_sCg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasa
 
web</uri></author><gphoto:id>5905636968138062433</gphoto:id><gphoto:name>ThanksgivingPhotos68</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-wEsnbQ5ds-Q/UfUJiHpIumE/AAAAAAAAMEE/yJzlfrX0QnM/ThanksgivingPhotos68.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-wEsnbQ5ds-Q/UfUJiHpIumE/AAAAAAAAMEE/yJzlfrX0QnM/s160-c/ThanksgivingPhotos68.jpg'
 height='160' width='160'/><media:title type='plain'>Thank
 sgiving photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905637896892105825</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:11:12.157Z</updated><app:edited>2013-07-28T12:11:12.157Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905637896892105825?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos72?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api
 /user/libgdata.picasaweb/albumid/5905637896892105825?authkey=Gv1sRgCKvL352GnPmJbw'/><link rel='edit' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637896892105825?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637896892105825/acl?authkey=Gv1sRgCKvL352GnPmJbw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905637896892105825</gphoto:id><gphoto:name>ThanksgivingPhotos72</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb<
 /gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-Yp2EbjWQTqU/UfUKYLhWxGE/AAAAAAAAMHA/D3vQHf4qmGs/ThanksgivingPhotos72.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-Yp2EbjWQTqU/UfUKYLhWxGE/AAAAAAAAMHA/D3vQHf4qmGs/s160-c/ThanksgivingPhotos72.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry></feed>
+  
diff --git a/gdata/tests/traces/picasaweb/query-all-albums-async 
b/gdata/tests/traces/picasaweb/query-all-albums-async
new file mode 100644
index 0000000..571928e
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query-all-albums-async
@@ -0,0 +1,30 @@
+> GET /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375013857
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 47 (0x7fffe0025760), SoupSocket 22 (0x7fffe00266e0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375013857
+< Soup-Debug: SoupMessage 47 (0x7fffe0025760)
+< Expires: Sun, 28 Jul 2013 12:17:37 GMT
+< Date: Sun, 28 Jul 2013 12:17:37 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=DUVgH0eBy_2p; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=usMg9ro77WJyMafBXi46bg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CU8BRH8yeip7ImA9WhFWEEw."
+< Last-Modified: Sun, 28 Jul 2013 12:17:35 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CU8BRH8yeip7ImA9WhFWEEw.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-28T12:17:35.192Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>38</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:
 
itemsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639542445656401</id><published>2013-07-28T12:17:35.000Z</published><updated>2013-07-28T12:17:35.192Z</updated><app:edited>2013-07-28T12:17:35.192Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.googl
 e.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639542445656401?authkey=Gv1sRgCIi65tzhvtybNQ'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums36?authkey=Gv1sRgCIi65tzhvtybNQ'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639542445656401?authkey=Gv1sRgCIi65tzhvtybNQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639542445656401?authkey=Gv1sRgCIi65tzhvtybNQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639542445656401/acl?authkey=Gv1sRgCIi65tzhvtybNQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639542445656401</gphoto:i
 
d><gphoto:name>TestAlbum4ForQueryAllAlbums36</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013855000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-4uXO2uUNoZs/UfUL39r5SVE/AAAAAAAAMJc/RrgYLArel0Y/TestAlbum4ForQueryAllAlbums36.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-4uXO2uUNoZs/UfUL39r5SVE/AAAAAAAAMJc/RrgYLArel0Y/s160-c/TestAlbum4ForQueryAllAlbums36.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><id>ht
 
tps://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639534651911457</id><published>2013-07-28T12:17:34.000Z</published><updated>2013-07-28T12:17:34.363Z</updated><app:edited>2013-07-28T12:17:34.363Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639534651911457?authkey=Gv1sRgCIHrp_-g6Ob2vQE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums37?authkey=Gv1sRgCIHrp_-g6Ob2vQE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639534651911457?authkey=Gv1sRgCIHrp_-g6Ob2vQE'/><link
 rel='edit' type=
 'application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639534651911457?authkey=Gv1sRgCIHrp_-g6Ob2vQE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639534651911457/acl?authkey=Gv1sRgCIHrp_-g6Ob2vQE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639534651911457</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums37</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013854000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh5.googleusercon
 tent.com/-01e4GIsAHkA/UfUL3gpuLSE/AAAAAAAAMJY/_ph8067G_-M/TestAlbum3ForQueryAllAlbums37.jpg' 
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-01e4GIsAHkA/UfUL3gpuLSE/AAAAAAAAMJY/_ph8067G_-M/s160-c/TestAlbum3ForQueryAllAlbums37.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639533981554817</id><published>2013-07-28T12:17:33.000Z</published><updated>2013-07-28T12:17:33.515Z</updated><app:edited>2013-07-28T12:17:33.515Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.
 com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639533981554817?authkey=Gv1sRgCLyQw8yU1ouNsQE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums38?authkey=Gv1sRgCLyQw8yU1ouNsQE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639533981554817?authkey=Gv1sRgCLyQw8yU1ouNsQE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639533981554817?authkey=Gv1sRgCLyQw8yU1ouNsQE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639533981554817/acl?authkey=Gv1sRgCLyQw8yU1ouNsQE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.googl
 
e.com/libgdata.picasaweb</uri></author><gphoto:id>5905639533981554817</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums38</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013853000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/--hTWnRXVTqg/UfUL3eJ5WIE/AAAAAAAAMJU/Wu1WMhdlhbc/TestAlbum2ForQueryAllAlbums38.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/--hTWnRXVTqg/UfUL3eJ5WIE/AAAAAAAAMJU/Wu1WMhdlhbc/s160-c/TestAlbum2ForQueryAllAlbums38.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for QueryAllAlbums<
 /media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639529199279457</id><published>2013-07-28T12:17:32.000Z</published><updated>2013-07-28T12:17:32.580Z</updated><app:edited>2013-07-28T12:17:32.580Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639529199279457?authkey=Gv1sRgCI_HnNDHxaOxzgE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums40?authkey=Gv1sRgCI_HnNDHxaOxzgE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/alb
 umid/5905639529199279457?authkey=Gv1sRgCI_HnNDHxaOxzgE'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639529199279457?authkey=Gv1sRgCI_HnNDHxaOxzgE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639529199279457/acl?authkey=Gv1sRgCI_HnNDHxaOxzgE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639529199279457</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums40</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013852000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasa
 web</gphoto:nickname><media:group><media:content 
url='https://lh6.googleusercontent.com/-kN8IXLSq27s/UfUL3MVtnWE/AAAAAAAAMJQ/_ygJNdZP1qs/TestAlbum1ForQueryAllAlbums40.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-kN8IXLSq27s/UfUL3MVtnWE/AAAAAAAAMJQ/_ygJNdZP1qs/s160-c/TestAlbum1ForQueryAllAlbums40.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905637904987587057</id><published>2013-07-28T12:11:14.000Z</published><updated>2013-07-28T12:11:14.897Z</updated><app:edited>2013-07-28T12:11:14.897Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for QueryFiles</
 title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905637904987587057?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles22?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637904987587057?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637904987587057?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637904987587057/acl?authkey=Gv1sRgCO3l3Iv359a_NA'/><aut
 
hor><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905637904987587057</gphoto:id><gphoto:name>TestAlbumForQueryFiles22</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013474000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-E22LuaZ2ZVE/UfUKYpreAfE/AAAAAAAAMHM/wUIafPZkKlM/TestAlbumForQueryFiles22.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-E22LuaZ2ZVE/UfUKYpreAfE/AAAAAAAAMHM/wUIafPZkKlM/s160-c/TestAlbumForQueryFiles22.jpg'
 height='160' width='160'/><media:tit
 le type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635064104222385</id><published>2013-07-28T12:00:12.000Z</published><updated>2013-07-28T12:00:13.067Z</updated><app:edited>2013-07-28T12:00:13.067Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635064104222385?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles21?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/
 api/user/libgdata.picasaweb/albumid/5905635064104222385?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link rel='edit' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635064104222385?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635064104222385/acl?authkey=Gv1sRgCN2f-tLrn6u20gE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635064104222385</gphoto:id><gphoto:name>TestAlbumForQueryFiles21</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375012812000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphot
 o:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-gdDQDMYGH_E/UfUHzSkF_rE/AAAAAAAAMBI/kQIzvG3cSQs/TestAlbumForQueryFiles21.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-gdDQDMYGH_E/UfUHzSkF_rE/AAAAAAAAMBI/kQIzvG3cSQs/s160-c/TestAlbumForQueryFiles21.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905634684141771345</id><published>2013-07-28T11:57:49.000Z</published><updated>2013-07-28T11:58:44.594Z</updated><app:edited>2013-07-28T11:58:44.594Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
 QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905634684141771345?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums18?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634684141771345?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634684141771345?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634684141771345/acl?authkey=Gv
 
1sRgCKq9yeTElsz-uwE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905634684141771345</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums18</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375012669000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-O-Wcn8SfT10/UfUHdLF_GlE/AAAAAAAAL98/EmD4-Bu78rI/TestAlbum2ForQueryAllAlbums18.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-O-Wcn8SfT10/UfUHdLF_GlE/AAAAAAAAL98/EmD4-Bu78rI/s160-c/TestAlbum2ForQueryAllAlbums18.
 jpg' height='160' width='160'/><media:title type='plain'>Test album 2 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905634444921273185</id><published>2013-07-28T11:57:48.000Z</published><updated>2013-07-28T11:57:48.534Z</updated><app:edited>2013-07-28T11:57:48.534Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905634444921273185?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums20?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='self' type='applicatio
 n/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634444921273185?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634444921273185?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634444921273185/acl?authkey=Gv1sRgCID4oobz9aPCrAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905634444921273185</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums20</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375012668000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphot
 
o:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-51tuKhkL2wA/UfUHPP7X-2E/AAAAAAAAL94/bLrA3RL2Pbk/TestAlbum1ForQueryAllAlbums20.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-51tuKhkL2wA/UfUHPP7X-2E/AAAAAAAAL94/bLrA3RL2Pbk/s160-c/TestAlbum1ForQueryAllAlbums20.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905631091580133985</id><published>2013-07-28T11:44:48.000Z</published><updated>2013-07-28T11:44:48.376Z</updated><app:edited>2013-07-28T11:44:48.376Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kin
 d' term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles20?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/us
 
er/libgdata.picasaweb/albumid/5905631091580133985/acl?authkey=Gv1sRgCIuFurSynOKIeQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905631091580133985</gphoto:id><gphoto:name>TestAlbumForQueryFiles20</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375011888000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-TVDcmOZrysI/UfUEMDwi4mE/AAAAAAAAL64/wrBf3Cdp9po/TestAlbumForQueryFiles20.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-TVDcmOZrysI/UfUEMDwi4mE/AAAAAAAA
 L64/wrBf3Cdp9po/s160-c/TestAlbumForQueryFiles20.jpg' height='160' width='160'/><media:title 
type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDkqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5761072391095671425</id><published>2012-07-03T22:23:08.000Z</published><updated>2013-05-11T05:42:42.362Z</updated><app:edited>2013-05-11T05:42:42.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5761072391095671425?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles19?authkey=Gv1sRgCNb_ofXV98b6pQE'/><l
 ink rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761072391095671425?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761072391095671425?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761072391095671425/acl?authkey=Gv1sRgCNb_ofXV98b6pQE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5761072391095671425</gphoto:id><gphoto:name>TestAlbumForQueryFiles19</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341354188000</gphoto:timestamp><gphoto:numphotos>2</gphoto:numphotos><gphoto:numphotosremaining>998</gphoto:numphotosremaining><
 
gphoto:bytesUsed>35320</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-3IaCTkfHZrg/T_Nw0PSRWoE/AAAAAAAALVs/qfty_7d7PrQ/TestAlbumForQueryFiles19.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-3IaCTkfHZrg/T_Nw0PSRWoE/AAAAAAAALVs/qfty_7d7PrQ/s160-c/TestAlbumForQueryFiles19.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDgqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5761069990379874001</id><published>2012-07-03T22:13:49.000Z</published><updated>2013-05-11T05:42:40.361Z</updated><app:edited>2013-05-11T05:42:40.361Z</app:edited><category
 scheme='http://schemas.google.c
 om/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5761069990379874001?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles18?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761069990379874001?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761069990379874001?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data
 
/entry/api/user/libgdata.picasaweb/albumid/5761069990379874001/acl?authkey=Gv1sRgCM71qOr5vt_WBQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5761069990379874001</gphoto:id><gphoto:name>TestAlbumForQueryFiles18</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341353629000</gphoto:timestamp><gphoto:numphotos>1</gphoto:numphotos><gphoto:numphotosremaining>999</gphoto:numphotosremaining><gphoto:bytesUsed>17660</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-_CMpenfeUws/T_Nuof7BZtE/AAAAAAAALG0/XJQcX_I44n0/TestAlbumForQueryFiles18.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh5.googleusercontent.com/-_CMpenfeUws/T_Nu
 of7BZtE/AAAAAAAALG0/XJQcX_I44n0/s160-c/TestAlbumForQueryFiles18.jpg' height='160' width='160'/><media:title 
type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5760704378574247089</id><published>2012-07-02T22:35:07.000Z</published><updated>2013-05-11T05:42:36.362Z</updated><app:edited>2013-05-11T05:42:36.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5760704378574247089?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles16?authkey=Gv1sRgCNSPm
 t7_x6C7CQ'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760704378574247089?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760704378574247089?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760704378574247089/acl?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5760704378574247089</gphoto:id><gphoto:name>TestAlbumForQueryFiles16</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341268507000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotos
 
remaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-lHmWO-UBQRw/T_IiHFz0lLE/AAAAAAAAKe4/AQqY9p2QfsA/TestAlbumForQueryFiles16.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-lHmWO-UBQRw/T_IiHFz0lLE/AAAAAAAAKe4/AQqY9p2QfsA/s160-c/TestAlbumForQueryFiles16.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDoqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5759113833317391041</id><published>2012-06-28T15:42:44.000Z</published><updated>2013-05-11T05:42:32.362Z</updated><app:edited>2013-05-11T05:42:32.362Z</app:edited><category
 scheme='http://schem
 as.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5759113833317391041?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles14?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5759113833317391041?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5759113833317391041?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.
 
google.com/data/entry/api/user/libgdata.picasaweb/albumid/5759113833317391041/acl?authkey=Gv1sRgCJW--rmMwM3d4QE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5759113833317391041</gphoto:id><gphoto:name>TestAlbumForQueryFiles14</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1340898164000</gphoto:timestamp><gphoto:numphotos>3</gphoto:numphotos><gphoto:numphotosremaining>997</gphoto:numphotosremaining><gphoto:bytesUsed>52980</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-VC-g0Oz6ZLY/T-x7hK_r2sE/AAAAAAAAKTE/Hv-2oC9b31I/TestAlbumForQueryFiles14.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh3.googleusercontent.com/-
 VC-g0Oz6ZLY/T-x7hK_r2sE/AAAAAAAAKTE/Hv-2oC9b31I/s160-c/TestAlbumForQueryFiles14.jpg' height='160' 
width='160'/><media:title type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5757505389449675537</id><published>2012-06-24T07:41:17.000Z</published><updated>2013-05-11T05:42:30.361Z</updated><app:edited>2013-05-11T05:42:30.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5757505389449675537?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles13?aut
 hkey=Gv1sRgCKj_lsPJ5d_YTw'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757505389449675537?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757505389449675537?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757505389449675537/acl?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5757505389449675537</gphoto:id><gphoto:name>TestAlbumForQueryFiles13</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1340523677000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</
 
gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-Jn0C3tOdK78/T-bEpaqLgxE/AAAAAAAAKPk/gxGcgtizd1I/TestAlbumForQueryFiles13.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Jn0C3tOdK78/T-bEpaqLgxE/AAAAAAAAKPk/gxGcgtizd1I/s160-c/TestAlbumForQueryFiles13.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5757504621534543681</id><published>2012-06-24T07:38:18.000Z</published><updated>2013-05-11T05:42:28.362Z</updated><app:edited>2013-05-11T05:42:28.362Z</app:edited><category
 sche
 me='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/><title>Test 
album for QueryFiles</title><summary/><rights>private</rights><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5757504621534543681?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles12?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757504621534543681?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757504621534543681?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https:
 
//picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757504621534543681/acl?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5757504621534543681</gphoto:id><gphoto:name>TestAlbumForQueryFiles12</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1340523498000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-ud4Tyk1ot80/T-bD8t88f0E/AAAAAAAAKMc/yLbDw9n8a_A/TestAlbumForQueryFiles12.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh4.googleuserco
 ntent.com/-ud4Tyk1ot80/T-bD8t88f0E/AAAAAAAAKMc/yLbDw9n8a_A/s160-c/TestAlbumForQueryFiles12.jpg' height='160' 
width='160'/><media:title type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753929134212548337</id><published>2012-06-14T16:23:38.000Z</published><updated>2013-05-11T05:42:26.362Z</updated><app:edited>2013-05-11T05:42:26.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753929134212548337?authkey=Gv1sRgCJvFuebTieC7-wE'/><link
 rel='alternate' type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQuer
 yFiles11?authkey=Gv1sRgCJvFuebTieC7-wE'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753929134212548337?authkey=Gv1sRgCJvFuebTieC7-wE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753929134212548337?authkey=Gv1sRgCJvFuebTieC7-wE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753929134212548337/acl?authkey=Gv1sRgCJvFuebTieC7-wE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753929134212548337</gphoto:id><gphoto:name>TestAlbumForQueryFiles11</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339691018000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphoto
 
sremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-ejI_vobZ1Ds/T9oQD9uChvE/AAAAAAAAKIg/lQKE_z9GplE/TestAlbumForQueryFiles11.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-ejI_vobZ1Ds/T9oQD9uChvE/AAAAAAAAKIg/lQKE_z9GplE/s160-c/TestAlbumForQueryFiles11.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753922778648887201</id><published>2012-06-14T15:58:59.000Z</published><updated>2013-05-11T05:42:24.361Z</updated><app:edited>2013-05-11T05:42:24.361Z</app:edite
 d><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753922778648887201?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles10?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753922778648887201?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753922778648887201?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+x
 ml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753922778648887201/acl?authkey=Gv1sRgCJGelsSrkob2Kg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753922778648887201</gphoto:id><gphoto:name>TestAlbumForQueryFiles10</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339689539000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-NC_89o6Ov1I/T9oKSBZlP6E/AAAAAAAAKE4/KmM1aPTC7mk/TestAlbumForQueryFiles10.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://
 
lh3.googleusercontent.com/-NC_89o6Ov1I/T9oKSBZlP6E/AAAAAAAAKE4/KmM1aPTC7mk/s160-c/TestAlbumForQueryFiles10.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753917582035390849</id><published>2012-06-14T15:38:49.000Z</published><updated>2013-05-11T05:42:22.362Z</updated><app:edited>2013-05-11T05:42:22.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753917582035390849?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link
 rel='alternate' type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb/T
 estAlbumForQueryFiles09?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753917582035390849?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753917582035390849?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753917582035390849/acl?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753917582035390849</gphoto:id><gphoto:name>TestAlbumForQueryFiles09</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339688329000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gpho
 
to:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-qxwST4CVdvE/T9oFjigYEYE/AAAAAAAAKBE/fpCYLGA-oZg/TestAlbumForQueryFiles09.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-qxwST4CVdvE/T9oFjigYEYE/AAAAAAAAKBE/fpCYLGA-oZg/s160-c/TestAlbumForQueryFiles09.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753916884198822849</id><published>2012-06-14T15:36:07.000Z</published><updated>2013-05-11T05:42:20.361Z</updated><app:edited>2013-05-11T05:42:20.361Z
 </app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753916884198822849?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles08?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916884198822849?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916884198822849?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='applica
 tion/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916884198822849/acl?authkey=Gv1sRgCLuR2oy73OHvaw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753916884198822849</gphoto:id><gphoto:name>TestAlbumForQueryFiles08</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339688167000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-FOxdF0LPDhA/T9oE663LE8E/AAAAAAAAJ9g/hTGNXOeBiTU/TestAlbumForQueryFiles08.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail ur
 
l='https://lh4.googleusercontent.com/-FOxdF0LPDhA/T9oE663LE8E/AAAAAAAAJ9g/hTGNXOeBiTU/s160-c/TestAlbumForQueryFiles08.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753916203664692769</id><published>2012-06-14T15:33:29.000Z</published><updated>2013-05-11T05:42:18.362Z</updated><app:edited>2013-05-11T05:42:18.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753916203664692769?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link
 rel='alternate' type='text/html' href='https://picasaweb.google.com/libgdata.
 picasaweb/TestAlbumForQueryFiles07?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916203664692769?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916203664692769?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916203664692769/acl?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753916203664692769</gphoto:id><gphoto:name>TestAlbumForQueryFiles07</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339688009000</gphoto:timestamp><gphoto:numphotos>4</gphoto:nump
 
hotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-tB_pI_r6ZtY/T9oETTrMViE/AAAAAAAAJ58/hxxcJ6W5eYA/TestAlbumForQueryFiles07.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-tB_pI_r6ZtY/T9oETTrMViE/AAAAAAAAJ58/hxxcJ6W5eYA/s160-c/TestAlbumForQueryFiles07.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753915421170356833</id><published>2012-06-14T15:30:27.000Z</published><updated>2013-05-11T05:42:16.362Z</updated><app:edited>2013-05-11T05
 :42:16.362Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753915421170356833?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles06?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753915421170356833?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753915421170356833?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' ty
 pe='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753915421170356833/acl?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753915421170356833</gphoto:id><gphoto:name>TestAlbumForQueryFiles06</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339687827000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-cEi8DqY4EMA/T9oDlwqAUmE/AAAAAAAAJ2U/CQsgVJCWVLY/TestAlbumForQueryFiles06.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:t
 humbnail 
url='https://lh5.googleusercontent.com/-cEi8DqY4EMA/T9oDlwqAUmE/AAAAAAAAJ2U/CQsgVJCWVLY/s160-c/TestAlbumForQueryFiles06.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753913257635658289</id><published>2012-06-14T15:22:02.000Z</published><updated>2013-05-11T05:42:14.361Z</updated><app:edited>2013-05-11T05:42:14.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753913257635658289?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='alternate' type='text/html' href='https://picasaweb.google.c
 om/libgdata.picasaweb/TestAlbumForQueryFiles05?authkey=Gv1sRgCL715cypqrn54gE'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753913257635658289?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753913257635658289?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753913257635658289/acl?authkey=Gv1sRgCL715cypqrn54gE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753913257635658289</gphoto:id><gphoto:name>TestAlbumForQueryFiles05</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339687322000</gphoto:timestamp><gphoto:numphoto
 
s>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-1cOVqarpanM/T9oBn03IujE/AAAAAAAAJyw/KxitT1LtH3g/TestAlbumForQueryFiles05.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-1cOVqarpanM/T9oBn03IujE/AAAAAAAAJyw/KxitT1LtH3g/s160-c/TestAlbumForQueryFiles05.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753909460100672145</id><published>2012-06-14T15:07:18.000Z</published><updated>2013-05-11T05:42:12.362Z</updated><app:edit
 ed>2013-05-11T05:42:12.362Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753909460100672145?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles04?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909460100672145?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909460100672145?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='http://schemas.google.com/acl/2007#a
 ccessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909460100672145/acl?authkey=Gv1sRgCKuMk9vW3ubdygE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753909460100672145</gphoto:id><gphoto:name>TestAlbumForQueryFiles04</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339686438000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-cFWrSd8mpAY/T9n-Kx8PapE/AAAAAAAAJvE/ZeXQ8DRvZSs/TestAlbumForQueryFiles04.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><med
 ia:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-cFWrSd8mpAY/T9n-Kx8PapE/AAAAAAAAJvE/ZeXQ8DRvZSs/s160-c/TestAlbumForQueryFiles04.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753909201230338145</id><published>2012-06-14T15:06:17.000Z</published><updated>2013-05-11T05:42:10.362Z</updated><app:edited>2013-05-11T05:42:10.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753909201230338145?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='alternate' type='text/html' href='https:
 //picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles03?authkey=Gv1sRgCIW965XfrpvzFw'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909201230338145?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909201230338145?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909201230338145/acl?authkey=Gv1sRgCIW965XfrpvzFw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753909201230338145</gphoto:id><gphoto:name>TestAlbumForQueryFiles03</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339686377000</gphoto:timestamp>
 
<gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-Bmi14ws5AM0/T9n97tkvmGE/AAAAAAAAJrg/ysK_cWkLCy8/TestAlbumForQueryFiles03.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Bmi14ws5AM0/T9n97tkvmGE/AAAAAAAAJrg/ysK_cWkLCy8/s160-c/TestAlbumForQueryFiles03.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDoqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5731216873649428225</id><published>2012-04-14T11:28:32.000Z</published><updated>2013-05-11T05:42:08.361Z</u
 pdated><app:edited>2013-05-11T05:42:08.361Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5731216873649428225?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles02?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5731216873649428225?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5731216873649428225?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='http://schemas.google.co
 m/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5731216873649428225/acl?authkey=Gv1sRgCKbgqrLhl-2zZA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5731216873649428225</gphoto:id><gphoto:name>TestAlbumForQueryFiles02</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1334402912000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-y_4o7bv_0g8/T4lfYZyZVwE/AAAAAAAAJn8/ugcSPsZG_2Y/TestAlbumForQueryFiles02.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description type='p
 lain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-y_4o7bv_0g8/T4lfYZyZVwE/AAAAAAAAJn8/ugcSPsZG_2Y/s160-c/TestAlbumForQueryFiles02.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDoqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5656529313960281697</id><published>2011-09-26T05:01:26.000Z</published><updated>2013-05-11T05:42:06.361Z</updated><app:edited>2013-05-11T05:42:06.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5656529313960281697?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='alternate' type='text/html' h
 
ref='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656529313960281697?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656529313960281697?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656529313960281697/acl?authkey=Gv1sRgCMTFotGeweT6cg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5656529313960281697</gphoto:id><gphoto:name>TestAlbumForQueryFiles</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1317013286000</gphoto:tim
 
estamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-6p9wKSiQbf8/ToAHcQQvxmE/AAAAAAAAI6g/WLzZSL61RzQ/TestAlbumForQueryFiles.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-6p9wKSiQbf8/ToAHcQQvxmE/AAAAAAAAI6g/WLzZSL61RzQ/s160-c/TestAlbumForQueryFiles.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;Xip7ImA_&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5656528945499827137</id><published>2011-09-26T05:01:15.000Z</published><updated>2013-05-11T05:42:04.362Z
 </updated><app:edited>2013-05-11T05:42:04.362Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Drop Box</title><summary>Default album for newly 
uploaded photos.</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5656528945499827137?authkey=Gv1sRgCJimnOPo4qP_aA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/DropBox?authkey=Gv1sRgCJimnOPo4qP_aA'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656528945499827137?authkey=Gv1sRgCJimnOPo4qP_aA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656528945499827137?authkey=Gv1sRgCJimnOPo4qP_aA'/><link
 rel='http:/
 /schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656528945499827137/acl?authkey=Gv1sRgCJimnOPo4qP_aA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5656528945499827137</gphoto:id><gphoto:name>DropBox</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1317013275000</gphoto:timestamp><gphoto:numphotos>12</gphoto:numphotos><gphoto:numphotosremaining>988</gphoto:numphotosremaining><gphoto:bytesUsed>211920</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:albumType>Default</gphoto:albumType><media:group><media:content
 url='https://lh6.googleusercontent.com/-I1YjlfQG5kY/ToAHGzo7a8E/AAAAAAAALmQ/YeJ6gUuivA8/DropBox.jpg' 
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:cre
 dit><media:description type='plain'>Default album for newly uploaded 
photos.</media:description><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-I1YjlfQG5kY/ToAHGzo7a8E/AAAAAAAALmQ/YeJ6gUuivA8/s160-c/DropBox.jpg' 
height='160' width='160'/><media:title type='plain'>Drop Box</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5760706460596781425</id><published>2012-07-02T22:43:13.000Z</published><updated>2013-05-11T05:42:38.362Z</updated><app:edited>2013-05-11T05:42:38.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5760706460596781425?authkey=Gv1sRgCK
 Do4Mbw67DytQE'/><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles17?authkey=Gv1sRgCKDo4Mbw67DytQE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760706460596781425?authkey=Gv1sRgCKDo4Mbw67DytQE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760706460596781425?authkey=Gv1sRgCKDo4Mbw67DytQE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760706460596781425/acl?authkey=Gv1sRgCKDo4Mbw67DytQE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5760706460596781425</gphoto:id><gphoto:name>TestAlbumForQueryFiles17</gphoto:name><gphoto:location/><gphoto:access>pr
 
ivate</gphoto:access><gphoto:timestamp>1341268993000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-jCbAOlu4SwU/T_IkAR8rQXE/AAAAAAAAKs8/LMYVB0SQESc/TestAlbumForQueryFiles17.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-jCbAOlu4SwU/T_IkAR8rQXE/AAAAAAAAKs8/LMYVB0SQESc/s160-c/TestAlbumForQueryFiles17.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5760702986482787089</id><published>2
 
012-07-02T22:29:44.000Z</published><updated>2013-05-11T05:42:34.361Z</updated><app:edited>2013-05-11T05:42:34.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5760702986482787089?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles15?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760702986482787089?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/576070298648278
 7089?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link rel='http://schemas.google.com/acl/2007#accessControlList' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760702986482787089/acl?authkey=Gv1sRgCKO5mpeQwZjDHg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5760702986482787089</gphoto:id><gphoto:name>TestAlbumForQueryFiles15</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341268184000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-y1OSyupQ3TI/T_Ig2D3WoxE/AAAAAAAAKbI/Jcqk_xxtj-U/TestAlbumForQueryFiles15.jpg'
 type='image/jpeg' medium='image'/><m
 edia:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-y1OSyupQ3TI/T_Ig2D3WoxE/AAAAAAAAKbI/Jcqk_xxtj-U/s160-c/TestAlbumForQueryFiles15.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905633591451744097</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T11:54:30.296Z</updated><app:edited>2013-07-28T11:54:30.296Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasawe
 b/albumid/5905633591451744097?authkey=Gv1sRgCJaWsta275GJzgE'/><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos55?authkey=Gv1sRgCJaWsta275GJzgE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905633591451744097?authkey=Gv1sRgCJaWsta275GJzgE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905633591451744097?authkey=Gv1sRgCJaWsta275GJzgE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905633591451744097/acl?authkey=Gv1sRgCJaWsta275GJzgE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905633591451744097</gphoto:id><gphoto:name>ThanksgivingPhotos55</gphoto:na
 me><gphoto:location>Winnipeg, 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-pmMLIzS2Aj4/UfUGdkgYd2E/AAAAAAAAL9s/2v2L2yYDmLQ/ThanksgivingPhotos55.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-pmMLIzS2Aj4/UfUGdkgYd2E/AAAAAAAAL9s/2v2L2yYDmLQ/s160-c/ThanksgivingPhotos55.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><id>https://pica
 
saweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635041987434177</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:08.375Z</updated><app:edited>2013-07-28T12:00:08.375Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635041987434177?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos59?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635041987434177?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='edit' 
 type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635041987434177?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635041987434177/acl?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635041987434177</gphoto:id><gphoto:name>ThanksgivingPhotos59</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='
 https://lh3.googleusercontent.com/-YTqHGHexKLY/UfUHyALClsE/AAAAAAAAMAw/Q5ZgS1NABNA/ThanksgivingPhotos59.jpg' 
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-YTqHGHexKLY/UfUHyALClsE/AAAAAAAAMAw/Q5ZgS1NABNA/s160-c/ThanksgivingPhotos59.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635046618559681</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:09.368Z</updated><app:edited>2013-07-28T12:00:09.368Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</
 summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635046618559681?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos61?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635046618559681?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635046618559681?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635046618559681/acl?authkey=Gv1sRgCOqknJaSsdXxFA'/><author><name>li
 
bgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635046618559681</gphoto:id><gphoto:name>ThanksgivingPhotos61</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-L4nk2EiXVJc/UfUHyRbL9ME/AAAAAAAAMA4/50NgPYLQv2U/ThanksgivingPhotos61.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-L4nk2EiXVJc/UfUHyRbL9ME/AAAAAAAAMA4/50NgPYLQv2U/s160-c/Thanksgivin
 gPhotos61.jpg' height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635048265698337</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:08.587Z</updated><app:edited>2013-07-28T12:00:08.587Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635048265698337?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos60?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='self' typ
 e='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635048265698337?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635048265698337?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635048265698337/acl?authkey=Gv1sRgCPm6muuhnruL2AE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635048265698337</gphoto:id><gphoto:name>ThanksgivingPhotos60</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosrem
 
aining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-NgBV9nWzKgQ/UfUHyXj5TCE/AAAAAAAAMA0/gyOw1o0LsCc/ThanksgivingPhotos60.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NgBV9nWzKgQ/UfUHyXj5TCE/AAAAAAAAMA0/gyOw1o0LsCc/s160-c/ThanksgivingPhotos60.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635052696078545</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:09.696Z</updated><app:edited>2013-07-28T12:00:09.696Z</app:edited><cate
 gory scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635052696078545?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos62?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635052696078545?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635052696078545?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type=
 'application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635052696078545/acl?authkey=Gv1sRgCJ78iPjynMP6bA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635052696078545</gphoto:id><gphoto:name>ThanksgivingPhotos62</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-dDzC8AUT39c/UfUHyoELiNE/AAAAAAAAMA8/iK9D08hMeZg/ThanksgivingPhotos62.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family phot
 os of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-dDzC8AUT39c/UfUHyoELiNE/AAAAAAAAMA8/iK9D08hMeZg/s160-c/ThanksgivingPhotos62.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905636964804120545</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:07:35.751Z</updated><app:edited>2013-07-28T12:07:35.751Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905636964804120545?authkey=Gv1sRgCOPnh9WK
 0O-KGA'/><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos67?authkey=Gv1sRgCOPnh9WK0O-KGA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964804120545?authkey=Gv1sRgCOPnh9WK0O-KGA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964804120545?authkey=Gv1sRgCOPnh9WK0O-KGA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964804120545/acl?authkey=Gv1sRgCOPnh9WK0O-KGA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905636964804120545</gphoto:id><gphoto:name>ThanksgivingPhotos67</gphoto:name><gphoto:location>Winnipeg,
 MN</gphoto:location><gphoto
 
:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-URP8xignqeI/UfUJh7OQz-E/AAAAAAAAMEA/uOLQL8yxb8o/ThanksgivingPhotos67.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-URP8xignqeI/UfUJh7OQz-E/AAAAAAAAMEA/uOLQL8yxb8o/s160-c/ThanksgivingPhotos67.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/album
 
id/5905636964871966001</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:07:35.315Z</updated><app:edited>2013-07-28T12:07:35.315Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905636964871966001?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos66?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964871966001?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='edit' type='application/atom+xml' href='https://picasaweb.google.c
 om/data/entry/api/user/libgdata.picasaweb/albumid/5905636964871966001?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964871966001/acl?authkey=Gv1sRgCNqbzKuF-cCeLg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905636964871966001</gphoto:id><gphoto:name>ThanksgivingPhotos66</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh4.googleusercontent.com/-RKs5J2Fv4Xs/UfUJh7ecDTE/AAA
 AAAAAMD8/ShmhXZiX02k/ThanksgivingPhotos66.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description type='plain'>Family photos 
of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-RKs5J2Fv4Xs/UfUJh7ecDTE/AAAAAAAAMD8/ShmhXZiX02k/s160-c/ThanksgivingPhotos66.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905636968138062433</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:07:35.751Z</updated><app:edited>2013-07-28T12:07:35.751Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.goog
 le.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905636968138062433?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos68?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636968138062433?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636968138062433?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636968138062433/acl?authkey=Gv1sRgCPfTjKWOu7_sCg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgd
 
ata.picasaweb</uri></author><gphoto:id>5905636968138062433</gphoto:id><gphoto:name>ThanksgivingPhotos68</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-wEsnbQ5ds-Q/UfUJiHpIumE/AAAAAAAAMEE/yJzlfrX0QnM/ThanksgivingPhotos68.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-wEsnbQ5ds-Q/UfUJiHpIumE/AAAAAAAAMEE/yJzlfrX0QnM/s160-c/ThanksgivingPhotos68.jpg'
 height='160' width='160'/><media:title type='pl
 ain'>Thanksgiving photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905637896892105825</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:11:12.157Z</updated><app:edited>2013-07-28T12:11:12.157Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905637896892105825?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos72?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data
 /entry/api/user/libgdata.picasaweb/albumid/5905637896892105825?authkey=Gv1sRgCKvL352GnPmJbw'/><link 
rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637896892105825?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637896892105825/acl?authkey=Gv1sRgCKvL352GnPmJbw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905637896892105825</gphoto:id><gphoto:name>ThanksgivingPhotos72</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.
 picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-Yp2EbjWQTqU/UfUKYLhWxGE/AAAAAAAAMHA/D3vQHf4qmGs/ThanksgivingPhotos72.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-Yp2EbjWQTqU/UfUKYLhWxGE/AAAAAAAAMHA/D3vQHf4qmGs/s160-c/ThanksgivingPhotos72.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry></feed>
+  
diff --git a/gdata/tests/traces/picasaweb/query-all-albums-async-progress-closure 
b/gdata/tests/traces/picasaweb/query-all-albums-async-progress-closure
new file mode 100644
index 0000000..aaf432c
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query-all-albums-async-progress-closure
@@ -0,0 +1,30 @@
+> GET /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375013849
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 35 (0x7fffe40148e0), SoupSocket 16 (0x8a4230)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375013849
+< Soup-Debug: SoupMessage 35 (0x7fffe40148e0)
+< Expires: Sun, 28 Jul 2013 12:17:29 GMT
+< Date: Sun, 28 Jul 2013 12:17:29 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=-OzW6AvTw9bt; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=shhRxGb4G3CzF3UjjkQxGA; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CU8ASXs5eyp7ImA9WhFWEEw."
+< Last-Modified: Sun, 28 Jul 2013 12:17:28 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CU8ASXs5eyp7ImA9WhFWEEw.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-28T12:17:28.523Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>38</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:
 
itemsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639511868877409</id><published>2013-07-28T12:17:28.000Z</published><updated>2013-07-28T12:17:28.523Z</updated><app:edited>2013-07-28T12:17:28.523Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.googl
 
e.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639511868877409?authkey=Gv1sRgCOuurKfM1-mD2gE'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums35?authkey=Gv1sRgCOuurKfM1-mD2gE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639511868877409?authkey=Gv1sRgCOuurKfM1-mD2gE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639511868877409?authkey=Gv1sRgCOuurKfM1-mD2gE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639511868877409/acl?authkey=Gv1sRgCOuurKfM1-mD2gE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639511868877409</gph
 
oto:id><gphoto:name>TestAlbum4ForQueryAllAlbums35</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013848000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-NOKceedwNd0/UfUL2Lx0qmE/AAAAAAAAMI8/miZ6T_7nUBQ/TestAlbum4ForQueryAllAlbums35.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-NOKceedwNd0/UfUL2Lx0qmE/AAAAAAAAMI8/miZ6T_7nUBQ/s160-c/TestAlbum4ForQueryAllAlbums35.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><
 
id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639504634394289</id><published>2013-07-28T12:17:27.000Z</published><updated>2013-07-28T12:17:27.685Z</updated><app:edited>2013-07-28T12:17:27.685Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639504634394289?authkey=Gv1sRgCP710K_64ayFBg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums36?authkey=Gv1sRgCP710K_64ayFBg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639504634394289?authkey=Gv1sRgCP710K_64ayFBg'/><link
 rel='edit' typ
 e='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639504634394289?authkey=Gv1sRgCP710K_64ayFBg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639504634394289/acl?authkey=Gv1sRgCP710K_64ayFBg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639504634394289</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums36</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013847000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh3.googleusercon
 tent.com/-p8buLzcC-gw/UfUL1w0_NrE/AAAAAAAAMI4/Ff7a38vq7mY/TestAlbum3ForQueryAllAlbums36.jpg' 
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-p8buLzcC-gw/UfUL1w0_NrE/AAAAAAAAMI4/Ff7a38vq7mY/s160-c/TestAlbum3ForQueryAllAlbums36.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639507447689361</id><published>2013-07-28T12:17:26.000Z</published><updated>2013-07-28T12:17:27.057Z</updated><app:edited>2013-07-28T12:17:27.057Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.
 com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639507447689361?authkey=Gv1sRgCPCO7uD_mfC2ggE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums37?authkey=Gv1sRgCPCO7uD_mfC2ggE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639507447689361?authkey=Gv1sRgCPCO7uD_mfC2ggE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639507447689361?authkey=Gv1sRgCPCO7uD_mfC2ggE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639507447689361/acl?authkey=Gv1sRgCPCO7uD_mfC2ggE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.googl
 
e.com/libgdata.picasaweb</uri></author><gphoto:id>5905639507447689361</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums37</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013846000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-V8mI3sGlIgA/UfUL17TusJE/AAAAAAAAMI0/kJ10xO49pAw/TestAlbum2ForQueryAllAlbums37.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-V8mI3sGlIgA/UfUL17TusJE/AAAAAAAAMI0/kJ10xO49pAw/s160-c/TestAlbum2ForQueryAllAlbums37.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for QueryAllAlbums<
 /media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639500699371649</id><published>2013-07-28T12:17:25.000Z</published><updated>2013-07-28T12:17:26.129Z</updated><app:edited>2013-07-28T12:17:26.129Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639500699371649?authkey=Gv1sRgCLf-xL6P6pfFVg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums39?authkey=Gv1sRgCLf-xL6P6pfFVg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/album
 id/5905639500699371649?authkey=Gv1sRgCLf-xL6P6pfFVg'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639500699371649?authkey=Gv1sRgCLf-xL6P6pfFVg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639500699371649/acl?authkey=Gv1sRgCLf-xL6P6pfFVg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639500699371649</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums39</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013845000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</
 gphoto:nickname><media:group><media:content 
url='https://lh6.googleusercontent.com/-Cs9ck-x2qNY/UfUL1iKziIE/AAAAAAAAMIw/CASPL2f9gAI/TestAlbum1ForQueryAllAlbums39.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Cs9ck-x2qNY/UfUL1iKziIE/AAAAAAAAMIw/CASPL2f9gAI/s160-c/TestAlbum1ForQueryAllAlbums39.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905637904987587057</id><published>2013-07-28T12:11:14.000Z</published><updated>2013-07-28T12:11:14.897Z</updated><app:edited>2013-07-28T12:11:14.897Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for QueryFiles</title
<summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905637904987587057?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles22?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637904987587057?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637904987587057?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637904987587057/acl?authkey=Gv1sRgCO3l3Iv359a_NA'/><author><
 
name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905637904987587057</gphoto:id><gphoto:name>TestAlbumForQueryFiles22</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013474000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-E22LuaZ2ZVE/UfUKYpreAfE/AAAAAAAAMHM/wUIafPZkKlM/TestAlbumForQueryFiles22.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-E22LuaZ2ZVE/UfUKYpreAfE/AAAAAAAAMHM/wUIafPZkKlM/s160-c/TestAlbumForQueryFiles22.jpg'
 height='160' width='160'/><media:title ty
 pe='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635064104222385</id><published>2013-07-28T12:00:12.000Z</published><updated>2013-07-28T12:00:13.067Z</updated><app:edited>2013-07-28T12:00:13.067Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635064104222385?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles21?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/u
 ser/libgdata.picasaweb/albumid/5905635064104222385?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link rel='edit' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635064104222385?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635064104222385/acl?authkey=Gv1sRgCN2f-tLrn6u20gE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635064104222385</gphoto:id><gphoto:name>TestAlbumForQueryFiles21</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375012812000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nic
 kname>libgdata.picasaweb</gphoto:nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-gdDQDMYGH_E/UfUHzSkF_rE/AAAAAAAAMBI/kQIzvG3cSQs/TestAlbumForQueryFiles21.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-gdDQDMYGH_E/UfUHzSkF_rE/AAAAAAAAMBI/kQIzvG3cSQs/s160-c/TestAlbumForQueryFiles21.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905634684141771345</id><published>2013-07-28T11:57:49.000Z</published><updated>2013-07-28T11:58:44.594Z</updated><app:edited>2013-07-28T11:58:44.594Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for Query
 AllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905634684141771345?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums18?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634684141771345?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634684141771345?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634684141771345/acl?authkey=Gv1sRgC
 
Kq9yeTElsz-uwE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905634684141771345</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums18</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375012669000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-O-Wcn8SfT10/UfUHdLF_GlE/AAAAAAAAL98/EmD4-Bu78rI/TestAlbum2ForQueryAllAlbums18.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-O-Wcn8SfT10/UfUHdLF_GlE/AAAAAAAAL98/EmD4-Bu78rI/s160-c/TestAlbum2ForQueryAllAlbums18.jpg'
 
 height='160' width='160'/><media:title type='plain'>Test album 2 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905634444921273185</id><published>2013-07-28T11:57:48.000Z</published><updated>2013-07-28T11:57:48.534Z</updated><app:edited>2013-07-28T11:57:48.534Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905634444921273185?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums20?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='self' type='application/ato
 m+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634444921273185?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634444921273185?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634444921273185/acl?authkey=Gv1sRgCID4oobz9aPCrAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905634444921273185</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums20</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375012668000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:byt
 
esUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-51tuKhkL2wA/UfUHPP7X-2E/AAAAAAAAL94/bLrA3RL2Pbk/TestAlbum1ForQueryAllAlbums20.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-51tuKhkL2wA/UfUHPP7X-2E/AAAAAAAAL94/bLrA3RL2Pbk/s160-c/TestAlbum1ForQueryAllAlbums20.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905631091580133985</id><published>2013-07-28T11:44:48.000Z</published><updated>2013-07-28T11:44:48.376Z</updated><app:edited>2013-07-28T11:44:48.376Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' te
 rm='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles20?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/li
 
bgdata.picasaweb/albumid/5905631091580133985/acl?authkey=Gv1sRgCIuFurSynOKIeQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905631091580133985</gphoto:id><gphoto:name>TestAlbumForQueryFiles20</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375011888000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-TVDcmOZrysI/UfUEMDwi4mE/AAAAAAAAL64/wrBf3Cdp9po/TestAlbumForQueryFiles20.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-TVDcmOZrysI/UfUEMDwi4mE/AAAAAAAAL64/w
 rBf3Cdp9po/s160-c/TestAlbumForQueryFiles20.jpg' height='160' width='160'/><media:title type='plain'>Test 
album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDkqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5761072391095671425</id><published>2012-07-03T22:23:08.000Z</published><updated>2013-05-11T05:42:42.362Z</updated><app:edited>2013-05-11T05:42:42.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5761072391095671425?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles19?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 r
 el='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761072391095671425?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761072391095671425?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761072391095671425/acl?authkey=Gv1sRgCNb_ofXV98b6pQE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5761072391095671425</gphoto:id><gphoto:name>TestAlbumForQueryFiles19</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341354188000</gphoto:timestamp><gphoto:numphotos>2</gphoto:numphotos><gphoto:numphotosremaining>998</gphoto:numphotosremaining><gphot
 
o:bytesUsed>35320</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-3IaCTkfHZrg/T_Nw0PSRWoE/AAAAAAAALVs/qfty_7d7PrQ/TestAlbumForQueryFiles19.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-3IaCTkfHZrg/T_Nw0PSRWoE/AAAAAAAALVs/qfty_7d7PrQ/s160-c/TestAlbumForQueryFiles19.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDgqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5761069990379874001</id><published>2012-07-03T22:13:49.000Z</published><updated>2013-05-11T05:42:40.361Z</updated><app:edited>2013-05-11T05:42:40.361Z</app:edited><category
 scheme='http://schemas.google.com/g/
 2005#kind' term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5761069990379874001?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles18?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761069990379874001?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761069990379874001?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entr
 
y/api/user/libgdata.picasaweb/albumid/5761069990379874001/acl?authkey=Gv1sRgCM71qOr5vt_WBQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5761069990379874001</gphoto:id><gphoto:name>TestAlbumForQueryFiles18</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341353629000</gphoto:timestamp><gphoto:numphotos>1</gphoto:numphotos><gphoto:numphotosremaining>999</gphoto:numphotosremaining><gphoto:bytesUsed>17660</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-_CMpenfeUws/T_Nuof7BZtE/AAAAAAAALG0/XJQcX_I44n0/TestAlbumForQueryFiles18.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh5.googleusercontent.com/-_CMpenfeUws/T_Nuof7BZ
 tE/AAAAAAAALG0/XJQcX_I44n0/s160-c/TestAlbumForQueryFiles18.jpg' height='160' width='160'/><media:title 
type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5760704378574247089</id><published>2012-07-02T22:35:07.000Z</published><updated>2013-05-11T05:42:36.362Z</updated><app:edited>2013-05-11T05:42:36.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5760704378574247089?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles16?authkey=Gv1sRgCNSPmt7_x6
 C7CQ'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760704378574247089?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760704378574247089?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760704378574247089/acl?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5760704378574247089</gphoto:id><gphoto:name>TestAlbumForQueryFiles16</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341268507000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremai
 
ning><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-lHmWO-UBQRw/T_IiHFz0lLE/AAAAAAAAKe4/AQqY9p2QfsA/TestAlbumForQueryFiles16.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-lHmWO-UBQRw/T_IiHFz0lLE/AAAAAAAAKe4/AQqY9p2QfsA/s160-c/TestAlbumForQueryFiles16.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDoqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5759113833317391041</id><published>2012-06-28T15:42:44.000Z</published><updated>2013-05-11T05:42:32.362Z</updated><app:edited>2013-05-11T05:42:32.362Z</app:edited><category
 scheme='http://schemas.go
 ogle.com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5759113833317391041?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles14?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5759113833317391041?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5759113833317391041?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.googl
 
e.com/data/entry/api/user/libgdata.picasaweb/albumid/5759113833317391041/acl?authkey=Gv1sRgCJW--rmMwM3d4QE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5759113833317391041</gphoto:id><gphoto:name>TestAlbumForQueryFiles14</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1340898164000</gphoto:timestamp><gphoto:numphotos>3</gphoto:numphotos><gphoto:numphotosremaining>997</gphoto:numphotosremaining><gphoto:bytesUsed>52980</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-VC-g0Oz6ZLY/T-x7hK_r2sE/AAAAAAAAKTE/Hv-2oC9b31I/TestAlbumForQueryFiles14.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh3.googleusercontent.com/-VC-g0
 Oz6ZLY/T-x7hK_r2sE/AAAAAAAAKTE/Hv-2oC9b31I/s160-c/TestAlbumForQueryFiles14.jpg' height='160' 
width='160'/><media:title type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5757505389449675537</id><published>2012-06-24T07:41:17.000Z</published><updated>2013-05-11T05:42:30.361Z</updated><app:edited>2013-05-11T05:42:30.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5757505389449675537?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles13?authkey=
 Gv1sRgCKj_lsPJ5d_YTw'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757505389449675537?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757505389449675537?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757505389449675537/acl?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5757505389449675537</gphoto:id><gphoto:name>TestAlbumForQueryFiles13</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1340523677000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphot
 
o:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-Jn0C3tOdK78/T-bEpaqLgxE/AAAAAAAAKPk/gxGcgtizd1I/TestAlbumForQueryFiles13.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Jn0C3tOdK78/T-bEpaqLgxE/AAAAAAAAKPk/gxGcgtizd1I/s160-c/TestAlbumForQueryFiles13.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5757504621534543681</id><published>2012-06-24T07:38:18.000Z</published><updated>2013-05-11T05:42:28.362Z</updated><app:edited>2013-05-11T05:42:28.362Z</app:edited><category
 scheme='h
 ttp://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/><title>Test album 
for QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5757504621534543681?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles12?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757504621534543681?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757504621534543681?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://pic
 
asaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757504621534543681/acl?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5757504621534543681</gphoto:id><gphoto:name>TestAlbumForQueryFiles12</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1340523498000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-ud4Tyk1ot80/T-bD8t88f0E/AAAAAAAAKMc/yLbDw9n8a_A/TestAlbumForQueryFiles12.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh4.googleusercontent
 .com/-ud4Tyk1ot80/T-bD8t88f0E/AAAAAAAAKMc/yLbDw9n8a_A/s160-c/TestAlbumForQueryFiles12.jpg' height='160' 
width='160'/><media:title type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753929134212548337</id><published>2012-06-14T16:23:38.000Z</published><updated>2013-05-11T05:42:26.362Z</updated><app:edited>2013-05-11T05:42:26.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753929134212548337?authkey=Gv1sRgCJvFuebTieC7-wE'/><link
 rel='alternate' type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFile
 s11?authkey=Gv1sRgCJvFuebTieC7-wE'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753929134212548337?authkey=Gv1sRgCJvFuebTieC7-wE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753929134212548337?authkey=Gv1sRgCJvFuebTieC7-wE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753929134212548337/acl?authkey=Gv1sRgCJvFuebTieC7-wE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753929134212548337</gphoto:id><gphoto:name>TestAlbumForQueryFiles11</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339691018000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosrema
 
ining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-ejI_vobZ1Ds/T9oQD9uChvE/AAAAAAAAKIg/lQKE_z9GplE/TestAlbumForQueryFiles11.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-ejI_vobZ1Ds/T9oQD9uChvE/AAAAAAAAKIg/lQKE_z9GplE/s160-c/TestAlbumForQueryFiles11.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753922778648887201</id><published>2012-06-14T15:58:59.000Z</published><updated>2013-05-11T05:42:24.361Z</updated><app:edited>2013-05-11T05:42:24.361Z</app:edited><ca
 tegory scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753922778648887201?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles10?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753922778648887201?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753922778648887201?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' h
 
ref='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753922778648887201/acl?authkey=Gv1sRgCJGelsSrkob2Kg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753922778648887201</gphoto:id><gphoto:name>TestAlbumForQueryFiles10</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339689539000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-NC_89o6Ov1I/T9oKSBZlP6E/AAAAAAAAKE4/KmM1aPTC7mk/TestAlbumForQueryFiles10.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh3.g
 oogleusercontent.com/-NC_89o6Ov1I/T9oKSBZlP6E/AAAAAAAAKE4/KmM1aPTC7mk/s160-c/TestAlbumForQueryFiles10.jpg' 
height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753917582035390849</id><published>2012-06-14T15:38:49.000Z</published><updated>2013-05-11T05:42:22.362Z</updated><app:edited>2013-05-11T05:42:22.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753917582035390849?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link
 rel='alternate' type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb/TestAl
 bumForQueryFiles09?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753917582035390849?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753917582035390849?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753917582035390849/acl?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753917582035390849</gphoto:id><gphoto:name>TestAlbumForQueryFiles09</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339688329000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:nu
 
mphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-qxwST4CVdvE/T9oFjigYEYE/AAAAAAAAKBE/fpCYLGA-oZg/TestAlbumForQueryFiles09.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-qxwST4CVdvE/T9oFjigYEYE/AAAAAAAAKBE/fpCYLGA-oZg/s160-c/TestAlbumForQueryFiles09.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753916884198822849</id><published>2012-06-14T15:36:07.000Z</published><updated>2013-05-11T05:42:20.361Z</updated><app:edited>2013-05-11T05:42:20.361Z</app
 :edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753916884198822849?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles08?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916884198822849?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916884198822849?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/
 atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916884198822849/acl?authkey=Gv1sRgCLuR2oy73OHvaw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753916884198822849</gphoto:id><gphoto:name>TestAlbumForQueryFiles08</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339688167000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-FOxdF0LPDhA/T9oE663LE8E/AAAAAAAAJ9g/hTGNXOeBiTU/TestAlbumForQueryFiles08.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='ht
 
tps://lh4.googleusercontent.com/-FOxdF0LPDhA/T9oE663LE8E/AAAAAAAAJ9g/hTGNXOeBiTU/s160-c/TestAlbumForQueryFiles08.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753916203664692769</id><published>2012-06-14T15:33:29.000Z</published><updated>2013-05-11T05:42:18.362Z</updated><app:edited>2013-05-11T05:42:18.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753916203664692769?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link
 rel='alternate' type='text/html' href='https://picasaweb.google.com/libgdata.picas
 aweb/TestAlbumForQueryFiles07?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916203664692769?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916203664692769?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916203664692769/acl?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753916203664692769</gphoto:id><gphoto:name>TestAlbumForQueryFiles07</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339688009000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos
<gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content

url='https://lh3.googleusercontent.com/-tB_pI_r6ZtY/T9oETTrMViE/AAAAAAAAJ58/hxxcJ6W5eYA/TestAlbumForQueryFiles07.jpg'
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-tB_pI_r6ZtY/T9oETTrMViE/AAAAAAAAJ58/hxxcJ6W5eYA/s160-c/TestAlbumForQueryFiles07.jpg'
height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753915421170356833</id><published>2012-06-14T15:30:27.000Z</published><updated>2013-05-11T05:42:16.362Z</updated><app:edited>2013-05-11T05:42:1
 6.362Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753915421170356833?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles06?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753915421170356833?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753915421170356833?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='a
 pplication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753915421170356833/acl?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753915421170356833</gphoto:id><gphoto:name>TestAlbumForQueryFiles06</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339687827000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-cEi8DqY4EMA/T9oDlwqAUmE/AAAAAAAAJ2U/CQsgVJCWVLY/TestAlbumForQueryFiles06.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbn
 ail 
url='https://lh5.googleusercontent.com/-cEi8DqY4EMA/T9oDlwqAUmE/AAAAAAAAJ2U/CQsgVJCWVLY/s160-c/TestAlbumForQueryFiles06.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753913257635658289</id><published>2012-06-14T15:22:02.000Z</published><updated>2013-05-11T05:42:14.361Z</updated><app:edited>2013-05-11T05:42:14.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753913257635658289?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='alternate' type='text/html' href='https://picasaweb.google.com/li
 bgdata.picasaweb/TestAlbumForQueryFiles05?authkey=Gv1sRgCL715cypqrn54gE'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753913257635658289?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753913257635658289?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753913257635658289/acl?authkey=Gv1sRgCL715cypqrn54gE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753913257635658289</gphoto:id><gphoto:name>TestAlbumForQueryFiles05</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339687322000</gphoto:timestamp><gphoto:numphotos>4</
 
gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-1cOVqarpanM/T9oBn03IujE/AAAAAAAAJyw/KxitT1LtH3g/TestAlbumForQueryFiles05.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-1cOVqarpanM/T9oBn03IujE/AAAAAAAAJyw/KxitT1LtH3g/s160-c/TestAlbumForQueryFiles05.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753909460100672145</id><published>2012-06-14T15:07:18.000Z</published><updated>2013-05-11T05:42:12.362Z</updated><app:edited>20
 13-05-11T05:42:12.362Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753909460100672145?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles04?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909460100672145?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909460100672145?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='http://schemas.google.com/acl/2007#access
 ControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909460100672145/acl?authkey=Gv1sRgCKuMk9vW3ubdygE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753909460100672145</gphoto:id><gphoto:name>TestAlbumForQueryFiles04</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339686438000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-cFWrSd8mpAY/T9n-Kx8PapE/AAAAAAAAJvE/ZeXQ8DRvZSs/TestAlbumForQueryFiles04.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:ke
 ywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-cFWrSd8mpAY/T9n-Kx8PapE/AAAAAAAAJvE/ZeXQ8DRvZSs/s160-c/TestAlbumForQueryFiles04.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753909201230338145</id><published>2012-06-14T15:06:17.000Z</published><updated>2013-05-11T05:42:10.362Z</updated><app:edited>2013-05-11T05:42:10.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753909201230338145?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='alternate' type='text/html' href='https://pic
 asaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles03?authkey=Gv1sRgCIW965XfrpvzFw'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909201230338145?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909201230338145?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909201230338145/acl?authkey=Gv1sRgCIW965XfrpvzFw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753909201230338145</gphoto:id><gphoto:name>TestAlbumForQueryFiles03</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339686377000</gphoto:timestamp><gpho
 
to:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-Bmi14ws5AM0/T9n97tkvmGE/AAAAAAAAJrg/ysK_cWkLCy8/TestAlbumForQueryFiles03.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Bmi14ws5AM0/T9n97tkvmGE/AAAAAAAAJrg/ysK_cWkLCy8/s160-c/TestAlbumForQueryFiles03.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDoqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5731216873649428225</id><published>2012-04-14T11:28:32.000Z</published><updated>2013-05-11T05:42:08.361Z</update
 d><app:edited>2013-05-11T05:42:08.361Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5731216873649428225?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles02?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5731216873649428225?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5731216873649428225?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='http://schemas.google.com/acl
 /2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5731216873649428225/acl?authkey=Gv1sRgCKbgqrLhl-2zZA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5731216873649428225</gphoto:id><gphoto:name>TestAlbumForQueryFiles02</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1334402912000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-y_4o7bv_0g8/T4lfYZyZVwE/AAAAAAAAJn8/ugcSPsZG_2Y/TestAlbumForQueryFiles02.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'
 /><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-y_4o7bv_0g8/T4lfYZyZVwE/AAAAAAAAJn8/ugcSPsZG_2Y/s160-c/TestAlbumForQueryFiles02.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDoqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5656529313960281697</id><published>2011-09-26T05:01:26.000Z</published><updated>2013-05-11T05:42:06.361Z</updated><app:edited>2013-05-11T05:42:06.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5656529313960281697?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='alternate' type='text/html' href='
 https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles?authkey=Gv1sRgCMTFotGeweT6cg'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656529313960281697?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656529313960281697?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656529313960281697/acl?authkey=Gv1sRgCMTFotGeweT6cg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5656529313960281697</gphoto:id><gphoto:name>TestAlbumForQueryFiles</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1317013286000</gphoto:timestam
 
p><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-6p9wKSiQbf8/ToAHcQQvxmE/AAAAAAAAI6g/WLzZSL61RzQ/TestAlbumForQueryFiles.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-6p9wKSiQbf8/ToAHcQQvxmE/AAAAAAAAI6g/WLzZSL61RzQ/s160-c/TestAlbumForQueryFiles.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;Xip7ImA_&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5656528945499827137</id><published>2011-09-26T05:01:15.000Z</published><updated>2013-05-11T05:42:04.362Z</upd
 ated><app:edited>2013-05-11T05:42:04.362Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Drop Box</title><summary>Default album for newly 
uploaded photos.</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5656528945499827137?authkey=Gv1sRgCJimnOPo4qP_aA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/DropBox?authkey=Gv1sRgCJimnOPo4qP_aA'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656528945499827137?authkey=Gv1sRgCJimnOPo4qP_aA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656528945499827137?authkey=Gv1sRgCJimnOPo4qP_aA'/><link
 rel='http://sche
 mas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656528945499827137/acl?authkey=Gv1sRgCJimnOPo4qP_aA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5656528945499827137</gphoto:id><gphoto:name>DropBox</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1317013275000</gphoto:timestamp><gphoto:numphotos>12</gphoto:numphotos><gphoto:numphotosremaining>988</gphoto:numphotosremaining><gphoto:bytesUsed>211920</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:albumType>Default</gphoto:albumType><media:group><media:content
 url='https://lh6.googleusercontent.com/-I1YjlfQG5kY/ToAHGzo7a8E/AAAAAAAALmQ/YeJ6gUuivA8/DropBox.jpg' 
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><
 media:description type='plain'>Default album for newly uploaded 
photos.</media:description><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-I1YjlfQG5kY/ToAHGzo7a8E/AAAAAAAALmQ/YeJ6gUuivA8/s160-c/DropBox.jpg' 
height='160' width='160'/><media:title type='plain'>Drop Box</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5760706460596781425</id><published>2012-07-02T22:43:13.000Z</published><updated>2013-05-11T05:42:38.362Z</updated><app:edited>2013-05-11T05:42:38.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5760706460596781425?authkey=Gv1sRgCKDo4Mb
 w67DytQE'/><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles17?authkey=Gv1sRgCKDo4Mbw67DytQE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760706460596781425?authkey=Gv1sRgCKDo4Mbw67DytQE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760706460596781425?authkey=Gv1sRgCKDo4Mbw67DytQE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760706460596781425/acl?authkey=Gv1sRgCKDo4Mbw67DytQE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5760706460596781425</gphoto:id><gphoto:name>TestAlbumForQueryFiles17</gphoto:name><gphoto:location/><gphoto:access>private
 
</gphoto:access><gphoto:timestamp>1341268993000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-jCbAOlu4SwU/T_IkAR8rQXE/AAAAAAAAKs8/LMYVB0SQESc/TestAlbumForQueryFiles17.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-jCbAOlu4SwU/T_IkAR8rQXE/AAAAAAAAKs8/LMYVB0SQESc/s160-c/TestAlbumForQueryFiles17.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5760702986482787089</id><published>2012-0
 
7-02T22:29:44.000Z</published><updated>2013-05-11T05:42:34.361Z</updated><app:edited>2013-05-11T05:42:34.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5760702986482787089?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles15?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760702986482787089?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760702986482787089?
 authkey=Gv1sRgCKO5mpeQwZjDHg'/><link rel='http://schemas.google.com/acl/2007#accessControlList' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760702986482787089/acl?authkey=Gv1sRgCKO5mpeQwZjDHg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5760702986482787089</gphoto:id><gphoto:name>TestAlbumForQueryFiles15</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341268184000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-y1OSyupQ3TI/T_Ig2D3WoxE/AAAAAAAAKbI/Jcqk_xxtj-U/TestAlbumForQueryFiles15.jpg'
 type='image/jpeg' medium='image'/><media:
 credit>libgdata.picasaweb</media:credit><media:description type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-y1OSyupQ3TI/T_Ig2D3WoxE/AAAAAAAAKbI/Jcqk_xxtj-U/s160-c/TestAlbumForQueryFiles15.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905633591451744097</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T11:54:30.296Z</updated><app:edited>2013-07-28T11:54:30.296Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/alb
 umid/5905633591451744097?authkey=Gv1sRgCJaWsta275GJzgE'/><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos55?authkey=Gv1sRgCJaWsta275GJzgE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905633591451744097?authkey=Gv1sRgCJaWsta275GJzgE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905633591451744097?authkey=Gv1sRgCJaWsta275GJzgE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905633591451744097/acl?authkey=Gv1sRgCJaWsta275GJzgE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905633591451744097</gphoto:id><gphoto:name>ThanksgivingPhotos55</gphoto:name><g
 photo:location>Winnipeg, 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-pmMLIzS2Aj4/UfUGdkgYd2E/AAAAAAAAL9s/2v2L2yYDmLQ/ThanksgivingPhotos55.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-pmMLIzS2Aj4/UfUGdkgYd2E/AAAAAAAAL9s/2v2L2yYDmLQ/s160-c/ThanksgivingPhotos55.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb
 
.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635041987434177</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:08.375Z</updated><app:edited>2013-07-28T12:00:08.375Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635041987434177?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos59?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635041987434177?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='edit' type=
 'application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635041987434177?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635041987434177/acl?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635041987434177</gphoto:id><gphoto:name>ThanksgivingPhotos59</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https
 ://lh3.googleusercontent.com/-YTqHGHexKLY/UfUHyALClsE/AAAAAAAAMAw/Q5ZgS1NABNA/ThanksgivingPhotos59.jpg' 
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-YTqHGHexKLY/UfUHyALClsE/AAAAAAAAMAw/Q5ZgS1NABNA/s160-c/ThanksgivingPhotos59.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635046618559681</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:09.368Z</updated><app:edited>2013-07-28T12:00:09.368Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summa
 ry><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635046618559681?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos61?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635046618559681?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635046618559681?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635046618559681/acl?authkey=Gv1sRgCOqknJaSsdXxFA'/><author><name>libgdat
 
a.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635046618559681</gphoto:id><gphoto:name>ThanksgivingPhotos61</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-L4nk2EiXVJc/UfUHyRbL9ME/AAAAAAAAMA4/50NgPYLQv2U/ThanksgivingPhotos61.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-L4nk2EiXVJc/UfUHyRbL9ME/AAAAAAAAMA4/50NgPYLQv2U/s160-c/ThanksgivingPhot
 os61.jpg' height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635048265698337</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:08.587Z</updated><app:edited>2013-07-28T12:00:08.587Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635048265698337?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos60?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='self' type='ap
 plication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635048265698337?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635048265698337?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635048265698337/acl?authkey=Gv1sRgCPm6muuhnruL2AE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635048265698337</gphoto:id><gphoto:name>ThanksgivingPhotos60</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremainin
 
g><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-NgBV9nWzKgQ/UfUHyXj5TCE/AAAAAAAAMA0/gyOw1o0LsCc/ThanksgivingPhotos60.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NgBV9nWzKgQ/UfUHyXj5TCE/AAAAAAAAMA0/gyOw1o0LsCc/s160-c/ThanksgivingPhotos60.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635052696078545</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:09.696Z</updated><app:edited>2013-07-28T12:00:09.696Z</app:edited><category
 
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635052696078545?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos62?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635052696078545?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635052696078545?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='appl
 ication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635052696078545/acl?authkey=Gv1sRgCJ78iPjynMP6bA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635052696078545</gphoto:id><gphoto:name>ThanksgivingPhotos62</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-dDzC8AUT39c/UfUHyoELiNE/AAAAAAAAMA8/iK9D08hMeZg/ThanksgivingPhotos62.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of
  the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-dDzC8AUT39c/UfUHyoELiNE/AAAAAAAAMA8/iK9D08hMeZg/s160-c/ThanksgivingPhotos62.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905636964804120545</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:07:35.751Z</updated><app:edited>2013-07-28T12:07:35.751Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905636964804120545?authkey=Gv1sRgCOPnh9WK0O-KG
 A'/><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos67?authkey=Gv1sRgCOPnh9WK0O-KGA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964804120545?authkey=Gv1sRgCOPnh9WK0O-KGA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964804120545?authkey=Gv1sRgCOPnh9WK0O-KGA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964804120545/acl?authkey=Gv1sRgCOPnh9WK0O-KGA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905636964804120545</gphoto:id><gphoto:name>ThanksgivingPhotos67</gphoto:name><gphoto:location>Winnipeg,
 MN</gphoto:location><gphoto:acce
 
ss>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-URP8xignqeI/UfUJh7OQz-E/AAAAAAAAMEA/uOLQL8yxb8o/ThanksgivingPhotos67.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-URP8xignqeI/UfUJh7OQz-E/AAAAAAAAMEA/uOLQL8yxb8o/s160-c/ThanksgivingPhotos67.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/59
 
05636964871966001</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:07:35.315Z</updated><app:edited>2013-07-28T12:07:35.315Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905636964871966001?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos66?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964871966001?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='edit' type='application/atom+xml' href='https://picasaweb.google.com/da
 ta/entry/api/user/libgdata.picasaweb/albumid/5905636964871966001?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964871966001/acl?authkey=Gv1sRgCNqbzKuF-cCeLg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905636964871966001</gphoto:id><gphoto:name>ThanksgivingPhotos66</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh4.googleusercontent.com/-RKs5J2Fv4Xs/UfUJh7ecDTE/AAAAAAAA
 MD8/ShmhXZiX02k/ThanksgivingPhotos66.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description type='plain'>Family photos 
of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-RKs5J2Fv4Xs/UfUJh7ecDTE/AAAAAAAAMD8/ShmhXZiX02k/s160-c/ThanksgivingPhotos66.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905636968138062433</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:07:35.751Z</updated><app:edited>2013-07-28T12:07:35.751Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.co
 m/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905636968138062433?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos68?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636968138062433?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636968138062433?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636968138062433/acl?authkey=Gv1sRgCPfTjKWOu7_sCg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.p
 
icasaweb</uri></author><gphoto:id>5905636968138062433</gphoto:id><gphoto:name>ThanksgivingPhotos68</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-wEsnbQ5ds-Q/UfUJiHpIumE/AAAAAAAAMEE/yJzlfrX0QnM/ThanksgivingPhotos68.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-wEsnbQ5ds-Q/UfUJiHpIumE/AAAAAAAAMEE/yJzlfrX0QnM/s160-c/ThanksgivingPhotos68.jpg'
 height='160' width='160'/><media:title type='plain'>
 Thanksgiving photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905637896892105825</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:11:12.157Z</updated><app:edited>2013-07-28T12:11:12.157Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905637896892105825?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos72?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entr
 y/api/user/libgdata.picasaweb/albumid/5905637896892105825?authkey=Gv1sRgCKvL352GnPmJbw'/><link rel='edit' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637896892105825?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637896892105825/acl?authkey=Gv1sRgCKvL352GnPmJbw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905637896892105825</gphoto:id><gphoto:name>ThanksgivingPhotos72</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picas
 aweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-Yp2EbjWQTqU/UfUKYLhWxGE/AAAAAAAAMHA/D3vQHf4qmGs/ThanksgivingPhotos72.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-Yp2EbjWQTqU/UfUKYLhWxGE/AAAAAAAAMHA/D3vQHf4qmGs/s160-c/ThanksgivingPhotos72.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry></feed>
+  
diff --git a/gdata/tests/traces/picasaweb/query-all-albums-with-limits 
b/gdata/tests/traces/picasaweb/query-all-albums-with-limits
new file mode 100644
index 0000000..3f0dab4
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query-all-albums-with-limits
@@ -0,0 +1,90 @@
+> GET /data/feed/api/user/default?start-index=1&max-results=1& HTTP/1.1
+> Soup-Debug-Timestamp: 1375013824
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 15 (0x9aa0a0), SoupSocket 8 (0x8a45f0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375013824
+< Soup-Debug: SoupMessage 15 (0x9aa0a0)
+< Expires: Sun, 28 Jul 2013 12:17:04 GMT
+< Date: Sun, 28 Jul 2013 12:17:04 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=EaZYrjbOLjXS; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=A3LRwGsB3KV4Kt628xr6lQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CU8GRX44eip7ImA9WhFWEEw."
+< Last-Modified: Sun, 28 Jul 2013 12:17:04 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CU8GRX44eip7ImA9WhFWEEw.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-28T12:17:04.032Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1'/><link
 rel='next' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=2&amp;max-results=1'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' uri='http://picasaweb.google.com/'>Picasaweb</gene
 
rator><openSearch:totalResults>38</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1</openSearch:itemsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639405060878609</id><published>2013-07-28T12:17:03.000Z</published><updated>2013-07-28T12:17:03.381Z</updated><app:edited>2013-07-28T12:17:03.381Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for QueryAllAlbums</t
 itle><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639405060878609?authkey=Gv1sRgCKzKgZTLsam_JA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums34?authkey=Gv1sRgCKzKgZTLsam_JA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639405060878609?authkey=Gv1sRgCKzKgZTLsam_JA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639405060878609?authkey=Gv1sRgCKzKgZTLsam_JA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639405060878609/acl?authkey=Gv1sRgCKzKgZTLsam_JA'/>
 
<author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639405060878609</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums34</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013823000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-Rjvn82OCuvk/UfULv94z8RE/AAAAAAAAMH4/Blxm7pPIQ3Q/TestAlbum3ForQueryAllAlbums34.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-Rjvn82OCuvk/UfULv94z8RE/AAAAAAAAMH4/Blxm7pPIQ3Q/s160-c/TestAlbum3ForQueryAllAlbums34.jpg'
 height='160' widt
 h='160'/><media:title type='plain'>Test album 3 for QueryAllAlbums</media:title></media:group></entry></feed>
+  
+> GET /data/feed/api/user/default?start-index=2&max-results=1& HTTP/1.1
+> Soup-Debug-Timestamp: 1375013824
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 16 (0x9aa550), SoupSocket 8 (0x8a45f0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375013825
+< Soup-Debug: SoupMessage 16 (0x9aa550)
+< Expires: Sun, 28 Jul 2013 12:17:05 GMT
+< Date: Sun, 28 Jul 2013 12:17:05 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=H87KgnXd0-Rf; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=3Ts1kPPJXbgOojCMOF7k4w; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CU8GRX44eip7ImA9WhFWEEw."
+< Last-Modified: Sun, 28 Jul 2013 12:17:04 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CU8GRX44eip7ImA9WhFWEEw.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-28T12:17:04.032Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=2&amp;max-results=1'/><link
 rel='previous' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1'/><link
 rel='next' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=3&amp;max-results=1'/><author><name>libgdata.pic
 asaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>38</openSearch:totalResults><openSearch:startIndex>2</openSearch:startIndex><openSearch:itemsPerPage>1</openSearch:itemsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639408808745057</id><published>2013-07-28T12:17:03.000Z</published><updated>2013-07-28T12:17:04.032Z</updated><app:edited>2013-07-28T12:17:04.032Z</app:e
 dited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639408808745057?authkey=Gv1sRgCKL_1OWnlunsdA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums33?authkey=Gv1sRgCKL_1OWnlunsdA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639408808745057?authkey=Gv1sRgCKL_1OWnlunsdA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639408808745057?authkey=Gv1sRgCKL_1OWnlunsdA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='app
 lication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639408808745057/acl?authkey=Gv1sRgCKL_1OWnlunsdA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639408808745057</gphoto:id><gphoto:name>TestAlbum4ForQueryAllAlbums33</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013823000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-GAEM98NA8SY/UfULwL2X2GE/AAAAAAAAMH8/iWA8VP0j-6w/TestAlbum4ForQueryAllAlbums33.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:t
 humbnail 
url='https://lh4.googleusercontent.com/-GAEM98NA8SY/UfULwL2X2GE/AAAAAAAAMH8/iWA8VP0j-6w/s160-c/TestAlbum4ForQueryAllAlbums33.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry></feed>
+  
+> GET /data/feed/api/user/default?start-index=1&max-results=3& HTTP/1.1
+> Soup-Debug-Timestamp: 1375013825
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 17 (0x9aa550), SoupSocket 8 (0x8a45f0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375013825
+< Soup-Debug: SoupMessage 17 (0x9aa550)
+< Expires: Sun, 28 Jul 2013 12:17:05 GMT
+< Date: Sun, 28 Jul 2013 12:17:05 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=hshyt-h8sx93; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=p4B7bGUxjR6UOFVQHTTlWg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CU8GRX44eip7ImA9WhFWEEw."
+< Last-Modified: Sun, 28 Jul 2013 12:17:04 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CU8GRX44eip7ImA9WhFWEEw.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-28T12:17:04.032Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=3'/><link
 rel='next' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=4&amp;max-results=3'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' uri='http://picasaweb.google.com/'>Picasaweb</gene
 
rator><openSearch:totalResults>38</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>3</openSearch:itemsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639405060878609</id><published>2013-07-28T12:17:03.000Z</published><updated>2013-07-28T12:17:03.381Z</updated><app:edited>2013-07-28T12:17:03.381Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for QueryAllAlbums</t
 itle><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639405060878609?authkey=Gv1sRgCKzKgZTLsam_JA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums34?authkey=Gv1sRgCKzKgZTLsam_JA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639405060878609?authkey=Gv1sRgCKzKgZTLsam_JA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639405060878609?authkey=Gv1sRgCKzKgZTLsam_JA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639405060878609/acl?authkey=Gv1sRgCKzKgZTLsam_JA'/>
 
<author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639405060878609</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums34</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013823000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-Rjvn82OCuvk/UfULv94z8RE/AAAAAAAAMH4/Blxm7pPIQ3Q/TestAlbum3ForQueryAllAlbums34.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-Rjvn82OCuvk/UfULv94z8RE/AAAAAAAAMH4/Blxm7pPIQ3Q/s160-c/TestAlbum3ForQueryAllAlbums34.jpg'
 height='160' widt
 h='160'/><media:title type='plain'>Test album 3 for QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639408808745057</id><published>2013-07-28T12:17:03.000Z</published><updated>2013-07-28T12:17:04.032Z</updated><app:edited>2013-07-28T12:17:04.032Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639408808745057?authkey=Gv1sRgCKL_1OWnlunsdA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums33?authkey=Gv1sRgCKL_1OWnlunsdA'/><link
 rel='self' type='application/atom+xml' href='https:
 
//picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639408808745057?authkey=Gv1sRgCKL_1OWnlunsdA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639408808745057?authkey=Gv1sRgCKL_1OWnlunsdA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639408808745057/acl?authkey=Gv1sRgCKL_1OWnlunsdA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639408808745057</gphoto:id><gphoto:name>TestAlbum4ForQueryAllAlbums33</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013823000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>li
 
bgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-GAEM98NA8SY/UfULwL2X2GE/AAAAAAAAMH8/iWA8VP0j-6w/TestAlbum4ForQueryAllAlbums33.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-GAEM98NA8SY/UfULwL2X2GE/AAAAAAAAMH8/iWA8VP0j-6w/s160-c/TestAlbum4ForQueryAllAlbums33.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639398993821281</id><published>2013-07-28T12:17:02.000Z</published><updated>2013-07-28T12:17:02.582Z</updated><app:edited>2013-07-28T12:17:02.582Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.goo
 gle.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639398993821281?authkey=Gv1sRgCPOWq9yH4dCoWg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums35?authkey=Gv1sRgCPOWq9yH4dCoWg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639398993821281?authkey=Gv1sRgCPOWq9yH4dCoWg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639398993821281?authkey=Gv1sRgCPOWq9yH4dCoWg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.pica
 
saweb/albumid/5905639398993821281/acl?authkey=Gv1sRgCPOWq9yH4dCoWg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639398993821281</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums35</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013822000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-Bh7LExZwN3g/UfULvnST_mE/AAAAAAAAMH0/nD9ghGbhCmM/TestAlbum2ForQueryAllAlbums35.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Bh7LExZwN3g/UfULvnST_mE/AAAAAAAAMH0/nD
 9ghGbhCmM/s160-c/TestAlbum2ForQueryAllAlbums35.jpg' height='160' width='160'/><media:title type='plain'>Test 
album 2 for QueryAllAlbums</media:title></media:group></entry></feed>
+  
diff --git a/gdata/tests/traces/picasaweb/query-user b/gdata/tests/traces/picasaweb/query-user
new file mode 100644
index 0000000..a64357e
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query-user
@@ -0,0 +1,30 @@
+> GET /data/entry/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375013821
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 10 (0x9aa0a0), SoupSocket 4 (0x8a4470)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375013821
+< Soup-Debug: SoupMessage 10 (0x9aa0a0)
+< Expires: Sun, 28 Jul 2013 12:17:01 GMT
+< Date: Sun, 28 Jul 2013 12:17:01 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=H45PPS7F7rSI; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=Z7mBRUZkXQpXMuHsytPDMA; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CU8GQX0zfyp7ImA9WhFWEEw."
+< Last-Modified: Sun, 28 Jul 2013 12:17:00 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CU8GQX0zfyp7ImA9WhFWEEw.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><published>2013-07-28T12:17:01.589Z</published><updated>2013-07-28T12:17:00.387Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgda
 
ta.picasaweb</uri></author><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/query-user-async b/gdata/tests/traces/picasaweb/query-user-async
new file mode 100644
index 0000000..a342098
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query-user-async
@@ -0,0 +1,30 @@
+> GET /data/entry/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375013862
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 56 (0x7fffe0025580), SoupSocket 25 (0x7fffe00266e0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375013862
+< Soup-Debug: SoupMessage 56 (0x7fffe0025580)
+< Expires: Sun, 28 Jul 2013 12:17:42 GMT
+< Date: Sun, 28 Jul 2013 12:17:42 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=6CQUVItd_ZeX; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=qlqHQaT74ZIgQUgGrSnHLA; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CU8CQX84fyp7ImA9WhFWEEw."
+< Last-Modified: Sun, 28 Jul 2013 12:17:40 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CU8CQX84fyp7ImA9WhFWEEw.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><published>2013-07-28T12:17:42.237Z</published><updated>2013-07-28T12:17:40.137Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgda
 
ta.picasaweb</uri></author><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/query-user-by-username-async 
b/gdata/tests/traces/picasaweb/query-user-by-username-async
new file mode 100644
index 0000000..03cbe40
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query-user-by-username-async
@@ -0,0 +1,30 @@
+> GET /data/entry/api/user/philip.withnall HTTP/1.1
+> Soup-Debug-Timestamp: 1375013863
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 60 (0x7fffe4014ac0), SoupSocket 27 (0x7fffe00266e0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375013863
+< Soup-Debug: SoupMessage 60 (0x7fffe4014ac0)
+< Expires: Sun, 28 Jul 2013 12:17:43 GMT
+< Date: Sun, 28 Jul 2013 12:17:43 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=9gYjgw3WA56_; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=HhIRryplQTQecQ-Vx9jM2A; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"DkACRXc8fip7ImA9WhFXEU4."
+< Last-Modified: Thu, 18 Jul 2013 08:06:04 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DkACRXc8fip7ImA9WhFXEU4.&quot;'><id>https://picasaweb.google.com/data/feed/user/104200312198892774147</id><published>2013-07-28T12:17:43.416Z</published><updated>2013-07-18T08:06:04.976Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>104200312198892774147</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/104200312198892774147'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/104200312198892774147'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/104200312198892774147'/><author><name>Philip 
Withnall</name><uri>https://picasaweb.googl
 
e.com/104200312198892774147</uri></author><gphoto:user>104200312198892774147</gphoto:user><gphoto:nickname>Philip
 
Withnall</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-HrhxnzxTjp8/AAAAAAAAAAI/AAAAAAAAAAA/HcBOyJqasow/s64-c/104200312198892774147.jpg</gphoto:thumbnail></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/setup-insert-album b/gdata/tests/traces/picasaweb/setup-insert-album
new file mode 100644
index 0000000..e69de29
diff --git a/gdata/tests/traces/picasaweb/setup-insert-comment 
b/gdata/tests/traces/picasaweb/setup-insert-comment
new file mode 100644
index 0000000..e69de29
diff --git a/gdata/tests/traces/picasaweb/setup-query-all-albums 
b/gdata/tests/traces/picasaweb/setup-query-all-albums
new file mode 100644
index 0000000..89afb32
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/setup-query-all-albums
@@ -0,0 +1,136 @@
+> POST /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375013852
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 40 (0x9aa550), SoupSocket 17 (0x8a42f0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title type='text'>Test 
album 1 for QueryAllAlbums</title><rights>private</rights><category 
term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013852000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Test album 1 for QueryAllAlbums</media:title></media:group></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375013853
+< Soup-Debug: SoupMessage 40 (0x9aa550)
+< Expires: Sun, 28 Jul 2013 12:17:33 GMT
+< Date: Sun, 28 Jul 2013 12:17:33 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=u7cRCnVTblvG; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=jS_w-_laZ_L0M-A75AHPPA; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639529199279457?authkey=Gv1sRgCI_HnNDHxaOxzgE
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639529199279457?authkey=Gv1sRgCI_HnNDHxaOxzgE
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639529199279457</id><published>2013-07-28T12:17:32.000Z</published><updated>2013-07-28T12:17:32.580Z</updated><app:edited>2013-07-28T12:17:32.580Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639529199279457?authkey=Gv1sRgCI_HnNDHxaOxzgE'/><link
 rel='alternate' type='text/html' href='https://pic
 asaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums40?authkey=Gv1sRgCI_HnNDHxaOxzgE'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639529199279457?authkey=Gv1sRgCI_HnNDHxaOxzgE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639529199279457?authkey=Gv1sRgCI_HnNDHxaOxzgE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639529199279457/acl?authkey=Gv1sRgCI_HnNDHxaOxzgE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639529199279457</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums40</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013852000</gphoto:t
 
imestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-kN8IXLSq27s/UfUL3MVtnWE/AAAAAAAAMJQ/_ygJNdZP1qs/TestAlbum1ForQueryAllAlbums40.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-kN8IXLSq27s/UfUL3MVtnWE/AAAAAAAAMJQ/_ygJNdZP1qs/s160-c/TestAlbum1ForQueryAllAlbums40.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry>
+  
+> POST /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375013853
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 41 (0x9aa550), SoupSocket 18 (0x7fffe00261a0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title type='text'>Test 
album 2 for QueryAllAlbums</title><rights>private</rights><category 
term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013853000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Test album 2 for QueryAllAlbums</media:title></media:group></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375013854
+< Soup-Debug: SoupMessage 41 (0x9aa550)
+< Expires: Sun, 28 Jul 2013 12:17:34 GMT
+< Date: Sun, 28 Jul 2013 12:17:34 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=rpj3FBFp2MNJ; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=wDgTi5g4FM4fxFfzc3iqPg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639533981554817?authkey=Gv1sRgCLyQw8yU1ouNsQE
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639533981554817?authkey=Gv1sRgCLyQw8yU1ouNsQE
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639533981554817</id><published>2013-07-28T12:17:33.000Z</published><updated>2013-07-28T12:17:33.515Z</updated><app:edited>2013-07-28T12:17:33.515Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639533981554817?authkey=Gv1sRgCLyQw8yU1ouNsQE'/><link
 rel='alternate' type='text/html' href='https://pic
 asaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums38?authkey=Gv1sRgCLyQw8yU1ouNsQE'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639533981554817?authkey=Gv1sRgCLyQw8yU1ouNsQE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639533981554817?authkey=Gv1sRgCLyQw8yU1ouNsQE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639533981554817/acl?authkey=Gv1sRgCLyQw8yU1ouNsQE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639533981554817</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums38</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013853000</gphoto:t
 
imestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/--hTWnRXVTqg/UfUL3eJ5WIE/AAAAAAAAMJU/Wu1WMhdlhbc/TestAlbum2ForQueryAllAlbums38.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/--hTWnRXVTqg/UfUL3eJ5WIE/AAAAAAAAMJU/Wu1WMhdlhbc/s160-c/TestAlbum2ForQueryAllAlbums38.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for 
QueryAllAlbums</media:title></media:group></entry>
+  
+> POST /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375013854
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 42 (0x9aa0a0), SoupSocket 19 (0x8a43b0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title type='text'>Test 
album 3 for QueryAllAlbums</title><rights>private</rights><category 
term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013854000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Test album 3 for QueryAllAlbums</media:title></media:group></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375013855
+< Soup-Debug: SoupMessage 42 (0x9aa0a0)
+< Expires: Sun, 28 Jul 2013 12:17:34 GMT
+< Date: Sun, 28 Jul 2013 12:17:34 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=_P23k8y66PS1; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=cmjOPMyerJehkj0GbiNZYg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639534651911457?authkey=Gv1sRgCIHrp_-g6Ob2vQE
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639534651911457?authkey=Gv1sRgCIHrp_-g6Ob2vQE
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639534651911457</id><published>2013-07-28T12:17:34.000Z</published><updated>2013-07-28T12:17:34.363Z</updated><app:edited>2013-07-28T12:17:34.363Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639534651911457?authkey=Gv1sRgCIHrp_-g6Ob2vQE'/><link
 rel='alternate' type='text/html' href='https://pic
 asaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums37?authkey=Gv1sRgCIHrp_-g6Ob2vQE'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639534651911457?authkey=Gv1sRgCIHrp_-g6Ob2vQE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639534651911457?authkey=Gv1sRgCIHrp_-g6Ob2vQE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639534651911457/acl?authkey=Gv1sRgCIHrp_-g6Ob2vQE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639534651911457</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums37</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013854000</gphoto:t
 
imestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-01e4GIsAHkA/UfUL3gpuLSE/AAAAAAAAMJY/_ph8067G_-M/TestAlbum3ForQueryAllAlbums37.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-01e4GIsAHkA/UfUL3gpuLSE/AAAAAAAAMJY/_ph8067G_-M/s160-c/TestAlbum3ForQueryAllAlbums37.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry>
+  
+> POST /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375013855
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 43 (0x9aa190), SoupSocket 20 (0x8a4470)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title type='text'>Test 
album 4 for QueryAllAlbums</title><rights>private</rights><category 
term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013855000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Test album 4 for QueryAllAlbums</media:title></media:group></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375013855
+< Soup-Debug: SoupMessage 43 (0x9aa190)
+< Expires: Sun, 28 Jul 2013 12:17:35 GMT
+< Date: Sun, 28 Jul 2013 12:17:35 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=p_ozACZ2k0Eq; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=qrvRC_MzSX194nWKNCY6eQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639542445656401?authkey=Gv1sRgCIi65tzhvtybNQ
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639542445656401?authkey=Gv1sRgCIi65tzhvtybNQ
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639542445656401</id><published>2013-07-28T12:17:35.000Z</published><updated>2013-07-28T12:17:35.192Z</updated><app:edited>2013-07-28T12:17:35.192Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639542445656401?authkey=Gv1sRgCIi65tzhvtybNQ'/><link
 rel='alternate' type='text/html' href='https://pica
 saweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums36?authkey=Gv1sRgCIi65tzhvtybNQ'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639542445656401?authkey=Gv1sRgCIi65tzhvtybNQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639542445656401?authkey=Gv1sRgCIi65tzhvtybNQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639542445656401/acl?authkey=Gv1sRgCIi65tzhvtybNQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639542445656401</gphoto:id><gphoto:name>TestAlbum4ForQueryAllAlbums36</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013855000</gphoto:timest
 
amp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-4uXO2uUNoZs/UfUL39r5SVE/AAAAAAAAMJc/RrgYLArel0Y/TestAlbum4ForQueryAllAlbums36.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-4uXO2uUNoZs/UfUL39r5SVE/AAAAAAAAMJc/RrgYLArel0Y/s160-c/TestAlbum4ForQueryAllAlbums36.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/setup-query-comments 
b/gdata/tests/traces/picasaweb/setup-query-comments
new file mode 100644
index 0000000..e69de29
diff --git a/gdata/tests/traces/picasaweb/setup-query-files b/gdata/tests/traces/picasaweb/setup-query-files
new file mode 100644
index 0000000..df97760
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/setup-query-files
@@ -0,0 +1,46 @@
+> POST /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375011888
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 11 (0x71dac0), SoupSocket 5 (0x7f8520)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANoAAABsq7SbF0OJAp2EEdHIe_mhrIwKI7augdk1DiK6XNcz2qEwt2wyNAMeT6fIxZnA0Igf64rOBcdjc0lN4xnZ92WjbDULoGYn_X3htopS44a_R5gywU5lp0KQqmUtZ2m3U2nwGhI5L04jzNMjxowyLN78BdISWGy7D-8dURopePnNQ9p3hcu1c5y9VkB-ZAXjT3ONXThxSCEkeiFJCQ3oZLR78JqKQvYApnNtRgLlECSIBm4TC8PfuDSzp545pjUt6T03VYl2uKdm-8JRPHQR31RI3PTqYl4YlK6r0TnUDpwUTA
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title type='text'>Test 
album for QueryFiles</title><rights>private</rights><category 
term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375011888000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Test album for QueryFiles</media:title></media:group></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375011888
+< Soup-Debug: SoupMessage 11 (0x71dac0)
+< Expires: Sun, 28 Jul 2013 11:44:48 GMT
+< Date: Sun, 28 Jul 2013 11:44:48 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=VVKAB7-ahajE; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=_ufzWn1hBeDN_Vg951iGNA; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905631091580133985</id><published>2013-07-28T11:44:48.000Z</published><updated>2013-07-28T11:44:48.376Z</updated><app:edited>2013-07-28T11:44:48.376Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='alternate' type='text/html' href='https://picasaweb.
 google.com/libgdata.picasaweb/TestAlbumForQueryFiles20?authkey=Gv1sRgCIuFurSynOKIeQ'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905631091580133985/acl?authkey=Gv1sRgCIuFurSynOKIeQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905631091580133985</gphoto:id><gphoto:name>TestAlbumForQueryFiles20</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375011888000</gphoto:timestamp><gphoto:nump
 
hotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-TVDcmOZrysI/UfUEMDwi4mE/AAAAAAAAL64/wrBf3Cdp9po/TestAlbumForQueryFiles20.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-TVDcmOZrysI/UfUEMDwi4mE/AAAAAAAAL64/wrBf3Cdp9po/s160-c/TestAlbumForQueryFiles20.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry>
+  
+> POST /data/feed/api/user/default/albumid/5905631091580133985 HTTP/1.1
+> Soup-Debug-Timestamp: 1375011889
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 12 (0x71dca0), SoupSocket 6 (0x7fffe0026190)
+> Host: picasaweb.google.com
+> Slug: photo.jpg
+> Transfer-Encoding: chunked
+> Content-Type: multipart/related; boundary=0003Z5W789deadbeefRTE456KlemsnoZV
+> Authorization: GoogleLogin 
auth=DQAAANoAAABsq7SbF0OJAp2EEdHIe_mhrIwKI7augdk1DiK6XNcz2qEwt2wyNAMeT6fIxZnA0Igf64rOBcdjc0lN4xnZ92WjbDULoGYn_X3htopS44a_R5gywU5lp0KQqmUtZ2m3U2nwGhI5L04jzNMjxowyLN78BdISWGy7D-8dURopePnNQ9p3hcu1c5y9VkB-ZAXjT3ONXThxSCEkeiFJCQ3oZLR78JqKQvYApnNtRgLlECSIBm4TC8PfuDSzp545pjUt6T03VYl2uKdm-8JRPHQR31RI3PTqYl4YlK6r0TnUDpwUTA
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
diff --git a/gdata/tests/traces/picasaweb/teardown-insert-album 
b/gdata/tests/traces/picasaweb/teardown-insert-album
new file mode 100644
index 0000000..80c1b2f
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/teardown-insert-album
@@ -0,0 +1,27 @@
+> DELETE /data/entry/api/user/libgdata.picasaweb/albumid/5905639602363627073?authkey=Gv1sRgCMm47L7KqunRHA 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375013870
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 69 (0x7fffe00250d0), SoupSocket 32 (0x7fffe4017170)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> GData-Version: 2
+> If-Match: "YD0qeyI."
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375013871
+< Soup-Debug: SoupMessage 69 (0x7fffe00250d0)
+< Expires: Sun, 28 Jul 2013 12:17:50 GMT
+< Date: Sun, 28 Jul 2013 12:17:50 GMT
+< Cache-control: private, max-age=0, must-revalidate
+< Set-Cookie: _rtok=-E8Xa3nEwax4; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=YOA3clVv52F3sodQUPHDkg; Domain=.google.com; Path=/; Secure; HttpOnly
+< GData-Version: 2.0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
diff --git a/gdata/tests/traces/picasaweb/teardown-query-all-albums 
b/gdata/tests/traces/picasaweb/teardown-query-all-albums
new file mode 100644
index 0000000..b5f9284
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/teardown-query-all-albums
@@ -0,0 +1,108 @@
+> DELETE /data/entry/api/user/libgdata.picasaweb/albumid/5905639529199279457?authkey=Gv1sRgCI_HnNDHxaOxzgE 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375013857
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 48 (0x9aa190), SoupSocket 22 (0x7fffe00266e0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> GData-Version: 2
+> If-Match: "YD0qeyI."
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375013858
+< Soup-Debug: SoupMessage 48 (0x9aa190)
+< Expires: Sun, 28 Jul 2013 12:17:37 GMT
+< Date: Sun, 28 Jul 2013 12:17:37 GMT
+< Cache-control: private, max-age=0, must-revalidate
+< Set-Cookie: _rtok=35al8_TCIFmg; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=swlYOpOIsDSX0FAaGCI3Rg; Domain=.google.com; Path=/; Secure; HttpOnly
+< GData-Version: 2.0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
+> DELETE /data/entry/api/user/libgdata.picasaweb/albumid/5905639533981554817?authkey=Gv1sRgCLyQw8yU1ouNsQE 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375013858
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 49 (0x9aa0a0), SoupSocket 22 (0x7fffe00266e0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> GData-Version: 2
+> If-Match: "YD0qeyI."
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375013859
+< Soup-Debug: SoupMessage 49 (0x9aa0a0)
+< Expires: Sun, 28 Jul 2013 12:17:38 GMT
+< Date: Sun, 28 Jul 2013 12:17:38 GMT
+< Cache-control: private, max-age=0, must-revalidate
+< Set-Cookie: _rtok=A-ovrjIIbIWs; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=AVaY-dyCjkcFF4kD9oQMag; Domain=.google.com; Path=/; Secure; HttpOnly
+< GData-Version: 2.0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
+> DELETE /data/entry/api/user/libgdata.picasaweb/albumid/5905639534651911457?authkey=Gv1sRgCIHrp_-g6Ob2vQE 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375013859
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 50 (0x9aa550), SoupSocket 22 (0x7fffe00266e0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> GData-Version: 2
+> If-Match: "YD0qeyI."
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375013860
+< Soup-Debug: SoupMessage 50 (0x9aa550)
+< Expires: Sun, 28 Jul 2013 12:17:39 GMT
+< Date: Sun, 28 Jul 2013 12:17:39 GMT
+< Cache-control: private, max-age=0, must-revalidate
+< Set-Cookie: _rtok=DjgZSXSBmt9b; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=3m7NV7NjAbuhf_P0L-yE9A; Domain=.google.com; Path=/; Secure; HttpOnly
+< GData-Version: 2.0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
+> DELETE /data/entry/api/user/libgdata.picasaweb/albumid/5905639542445656401?authkey=Gv1sRgCIi65tzhvtybNQ 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375013860
+> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 51 (0x9aa550), SoupSocket 22 (0x7fffe00266e0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> GData-Version: 2
+> If-Match: "YD0qeyI."
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375013860
+< Soup-Debug: SoupMessage 51 (0x9aa550)
+< Expires: Sun, 28 Jul 2013 12:17:40 GMT
+< Date: Sun, 28 Jul 2013 12:17:40 GMT
+< Cache-control: private, max-age=0, must-revalidate
+< Set-Cookie: _rtok=NjIWemszbKxt; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=ptF41YN7qAK0JVqjEo8juQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< GData-Version: 2.0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]