-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.json
4006 lines (4006 loc) · 275 KB
/
example.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/00jP3dnOM8PZ8TsRKIH5AyZmOqw"',
u'items': [{u'alternateLink': u'https://docs.google.com/document/d/1iUEKVhjFZb1V4DKZOEebJBloyJ5CxmJf7BFwIEDq-s8/edit',
u'appDataContents': False,
u'createdDate': u'2012-07-01T19:21:45.284Z',
u'editable': True,
u'embedLink': u'https://docs.google.com/document/d/1iUEKVhjFZb1V4DKZOEebJBloyJ5CxmJf7BFwIEDq-s8/preview',
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTczODg2NDI0NA"',
u'explicitlyTrashed': True,
u'exportLinks': {u'application/pdf': u'https://docs.google.com/feeds/download/documents/export/Export?id=1iUEKVhjFZb1V4DKZOEebJBloyJ5CxmJf7BFwIEDq-s8&exportFormat=pdf',
u'application/rtf': u'https://docs.google.com/feeds/download/documents/export/Export?id=1iUEKVhjFZb1V4DKZOEebJBloyJ5CxmJf7BFwIEDq-s8&exportFormat=rtf',
u'application/vnd.oasis.opendocument.text': u'https://docs.google.com/feeds/download/documents/export/Export?id=1iUEKVhjFZb1V4DKZOEebJBloyJ5CxmJf7BFwIEDq-s8&exportFormat=odt',
u'application/vnd.openxmlformats-officedocument.wordprocessingml.document': u'https://docs.google.com/feeds/download/documents/export/Export?id=1iUEKVhjFZb1V4DKZOEebJBloyJ5CxmJf7BFwIEDq-s8&exportFormat=docx',
u'text/html': u'https://docs.google.com/feeds/download/documents/export/Export?id=1iUEKVhjFZb1V4DKZOEebJBloyJ5CxmJf7BFwIEDq-s8&exportFormat=html',
u'text/plain': u'https://docs.google.com/feeds/download/documents/export/Export?id=1iUEKVhjFZb1V4DKZOEebJBloyJ5CxmJf7BFwIEDq-s8&exportFormat=txt'},
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png',
u'id': u'1iUEKVhjFZb1V4DKZOEebJBloyJ5CxmJf7BFwIEDq-s8',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': True,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-02-01T17:14:24.244Z',
u'mimeType': u'application/vnd.google-apps.document',
u'modifiedByMeDate': u'2013-02-01T17:14:24.244Z',
u'modifiedDate': u'2013-02-01T17:14:24.244Z',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0AESQQ7TL8DsBUk9PVA',
u'isRoot': True,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0AESQQ7TL8DsBUk9PVA',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/1iUEKVhjFZb1V4DKZOEebJBloyJ5CxmJf7BFwIEDq-s8/parents/0AESQQ7TL8DsBUk9PVA'}],
u'quotaBytesUsed': u'0',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/1iUEKVhjFZb1V4DKZOEebJBloyJ5CxmJf7BFwIEDq-s8',
u'shared': False,
u'thumbnailLink': u'https://docs.google.com/feeds/vt?gd=true&id=1iUEKVhjFZb1V4DKZOEebJBloyJ5CxmJf7BFwIEDq-s8&v=4&s=AMedNnoAAAAAUQ0tCZmtaa6UsmfWzRCWriFPaFb_D2dy&sz=s220',
u'title': u'Dreams of Deegan',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/PI5lFWIu1MomU4pxOgf6HBqnB4Q"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/1iUEKVhjFZb1V4DKZOEebJBloyJ5CxmJf7BFwIEDq-s8/permissions/me',
u'type': u'user'},
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/document/d/1NZjsa-DVVUSFSEvvuseTp9TqrlVFlObkc5Wj6cHW9h0/edit',
u'appDataContents': False,
u'createdDate': u'2012-11-29T14:49:46.686Z',
u'editable': True,
u'embedLink': u'https://docs.google.com/document/d/1NZjsa-DVVUSFSEvvuseTp9TqrlVFlObkc5Wj6cHW9h0/preview',
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTczODQzMDIzOQ"',
u'exportLinks': {u'application/pdf': u'https://docs.google.com/feeds/download/documents/export/Export?id=1NZjsa-DVVUSFSEvvuseTp9TqrlVFlObkc5Wj6cHW9h0&exportFormat=pdf',
u'application/rtf': u'https://docs.google.com/feeds/download/documents/export/Export?id=1NZjsa-DVVUSFSEvvuseTp9TqrlVFlObkc5Wj6cHW9h0&exportFormat=rtf',
u'application/vnd.oasis.opendocument.text': u'https://docs.google.com/feeds/download/documents/export/Export?id=1NZjsa-DVVUSFSEvvuseTp9TqrlVFlObkc5Wj6cHW9h0&exportFormat=odt',
u'application/vnd.openxmlformats-officedocument.wordprocessingml.document': u'https://docs.google.com/feeds/download/documents/export/Export?id=1NZjsa-DVVUSFSEvvuseTp9TqrlVFlObkc5Wj6cHW9h0&exportFormat=docx',
u'text/html': u'https://docs.google.com/feeds/download/documents/export/Export?id=1NZjsa-DVVUSFSEvvuseTp9TqrlVFlObkc5Wj6cHW9h0&exportFormat=html',
u'text/plain': u'https://docs.google.com/feeds/download/documents/export/Export?id=1NZjsa-DVVUSFSEvvuseTp9TqrlVFlObkc5Wj6cHW9h0&exportFormat=txt'},
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png',
u'id': u'1NZjsa-DVVUSFSEvvuseTp9TqrlVFlObkc5Wj6cHW9h0',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-02-01T17:07:10.239Z',
u'mimeType': u'application/vnd.google-apps.document',
u'modifiedByMeDate': u'2013-02-01T17:07:10.239Z',
u'modifiedDate': u'2013-02-01T17:07:10.239Z',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0AESQQ7TL8DsBUk9PVA',
u'isRoot': True,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0AESQQ7TL8DsBUk9PVA',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/1NZjsa-DVVUSFSEvvuseTp9TqrlVFlObkc5Wj6cHW9h0/parents/0AESQQ7TL8DsBUk9PVA'}],
u'quotaBytesUsed': u'0',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/1NZjsa-DVVUSFSEvvuseTp9TqrlVFlObkc5Wj6cHW9h0',
u'shared': False,
u'thumbnailLink': u'https://docs.google.com/feeds/vt?gd=true&id=1NZjsa-DVVUSFSEvvuseTp9TqrlVFlObkc5Wj6cHW9h0&v=3&s=AMedNnoAAAAAUQ0tCWneMNmQUVLapZ0m4WdirHNXT4E8&sz=s220',
u'title': u'Dropbox Emergency info',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/sAnylYJJ2tTCmNJIgq2zTgCGBYw"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/1NZjsa-DVVUSFSEvvuseTp9TqrlVFlObkc5Wj6cHW9h0/permissions/me',
u'type': u'user'},
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBY29ORVBQVDZOMVU/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T23:56:24.724Z',
u'downloadUrl': u'https://doc-0k-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/g48evgvafk6kkualpcuku1btof960b2a/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBY29ORVBQVDZOMVU?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTY3NjU4NDcyNA"',
u'fileExtension': u'tex',
u'fileSize': u'0',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBY29ORVBQVDZOMVU',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T23:56:44.921Z',
u'md5Checksum': u'd41d8cd98f00b204e9800998ecf8427e',
u'mimeType': u'text/x-tex',
u'modifiedByMeDate': u'2013-01-31T23:56:24.686Z',
u'modifiedDate': u'2013-01-31T23:56:24.724Z',
u'originalFilename': u'Prologue.tex',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBSEZKVFVNODZvckk',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBSEZKVFVNODZvckk',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBY29ORVBQVDZOMVU/parents/0B0SQQ7TL8DsBSEZKVFVNODZvckk'}],
u'quotaBytesUsed': u'0',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBY29ORVBQVDZOMVU',
u'shared': False,
u'title': u'Prologue.tex',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/GUg3BpO1_aO-nlh59YUSfvHTRUM"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBY29ORVBQVDZOMVU/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBY29ORVBQVDZOMVU&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBakRDM3ZpVTgybVk/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:21:51.821Z',
u'downloadUrl': u'https://doc-10-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/16la1rljrvpf2fciv59t961q4u24r16r/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBakRDM3ZpVTgybVk?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODUxMTUyMQ"',
u'fileExtension': u'png',
u'fileSize': u'5933',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBakRDM3ZpVTgybVk',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T13:21:51.521Z',
u'md5Checksum': u'fc443497b2134ecb1ef5438eb4db2539',
u'mimeType': u'application/carbon',
u'modifiedByMeDate': u'2013-01-31T13:21:51.521Z',
u'modifiedDate': u'2013-01-31T13:21:51.521Z',
u'originalFilename': u'com.teslacoilsw.launcher.png',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBakRDM3ZpVTgybVk/parents/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ'}],
u'quotaBytesUsed': u'5933',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBakRDM3ZpVTgybVk',
u'shared': False,
u'title': u'com.teslacoilsw.launcher.png',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/f5uNmHZ7nU6Yg6iw00aIhrnjo90"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBakRDM3ZpVTgybVk/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBakRDM3ZpVTgybVk&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBVzA2VHh1MWhNT2s/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:21:48.935Z',
u'downloadUrl': u'https://doc-14-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/npiljq79d3lllhlfajqfa91p0j7vn3cb/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBVzA2VHh1MWhNT2s?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODUwODg0NA"',
u'fileExtension': u'json',
u'fileSize': u'173',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBVzA2VHh1MWhNT2s',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T13:21:48.844Z',
u'md5Checksum': u'a4e21048c3661ae35c305742008ab029',
u'mimeType': u'application/carbon',
u'modifiedByMeDate': u'2013-01-31T13:21:48.844Z',
u'modifiedDate': u'2013-01-31T13:21:48.844Z',
u'originalFilename': u'la.droid.qr.json',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBVzA2VHh1MWhNT2s/parents/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ'}],
u'quotaBytesUsed': u'173',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBVzA2VHh1MWhNT2s',
u'shared': False,
u'title': u'la.droid.qr.json',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/izdbzmLG6YxVIZN7ykkovse-vXw"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBVzA2VHh1MWhNT2s/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBVzA2VHh1MWhNT2s&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBcVVoaDViQmhYNnc/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:22:16.990Z',
u'downloadUrl': u'https://doc-0g-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/54lptv5rblfteshjcnieo15ggt2rg9t2/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBcVVoaDViQmhYNnc?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODUzNjkxMQ"',
u'fileExtension': u'json',
u'fileSize': u'200',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBcVVoaDViQmhYNnc',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T13:22:16.911Z',
u'md5Checksum': u'1db63899ebd783d788155055c33c2832',
u'mimeType': u'application/carbon',
u'modifiedByMeDate': u'2013-01-31T13:22:16.911Z',
u'modifiedDate': u'2013-01-31T13:22:16.911Z',
u'originalFilename': u'com.sportstracklive.stopwatch.json',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBcVVoaDViQmhYNnc/parents/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ'}],
u'quotaBytesUsed': u'200',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBcVVoaDViQmhYNnc',
u'shared': False,
u'title': u'com.sportstracklive.stopwatch.json',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/PT7tnsexMSUdBjLm_9kHbxdnTIU"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBcVVoaDViQmhYNnc/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBcVVoaDViQmhYNnc&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBMWlLTHR3S19DRFU/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:21:31.084Z',
u'downloadUrl': u'https://doc-14-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/t47oes3vf0ail2fr6joa9t1rli55g1gs/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBMWlLTHR3S19DRFU?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODQ5MTAzNw"',
u'fileExtension': u'ab',
u'fileSize': u'5140778',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBMWlLTHR3S19DRFU',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T13:21:31.037Z',
u'md5Checksum': u'7090d14dbffcd0df3b93ccdfad3570bc',
u'mimeType': u'application/carbon',
u'modifiedByMeDate': u'2013-01-31T13:21:31.037Z',
u'modifiedDate': u'2013-01-31T13:21:31.037Z',
u'originalFilename': u'com.noodlecake.happyjump.ab',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBMWlLTHR3S19DRFU/parents/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ'}],
u'quotaBytesUsed': u'5140778',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBMWlLTHR3S19DRFU',
u'shared': False,
u'title': u'com.noodlecake.happyjump.ab',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MuQw0Dja30zx4s5khsFBaeM1lRo"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBMWlLTHR3S19DRFU/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBMWlLTHR3S19DRFU&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBZlIxSTRLcGRBaDQ/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:22:15.310Z',
u'downloadUrl': u'https://doc-10-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/damo1alktu0ueug012quqhsj0sbrqa7m/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBZlIxSTRLcGRBaDQ?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODUzNTE2Mw"',
u'fileExtension': u'ab',
u'fileSize': u'6097344',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBZlIxSTRLcGRBaDQ',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T13:22:15.163Z',
u'md5Checksum': u'788138e56a677d3ba827ee7e4b195818',
u'mimeType': u'application/carbon',
u'modifiedByMeDate': u'2013-01-31T13:22:15.163Z',
u'modifiedDate': u'2013-01-31T13:22:15.163Z',
u'originalFilename': u'la.droid.qr.ab',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBZlIxSTRLcGRBaDQ/parents/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ'}],
u'quotaBytesUsed': u'6097344',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBZlIxSTRLcGRBaDQ',
u'shared': False,
u'title': u'la.droid.qr.ab',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/8W3LHExXe7F366Td26m-GlCJGxQ"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBZlIxSTRLcGRBaDQ/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBZlIxSTRLcGRBaDQ&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBVjNXLXBNbjdMdVE/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:21:35.855Z',
u'downloadUrl': u'https://doc-04-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/36n8icpb5hctgbn5rk92p4rkhflu6oqp/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBVjNXLXBNbjdMdVE?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODQ5NTc1NQ"',
u'fileExtension': u'png',
u'fileSize': u'9703',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBVjNXLXBNbjdMdVE',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T13:21:35.755Z',
u'md5Checksum': u'41afcb92b555e260c31b7fe61a0f044e',
u'mimeType': u'application/carbon',
u'modifiedByMeDate': u'2013-01-31T13:21:35.755Z',
u'modifiedDate': u'2013-01-31T13:21:35.755Z',
u'originalFilename': u'com.noodlecake.happyjump.png',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBVjNXLXBNbjdMdVE/parents/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ'}],
u'quotaBytesUsed': u'9703',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBVjNXLXBNbjdMdVE',
u'shared': False,
u'title': u'com.noodlecake.happyjump.png',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/hnIXGRZg1XwqunsWaVsM3RzDPlc"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBVjNXLXBNbjdMdVE/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBVjNXLXBNbjdMdVE&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBVXFCQXMtU0JtWE0/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:21:32.923Z',
u'downloadUrl': u'https://doc-08-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/a97ohp5brbbu352s6tn5dkhlc60slvhs/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBVXFCQXMtU0JtWE0?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODQ5MjgwOA"',
u'fileExtension': u'json',
u'fileSize': u'191',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBVXFCQXMtU0JtWE0',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T13:21:32.808Z',
u'md5Checksum': u'96f63e7acc702435c819442440b9ac8a',
u'mimeType': u'application/carbon',
u'modifiedByMeDate': u'2013-01-31T13:21:32.808Z',
u'modifiedDate': u'2013-01-31T13:21:32.808Z',
u'originalFilename': u'com.teslacoilsw.launcher.json',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBVXFCQXMtU0JtWE0/parents/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ'}],
u'quotaBytesUsed': u'191',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBVXFCQXMtU0JtWE0',
u'shared': False,
u'title': u'com.teslacoilsw.launcher.json',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/r8dm5bEyYqpx2ESok06qfamqTP0"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBVXFCQXMtU0JtWE0/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBVXFCQXMtU0JtWE0&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBUlZYalAteGhfS1U/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:21:46.995Z',
u'downloadUrl': u'https://doc-0k-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/r7arm5rsumd33apa3ujmo1bpf2han7u7/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBUlZYalAteGhfS1U?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODUwNjkwMQ"',
u'fileExtension': u'ab',
u'fileSize': u'3555386',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBUlZYalAteGhfS1U',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T13:21:46.901Z',
u'md5Checksum': u'8de27658623777cb6db912c253d575a1',
u'mimeType': u'application/carbon',
u'modifiedByMeDate': u'2013-01-31T13:21:46.901Z',
u'modifiedDate': u'2013-01-31T13:21:46.901Z',
u'originalFilename': u'com.teslacoilsw.launcher.ab',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBUlZYalAteGhfS1U/parents/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ'}],
u'quotaBytesUsed': u'3555386',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBUlZYalAteGhfS1U',
u'shared': False,
u'title': u'com.teslacoilsw.launcher.ab',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/VjycwdFgQOEowwWCbP0cUj2OcYs"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBUlZYalAteGhfS1U/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBUlZYalAteGhfS1U&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBMTVpTVhMTXN1R0k/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:20:51.448Z',
u'downloadUrl': u'https://doc-10-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/u1jcu5qhg8u1hb74qtfeiesfo54pv6fq/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBMTVpTVhMTXN1R0k?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODQ1MTQwNQ"',
u'fileExtension': u'png',
u'fileSize': u'11684',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBMTVpTVhMTXN1R0k',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T13:20:51.405Z',
u'md5Checksum': u'94715638ccb57e02c77570319798115d',
u'mimeType': u'application/carbon',
u'modifiedByMeDate': u'2013-01-31T13:20:51.405Z',
u'modifiedDate': u'2013-01-31T13:20:51.405Z',
u'originalFilename': u'com.android.aldiko.png',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBMTVpTVhMTXN1R0k/parents/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ'}],
u'quotaBytesUsed': u'11684',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBMTVpTVhMTXN1R0k',
u'shared': False,
u'title': u'com.android.aldiko.png',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/F8J7DiE-VJd2NO8j9X5vPTEkfUk"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBMTVpTVhMTXN1R0k/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBMTVpTVhMTXN1R0k&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBSWJ0N1QxN2ZFaDQ/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:20:49.660Z',
u'downloadUrl': u'https://doc-0o-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/hkp79u90dtrrdp9qd8hb1fh56esojug5/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBSWJ0N1QxN2ZFaDQ?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODQ0OTUyMg"',
u'fileExtension': u'json',
u'fileSize': u'208',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBSWJ0N1QxN2ZFaDQ',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T13:20:49.522Z',
u'md5Checksum': u'bb7a09e67cc406cd633b5b51898dc8ac',
u'mimeType': u'application/carbon',
u'modifiedByMeDate': u'2013-01-31T13:20:49.522Z',
u'modifiedDate': u'2013-01-31T13:20:49.522Z',
u'originalFilename': u'com.melodis.midomiMusicIdentifier.freemium.json',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBSWJ0N1QxN2ZFaDQ/parents/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ'}],
u'quotaBytesUsed': u'208',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBSWJ0N1QxN2ZFaDQ',
u'shared': False,
u'title': u'com.melodis.midomiMusicIdentifier.freemium.json',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/GYBV-7D_fCA8jrAP37oGoTeILvg"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBSWJ0N1QxN2ZFaDQ/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBSWJ0N1QxN2ZFaDQ&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBdl9TRENjSXhBUUU/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:20:47.637Z',
u'downloadUrl': u'https://doc-08-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/ofs2i2milr752hmruuli3crq7b48lo9n/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBdl9TRENjSXhBUUU?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODQ0NzQyMg"',
u'fileExtension': u'ab',
u'fileSize': u'378965',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBdl9TRENjSXhBUUU',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T13:20:47.422Z',
u'md5Checksum': u'9441034649b506c92dfaf2129a086369',
u'mimeType': u'application/carbon',
u'modifiedByMeDate': u'2013-01-31T13:20:47.422Z',
u'modifiedDate': u'2013-01-31T13:20:47.422Z',
u'originalFilename': u'com.android.aldiko.ab',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBdl9TRENjSXhBUUU/parents/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ'}],
u'quotaBytesUsed': u'378965',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBdl9TRENjSXhBUUU',
u'shared': False,
u'title': u'com.android.aldiko.ab',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/PQ-c-dmz-Bm_xAhF6WE2pzOq710"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBdl9TRENjSXhBUUU/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBdl9TRENjSXhBUUU&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBWHB4OGlJdFoxTzQ/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:21:12.124Z',
u'downloadUrl': u'https://doc-04-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/1jjtmcv21pl9g5vhue5gml598asbbc2t/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBWHB4OGlJdFoxTzQ?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODQ3MjAzNg"',
u'fileExtension': u'png',
u'fileSize': u'12869',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBWHB4OGlJdFoxTzQ',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T13:21:12.036Z',
u'md5Checksum': u'19c4841176704876a9a01372cf9371d6',
u'mimeType': u'application/carbon',
u'modifiedByMeDate': u'2013-01-31T13:21:12.036Z',
u'modifiedDate': u'2013-01-31T13:21:12.036Z',
u'originalFilename': u'com.melodis.midomiMusicIdentifier.freemium.png',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBWHB4OGlJdFoxTzQ/parents/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ'}],
u'quotaBytesUsed': u'12869',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBWHB4OGlJdFoxTzQ',
u'shared': False,
u'title': u'com.melodis.midomiMusicIdentifier.freemium.png',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/iwMSoWskXKO6EP4fOaHF64mR0hc"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBWHB4OGlJdFoxTzQ/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBWHB4OGlJdFoxTzQ&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBeW1MRWhvemFzNGs/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:21:16.772Z',
u'downloadUrl': u'https://doc-0c-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/hgj6b1ds2rn5f49tgrnp5u6s8b8u978m/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBeW1MRWhvemFzNGs?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODQ3NjY4Mw"',
u'fileExtension': u'json',
u'fileSize': u'186',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBeW1MRWhvemFzNGs',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T13:21:16.683Z',
u'md5Checksum': u'fa1739f3ed6f20451a243d9318b7e17f',
u'mimeType': u'application/carbon',
u'modifiedByMeDate': u'2013-01-31T13:21:16.683Z',
u'modifiedDate': u'2013-01-31T13:21:16.683Z',
u'originalFilename': u'com.noodlecake.happyjump.json',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBeW1MRWhvemFzNGs/parents/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ'}],
u'quotaBytesUsed': u'186',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBeW1MRWhvemFzNGs',
u'shared': False,
u'title': u'com.noodlecake.happyjump.json',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/1qKU1jz19ptAMP8gaAl6e82mUqo"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBeW1MRWhvemFzNGs/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBeW1MRWhvemFzNGs&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBR3kxSE9TeWtKa1U/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:20:42.269Z',
u'downloadUrl': u'https://doc-0c-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/b0eh582ob1sk2u0vdj2h81102pd48i6d/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBR3kxSE9TeWtKa1U?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODQ0MjE1MQ"',
u'fileExtension': u'json',
u'fileSize': u'191',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBR3kxSE9TeWtKa1U',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T13:20:42.151Z',
u'md5Checksum': u'2c2340cacdeccc1d1fec2d5b233537c2',
u'mimeType': u'application/carbon',
u'modifiedByMeDate': u'2013-01-31T13:20:42.151Z',
u'modifiedDate': u'2013-01-31T13:20:42.151Z',
u'originalFilename': u'com.android.aldiko.json',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBR3kxSE9TeWtKa1U/parents/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ'}],
u'quotaBytesUsed': u'191',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBR3kxSE9TeWtKa1U',
u'shared': False,
u'title': u'com.android.aldiko.json',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/qKEn390QUYf7A_p8glnsnmyncVU"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBR3kxSE9TeWtKa1U/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBR3kxSE9TeWtKa1U&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBRmFWZTV3T2lJdE0/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:21:19.453Z',
u'downloadUrl': u'https://doc-0s-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/gkcsd6ifs2r7ru44qvl51k1varaabog1/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBRmFWZTV3T2lJdE0?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODQ3OTI5Mw"',
u'fileExtension': u'png',
u'fileSize': u'52614',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBRmFWZTV3T2lJdE0',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T13:21:19.293Z',
u'md5Checksum': u'998e387de3919d5d589982df89f0c141',
u'mimeType': u'application/carbon',
u'modifiedByMeDate': u'2013-01-31T13:21:19.293Z',
u'modifiedDate': u'2013-01-31T13:21:19.293Z',
u'originalFilename': u'com.keramidas.TitaniumBackupPro.png',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBRmFWZTV3T2lJdE0/parents/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ'}],
u'quotaBytesUsed': u'52614',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBRmFWZTV3T2lJdE0',
u'shared': False,
u'title': u'com.keramidas.TitaniumBackupPro.png',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/6g8PxybugBWlVzpAUV3tw-Ed7C8"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBRmFWZTV3T2lJdE0/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBRmFWZTV3T2lJdE0&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBa3lhWFo1RWVjSmc/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:20:40.316Z',
u'downloadUrl': u'https://doc-0o-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/5pg8ubsfd3dv1963nd3e3qs14bm54h3s/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBa3lhWFo1RWVjSmc?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODQ0MDA4OQ"',
u'fileExtension': u'ab',
u'fileSize': u'4345010',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBa3lhWFo1RWVjSmc',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T13:20:40.089Z',
u'md5Checksum': u'9ac5e40fc7d11aeb43181aae797906fe',
u'mimeType': u'application/carbon',
u'modifiedByMeDate': u'2013-01-31T13:20:40.089Z',
u'modifiedDate': u'2013-01-31T13:20:40.089Z',
u'originalFilename': u'com.pauloslf.cloudprint.ab',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBa3lhWFo1RWVjSmc/parents/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ'}],
u'quotaBytesUsed': u'4345010',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBa3lhWFo1RWVjSmc',
u'shared': False,
u'title': u'com.pauloslf.cloudprint.ab',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/BheXgrqNHqOPg1rRbZTerlVbpKs"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBa3lhWFo1RWVjSmc/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBa3lhWFo1RWVjSmc&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBSE94c2s0MWI3aVU/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:20:44.560Z',
u'downloadUrl': u'https://doc-14-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/146ig80ta9i5frn62hv69afpf6v1t0bm/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBSE94c2s0MWI3aVU?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODQ0NDQ3Mg"',
u'fileExtension': u'png',
u'fileSize': u'6101',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBSE94c2s0MWI3aVU',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T13:20:44.472Z',
u'md5Checksum': u'00230dff36a2f9d5e0522b7efc220cdf',
u'mimeType': u'application/carbon',
u'modifiedByMeDate': u'2013-01-31T13:20:44.472Z',
u'modifiedDate': u'2013-01-31T13:20:44.472Z',
u'originalFilename': u'com.pauloslf.cloudprint.png',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBSE94c2s0MWI3aVU/parents/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ'}],
u'quotaBytesUsed': u'6101',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBSE94c2s0MWI3aVU',
u'shared': False,
u'title': u'com.pauloslf.cloudprint.png',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/l-CysY4xpO5RAJNTo0plKfNXRe4"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBSE94c2s0MWI3aVU/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBSE94c2s0MWI3aVU&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBU1ZIUWxDUnZDX3M/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:21:14.219Z',
u'downloadUrl': u'https://doc-0g-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/26vuu4goe05rpc7obtk18mm1ubr6pt5u/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBU1ZIUWxDUnZDX3M?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODQ3NDExOQ"',
u'fileExtension': u'ab',
u'fileSize': u'4643',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBU1ZIUWxDUnZDX3M',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T13:21:14.119Z',
u'md5Checksum': u'0641124923c018c1e2d78a21f16beece',
u'mimeType': u'application/carbon',
u'modifiedByMeDate': u'2013-01-31T13:21:14.119Z',
u'modifiedDate': u'2013-01-31T13:21:14.119Z',
u'originalFilename': u'com.keramidas.TitaniumBackupPro.ab',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBU1ZIUWxDUnZDX3M/parents/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ'}],
u'quotaBytesUsed': u'4643',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBU1ZIUWxDUnZDX3M',
u'shared': False,
u'title': u'com.keramidas.TitaniumBackupPro.ab',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/cn9wnCduDB6eM1jkkCAVr8IIyeA"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBU1ZIUWxDUnZDX3M/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBU1ZIUWxDUnZDX3M&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBbTZERUVmQWtUVHM/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:21:09.895Z',
u'downloadUrl': u'https://doc-14-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/pp5dcnv272un95p0ub25ao6shsk586tu/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBbTZERUVmQWtUVHM?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODQ2OTgwNA"',
u'fileExtension': u'json',
u'fileSize': u'204',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBbTZERUVmQWtUVHM',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T13:21:09.804Z',
u'md5Checksum': u'a4a2f96f94bfb298ab0b899285eb5855',
u'mimeType': u'application/carbon',
u'modifiedByMeDate': u'2013-01-31T13:21:09.804Z',
u'modifiedDate': u'2013-01-31T13:21:09.804Z',
u'originalFilename': u'com.keramidas.TitaniumBackupPro.json',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbTZERUVmQWtUVHM/parents/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ'}],
u'quotaBytesUsed': u'204',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbTZERUVmQWtUVHM',
u'shared': False,
u'title': u'com.keramidas.TitaniumBackupPro.json',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/tOu6QIF4xJiuHuGiK2nuZ3Ef-v8"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbTZERUVmQWtUVHM/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBbTZERUVmQWtUVHM&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBV2lIT0lfRGlkWmM/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:21:08.000Z',
u'downloadUrl': u'https://doc-08-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/ltfp2m8ncsl4qgpps9djku1htb4056pj/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBV2lIT0lfRGlkWmM?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODQ2Nzc1MA"',
u'fileExtension': u'ab',
u'fileSize': u'6216655',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBV2lIT0lfRGlkWmM',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T13:21:07.750Z',
u'md5Checksum': u'fbafa7d565d38a84a206c627b91b2f97',
u'mimeType': u'application/carbon',
u'modifiedByMeDate': u'2013-01-31T13:21:07.750Z',
u'modifiedDate': u'2013-01-31T13:21:07.750Z',
u'originalFilename': u'com.melodis.midomiMusicIdentifier.freemium.ab',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBV2lIT0lfRGlkWmM/parents/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ'}],
u'quotaBytesUsed': u'6216655',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBV2lIT0lfRGlkWmM',
u'shared': False,
u'title': u'com.melodis.midomiMusicIdentifier.freemium.ab',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/4lvmYVbhT6el9OOPRGWX323GrSI"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBV2lIT0lfRGlkWmM/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBV2lIT0lfRGlkWmM&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBMzZ4Y1Q1OTBmU0U/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:20:18.695Z',
u'downloadUrl': u'https://doc-0s-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/m1cnpd68ngs8dsv3i8rj4hir0kngb7ah/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBMzZ4Y1Q1OTBmU0U?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODQxODYwNw"',
u'fileExtension': u'ab',
u'fileSize': u'108589',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBMzZ4Y1Q1OTBmU0U',
u'kind': u'drive#file',
u'labels': {u'hidden': False,
u'restricted': False,
u'starred': False,
u'trashed': False,
u'viewed': True},
u'lastModifyingUserName': u'Accalia De Elementia',
u'lastViewedByMeDate': u'2013-01-31T13:20:18.607Z',
u'md5Checksum': u'741a3a568b562caac015ce356584fe7e',
u'mimeType': u'application/carbon',
u'modifiedByMeDate': u'2013-01-31T13:20:18.607Z',
u'modifiedDate': u'2013-01-31T13:20:18.607Z',
u'originalFilename': u'com.enjoysudoku.enjoysudoku.ab',
u'ownerNames': [u'Accalia De Elementia'],
u'parents': [{u'id': u'0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'isRoot': False,
u'kind': u'drive#parentReference',
u'parentLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBMzZ4Y1Q1OTBmU0U/parents/0B0SQQ7TL8DsBbHBVVzU5cXRNdjQ'}],
u'quotaBytesUsed': u'108589',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBMzZ4Y1Q1OTBmU0U',
u'shared': False,
u'title': u'com.enjoysudoku.enjoysudoku.ab',
u'userPermission': {u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/XEabUpdncqvIPUYnzRaa-Da9RV4"',
u'id': u'me',
u'kind': u'drive#permission',
u'role': u'owner',
u'selfLink': u'https://www.googleapis.com/drive/v2/files/0B0SQQ7TL8DsBMzZ4Y1Q1OTBmU0U/permissions/me',
u'type': u'user'},
u'webContentLink': u'https://docs.google.com/uc?id=0B0SQQ7TL8DsBMzZ4Y1Q1OTBmU0U&export=download',
u'writersCanShare': True},
{u'alternateLink': u'https://docs.google.com/file/d/0B0SQQ7TL8DsBOGc3YkFyNm1yOFk/edit',
u'appDataContents': False,
u'createdDate': u'2013-01-31T13:20:23.218Z',
u'downloadUrl': u'https://doc-10-a4-docs.googleusercontent.com/docs/securesc/290btf8o0kcl35qg8cn6n73m7v313u2s/jv0kqvk0b95j2gqe8i2h2d7pcal970b0/1359806400000/15513812368965297526/15513812368965297526/0B0SQQ7TL8DsBOGc3YkFyNm1yOFk?h=16653014193614665626&e=download&gd=true',
u'editable': True,
u'etag': u'"Q0cVodxX8sh4vfxZTlOyWcmmc0k/MTM1OTYzODQyMzA3Nw"',
u'fileExtension': u'png',
u'fileSize': u'19868',
u'iconLink': u'https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png',
u'id': u'0B0SQQ7TL8DsBOGc3YkFyNm1yOFk',