reviewed 0.6.0 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. checksums.yaml +7 -0
  2. data/lib/faraday/cache.rb +13 -11
  3. data/lib/reviewed/cache.rb +18 -0
  4. data/lib/reviewed/version.rb +1 -1
  5. data/reviewed.gemspec +1 -1
  6. data/spec/article_spec.rb +1 -1
  7. data/spec/client_spec.rb +1 -1
  8. data/spec/collection_spec.rb +1 -1
  9. data/spec/faraday/cache_spec.rb +9 -9
  10. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/assigns_attachments_to_the_correct_class.yml +236 -289
  11. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/does_not_has_many_attachments.yml +196 -226
  12. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/does_not_have_any_matching_attachments.yml +236 -289
  13. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/finds_attachments_by_tag.yml +228 -361
  14. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/gets_gallery_attachments.yml +236 -313
  15. data/spec/fixtures/vcr/Reviewed_Article/associations/deals/has_many_deals.yml +228 -278
  16. data/spec/fixtures/vcr/Reviewed_Article/associations/pages/has_many_pages.yml +196 -226
  17. data/spec/fixtures/vcr/Reviewed_Article/associations/products/has_many_products.yml +196 -226
  18. data/spec/fixtures/vcr/Reviewed_Article/associations/products/returns_products_of_the_correct_class.yml +196 -226
  19. data/spec/fixtures/vcr/Reviewed_Article/associations/related_articles/has_many_related_articles.yml +196 -226
  20. data/spec/fixtures/vcr/Reviewed_Article/fetches_when_a_tag_is_not_in_pre-loaded_set.yml +365 -438
  21. data/spec/fixtures/vcr/Reviewed_Article/find_page/finds_a_page_with_a_matching_slug.yml +294 -351
  22. data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_a_product_of_the_correct_class.yml +424 -504
  23. data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_nil_if_does_not_respond_to_products.yml +392 -452
  24. data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_the_primary_product.yml +392 -452
  25. data/spec/fixtures/vcr/Reviewed_Article/returns_local_attachments_when_available.yml +363 -438
  26. data/spec/fixtures/vcr/Reviewed_Client/_perform/request_params/not_set/has_nil_query_params.yml +93 -102
  27. data/spec/fixtures/vcr/Reviewed_Client/_perform/request_params/set/merges_quest_params.yml +11 -12
  28. data/spec/fixtures/vcr/Reviewed_Collection/collection_data/fetches_the_first_page_by_default.yml +80 -197
  29. data/spec/fixtures/vcr/Reviewed_Collection/collection_data/is_enumerable.yml +80 -197
  30. data/spec/fixtures/vcr/Reviewed_Collection/next_page/fetches_the_next_page_of_results.yml +99 -302
  31. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/indicates_if_the_page_number_is_out_of_bounds.yml +80 -197
  32. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/indicates_whether_this_is_the_first_or_last_page.yml +48 -145
  33. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_limit_value_max_per_page_.yml +48 -145
  34. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_number_of_entries_on_the_current_page.yml +80 -197
  35. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_offset.yml +80 -197
  36. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_total_item_count.yml +48 -145
  37. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_total_number_of_pages.yml +80 -197
  38. data/spec/fixtures/vcr/Reviewed_Collection/previous_page/fetches_the_previous_page_of_results.yml +211 -551
  39. data/spec/fixtures/vcr/Reviewed_Collection/previous_page/returns_nil_if_there_is_no_previous_page.yml +48 -145
  40. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/does_not_have_any_matching_attachments.yml +90 -162
  41. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/matches_attachments_by_tag_properly.yml +50 -99
  42. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/no_longer_has_many_attachments.yml +50 -99
  43. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/returns_attachments_by_tag.yml +50 -99
  44. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/returns_attachments_of_the_correct_class.yml +58 -110
  45. data/spec/fixtures/vcr/Reviewed_Product/manufacturer_specs/has_many_manufacturer_specs.yml +50 -99
  46. data/spec/fixtures/vcr/Reviewed_Product/manufacturer_specs/returns_attachments_of_the_correct_class.yml +52 -99
  47. data/spec/fixtures/vcr/Reviewed_Request/_where/filters_collections_using_keywords.yml +72 -0
  48. data/spec/fixtures/vcr/Reviewed_Request/_where/returns_a_collection.yml +93 -102
  49. data/spec/fixtures/vcr/Reviewed_Request/_where/returns_an_empty_set_if_no_matching_data_was_found.yml +11 -9
  50. data/spec/fixtures/vcr/Reviewed_Request/_where/returns_the_appropriate_page_of_results.yml +91 -69
  51. data/spec/fixtures/vcr/Reviewed_Request/collection_from_response/returns_a_collection_object.yml +93 -102
  52. data/spec/fixtures/vcr/Reviewed_Request/collection_from_response/returns_objects_of_the_correct_class.yml +93 -102
  53. data/spec/fixtures/vcr/Reviewed_Request/object_from_response/returns_an_object_of_the_correct_class.yml +90 -93
  54. data/spec/product_spec.rb +1 -1
  55. data/spec/request_spec.rb +4 -4
  56. metadata +35 -62
  57. data/spec/fixtures/vcr/Reviewed_Request/_where/filters_collections_using_other_supported_options.yml +0 -66
@@ -14,7 +14,7 @@ http_interactions:
14
14
  Accept-Encoding:
15
15
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
16
  Accept:
17
- - ! '*/*'
17
+ - '*/*'
18
18
  response:
19
19
  status:
20
20
  code: 200
@@ -28,17 +28,17 @@ http_interactions:
28
28
  Access-Control-Allow-Methods:
29
29
  - OPTIONS, GET, POST, PUT, DELETE
30
30
  Access-Control-Allow-Origin:
31
- - ! '*'
31
+ - '*'
32
32
  Access-Control-Max-Age:
33
33
  - '1000'
34
34
  Cache-Control:
35
35
  - no-cache, no-store
36
- Content-Encoding:
37
- - gzip
38
36
  Content-Type:
39
37
  - application/json; charset=utf-8
40
38
  Date:
41
- - Wed, 24 Jul 2013 21:02:35 GMT
39
+ - Wed, 31 Jul 2013 14:01:20 GMT
40
+ Etag:
41
+ - '"e0aa021e21dddbd6d8cecec71e9cf564"'
42
42
  Status:
43
43
  - 200 OK
44
44
  Strict-Transport-Security:
@@ -48,9 +48,9 @@ http_interactions:
48
48
  X-Rack-Cache:
49
49
  - miss
50
50
  X-Request-Id:
51
- - dc91cdf1e5a40895acd7a8642e80f591
51
+ - 29695f25dacedf41038fd8963e0d5e52
52
52
  X-Runtime:
53
- - '0.155128'
53
+ - '0.009244'
54
54
  X-Ua-Compatible:
55
55
  - IE=Edge,chrome=1
56
56
  Transfer-Encoding:
@@ -58,436 +58,363 @@ http_interactions:
58
58
  Connection:
59
59
  - keep-alive
60
60
  body:
61
- encoding: ASCII-8BIT
62
- string: !binary |-
63
- H4sIAOtA8FEAA+ydj5PbNrLn/xWdN7W72RvZ/E1xXr3aS/wjzrskdtl+ibN7
64
- Wy6QBGcYa0QtJXk8m8r/ft0ASIIgOQMIkjZ1p619bz2SSH5JohsfNBqNXx+V
65
- +aPLR6FTpAlZuGnueIsoD8PQCdIk9B5dPMpqSrY0/0C28DvPcb2568x9950T
66
- XgbRpev/DX6zW+e93/hzJ5q77jt3cekll94Cf7MiN1ScYfasvCq3ZPkUPqrJ
67
- t6uimn1NN9tZVcx+pqSefXVL6nwDx6Q1WWXXH8ShN2SzpTV8vNnd3JD6Dj76
68
- qoBPZmSWV7er2R0eW65mcAn3Yra9prOMXQA+y3ebbX032+zqK5rPUpJ9nG2r
69
- 2bIs6OPZS1rTGYH/wyNS1MEP26AelPsYLnlDt+RDTjdZXa63ZbU6yLXFAd7j
70
- 2U9wdfIRZMyWVfWR/4hsZ/QThSPFmW7pnz7Bz0AgnGZ7XW74ReFc12SVz6rd
71
- dvhcH2fVzZ827dNFXewJE/aE8cZuabopt/RDCQ/88u/QEGgUJXnMG0KwoA77
72
- T/7oHxePyG57XdXdL4ssoCSQmkwaZCHBX27JFfvNU7KqVrOafirpLb7PH8qP
73
- vb9fkxXZVKsya+6x++rF7pdS+jPndzb8Hb+E+2z2vj3/s6B36hd/8xyn98k3
74
- L31xBvXj9oTPv3v9cua6zuzl2/azNzSly9m7oFQ+6cSw59yXih+/rVZ3szfv
75
- XSaj+6PTwHW/jmP2C+mv5ifwTLMl2WzKoswItj/2eAuwzF1N8dv1Ll2Wm+sP
76
- rGVyK3XnDlhpcun4l47zPx3nkp2cbLcku76hq630IsdsP4Ifi6885at4+qvF
77
- 9FfJ9Fdk+qt0+qts+qu8+8pXvqLTXxWTX0XO9Ffu9Ffe9Ff+9FfB9Ffh9FfR
78
- 9Ffx9FfS+wqUr5Lpr8jkV7E3/ZV0y6HyVTD9VTj9VTT9VTz91WL6q2T6K+mW
79
- I+WrdPqrbPqrfPorOv1VMfnVwpn+yp3+SnpfsfKVP/1VMP1VOP1VNP0Ve18u
80
- mLGfkDAt/EW+8L0ceh43SMRXFL4NPJIWbhDFEXzluQX/KgcHX/h+HmaBG5AA
81
- O6yQPQ03dMIkczISQVuMSIwnLGjAHGZdIkN8WNdVvsvQGT66XO2Wy4tHNd1U
82
- uzqjH3Z1Cc70ifCymyfMrQrvzp17CV3sHJFhXhVz7I3nomO93t6wTmvzz91G
83
- nIcdPeig51+Lo7Fbnrfg06lCF/0PFLXkhFVvy2xJuy/gPkDqVU3SlNbSXYgO
84
- gaRLQKdtvaO9j1g/wX+4We6uGnkmN1duPmzpzRplPbosyHJD2Wcc2dpPcgr/
85
- O3oLjX5yxf75qwBRN42jbLFIUqdwsyxP8UUTZiyCAl+UNXSyr+GwRwd5V08K
86
- POF8zU8onkb/M5o1Xe79Kmmn8mm12kIfiwxb5XcN914DVKaUrmbVijY8dlPB
87
- 7dDPWbktV1cM6RDstrOiqtn3my0pitk1g9QJwruYwXnxt+vraltBW1hfA860
88
- 5LkGMsRvbyvaMK0LMq7hB7NyiwAJr4aSDVyrugHCrHfLuxm5If9CQYJiHs9e
89
- 1NXNrFgC2V2X69mzt9+92eCh5QoGCHkJbWoGStYk224Y/4LcW1BFZhtKb+BE
90
- cEq6yuG1b2ZrUpOc3f9mt6Z12vI23vKOnRUpF+kYXu5sSVK4/Dt2SnyA0KAq
91
- /hSZXElAuVpVnxge4bEShIOlf6Tbi9ltub2eFWSTlSvCHveK3sK1sutVtayu
92
- 7vAO8FMUAAeDHIpPlt3XqoSHx+AcvuWNnCE3XAhPggRewiuHtsdOfEvuQPSr
93
- ncBugPW8BJiHZ4y/RK6fX9XVLf6UiwO8h7sDwM/AKhng0xmjfzYigWuCS/hU
94
- wmO7q3b8PvDZsFY1MnaShyAbPPVttVvm8J7hXoD9cjzhqoKjVvBe4IwXs3TH
95
- roInLeoSfrJhSgtyUy7h1h//n9X/Wf3666zDx82fp/z1l7PffsOf/+Uvf8H/
96
- +cMf/jDj7bU3BJmxb/4w+3tH8P/48/V2u7588uT29vbxwHixpT/JuF09YQfN
97
- n796O3efzd83fnXOrzN/w6gZHdWXeJ2//OXP379983r2RXQRJ8kMLXKOd/4l
98
- F/jrrxlZLuFl/vbbr78K7/RYutG//+nZ02/nX7/6ef70qx9e/fDBffb+8S/r
99
- qz/9A3//pD32p+tySZumj/+PPVwCzWe3hi+uy6vrOT765q2kdbW7umZPXTQB
100
- afzYjO425JY9Mmgxq+2OLFtTRetRmn8BLWde1HB6cCo5XYJBoc1Sgk1VOBvy
101
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- Z04x27GOeU5z6MXIbltBL7aDH8DLWWGs6RMeXbF5RtGjVGth9XBfgLboj+C+
127
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- yiUjQtBLVyVJQQGgHDzGixkVg3s2IgEo29b0Bt3O7ZyPZDbldscnyR9AZ25/
136
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- J163oamq+tjQFemmUFhEhUeBWINglxLnQV+RV3TTBKUax4Iz0V1QKt0tP85Y
147
- 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
- 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
- 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
- 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
- 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
- c4k481ozw2fzsXA3IljKBktoZCyO2bkDvT7qlH5Yo886tjnwvqrXVT3lSQdT
153
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- RHIAsN4tcaK8Enk63JIJ8x5ZdbUq/9VkGUgNrjkDu0XatdEuYMOdISB0ebXi
169
- 8SHwAjhIY14HxzKN08IkOrEGioeW+O+uMJ81peDfcp4wypXyIBV7fDWfswfQ
170
- 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
- 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
- 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
- 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
- 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
- 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
- 84fqKEdMZHwqa8yZxdRzNqXMs1/B0+4wQWhXw0nXhCUrwUgGk3FHsxhRWy+u
177
- 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
- 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
- 6Uftcsa2KWtQ19O7FM7DhlfsWO3MiCBh4wP8T5t91C2oZJ6UzZsAV8MFc3y4
180
- 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
- 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
- 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
- 7Y31J2zukoUVlbQ/do6mMbIftG0UH8iK3qYlhu9Lyph/t2G9C/wW7JKCZW83
184
- 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
- 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
- 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
- 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
- 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
- TYhnfVXhEKQbGvAZM+aIfmpGXpj11D3xbuaAP4gtyy5lKc74xkUe7NmLTXux
190
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- +3d4Ou2kmWO36bFe4V0NyLTU7Ra8yPppwSlMQFZvjP7yve/8aDrXKg0J2PHa
206
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- dHyqd9NVQuLVDXACrNVYU14CrSuRcNut/MVsfqnLnQuNV5WIIt2KAgAMs7va
218
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- ozEP9LRbNcZSlKH13g2L4vz0tRs6L/aoI8IP3Gf2R9+6+TXGDPy/eAGwjGD1
226
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- WvzYtWD0xplHsyeddZ8aA87jZyCN5NTpd5Xs9NOdpbS9hUCwmxJLqGNBx7wk
257
- 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
- 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
- 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
- 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
- e7/EFw4VSjaJPz7JzEtM4qYxWZmLoQXDry5ZlE/d4AGd7wYmyK9ueDU6lriw
262
- veXeHgscMcl8fviyy1LgrePle3jlP17MxIiQPZSmjspyycsvYwgQ0zqBKqoq
263
- n/1SpaM+vAbHLGbD1A1AlDbIi9GvsIoE3E87nGsFtFMHcHl8WE0UvSivdnUb
264
- 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
- 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
- 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
- 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
- 3FKxbObFssw+whjs7c3u6vudmEV6Day14cUuKjGxAT0X5sF8KrP2SBCTwvjn
269
- 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
- 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
- AZDybYPh9OnuBp1id0to3SzPm90DL10FHRgr1Ng8bG4HH8ucOWD+IP86+6Fq
272
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- +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
- 9AXBwIh9zwTxfz7xqZ84aRH6UZHEub8o/CJIMo8A+USxT8O/bv4zWPwx/88b
294
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- +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
- kRd9avSU38QPUqPvPEyN/DcKNfZ2Oz4FOcZZmoeJ40ROnGahT+kiCJzYy33i
305
- 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
- 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
- 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
- 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
- Koi/oD5ZhKGb+nGaJ0Hoq8Qpi7SkTX0JKm32RFiRpr4GhTT7Eqwo00CDQpk9
310
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- KNTYl2BFjQYaFGrsibCjRn0RKjUORexNjYYiJGrsibCjRhPL6FNjT4QdNeqL
332
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- sCJKAxFDopRU2AGlvooRoFRV7M2Thir6PCmpsMNJE/sY4KSkwo4m9VWM0KSi
345
- Yn+YNFMRTauwYkkDFUOWlFTYoaS+ihGUVFTsT5JmKvxJS7UDSTMVCkh2Kiw5
346
- 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
- GQkItOF8QckipmmepSQiizyPY5KF6uS4LNKSIfUlqPPiPRFWCKmvQZkS70uw
348
- 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
- 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
- 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
- QWt2M1KEhVs4Hg2p66cZiaI8zvPIy4ucqszYSbTdFVFbgEqMkgS7/RC1FSi8
352
- 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
- lqBSoiLBYq9DIwnRhAS7XQ71JSiEKEmw3N9QW4LKh4oEi50NjST440Zpuaeh
354
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 8MeN0nIZi5GE3oxzK8F2DYuuBPXKp1rAsq8+ZcZ5EfpnKrSkwviYVBhrUOHi
364
- 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
- 6qgtQSXDngi7go7aGhQ27Euwq+Wor0Ghw54IyzKO2iJUPhyK2L+Co5kIiRB7
366
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- o0p9DSpVqhr250kzDdGUBiuSNNCgkKSswY4h9TWoDKlq2J8ezTT4E7Zpx41m
407
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- KHfjKHEHBR97Ki15U1/DYAfrngor2NQXoe5g3ddgRZoGItQdrHsq7DBTX8Vg
417
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- SpUDERaVgoxERJMi7CoF6YtQaLInwrJSkLYIlSQHIiwqBRmJ8KdM1LJSkJEI
427
- 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
- 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
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- J/GyuMsZGdVqOW7T19CM28ZVWI3b9EWIcduEBqtxm4EIMW4bV2E3btNX0Yzb
471
- 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
- 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
- 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
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- OxBgR7L6AhqSHRewN70aCgB6HQiwI1YTC+DEOhBgR6n6AhpKHRWwP5maCYhG
483
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- /Y1b/KrJGnT7WYOhRYHvB88MT/v/CgAAAP//AwAwW6QixGsCAA==
61
+ encoding: UTF-8
62
+ string: '{"id":"50fb9a81bd0286d55504b952","created_at":"2012-10-31T05:46:13Z","updated_at":"2013-06-11T18:29:28Z","name":"2012
63
+ DigitalCameraInfo Best of Year Awards","branch_name":"master","summary":"After
64
+ a down year in 2011, the camera industry surged back to life. Here are the
65
+ best cameras of 2012.","meta_description":"After a down year in 2011, the
66
+ camera industry surged back to life in 2012. We take a look back at every
67
+ camera we''ve tested this year to hand out DigitalCameraInfo.com''s Best of
68
+ the Year awards.","website_ids":["50e669d7bd028648e000000d"],"author_ids":["50fc4ea4bd0286d5550b4c5a"],"tags":["Canon
69
+ reviews","Nikon reviews","Panasonic camera reviews","Fuji reviews","digital
70
+ camera reviews","Canon 1D X","Nikon D4","Panasonic FZ200","Panasonic GH3 review","Panasonic
71
+ GH3","Canon ELPH 110 HS","Canon Rebel T4i","Canon Rebel reviews","Best digital
72
+ cameras","Sony RX100","Sony RX100 review","Nikon P7700","Nikon P7700 review"],"classifications":["feature"],"publish_on":"2012-11-01T09:03:00+00:00","attachment_ids":["50fb9a81bd0286d55504b956","50fb9a82bd0286d55504b957","50fb9a82bd0286d55504b958","50fb9a82bd0286d55504b959","50fb9a82bd0286d55504b95a","50fb9a82bd0286d55504b95b","50fb9a82bd0286d55504b95c","50fb9a82bd0286d55504b95d","50fb9a83bd0286d55504b95e","50fb9a83bd0286d55504b95f","50fb9a83bd0286d55504b960","50fb9a83bd0286d55504b961","50fb9a83bd0286d55504b962","50fb9a83bd0286d55504b963","50fb9a83bd0286d55504b964","50fb9a83bd0286d55504b965","50fb9a83bd0286d55504b966","50fb9a83bd0286d55504b967","50fb9a83bd0286d55504b968","50fb9a84bd0286d55504b969","50fb9a84bd0286d55504b96a","50fb9a84bd0286d55504b972","50fb9a84bd0286d55504b973","50fb9a85bd0286d55504b974","50fb9a85bd0286d55504b975","50fb9a85bd0286d55504b976","50fb9a85bd0286d55504b977","50fb9a85bd0286d55504b978","50fb9a85bd0286d55504b979","50fb9a85bd0286d55504b97a","50fb9a86bd0286d55504b97b","50fb9a86bd0286d55504b97c","50fb9a86bd0286d55504b97d","50fb9a86bd0286d55504b97e","50fb9a86bd0286d55504b97f","50fb9a86bd0286d55504b980","50fb9a86bd0286d55504b981","50fb9a86bd0286d55504b982","50fb9a87bd0286d55504b983","50fb9a87bd0286d55504b984","50fb9a87bd0286d55504b985","50fb9a87bd0286d55504b986","50fb9a87bd0286d55504b987","512bd39a5bf38d832d000149","512be2bd42abf1467600021f","512d200f33d5c414a4000050","515059c0ca64bd6a7d000fe4"],"primary_product_id":null,"resource_uri":"/features/2012-digitalcamerainfo-best-of-year-awards.htm","disqus_uri":"2012-DigitalCameraInfo-Best-of-Year-Awards","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"2012-digitalcamerainfo-best-of-year-awards.htm","is_template":false,"is_branch":false,"deals":[],"related_articles":[],"pages":[{"id":"51b76c889b0f1ccdb6000a7d","name":"First
73
+ Page","resource_uri":"/features/2012-digitalcamerainfo-best-of-year-awards/first-page","slug":"first-page","sections":[{"id":"51b76c889b0f1ccdb6000a7e","name":"Content","body":"2012
74
+ has been one of the most exciting years yet for the staff here at DigitalCameraInfo.com,
75
+ as the photographic industry put the woes of 2011 behind it to release some
76
+ truly amazing cameras. From flagship DSLRs to incredible compacts, there was
77
+ a seemingly endless parade of superb cameras for us to test in our labs. There
78
+ has also been some incredible innovation in the camera market, with fascinating
79
+ new technology coming to the fore as companies look to branch out in new and
80
+ interesting ways. Out of this diverse and ever-growing market we have culled
81
+ the very best to provide you with our 2012 Best of Year Awards, the cameras
82
+ we would recommend to not only you, but to our friends and families.\n\n{{
83
+ attachments(512bd39a5bf38d832d000149) }}\n\n***\n\n### Camera of the Year \n####
84
+ [Canon 1D X](http://www.digitalcamerainfo.com/content/Canon-EOS-1D-X-Digital-Camera-Review.htm) \n**(MSRP
85
+ $6,799 body-only)**\n\n{{callout}}{{article.attachments[''DCI-BOY-CANON_1DX.jpg'']}}{{/callout}}While
86
+ there were only a couple high-end cameras brought to market in 2011, this
87
+ year saw the eventual release of some incredible full-frame models from each
88
+ of the major players. With some fantastic mid-range bodies also seeing the
89
+ light of day, the Canon 1D X had stiff competition for our top spot once it
90
+ finally was released to the public. Despite the delay, the 1D X bested all
91
+ comers in our lab tests, producing the highest overall score of the year.
92
+ While it's certainly too big, too expensive, and simply *too much* for
93
+ most people, the Canon 1D X is, hands-down, the best camera from 2012. \n\n####
94
+ Runner-up \n#### [Nikon D4](http://www.digitalcamerainfo.com/content/Nikon-D4-Digital-Camera-Review.htm)\n**(MSRP
95
+ $5,999)**\n\nThe Nikon D4 also graced our labs this year, and we found that
96
+ it offered performance that exceeded the 1D X in some areas, falling behind
97
+ in others. We should reserve special mention for the D4's backlit control
98
+ labels and uncompressed HDMI video output. The D4 is an impressive machine
99
+ that any pro shooting Nikon should be proud to own, but it falls just behind
100
+ the 1D X in our overall scoring. \n \n[Read the Full Review of the Canon
101
+ 1D X](http://www.digitalcamerainfo.com/content/Canon-EOS-1D-X-Digital-Camera-Review.htm)\n[Read
102
+ the Full Review of the Nikon D4](http://www.digitalcamerainfo.com/content/Nikon-D4-Digital-Camera-Review.htm)\n\n***\n\n###
103
+ Best Innovation \n#### [Lytro Light Field Camera](http://www.digitalcamerainfo.com/content/Lytro-Light-Field-Camera-Digital-Camera-Review.htm)\n**(MSRP
104
+ $499 16GB)**\n\n{{callout}}{{article.attachments[''DCI-BOY-LYTRO.jpg'']}}{{/callout}}With
105
+ so many new and interesting models hitting the market in 2012, Lytro's
106
+ light field camera stands apart as truly innovative. While we aren't as
107
+ impressed with the Lytro's traditional image quality, the ability to capture
108
+ an entire scene and change the focal point after the fact is unlike anything
109
+ else on the market. The Lytro stands as one of the most innovative cameras
110
+ to come along in years, and we're very interested to see how this technology
111
+ develops in years to come. \n\n#### Runner-up \n#### [Samsung Galaxy Camera](http://www.digitalcamerainfo.com/content/Samsung-Galaxy-Camera-EK-GC100-Review.htm)\n**(MSRP
112
+ $499)**\n\nThe Samsung Galaxy Camera also deserves a nod here. While the Nikon
113
+ S800c was the first camera to come to market with Android on-board, the Galaxy
114
+ Camera's use of Android version 4.1 (Jelly Bean) makes it feel far more
115
+ advanced. We expect to see Android integration in cameras to take off over
116
+ the next few years, but the Galaxy Camera already feels like a third-generation
117
+ product rather than a one-off concept. \n \n[Read the Full Review of the
118
+ Lytro](http://www.digitalcamerainfo.com/content/Lytro-Light-Field-Camera-Digital-Camera-Review.htm)\n[Read
119
+ the Full Review of the Samsung Galaxy Camera](http://www.digitalcamerainfo.com/content/Samsung-Galaxy-Camera-EK-GC100-Review.htm)\n\n***\n\n###
120
+ Best Ultra High-End System Camera\n#### [Canon 1D X](http://www.digitalcamerainfo.com/content/Canon-EOS-1D-X-Digital-Camera-Review.htm) \n**(MSRP
121
+ $6,799 body-only)**\n \n#### Runner-up \n#### [Nikon D4](http://www.digitalcamerainfo.com/content/Nikon-D4-Digital-Camera-Review.htm) \n**(MSRP
122
+ $5,999 body-only)**\n \n{{callout}}{{article.attachments[''DCI-BOY-CANON_1DX.jpg'']}}{{/callout}}It's
123
+ not every year that Canon and Nikon both release new flagship professional
124
+ DSLRs. The Nikon D4 and Canon 1D X both employ advanced technology in incredible
125
+ ways, integrating not only professional-quality video features, but also cutting-edge
126
+ autofocus, connectivity options, and operational speed. These two cameras
127
+ push the boundaries of what professional DSLRs can do, scoring better than
128
+ any other cameras before them in our testing labs. While we loved the D4's
129
+ backlit controls and impressive video features, the 1D X ekes out the win
130
+ here (by the slimmest of margins) thanks to its superior shooting speed and
131
+ more versatile autofocus control, helping you get the shot you're aiming
132
+ for more often. \n \n[Read the Full Review of the Canon 1D X](http://www.digitalcamerainfo.com/content/Canon-EOS-1D-X-Digital-Camera-Review.htm)\n[Read
133
+ the Full Review of the Nikon D4](http://www.digitalcamerainfo.com/content/Nikon-D4-Digital-Camera-Review.htm)\n\n***\n\n###
134
+ Best High-End System Camera \n#### [Nikon D800](http://www.digitalcamerainfo.com/content/Nikon-D800-Digital-Camera-Review.htm) \n**(MSRP
135
+ $2,999 body-only)**\n\n{{callout}}{{article.attachments[''DCI-BOY-D800.jpg'']}}{{/callout}}In
136
+ a year where we saw nearly 10 new full-frame cameras, none were as much fun
137
+ to shoot with as the Nikon D800. While the speedier Nikon D4 performed better
138
+ in the lab, we found the 36.3-megapixel images from the D800 to be simply
139
+ irresistible[.](http://www.youtube.com/watch?v=UrGw_cOgwa8) The ability to
140
+ capture such an immense level of detail was undeniably useful, especially
141
+ in extreme low-light situations. \n\n#### Runner-up \n#### [Canon 5D Mark
142
+ III](http://www.digitalcamerainfo.com/content/Canon-EOS-5D-Mark-III-Review-Digital-Camera.htm)\n**(MSRP
143
+ $3,499 body-only)** \n\nThe D800's closest competition is the Canon 5D
144
+ Mark III. While we found the Mark III to be more useful for serious video
145
+ work, the D800 produced sharper images and offered more baked-in features.
146
+ Those already married to either system will probably want to stick to their
147
+ guns, but the D800 has been our camera of choice since the moment it entered
148
+ our labs. \n \n[Read the Full Review of the Nikon D800](http://www.digitalcamerainfo.com/content/Nikon
149
+ D800-Digital-Camera-Review.htm)\n[Read the Full Review of the Canon 5D Mark
150
+ III](http://www.digitalcamerainfo.com/content/Canon-EOS-5D-Mark-III-Review-Digital-Camera.htm)\n\n*** \n\n###
151
+ Best Mid-Range System Camera \n#### [Panasonic DMC-GH3](http://www.digitalcamerainfo.com/content/Panasonic-Lumix-GH3-Digital-Camera-Review.htm)\n**(MSRP
152
+ Available for pre-order. $1,299 body-only)**\n\n{{callout}}{{article.attachments[''DCI-BOY-GH3.jpg'']}}{{/callout}}The
153
+ Panasonic GH3 was a late entrant for our awards, and while we expected its
154
+ class-leading video performance, it surprised us as a brilliant all-around
155
+ photographic tool. With excellent overall image quality, a superb DSLR-style
156
+ grip, oodles of customization options, and access to the ever-growing Micro
157
+ Four Thirds lens ecosystem, the GH3 is an excellent camera for anyone who's
158
+ looking for a high-end interchangeable lens camera but doesn't want to
159
+ deal with the bulk or price of a full-frame DSLR. \n\n#### Runner-up \n####
160
+ [Canon Rebel T4i](http://www.digitalcamerainfo.com/content/Canon-Rebel-T4i-Digital-Camera-Review.htm)\n**(MSRP
161
+ $1,149 w/ 18-135mm STM lens)** \n\nThose looking to spend a little less without
162
+ sacrificing image quality might want to give the Canon Rebel T4i a look. The
163
+ T4i is the first touchscreen-enabled traditional DSLR, and it provides a potent
164
+ mix of handling, still image quality, and video features. If you're on
165
+ a budget we'd suggest you opt for the cheaper 18-55mm kit, but the 18-135mm
166
+ STM lens provides smoother, quieter autofocus for video recording as well
167
+ as improved optical performance. \n \n[Read the Full Review of the Panasonic
168
+ DMC-GH3](http://www.digitalcamerainfo.com/content/Panasonic-Lumix-GH3-Digital-Camera-Review.htm)\n[Read
169
+ the Full Review of the Canon Rebel T4i](http://www.digitalcamerainfo.com/content/Canon-Rebel-T4i-Digital-Camera-Review.htm)\n\n***
170
+ \n\n### Best Compact System Camera \n#### [Sony NEX-7](http://www.digitalcamerainfo.com/content/Sony-Alpha-NEX-7-Digital-Camera-Review.htm) \n**(MSRP
171
+ $1,249 w/ 18-55mm lens)**\n\n{{callout}}{{article.attachments[''DCI-BOY-SONY_NEX7.jpg'']}}{{/callout}}The
172
+ Sony Alpha NEX-7 was one of the first truly high-end compact system cameras
173
+ to hit the market, with great handling, an articulating LCD, three control
174
+ dials, and built-in electronic viewfinder. The NEX-7's 24.3-megapixel
175
+ CMOS image sensor is of the same APS-C standard size as you'd find in
176
+ many larger DSLRs, offering superb dynamic range and excellent shot-to-shot
177
+ speeds. While we wish the NEX system had a few more high-quality lenses to
178
+ complement its great cameras, we feel the NEX-7 is the best performing compact
179
+ system camera you can pick up today. \n \n#### Runner-up \n####[Olympus
180
+ OM-D E-M5](http://www.digitalcamerainfo.com/content/Olympus-OM-D-E-M5-Digital-Camera-Review.htm) \n**(MSRP
181
+ $1,099 w/ 14-42mm lens)** \n\nWith all the praise we had for the NEX-7, the
182
+ Olympus OM-D E-M5 still put up a serious fight, sporting an excellent Sony-produced
183
+ sensor and vintage Olympus looks. The E-M5 is one of the more popular cameras
184
+ of 2012, with weather sealing and a level of customization few cameras can
185
+ match. We think it's a fine option for anyone who wants a little more
186
+ retro flavor—and access to the Micro Four Thirds ecosystem—with
187
+ their compact system camera, and we doubt you'll be disappointed if you
188
+ pick one up. \n\n[Read the Full Review of the Sony NEX-7](http://www.digitalcamerainfo.com/content/Sony-Alpha-NEX-7-Digital-Camera-Review.htm)\n[Read
189
+ the Full Review of the Olympus OM-D E-M5](http://www.digitalcamerainfo.com/content/Olympus-OM-D-E-M5-Digital-Camera-Review.htm)\n\n***\n\n###
190
+ Best Enthusiast Camera \n#### [Fuji X-Pro1](http://www.digitalcamerainfo.com/content/Fujifilm-X-Pro1-Digital-Camera-Review.htm) \n**(MSRP
191
+ $1,699 body-only)**\n \n#### Runner-up \n#### [Olympus OM-D E-M5](http://www.digitalcamerainfo.com/content/Olympus-OM-D-E-M5-Digital-Camera-Review.htm) \n(MSRP
192
+ $1,099 w/ 14-42mm lens) \n \n{{callout}}{{article.attachments[''DCI-BOY-XPRO1.jpg'']}}{{/callout}}While
193
+ we found that the Sony NEX-7 provided the best performance of all the compact
194
+ system cameras we tested this year, we still have a place in our hearts for
195
+ cameras that focus as much on the process as the end result. To that end we
196
+ are recognizing the Fuji X-Pro1 as the best enthusiast camera of 2012, designed
197
+ to appeal to those who want a camera whose appeal goes beyond test results
198
+ and comparative analysis. With a small group of absolutely fantastic prime
199
+ lenses, physical dials galore, and a design reminiscent of the finest film
200
+ cameras, the Fuji X-Pro1 is a body aimed squarely at photography phanatics.
201
+ With apologies to the wonderful Olympus OM-D E-M5, we applaud Fuji for giving
202
+ us yet another camera to salivate over in 2012. \n \n[Read the Full Review
203
+ of the Fuji X-Pro1](hhttp://www.digitalcamerainfo.com/content/Fujifilm-X-Pro1-Digital-Camera-Review.htm)\n[Read
204
+ the Full Review of the Olympus OM-D E-M5](http://www.digitalcamerainfo.com/content/Olympus-OM-D-E-M5-Digital-Camera-Review.htm)\n\n***\n\n###
205
+ Best Point-and-Shoot Camera \n#### [Nikon P7700](http://www.digitalcamerainfo.com/content/Nikon-Coolpix-P7700-Digital-Camera-Review.htm) \n**(MSRP
206
+ $499)**\n\n{{callout}}{{article.attachments[''DCI-BOY-P7700.jpg'']}}{{/callout}}It's
207
+ been an ugly year for the bottom end of the point-and-shoot camera market,
208
+ but at the same time the upper tier has flourished. Impressive high-end compacts
209
+ from virtually every major manufacturer passed through our labs this year,
210
+ but we found the Nikon P7700 outdid them all. With a 7x optical zoom, fully
211
+ articulating screen, hot shoe, and plenty of physical controls on a body with
212
+ superb handling characteristics, the $500 Nikon P7700 is the best point-and-shoot
213
+ we tested this year. \n\n#### Runner-up \n#### [Sony RX100](http://digitalcamerainfo.com/content/Sony-Cyber-shot-RX100-Digital-Camera-Review.htm) \n**(MSRP
214
+ $649)** \n\nThe Sony RX100 is a close second, however, with a larger
215
+ sensor and a slightly brighter lens. The result of that combination is excellent
216
+ low-light capabilities and attractively blurred backgrounds. While the P7700
217
+ outperformed the RX100 in the lab, shots from Sony's flagship compact
218
+ have an aesthetic quality that no other camera in its class can match. On
219
+ the other hand, we were less impressed with its characterless handling and
220
+ newbie-oriented user interface. Its high price is a concern, too. \n \n[Read
221
+ the Full Review of the Nikon P7700](http://www.digitalcamerainfo.com/content/Nikon-Coolpix-P7700-Digital-Camera-Review.htm)\n[Read
222
+ the Full Review of the Sony RX100](http://digitalcamerainfo.com/content/Sony-Cyber-shot-RX100-Digital-Camera-Review.htm)\n\n***\n\n###
223
+ Best High-End Point-and-Shoot Camera \n#### [Nikon P7700](http://www.digitalcamerainfo.com/content/Nikon-Coolpix-P7700-Digital-Camera-Review.htm) \n**(MSRP
224
+ $499)**\n\n#### Runner-up \n#### [Sony RX100](http://digitalcamerainfo.com/content/Sony-Cyber-shot-RX100-Digital-Camera-Review.htm) \n**(MSRP
225
+ $649)** \n\n{{callout}}{{article.attachments[''DCI-BOY-P7700.jpg'']}}{{/callout}}The
226
+ Sony RX100 has long been the favorite for this award, but leave it to Nikon
227
+ to come and spoil Sony's fun at the very last minute. While the RX100
228
+ enjoys some undeniable benefits in bokeh and low-light capability thanks to
229
+ its outsized 1-inch sensor, the Nikon P7700 outperformed it in our image quality
230
+ tests in virtually every other category. Its complement of high-end features
231
+ will make it of particular interest to advanced amateurs and prosumers, and
232
+ it's got a fantastic grip, too. We still love the RX100, but the P7700
233
+ takes the award here. \n \n[Read the Full Review of the Nikon P7700](http://www.digitalcamerainfo.com/content/Nikon-Coolpix-P7700-Digital-Camera-Review.htm)\n[Read
234
+ the Full Review of the Sony RX100](http://digitalcamerainfo.com/content/Sony-Cyber-shot-RX100-Digital-Camera-Review.htm)\n\n***\n\n###
235
+ Best Value Point-and-Shoot Camera \n#### [Canon PowerShot ELPH 110 HS](http://www.digitalcamerainfo.com/content/Canon-PowerShot-ELPH-110-HS-Digital-Camera-Review.htm) \n**(MSRP
236
+ $229)** \n\n#### Runner-up \n#### [Nikon S6300](http://www.digitalcamerainfo.com/content/Nikon-Coolpix-S6300-Digital-Camera-Review.htm) \n**(MSRP
237
+ $199)**\n\n{{callout}}{{article.attachments[''DCI-BOY-ELPH-110HS.jpg'']}}{{/callout}}Canon
238
+ PowerShots have long been the go-to recommendation for anyone looking for
239
+ an inexpensive, simple camera that offers decent image quality. The 110 HS
240
+ carries that torch well, with a 3-inch rear LCD, 5x optical zoom, and a size
241
+ and shape that can easily slip into all but the tightest pockets. With smartphones
242
+ getting better and better, there's not much room left for cameras like
243
+ this, but if you want higher-resolution photos or an optical zoom at a low
244
+ price, the 110 HS is a great option. \n \n[Read the Full Review of the Canon
245
+ PowerShot ELPH 110 HS](http://www.digitalcamerainfo.com/content/Canon-PowerShot-ELPH-110-HS-Digital-Camera-Review.htm)\n[Read
246
+ the Full Review of the Nikon S6300](http://www.digitalcamerainfo.com/content/Nikon-Coolpix-S6300-Digital-Camera-Review.htm)\n\n***\n\n###
247
+ Best Super-Zoom Camera \n#### [Canon PowerShot SX50 HS](http://www.digitalcamerainfo.com/content/Canon-PowerShot-SX50-HS-Digital-Camera-Review.htm) \n**(MSRP
248
+ $479)** \n\n{{callout}}{{article.attachments[''DCI-BOY2-SX50HS.jpg'']}}{{/callout}}The
249
+ Canon PowerShot SX50 HS takes home our super-zoom award this year thanks to
250
+ its combination of solid design, excellent ease-of-use, and great overall
251
+ image quality. Of course, it's hard to argue with the SX50's credentials
252
+ when it sports a ridiculous 50x optical zoom. The SX50 HS is more than a one-trick
253
+ pony, though, as it performed well enough to take the top prize over some
254
+ serious competition from both Panasonic and Sony. \n\n#### Runner-up \n####
255
+ [Panasonic FZ200](http://www.digitalcamerainfo.com/content/Panasonic-Lumix-FZ200-Digital-Camera-Review.htm) \n**(MSRP
256
+ $599)**\n\nThe Panasonic FZ200 is the runner-up here, largely due to its excellent
257
+ 24x zoom lens. The FZ200 is unique in the super-zoom market in that its lens
258
+ maintains a wide f/2.8 aperture all the way through its optical zoom range.
259
+ The Canon SX50 did better in the labs and offers nearly double the zoom range,
260
+ but the FZ200's aperture is more than twice as wide at full zoom, helping
261
+ keep motion blur under control. \n\n[Read the Full Review of the Canon PowerShot
262
+ SX50 HS](http://www.digitalcamerainfo.com/content/Canon-PowerShot-SX50-HS-Digital-Camera-Review.htm)\n[Read
263
+ the Full Review of the Panasonic FZ200](http://www.digitalcamerainfo.com/content/Panasonic-Lumix-FZ200-Digital-Camera-Review.htm)\n\n***\n\n###
264
+ Best Travel-Zoom Camera \n#### [Canon PowerShot SX260 HS](http://www.digitalcamerainfo.com/content/Canon-PowerShot-SX260-HS-Digital-Camera-Review.htm) \n**(MSRP
265
+ $299)**\n\n#### Runner-up \n#### [Sony HX30V](http://www.digitalcamerainfo.com/content/Sony-Cyber-shot-HX30V-Digital-Camera-Review.htm) \n**(MSRP
266
+ $419)** \n\n{{callout}}{{article.attachments[''DCI-BOY2-SX260.jpg'']}}{{/callout}}Canon
267
+ also takes home our award for best travel zoom of the year with the SX260
268
+ HS. Its combination of a solid 20x optical zoom and a sleek, stylish, compact
269
+ design will probably check all the boxes for many casual users. If you need
270
+ a big zoom range in a camera that will easily slip into a jacket pocket, the
271
+ SX260 HS is our unqualified recommendation. A close second, however, is the
272
+ Sony HX30V. The HX30V falls behind the SX260 HS in overall performance, but
273
+ it offers superior video capture capability, which will be a big deal to some
274
+ users. \n \n[Read the Full Review of the Canon PowerShot SX260 HS](http://www.digitalcamerainfo.com/content/Canon-PowerShot-SX260-HS-Digital-Camera-Review.htm)\n[Read
275
+ the Full Review of the Sony HX30V](http://www.digitalcamerainfo.com/content/Sony-Cyber-shot-HX30V-Digital-Camera-Review.htm)\n\n*** \n\n###
276
+ Best Pocket Camera \n#### [Sony RX100](http://digitalcamerainfo.com/content/Sony-Cyber-shot-RX100-Digital-Camera-Review.htm) \n**(MSRP
277
+ $649)** \n\n{{callout}}{{article.attachments[''DCI-BOY-RX100.jpg'']}}{{/callout}}If
278
+ we had an award for "camera that the staff fought to play with the most,"
279
+ the Sony RX100 would easily take it home. The camera's combination of
280
+ a large sensor and excellent lens produced the closest thing to DSLR image
281
+ quality in a pocketable camera that we've seen thus far. While it was
282
+ still beat out by the Nikon P7700 in our lab tests, the RX100 is quite a bit
283
+ smaller and is absolutely the best camera you can (probably) fit in your pants
284
+ pocket. \n \n#### Runner-up \n#### [Canon PowerShot S110](http://www.digitalcamerainfo.com/content/Canon-PowerShot-S110-Digital-Camera-Review.htm) \n**(MSRP
285
+ $429)**\n\nOur second choice would have to be the Canon PowerShot S110. We've
286
+ been big fans of Canon's diminutive S series since it kickstarted the
287
+ trend of tiny yet high-end compact point-and-shoot cameras a couple years
288
+ back. We're excited to see what Canon does with the S-series going forward,
289
+ though we're hoping for a little more innovation in future models. \n \n[Read
290
+ the Full Review of the Sony RX100](http://digitalcamerainfo.com/content/Sony-Cyber-shot-RX100-Digital-Camera-Review.htm)\n[Read
291
+ the Full Review of the Canon PowerShot S110](http://www.digitalcamerainfo.com/content/Canon-PowerShot-S110-Digital-Camera-Review.htm)\n\n***\n\n###
292
+ Best Waterproof Camera \n#### [Olympus Tough TG-1](http://www.digitalcamerainfo.com/content/Olympus-Tough-TG-1-Digital-Camera-Review.htm) \n**(MSRP
293
+ $399)** \n\n#### Runner-up \n#### [Panasonic Lumix TS4](http://www.digitalcamerainfo.com/content/Panasonic-Lumix-DMC-TS4-Digital-Camera-Review.htm) \n**(MSRP
294
+ $429)**\n\n{{callout}}{{article.attachments[''DCI-BOY-TG1.jpg'']}}{{/callout}}We
295
+ dunked every waterproof camera we could find for our roundup this past spring,
296
+ and one camera rose above the rest. We found the Olympus TG-1 produced the
297
+ best images of the lot, with an f/2.0 lens letting in plenty of light. In
298
+ addition, the TG-1 can go to depths of 40 feet and is rated to withstand dust,
299
+ cold, and even drops of up to 6.6 feet. Those credentials easily earn it the
300
+ award here, and really it's a fine compact camera no matter the conditions. \n \n[Read
301
+ the Full Review of the Olympus Tough TG-1](http://www.digitalcamerainfo.com/content/Olympus-Tough-TG-1-Digital-Camera-Review.htm)\n[Read
302
+ the Full Review of the Panasonic Lumix TS4](http://www.digitalcamerainfo.com/content/Panasonic-Lumix-DMC-TS4-Digital-Camera-Review.htm)\n\n***\n\n###
303
+ Best Camera for the Money \n#### [Samsung WB150F](http://www.digitalcamerainfo.com/content/Samsung-WB150F-Digital-Camera-Review.htm) \n**(MSRP
304
+ $229)** \n\n{{callout}}{{article.attachments[''DCI-BOY-WB150F.jpg'']}}{{/callout}}Just
305
+ because the budget point-and-shoot category hasn't seen much love in 2012
306
+ doesn't mean you can't still find bargains. With a street price that
307
+ frequently drops below $200, the WB150F offers image quality on par with more
308
+ expensive cameras. A smart design, solid handling, and built-in Wi-Fi gave
309
+ us plenty to like about this camera. There are cheaper options available,
310
+ to be sure, but this is one of the best cost-to-value propositions on the
311
+ market today. \n\n#### Runner-up \n#### [Sony NEX-F3](http://www.digitalcamerainfo.com/content/Sony-Alpha-NEX-F3-Digital-Camera-Review.htm) \n**(MSRP
312
+ $599 w/ 18-55mm lens)**\n\nWe also want to reserve a special mention for the
313
+ entry-level model in Sony's NEX line, the NEX-F3. Like the NEX-C3 before
314
+ it, the F3 perfoms as well as cameras that cost north of $1000 for a price
315
+ of right around $600 (with a kit lens included). Getting that kind of quality
316
+ for such a low price is practically unheard of, which makes the NEX-F3 a perfect
317
+ introduction to interchangeable lens cameras for those on a tight budget. \n \n[Read
318
+ the Full Review of the Samsung WB150F](http://www.digitalcamerainfo.com/content/Samsung-WB150F-Digital-Camera-Review.htm)\n[Read
319
+ the Full Review of the Sony NEX-F3](http://www.digitalcamerainfo.com/content/Sony-Alpha-NEX-F3-Digital-Camera-Review.htm)\n\n***\n\n###
320
+ Best Camera for Video \n#### [Panasonic Lumix DMC-GH3](http://www.digitalcamerainfo.com/content/Panasonic-Lumix-GH3-Digital-Camera-Review.htm)\n**(MSRP
321
+ Available for pre-order. $1,299 body-only)** \n\n{{callout}}{{article.attachments[''DCI-BOY-GH3.jpg'']}}{{/callout}}The
322
+ Panasonic GH3 is only available for pre-order at the moment, but we've
323
+ already put one to test in our labs. The result? It's the best stills
324
+ camera for shooting video, period. With a built-in mic port, improved video
325
+ quality, an incredible number of compression options, and a pre-order price
326
+ of around $1300, the GH3 can take on the best video-friendly full-frame bodies
327
+ and come out victorious. When you consider that its closest competition—the
328
+ Canon 5D Mark III—is bigger, heavier, offers less features, and costs
329
+ $3500 for the body alone, you'll understand why we're so impressed
330
+ with the Panasonic GH3. \n\n#### Runner-up \n#### [Canon 5D Mark III](http://www.digitalcamerainfo.com/content/Canon-EOS-5D-Mark-III-Review-Digital-Camera.htm) \n**(MSRP
331
+ $3,499 body-only)** \n\nThere is certainly room for the Mark III in the
332
+ market, though, especially if you're looking for a camera that is equally
333
+ adept at still photography. But let us reassure you: This decision isn't
334
+ a matter of choosing value over quality—the Panasonic GH3 simply produces
335
+ better video. Its late-season arrival may be a problem if you're planning
336
+ on giving one as a gift this December, but we assure you that it's worth
337
+ the wait. \n \n[Read the Full Review of the Panasonic Lumix DMC-GH3](http://www.digitalcamerainfo.com/content/Panasonic-Lumix-GH3-Digital-Camera-Review.htm)\n[Read
338
+ the Full Review of the Canon 5D Mark III](http://www.digitalcamerainfo.com/content/Canon-EOS-5D-Mark-III-Review-Digital-Camera.htm)\n\n***\n\n###
339
+ Best Value System Camera for Video \n#### [Canon Rebel T4i](http://www.digitalcamerainfo.com/content/Canon-Rebel-T4i-Digital-Camera-Review.htm) \n**(MSRP
340
+ $1,149 w/ 18-135mm STM lens)** \n\n{{callout}}{{article.attachments[''DCI-BOY-T4I.jpg'']}}{{/callout}}While
341
+ some fantastic and fantastically expensive video cameras have come through
342
+ our labs this year, we understand that not everyone is willing to shell out
343
+ several thousand dollars for high-end video capability. Those looking for
344
+ solid video from a budget-friendly system camera should look no further than
345
+ the Canon Rebel T4i. The T4i captures appealing full HD video, has full manual
346
+ control, and sports nearly silent continuous autofocus while recording clips.
347
+ At a body-only price of just $799.99, we think the T4i is a great option for
348
+ those who want quality stills and HD video in one cheap package. \n\n####
349
+ Runner-up \n#### [Sony NEX-5R](http://www.digitalcamerainfo.com/content/Sony-Alpha-NEX-5R-Digital-Camera-Review.htm) \n**(MSRP
350
+ $749 w/ 18-55mm lens)** \n\nSony’s line of NEX system cameras all are
351
+ capable of recording excellent video, but the NEX-5R offers the best value
352
+ of the bunch. Like the Canon T4i, the NEX-5R handles autofocus very well,
353
+ and, although the camera doesn’t have a fully rotatable LCD, it does
354
+ have a screen that tilts up and down to accommodate various shooting angles.
355
+ In terms of performance, the NEX-5R basically matched the Canon T4i in our
356
+ video tests, but we gave the Canon an edge in handling thanks to its better
357
+ grip and easier access to video controls. \n \n[Read the Full Review of
358
+ the Canon Rebel T4i](http://www.digitalcamerainfo.com/content/Canon-Rebel-T4i-Digital-Camera-Review.htm)\n[Read
359
+ the Full Review of the Sony NEX-5R](http://www.digitalcamerainfo.com/content/Sony-Alpha-NEX-5R-Digital-Camera-Review.htm)\n\n***\n\n###
360
+ Best Point-and-Shoot for Video \n#### [Panasonic Lumix FZ200](http://www.digitalcamerainfo.com/content/Panasonic-Lumix-FZ200-Digital-Camera-Review.htm)\n**(MSRP
361
+ $599)**\n\n{{callout}}{{article.attachments[''DCI-BOY-FZ200.jpg'']}}{{/callout}}While
362
+ most people's minds immediately turn to DSLRs when they think about cameras
363
+ that capture great video, point-and-shoots have also come a long way. With
364
+ an honorable mention to Sony's line of 1080/60p compact cameras, the Panasonic
365
+ FZ200 takes top honors here. The FZ200 offers more control, an incredible
366
+ 24X constant-aperture zoom lens, and superior ergonomics to help steady your
367
+ hands while filming.\n \n#### Runner-up \n#### [Sony HX30V](http://www.digitalcamerainfo.com/content/Sony-Cyber-shot-HX30V-Digital-Camera-Review.htm) \n**(MSRP
368
+ $419)**\n\nSony isn’t too shabby when it comes to the video features
369
+ on its point-and-shoot cameras either. Deciding on this runner-up award came
370
+ down to a judgment call between three Sony models: the RX100, the HX200V,
371
+ or the HX30V—all of which did a good job in our video tests, ranking
372
+ in just behind the Panasonic FZ200. We ended up choosing the HX30V because
373
+ of its design, figuring that it is small enough to fit in your pocket, but
374
+ also packs a decent zoom lens, which is a necessity when shooting video. \n \n[Read
375
+ the Full Review of the Panasonic Lumix FZ200](http://www.digitalcamerainfo.com/content/Panasonic-Lumix-FZ200-Digital-Camera-Review.htm)\n[Read
376
+ the Full Review of the Sony HX30V](http://www.digitalcamerainfo.com/content/Sony-Cyber-shot-HX30V-Digital-Camera-Review.htm)\n\n***\n\n###
377
+ Best New Photo App \n#### [Woven for Android and iOS](http://www.digitalcamerainfo.com/Features/Photo-App-of-the-Week-Woven-for-iOS-and-Android.htm)\n\n{{callout}}{{article.attachments[''DCI-BOY-WOVEN3.jpg'']}}{{/callout}}There's
378
+ no end to the list of places you can store your photos online these days.
379
+ From gallery-focused sites like Flickr, SmugMug, and Picasa to social media
380
+ services like Facebook, Twitter, and Instagram, your digital life is probably
381
+ spread all over the 'net. Woven brings all those services together into
382
+ one easy-to-navigate interface. Do you have a public vacation album on Facebook,
383
+ but keep your more personal photos of the kids on Flickr? No problem! Woven
384
+ lets you show them all off through a single smartphone interface. \n\n[Read
385
+ our review of Woven for Android and iOS](http://www.digitalcamerainfo.com/Features/Photo-App-of-the-Week-Woven-for-iOS-and-Android.htm)\n\n*** \n\n###
386
+ Best Photo Printer \n#### [Epson Stylus Inkjet R2000](http://www.printerinfo.com/content/Epson-Stylus-R2000-Inkjet-Printer-Review.htm) \n**(MSRP
387
+ $599)** \n\n{{callout}}{{article.attachments[''DCI-BOY-R2000.jpg'']}}{{/callout}}Though
388
+ we here at Reviewed.com have reviewed many a printer in our day, only one
389
+ can reign supreme as the best released in 2012. After looking at the other
390
+ offerings on the table and comparing their strengths, weaknesses, and oddities
391
+ in our labs, our reviewers have settled on one printer that stands above the
392
+ rest: the Epson Stylus Inkjet R2000.\n\nWith impressive color accuracy, a
393
+ wide color gamut, and admirable detail, the Epson R2000 is the best photo
394
+ printer we saw this year. In addition to its high marks for performance, the
395
+ ability to print on papers as wide as 13 inches provides amateurs and part-time
396
+ professionals flexibility in media options.\n\n#### Runner-up \n#### [Canon
397
+ Pixma MX512](http://www.printerinfo.com/content/Canon-Pixma-MX512-Inkjet-Printer-Review.htm) \n**(MSRP
398
+ $149)** \n\nFalling just short of our top honor is the Canon MX512, a mid-range
399
+ multifunction printer. While it requires only two ink cartridges, the MX512
400
+ produces good color performance and speedy printing that will make you forget
401
+ its $149.99 price tag. Perfect for a dorm or a place next to the family computer,
402
+ the Canon MX512 is a good fit for consumers looking for a light-use photo
403
+ printer that’s easy on the wallet.\n \n[Read our review of Epson Stylus
404
+ Inkjet R2000](http://www.printerinfo.com/content/Epson-Stylus-R2000-Inkjet-Printer-Review.htm)\n[Read
405
+ the Full Review of the Canon Pixma MX512](http://www.printerinfo.com/content/Canon-Pixma-MX512-Inkjet-Printer-Review.htm)","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}}],"products":[],"authors":[{"id":"50fc4ea4bd0286d5550b4c5a","created_at":"2013-01-20T20:08:04Z","updated_at":"2013-03-27T16:15:28Z","name":"Digitalcamerainfo.com
406
+ Staff","title":"Editor","short_bio":"DigitalCameraInfo provides free independent
407
+ camera news, features, buying guides, and reviews that help consumers make
408
+ informed choices. Our reviews are grounded in a combination of real-world
409
+ experience and unbiased, scientific testing. DigitalCameraInfo is part of
410
+ the Reviewed.com network.","long_bio":"DigitalCameraInfo provides free independent
411
+ camera news, features, buying guides, and reviews that help consumers make
412
+ informed choices. Our reviews are grounded in a combination of real-world
413
+ experience and unbiased, scientific testing. DigitalCameraInfo is part of
414
+ the Reviewed.com network.","slug":"digitalcamerainfo-com-staff","social":{"email":"editorial@reviewed.com","facebook":"http://www.facebook.com/DigitalCameraInfo","twitter":"digicamerainfo"},"resource_uri":"/authors/digitalcamerainfo-com-staff","avatars":{"small":"http://www.gravatar.com/avatar/3e390bf536f97d38f3f49c2aacc673e5?s=48&d=mm","medium":"http://www.gravatar.com/avatar/3e390bf536f97d38f3f49c2aacc673e5?s=128&d=mm","normal":"http://www.gravatar.com/avatar/3e390bf536f97d38f3f49c2aacc673e5?d=mm"},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/authors","href":"https://the-guide-staging.herokuapp.com/api/v1/authors"},"resource":{"rel":"/api/v1/authors/50fc4ea4bd0286d5550b4c5a","href":"https://the-guide-staging.herokuapp.com/api/v1/authors/50fc4ea4bd0286d5550b4c5a"}}}],"attachments":[{"id":"50fb9a81bd0286d55504b956","created_at":"2013-01-20T07:19:29Z","updated_at":"2013-01-20T07:19:29Z","name":"DCI-BOY-BADGE.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/6f4e54a45c306caeab492c09392842fcf47a4b06/s50x50_DCI-BOY-BADGE.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/6f4e54a45c306caeab492c09392842fcf47a4b06/s150x150_DCI-BOY-BADGE.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/6f4e54a45c306caeab492c09392842fcf47a4b06/s200x75_DCI-BOY-BADGE.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/6f4e54a45c306caeab492c09392842fcf47a4b06/s250x250_DCI-BOY-BADGE.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/6f4e54a45c306caeab492c09392842fcf47a4b06/s300x150_DCI-BOY-BADGE.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/6f4e54a45c306caeab492c09392842fcf47a4b06/s300x112_DCI-BOY-BADGE.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/6f4e54a45c306caeab492c09392842fcf47a4b06/s500x500_DCI-BOY-BADGE.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/6f4e54a45c306caeab492c09392842fcf47a4b06/s600x400_DCI-BOY-BADGE.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/6f4e54a45c306caeab492c09392842fcf47a4b06/s600x600_DCI-BOY-BADGE.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/6f4e54a45c306caeab492c09392842fcf47a4b06/s630x235_DCI-BOY-BADGE.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/6f4e54a45c306caeab492c09392842fcf47a4b06/s940x400_DCI-BOY-BADGE.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/6f4e54a45c306caeab492c09392842fcf47a4b06/s940x350_DCI-BOY-BADGE.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/6f4e54a45c306caeab492c09392842fcf47a4b06/s940x110_DCI-BOY-BADGE.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/6f4e54a45c306caeab492c09392842fcf47a4b06/DCI-BOY-BADGE.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/6f4e54a45c306caeab492c09392842fcf47a4b06/DCI-BOY-BADGE.jpg","file_size":13381,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a81bd0286d55504b956","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a81bd0286d55504b956"}}},{"id":"50fb9a82bd0286d55504b957","created_at":"2013-01-20T07:19:30Z","updated_at":"2013-01-20T07:19:30Z","name":"DCI-BOY-CANON_1DX.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s50x50_DCI-BOY-CANON_1DX.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s150x150_DCI-BOY-CANON_1DX.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s200x75_DCI-BOY-CANON_1DX.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s250x250_DCI-BOY-CANON_1DX.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s300x150_DCI-BOY-CANON_1DX.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s300x112_DCI-BOY-CANON_1DX.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s500x500_DCI-BOY-CANON_1DX.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s600x400_DCI-BOY-CANON_1DX.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s600x600_DCI-BOY-CANON_1DX.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s630x235_DCI-BOY-CANON_1DX.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s940x400_DCI-BOY-CANON_1DX.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s940x350_DCI-BOY-CANON_1DX.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s940x110_DCI-BOY-CANON_1DX.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/DCI-BOY-CANON_1DX.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/DCI-BOY-CANON_1DX.jpg","file_size":21210,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a82bd0286d55504b957","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a82bd0286d55504b957"}}},{"id":"50fb9a82bd0286d55504b958","created_at":"2013-01-20T07:19:30Z","updated_at":"2013-01-20T07:19:30Z","name":"DCI-BOY-LYTRO.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ed1ed3a1061e87430396fa38e3a8551b37bd9453/s50x50_DCI-BOY-LYTRO.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ed1ed3a1061e87430396fa38e3a8551b37bd9453/s150x150_DCI-BOY-LYTRO.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ed1ed3a1061e87430396fa38e3a8551b37bd9453/s200x75_DCI-BOY-LYTRO.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ed1ed3a1061e87430396fa38e3a8551b37bd9453/s250x250_DCI-BOY-LYTRO.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ed1ed3a1061e87430396fa38e3a8551b37bd9453/s300x150_DCI-BOY-LYTRO.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ed1ed3a1061e87430396fa38e3a8551b37bd9453/s300x112_DCI-BOY-LYTRO.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ed1ed3a1061e87430396fa38e3a8551b37bd9453/s500x500_DCI-BOY-LYTRO.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ed1ed3a1061e87430396fa38e3a8551b37bd9453/s600x400_DCI-BOY-LYTRO.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ed1ed3a1061e87430396fa38e3a8551b37bd9453/s600x600_DCI-BOY-LYTRO.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ed1ed3a1061e87430396fa38e3a8551b37bd9453/s630x235_DCI-BOY-LYTRO.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ed1ed3a1061e87430396fa38e3a8551b37bd9453/s940x400_DCI-BOY-LYTRO.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ed1ed3a1061e87430396fa38e3a8551b37bd9453/s940x350_DCI-BOY-LYTRO.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ed1ed3a1061e87430396fa38e3a8551b37bd9453/s940x110_DCI-BOY-LYTRO.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ed1ed3a1061e87430396fa38e3a8551b37bd9453/DCI-BOY-LYTRO.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/ed1ed3a1061e87430396fa38e3a8551b37bd9453/DCI-BOY-LYTRO.jpg","file_size":17014,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a82bd0286d55504b958","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a82bd0286d55504b958"}}},{"id":"50fb9a82bd0286d55504b959","created_at":"2013-01-20T07:19:30Z","updated_at":"2013-01-20T07:19:30Z","name":"DCI-BOY-CANON_1DX.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s50x50_DCI-BOY-CANON_1DX.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s150x150_DCI-BOY-CANON_1DX.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s200x75_DCI-BOY-CANON_1DX.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s250x250_DCI-BOY-CANON_1DX.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s300x150_DCI-BOY-CANON_1DX.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s300x112_DCI-BOY-CANON_1DX.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s500x500_DCI-BOY-CANON_1DX.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s600x400_DCI-BOY-CANON_1DX.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s600x600_DCI-BOY-CANON_1DX.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s630x235_DCI-BOY-CANON_1DX.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s940x400_DCI-BOY-CANON_1DX.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s940x350_DCI-BOY-CANON_1DX.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/s940x110_DCI-BOY-CANON_1DX.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/DCI-BOY-CANON_1DX.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7cbd5900607bc53ee844072d3a29c8997ae95eda/DCI-BOY-CANON_1DX.jpg","file_size":21210,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a82bd0286d55504b959","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a82bd0286d55504b959"}}},{"id":"50fb9a82bd0286d55504b95a","created_at":"2013-01-20T07:19:30Z","updated_at":"2013-01-20T07:19:30Z","name":"DCI-BOY-D800.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/34b499b4d2b21396efb08d26384eb18d7daa5e31/s50x50_DCI-BOY-D800.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/34b499b4d2b21396efb08d26384eb18d7daa5e31/s150x150_DCI-BOY-D800.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/34b499b4d2b21396efb08d26384eb18d7daa5e31/s200x75_DCI-BOY-D800.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/34b499b4d2b21396efb08d26384eb18d7daa5e31/s250x250_DCI-BOY-D800.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/34b499b4d2b21396efb08d26384eb18d7daa5e31/s300x150_DCI-BOY-D800.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/34b499b4d2b21396efb08d26384eb18d7daa5e31/s300x112_DCI-BOY-D800.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/34b499b4d2b21396efb08d26384eb18d7daa5e31/s500x500_DCI-BOY-D800.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/34b499b4d2b21396efb08d26384eb18d7daa5e31/s600x400_DCI-BOY-D800.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/34b499b4d2b21396efb08d26384eb18d7daa5e31/s600x600_DCI-BOY-D800.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/34b499b4d2b21396efb08d26384eb18d7daa5e31/s630x235_DCI-BOY-D800.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/34b499b4d2b21396efb08d26384eb18d7daa5e31/s940x400_DCI-BOY-D800.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/34b499b4d2b21396efb08d26384eb18d7daa5e31/s940x350_DCI-BOY-D800.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/34b499b4d2b21396efb08d26384eb18d7daa5e31/s940x110_DCI-BOY-D800.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/34b499b4d2b21396efb08d26384eb18d7daa5e31/DCI-BOY-D800.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/34b499b4d2b21396efb08d26384eb18d7daa5e31/DCI-BOY-D800.jpg","file_size":21450,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a82bd0286d55504b95a","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a82bd0286d55504b95a"}}},{"id":"50fb9a82bd0286d55504b95b","created_at":"2013-01-20T07:19:30Z","updated_at":"2013-01-20T07:19:30Z","name":"DCI-BOY-GH3.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s50x50_DCI-BOY-GH3.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s150x150_DCI-BOY-GH3.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s200x75_DCI-BOY-GH3.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s250x250_DCI-BOY-GH3.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s300x150_DCI-BOY-GH3.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s300x112_DCI-BOY-GH3.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s500x500_DCI-BOY-GH3.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s600x400_DCI-BOY-GH3.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s600x600_DCI-BOY-GH3.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s630x235_DCI-BOY-GH3.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s940x400_DCI-BOY-GH3.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s940x350_DCI-BOY-GH3.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s940x110_DCI-BOY-GH3.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/DCI-BOY-GH3.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/DCI-BOY-GH3.jpg","file_size":21367,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a82bd0286d55504b95b","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a82bd0286d55504b95b"}}},{"id":"50fb9a82bd0286d55504b95c","created_at":"2013-01-20T07:19:30Z","updated_at":"2013-01-20T07:19:30Z","name":"DCI-BOY-SONY_NEX7.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/e4e563af91b75eef0665c36912b9f68c395a6fa2/s50x50_DCI-BOY-SONY_NEX7.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e4e563af91b75eef0665c36912b9f68c395a6fa2/s150x150_DCI-BOY-SONY_NEX7.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/e4e563af91b75eef0665c36912b9f68c395a6fa2/s200x75_DCI-BOY-SONY_NEX7.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/e4e563af91b75eef0665c36912b9f68c395a6fa2/s250x250_DCI-BOY-SONY_NEX7.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e4e563af91b75eef0665c36912b9f68c395a6fa2/s300x150_DCI-BOY-SONY_NEX7.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/e4e563af91b75eef0665c36912b9f68c395a6fa2/s300x112_DCI-BOY-SONY_NEX7.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/e4e563af91b75eef0665c36912b9f68c395a6fa2/s500x500_DCI-BOY-SONY_NEX7.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e4e563af91b75eef0665c36912b9f68c395a6fa2/s600x400_DCI-BOY-SONY_NEX7.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/e4e563af91b75eef0665c36912b9f68c395a6fa2/s600x600_DCI-BOY-SONY_NEX7.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/e4e563af91b75eef0665c36912b9f68c395a6fa2/s630x235_DCI-BOY-SONY_NEX7.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e4e563af91b75eef0665c36912b9f68c395a6fa2/s940x400_DCI-BOY-SONY_NEX7.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/e4e563af91b75eef0665c36912b9f68c395a6fa2/s940x350_DCI-BOY-SONY_NEX7.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/e4e563af91b75eef0665c36912b9f68c395a6fa2/s940x110_DCI-BOY-SONY_NEX7.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/e4e563af91b75eef0665c36912b9f68c395a6fa2/DCI-BOY-SONY_NEX7.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/e4e563af91b75eef0665c36912b9f68c395a6fa2/DCI-BOY-SONY_NEX7.jpg","file_size":20930,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a82bd0286d55504b95c","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a82bd0286d55504b95c"}}},{"id":"50fb9a82bd0286d55504b95d","created_at":"2013-01-20T07:19:30Z","updated_at":"2013-01-20T07:19:30Z","name":"DCI-BOY-XPRO1.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/4484b7fd5b7304684f90c70866eb7dd2e482b056/s50x50_DCI-BOY-XPRO1.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/4484b7fd5b7304684f90c70866eb7dd2e482b056/s150x150_DCI-BOY-XPRO1.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/4484b7fd5b7304684f90c70866eb7dd2e482b056/s200x75_DCI-BOY-XPRO1.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/4484b7fd5b7304684f90c70866eb7dd2e482b056/s250x250_DCI-BOY-XPRO1.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/4484b7fd5b7304684f90c70866eb7dd2e482b056/s300x150_DCI-BOY-XPRO1.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/4484b7fd5b7304684f90c70866eb7dd2e482b056/s300x112_DCI-BOY-XPRO1.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/4484b7fd5b7304684f90c70866eb7dd2e482b056/s500x500_DCI-BOY-XPRO1.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/4484b7fd5b7304684f90c70866eb7dd2e482b056/s600x400_DCI-BOY-XPRO1.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/4484b7fd5b7304684f90c70866eb7dd2e482b056/s600x600_DCI-BOY-XPRO1.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/4484b7fd5b7304684f90c70866eb7dd2e482b056/s630x235_DCI-BOY-XPRO1.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/4484b7fd5b7304684f90c70866eb7dd2e482b056/s940x400_DCI-BOY-XPRO1.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/4484b7fd5b7304684f90c70866eb7dd2e482b056/s940x350_DCI-BOY-XPRO1.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/4484b7fd5b7304684f90c70866eb7dd2e482b056/s940x110_DCI-BOY-XPRO1.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/4484b7fd5b7304684f90c70866eb7dd2e482b056/DCI-BOY-XPRO1.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/4484b7fd5b7304684f90c70866eb7dd2e482b056/DCI-BOY-XPRO1.jpg","file_size":20748,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a82bd0286d55504b95d","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a82bd0286d55504b95d"}}},{"id":"50fb9a83bd0286d55504b95e","created_at":"2013-01-20T07:19:31Z","updated_at":"2013-01-20T07:19:31Z","name":"DCI-BOY-P7700.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s50x50_DCI-BOY-P7700.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s150x150_DCI-BOY-P7700.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s200x75_DCI-BOY-P7700.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s250x250_DCI-BOY-P7700.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s300x150_DCI-BOY-P7700.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s300x112_DCI-BOY-P7700.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s500x500_DCI-BOY-P7700.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s600x400_DCI-BOY-P7700.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s600x600_DCI-BOY-P7700.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s630x235_DCI-BOY-P7700.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s940x400_DCI-BOY-P7700.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s940x350_DCI-BOY-P7700.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s940x110_DCI-BOY-P7700.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/DCI-BOY-P7700.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/DCI-BOY-P7700.jpg","file_size":19675,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a83bd0286d55504b95e","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a83bd0286d55504b95e"}}},{"id":"50fb9a83bd0286d55504b95f","created_at":"2013-01-20T07:19:31Z","updated_at":"2013-01-20T07:19:31Z","name":"DCI-BOY-P7700.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s50x50_DCI-BOY-P7700.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s150x150_DCI-BOY-P7700.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s200x75_DCI-BOY-P7700.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s250x250_DCI-BOY-P7700.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s300x150_DCI-BOY-P7700.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s300x112_DCI-BOY-P7700.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s500x500_DCI-BOY-P7700.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s600x400_DCI-BOY-P7700.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s600x600_DCI-BOY-P7700.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s630x235_DCI-BOY-P7700.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s940x400_DCI-BOY-P7700.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s940x350_DCI-BOY-P7700.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/s940x110_DCI-BOY-P7700.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/DCI-BOY-P7700.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/0a363990021618d515f3c049e4c7aaaa4d2ff567/DCI-BOY-P7700.jpg","file_size":19675,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a83bd0286d55504b95f","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a83bd0286d55504b95f"}}},{"id":"50fb9a83bd0286d55504b960","created_at":"2013-01-20T07:19:31Z","updated_at":"2013-01-20T07:19:31Z","name":"DCI-BOY-ELPH-110HS.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/28b6c078fd378a81f21eff8be7721bc033d441d3/s50x50_DCI-BOY-ELPH-110HS.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/28b6c078fd378a81f21eff8be7721bc033d441d3/s150x150_DCI-BOY-ELPH-110HS.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/28b6c078fd378a81f21eff8be7721bc033d441d3/s200x75_DCI-BOY-ELPH-110HS.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/28b6c078fd378a81f21eff8be7721bc033d441d3/s250x250_DCI-BOY-ELPH-110HS.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/28b6c078fd378a81f21eff8be7721bc033d441d3/s300x150_DCI-BOY-ELPH-110HS.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/28b6c078fd378a81f21eff8be7721bc033d441d3/s300x112_DCI-BOY-ELPH-110HS.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/28b6c078fd378a81f21eff8be7721bc033d441d3/s500x500_DCI-BOY-ELPH-110HS.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/28b6c078fd378a81f21eff8be7721bc033d441d3/s600x400_DCI-BOY-ELPH-110HS.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/28b6c078fd378a81f21eff8be7721bc033d441d3/s600x600_DCI-BOY-ELPH-110HS.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/28b6c078fd378a81f21eff8be7721bc033d441d3/s630x235_DCI-BOY-ELPH-110HS.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/28b6c078fd378a81f21eff8be7721bc033d441d3/s940x400_DCI-BOY-ELPH-110HS.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/28b6c078fd378a81f21eff8be7721bc033d441d3/s940x350_DCI-BOY-ELPH-110HS.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/28b6c078fd378a81f21eff8be7721bc033d441d3/s940x110_DCI-BOY-ELPH-110HS.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/28b6c078fd378a81f21eff8be7721bc033d441d3/DCI-BOY-ELPH-110HS.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/28b6c078fd378a81f21eff8be7721bc033d441d3/DCI-BOY-ELPH-110HS.jpg","file_size":22340,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a83bd0286d55504b960","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a83bd0286d55504b960"}}},{"id":"50fb9a83bd0286d55504b961","created_at":"2013-01-20T07:19:31Z","updated_at":"2013-01-20T07:19:31Z","name":"DCI-BOY2-SX50HS.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/a11adae8ee3fd913b80e13643a69da1c6e2bf531/s50x50_DCI-BOY2-SX50HS.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a11adae8ee3fd913b80e13643a69da1c6e2bf531/s150x150_DCI-BOY2-SX50HS.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/a11adae8ee3fd913b80e13643a69da1c6e2bf531/s200x75_DCI-BOY2-SX50HS.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/a11adae8ee3fd913b80e13643a69da1c6e2bf531/s250x250_DCI-BOY2-SX50HS.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a11adae8ee3fd913b80e13643a69da1c6e2bf531/s300x150_DCI-BOY2-SX50HS.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/a11adae8ee3fd913b80e13643a69da1c6e2bf531/s300x112_DCI-BOY2-SX50HS.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/a11adae8ee3fd913b80e13643a69da1c6e2bf531/s500x500_DCI-BOY2-SX50HS.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a11adae8ee3fd913b80e13643a69da1c6e2bf531/s600x400_DCI-BOY2-SX50HS.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/a11adae8ee3fd913b80e13643a69da1c6e2bf531/s600x600_DCI-BOY2-SX50HS.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/a11adae8ee3fd913b80e13643a69da1c6e2bf531/s630x235_DCI-BOY2-SX50HS.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a11adae8ee3fd913b80e13643a69da1c6e2bf531/s940x400_DCI-BOY2-SX50HS.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/a11adae8ee3fd913b80e13643a69da1c6e2bf531/s940x350_DCI-BOY2-SX50HS.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/a11adae8ee3fd913b80e13643a69da1c6e2bf531/s940x110_DCI-BOY2-SX50HS.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/a11adae8ee3fd913b80e13643a69da1c6e2bf531/DCI-BOY2-SX50HS.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/a11adae8ee3fd913b80e13643a69da1c6e2bf531/DCI-BOY2-SX50HS.jpg","file_size":21820,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a83bd0286d55504b961","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a83bd0286d55504b961"}}},{"id":"50fb9a83bd0286d55504b962","created_at":"2013-01-20T07:19:31Z","updated_at":"2013-01-20T07:19:31Z","name":"DCI-BOY2-SX260.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/f69eb66a771524449f99be9d4dc4ae751c03d820/s50x50_DCI-BOY2-SX260.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f69eb66a771524449f99be9d4dc4ae751c03d820/s150x150_DCI-BOY2-SX260.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/f69eb66a771524449f99be9d4dc4ae751c03d820/s200x75_DCI-BOY2-SX260.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/f69eb66a771524449f99be9d4dc4ae751c03d820/s250x250_DCI-BOY2-SX260.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f69eb66a771524449f99be9d4dc4ae751c03d820/s300x150_DCI-BOY2-SX260.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/f69eb66a771524449f99be9d4dc4ae751c03d820/s300x112_DCI-BOY2-SX260.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/f69eb66a771524449f99be9d4dc4ae751c03d820/s500x500_DCI-BOY2-SX260.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f69eb66a771524449f99be9d4dc4ae751c03d820/s600x400_DCI-BOY2-SX260.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/f69eb66a771524449f99be9d4dc4ae751c03d820/s600x600_DCI-BOY2-SX260.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/f69eb66a771524449f99be9d4dc4ae751c03d820/s630x235_DCI-BOY2-SX260.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f69eb66a771524449f99be9d4dc4ae751c03d820/s940x400_DCI-BOY2-SX260.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/f69eb66a771524449f99be9d4dc4ae751c03d820/s940x350_DCI-BOY2-SX260.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/f69eb66a771524449f99be9d4dc4ae751c03d820/s940x110_DCI-BOY2-SX260.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/f69eb66a771524449f99be9d4dc4ae751c03d820/DCI-BOY2-SX260.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/f69eb66a771524449f99be9d4dc4ae751c03d820/DCI-BOY2-SX260.jpg","file_size":21442,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a83bd0286d55504b962","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a83bd0286d55504b962"}}},{"id":"50fb9a83bd0286d55504b963","created_at":"2013-01-20T07:19:31Z","updated_at":"2013-01-20T07:19:31Z","name":"DCI-BOY-RX100.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/96b0c994520ca4a3d8d8ea87ebdcba6a8dd77ac5/s50x50_DCI-BOY-RX100.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/96b0c994520ca4a3d8d8ea87ebdcba6a8dd77ac5/s150x150_DCI-BOY-RX100.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/96b0c994520ca4a3d8d8ea87ebdcba6a8dd77ac5/s200x75_DCI-BOY-RX100.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/96b0c994520ca4a3d8d8ea87ebdcba6a8dd77ac5/s250x250_DCI-BOY-RX100.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/96b0c994520ca4a3d8d8ea87ebdcba6a8dd77ac5/s300x150_DCI-BOY-RX100.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/96b0c994520ca4a3d8d8ea87ebdcba6a8dd77ac5/s300x112_DCI-BOY-RX100.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/96b0c994520ca4a3d8d8ea87ebdcba6a8dd77ac5/s500x500_DCI-BOY-RX100.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/96b0c994520ca4a3d8d8ea87ebdcba6a8dd77ac5/s600x400_DCI-BOY-RX100.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/96b0c994520ca4a3d8d8ea87ebdcba6a8dd77ac5/s600x600_DCI-BOY-RX100.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/96b0c994520ca4a3d8d8ea87ebdcba6a8dd77ac5/s630x235_DCI-BOY-RX100.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/96b0c994520ca4a3d8d8ea87ebdcba6a8dd77ac5/s940x400_DCI-BOY-RX100.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/96b0c994520ca4a3d8d8ea87ebdcba6a8dd77ac5/s940x350_DCI-BOY-RX100.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/96b0c994520ca4a3d8d8ea87ebdcba6a8dd77ac5/s940x110_DCI-BOY-RX100.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/96b0c994520ca4a3d8d8ea87ebdcba6a8dd77ac5/DCI-BOY-RX100.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/96b0c994520ca4a3d8d8ea87ebdcba6a8dd77ac5/DCI-BOY-RX100.jpg","file_size":18928,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a83bd0286d55504b963","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a83bd0286d55504b963"}}},{"id":"50fb9a83bd0286d55504b964","created_at":"2013-01-20T07:19:31Z","updated_at":"2013-01-20T07:19:31Z","name":"DCI-BOY-TG1.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/780f342a3d1caf5f1f02e5e13bca66d7dd62dfde/s50x50_DCI-BOY-TG1.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/780f342a3d1caf5f1f02e5e13bca66d7dd62dfde/s150x150_DCI-BOY-TG1.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/780f342a3d1caf5f1f02e5e13bca66d7dd62dfde/s200x75_DCI-BOY-TG1.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/780f342a3d1caf5f1f02e5e13bca66d7dd62dfde/s250x250_DCI-BOY-TG1.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/780f342a3d1caf5f1f02e5e13bca66d7dd62dfde/s300x150_DCI-BOY-TG1.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/780f342a3d1caf5f1f02e5e13bca66d7dd62dfde/s300x112_DCI-BOY-TG1.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/780f342a3d1caf5f1f02e5e13bca66d7dd62dfde/s500x500_DCI-BOY-TG1.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/780f342a3d1caf5f1f02e5e13bca66d7dd62dfde/s600x400_DCI-BOY-TG1.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/780f342a3d1caf5f1f02e5e13bca66d7dd62dfde/s600x600_DCI-BOY-TG1.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/780f342a3d1caf5f1f02e5e13bca66d7dd62dfde/s630x235_DCI-BOY-TG1.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/780f342a3d1caf5f1f02e5e13bca66d7dd62dfde/s940x400_DCI-BOY-TG1.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/780f342a3d1caf5f1f02e5e13bca66d7dd62dfde/s940x350_DCI-BOY-TG1.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/780f342a3d1caf5f1f02e5e13bca66d7dd62dfde/s940x110_DCI-BOY-TG1.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/780f342a3d1caf5f1f02e5e13bca66d7dd62dfde/DCI-BOY-TG1.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/780f342a3d1caf5f1f02e5e13bca66d7dd62dfde/DCI-BOY-TG1.jpg","file_size":19588,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a83bd0286d55504b964","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a83bd0286d55504b964"}}},{"id":"50fb9a83bd0286d55504b965","created_at":"2013-01-20T07:19:31Z","updated_at":"2013-01-20T07:19:31Z","name":"DCI-BOY-WB150F.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7a72455c17b751b71d6cb7e3ec8e48e54e4a3914/s50x50_DCI-BOY-WB150F.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7a72455c17b751b71d6cb7e3ec8e48e54e4a3914/s150x150_DCI-BOY-WB150F.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7a72455c17b751b71d6cb7e3ec8e48e54e4a3914/s200x75_DCI-BOY-WB150F.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7a72455c17b751b71d6cb7e3ec8e48e54e4a3914/s250x250_DCI-BOY-WB150F.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7a72455c17b751b71d6cb7e3ec8e48e54e4a3914/s300x150_DCI-BOY-WB150F.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7a72455c17b751b71d6cb7e3ec8e48e54e4a3914/s300x112_DCI-BOY-WB150F.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7a72455c17b751b71d6cb7e3ec8e48e54e4a3914/s500x500_DCI-BOY-WB150F.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7a72455c17b751b71d6cb7e3ec8e48e54e4a3914/s600x400_DCI-BOY-WB150F.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7a72455c17b751b71d6cb7e3ec8e48e54e4a3914/s600x600_DCI-BOY-WB150F.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7a72455c17b751b71d6cb7e3ec8e48e54e4a3914/s630x235_DCI-BOY-WB150F.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7a72455c17b751b71d6cb7e3ec8e48e54e4a3914/s940x400_DCI-BOY-WB150F.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7a72455c17b751b71d6cb7e3ec8e48e54e4a3914/s940x350_DCI-BOY-WB150F.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7a72455c17b751b71d6cb7e3ec8e48e54e4a3914/s940x110_DCI-BOY-WB150F.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7a72455c17b751b71d6cb7e3ec8e48e54e4a3914/DCI-BOY-WB150F.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7a72455c17b751b71d6cb7e3ec8e48e54e4a3914/DCI-BOY-WB150F.jpg","file_size":21297,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a83bd0286d55504b965","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a83bd0286d55504b965"}}},{"id":"50fb9a83bd0286d55504b966","created_at":"2013-01-20T07:19:31Z","updated_at":"2013-01-20T07:19:31Z","name":"DCI-BOY-GH3.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s50x50_DCI-BOY-GH3.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s150x150_DCI-BOY-GH3.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s200x75_DCI-BOY-GH3.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s250x250_DCI-BOY-GH3.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s300x150_DCI-BOY-GH3.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s300x112_DCI-BOY-GH3.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s500x500_DCI-BOY-GH3.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s600x400_DCI-BOY-GH3.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s600x600_DCI-BOY-GH3.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s630x235_DCI-BOY-GH3.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s940x400_DCI-BOY-GH3.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s940x350_DCI-BOY-GH3.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/s940x110_DCI-BOY-GH3.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/DCI-BOY-GH3.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/64a9b750f1b4d0844a9f956fbe24a42109cb5a4d/DCI-BOY-GH3.jpg","file_size":21367,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a83bd0286d55504b966","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a83bd0286d55504b966"}}},{"id":"50fb9a83bd0286d55504b967","created_at":"2013-01-20T07:19:31Z","updated_at":"2013-01-20T07:19:31Z","name":"DCI-BOY-T4I.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/f4596518ff3432e838e5e8df908858c6bd1a033f/s50x50_DCI-BOY-T4I.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f4596518ff3432e838e5e8df908858c6bd1a033f/s150x150_DCI-BOY-T4I.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/f4596518ff3432e838e5e8df908858c6bd1a033f/s200x75_DCI-BOY-T4I.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/f4596518ff3432e838e5e8df908858c6bd1a033f/s250x250_DCI-BOY-T4I.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f4596518ff3432e838e5e8df908858c6bd1a033f/s300x150_DCI-BOY-T4I.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/f4596518ff3432e838e5e8df908858c6bd1a033f/s300x112_DCI-BOY-T4I.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/f4596518ff3432e838e5e8df908858c6bd1a033f/s500x500_DCI-BOY-T4I.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f4596518ff3432e838e5e8df908858c6bd1a033f/s600x400_DCI-BOY-T4I.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/f4596518ff3432e838e5e8df908858c6bd1a033f/s600x600_DCI-BOY-T4I.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/f4596518ff3432e838e5e8df908858c6bd1a033f/s630x235_DCI-BOY-T4I.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f4596518ff3432e838e5e8df908858c6bd1a033f/s940x400_DCI-BOY-T4I.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/f4596518ff3432e838e5e8df908858c6bd1a033f/s940x350_DCI-BOY-T4I.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/f4596518ff3432e838e5e8df908858c6bd1a033f/s940x110_DCI-BOY-T4I.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/f4596518ff3432e838e5e8df908858c6bd1a033f/DCI-BOY-T4I.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/f4596518ff3432e838e5e8df908858c6bd1a033f/DCI-BOY-T4I.jpg","file_size":19853,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a83bd0286d55504b967","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a83bd0286d55504b967"}}},{"id":"50fb9a83bd0286d55504b968","created_at":"2013-01-20T07:19:31Z","updated_at":"2013-01-20T07:19:31Z","name":"DCI-BOY-FZ200.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/2ffd7f9c305d7835dc4234be435bf393cb8e4743/s50x50_DCI-BOY-FZ200.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/2ffd7f9c305d7835dc4234be435bf393cb8e4743/s150x150_DCI-BOY-FZ200.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/2ffd7f9c305d7835dc4234be435bf393cb8e4743/s200x75_DCI-BOY-FZ200.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/2ffd7f9c305d7835dc4234be435bf393cb8e4743/s250x250_DCI-BOY-FZ200.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/2ffd7f9c305d7835dc4234be435bf393cb8e4743/s300x150_DCI-BOY-FZ200.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/2ffd7f9c305d7835dc4234be435bf393cb8e4743/s300x112_DCI-BOY-FZ200.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/2ffd7f9c305d7835dc4234be435bf393cb8e4743/s500x500_DCI-BOY-FZ200.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/2ffd7f9c305d7835dc4234be435bf393cb8e4743/s600x400_DCI-BOY-FZ200.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/2ffd7f9c305d7835dc4234be435bf393cb8e4743/s600x600_DCI-BOY-FZ200.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/2ffd7f9c305d7835dc4234be435bf393cb8e4743/s630x235_DCI-BOY-FZ200.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/2ffd7f9c305d7835dc4234be435bf393cb8e4743/s940x400_DCI-BOY-FZ200.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/2ffd7f9c305d7835dc4234be435bf393cb8e4743/s940x350_DCI-BOY-FZ200.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/2ffd7f9c305d7835dc4234be435bf393cb8e4743/s940x110_DCI-BOY-FZ200.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/2ffd7f9c305d7835dc4234be435bf393cb8e4743/DCI-BOY-FZ200.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/2ffd7f9c305d7835dc4234be435bf393cb8e4743/DCI-BOY-FZ200.jpg","file_size":20604,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a83bd0286d55504b968","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a83bd0286d55504b968"}}},{"id":"50fb9a84bd0286d55504b969","created_at":"2013-01-20T07:19:32Z","updated_at":"2013-01-20T07:19:32Z","name":"DCI-BOY-WOVEN3.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/d23882494775365e9c91a30e5d01a4673fec9560/s50x50_DCI-BOY-WOVEN3.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/d23882494775365e9c91a30e5d01a4673fec9560/s150x150_DCI-BOY-WOVEN3.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/d23882494775365e9c91a30e5d01a4673fec9560/s200x75_DCI-BOY-WOVEN3.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/d23882494775365e9c91a30e5d01a4673fec9560/s250x250_DCI-BOY-WOVEN3.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/d23882494775365e9c91a30e5d01a4673fec9560/s300x150_DCI-BOY-WOVEN3.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/d23882494775365e9c91a30e5d01a4673fec9560/s300x112_DCI-BOY-WOVEN3.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/d23882494775365e9c91a30e5d01a4673fec9560/s500x500_DCI-BOY-WOVEN3.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/d23882494775365e9c91a30e5d01a4673fec9560/s600x400_DCI-BOY-WOVEN3.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/d23882494775365e9c91a30e5d01a4673fec9560/s600x600_DCI-BOY-WOVEN3.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/d23882494775365e9c91a30e5d01a4673fec9560/s630x235_DCI-BOY-WOVEN3.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/d23882494775365e9c91a30e5d01a4673fec9560/s940x400_DCI-BOY-WOVEN3.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/d23882494775365e9c91a30e5d01a4673fec9560/s940x350_DCI-BOY-WOVEN3.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/d23882494775365e9c91a30e5d01a4673fec9560/s940x110_DCI-BOY-WOVEN3.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/d23882494775365e9c91a30e5d01a4673fec9560/DCI-BOY-WOVEN3.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/d23882494775365e9c91a30e5d01a4673fec9560/DCI-BOY-WOVEN3.jpg","file_size":15171,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a84bd0286d55504b969","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a84bd0286d55504b969"}}},{"id":"50fb9a84bd0286d55504b96a","created_at":"2013-01-20T07:19:32Z","updated_at":"2013-01-20T07:19:32Z","name":"DCI-BOY-R2000.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/51ac80748518d532e61a10ce501c8afd36533d11/s50x50_DCI-BOY-R2000.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/51ac80748518d532e61a10ce501c8afd36533d11/s150x150_DCI-BOY-R2000.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/51ac80748518d532e61a10ce501c8afd36533d11/s200x75_DCI-BOY-R2000.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/51ac80748518d532e61a10ce501c8afd36533d11/s250x250_DCI-BOY-R2000.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/51ac80748518d532e61a10ce501c8afd36533d11/s300x150_DCI-BOY-R2000.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/51ac80748518d532e61a10ce501c8afd36533d11/s300x112_DCI-BOY-R2000.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/51ac80748518d532e61a10ce501c8afd36533d11/s500x500_DCI-BOY-R2000.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/51ac80748518d532e61a10ce501c8afd36533d11/s600x400_DCI-BOY-R2000.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/51ac80748518d532e61a10ce501c8afd36533d11/s600x600_DCI-BOY-R2000.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/51ac80748518d532e61a10ce501c8afd36533d11/s630x235_DCI-BOY-R2000.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/51ac80748518d532e61a10ce501c8afd36533d11/s940x400_DCI-BOY-R2000.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/51ac80748518d532e61a10ce501c8afd36533d11/s940x350_DCI-BOY-R2000.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/51ac80748518d532e61a10ce501c8afd36533d11/s940x110_DCI-BOY-R2000.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/51ac80748518d532e61a10ce501c8afd36533d11/DCI-BOY-R2000.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/51ac80748518d532e61a10ce501c8afd36533d11/DCI-BOY-R2000.jpg","file_size":17181,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a84bd0286d55504b96a","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a84bd0286d55504b96a"}}},{"id":"50fb9a84bd0286d55504b972","created_at":"2013-01-20T07:19:32Z","updated_at":"2013-01-20T07:19:32Z","name":"boy2012-dci.jpg","type":"file","tags":["old-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/86b73c8f926ec76ded8510efde92c567e1c99a4b/s50x50_boy2012-dci.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/86b73c8f926ec76ded8510efde92c567e1c99a4b/s150x150_boy2012-dci.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/86b73c8f926ec76ded8510efde92c567e1c99a4b/s200x75_boy2012-dci.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/86b73c8f926ec76ded8510efde92c567e1c99a4b/s250x250_boy2012-dci.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/86b73c8f926ec76ded8510efde92c567e1c99a4b/s300x150_boy2012-dci.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/86b73c8f926ec76ded8510efde92c567e1c99a4b/s300x112_boy2012-dci.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/86b73c8f926ec76ded8510efde92c567e1c99a4b/s500x500_boy2012-dci.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/86b73c8f926ec76ded8510efde92c567e1c99a4b/s600x400_boy2012-dci.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/86b73c8f926ec76ded8510efde92c567e1c99a4b/s600x600_boy2012-dci.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/86b73c8f926ec76ded8510efde92c567e1c99a4b/s630x235_boy2012-dci.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/86b73c8f926ec76ded8510efde92c567e1c99a4b/s940x400_boy2012-dci.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/86b73c8f926ec76ded8510efde92c567e1c99a4b/s940x350_boy2012-dci.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/86b73c8f926ec76ded8510efde92c567e1c99a4b/s940x110_boy2012-dci.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/86b73c8f926ec76ded8510efde92c567e1c99a4b/boy2012-dci.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/86b73c8f926ec76ded8510efde92c567e1c99a4b/boy2012-dci.jpg","file_size":57191,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a84bd0286d55504b972","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a84bd0286d55504b972"}}},{"id":"50fb9a84bd0286d55504b973","created_at":"2013-01-20T07:19:32Z","updated_at":"2013-01-20T07:19:32Z","name":"DCI-BOY-SX260.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b512c46fbc48ac07130b62139de7f989dcc36caa/s50x50_DCI-BOY-SX260.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b512c46fbc48ac07130b62139de7f989dcc36caa/s150x150_DCI-BOY-SX260.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/b512c46fbc48ac07130b62139de7f989dcc36caa/s200x75_DCI-BOY-SX260.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b512c46fbc48ac07130b62139de7f989dcc36caa/s250x250_DCI-BOY-SX260.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b512c46fbc48ac07130b62139de7f989dcc36caa/s300x150_DCI-BOY-SX260.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b512c46fbc48ac07130b62139de7f989dcc36caa/s300x112_DCI-BOY-SX260.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b512c46fbc48ac07130b62139de7f989dcc36caa/s500x500_DCI-BOY-SX260.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b512c46fbc48ac07130b62139de7f989dcc36caa/s600x400_DCI-BOY-SX260.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b512c46fbc48ac07130b62139de7f989dcc36caa/s600x600_DCI-BOY-SX260.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/b512c46fbc48ac07130b62139de7f989dcc36caa/s630x235_DCI-BOY-SX260.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b512c46fbc48ac07130b62139de7f989dcc36caa/s940x400_DCI-BOY-SX260.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b512c46fbc48ac07130b62139de7f989dcc36caa/s940x350_DCI-BOY-SX260.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b512c46fbc48ac07130b62139de7f989dcc36caa/s940x110_DCI-BOY-SX260.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b512c46fbc48ac07130b62139de7f989dcc36caa/DCI-BOY-SX260.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/b512c46fbc48ac07130b62139de7f989dcc36caa/DCI-BOY-SX260.jpg","file_size":61535,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a84bd0286d55504b973","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a84bd0286d55504b973"}}},{"id":"50fb9a85bd0286d55504b974","created_at":"2013-01-20T07:19:33Z","updated_at":"2013-01-20T07:19:33Z","name":"DCI-BOY-XPRO1.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ad635fa3222d427e406997eeff8c861ee04ddfcc/s50x50_DCI-BOY-XPRO1.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ad635fa3222d427e406997eeff8c861ee04ddfcc/s150x150_DCI-BOY-XPRO1.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ad635fa3222d427e406997eeff8c861ee04ddfcc/s200x75_DCI-BOY-XPRO1.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ad635fa3222d427e406997eeff8c861ee04ddfcc/s250x250_DCI-BOY-XPRO1.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ad635fa3222d427e406997eeff8c861ee04ddfcc/s300x150_DCI-BOY-XPRO1.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ad635fa3222d427e406997eeff8c861ee04ddfcc/s300x112_DCI-BOY-XPRO1.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ad635fa3222d427e406997eeff8c861ee04ddfcc/s500x500_DCI-BOY-XPRO1.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ad635fa3222d427e406997eeff8c861ee04ddfcc/s600x400_DCI-BOY-XPRO1.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ad635fa3222d427e406997eeff8c861ee04ddfcc/s600x600_DCI-BOY-XPRO1.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ad635fa3222d427e406997eeff8c861ee04ddfcc/s630x235_DCI-BOY-XPRO1.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ad635fa3222d427e406997eeff8c861ee04ddfcc/s940x400_DCI-BOY-XPRO1.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ad635fa3222d427e406997eeff8c861ee04ddfcc/s940x350_DCI-BOY-XPRO1.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ad635fa3222d427e406997eeff8c861ee04ddfcc/s940x110_DCI-BOY-XPRO1.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ad635fa3222d427e406997eeff8c861ee04ddfcc/DCI-BOY-XPRO1.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/ad635fa3222d427e406997eeff8c861ee04ddfcc/DCI-BOY-XPRO1.jpg","file_size":20748,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a85bd0286d55504b974","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a85bd0286d55504b974"}}},{"id":"50fb9a85bd0286d55504b975","created_at":"2013-01-20T07:19:33Z","updated_at":"2013-01-20T07:19:33Z","name":"DCI-BOY-FZ200.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/4a0f086d494320ae164f87eb5c30bbe95e8f30b1/s50x50_DCI-BOY-FZ200.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/4a0f086d494320ae164f87eb5c30bbe95e8f30b1/s150x150_DCI-BOY-FZ200.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/4a0f086d494320ae164f87eb5c30bbe95e8f30b1/s200x75_DCI-BOY-FZ200.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/4a0f086d494320ae164f87eb5c30bbe95e8f30b1/s250x250_DCI-BOY-FZ200.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/4a0f086d494320ae164f87eb5c30bbe95e8f30b1/s300x150_DCI-BOY-FZ200.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/4a0f086d494320ae164f87eb5c30bbe95e8f30b1/s300x112_DCI-BOY-FZ200.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/4a0f086d494320ae164f87eb5c30bbe95e8f30b1/s500x500_DCI-BOY-FZ200.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/4a0f086d494320ae164f87eb5c30bbe95e8f30b1/s600x400_DCI-BOY-FZ200.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/4a0f086d494320ae164f87eb5c30bbe95e8f30b1/s600x600_DCI-BOY-FZ200.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/4a0f086d494320ae164f87eb5c30bbe95e8f30b1/s630x235_DCI-BOY-FZ200.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/4a0f086d494320ae164f87eb5c30bbe95e8f30b1/s940x400_DCI-BOY-FZ200.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/4a0f086d494320ae164f87eb5c30bbe95e8f30b1/s940x350_DCI-BOY-FZ200.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/4a0f086d494320ae164f87eb5c30bbe95e8f30b1/s940x110_DCI-BOY-FZ200.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/4a0f086d494320ae164f87eb5c30bbe95e8f30b1/DCI-BOY-FZ200.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/4a0f086d494320ae164f87eb5c30bbe95e8f30b1/DCI-BOY-FZ200.jpg","file_size":20604,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a85bd0286d55504b975","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a85bd0286d55504b975"}}},{"id":"50fb9a85bd0286d55504b976","created_at":"2013-01-20T07:19:33Z","updated_at":"2013-01-20T07:19:33Z","name":"DCI-BOY-TG1.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/c0ef9b6d107c405a591fe219b4673a2bf475ea44/s50x50_DCI-BOY-TG1.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c0ef9b6d107c405a591fe219b4673a2bf475ea44/s150x150_DCI-BOY-TG1.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/c0ef9b6d107c405a591fe219b4673a2bf475ea44/s200x75_DCI-BOY-TG1.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/c0ef9b6d107c405a591fe219b4673a2bf475ea44/s250x250_DCI-BOY-TG1.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c0ef9b6d107c405a591fe219b4673a2bf475ea44/s300x150_DCI-BOY-TG1.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/c0ef9b6d107c405a591fe219b4673a2bf475ea44/s300x112_DCI-BOY-TG1.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/c0ef9b6d107c405a591fe219b4673a2bf475ea44/s500x500_DCI-BOY-TG1.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c0ef9b6d107c405a591fe219b4673a2bf475ea44/s600x400_DCI-BOY-TG1.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/c0ef9b6d107c405a591fe219b4673a2bf475ea44/s600x600_DCI-BOY-TG1.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/c0ef9b6d107c405a591fe219b4673a2bf475ea44/s630x235_DCI-BOY-TG1.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c0ef9b6d107c405a591fe219b4673a2bf475ea44/s940x400_DCI-BOY-TG1.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/c0ef9b6d107c405a591fe219b4673a2bf475ea44/s940x350_DCI-BOY-TG1.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/c0ef9b6d107c405a591fe219b4673a2bf475ea44/s940x110_DCI-BOY-TG1.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/c0ef9b6d107c405a591fe219b4673a2bf475ea44/DCI-BOY-TG1.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/c0ef9b6d107c405a591fe219b4673a2bf475ea44/DCI-BOY-TG1.jpg","file_size":19588,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a85bd0286d55504b976","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a85bd0286d55504b976"}}},{"id":"50fb9a85bd0286d55504b977","created_at":"2013-01-20T07:19:33Z","updated_at":"2013-01-20T07:19:33Z","name":"DCI-BOY-RX100.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/03bbe0b8726604371884cca0341cb352e0da2310/s50x50_DCI-BOY-RX100.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/03bbe0b8726604371884cca0341cb352e0da2310/s150x150_DCI-BOY-RX100.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/03bbe0b8726604371884cca0341cb352e0da2310/s200x75_DCI-BOY-RX100.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/03bbe0b8726604371884cca0341cb352e0da2310/s250x250_DCI-BOY-RX100.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/03bbe0b8726604371884cca0341cb352e0da2310/s300x150_DCI-BOY-RX100.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/03bbe0b8726604371884cca0341cb352e0da2310/s300x112_DCI-BOY-RX100.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/03bbe0b8726604371884cca0341cb352e0da2310/s500x500_DCI-BOY-RX100.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/03bbe0b8726604371884cca0341cb352e0da2310/s600x400_DCI-BOY-RX100.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/03bbe0b8726604371884cca0341cb352e0da2310/s600x600_DCI-BOY-RX100.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/03bbe0b8726604371884cca0341cb352e0da2310/s630x235_DCI-BOY-RX100.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/03bbe0b8726604371884cca0341cb352e0da2310/s940x400_DCI-BOY-RX100.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/03bbe0b8726604371884cca0341cb352e0da2310/s940x350_DCI-BOY-RX100.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/03bbe0b8726604371884cca0341cb352e0da2310/s940x110_DCI-BOY-RX100.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/03bbe0b8726604371884cca0341cb352e0da2310/DCI-BOY-RX100.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/03bbe0b8726604371884cca0341cb352e0da2310/DCI-BOY-RX100.jpg","file_size":18928,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a85bd0286d55504b977","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a85bd0286d55504b977"}}},{"id":"50fb9a85bd0286d55504b978","created_at":"2013-01-20T07:19:33Z","updated_at":"2013-01-20T07:19:33Z","name":"DCI-BOY-ELPH-110HS.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/10c0b31ac0ecf074796436a89adba5571f1d011e/s50x50_DCI-BOY-ELPH-110HS.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/10c0b31ac0ecf074796436a89adba5571f1d011e/s150x150_DCI-BOY-ELPH-110HS.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/10c0b31ac0ecf074796436a89adba5571f1d011e/s200x75_DCI-BOY-ELPH-110HS.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/10c0b31ac0ecf074796436a89adba5571f1d011e/s250x250_DCI-BOY-ELPH-110HS.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/10c0b31ac0ecf074796436a89adba5571f1d011e/s300x150_DCI-BOY-ELPH-110HS.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/10c0b31ac0ecf074796436a89adba5571f1d011e/s300x112_DCI-BOY-ELPH-110HS.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/10c0b31ac0ecf074796436a89adba5571f1d011e/s500x500_DCI-BOY-ELPH-110HS.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/10c0b31ac0ecf074796436a89adba5571f1d011e/s600x400_DCI-BOY-ELPH-110HS.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/10c0b31ac0ecf074796436a89adba5571f1d011e/s600x600_DCI-BOY-ELPH-110HS.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/10c0b31ac0ecf074796436a89adba5571f1d011e/s630x235_DCI-BOY-ELPH-110HS.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/10c0b31ac0ecf074796436a89adba5571f1d011e/s940x400_DCI-BOY-ELPH-110HS.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/10c0b31ac0ecf074796436a89adba5571f1d011e/s940x350_DCI-BOY-ELPH-110HS.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/10c0b31ac0ecf074796436a89adba5571f1d011e/s940x110_DCI-BOY-ELPH-110HS.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/10c0b31ac0ecf074796436a89adba5571f1d011e/DCI-BOY-ELPH-110HS.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/10c0b31ac0ecf074796436a89adba5571f1d011e/DCI-BOY-ELPH-110HS.jpg","file_size":22340,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a85bd0286d55504b978","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a85bd0286d55504b978"}}},{"id":"50fb9a85bd0286d55504b979","created_at":"2013-01-20T07:19:33Z","updated_at":"2013-01-20T07:19:33Z","name":"DCI-BOY-D800.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/917e4cb9b8001afed2ee1a300ccb8b708198ca6d/s50x50_DCI-BOY-D800.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/917e4cb9b8001afed2ee1a300ccb8b708198ca6d/s150x150_DCI-BOY-D800.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/917e4cb9b8001afed2ee1a300ccb8b708198ca6d/s200x75_DCI-BOY-D800.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/917e4cb9b8001afed2ee1a300ccb8b708198ca6d/s250x250_DCI-BOY-D800.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/917e4cb9b8001afed2ee1a300ccb8b708198ca6d/s300x150_DCI-BOY-D800.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/917e4cb9b8001afed2ee1a300ccb8b708198ca6d/s300x112_DCI-BOY-D800.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/917e4cb9b8001afed2ee1a300ccb8b708198ca6d/s500x500_DCI-BOY-D800.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/917e4cb9b8001afed2ee1a300ccb8b708198ca6d/s600x400_DCI-BOY-D800.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/917e4cb9b8001afed2ee1a300ccb8b708198ca6d/s600x600_DCI-BOY-D800.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/917e4cb9b8001afed2ee1a300ccb8b708198ca6d/s630x235_DCI-BOY-D800.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/917e4cb9b8001afed2ee1a300ccb8b708198ca6d/s940x400_DCI-BOY-D800.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/917e4cb9b8001afed2ee1a300ccb8b708198ca6d/s940x350_DCI-BOY-D800.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/917e4cb9b8001afed2ee1a300ccb8b708198ca6d/s940x110_DCI-BOY-D800.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/917e4cb9b8001afed2ee1a300ccb8b708198ca6d/DCI-BOY-D800.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/917e4cb9b8001afed2ee1a300ccb8b708198ca6d/DCI-BOY-D800.jpg","file_size":21450,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a85bd0286d55504b979","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a85bd0286d55504b979"}}},{"id":"50fb9a85bd0286d55504b97a","created_at":"2013-01-20T07:19:33Z","updated_at":"2013-01-20T07:19:33Z","name":"DCI-BOY-T4I.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/c7eb8b3c704c8a4df8902482cb65d996a0ff111b/s50x50_DCI-BOY-T4I.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c7eb8b3c704c8a4df8902482cb65d996a0ff111b/s150x150_DCI-BOY-T4I.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/c7eb8b3c704c8a4df8902482cb65d996a0ff111b/s200x75_DCI-BOY-T4I.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/c7eb8b3c704c8a4df8902482cb65d996a0ff111b/s250x250_DCI-BOY-T4I.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c7eb8b3c704c8a4df8902482cb65d996a0ff111b/s300x150_DCI-BOY-T4I.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/c7eb8b3c704c8a4df8902482cb65d996a0ff111b/s300x112_DCI-BOY-T4I.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/c7eb8b3c704c8a4df8902482cb65d996a0ff111b/s500x500_DCI-BOY-T4I.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c7eb8b3c704c8a4df8902482cb65d996a0ff111b/s600x400_DCI-BOY-T4I.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/c7eb8b3c704c8a4df8902482cb65d996a0ff111b/s600x600_DCI-BOY-T4I.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/c7eb8b3c704c8a4df8902482cb65d996a0ff111b/s630x235_DCI-BOY-T4I.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c7eb8b3c704c8a4df8902482cb65d996a0ff111b/s940x400_DCI-BOY-T4I.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/c7eb8b3c704c8a4df8902482cb65d996a0ff111b/s940x350_DCI-BOY-T4I.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/c7eb8b3c704c8a4df8902482cb65d996a0ff111b/s940x110_DCI-BOY-T4I.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/c7eb8b3c704c8a4df8902482cb65d996a0ff111b/DCI-BOY-T4I.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/c7eb8b3c704c8a4df8902482cb65d996a0ff111b/DCI-BOY-T4I.jpg","file_size":19853,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a85bd0286d55504b97a","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a85bd0286d55504b97a"}}},{"id":"50fb9a86bd0286d55504b97b","created_at":"2013-01-20T07:19:34Z","updated_at":"2013-01-20T07:19:34Z","name":"DCI-BOY-CANON_1DX.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/69506961af7a6ef00eec4fe1e950b83f54011103/s50x50_DCI-BOY-CANON_1DX.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/69506961af7a6ef00eec4fe1e950b83f54011103/s150x150_DCI-BOY-CANON_1DX.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/69506961af7a6ef00eec4fe1e950b83f54011103/s200x75_DCI-BOY-CANON_1DX.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/69506961af7a6ef00eec4fe1e950b83f54011103/s250x250_DCI-BOY-CANON_1DX.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/69506961af7a6ef00eec4fe1e950b83f54011103/s300x150_DCI-BOY-CANON_1DX.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/69506961af7a6ef00eec4fe1e950b83f54011103/s300x112_DCI-BOY-CANON_1DX.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/69506961af7a6ef00eec4fe1e950b83f54011103/s500x500_DCI-BOY-CANON_1DX.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/69506961af7a6ef00eec4fe1e950b83f54011103/s600x400_DCI-BOY-CANON_1DX.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/69506961af7a6ef00eec4fe1e950b83f54011103/s600x600_DCI-BOY-CANON_1DX.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/69506961af7a6ef00eec4fe1e950b83f54011103/s630x235_DCI-BOY-CANON_1DX.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/69506961af7a6ef00eec4fe1e950b83f54011103/s940x400_DCI-BOY-CANON_1DX.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/69506961af7a6ef00eec4fe1e950b83f54011103/s940x350_DCI-BOY-CANON_1DX.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/69506961af7a6ef00eec4fe1e950b83f54011103/s940x110_DCI-BOY-CANON_1DX.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/69506961af7a6ef00eec4fe1e950b83f54011103/DCI-BOY-CANON_1DX.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/69506961af7a6ef00eec4fe1e950b83f54011103/DCI-BOY-CANON_1DX.jpg","file_size":21210,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a86bd0286d55504b97b","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a86bd0286d55504b97b"}}},{"id":"50fb9a86bd0286d55504b97c","created_at":"2013-01-20T07:19:34Z","updated_at":"2013-01-20T07:19:34Z","name":"DCI-BOY-WB150F.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/751c489a5b7825e5f5ccf706bb6198cc6d17691c/s50x50_DCI-BOY-WB150F.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/751c489a5b7825e5f5ccf706bb6198cc6d17691c/s150x150_DCI-BOY-WB150F.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/751c489a5b7825e5f5ccf706bb6198cc6d17691c/s200x75_DCI-BOY-WB150F.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/751c489a5b7825e5f5ccf706bb6198cc6d17691c/s250x250_DCI-BOY-WB150F.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/751c489a5b7825e5f5ccf706bb6198cc6d17691c/s300x150_DCI-BOY-WB150F.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/751c489a5b7825e5f5ccf706bb6198cc6d17691c/s300x112_DCI-BOY-WB150F.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/751c489a5b7825e5f5ccf706bb6198cc6d17691c/s500x500_DCI-BOY-WB150F.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/751c489a5b7825e5f5ccf706bb6198cc6d17691c/s600x400_DCI-BOY-WB150F.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/751c489a5b7825e5f5ccf706bb6198cc6d17691c/s600x600_DCI-BOY-WB150F.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/751c489a5b7825e5f5ccf706bb6198cc6d17691c/s630x235_DCI-BOY-WB150F.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/751c489a5b7825e5f5ccf706bb6198cc6d17691c/s940x400_DCI-BOY-WB150F.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/751c489a5b7825e5f5ccf706bb6198cc6d17691c/s940x350_DCI-BOY-WB150F.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/751c489a5b7825e5f5ccf706bb6198cc6d17691c/s940x110_DCI-BOY-WB150F.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/751c489a5b7825e5f5ccf706bb6198cc6d17691c/DCI-BOY-WB150F.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/751c489a5b7825e5f5ccf706bb6198cc6d17691c/DCI-BOY-WB150F.jpg","file_size":21297,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a86bd0286d55504b97c","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a86bd0286d55504b97c"}}},{"id":"50fb9a86bd0286d55504b97d","created_at":"2013-01-20T07:19:34Z","updated_at":"2013-01-20T07:19:34Z","name":"DCI-BOY-SONY_NEX7.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/d23cbf0a7cfe5f0978de04c852d42211bf007bae/s50x50_DCI-BOY-SONY_NEX7.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/d23cbf0a7cfe5f0978de04c852d42211bf007bae/s150x150_DCI-BOY-SONY_NEX7.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/d23cbf0a7cfe5f0978de04c852d42211bf007bae/s200x75_DCI-BOY-SONY_NEX7.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/d23cbf0a7cfe5f0978de04c852d42211bf007bae/s250x250_DCI-BOY-SONY_NEX7.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/d23cbf0a7cfe5f0978de04c852d42211bf007bae/s300x150_DCI-BOY-SONY_NEX7.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/d23cbf0a7cfe5f0978de04c852d42211bf007bae/s300x112_DCI-BOY-SONY_NEX7.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/d23cbf0a7cfe5f0978de04c852d42211bf007bae/s500x500_DCI-BOY-SONY_NEX7.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/d23cbf0a7cfe5f0978de04c852d42211bf007bae/s600x400_DCI-BOY-SONY_NEX7.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/d23cbf0a7cfe5f0978de04c852d42211bf007bae/s600x600_DCI-BOY-SONY_NEX7.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/d23cbf0a7cfe5f0978de04c852d42211bf007bae/s630x235_DCI-BOY-SONY_NEX7.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/d23cbf0a7cfe5f0978de04c852d42211bf007bae/s940x400_DCI-BOY-SONY_NEX7.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/d23cbf0a7cfe5f0978de04c852d42211bf007bae/s940x350_DCI-BOY-SONY_NEX7.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/d23cbf0a7cfe5f0978de04c852d42211bf007bae/s940x110_DCI-BOY-SONY_NEX7.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/d23cbf0a7cfe5f0978de04c852d42211bf007bae/DCI-BOY-SONY_NEX7.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/d23cbf0a7cfe5f0978de04c852d42211bf007bae/DCI-BOY-SONY_NEX7.jpg","file_size":20930,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a86bd0286d55504b97d","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a86bd0286d55504b97d"}}},{"id":"50fb9a86bd0286d55504b97e","created_at":"2013-01-20T07:19:34Z","updated_at":"2013-01-20T07:19:34Z","name":"DCI-BOY-LYTRO.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/0d7247eee6b1dc59f0854a181aa70724087a70f2/s50x50_DCI-BOY-LYTRO.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/0d7247eee6b1dc59f0854a181aa70724087a70f2/s150x150_DCI-BOY-LYTRO.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/0d7247eee6b1dc59f0854a181aa70724087a70f2/s200x75_DCI-BOY-LYTRO.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/0d7247eee6b1dc59f0854a181aa70724087a70f2/s250x250_DCI-BOY-LYTRO.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/0d7247eee6b1dc59f0854a181aa70724087a70f2/s300x150_DCI-BOY-LYTRO.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/0d7247eee6b1dc59f0854a181aa70724087a70f2/s300x112_DCI-BOY-LYTRO.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/0d7247eee6b1dc59f0854a181aa70724087a70f2/s500x500_DCI-BOY-LYTRO.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/0d7247eee6b1dc59f0854a181aa70724087a70f2/s600x400_DCI-BOY-LYTRO.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/0d7247eee6b1dc59f0854a181aa70724087a70f2/s600x600_DCI-BOY-LYTRO.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/0d7247eee6b1dc59f0854a181aa70724087a70f2/s630x235_DCI-BOY-LYTRO.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/0d7247eee6b1dc59f0854a181aa70724087a70f2/s940x400_DCI-BOY-LYTRO.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/0d7247eee6b1dc59f0854a181aa70724087a70f2/s940x350_DCI-BOY-LYTRO.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/0d7247eee6b1dc59f0854a181aa70724087a70f2/s940x110_DCI-BOY-LYTRO.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/0d7247eee6b1dc59f0854a181aa70724087a70f2/DCI-BOY-LYTRO.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/0d7247eee6b1dc59f0854a181aa70724087a70f2/DCI-BOY-LYTRO.jpg","file_size":17014,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a86bd0286d55504b97e","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a86bd0286d55504b97e"}}},{"id":"50fb9a86bd0286d55504b97f","created_at":"2013-01-20T07:19:34Z","updated_at":"2013-01-20T07:19:34Z","name":"DCI-BOY-WOVEN.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/e521c55a0e71461dfcb12f4afe64222954cbc062/s50x50_DCI-BOY-WOVEN.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e521c55a0e71461dfcb12f4afe64222954cbc062/s150x150_DCI-BOY-WOVEN.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/e521c55a0e71461dfcb12f4afe64222954cbc062/s200x75_DCI-BOY-WOVEN.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/e521c55a0e71461dfcb12f4afe64222954cbc062/s250x250_DCI-BOY-WOVEN.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e521c55a0e71461dfcb12f4afe64222954cbc062/s300x150_DCI-BOY-WOVEN.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/e521c55a0e71461dfcb12f4afe64222954cbc062/s300x112_DCI-BOY-WOVEN.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/e521c55a0e71461dfcb12f4afe64222954cbc062/s500x500_DCI-BOY-WOVEN.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e521c55a0e71461dfcb12f4afe64222954cbc062/s600x400_DCI-BOY-WOVEN.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/e521c55a0e71461dfcb12f4afe64222954cbc062/s600x600_DCI-BOY-WOVEN.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/e521c55a0e71461dfcb12f4afe64222954cbc062/s630x235_DCI-BOY-WOVEN.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e521c55a0e71461dfcb12f4afe64222954cbc062/s940x400_DCI-BOY-WOVEN.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/e521c55a0e71461dfcb12f4afe64222954cbc062/s940x350_DCI-BOY-WOVEN.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/e521c55a0e71461dfcb12f4afe64222954cbc062/s940x110_DCI-BOY-WOVEN.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/e521c55a0e71461dfcb12f4afe64222954cbc062/DCI-BOY-WOVEN.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/e521c55a0e71461dfcb12f4afe64222954cbc062/DCI-BOY-WOVEN.jpg","file_size":18453,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a86bd0286d55504b97f","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a86bd0286d55504b97f"}}},{"id":"50fb9a86bd0286d55504b980","created_at":"2013-01-20T07:19:34Z","updated_at":"2013-01-20T07:19:34Z","name":"DCI-BOY2-SX260.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/8855a12c6cb5467ab20ae84be465fd4b772e08b7/s50x50_DCI-BOY2-SX260.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/8855a12c6cb5467ab20ae84be465fd4b772e08b7/s150x150_DCI-BOY2-SX260.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/8855a12c6cb5467ab20ae84be465fd4b772e08b7/s200x75_DCI-BOY2-SX260.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/8855a12c6cb5467ab20ae84be465fd4b772e08b7/s250x250_DCI-BOY2-SX260.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/8855a12c6cb5467ab20ae84be465fd4b772e08b7/s300x150_DCI-BOY2-SX260.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/8855a12c6cb5467ab20ae84be465fd4b772e08b7/s300x112_DCI-BOY2-SX260.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/8855a12c6cb5467ab20ae84be465fd4b772e08b7/s500x500_DCI-BOY2-SX260.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/8855a12c6cb5467ab20ae84be465fd4b772e08b7/s600x400_DCI-BOY2-SX260.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/8855a12c6cb5467ab20ae84be465fd4b772e08b7/s600x600_DCI-BOY2-SX260.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/8855a12c6cb5467ab20ae84be465fd4b772e08b7/s630x235_DCI-BOY2-SX260.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/8855a12c6cb5467ab20ae84be465fd4b772e08b7/s940x400_DCI-BOY2-SX260.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/8855a12c6cb5467ab20ae84be465fd4b772e08b7/s940x350_DCI-BOY2-SX260.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/8855a12c6cb5467ab20ae84be465fd4b772e08b7/s940x110_DCI-BOY2-SX260.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/8855a12c6cb5467ab20ae84be465fd4b772e08b7/DCI-BOY2-SX260.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/8855a12c6cb5467ab20ae84be465fd4b772e08b7/DCI-BOY2-SX260.jpg","file_size":21442,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a86bd0286d55504b980","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a86bd0286d55504b980"}}},{"id":"50fb9a86bd0286d55504b981","created_at":"2013-01-20T07:19:34Z","updated_at":"2013-01-20T07:19:34Z","name":"DCI-BOY-P7700.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/e73b683ac224d0f117f9c08bea81bd34173f1f50/s50x50_DCI-BOY-P7700.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e73b683ac224d0f117f9c08bea81bd34173f1f50/s150x150_DCI-BOY-P7700.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/e73b683ac224d0f117f9c08bea81bd34173f1f50/s200x75_DCI-BOY-P7700.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/e73b683ac224d0f117f9c08bea81bd34173f1f50/s250x250_DCI-BOY-P7700.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e73b683ac224d0f117f9c08bea81bd34173f1f50/s300x150_DCI-BOY-P7700.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/e73b683ac224d0f117f9c08bea81bd34173f1f50/s300x112_DCI-BOY-P7700.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/e73b683ac224d0f117f9c08bea81bd34173f1f50/s500x500_DCI-BOY-P7700.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e73b683ac224d0f117f9c08bea81bd34173f1f50/s600x400_DCI-BOY-P7700.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/e73b683ac224d0f117f9c08bea81bd34173f1f50/s600x600_DCI-BOY-P7700.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/e73b683ac224d0f117f9c08bea81bd34173f1f50/s630x235_DCI-BOY-P7700.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e73b683ac224d0f117f9c08bea81bd34173f1f50/s940x400_DCI-BOY-P7700.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/e73b683ac224d0f117f9c08bea81bd34173f1f50/s940x350_DCI-BOY-P7700.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/e73b683ac224d0f117f9c08bea81bd34173f1f50/s940x110_DCI-BOY-P7700.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/e73b683ac224d0f117f9c08bea81bd34173f1f50/DCI-BOY-P7700.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/e73b683ac224d0f117f9c08bea81bd34173f1f50/DCI-BOY-P7700.jpg","file_size":19675,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a86bd0286d55504b981","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a86bd0286d55504b981"}}},{"id":"50fb9a86bd0286d55504b982","created_at":"2013-01-20T07:19:34Z","updated_at":"2013-01-20T07:19:34Z","name":"DCI-BOY-GH3.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/9593539875086983300ecf9ec4bad0f0f282099d/s50x50_DCI-BOY-GH3.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/9593539875086983300ecf9ec4bad0f0f282099d/s150x150_DCI-BOY-GH3.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/9593539875086983300ecf9ec4bad0f0f282099d/s200x75_DCI-BOY-GH3.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/9593539875086983300ecf9ec4bad0f0f282099d/s250x250_DCI-BOY-GH3.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/9593539875086983300ecf9ec4bad0f0f282099d/s300x150_DCI-BOY-GH3.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/9593539875086983300ecf9ec4bad0f0f282099d/s300x112_DCI-BOY-GH3.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/9593539875086983300ecf9ec4bad0f0f282099d/s500x500_DCI-BOY-GH3.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/9593539875086983300ecf9ec4bad0f0f282099d/s600x400_DCI-BOY-GH3.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/9593539875086983300ecf9ec4bad0f0f282099d/s600x600_DCI-BOY-GH3.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/9593539875086983300ecf9ec4bad0f0f282099d/s630x235_DCI-BOY-GH3.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/9593539875086983300ecf9ec4bad0f0f282099d/s940x400_DCI-BOY-GH3.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/9593539875086983300ecf9ec4bad0f0f282099d/s940x350_DCI-BOY-GH3.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/9593539875086983300ecf9ec4bad0f0f282099d/s940x110_DCI-BOY-GH3.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/9593539875086983300ecf9ec4bad0f0f282099d/DCI-BOY-GH3.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/9593539875086983300ecf9ec4bad0f0f282099d/DCI-BOY-GH3.jpg","file_size":21367,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a86bd0286d55504b982","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a86bd0286d55504b982"}}},{"id":"50fb9a87bd0286d55504b983","created_at":"2013-01-20T07:19:35Z","updated_at":"2013-01-20T07:19:35Z","name":"DCI-BOY2-SX50HS.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7b8083059d9dcce7deda323bf8e2070213a7223b/s50x50_DCI-BOY2-SX50HS.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7b8083059d9dcce7deda323bf8e2070213a7223b/s150x150_DCI-BOY2-SX50HS.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7b8083059d9dcce7deda323bf8e2070213a7223b/s200x75_DCI-BOY2-SX50HS.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7b8083059d9dcce7deda323bf8e2070213a7223b/s250x250_DCI-BOY2-SX50HS.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7b8083059d9dcce7deda323bf8e2070213a7223b/s300x150_DCI-BOY2-SX50HS.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7b8083059d9dcce7deda323bf8e2070213a7223b/s300x112_DCI-BOY2-SX50HS.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7b8083059d9dcce7deda323bf8e2070213a7223b/s500x500_DCI-BOY2-SX50HS.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7b8083059d9dcce7deda323bf8e2070213a7223b/s600x400_DCI-BOY2-SX50HS.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7b8083059d9dcce7deda323bf8e2070213a7223b/s600x600_DCI-BOY2-SX50HS.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7b8083059d9dcce7deda323bf8e2070213a7223b/s630x235_DCI-BOY2-SX50HS.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7b8083059d9dcce7deda323bf8e2070213a7223b/s940x400_DCI-BOY2-SX50HS.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7b8083059d9dcce7deda323bf8e2070213a7223b/s940x350_DCI-BOY2-SX50HS.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7b8083059d9dcce7deda323bf8e2070213a7223b/s940x110_DCI-BOY2-SX50HS.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7b8083059d9dcce7deda323bf8e2070213a7223b/DCI-BOY2-SX50HS.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7b8083059d9dcce7deda323bf8e2070213a7223b/DCI-BOY2-SX50HS.jpg","file_size":21820,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a87bd0286d55504b983","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a87bd0286d55504b983"}}},{"id":"50fb9a87bd0286d55504b984","created_at":"2013-01-20T07:19:35Z","updated_at":"2013-01-20T07:19:35Z","name":"DCI-BOY-R2000.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/d7d3278dea210a7541e4463919fc4eab1bc0fb23/s50x50_DCI-BOY-R2000.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/d7d3278dea210a7541e4463919fc4eab1bc0fb23/s150x150_DCI-BOY-R2000.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/d7d3278dea210a7541e4463919fc4eab1bc0fb23/s200x75_DCI-BOY-R2000.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/d7d3278dea210a7541e4463919fc4eab1bc0fb23/s250x250_DCI-BOY-R2000.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/d7d3278dea210a7541e4463919fc4eab1bc0fb23/s300x150_DCI-BOY-R2000.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/d7d3278dea210a7541e4463919fc4eab1bc0fb23/s300x112_DCI-BOY-R2000.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/d7d3278dea210a7541e4463919fc4eab1bc0fb23/s500x500_DCI-BOY-R2000.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/d7d3278dea210a7541e4463919fc4eab1bc0fb23/s600x400_DCI-BOY-R2000.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/d7d3278dea210a7541e4463919fc4eab1bc0fb23/s600x600_DCI-BOY-R2000.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/d7d3278dea210a7541e4463919fc4eab1bc0fb23/s630x235_DCI-BOY-R2000.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/d7d3278dea210a7541e4463919fc4eab1bc0fb23/s940x400_DCI-BOY-R2000.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/d7d3278dea210a7541e4463919fc4eab1bc0fb23/s940x350_DCI-BOY-R2000.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/d7d3278dea210a7541e4463919fc4eab1bc0fb23/s940x110_DCI-BOY-R2000.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/d7d3278dea210a7541e4463919fc4eab1bc0fb23/DCI-BOY-R2000.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/d7d3278dea210a7541e4463919fc4eab1bc0fb23/DCI-BOY-R2000.jpg","file_size":17181,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a87bd0286d55504b984","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a87bd0286d55504b984"}}},{"id":"50fb9a87bd0286d55504b985","created_at":"2013-01-20T07:19:35Z","updated_at":"2013-01-20T07:19:35Z","name":"DCI-BOY-WOVEN2.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7e8eb69390f27bd4be68b07e7d9c4e9de1384f63/s50x50_DCI-BOY-WOVEN2.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7e8eb69390f27bd4be68b07e7d9c4e9de1384f63/s150x150_DCI-BOY-WOVEN2.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7e8eb69390f27bd4be68b07e7d9c4e9de1384f63/s200x75_DCI-BOY-WOVEN2.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7e8eb69390f27bd4be68b07e7d9c4e9de1384f63/s250x250_DCI-BOY-WOVEN2.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7e8eb69390f27bd4be68b07e7d9c4e9de1384f63/s300x150_DCI-BOY-WOVEN2.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7e8eb69390f27bd4be68b07e7d9c4e9de1384f63/s300x112_DCI-BOY-WOVEN2.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7e8eb69390f27bd4be68b07e7d9c4e9de1384f63/s500x500_DCI-BOY-WOVEN2.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7e8eb69390f27bd4be68b07e7d9c4e9de1384f63/s600x400_DCI-BOY-WOVEN2.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7e8eb69390f27bd4be68b07e7d9c4e9de1384f63/s600x600_DCI-BOY-WOVEN2.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7e8eb69390f27bd4be68b07e7d9c4e9de1384f63/s630x235_DCI-BOY-WOVEN2.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7e8eb69390f27bd4be68b07e7d9c4e9de1384f63/s940x400_DCI-BOY-WOVEN2.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7e8eb69390f27bd4be68b07e7d9c4e9de1384f63/s940x350_DCI-BOY-WOVEN2.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7e8eb69390f27bd4be68b07e7d9c4e9de1384f63/s940x110_DCI-BOY-WOVEN2.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7e8eb69390f27bd4be68b07e7d9c4e9de1384f63/DCI-BOY-WOVEN2.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7e8eb69390f27bd4be68b07e7d9c4e9de1384f63/DCI-BOY-WOVEN2.jpg","file_size":19455,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a87bd0286d55504b985","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a87bd0286d55504b985"}}},{"id":"50fb9a87bd0286d55504b986","created_at":"2013-01-20T07:19:35Z","updated_at":"2013-01-20T07:19:35Z","name":"DCI-BOY-BADGE.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/5273f18d0e1bd182dd36fe0a9f02da177de5885c/s50x50_DCI-BOY-BADGE.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/5273f18d0e1bd182dd36fe0a9f02da177de5885c/s150x150_DCI-BOY-BADGE.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/5273f18d0e1bd182dd36fe0a9f02da177de5885c/s200x75_DCI-BOY-BADGE.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/5273f18d0e1bd182dd36fe0a9f02da177de5885c/s250x250_DCI-BOY-BADGE.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/5273f18d0e1bd182dd36fe0a9f02da177de5885c/s300x150_DCI-BOY-BADGE.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/5273f18d0e1bd182dd36fe0a9f02da177de5885c/s300x112_DCI-BOY-BADGE.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/5273f18d0e1bd182dd36fe0a9f02da177de5885c/s500x500_DCI-BOY-BADGE.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/5273f18d0e1bd182dd36fe0a9f02da177de5885c/s600x400_DCI-BOY-BADGE.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/5273f18d0e1bd182dd36fe0a9f02da177de5885c/s600x600_DCI-BOY-BADGE.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/5273f18d0e1bd182dd36fe0a9f02da177de5885c/s630x235_DCI-BOY-BADGE.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/5273f18d0e1bd182dd36fe0a9f02da177de5885c/s940x400_DCI-BOY-BADGE.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/5273f18d0e1bd182dd36fe0a9f02da177de5885c/s940x350_DCI-BOY-BADGE.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/5273f18d0e1bd182dd36fe0a9f02da177de5885c/s940x110_DCI-BOY-BADGE.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/5273f18d0e1bd182dd36fe0a9f02da177de5885c/DCI-BOY-BADGE.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/5273f18d0e1bd182dd36fe0a9f02da177de5885c/DCI-BOY-BADGE.jpg","file_size":13381,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a87bd0286d55504b986","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a87bd0286d55504b986"}}},{"id":"50fb9a87bd0286d55504b987","created_at":"2013-01-20T07:19:35Z","updated_at":"2013-01-20T07:19:35Z","name":"DCI-BOY-WOVEN3.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/702853c6eb9af42e9c96e61769f33a92e59b440c/s50x50_DCI-BOY-WOVEN3.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/702853c6eb9af42e9c96e61769f33a92e59b440c/s150x150_DCI-BOY-WOVEN3.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/702853c6eb9af42e9c96e61769f33a92e59b440c/s200x75_DCI-BOY-WOVEN3.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/702853c6eb9af42e9c96e61769f33a92e59b440c/s250x250_DCI-BOY-WOVEN3.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/702853c6eb9af42e9c96e61769f33a92e59b440c/s300x150_DCI-BOY-WOVEN3.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/702853c6eb9af42e9c96e61769f33a92e59b440c/s300x112_DCI-BOY-WOVEN3.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/702853c6eb9af42e9c96e61769f33a92e59b440c/s500x500_DCI-BOY-WOVEN3.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/702853c6eb9af42e9c96e61769f33a92e59b440c/s600x400_DCI-BOY-WOVEN3.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/702853c6eb9af42e9c96e61769f33a92e59b440c/s600x600_DCI-BOY-WOVEN3.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/702853c6eb9af42e9c96e61769f33a92e59b440c/s630x235_DCI-BOY-WOVEN3.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/702853c6eb9af42e9c96e61769f33a92e59b440c/s940x400_DCI-BOY-WOVEN3.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/702853c6eb9af42e9c96e61769f33a92e59b440c/s940x350_DCI-BOY-WOVEN3.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/702853c6eb9af42e9c96e61769f33a92e59b440c/s940x110_DCI-BOY-WOVEN3.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/702853c6eb9af42e9c96e61769f33a92e59b440c/DCI-BOY-WOVEN3.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/702853c6eb9af42e9c96e61769f33a92e59b440c/DCI-BOY-WOVEN3.jpg","file_size":15171,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb9a87bd0286d55504b987","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb9a87bd0286d55504b987"}}},{"id":"512bd39a5bf38d832d000149","created_at":"2013-02-25T21:11:54Z","updated_at":"2013-02-25T21:11:54Z","name":"BoY
415
+ Vid","type":"brightcove_video","tags":[],"versions":{"s50x50":null,"s150x150":null,"s200x75":null,"s250x250":null,"s300x150":null,"s300x112":null,"s500x500":null,"s600x400":null,"s600x600":null,"s630x235":null,"s940x400":null,"s940x350":null,"s940x110":null,"original":null},"caption":"","alt_text":"","data":{"content_type":"text/url","brightcove_id":"1974315790001"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/512bd39a5bf38d832d000149","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/512bd39a5bf38d832d000149"}}},{"id":"512be2bd42abf1467600021f","created_at":"2013-02-25T22:16:29Z","updated_at":"2013-02-28T06:15:49Z","name":"rfiDCI-940x110.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/492f392eab69240aede3fd2425a9c2326092c763/s50x50_rfiDCI-940x110.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/492f392eab69240aede3fd2425a9c2326092c763/s150x150_rfiDCI-940x110.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/492f392eab69240aede3fd2425a9c2326092c763/s200x75_rfiDCI-940x110.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/492f392eab69240aede3fd2425a9c2326092c763/s250x250_rfiDCI-940x110.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/492f392eab69240aede3fd2425a9c2326092c763/s300x150_rfiDCI-940x110.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/492f392eab69240aede3fd2425a9c2326092c763/s300x112_rfiDCI-940x110.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/492f392eab69240aede3fd2425a9c2326092c763/s500x500_rfiDCI-940x110.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/492f392eab69240aede3fd2425a9c2326092c763/s600x400_rfiDCI-940x110.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/492f392eab69240aede3fd2425a9c2326092c763/s600x600_rfiDCI-940x110.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/492f392eab69240aede3fd2425a9c2326092c763/s630x235_rfiDCI-940x110.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/492f392eab69240aede3fd2425a9c2326092c763/s940x400_rfiDCI-940x110.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/492f392eab69240aede3fd2425a9c2326092c763/s940x350_rfiDCI-940x110.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/492f392eab69240aede3fd2425a9c2326092c763/s940x110_rfiDCI-940x110.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/492f392eab69240aede3fd2425a9c2326092c763/rfiDCI-940x110.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/492f392eab69240aede3fd2425a9c2326092c763/rfiDCI-940x110.jpg","file_size":31286},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/512be2bd42abf1467600021f","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/512be2bd42abf1467600021f"}}},{"id":"512d200f33d5c414a4000050","created_at":"2013-02-26T20:50:23Z","updated_at":"2013-03-25T14:04:55Z","name":"boy-hero-dci-940x350c.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/692da782e2d008f7d99a6c791f80230525f4fb3e/s50x50_boy-hero-dci-940x350c.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/692da782e2d008f7d99a6c791f80230525f4fb3e/s150x150_boy-hero-dci-940x350c.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/692da782e2d008f7d99a6c791f80230525f4fb3e/s200x75_boy-hero-dci-940x350c.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/692da782e2d008f7d99a6c791f80230525f4fb3e/s250x250_boy-hero-dci-940x350c.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/692da782e2d008f7d99a6c791f80230525f4fb3e/s300x150_boy-hero-dci-940x350c.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/692da782e2d008f7d99a6c791f80230525f4fb3e/s300x112_boy-hero-dci-940x350c.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/692da782e2d008f7d99a6c791f80230525f4fb3e/s500x500_boy-hero-dci-940x350c.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/692da782e2d008f7d99a6c791f80230525f4fb3e/s600x400_boy-hero-dci-940x350c.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/692da782e2d008f7d99a6c791f80230525f4fb3e/s600x600_boy-hero-dci-940x350c.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/692da782e2d008f7d99a6c791f80230525f4fb3e/s630x235_boy-hero-dci-940x350c.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/692da782e2d008f7d99a6c791f80230525f4fb3e/s940x400_boy-hero-dci-940x350c.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/692da782e2d008f7d99a6c791f80230525f4fb3e/s940x350_boy-hero-dci-940x350c.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/692da782e2d008f7d99a6c791f80230525f4fb3e/s940x110_boy-hero-dci-940x350c.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/692da782e2d008f7d99a6c791f80230525f4fb3e/boy-hero-dci-940x350c.jpg"},"caption":"2012
416
+ DigitalCameraInfo Best of Year Awards","alt_text":"2012 DigitalCameraInfo
417
+ Best of Year Awards","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/692da782e2d008f7d99a6c791f80230525f4fb3e/boy-hero-dci-940x350c.jpg","file_size":58629},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/512d200f33d5c414a4000050","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/512d200f33d5c414a4000050"}}},{"id":"515059c0ca64bd6a7d000fe4","created_at":"2013-03-25T14:05:52Z","updated_at":"2013-04-04T13:25:35Z","name":"BOY-Hero2.jpg","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/213951802cf341a4615b19e54488ae9cc887a807/s50x50_BOY-Hero2.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/213951802cf341a4615b19e54488ae9cc887a807/s150x150_BOY-Hero2.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/213951802cf341a4615b19e54488ae9cc887a807/s200x75_BOY-Hero2.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/213951802cf341a4615b19e54488ae9cc887a807/s250x250_BOY-Hero2.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/213951802cf341a4615b19e54488ae9cc887a807/s300x150_BOY-Hero2.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/213951802cf341a4615b19e54488ae9cc887a807/s300x112_BOY-Hero2.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/213951802cf341a4615b19e54488ae9cc887a807/s500x500_BOY-Hero2.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/213951802cf341a4615b19e54488ae9cc887a807/s600x400_BOY-Hero2.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/213951802cf341a4615b19e54488ae9cc887a807/s600x600_BOY-Hero2.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/213951802cf341a4615b19e54488ae9cc887a807/s630x235_BOY-Hero2.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/213951802cf341a4615b19e54488ae9cc887a807/s940x400_BOY-Hero2.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/213951802cf341a4615b19e54488ae9cc887a807/s940x350_BOY-Hero2.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/213951802cf341a4615b19e54488ae9cc887a807/s940x110_BOY-Hero2.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/213951802cf341a4615b19e54488ae9cc887a807/BOY-Hero2.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/213951802cf341a4615b19e54488ae9cc887a807/BOY-Hero2.jpg","file_size":187532},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/515059c0ca64bd6a7d000fe4","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/515059c0ca64bd6a7d000fe4"}}}],"websites":[{"id":"50e669d7bd028648e000000d","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-07-03T20:16:36Z","name":"Cameras","url":"www.digitalcamerainfo.com","code":"DCI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377a2a0aa7bbf12c000120","created_at":"2013-03-06T17:17:30Z","updated_at":"2013-07-01T13:26:42Z","website_id":"50e669d7bd028648e000000d","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377a2a0aa7bbf12c000120","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377a2a0aa7bbf12c000120"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e000000d","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e000000d"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/50fb9a81bd0286d55504b952","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/50fb9a81bd0286d55504b952"}}}'
491
418
  http_version:
492
- recorded_at: Wed, 24 Jul 2013 21:02:35 GMT
419
+ recorded_at: Wed, 31 Jul 2013 14:01:22 GMT
493
420
  recorded_with: VCR 2.4.0